diff --git a/extensions/fablabchemnitz/ai_compatible_eps_output/ai_compatible_eps_output.inx b/extensions/fablabchemnitz/ai_compatible_eps_output/ai_compatible_eps_output.inx new file mode 100644 index 0000000..07a5948 --- /dev/null +++ b/extensions/fablabchemnitz/ai_compatible_eps_output/ai_compatible_eps_output.inx @@ -0,0 +1,14 @@ + + + AI compatible EPS output + fablabchemnitz.de.ai_compatible_eps_output + + .eps + application/eps + Encapsulated PostScript - AI compatible (*.eps) + Adobe Illustrator 7 compatible EPS + + + \ No newline at end of file diff --git a/extensions/fablabchemnitz/ai_compatible_eps_output/ai_compatible_eps_output.py b/extensions/fablabchemnitz/ai_compatible_eps_output/ai_compatible_eps_output.py new file mode 100644 index 0000000..a29d1ac --- /dev/null +++ b/extensions/fablabchemnitz/ai_compatible_eps_output/ai_compatible_eps_output.py @@ -0,0 +1,1190 @@ +#!/usr/bin/env python3 +""" +Mainly written by Andras Prim github_at_primandras.hu + +Arc to bezier converting method is ported from: +http://code.google.com/p/core-framework/source/browse/trunk/plugins/svg.js +written by Angel Kostadinov, with MIT license +""" + +try: + from lxml import etree as ET +except Exception: + import xml.etree.ElementTree as ET + +import math +import re +import sys + +def wrap(text, width): + """ A word-wrap function that preserves existing line breaks """ + retstr = "" + for word in text.split(' '): + if len(retstr)-retstr.rfind('\n')-1 + len(word.split('\n',1)[0]) >= width: + retstr += ' \n' + word + else: + retstr += ' ' + word + return retstr + +def css2dict(css): + """returns a dictionary representing the given css string""" + cssdict = {} + if None == css: + return cssdict + for pair in css.split(';'): #TODO: what about escaped separators + if pair.find(':') >= 0: + key, value = pair.split(':') + cssdict[ key.strip() ] = value.strip() + return cssdict + +def cssColor2Eps(cssColor, colors='RGB'): + """converts css color definition (a hexa code with leading # or 'rgb()') + to eps color definition""" + if '#' == cssColor[0]: + r = float(int(cssColor[1:3],16)) / 255 + g = float(int(cssColor[3:5],16)) / 255 + b = float(int(cssColor[5:7],16)) / 255 + else: + # assume 'rgb()' color + rgb = re.sub('[^0-9]+', ' ', cssColor).strip().split() + r = float(int(rgb[0], 10)) / 255 + g = float(int(rgb[1], 10)) / 255 + b = float(int(rgb[2], 10)) / 255 + + if colors == 'RGB': + return "%f %f %f" % (r, g, b) + elif colors == 'CMYKRGB': + if (r == 0) and (g == 0) and (b == 0): + c = 0 + m = 0 + y = 0 + k = 1 + else: + c = 1 - r + m = 1 - g + y = 1 - b + + # extract out k [0,1] + min_cmy = min(c, m, y) + c = (c - min_cmy) / (1 - min_cmy) + m = (m - min_cmy) / (1 - min_cmy) + y = (y - min_cmy) / (1 - min_cmy) + k = min_cmy + + return "%f %f %f %f %f %f %f" % (c, m, y, k, r, g, b) + +class Point: + """Class representing a 2D point""" + def __init__(self, x, y, relativeTo = None): + self.x = float(x) + self.y = float(y) + if isinstance(relativeTo, Point): + self.x += relativeTo.x + self.y += relativeTo.y + + def get_distance(self, otherPoint): + """Returns the distance between this and the other point""" + return math.hypot(self.x - otherPoint.x, self.y - otherPoint.y) + + def get_angle(self, otherPoint): + """Returns the angle of the vector pointing from this to the other point""" + deltax = otherPoint.x - self.x + deltay = otherPoint.y - self.y + return math.atan2(deltay, deltax) * 180 / math.pi + + def get_manhattan_distance(self, otherPoint): + """Returns the manhattan distance of this and the other point""" + return abs(self.x - otherPoint.x) + abs(self.y - otherPoint.y) + +class TransformationMatrix: + """Class representing a 2D transformation matrix""" + def __init__(self, matrix = (1, 0, 0, 1, 0, 0)): + self.matrix = matrix + + def multiply(self, matrix): + return TransformationMatrix(( + self.matrix[0] * matrix[0] + self.matrix[2] * matrix[1], # + self.matrix[4] * 0 + self.matrix[1] * matrix[0] + self.matrix[3] * matrix[1], # + self.matrix[5] * 0 + self.matrix[0] * matrix[2] + self.matrix[2] * matrix[3], # + self.matrix[4] * 0 + self.matrix[1] * matrix[2] + self.matrix[3] * matrix[3], # + self.matrix[5] * 0 + self.matrix[0] * matrix[4] + self.matrix[2] * matrix[5] + self.matrix[4], + self.matrix[1] * matrix[4] + self.matrix[3] * matrix[5] + self.matrix[5], + )) + + def translate(self, tx, ty): + return self.multiply((1, 0, 0, 1, tx, ty)) + + def scale(self, sx, sy): + return self.multiply((sx, 0, 0, sy, 0, 0)) + + def rotate(self, alphaDegree, cx, cy): + """Applies alpha degree rotation around cx, cy center point to the matrix""" + alphaRadian = math.radians(alphaDegree) + rotateMatrix = ( + math.cos(alphaRadian), math.sin(alphaRadian), + -math.sin(alphaRadian), math.cos(alphaRadian), + 0, 0 + ) + if cx == 0 and cy == 0: + return self.multiply(rotateMatrix) + + newMatrix = self.multiply((1, 0, 0, 1, cx, cy)) # compensate for center + newMatrix = newMatrix.multiply(rotateMatrix) + + return newMatrix.multiply((1, 0, 0, 1, -cx, -cy)) # compensate back for center + +class TransformationMatrixStack: + """2D transformation matrix stack""" + def __init__(self, matrix = None): + self.matrices = [matrix if matrix != None else TransformationMatrix()] + + def push_matrix_multiply(self, matrix): + """Matrix multiplies the current matrix with the passed one, and pushes it on the stack""" + currentMatrix = self.matrices[-1] + transformedMatrix = currentMatrix.multiply(matrix.matrix) + self.matrices.append(transformedMatrix) + + def pop(self): + """Removes last matrix from stack""" + assert len(self.matrices) > 1, "Cannot pop last matrix from stack" + self.matrices.pop() + + def transform_point(self, point): + """Transforms the passed point using the current transformation matrix""" + # todo: move to TransformationMatrix + matrix = self.matrices[-1].matrix + transformedX = matrix[0] * point.x + matrix[2] * point.y + matrix[4] + transformedY = matrix[1] * point.x + matrix[3] * point.y + matrix[5] + + return Point(transformedX, transformedY) + + def transform_length(self, length): + """Transforms the passed length using the current transformation matrix""" + # todo: move to TransformationMatrix + matrix = self.matrices[-1].matrix + transformedX = matrix[0] * length + transformedY = matrix[1] * length + + return math.sqrt(transformedX ** 2 + transformedY ** 2) + +class svg2eps: + def __init__(self, filename=None): + self.filename = filename + self.svg = None + self.rePathDSplit = re.compile('[^a-zA-Z0-9.-]+') + self.reTransformFind = re.compile('([a-z]+)\\(([^)]+)\\)') + self.reNumberFind = re.compile('[0-9.eE+-]+') + # must update reNumberUnitFind, if e is a valid character in a unit + self.reNumberUnitFind = re.compile('([0-9.eE+-]+)([a-z]*)') + # px to pt conversion rate varies based on inkscape versions, it is added during parsing + self.toPt = {'in': 72.0, 'pt': 1.0, 'mm': 2.8346456695, 'cm': 28.346456695, 'm': 2834.6456695, 'pc': 12.0} + + def unitConv(self, string, toUnit): + match = self.reNumberUnitFind.search(string) + number = float(match.group(1)) + unit = match.group(2) + if unit not in self.toPt: + unit = 'uu' + + if unit == toUnit: + return number + else: + return number * self.toPt[unit] / self.toPt[toUnit] + + def coordConv(self, point): + """converts svgx, svgy coordinates to eps coordinates using the current transformation matrix""" + return self.matrices.transform_point(point) + + def alert(self, string, elem): + """adds an alert to the collection""" + if not string in self.alerts: + self.alerts[string] = set() + elemId = elem.get('id') + if elemId != None: + self.alerts[string].add(elemId) + + def showAlerts(self): + """show alerts collected by the alert() function""" + for string, ids in self.alerts.iteritems(): + idstring = ', '.join(ids) + print(string, idstring) + + def elemSvg(self, elem): + """handles the element""" + # DPI changed in inkscape 0.92, so set the px-to-pt rate based on inkscape version + self.toPt['px'] = 0.75 + inkscapeVersionString = elem.get('{http://www.inkscape.org/namespaces/inkscape}version', '0.92.0') + mobj = re.match(r'(\d+)\.(\d+)', inkscapeVersionString) + if mobj != None: + major = int(mobj.group(1)) + minor = int(mobj.group(2)) + if major == 0 and minor < 92: + self.toPt['px'] = 0.8 + + # by default (without viewbox definition) user unit = pixel + self.toPt['uu'] = self.toPt['px'] + self.docWidth = self.unitConv(elem.get('width'), 'pt') + self.docHeight = self.unitConv(elem.get('height'), 'pt') + + viewBoxString = elem.get('viewBox') + if viewBoxString != None: + viewBox = viewBoxString.split(' ') + # theoretically width and height scaling factor could be different, + # but this script does not support it + widthUu = float(viewBox[2]) - float(viewBox[0]) + self.toPt['uu'] = self.docWidth / widthUu + + # transform svg units to eps default pt + scale = self.toPt['uu'] + + self.matrices = TransformationMatrixStack(TransformationMatrix([scale, 0, 0, -scale, 0, self.docHeight])) + + + def gradientFill(self, elem, gradientId): + """constructs a gradient instance definition in self.gradientOp""" + if gradientId not in self.gradients: + self.alert("fill gradient not defined: " + gradientId, elem) + return + gradient = self.gradients[gradientId] + transformGradient = gradient + while 'href' in gradient: + gradientId = gradient['href'] + gradient = self.gradients[gradientId] + + if 'matrix' in transformGradient: + self.matrices.push_matrix_multiply(transformGradient['matrix']) + + if 'linear' == transformGradient['type']: + gradient['linUseCount'] += 1 + point1 = self.coordConv(Point(transformGradient['x1'], transformGradient['y1'])) + point2 = self.coordConv(Point(transformGradient['x2'], transformGradient['y2'])) + length = point1.get_distance(point2) + angle = point1.get_angle(point2) + + elif 'radial' == transformGradient['type']: + gradient['radUseCount'] += 1 + center = self.coordConv(Point(transformGradient['cx'], transformGradient['cy'])) + right = self.coordConv(Point(transformGradient['cx'] + transformGradient['r'], transformGradient['cy'])) + radius = center.get_distance(right) + + if 'matrix' in transformGradient: + self.matrices.pop() + + + if 'linear' == transformGradient['type']: + #endPathSegment() will substitute appropriate closeOp in %%s + self.gradientOp = "\nBb 1 (l_%s) %f %f %f %f 1 0 0 1 0 0 Bg %%s 0 BB" % \ + (gradientId, point1.x, point1.y, angle, length) + elif 'radial' == transformGradient['type']: + self.gradientOp = "\nBb 1 (r_%s) %f %f 0 %f 1 0 0 1 0 0 Bg %%s 0 BB" % \ + (gradientId, center.x, center.y, radius) + self.alert("radial gradients will appear circle shaped", elem) + + + + def pathStyle(self, elem): + """handles the style attribute in svg element""" + if self.clipPath: + self.closeOp = 'h n' + return + + css = self.cssStack[-1] + if 'stroke' in css and css['stroke'] != 'none': + self.closeOp = 's' + self.pathCloseOp = 's' + if '#' == css['stroke'][0] or 'rgb' == css['stroke'][0:3]: + self.epspath += ' ' + cssColor2Eps(css['stroke']) + ' XA' + elif 'url' == css['stroke'][0:3]: + self.alert("gradient strokes not supported", elem) + if 'fill' in css and css['fill'] != 'none': + if self.closeOp == 's': + self.closeOp = 'b' + else: + self.closeOp = 'f' + if '#' == css['fill'][0] or 'rgb' == css['fill'][0:3]: + self.epspath += ' ' + cssColor2Eps(css['fill']) + ' Xa' + elif 'url' == css['fill'][0:3]: + self.gradientFill(elem, css['fill'][5:-1]) + + + if 'fill-rule' in css: + if css['fill-rule'] == 'evenodd': + self.epspath += " 1 XR" + else: + self.epspath += " 0 XR" + if 'stroke-width' in css: + svgWidth = self.unitConv(css['stroke-width'], 'uu') + self.epspath += " %f w" % (self.matrices.transform_length(svgWidth), ) + if 'stroke-linecap' in css: + if css['stroke-linecap'] == 'butt': + self.epspath += " 0 J" + elif css['stroke-linecap'] == 'round': + self.epspath += " 1 J" + elif css['stroke-linecap'] == 'square': + self.epspath += " 2 J" + if 'stroke-linejoin' in css: + if css['stroke-linejoin'] == 'miter': + self.epspath += " 0 j" + elif css['stroke-linejoin'] == 'round': + self.epspath += " 1 j" + elif css['stroke-linejoin'] == 'bevel': + self.epspath += " 2 j" + if 'stroke-miterlimit' in css: + self.epspath += " " + css['stroke-miterlimit'] + " M" + if 'stroke-dasharray' in css: + phase = 0 + if css['stroke-dasharray'] == 'none': + dashArray = [] + if css['stroke-dasharray'] != 'none': + dashArrayIn = css['stroke-dasharray'].replace(',', ' ').split() + dashArray = list(map(lambda x: "%f" % (x,), filter(lambda x: x > 0, map(lambda x: self.matrices.transform_length(float(x)), dashArrayIn)))) + if 'stroke-dashoffset' in css: + phase = float(css['stroke-dashoffset']) + + self.epspath += ' [ %s ] %f d' % (' '.join(dashArray), phase) + + + + def endPathSegment(self, elem): + """should be called when a path segment end is reached in a element""" + if self.removeStrayPoints and self.segmentCommands <= 1: + self.alert("removing stray point", elem) + self.epspath = self.epspath[:self.segmentStartIndex] + return + if self.autoClose and (self.closeOp == 'f' or self.closeOp == 'b'): + autoClose = True + else: + autoClose = False + + if self.pathExplicitClose or autoClose: + closeOp = self.closeOp + else: + closeOp = self.closeOp.upper() + + if self.pathCurSegment == self.pathSegmentNum and self.gradientOp != None: + closeOp = self.gradientOp % (closeOp,) + + if self.lastBegin != None: + if (self.pathExplicitClose or autoClose): + if self.curPoint.get_manhattan_distance(self.lastBegin) > self.closeDist: + lastBeginEps = self.coordConv(self.lastBegin) + self.epspath += ' %f %f l' % (lastBeginEps.x, lastBeginEps.y) + + self.epspath += ' ' + closeOp + '\n' + + if self.pathExplicitClose: + self.curPoint = self.lastBegin + + self.lastBegin = None + + def elemPath(self, elem, pathData=None): + """handles svg element""" + if None == pathData: + pathData = elem.get('d') + self.pathSegmentNum = pathData.count("m") + pathData.count("M") + self.pathCurSegment = 0 + self.epspath = '' + self.segmentStartIndex = 0 # index in self.epspath of first character of current path segment + self.segmentCommands = 0 # number of handled commands (including first moveto) in current paths segment + self.closeOp = 'n' # pathStyle(elem) will modify this + self.gradientOp = None + self.pathExplicitClose = False + if elem.get('id'): + self.epspath += '\n%AI3_Note: ' + elem.get('id') + '\n' + + self.pathStyle(elem) + + tokens = self.rePathDSplit.split(pathData) + i = 0 # index in path tokens + cmd = '' # path command + self.curPoint = Point(0,0) + self.lastBegin = None + + while i < len(tokens): + token = tokens[i] + if token in ['m', 'M', 'c', 'C', 'l', 'L', 'z', 'Z', 'a', 'A', 'q', 'Q', 'h', 'H', 'v', 'V']: + cmd = token + i += 1 + elif token.isalpha(): + self.alert('unhandled path command: %s' % (token,), elem) + cmd = '' + i += 1 + else: # coordinates after a moveto are assumed to be lineto + if 'm' == cmd: + cmd = 'l' + elif 'M' == cmd: + cmd = 'L' + + if ('M' == cmd or 'm' == cmd) : + if self.pathCurSegment > 0: + self.endPathSegment(elem) + self.pathCurSegment += 1 + self.pathExplicitClose = False + + if 'M' == cmd or 'm' == cmd: + if 'M' == cmd or ('m' == cmd and i == 1): + self.curPoint = Point(float(tokens[i]), float(tokens[i+1])) + else: + self.curPoint = Point(float(tokens[i]), float(tokens[i+1]), self.curPoint) + + self.segmentStartIndex = len(self.epspath) + curPointEps = self.coordConv(self.curPoint) + self.epspath += ' %f %f' % (curPointEps.x, curPointEps.y) + i += 2 + self.lastBegin = self.curPoint + self.epspath += ' m' + self.segmentCommands = 1 + elif 'L' == cmd or 'l' == cmd: + if 'L' == cmd: + self.curPoint = Point(float(tokens[i]), float(tokens[i+1])) + else: + self.curPoint = Point(float(tokens[i]), float(tokens[i+1]), self.curPoint) + curPointEps = self.coordConv(self.curPoint) + self.epspath += ' %f %f' % (curPointEps.x, curPointEps.y) + i += 2 + self.epspath += ' l' + self.segmentCommands += 1 + elif cmd in ['H', 'h', 'V', 'v']: + if 'H' == cmd: + self.curPoint = Point(float(tokens[i]), self.curPoint.y) + elif 'h' == cmd: + self.curPoint = Point(float(tokens[i]), 0, self.curPoint) + elif 'V' == cmd: + self.curPoint = Point(self.curPoint.x, float(tokens[i])) + elif 'v' == cmd: + self.curPoint = Point(0, float(tokens[i]), self.curPoint) + curPointEps = self.coordConv(self.curPoint) + self.epspath += ' %f %f' % (curPointEps.x, curPointEps.y) + i += 1 + self.epspath += ' l' + self.segmentCommands += 1 + elif cmd in ('C', 'c'): + relativeTo = None if cmd == 'C' else self.curPoint + for j in range(2): + controlPointEps = self.coordConv(Point(tokens[i], tokens[i+1], relativeTo)) + self.epspath += ' %f %f' % (controlPointEps.x, controlPointEps.y) + i += 2 + self.curPoint = Point(float(tokens[i]), float(tokens[i+1]), relativeTo) + curPointEps = self.coordConv(self.curPoint) + self.epspath += ' %f %f' % (curPointEps.x, curPointEps.y) + i += 2 + self.epspath += ' c' + self.segmentCommands += 1 + elif cmd in ('Q', 'q'): + #export quadratic Bezier as cubic + relativeTo = None if cmd == 'Q' else self.curPoint + q0 = self.coordConv(self.curPoint) + q1 = self.coordConv(Point(float(tokens[i]), float(tokens[i+1]), relativeTo)) + i += 2 + self.curPoint = Point(float(tokens[i]), float(tokens[i+1]), relativeTo) + q2 = self.coordConv(self.curPoint) + factor = 2.0 / 3.0 + cx1 = q0.x + factor * (q1.x - q0.x) + cy1 = q0.y + factor * (q1.y - q0.y) + cx2 = q2.x - factor * (q2.x - q1.x) + cy2 = q2.y - factor * (q2.y - q1.y) + self.epspath += ' %f %f %f %f' % (cx1, cy1, cx2, cy2) + self.epspath += ' %f %f' % (q2.x, q2.y) + i += 2 + self.epspath += ' c' + self.segmentCommands += 1 + elif 'A' == cmd or 'a' == cmd: + self.alert("elliptic arcs are converted to bezier curves", elem) + +# Angel Kostadinov begin + r1 = abs(float(tokens[i])) + r2 = abs(float(tokens[i+1])) + psai = float(tokens[i+2]) + largeArcFlag = int(tokens[i + 3]) + fS = int(tokens[i+4]) + rx = self.curPoint.x + ry = self.curPoint.y + if 'A' == cmd: + cx, cy = (float(tokens[i+5]), float(tokens[i+6])) + else: + cx, cy = (self.curPoint.x + float(tokens[i+5]), self.curPoint.y +float(tokens[i+6])) + + if r1 > 0 and r2 > 0: + ctx = (rx - cx) / 2 + cty = (ry - cy) / 2 + cpsi = math.cos(psai*math.pi/180) + spsi = math.sin(psai*math.pi/180) + rxd = cpsi*ctx + spsi*cty + ryd = -1*spsi*ctx + cpsi*cty + rxdd = rxd * rxd + rydd = ryd * ryd + r1x = r1 * r1 + r2y = r2 * r2 + lamda = rxdd/r1x + rydd/r2y + + if lamda > 1: + r1 = math.sqrt(lamda) * r1 + r2 = math.sqrt(lamda) * r2 + sds = 0 + else: + seif = 1 + if largeArcFlag == fS: + seif = -1 + sds = seif * math.sqrt((r1x*r2y - r1x*rydd - r2y*rxdd) / (r1x*rydd + r2y*rxdd)) + + txd = sds*r1*ryd / r2 + tyd = -1 * sds*r2*rxd / r1 + tx = cpsi*txd - spsi*tyd + (rx+cx)/2 + ty = spsi*txd + cpsi*tyd + (ry+cy)/2 + rad = math.atan2((ryd-tyd)/r2, (rxd-txd)/r1) - math.atan2(0, 1) + if rad >= 0: + s1 = rad + else: + s1 = 2 * math.pi + rad + rad = math.atan2((-ryd-tyd)/r2, (-rxd-txd)/r1) - math.atan2((ryd-tyd)/r2, (rxd-txd)/r1) + if rad >= 0: + dr = rad + else: + dr = 2 * math.pi + rad + + if fS==0 and dr > 0: + dr -= 2*math.pi + elif fS==1 and dr < 0: + dr += 2*math.pi + + sse = dr * 2 / math.pi + if sse < 0: + seg = math.ceil(-1*sse) + else: + seg = math.ceil(sse) + segr = dr / seg + t = 8.0/3.0 * math.sin(segr/4) * math.sin(segr/4) / math.sin(segr/2) + cpsir1 = cpsi * r1 + cpsir2 = cpsi * r2 + spsir1 = spsi * r1 + spsir2 = spsi * r2 + mc = math.cos(s1) + ms = math.sin(s1) + x2 = rx - t * (cpsir1*ms + spsir2*mc) + y2 = ry - t * (spsir1*ms - cpsir2*mc) + + for n in range(int(math.ceil(seg))): + s1 += segr + mc = math.cos(s1) + ms = math.sin(s1) + + x3 = cpsir1*mc - spsir2*ms + tx + y3 = spsir1*mc + cpsir2*ms + ty + dx = -t * (cpsir1*ms + spsir2*mc) + dy = -t * (spsir1*ms - cpsir2*mc) + + c1 = self.coordConv(Point(x2, y2)) + c2 = self.coordConv(Point(x3-dx, y3-dy)) + c3 = self.coordConv(Point(x3, y3)) + + self.epspath += " %f %f %f %f %f %f c" % (c1.x, c1.y, c2.x, c2.y, c3.x, c3.y) + + x2 = x3 + dx + y2 = y3 + dy + else: + # case when one radius is zero: this is a simple line + pointEps = self.coordConv(Point(cx, cy)) + self.epspath += ' %f %f l' % (pointEps.x, pointEps.y) + +# Angel Kostadinov end + self.segmentCommands += 1 + i += 7 + self.curPoint = Point(cx, cy) + + elif 'z' == cmd or 'Z' == cmd: + self.pathExplicitClose = True + cmd = '' + else: + i += 1 + + self.endPathSegment(elem) + + if self.pathSegmentNum > 1: + self.epspath = " *u\n" + self.epspath + "\n*U " + self.epsLayers += "\n" + wrap(self.epspath, 70) + "\n" + + def elemRect(self, elem): + x = float(elem.get('x')) + y = float(elem.get('y')) + width = float(elem.get('width')) + height = float(elem.get('height')) + + # construct an svg d attribute, and call self.elemPath() + pathData = "" + rx = elem.get('rx') + ry = elem.get('ry') + if rx == None and ry == None: + rx = 0 + ry = 0 + else: + # if only one radius is given, it means both are the same + rx = float(rx) if rx != None else float(ry) + ry = float(ry) if ry != None else float(rx) + + if rx == 0 and ry == 0: + pathData = "M %f %f %f %f %f %f %f %f z" % (x, y, x + width,y, x + width, y + height, x, y + height) + else: + pathData = "M %f %f A %f %f 0 0 1 %f %f" % (x, y + ry, rx, ry, x+rx, y) + pathData += " L %f %f A %f %f 0 0 1 %f %f" % (x + width - rx, y, rx, ry, x + width, y + ry) + pathData += " L %f %f A %f %f 0 0 1 %f %f" % (x + width, y + height - ry, rx, ry, x + width - rx, y + height) + pathData += " L %f %f A %f %f 0 0 1 %f %f z" % (x + rx, y + height, rx, ry, x, y + height - ry) + self.elemPath(elem, pathData) + + def elemPolygon(self, elem): + pathData = 'M ' + elem.get('points').replace(',', ' ').strip() + ' z' + self.elemPath(elem, pathData) + + def elemCircle(self, elem): + r = float(elem.get('r')) + self.elemEllipseCircleCommon(elem, r, r) + + def elemEllipse(self, elem): + rx = float(elem.get('rx')) + ry = float(elem.get('ry')) + self.elemEllipseCircleCommon(elem, rx, ry) + + def elemEllipseCircleCommon(self, elem, rx, ry): + cx = float(elem.get('cx')) + cy = float(elem.get('cy')) + # todo: test whether PostScript arc is handled by AI and use that instead + magic = 0.55228475 # I've read it on the internet + controlx = rx * magic # x distance of control points from center + controly = ry * magic # y distance of control points from center + + # construct an svg d attribute, and call self.elemPath() + pathData = "M %f %f" % (cx - rx, cy) # leftmost point + pathData += " C %f %f %f %f %f %f" % (cx - rx, cy - controly, cx - controlx, cy - ry, cx, cy - ry) # to top + pathData += " C %f %f %f %f %f %f" % (cx + controlx, cy - ry, cx + rx, cy - controly, cx + rx, cy) # to right + pathData += " C %f %f %f %f %f %f" % (cx + rx, cy + controly, cx + controlx, cy + ry, cx, cy + ry) # to bottom + pathData += " C %f %f %f %f %f %f z" % (cx - controlx, cy + ry, cx - rx, cy + controly, cx - rx, cy) # back to left and close + self.elemPath(elem, pathData) + + + def transform_attr_to_matrix(self, transform): + """Converts a svg transform attribute to a transformation matrix""" + matrix = TransformationMatrix() + for ttype, targs in self.reTransformFind.findall(transform): + targs = list(map(lambda x: float(x), self.reNumberFind.findall(targs))) + if ttype == 'matrix': + matrix = matrix.multiply((targs[0], targs[1], targs[2], targs[3], targs[4], targs[5])) + elif ttype == 'translate': + tx = targs[0] + ty = targs[1] if len(targs) > 1 else 0 + matrix = matrix.translate(tx, ty) + elif ttype == 'scale': + sx = targs[0] + sy = targs[1] if len(targs) > 1 else sx + matrix = matrix.scale(sx, sy) + elif ttype == 'rotate': + alpha = targs[0] + if len(targs) == 1: + cx, cy = 0, 0 + else: + cx, cy = targs[1], targs[2] + matrix = matrix.rotate(alpha, cx, cy) + elif ttype == 'skewX' or ttype == 'skewY': + self.alert("skewX and skewY transformations are not supported") + continue + else: + print('unknown transform type: ', ttype) + continue + + return matrix + + def elemGradient(self, elem, grType): + """handles and svg elements""" + elemId = elem.get('id') + if elemId != None: + self.curGradientId = elemId + self.gradients[elemId] = {'stops': [], 'linUseCount': 0, 'radUseCount': 0, 'type': grType} + if 'linear' == grType: + x1 = elem.get('x1') + if None != x1: + self.gradients[elemId]['x1'] = float(x1) + self.gradients[elemId]['y1'] = float(elem.get('y1')) + self.gradients[elemId]['x2'] = float(elem.get('x2')) + self.gradients[elemId]['y2'] = float(elem.get('y2')) + elif 'radial' == grType: + cx = elem.get('cx') + if None != cx: + self.gradients[elemId]['cx'] = float(cx) + self.gradients[elemId]['cy'] = float(elem.get('cy')) + self.gradients[elemId]['fx'] = float(elem.get('fx')) + self.gradients[elemId]['fy'] = float(elem.get('fy')) + self.gradients[elemId]['r'] = float(elem.get('r')) + + transform = elem.get('gradientTransform') + if None != transform: + self.gradients[elemId]['matrix'] = self.transform_attr_to_matrix(transform) + + href = elem.get('{http://www.w3.org/1999/xlink}href') + if None != href: + self.gradients[elemId]['href'] = href[1:] + + + def elemStop(self, elem): + """handles (gradient stop) svg element""" + stopColor = elem.get('stop-color') + if not stopColor: + style = css2dict(elem.get('style')) + if 'stop-color' in style: + stopColor = style['stop-color'] + else: + stopColor = '#000000' + color = cssColor2Eps(stopColor, 'CMYKRGB') + offsetString = elem.get('offset', '0').strip() + if offsetString[-1] == '%': + offset = float(offsetString[:-1]) + else: + offset = float(offsetString) * 100 + self.gradients[self.curGradientId]['stops'].append( (offset, color) ) + + def gradientSetup(self): + """writes used gradient definitions into self.epsSetup""" + gradientNum = 0 + epsGradients = "" + for gradientId, gradient in self.gradients.items(): + + if gradient['linUseCount'] > 0: + gradientNum += 1 + epsGradients += ("\n%%AI5_BeginGradient: (l_%s)" + \ + "\n(l_%s) 0 %d Bd\n[\n") % \ + (gradientId, gradientId, len(gradient['stops'])) + gradient['stops'].sort(key=lambda x: x[0], reverse=True) + + for offset, color in gradient['stops']: + epsGradients += "%s 2 50 %f %%_Bs\n" % (color, offset) + epsGradients += "BD\n%AI5_EndGradient\n" + + if gradient['radUseCount'] > 0: + gradientNum += 1 + epsGradients += ("\n%%AI5_BeginGradient: (r_%s)" + \ + "\n(r_%s) 1 %d Bd\n[\n") % \ + (gradientId, gradientId, len(gradient['stops'])) + gradient['stops'].sort(key=lambda x: x[0]) + + for offset, color in gradient['stops']: + epsGradients += "%s 2 50 %f %%_Bs\n" % (color, offset) + epsGradients += "BD\n%AI5_EndGradient\n" + + if gradientNum > 0: + self.epsSetup += ("\n%d Bn\n" % gradientNum) + epsGradients + + + def layerStart(self, elem): + self.epsLayers += '\n\n%AI5_BeginLayer\n' + layerName = elem.get('{http://www.inkscape.org/namespaces/inkscape}label') + layerName = "".join(map(lambda x: '_' if ord(x)<32 or ord(x) > 127 else x, layerName)) + self.epsLayers += '1 1 1 1 0 0 %d 0 0 0 Lb\n(%s) Ln\n' % \ + (self.layerColor, layerName) + self.layerColor = (self.layerColor + 1) % 27 + + def elemUse(self, elem): + """handles a svg element""" + x = self.unitConv(elem.get('x'), 'uu') + if x == None: + x = 0 + y = self.unitConv(elem.get('y'), 'uu') + if y == None: + y = 0 + + if x != 0 or y != 0: + self.matrices.push_matrix_multiply(self.transform_attr_to_matrix("translate(%f %f)" % (x, y))) + + href = elem.get('{http://www.w3.org/1999/xlink}href') + usedElem = self.root.find(".//*[@id='%s']" % (href[1:],)) + if usedElem != None: + self.walkElem(usedElem) + else: + self.alert("used Elem not found: " + href, elem) + + if x != 0 or y != 0: + self.matrices.pop() + + def walkElem(self, elem): + if '}' in elem.tag: + uri, shortTag = elem.tag.split('}') + else: + shortTag = elem.tag + uri = '' + + transform = elem.get('transform') + clipPath = elem.get('clip-path') + cssNew = css2dict(elem.get('style')) + css = self.cssStack[-1].copy() + css.update(cssNew) + self.cssStack.append(css) + if self.removeInvisible: + if 'visibility' in css and (css['visibility'] == 'hidden' or css['visibility'] == 'collapse'): + return + if 'display' in css and css['display'] == 'none': + return + if shortTag in ('path', 'rect', 'circle', 'ellipse', 'polygon'): + if 'opacity' in css and css['opacity'] == '0': + return + stroke = False + if 'stroke' in css and 'none' != css['stroke']: + stroke = True + if 'stroke-opacity' in css and css['stroke-opacity'] == '0': + stroke = False + if 'stroke-width' in css and css['stroke-width'] == '0': + stroke = False + fill = False + if 'fill' in css and 'none' != css['fill']: + fill = True + if 'fill-opacity' in css and css['fill-opacity'] == '0': + stroke = False + if stroke == False and fill == False: + return + + + if transform != None: + self.matrices.push_matrix_multiply(self.transform_attr_to_matrix(transform)) + + if None != clipPath: + clipId = clipPath[5:-1] + clipElem = self.root.find(".//*[@id='%s']" % (clipId,)) + if clipElem == None: + self.alert('clipPath not found', elem) + clipPath = None + else: + self.epsLayers += "\nq\n" + clipPathSave= self.clipPath + self.clipPath = True + # output clip path even if it doesn't have visible style + popRemoveInvisible = self.removeInvisible + self.removeInvisible = False + self.walkElem(clipElem) + self.removeInvisible = popRemoveInvisible + self.clipPath = clipPathSave + self.epsLayers += ' W' + + if 'svg' == shortTag: + self.elemSvg(elem) + elif 'path' == shortTag: + # do not output paths that are in defs + # if they are referenced, they will be used there + if self.section != 'defs': + self.elemPath(elem) + elif 'rect' == shortTag: + if self.section != 'defs': + self.elemRect(elem) + elif 'circle' == shortTag: + if self.section != 'defs': + self.elemCircle(elem) + elif 'ellipse' == shortTag: + if self.section != 'defs': + self.elemEllipse(elem) + elif 'polygon' == shortTag: + if self.section != 'defs': + self.elemPolygon(elem) + elif 'linearGradient' == shortTag: + self.elemGradient(elem, 'linear') + elif 'radialGradient' == shortTag: + self.elemGradient(elem, 'radial') + elif 'stop' == shortTag: + self.elemStop(elem) + elif 'g' == shortTag: + if 'layer' == elem.get('{http://www.inkscape.org/namespaces/inkscape}groupmode'): + self.layerStart(elem) + elif None == clipPath: # clipping makes a group anyway + self.epsLayers += '\nu\n' + elif 'use' == shortTag: + self.elemUse(elem) + elif 'defs' == shortTag: + self.section = shortTag + elif 'namedview' == shortTag: + self.section = shortTag + else: + self.alert("unhandled elem: " + shortTag, elem) + + + for child in list(elem): + self.walkElem(child) + + if None != clipPath: + self.epsLayers += "\nQ\n" + + if 'g' == shortTag: + if 'layer' == elem.get('{http://www.inkscape.org/namespaces/inkscape}groupmode'): + self.epsLayers += '\nLB\n%AI5_EndLayer\n' + elif None == clipPath: + self.epsLayers += '\nU\n' + elif shortTag in ('defs', 'namedview'): + self.section = None + + if transform != None: + self.matrices.pop() + + self.cssStack.pop() + + def convert(self, svg = None): + self.alerts = {} + if None != svg: + self.svg = svg + if None == self.svg and None != self.filename: + fd = open(self.filename, 'rb') + self.svg = fd.read() + fd.close() + + self.autoClose = True # TODO: make it optional + self.removeInvisible = True # TODO: make it optional + self.removeStrayPoints = True # TODO: make it optional + # if last point of a path is further from first point, then an explicit + # 'lineto' is written to the first point before 'closepath' + self.closeDist = 0.1 + self.matrices = TransformationMatrixStack() + self.cssStack = [{}] + self.gradients = {} + self.docHeight = 400 + self.docWidth = 400 + self.layerColor = 0 + self.section = None + self.clipPath = False + self.epsComments = """%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: tzunghaor svg2eps +%%Pages: 1 +%%DocumentData: Clean7Bit +%%LanguageLevel: 3 +%%DocumentNeededResources: procset Adobe_Illustrator_AI5 1.3 0 +%AI5_FileFormat 3 +""" + # TODO: creation date, user etc + + self.epsProlog = """%%BeginProlog +100 dict begin +/tzung_eps_state save def +/dict_count countdictstack def +/op_count count 1 sub def +/Adobe_Illustrator_AI5 where +{ pop } { + /tzung_strokergb [ 0 0 0 ] def + /tzung_compound 0 def + /tzung_closeop { S } def + /tzung_fillrule 0 def + + /*u { /tzung_compound 1 def newpath /tzung_fillrule 0 def } bind def + /*U { /tzung_compound 0 def tzung_closeop } bind def + /u {} bind def + /U {} bind def + + /q { clipsave } bind def + /Q { cliprestore } bind def + /W { clip } bind def + + /Lb { 10 {pop} repeat } bind def + /Ln {pop} bind def + /LB {} bind def + + + /w { setlinewidth } bind def + /J { setlinecap } bind def + /j { setlinejoin } bind def + /M { setmiterlimit } bind def + /d { setdash } bind def + + /m { tzung_compound 0 eq { newpath /tzung_fillrule 0 def } if moveto } bind def + /l { lineto } bind def + /c { curveto } bind def + + /XR { /tzung_fillrule exch def } bind def + /Xa { setrgbcolor } bind def + /XA { 3 array astore /tzung_strokergb exch def } bind def + + + /F { tzung_compound 0 eq { + tzung_fillrule 0 eq { fill } { eofill } ifelse + } { + /tzung_closeop {F} def + } ifelse } bind def + /f { closepath F } bind def + /S { tzung_compound 0 eq { + tzung_strokergb aload pop setrgbcolor stroke + } { + /tzung_closeop {S} def + } ifelse } bind def + /s { closepath S } bind def + + /B { tzung_compound 0 eq { + gsave + tzung_fillrule 0 eq { fill } { eofill } ifelse + grestore + tzung_strokergb aload pop setrgbcolor stroke + } { + /tzung_closeop {B} def + } ifelse } bind def + /b { closepath B } bind def + /H { tzung_compound 0 eq { + }{ + /tzung_closeop {H} def + } ifelse} bind def + /h { closepath } bind def + /N { tzung_compound 0 eq { + }{ + /tzung_closeop {N} def + } ifelse} bind def + /n { closepath N } bind def + + + /Bn { /dict_gradients exch dict def} bind def + /Bd { /tmp_ngradstop exch def /tmp_shadingtype exch def } bind def %leaves gradient name in stack + /BD { ] % this handles only stops that have CMYKRGB color definitions + % linear gradient stops must be in reverse order, radials in normal order + aload + pop + /tmp_boundaries tmp_ngradstop array def + /tmp_colors tmp_ngradstop array def + tmp_shadingtype 0 eq { + 0 1 tmp_ngradstop 1 sub % for i=0; i<= number of gradient stops - 1; i++ + } { + tmp_ngradstop 1 sub -1 0 % for i=number of gradient stops - 1; i >= 0; i++ + } ifelse + { + /loopvar exch def + 100 div + tmp_boundaries loopvar + 3 -1 roll put % obj array i => array i obj + pop % assume gradient middle is always 50 + pop % assume color type is always 2 (CMYKRGB) + 3 array astore + tmp_colors loopvar + 3 -1 roll put + pop pop pop pop % drop CMYK values + } for + + tmp_ngradstop 2 eq { + /tmp_function 5 dict def + tmp_boundaries 0 get tmp_boundaries 1 get 2 array astore + tmp_function /Domain 3 -1 roll put + tmp_function /FunctionType 2 put + tmp_function /C0 tmp_colors 0 get put + tmp_function /C1 tmp_colors 1 get put + tmp_function /N 1 put + + } { + /tmp_functions tmp_ngradstop 1 sub array def + + 0 1 tmp_ngradstop 2 sub { + /loopvar exch def + /tmp_function 5 dict def + tmp_function /Domain [0 1] put + tmp_function /FunctionType 2 put + tmp_function /C0 tmp_colors loopvar get put + tmp_function /C1 tmp_colors loopvar 1 add get put + tmp_function /N 1 put + tmp_functions loopvar tmp_function put + } for + + + /tmp_function 5 dict def + tmp_boundaries 0 get tmp_boundaries tmp_ngradstop 1 sub get 2 array astore + tmp_function /Domain 3 -1 roll put + tmp_function /FunctionType 3 put + tmp_boundaries aload pop + tmp_ngradstop -1 roll pop pop % remove first and last bounds + tmp_ngradstop 2 sub array astore + tmp_function /Bounds 3 -1 roll put + tmp_function /Functions tmp_functions put + + tmp_ngradstop 1 sub { + 0 1 + } repeat + tmp_ngradstop 1 sub 2 mul array astore + tmp_function /Encode 3 -1 roll put + + } ifelse + + /tmp_shading 6 dict def + tmp_shadingtype 0 eq { + tmp_shading /ShadingType 2 put + tmp_shading /Coords [ 0 0 1 0 ] put + } { + tmp_shading /ShadingType 3 put + tmp_shading /Coords [ 0 0 0 0 0 1 ] put + } ifelse + tmp_shading /ColorSpace /DeviceRGB put + tmp_shading /Domain [0 1] put + tmp_shading /Extend[ true true] put + tmp_shading /Function tmp_function put + + /tmp_gradient 2 dict def + tmp_gradient /PatternType 2 put + tmp_gradient /Shading tmp_shading put + + dict_gradients exch tmp_gradient put % gradient's name is on the top of the stack from Bd operator + + } bind def + /Lb { 10 { pop } repeat } bind def + /Ln { pop } bind def + /Bb { } bind def + + /Bg { + 6 { pop } repeat + gsave + 4 2 roll + translate + exch + rotate + dup scale + exch pop % remove Bg flag + dict_gradients exch get % now gradient name is on top of the stack + [ 1 0 0 1 0 0 ] + makepattern + /pattern_tmp exch def + grestore + pattern_tmp setpattern + gsave % save for after pattern fil for possible stroke + } def + /BB { grestore 2 eq { s } if } bind def + /LB { } bind def + +} ifelse +""" + self.epsSetup = """%%BeginSetup +/Adobe_Illustrator_AI5 where +{ + pop + Adobe_Illustrator_AI5 /initialize get exec +} if +""" + self.epsLayers = "" + self.epsTrailer = """%%Trailer +showpage +count op_count sub {pop} repeat +countdictstack dict_count sub {end} repeat +tzung_eps_state restore +end +%%EOF +""" + + + self.root = ET.fromstring(self.svg) + self.walkElem(self.root) + self.gradientSetup() + + sizeComment = "%%%%BoundingBox: 0 0 %d %d\n" % (math.ceil(self.docWidth), math.ceil(self.docHeight)) + sizeComment += "%%%%HiResBoundingBox: 0 0 %f %f\n" % (self.docWidth, self.docHeight) + sizeComment += "%%AI5_ArtSize: %f %f\n" % (self.docWidth, self.docHeight) + pagesetup = """%%%%Page: 1 1 +%%%%BeginPageSetup +%%%%PageBoundingBox: 0 0 %d %d +%%%%EndPageSetup +""" % (self.docWidth, self.docHeight) + + eps = self.epsComments + sizeComment + "%%EndComments\n\n" + eps += self.epsProlog + "\n%%EndProlog\n\n" + eps += self.epsSetup + "\n%%EndSetup\n\n" + eps += pagesetup + self.epsLayers + "\n\n" + eps += self.epsTrailer + + return eps + +# Start of main() entry point + +assert len(sys.argv) >= 2, "missing filename" + +converter = svg2eps(sys.argv[1]) + +print(converter.convert()) +#TODO: show alerts in dialogbox +#converter.showAlerts() diff --git a/extensions/fablabchemnitz/ai_compatible_eps_output/meta.json b/extensions/fablabchemnitz/ai_compatible_eps_output/meta.json new file mode 100644 index 0000000..d96b605 --- /dev/null +++ b/extensions/fablabchemnitz/ai_compatible_eps_output/meta.json @@ -0,0 +1,21 @@ +[ + { + "name": "AI compatible EPS output", + "id": "fablabchemnitz.de.ai_compatible_eps_output", + "path": "ai_compatible_eps_output", + "dependent_extensions": null, + "original_name": "AI compatible EPS output", + "original_id": "org.inkscape.output.ai_eps", + "license": "MIT License", + "license_url": "https://github.com/tzunghaor/inkscape-eps-export/blob/master/aieps_output.py", + "comment": "", + "source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/ai_compatible_eps_output", + "fork_url": "https://github.com/tzunghaor/inkscape-eps-export", + "documentation_url": "https://stadtfabrikanten.org/pages/viewpage.action?pageId=55018922&searchId=UF0RDT9E0", + "inkscape_gallery_url": null, + "main_authors": [ + "github.com/tzunghaor", + "github.com/vmario89" + ] + } +] \ No newline at end of file diff --git a/extensions/fablabchemnitz/bounding_box/bounding_box.py b/extensions/fablabchemnitz/bounding_box/bounding_box.py index af99974..9434dde 100644 --- a/extensions/fablabchemnitz/bounding_box/bounding_box.py +++ b/extensions/fablabchemnitz/bounding_box/bounding_box.py @@ -15,29 +15,30 @@ class BoundingBox(inkex.EffectExtension): pars.add_argument('--split', type = inkex.Boolean, default = True, help = 'Handle selection as group') def drawBBox(self, bbox): - so = self.options - offset = self.svg.unittouu(str(so.offset) + so.unit) - if self.options.box: - attribs = { - 'style' : str(inkex.Style({'stroke':'#ff0000','stroke-width':str(self.svg.unittouu("1px")),'fill':'none'})), - 'x' : str(bbox.left - offset), - 'y' : str(bbox.top - offset), - 'width' : str(bbox.width + 2 * offset), - 'height': str(bbox.height + 2 * offset), - 'ry' : str(self.options.corner_radius), - 'rx' : str(self.options.corner_radius) - } - etree.SubElement(self.svg.get_current_layer(), inkex.addNS('rect','svg'), attribs) - - if self.options.circle: - attribs = { - 'style': str(inkex.Style({'stroke':'#ff0000','stroke-width':str(self.svg.unittouu("1px")),'fill':'none'})), - 'cx' : str(bbox.center_x), - 'cy' : str(bbox.center_y), - #'r' : str(bbox.width / 2 + offset), - 'r' : str(math.sqrt((bbox.width + 2 * offset)* (bbox.width + 2 * offset) + (bbox.height + 2 * self.options.offset) * (bbox.height + 2 * self.options.offset)) / 2), - } - etree.SubElement(self.svg.get_current_layer(), inkex.addNS('circle','svg'), attribs) + if bbox is not None: #bbox might be None in case of shape elements like pointy paths + so = self.options + offset = self.svg.unittouu(str(so.offset) + so.unit) + if self.options.box: + attribs = { + 'style' : str(inkex.Style({'stroke':'#ff0000','stroke-width':str(self.svg.unittouu("1px")),'fill':'none'})), + 'x' : str(bbox.left - offset), + 'y' : str(bbox.top - offset), + 'width' : str(bbox.width + 2 * offset), + 'height': str(bbox.height + 2 * offset), + 'ry' : str(self.options.corner_radius), + 'rx' : str(self.options.corner_radius) + } + etree.SubElement(self.svg.get_current_layer(), inkex.addNS('rect','svg'), attribs) + + if self.options.circle: + attribs = { + 'style': str(inkex.Style({'stroke':'#ff0000','stroke-width':str(self.svg.unittouu("1px")),'fill':'none'})), + 'cx' : str(bbox.center_x), + 'cy' : str(bbox.center_y), + #'r' : str(bbox.width / 2 + offset), + 'r' : str(math.sqrt((bbox.width + 2 * offset)* (bbox.width + 2 * offset) + (bbox.height + 2 * self.options.offset) * (bbox.height + 2 * self.options.offset)) / 2), + } + etree.SubElement(self.svg.get_current_layer(), inkex.addNS('circle','svg'), attribs) def effect(self): diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/dxf_dwg_importer.inx b/extensions/fablabchemnitz/dxf_dwg_importer/dxf_dwg_importer.inx new file mode 100644 index 0000000..bfa5ac2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/dxf_dwg_importer.inx @@ -0,0 +1,197 @@ + + + DXF/DWG Importer + fablabchemnitz.de.dxf_dwg_importer + + + + + + + + + + + + true + 0.0 + + + + + + + + C:\Users\ + true + + + + false + C:\Program Files\ODA\ODAFileConverter_title 21.6.0\ODAFileConverter.exe + true + + + + + + + + + + + + + + + true + true + + + + + true + + true + + + + + + + + + + + + false + + + + + + + true + true + true + true + true + true + true + true + + + + true + true + true + true + true + true + true + true + + + + + + + true + true + true + true + true + true + true + true + + + + true + true + true + true + true + true + true + true + + + + + + + C:\Program Files (x86)\sK1 Project\UniConvertor-1.1.6\uniconvertor.cmd + + + 0.100 + false + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ../000_about_fablabchemnitz.svg + + + + all + + + + + + + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/dxf_dwg_importer.py b/extensions/fablabchemnitz/dxf_dwg_importer/dxf_dwg_importer.py new file mode 100644 index 0000000..4423686 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/dxf_dwg_importer.py @@ -0,0 +1,458 @@ +#!/usr/bin/env python3 + +""" +Extension for InkScape 1.0 + +Import any DWG or DXF file using ODA File Converter, sk1 UniConvertor, ezdxf and more tools. + +Author: Mario Voigt / FabLab Chemnitz +Mail: mario.voigt@stadtfabrikanten.org +Date: 23.08.2020 +Last patch: 04.04.2021 +License: GNU GPL v3 + +Module licenses +- ezdxf (https://github.com/mozman/ezdxf) - MIT License +- node.js (https://raw.githubusercontent.com/nodejs/node/master/LICENSE) - MIT License +- https://github.com/bjnortier/dxf - MIT License +- ODA File Converter - not bundled (due to restrictions by vendor) +- sk1 UniConvertor (https://github.com/sk1project/uniconvertor) - AGPL v3.0 - not bundled +- kabeja (http://kabeja.sourceforge.net/) - Apache v2 +- vpype (https://github.com/abey79/vpype) - MIT License +- vpype-dxf (https://github.com/tatarize/vpype-dxf) - MIT License + +ToDos: +- change copy commands to movefile commands (put into temp. sub directories where the input file is located). We need to copy files in this script because ODA File Converter will process whole dirs instead of single files only.DXF files can be really large, which slows the process) +- vpype will crash because inkscape(ObjectToPath) fails -> lines have missing style attribute? +""" + +import inkex +import sys +import os +import re +import subprocess +import tempfile +from lxml import etree +from subprocess import Popen, PIPE +import shutil +from shutil import which +from pathlib import Path +from mimetypes import MimeTypes +import urllib.request as urllib + +#ezdxf related imports +import matplotlib.pyplot as plt +import ezdxf +from ezdxf.addons.drawing import RenderContext, Frontend +#from ezdxf.addons.drawing.matplotlib_backend import MatplotlibBackend for older ezdxf library 0.14.1 +from ezdxf.addons.drawing.matplotlib import MatplotlibBackend #for recent ezdxf library 0.15.2 +from ezdxf.addons import Importer + +class DXFDWGImport(inkex.EffectExtension): + + def add_arguments(self, pars): + #blank tabs + pars.add_argument("--tab") + + #general + pars.add_argument("--inputfile") + pars.add_argument("--dxf_to_svg_parser", default="bjnortier", help="Choose a DXF to SVG parser") + pars.add_argument("--resizetoimport", type=inkex.Boolean, default=True, help="Resize the canvas to the imported drawing's bounding box") + pars.add_argument("--extraborder", type=float, default=0.0) + pars.add_argument("--extraborder_units") + + #ODA File Converter + pars.add_argument("--oda_fileconverter", default=r"C:\Program Files\ODA\oda_fileconverter_title 21.6.0\oda_fileconverter.exe", help="Full path to 'oda_fileconverter.exe'") + pars.add_argument("--oda_hidewindow", type=inkex.Boolean, default=True, help="Hide ODA GUI window") + pars.add_argument("--oda_outputformat", default="ACAD2018_DXF", help="ODA AutoCAD Output version") + pars.add_argument("--oda_keepconverted_dxf", type=inkex.Boolean, default=True, help="Keep ODA converted DXF file") + pars.add_argument("--oda_skip_dxf_to_dxf", type=inkex.Boolean, default=False, help="Skip conversion from DXF to DXF") + pars.add_argument("--oda_audit_repair", type=inkex.Boolean, default=True, help="Perform audit / autorepair") + + #sk1 UniConvertor + pars.add_argument("--sk1_uniconverter", default=r"C:\Program Files (x86)\sK1 Project\UniConvertor-1.1.6\uniconvertor.cmd", help="Full path to 'uniconvertor.cmd'") + pars.add_argument("--opendironerror", type=inkex.Boolean, default=True, help="Open containing output directory on conversion errors") + + #ezdxf preprocessing + pars.add_argument("--ezdxf_preprocessing", type=inkex.Boolean, default=True) + pars.add_argument("--ezdxf_output_version", default="SAME", help="ezdxf output version") + pars.add_argument("--ezdfx_keep_preprocessed", type=inkex.Boolean, default=True, help="Keep ezdxf preprocessed DXF file") + pars.add_argument("--allentities", type=inkex.Boolean, default=True) + + #vpype-dxf (dread) + pars.add_argument("--vpype_quantization", type=float, default=0.1, help="Maximum length of segments approximating curved elements (default 0.1mm)") + pars.add_argument("--vpype_simplify", type=inkex.Boolean, default=False, help="Simplify curved elements") + pars.add_argument("--vpype_parallel", type=inkex.Boolean, default=False, help="Multiprocessing curve conversion") + + #sk1 compatible entities + pars.add_argument("--THREE_DFACE", type=inkex.Boolean, default=True) #3DFACE + pars.add_argument("--ARC", type=inkex.Boolean, default=True) + pars.add_argument("--BLOCK", type=inkex.Boolean, default=True) + pars.add_argument("--CIRCLE", type=inkex.Boolean, default=True) + pars.add_argument("--ELLIPSE", type=inkex.Boolean, default=True) + pars.add_argument("--LINE", type=inkex.Boolean, default=True) + pars.add_argument("--LWPOLYLINE", type=inkex.Boolean, default=True) + pars.add_argument("--POINT", type=inkex.Boolean, default=True) + pars.add_argument("--POLYLINE", type=inkex.Boolean, default=True) + pars.add_argument("--POP_TRAFO", type=inkex.Boolean, default=True) + pars.add_argument("--SEQEND", type=inkex.Boolean, default=True) + pars.add_argument("--SOLID", type=inkex.Boolean, default=True) + pars.add_argument("--SPLINE", type=inkex.Boolean, default=True) + pars.add_argument("--TABLE", type=inkex.Boolean, default=True) + pars.add_argument("--VERTEX", type=inkex.Boolean, default=True) + pars.add_argument("--VIEWPORT", type=inkex.Boolean, default=True) + + #other entities + pars.add_argument("--THREE_DSOLID", type=inkex.Boolean, default=True) #3DSOLID + pars.add_argument("--ATTRIB", type=inkex.Boolean, default=True) + pars.add_argument("--BODY", type=inkex.Boolean, default=True) + pars.add_argument("--ARC_DIMENSION", type=inkex.Boolean, default=True) + pars.add_argument("--HATCH", type=inkex.Boolean, default=True) + pars.add_argument("--IMAGE", type=inkex.Boolean, default=True) + pars.add_argument("--INSERT", type=inkex.Boolean, default=True) + pars.add_argument("--MESH", type=inkex.Boolean, default=True) + pars.add_argument("--MTEXT", type=inkex.Boolean, default=True) + pars.add_argument("--RAY", type=inkex.Boolean, default=True) + pars.add_argument("--REGION", type=inkex.Boolean, default=True) + pars.add_argument("--SHAPE", type=inkex.Boolean, default=True) + pars.add_argument("--SURFACE", type=inkex.Boolean, default=True) + pars.add_argument("--TRACE", type=inkex.Boolean, default=True) + pars.add_argument("--UNDERLAY", type=inkex.Boolean, default=True) + pars.add_argument("--XLINE", type=inkex.Boolean, default=True) + + def openExplorer(self, temp_output_dir): + DETACHED_PROCESS = 0x00000008 + if os.name == 'nt': + subprocess.Popen(["explorer", temp_output_dir], close_fds=True, creationflags=DETACHED_PROCESS).wait() + else: + subprocess.Popen(["xdg-open", temp_output_dir], close_fds=True, start_new_session=True).wait() + + def effect(self): + #get input file and copy it to some new temporary directory + inputfile = self.options.inputfile + if not os.path.exists(inputfile): + self.msg("The input file does not exist. Please select a *.dxf or *.dwg file and try again.") + exit(1) + temp_input_dir = os.path.join(tempfile.gettempdir(),"dxfdwg_input") + shutil.rmtree(temp_input_dir, ignore_errors=True) #remove the input directory before doing new job + if not os.path.exists(temp_input_dir): + os.mkdir(temp_input_dir) #recreate blank dir + shutil.copy2(inputfile, os.path.join(temp_input_dir, Path(inputfile).name)) # complete target filename given + + #Prepapre output conversion + outputfilebase = os.path.splitext(os.path.basename(inputfile))[0] + inputfile_ending = os.path.splitext(os.path.basename(inputfile))[1] + temp_output_dir = os.path.join(tempfile.gettempdir(),"dxfdwg_output") + shutil.rmtree(temp_output_dir, ignore_errors=True) #remove the output directory before doing new job + if not os.path.exists(temp_output_dir): + os.mkdir(temp_output_dir) + + #Prepare some more options for proceeding + autocad_version = self.options.oda_outputformat.split("_")[0] + autocad_format = self.options.oda_outputformat.split("_")[1] + self.options.oda_audit_repair = "1" if self.options.oda_audit_repair else "0" #overwrite string bool with int value + entityspace = [] + if self.options.allentities or self.options.THREE_DFACE: entityspace.append("3DFACE") + if self.options.allentities or self.options.ARC: entityspace.append("ARC") + if self.options.allentities or self.options.BLOCK: entityspace.append("BLOCK") + if self.options.allentities or self.options.CIRCLE: entityspace.append("CIRCLE") + if self.options.allentities or self.options.ELLIPSE: entityspace.append("ELLIPSE") + if self.options.allentities or self.options.LINE: entityspace.append("LINE") + if self.options.allentities or self.options.LWPOLYLINE: entityspace.append("LWPOLYLINE") + if self.options.allentities or self.options.POINT: entityspace.append("POINT") + if self.options.allentities or self.options.POLYLINE: entityspace.append("POLYLINE") + if self.options.allentities or self.options.POP_TRAFO: entityspace.append("POP_TRAFO") + if self.options.allentities or self.options.SEQEND: entityspace.append("SEQEND") + if self.options.allentities or self.options.SOLID: entityspace.append("SOLID") + if self.options.allentities or self.options.SPLINE: entityspace.append("SPLINE") + if self.options.allentities or self.options.TABLE: entityspace.append("TABLE") + if self.options.allentities or self.options.VERTEX: entityspace.append("VERTEX") + if self.options.allentities or self.options.VIEWPORT: entityspace.append("VIEWPORT") + + if self.options.allentities or self.options.THREE_DSOLID: entityspace.append("3DSOLID") + if self.options.allentities or self.options.ATTRIB: entityspace.append("ATTRIB") + if self.options.allentities or self.options.BODY: entityspace.append("BODY") + if self.options.allentities or self.options.ARC_DIMENSION: entityspace.append("ARC_DIMENSION") + if self.options.allentities or self.options.HATCH: entityspace.append("HATCH") + if self.options.allentities or self.options.IMAGE: entityspace.append("IMAGE") + if self.options.allentities or self.options.INSERT: entityspace.append("INSERT") + if self.options.allentities or self.options.MESH: entityspace.append("MESH") + if self.options.allentities or self.options.MTEXT: entityspace.append("MTEXT") + if self.options.allentities or self.options.RAY: entityspace.append("RAY") + if self.options.allentities or self.options.REGION: entityspace.append("REGION") + if self.options.allentities or self.options.SHAPE: entityspace.append("SHAPE") + if self.options.allentities or self.options.SURFACE: entityspace.append("SURFACE") + if self.options.allentities or self.options.TRACE: entityspace.append("TRACE") + if self.options.allentities or self.options.UNDERLAY: entityspace.append("UNDERLAY") + if self.options.allentities or self.options.XLINE: entityspace.append("XLINE") + + #ODA to ezdxf mapping + oda_ezdxf_mapping = [] + oda_ezdxf_mapping.append(["ACAD9", "R12", "AC1004"]) #this mapping is not supported directly. so we use the lowest possible which is R12 + oda_ezdxf_mapping.append(["ACAD10", "R12", "AC1006"]) #this mapping is not supported directly. so we use the lowest possible which is R12 + oda_ezdxf_mapping.append(["ACAD12", "R12", "AC1009"]) + oda_ezdxf_mapping.append(["ACAD13", "R2000","AC1012"]) #R13 was overwritten by R2000 which points to AC1015 instead of AC1014 (see documentation) + oda_ezdxf_mapping.append(["ACAD14", "R2000","AC1014"]) #R14 was overwritten by R2000 which points to AC1015 instead of AC1014 (see documentation) + oda_ezdxf_mapping.append(["ACAD2000","R2000","AC1015"]) + oda_ezdxf_mapping.append(["ACAD2004","R2004","AC1018"]) + oda_ezdxf_mapping.append(["ACAD2007","R2007","AC1021"]) + oda_ezdxf_mapping.append(["ACAD2010","R2010","AC1024"]) + oda_ezdxf_mapping.append(["ACAD2013","R2013","AC1027"]) + oda_ezdxf_mapping.append(["ACAD2018","R2018","AC1032"]) + + ezdxf_autocad_format = None + for oe in oda_ezdxf_mapping: + if oe[0] == autocad_version: + ezdxf_autocad_format = oe[1] + break + if ezdxf_autocad_format is None: + self.msg("ezdxf conversion format version unknown") + + #Prepare DXF and SVG paths + dxf_file = os.path.join(temp_output_dir, outputfilebase + ".dxf") + svg_file = os.path.join(temp_output_dir, outputfilebase + ".svg") + + # Run ODA File Converter + if self.options.oda_skip_dxf_to_dxf == False or inputfile_ending == ".dwg": + # Executable test (check for proper configuration by checking mime type. Should return octet stream for a binary executable) + if os.name == "nt" and "application/octet-stream" not in str(MimeTypes().guess_type(urllib.pathname2url(self.options.oda_fileconverter))): + self.msg("You selected to use ODA File Converter but it is not configured properly. Check for installation and path location or select 'Skip conversion from DXF to DXF'. You can download ODA Converter from 'https://www.opendesign.com/guestfiles/oda_file_converter'. You need to install it in order to use it.") + exit(1) + elif os.path.isfile(self.options.oda_fileconverter) == False: + self.msg("You selected to use ODA File Converter but it is not configured properly. Check for installation and path location or select 'Skip conversion from DXF to DXF'. You can download ODA Converter from 'https://www.opendesign.com/guestfiles/oda_file_converter'. You need to install it in order to use it.") + exit(1) + else: + # Build and run ODA File Converter command + oda_cmd = [self.options.oda_fileconverter, temp_input_dir, temp_output_dir, autocad_version, autocad_format, "0", self.options.oda_audit_repair] + if os.name == 'nt' and self.options.oda_hidewindow: + info = subprocess.STARTUPINFO() #hide the ODA File Converter window because it is annoying (does not work for Linux :-() + info.dwFlags = 1 + info.wShowWindow = 0 + proc = subprocess.Popen(oda_cmd, startupinfo=info, shell=False, stdout=PIPE, stderr=PIPE) + else: + proc = subprocess.Popen(oda_cmd, shell=False, stdout=PIPE, stderr=PIPE) + stdout, stderr = proc.communicate() + if proc.returncode != 0: #in this case we exit + self.msg("ODAFileConverter failed: %d %s %s" % (proc.returncode, stdout, stderr)) + if os.name != 'nt': + self.msg("If the error message above contains a warning about wrong/missing Qt version please install the required version. You can get the installer from 'https://download.qt.io/archive/qt/'. Sadly you will need to create a free account to install. After installation please configure the shell script '/usr/bin/ODAFileConverter' to add a preceding line with content similar to 'LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/Qt5.14.2/5.14.2/gcc_64/lib/'.") + exit(1) + if len(stderr) > 0 and stderr != b"Quit (core dumped)\n": #in this case we only warn about + self.msg("ODAFileConverter returned some error output (which might be ignored): %d %s %s" % (proc.returncode, stdout, stderr)) + + # check if ODA converted successfully. This is the case if no error file was created + oda_errorfile = os.path.join(temp_output_dir, Path(inputfile).name + ".err") + if os.path.exists(oda_errorfile): + self.msg("ODA File Converter failed to process the file. Cannot continue DXF/DWG import. The error message is:") + errormessage = open(oda_errorfile, 'r') + errorlines = errormessage.readlines() + for errorline in errorlines: + self.msg(errorline.strip()) + errormessage.close() + exit(1) + + # Do some movings/copies of skipped or processed DXF + if self.options.oda_skip_dxf_to_dxf: #if true we need to move the file to simulate "processed" + shutil.move(os.path.join(temp_input_dir, Path(inputfile).name), os.path.join(temp_output_dir, Path(inputfile).name)) + + if self.options.oda_keepconverted_dxf: + shutil.copy2(dxf_file, os.path.join(os.path.dirname(inputfile), outputfilebase + "_oda.dxf")) # complete target filename given + + # Preprocessing DXF to DXF (entity filter) by using ezdxf the first time + if self.options.dxf_to_svg_parser == "vpype_dxf": + self.options.ezdxf_preprocessing = False #prevent to run infinitely without any error + if self.options.ezdxf_preprocessing: + # uniconverter does not handle all entities. we parse the file to exlude stuff which lets uniconverter fail + dxf = ezdxf.readfile(dxf_file) + modelspace = dxf.modelspace() + allowed_entities = [] + # supported entities by UniConverter- impossible: MTEXT TEXT INSERT and a lot of others + query_string = str(entityspace)[1:-1].replace("'","").replace(",","") + if query_string != "": + for e in modelspace.query(query_string): + allowed_entities.append(e) + #self.msg(ezdxf_autocad_format) + #self.msg(self.options.ezdxf_output_version) + if self.options.ezdxf_output_version == "SAME": + doc = ezdxf.new(ezdxf_autocad_format) + else: + doc = ezdxf.new(self.options.ezdxf_output_version) #use the string values from inx file. Required to match the values from ezdxf library. See Python reference + msp = doc.modelspace() + for e in allowed_entities: + msp.add_foreign_entity(e) + doc.saveas(dxf_file) + if self.options.ezdfx_keep_preprocessed: + shutil.copy2(dxf_file, os.path.join(os.path.dirname(inputfile), outputfilebase + "_ezdxf.dxf")) # complete target filename given + + # Make SVG from DXF + if self.options.dxf_to_svg_parser == "sk1": + if os.name != "nt": + self.msg("You selected sk1 UniConvertor but you are not running on a Windows platform. On Linux uniconverter 1.1.X can be installed using the now obsolete Python 2.7, but it will not run correctly because you finally will fail at installing liblcms1-dev library on newer systems. That leads to uncompilable sk1libs package. Unfortunately sk1 UniConvertor 2.X does not support dxf format. So please use another DXF to SVG converter.") + exit(1) + sk1_command_ending = os.path.splitext(os.path.splitext(os.path.basename(self.options.sk1_uniconverter))[1])[0] + if sk1_command_ending != ".cmd": + self.msg("You selected sk1 UniConverter but it was not configured properly. Check the path to the executable.") + exit(1) + uniconverter_cmd = [self.options.sk1_uniconverter, dxf_file, svg_file] + #self.msg(uniconverter_cmd) + proc = subprocess.Popen(uniconverter_cmd, shell=False, stdout=PIPE, stderr=PIPE) + stdout, stderr = proc.communicate() + if proc.returncode != 0: + self.msg("UniConverter failed: %d %s %s" % (proc.returncode, stdout, stderr)) + if self.options.opendironerror: + self.openExplorer(temp_output_dir) + + elif self.options.dxf_to_svg_parser == "bjnortier": + if which("node") is None: + self.msg("NodeJS executable not found on path. Please check your installation.") + exit(1) + else: + bjnortier_cmd = ["node", os.path.join("node_modules","dxf","lib","cli.js"), dxf_file, svg_file] + #self.msg(bjnortier_cmd) + proc = subprocess.Popen(bjnortier_cmd, shell=False, stdout=PIPE, stderr=PIPE) + stdout, stderr = proc.communicate() + if proc.returncode != 0: + self.msg("node.js DXF to SVG conversion failed: %d %s %s" % (proc.returncode, stdout, stderr)) + if self.options.opendironerror: + self.openExplorer(temp_output_dir) + + elif self.options.dxf_to_svg_parser == "kabeja": + wd = os.path.join(os.getcwd(), "kabeja") + #self.msg(wd) + proc = subprocess.Popen("java -jar launcher.jar -nogui -pipeline svg " + dxf_file + " " + svg_file, cwd=wd, shell=True, stdout=PIPE, stderr=PIPE) + stdout, stderr = proc.communicate() + if proc.returncode != 0: + self.msg("kabeja failed: %d %s %s" % (proc.returncode, stdout, stderr)) + if self.options.opendironerror: + self.openExplorer(temp_output_dir) + + elif self.options.dxf_to_svg_parser == "vpype_dxf": + try: + from inkex.command import inkscape + import vpype + from vpype_cli import execute + except Exception as e: + self.msg("Error importing vpype. Did you properly install the vpype and vpype-dxf python modules?") + exit(1) + doc = vpype.Document() #create new vpype document + command = "dread --quantization " + str(self.options.vpype_quantization) #dread = Extract geometries from a DXF file. + if self.options.vpype_simplify is True: + command += " --simplify" + if self.options.vpype_parallel is True: + command += " --parallel" + #command += " '" + inputfile + "'" + command += " '" + dxf_file + "'" + + #self.msg(command) + doc = execute(command, doc) + if doc.length() == 0: + self.msg('No lines left after vpype conversion. Conversion result is empty. Cannot continue') + exit(1) + # save the vpype document to new svg file and close it afterwards + output_fileIO = open(svg_file, "w", encoding="utf-8") + vpype.write_svg(output_fileIO, doc, page_size=None, center=False, source_string='', layer_label_format='%d', show_pen_up=False, color_mode='layer', use_svg_metadata=False, set_date=False) + output_fileIO.close() + # convert vpype polylines/lines/polygons to regular paths again. + cli_output = inkscape(svg_file, "--export-overwrite", actions="select-all;clone-unlink-recursively;object-to-path") + if len(cli_output) > 0: + self.debug(_("Inkscape returned the following output when trying to run the vpype object to path back-conversion:")) + self.debug(cli_output) + + elif self.options.dxf_to_svg_parser == "ezdxf": + try: + doc = ezdxf.readfile(dxf_file) + msp = doc.modelspace() + #for e in msp: #loop through entities + # self.msg(e) + #doc.header['$DIMSCALE'] = 0.2 does not apply to the plot :-( + #self.msg(doc.header['$DIMSCALE']) + #self.msg(doc.header['$MEASUREMENT']) + auditor = doc.audit() #audit & repair DXF document before rendering + # The auditor.errors attribute stores severe errors, which *may* raise exceptions when rendering. + if len(auditor.errors) == 0: + fig = plt.figure() + ax = plt.axes([0., 0., 1., 1.], xticks=[], yticks=[]) + #ax = plt.axes([0., 0., 1., 1.], frameon=False, xticks=[], yticks=[]) + #ax.patches = [] + #plt.axis('off') + plt.margins(0, 0) + plt.gca().xaxis.set_major_locator(plt.NullLocator()) + plt.gca().yaxis.set_major_locator(plt.NullLocator()) + plt.subplots_adjust(top=1, bottom=0, right=1, left=0, hspace=0, wspace=0) + out = MatplotlibBackend(fig.add_axes(ax)) + Frontend(RenderContext(doc), out).draw_layout(msp, finalize=True) + #plt.show() + #fig.savefig(os.path.join(temp_output_dir, outputfilebase + ".png"), dpi=300) + fig.savefig(svg_file) #see https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.savefig.html + except IOError: + self.msg("Not a DXF file or a generic I/O error.") + exit(1) + except ezdxf.DXFStructureError: + self.msg("Invalid or corrupted DXF file.") + exit(1) + + elif self.options.dxf_to_svg_parser == "legacy": + self.msg("The selected legacy DXF to SVG parser is not supported by this extension yet. Use File > Import > *.dxf. This calls the \"dxf_input.inx\" extension.") + exit(1) + else: + self.msg("undefined parser") + exit(1) + + # Write the generated SVG into InkScape's canvas + try: + stream = open(svg_file, 'r') + except FileNotFoundError as e: + self.msg("There was no SVG output generated. Cannot continue") + exit(1) + p = etree.XMLParser(huge_tree=True) + doc = etree.parse(stream, parser=etree.XMLParser(huge_tree=True)).getroot() + stream.close() + docGroup = self.document.getroot().add(inkex.Group(id=self.svg.get_unique_id("dxf_dwg_import-" + self.options.dxf_to_svg_parser + "-"))) + + if self.options.dxf_to_svg_parser == "ezdxf": + parent = doc.xpath("//svg:g[@id = 'axes_1']", namespaces=inkex.NSS)[0] + for element in parent: + docGroup.append(element) + elif self.options.dxf_to_svg_parser == "kabeja": + parent = doc.xpath("//svg:g[@id = 'draft']", namespaces=inkex.NSS)[0] + for element in parent: + docGroup.append(element) + else: + for element in doc.getchildren(): + docGroup.append(element) + + #get children of the doc and move them one group above - we don't do this for bjnortier tool because this has different structure which we don't want to disturb + if self.options.dxf_to_svg_parser == "sk1": + elements = [] + emptyGroup = None + for firstGroup in doc.getchildren(): + emptyGroup = firstGroup + for element in firstGroup.getchildren(): + elements.append(element) + #break #only one cycle - could be bad idea or not + for element in elements: + doc.set('id', self.svg.get_unique_id('dxf_dwg_import')) + doc.insert(doc.index(firstGroup), element) + + if emptyGroup is not None: + emptyGroup.getparent().remove(emptyGroup) + + #adjust viewport and width/height to have the import at the center of the canvas + if self.options.resizetoimport: + for element in self.document.getroot().iter("*"): + try: + element.bounding_box() + except: + pass + bbox = docGroup.bounding_box() #only works because we process bounding boxes previously. see top + if bbox is not None: + root = self.document.getroot(); + offset = self.svg.unittouu(str(self.options.extraborder) + self.options.extraborder_units) + root.set('viewBox', '%f %f %f %f' % (bbox.left - offset, bbox.top - offset, bbox.width + 2 * offset, bbox.height + 2 * offset)) + root.set('width', bbox.width + 2 * offset) + root.set('height', bbox.height + 2 * offset) + else: + self.msg("Error finding bounding box. Skipped that step ...") + +if __name__ == '__main__': + DXFDWGImport().run() \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/INSTALL b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/INSTALL new file mode 100644 index 0000000..bd46c08 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/INSTALL @@ -0,0 +1,26 @@ +Binary-package: +--------------- + +Windows: + * double-click "kabeja.exe" + +Linux/Unix: + * sh kabeja.sh + or: + * chmod a=rx kabeja.sh (only ones) + * ./kabeja.sh + +Other: + * java -jar launcher.jar + +Buidling: +--------- + +You need Ant for building (http://ant.apache.org). + +If you want to build the Cocoon-block you have to copy blocks.propterties +to local.blocks.properties and edit this file (set the path to the Cocoon-libraries). + +try: + +ant diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/README b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/README new file mode 100644 index 0000000..ca9acf6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/README @@ -0,0 +1,148 @@ +Kabeja is a small library for parsing DXF-Files and converting +this to SVG. It is licensed under the Apache Software License 2.0. + + +Limitation: +----------- +There are not all Entities of DXF supported yet. Text-Entities generate problems too. + +Supported: + + + *Arc + *Attrib + *Polyline + *Circle + *Line + *Blocks/Insert + *Text + *MText + *LWPolyline + *Solid + *Trace + *Ellipse + *Dimension + *Image + *Leader + *XLine + *Ray + *Hatch + *Spline + *MLine + +Planned: + + + + * Tolerance + + +You can use Kabeja from CLI (Command Line Interface) or embed in your application. + +GUI: +---- +Windows: + * double-click "kabeja.exe" + +Linux: + * sh kabeja.sh + + or: + + * chmod a=rx kabeja.sh (only ones) + * ./kabeja.sh + +Other: + * java -jar launcher.jar + + + +CLI: +---- +in the Kabeja-folder try: + + * Help and pipeline list + + java -jar launcher.jar --help + + * Convert to svg + + java -jar launcher.jar -nogui -pipeline svg myfile.dxf result.svg + + * Convert to pdf|jpeg|png|... + + java -jar launcher.jar -nogui -pipeline myfile.dxf + + +Normally Java uses 64 MB of your memory, to setup more use the following commandline +switch: + +java -Xmx256m -jar ..... + + + +GUI-Viewer: +----------- +in the 'lib'-folder try: + + java -jar kabeja-svgview.jar + + + +Cocoon 2.1 (XML-Publishing-Framework http://cocoon.apache.org/2.1): +------------------------------------------------------------------- + +Copy the 'kabeja.jar' and 'kabeja-svg2dxf-cocoon.jar' to your WEB-INF/lib-folder +of your Cocoon-Webapplication. Then you can use Kabeja as Generator like: + + +in your sitemap/subsitemap: + +snippet: +-------- + + + ..... + + + + + + + +.... + + + + + + + ... + + + + + + + + .... + + + + +Note: DXF-drafts often real large drafts, so the SVGDocument will consume a lot of memory. The Generator is +Cacheable so the first run will take more time. + + + + +Feedback and Help +----------------- + +Any help and feedback are greatly appreciated. + +Mail: simon.mieth@gmx.de + + + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/parser.xml b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/parser.xml new file mode 100644 index 0000000..6e3c47f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/parser.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/process.xml b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/process.xml new file mode 100644 index 0000000..840caa9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/process.xml @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/ui.xml b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/ui.xml new file mode 100644 index 0000000..29672b1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/conf/ui.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/doc/userguide.pdf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/doc/userguide.pdf new file mode 100644 index 0000000..d891134 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/doc/userguide.pdf @@ -0,0 +1,1000 @@ +%PDF-1.3 +% +4 0 obj +<< /Type /Info +/Producer (FOP 0.20.5) >> +endobj +5 0 obj +<< /Length 112 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Garg^iR2p+<%p5Z1Je?Kj"^U3a]o#Wl!/rM#!ck#?t,8-jCLh;`e=bc,R[K>=W=Z*Ail1!t_?Bqt$5,r~> +endstream +endobj +6 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 5 0 R +>> +endobj +7 0 obj +<< /Length 1506 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gb"/k?$#!`'Sc)P'tt(mlfq^FAb.q8FuJ$.Cj2c@K`a)Q$b"YFD"caf!cp'6b3nW'=bk)/JCeid0]taMGqF"u)Z4];""ZbQN042KV?7e\o7mE7=bmn*,j$8f1)S8g5E85'rCd`S2af.e+%LU^I6Pr_>%_t8%/pZ)DqE6sFgIPa'b:n9!eG?ipq";203,.;gK&dPT,).?kNeGj@);3_coe-sKu+m;^.c)S@Y4aB1usT4('LjlpL5%GGf2u&KNr+h*RA>%?B3Jc0#+Kpn>(=)>mqn[J@QM];(.lpj$c"uUtKht@8c6i0'jolP[iH>EY;8sO?S'o?N.,ZEQ%nl(JDVu2BfPp0"9nHRLuo#iY=RTM&oosQT^Shi!BQd\\M]1A51-:5+fmKA>No"\cpYuC^`/n.Q.8Xbb,1*>h^g6m"f/TnT\,b$Rk7=ONO+L2q&Jq+$YN=1Z=&3k`hD&#iJF)o`2Rb*^N\n3Uf'dgkL']sp;d1A/YB+OOFBR=&S>%g!7W]X"Z96Sb%9F1J%9gXN\`]GU?cT'@kP-tboa[8D7nSE#KO@6gG5?ul9&<-Z#(I;/SFa9.2o/mu[3().MY1**dH^c?d!gYE+nGC:PL`@N$J=:g;cbWf/aOb?CgP%ehR0^"dIFn9^=3@m]30%A&d#S`7PclsGp8H`)M5#edsT'Q3(qs@Zl<:(MP7_+K>!Q4jaT[oFnZg0+pX6b2_]^DpNj-WWkEs_pfl.L;g)Zi">JlQMJt6a:Y01&,H*Tr:jMkb"B#AI\HkS8fT`kWlMuEkn+GS?b5CGgbFr9\o4hhq@@.'Z%`30Q_+2/bXotMEjqAA'5Q%(u3*r\6L]'ZYfS#c-%2ZX:ToW'3W>j#JJE`]%IOT>B9,W.G._kB""&``1*0]7/OWfN8ferrRK)>71~> +endstream +endobj +8 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 7 0 R +>> +endobj +9 0 obj +<< /Length 883 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gb"0T9lJK7(^KPW5)#'PTuQOSgt:g;`f#@YBG0qoFb"7g8G)a"OAR\YCDqa&4U0a[Spf%9hS>;q>?IJ30baHPa$q_09;-+?oM/SL3;m?'_?r==#e">ut*oorf=+G5W_+/VNmPi0;X:;APd#=PeVp4'+#_q_-F4fe2Y@`.o&'BuH/L,mb?V7YgC%Wbl"iY:Z/Ml*,$ep#=[5X4tXt<^Ztnh2U/48/_:a$\8]02iZ[Pu/JY+fWT"4eR`FZ6'9YDM5mQ5D]?3W*i1g4@bX`=N2MC##\3MM,Fb5U_l_L8U7DsFO/=bU:Vn89)cgSK=P\3n2f9#cS7D6%ARr$Vh/`%Pe$D!(+7MRCu*0SucY-CCRRTm?1%3!b^s259AZdP'``OjHE5_mk3I=p^0b[m5Ge#1fI_^"J"DeU$3oP9aCCO0@l;Mjs>XkrX-M~> +endstream +endobj +10 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 9 0 R +>> +endobj +11 0 obj +<< /Length 167 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +GapXOYn"W)&4?3h$BOSiEClU(Z;q#P2PahLCpXoZ"$uiLaacO!H+#gS*K8i#S>?N2jiA&A1ca-]R!`Gr;E1=%=Qr/YdJg(`M$:>rC+)Y7&TdZ>V.uG5W#NfDRN;C.g*m8RiAOq*9-(;/;;0B9qE?"ELcatY0DtlUPTVs~> +endstream +endobj +12 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 11 0 R +>> +endobj +13 0 obj +<< /Length 1912 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gat%$bBDVu&DcY&\5RcML%>2`Y"kE*Vjk+qde)$p5U'kbTa1iJ/\>BI+[H_C>-o`(@:BMdg_gOg@!K@jrVXL<*1,=/2I"kcrQ;B]piEMr+L[V=OWBT=:9$Z^8lDb@g%l0:1il$b%/ZM3>T;Y/AC8%8D85=6JB_nM.]VoS6k:FRrrVRoZM9f'q6\'N)`HhF5OuPfA/:\E[hPH(]X#GM4N;6fM3E#47tE45m=pJ+gJl8X*LpN%cpr6nnk"n%\_lTQb*UB)j(%#WLh&F$W,X_a@Xipg!ReT\=%Oe/D%[;Ro=&E*3T!b'!?!O%3P>Cg!V$1RQ8p9A9H==Oom=@0i!+.J7T-p;Gb4V.VgQ^a5lTXB4mgq'T)+;=l1KZoN4)(XPiOd7A)F6$J9k%rQ7+h1b((f,/\Un8:SK6oc2CPiisK'X>fS1B4.5Aq:n,%CK5l(AGBZK_`,NVMFm"r0p'J.2P16S7Q4U\N\sF&B*sS1l?R3XkgX]#Sd17k43IZKnc;J-DIK*bb,gKZbZQfFC'U!Ipl01<(uj^S8g-cBkr7'*]^?<hSfZ=J%3nD_]4'9/39a7TUrnt=9f7Qsl^EUZ['#;r7a8BHcp9tu2J/g=U)Kc5Ef&.'U!M$_9fI_IN?.\Def;)o7g/8+k6P\"+)3"koVK-]n3]f.5e&WA05S9Q2`n`i[@"Q0ApVm^mh!2j3I1&%cL'R.4n#qg[IibciEN(I&Do6/cQcmI&B0l(+s:t!rK/rP^_0?R'`M\P26d&XJa^DMAlJYUiq@I&CS&N,loqo[8VVXaTgS1,YmZ7&.['7C!S"s7ih!?]i5AVKUa=r?eK!7QSN4p5`12^\*^dL>c4L/C(iO6=S"f%8VHifKUXYnE2:-*MU"XP[$s.bHe%Q@W7HjCHPWJF'3do6'CLg"B+Oouo*ZpMq)UoUbA-3FC0jL_n74Djrn%6jS@2]eK+lj@s!-4l+J0p-9Z4g-cVTd`?g8G`@=DW:(5u +endstream +endobj +14 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 13 0 R +/Annots 15 0 R +>> +endobj +15 0 obj +[ +16 0 R +] +endobj +16 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 194.776 497.355 208.276 488.355 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://ant.apache.org) +/S /URI >> +/H /I +>> +endobj +17 0 obj +<< /Length 893 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +GauHIbAu;j']&X:ZjU#=kUeg<,]/9"(7ils3i*5)aC+9<'da6:?c`h3h5&/';*87Ni;5M.*p[.XK/`D[\%NK2LdjWB#q=l,#Y6d?nfu"kO/Oe;%_`*XJ0>!^$Jf1P3%8)da=TkIIkQffNX1l>8'!a_lc7E0V@SS-;bTd*,GI0Z9OJ'd9;VI`rEj1jUl\h29K9i)6B#rD=J`5\7D!Zm5K\'AW_F2/g`8\N](F7qf3eXQ=b9WNQ?NW8$8mJSAg:[E:JD!ED'-$eW3>>lho\')pZa6p9[IF705a:,n@g5dg\^Ua^cBc.0W'dJ6+$umPpFr42oBQ2^-QNQn?G:oTV?d!j2ho.d1E"ekJbi=,>XL3T]1b>]Xre*hPc*k3%9NQnZ'2ldmc#O8[&#mU.hX0nQ2U=P<.E\@J4*@)3S^`obKHI7k^2OQN">Rne!NV@R:7HPg7,pBO!aQukE9W@@;H";T2^9\u,"&lCL3lQ)%[$4^E]h^J`reeLo1maUZs=LlS[&I)L4E4O&?2an)+&cC7Kpl>?b1$t\0$D#2eT`rVjjep:$X?)iCfGoU=Uk2U&UilN)6jm\l^M@KC/?<.])k63ND`C]"7Vgf/hg'oVJF:6h[P.:bEl>7;7"i1^mZY8"0Eb*etmEWr>ioRd#09L=DG>SNG'm.4-a5Q3\_J+bUt\FOHb@F'N(dn]Dd?Q`aF,0O%kbJ.YHl(CT~> +endstream +endobj +18 0 obj +<> +stream +Gb"-Vktfh's6p!F5B*e)/tL2K_WSf16B``j)A>G(#U.,'UG7afVT-WE[W.-s4h.mPTP`NZ"T`U/E2b&L$_i/"MJTTeg[#lsYTNN-IQm;>)^r#5!0;JE-i"f#L3\c#Qq'B3Z*03C`Y`3E0ub&?N%r>8M\GEq=HUj'"4E_A%,.61)T).Psuc.#_M,0&8OM2sl["b5[toD2EnTD\!pd".jR_7[P,0AmaWA-MASijN55m5Or,GpM)7L>jCrlD,L+tSdnaVC>i/cW-aNTjjr1Y\>%jUb^U@_'(O6O?X%tbXs7;@u(9f5K7N%rZ?D8d?%N%r3\8JGGa6g2,]]=/sT#)dX.sH0bt`DS!rVH`#+sqnaVC>TM;&cldL*,@]rT#ouXto!?DG,)0A:1XO*Z7dmM0sBO68/D8gA2=>7eY2N4o?MN9u\"`<$qgfBB=0uW65N3T@>O$AR,D;8/:Dl_8Z.X`C-X/'r4SQ%'&*F:/U96nr9l(sUhAM_>XUF]>BI>\qPZR%g70G_%[PBM?mY>=NXWP1Rlf/]K+5pq;F#b;\k1j"&&An5mcEEb.U/`Lgj`n480`uigS&mjl$j5CDn;nI'rBbamj,Sn?Uu'_,O)pa=%\fs1WG$A1fI>$M\os1,sM;^(:<=iG't:4:[IbR^-;AE3M6I?-\IEbSJ=1BFF'e(4ie8$1VXVkLd;gjOUD%shN0S^?3I%UFKgi:#t8?Z-JM]/q.^f)l*cYWY.BfA,2!d*$P*(^?#LgFE?PhU`.kI=CDF$\7+/NkTDplK`tom^aIe-$hlGq(C4L,C3e@Inkf5-Km1kGP?VO=Qr2Lq>"d'M*rD_DOlX$e'%jB"TR!;'>XG@(jhI$Hh7%WqD08,oo;OC)PSrQk=)l4Mho557F18U(2(0_>Y2_?$JDn+'[T^R)]*aIV#;gB7EK1d%,s`E>Wm^(a5)YIL]jL^)hHijL&*fn.t9gPXaCgPUe6'=S^c'bS\+gfE32PI%A\GaXgaC6kkGrF=0t083D]YJHsHpL-AS4`Lkla#o*%HQL&@fE^p%mPJ#cF3CfR2Cs`r,LYP_?+43=b\^H!H\[DjghmV-+SPLO$WW-O+.?D7_aecXT#1D-_nqdfL:qe>_62NH2`;]Kp<;E8&+l!-_4J7CGmp=Wk8=]`P$!?cdfhIe5sI+h2?WUNRD7o;%,BeDGFI3lL57mqlUod4aj!,dX!8)9U=k+PMVDl41V`Uor`>"!8`05R;rE":)C_:e+rLNklOtT:^'M;]n[?mARMb=*k?JFW"@?u[lg>cQGjS*puW8MSa1o]f.KUAjb36/>`^An?i/d:nD[c"iG>Y)cK0?\H%%`P_s:UIsk47hGV_JR8/77=Hb[hZ@e[hZ@e&PX`m.rHj]RO,JG\?.)l>BNPTP5`G@qHl/Ghib'jJb%6QO(%S#!a$(J=E,N,@P?iZX(j`/X`Zlp@hTR-2o+0O46/60iHRgPX>lCG92?9>:?RI#=E<^*Ua_^FPBTrN/tS!a)V=@ZFLD;f`g)B1q#45Q/3?u75G!*-92?;=i\U%3q8p+MjE.Zc<#$rJ;[Q/m^O^_hDV0*0!g]?+KZ.S]@+!X_pu0^A=Ea6]/3WS?^5je!$\b_Pk#tb%QOi))Z@YUE5F[Xau*B/YHHn,f:+I*a9e8h,u`6_@-5s>]:h'%S*/"^kjH3E9q9@*-p6HLGE%$X0BLNX3STA,C,"WmgUX;@*.XW=Ea6MX?:MBiZoOIq?j;?P"lN.,"e319q6*m'/(b:fRAidj>?h1i6/0%fp&$C2aTKdB6\_m2Y5i.iNpYiKaM2"pT.gn!'$r5]7JEo]+UE&&Ma4S0%_S9Sm1q>us(cA$0PF(&@%4tJd%?o[]kIQ3i"5G#rHmuP/57E>#X]9C5'j09tN-+akK])/-W@+]W_#Nd,LKLJCP@,^'L=E-;6Y30#^Ts#"#h(FIo7pa*m,B$u3nJkYY/.\WUkCeY'Jn'M=nF0WfNW'1^\7[VQ[D944NX*G2R[!JChjot_)`KtbpYM,+Vp`lmI6J!R$Y'X4%En^XM&$:rRl@qZ?KlA0:(p_uR&Gr[L[\qZnmX)&iBC/.7qf(NA6>rPdg^^H/(A)TJEKW^jBoM!4[)*casr!SIm8[AJ!\$(6Ns^`?kt:Spmd.R]_5pSG6_HjP5UfQlbYGkp3/f\^B76gc\Lu`h1kS=b+[>B#IY+0Z,7):r:L3ZI=:&CqOt'm%pmb2@/7W#OB_1)3e&5NFnEJHMn)[4ie4ACc*2TQ6`BJ=K-HAMWiZYX3VjSY*de+e@(p`4#.XRo&0:KH;KAm9lKA7W.kf+=hOAZ8JOt-s?eZf$f/c9do%Q:4c5d\lk?^"_$lVd"UrKSkbE2D!E>QJW(X5MFL#&n_YJ[a7hmPLHZVuci4)c@(`PKP(jFW)VB/.'N4LjTZduZ*H:+_,Aaqh$l`+qi4"qk#[&/YhsGmo$P0rcY@,2_4Rj=6rjW?JV;ouMl&MRg6cY#.'-/Vb@Ic'Yqi7^'IK.2tdbLs+@DQ;2&@F_9(B3t4iNK?/nFskg2nY"D(-EDZ`H-ILF3X[LQ/QZ!JpgF'>LGlXp%f@;/UK/;l043U8?9r'-gigqR12r4`^4rluB,Hs8XJOnMHO`kskMj%(lmbZ9C2*:NLJU9%Y?>LNJ`FM9qSofeBHOo8Y4Im=o_ho@r&[$)g7,<*ZCYT0U\Yduh7WlMm\V3n-Sj?oRA!e?b$aq=X6b2"VWV<#P9h-;,f_65#jjub08JUSTFqG^BIB[8&:l=rpH]R"b%S,l3$'?4Vo1WB>_8,quM:RbTiJoqZQ'Zp(&]:OpBkdIfhnVc[k*4?DnF3iiQ=/+pXF(Hir7HHOGa-(m^[+a54V+UMjSm_^>0SfJ?WUpc7P.U2SSuU8)X7nVJI-Yla]4eReOT8A=%N#qS7=)I@dei54Le\0U]F99/2OU=1EmnE;BiZgJIMMg\upHZae]".1&)G`[_52dj<5/"Mj+8if+WN9ECO_4hT47h)pB\()0V`6HeQnQ4.T37ii`Wo^\K[[Pk[N&1-3HsiHRkF1lFHu:HP.rHkT/"UO^+1ca#l#j-8s&I6Z`GIK=*uJYU\bNs")pU>"&,=p\gf@cu>I@#`;P*MWMYJb@k5LJQiI.L7INA"XSZq6m0$N4%"6TT3)kqer#E_+9_i4UUjLM/U>SD7qRKmBq!@".H*fTP(m$P$ddgjLgaIqQYXlVesAf6rJ1OY6&0j7d9;mqE?<.2c/X4/?@aZD>r:a,&"S*A#uHgfAf5Ro\^@Vut>pEs:q3a)ZO:XgkKbiTHB*kAp9o!6bu0u%9"H\#flRD7[bZJ\XZ%D4lSZS;D:%Qk_mt[A@->X"fRD2On&,C.[Kb[YMpGd[oL4Rl:5,Xkf-"Po%E"K9TB#($r%f[0qd,n;*1grgcSa_n3*XZCrqh*Lh=eXgq$r'p8V>CR)\BF;/qcZ#K8=A'+`)KdKPsJ;W9=UCp\,Uc?&%i#=!;,?@gLh:*MTtf5ie4]nE\bO:tjS-5G!60+jh_M]&=jsUM+31%1%m+$$3Q11&UR_Yl,_u7:1h\>>l[B[n@:dJ'Yq!%j5\()FXLP)a^;!JadMjTQa]&[PS9I@L1_7#=>m`JFG/T0]RWmH*3Q[Xr2`)l$':]#GU,E_:KXS+Cn9>iQln(IO$fZ6=VboI!6?Zm`^EIR+DoGf/oA+-P&Q;]Jf,)BonC')j:dU0s;^9G8>jJIfuIWZ9U'!n5XgBM]DN<\f23l2[_r]1*JJTm!14h`%+2k*e_JG2XG_n@BhKElZG-/I/@3eeiOGKm662PGSpHG+5T@DVSLO+2X.Gf8^cjs@moL:%MkThgfE32Ht8]qkF1oGS1Wp`[c4_&L7^i)CF5Wg`ZK0rSVu6[gPXaCgPY/$eoT+2"4!3REEdEe"iJY0cSZB^2<,3,rQ`B!`GP:e[T/Mj.cj9HV/Jq[=27h14>ab,]204@V7fUWHpYqI4V2T)cR&0@#ETf\i5fZm.rht7&fG!6/E9R'5@K^I'=OI\&`J(CD_kcS/XbUWt`^Xu%tG3"1&,\6XbR'S"R"t!>D/k#'OL2Y\@6MREn#'hmEGei4$.ZB/W3?,-<:XWk>TQEKJl(MTTkD9ZaDC]TT+pq*#o\OsEZ?9P3Fl65)FE%%5h*A$&@qXniR^F.[It;fYDG&_pi[a4Xbqc#2.sk,@BD^"@B30hGlMp'^r9%Udmo/&0G2Q'&cE5OYiZ(AY;8GM7P9nt-R>RK9/6SUed=a$:a0US9D/A99RpD,#`*9c%4*k"?73+uW_WW%BHQbuZ$.o-M`kceWWhYh9R*IEA]>'dC(kL[ZnI+C_ZC0,(n\'$T6Z)O8-]$maA'd2bpa2=I0CfR?&"1!9+Vhd&a"tTrnf[W7BJag=F1JKiB:r+6-ru-hlaQo5>(rWg+OaD3^%SDE*I]+)Iq_r^5?pi^d(/=/7dqkWfr\!(jncfT<=].>[hZ@e[hXB=:"$TI.uEG@dJP'H[c4`a,nGqs=7DaG9-/'GS;Z-ZgFB/1eXY1[E$Mt3r;J;S"Fg'e!(k[d6Y<-MEU@JFb,6o.2W=-r-%5Z]mdFETsJeD1urFL2S,eJWmtc;)b53hWf8?t*A!+CDLoklu=bi0@koB11&,8O\USJDUJ^0k'jIp;G+g\KWH9,"*])&$gIam'$/cpcY7r`f>lf\qoU)U[)gS+Yp'D-K7T`=Q7+MSrX1AY#IjLD+o(BWu0d+-eOJNu0X+kd$QNm:r:"T0rmHdoh?1N&9Qde%bXJDPE3h499q6Y]X.bZT96\?39CLhLD\[c4_>U03*&MVF$CMVF#E-5F!)[hTM"'&6OC<^F-q^0Qp*WL63%h:2sOD*IHrG=(ZQ4n.'p=?(cj)!p+a$iKu6fX^lTd#S>-r^$J]G%_\C[UF:]^ZNF0.qhL:VPY<#ac'NMD6l7M[;TOcc's"RraSKJ:;3Sf+W].[LRps)%TV^rXSG*Ga+EJ'_fm\Us2LK]ee1k8MkOgHZk?#4t-eIcQjYNqt`df)P5R0HT(8GlUe>f]F3mhem$g*qk(bBJ]JFH3\pl^FISB!.A=kCY)>.0<_OXL6U1%cmS2]8T/qT'5,t(-O0EsgOUCni:k%&)$%0';$+R+IXnWIJF7EMapfsRR+L`)peb&_DD5NmTfH*;&Y3C)3;&tbQMVF$CMVDll5/ctr4BF5,CD7$7[c4`aIfH(ce8kfJ!sm41^!8L8"*.Uc>6WE_R^;EE>feAoQeM[-^CM<55CE.s=5`Uo^ub+'VN'oWj)MugP0<6GkF#+Rf?W9iAnqRR[gbH+s)?b2+6ZfgFZL!B*Bj\!&(gli*'q0'IpVX-381s9!3Pjm$J_02lo.AMQHu`ZA+G9^o6ST\]P:phfZfMFTkMj$sY/rblq*F/,8"5&77*rtUo?HcNK\%TqkqsDUJ_`MBI]oFdrq$e,+4Z-kY`qZ:_7l*)JNc0Y3NQJr!q]TEn,!L\5CB*ke>Ku)]31c&k$ANVA>B*jNeINqO`H1QSPBSWs.rMEGg/deM;#^OkRjIK5kn$2WiQOp6@JUekd=oL*_[,/%Ue8\ZNBD\?-TXN%r?)\Dt#<:A8TOGK[rq"^n_uKFM`M2s;>UF&N0CX>\F$ktcn[`$*BfFIlH'qL`sDe)5l/E!T;GqWoU51V8Y<3Op#u!Io<\/sa^MMCrtB?bZE*D0uef'DC]TTDC]TT`Y`3E0fK$@X_,ec3e./M['Wr.WOWlb>:lLt">.kmct]h:IS.B>^kJUq.7C`n[>Z=.))I>TF-8.)^$osg%B3[^Xf&WuY??AQ8u)^?:QkMhlHfBANl)]DN%r?)Vs-!>oD`!fcSM1b.jY)C&kQGKAU\6o(]GL*;L0qZ[VBMjK"BNF8@i.2F4QidDC]TTDC`^D@uN,XCiN[!>B*k]gfB@g`Y`3%b]-i]pMKTjWd%(IT+?p@bu!"g&,"1!d*PSo9o\gBhp;K8N%rQ#IX5I:t*bsHM9>If0Wbk,LeEe(h8N08ZPn?-bskfIVPm$,F_Hmq[D\sd\!Im\pC)5gu"*7Kj!4N]P'k<1W`n9p@gPS^AgfE32N%r><,Gde@-FH;FT99s)cW[6S6&'j=h2_'3&dX^GRr0ub&?PFqY(UX;$gT#+^NVHl72obCU*.@^5m9Z=!t;$@XK(ILc6JYB#5]SE3_6V0iu'G_L9gsUq/U1,N'.=m(pDkWu2cqm[C`C96hs-niH-m$)H8`0!d+mD/Y@Z3%](`Q!AUs&\8G#M.7?f2]g^Zc$5H(N'8tcnCobEb]f;#6q>L$haXC?>6[j#*NX,p,X3^[IFAC<.rHkT/&iE9N!4:X<\A9jWJfMggPXaC0ub&?1F?ui(UqrE`GIL+f3>A7LQm`An9P2pE4Vaj@KVt;"5Yq#[+aMCNjXh^R$77\!?b6N%rc:Q[b9X93,HBI`GNS2`>E*DZ!`UHC?2n,^2Vk.gfE32N%r^eah5(Sh_sdjVWgcQ0o37S@UHTds?.pa@QLt/2&$`+YI%3SrT;tc\D)AO+X3C]?Ft6gDoH(NE\?39C(h8LZ(p8$KqYXZJ6+)CE'2gs/CY3U=KLBG=cl[(6])%p5r/E-j_*OS=G[/hVbM-,lNqVQS[rl*Q#tiIIsfdbn\C!PHS$LZn-[TLI8Uk/0ubOaIH'4NFJk)[bKZeO5G]H9QLp$.D@lc2q3q!"oiq>BAP3V5UU4@UlWGh('lK729)hF,Cpa5)hFh;*)G-Rhl?>HDr?[jB\6%B,eOt3eb9ah4@jV(']eaRtl_MSL6)d]7+mG!D/Esj10BoLe)eP[[H7jVdC]9.H$$mRa9.RBls4(eh^r;'T^hq&-`GNR2@uR[#Nn]HGMVF$CMVF"C`Y`3%r,Gq\>B*llN,<_5E=mHNIW2j2L,M9[l`E3/]:dhdLK8]@p9\%J_"$A`9-8E6AT7B=//7.eLV1i5BIJ9/?:u#X*6mD`fKe%dX478_Aac>bI3Gu,#@LqD3UC._]:cal,/P\XQm6/AW/@`)#O6TS&d8IZae>m6@D&$+#-P@rMI!N,tX`9?]^-jh%tBk\uc`@o-O>N\pt]pY9^fQYGF!'7+09B=OV?U="TO+afU""*@q_s[?=9.4o69L=jlR)K;?!G46`lC]2E:.hW?iH9hFfG'iLp)fCMW27ae3-HC4h+O0"[&s(irPHFG.jHCOS'\Z*:DqL>B8_9rB$*Y\^c't4pe'k<1W`e#RU.rHkT.rHkT.rHlW(h8Ma5Ahuh.rMC*[]MmJ?%dkmDnot+J^;pPA*Fbi6@a8:f^a0qMMNV%0ZX)#b4pS<7E`i@:Ks%r?DO?>e'q4ca*Q%cMGkRrlsB4Xn5Q:N%r?_ba6^qWfo_%UL0jAS_c(!EkV!WP.iR5J94i??(`j3dKMI/8sf0AT\c7S8Va!g\Lo#<*Z\BV-/DUqOtL*IO`ciDX6.B9ro;S?Uj'>OJ90.%8O(YYfP"r4K"@7[8@i.2gfE32gfB@g`Yb39\?39C\?39C\?39C(h8LZ2ZC4g\?39CB'QgnZT8,Mm_8jrY64-7-a\)?K>-3B];Go!S"$+NW>>-(fB$ZH^Uk&Kh#@K1>o2Gs?QlZPQiA/%J,\>[?b_/7WtmtmVKH9j\=ok2'M?Qk^_^Yhh,YT/".WCFPh.h1S,*>FfWY[V',*Y2EGuEF#huA90ub&?m(Y?kBLk@a0=0)>_WLeSRe4er3Ji2QT82`JN[c>\**&0Y<4s@OLjlNRP.h15mYb)n>tIP>GrOu2cu5U"0n4E'(OA7,42LjV\l4ndqAQUW8M?hli6nU'GEdPE=-C9a9j\"qX/*3pYAg)/mi/I>kGb9/;_@6*p"AREknhHh+6q15q%$6hH!O=WUj+?adUd*,DM/pJrdGGu>B*ke>;=,7@r/1)[c4aT[c4aT[c4`)N%r?)puAgB[c4`an_5O(h$)/BA[Arjd*W"KFr0fCp4CQWKY"$]d-l*)r>)m`NSq.XK8f[hiPM9"GlM:Te3=Crg*[L%k4UR_Z76iANd>Zs]hhs3"n0XW_;!?A2Q%#>Fr*-?*[n(+JD@/>#[=VNgFlA3qt8q6-sUqMr*aD6^0J%50Z[F!Q.&%*u`E;j/ebZUJBgfE32gfB@g`YeTiEEf[SM;*pBMVF"C`Y`3l4DlZ-+`U]ioKAG&d:1jm7qKWQUN*?Qh'-[it,2o0h-*V8u#l'rji,mVf@J@S7P4qdRMW+]>7ZEF[1L&g3G^p.#5%(Tmo=f-:Ud.SWh(rb(h;pidWqQ_P4dL^H+?UT9r@RE5Pc:j$;!IV\$4GJ^)T_ReX&DD/Bn#11&[jeiSX5C8`i6]]gDZ59b!*/^TsN0W=]d3('(fY[hZ@e@uN.^VCHI62Bd'EEEdEe0ub&?CmN+Y`?ljJX'jdb@I#R4>hU^4=<,]8fa0RG&)')Hi,H9$VQg;>)scEoqAlfN]O8"T_<2;YX2PBoWuHH[#(rfcXL;_SZ.QnXn:JR:K$ofK-nd0&%Y#FBC^u*R#u6sug\)YlC>Egt_p?*7MUcK-h`oRu9)na+h,`Z.Rl\P+@uR\m:7inU85jObo]`hK;)CL=fB:fKBCG\Zs"42!;Rg7DA8D<'cWgA>dX,:bAUXfK^=0fF7"51@?DZ3%%!?\M:t8YY$$Qc-gPXaCgPR`*(h6JZ[hYBo\?39C\?-TXN%m66j0iD1'":jpD_&M*'(3C5O2he0Ws7:i]#!?G6>'@9<7Wlk6[]WDh+e1m5Rs^8#nDa,jn+)Di<;lT$^rXO\$$H]%\GH+;Z@Is8P'MYQ^0m,HTO4SG0iroF4e;]0AQ-n4Q(s?MZ]3I:b[[oD';'n^@H#oG'Mrni3s0r?F"7=S#2B7edYH5Bl]p6DLK]XbOuQ3_6dP%_/XNXgkJM@uN-#JT4n6>CH=WXgkLCXVbQ,0fJX_[c4alno7k;osS$=&*NEC6Xukpr9XMu[+JgF'j,W,<7NlFb,QRI/Ie3[$eXhui,B$Y"e6('Ye_]&`[:%[ZWY*gMVl1(P0u,T\$puaYL2G7X'jaG,Ulb35'\3oiCq)W'B8'T3fMS@uO.253j#uGqS>#Xm=m6@_T_Dp_6%*G[8aqk^(%D^5ZrfeQ,a=s%bINeC?m5H9TPUP6frEgfE32N%rmbTJ$2O$5E[_?(h7C%<$>81dS6MZd:]@p8Y;''n:X*2kKBK8biq^DpQ'c!X!-N3R_`uJEEdEe0ub&?Cbk"Y)DZ32)'$-9fXKD"6o]<6)g#;0I;R?XC'1*C%3/,%PZ?=m$:CX#?k$%@%Z)?=f4bD%0aGWrF7+UWW-7d)Vd,MGbk+XtWh@6iWL(I%^M'Q%R-gMgbp05aD/];_+3YO/qEN`>E*DZ0C*NgS$ngs"uG*oYCCK6(btg`G$YMo,\l[KX0iBs.:V05P'U'eWg]4p'/%/\?39C(h8LZp:50I%2lY*%$')"gPXaC0ub&?P7b:SOE"LLi4,o/rZ:Fs="5TRIg:sm/YK;VWblL%k2n"hX/e*72FBi)'/VU+6UQL"\_.$Y9eA\IKSJV96W5KlMC'M(]NK/B;fe^I0ZY!/AiW=RA()RFEa/FEaQ25o1t=/A7n.P_N%rE*D0uhis8[jsKq/6ke:Wd(jg@N*s`GNR2@uN.^(`P5J.rHlW(h8LZ`n:(H[Mo%OP.sojdc1D5gKb#]!ubAqi-%2uC2!]dX!+g1,,Zm]op@BgR]i0mlhLUAk-!/TFdJnrE_H6@S"qF^:JLLb).SU[`e(IHf3<[u?W'(l\=G>CH7O9i#&Yr/X3$CVCsM2>B;lF;\o]P=@>>7e;6q[d,[:VK(Ia06s)8gqA"dY@PA=%S=FI<=6/paV\NH0c!^tZ)q8+i3qXRqXT'V0f$[3%bt+?;=,7@uO.2\?.*#>;]Qb@'R((bjJaJ)B's0&C0K1H_k0FEfn;%Y&0bP\p8'HTS58%GJr2C8lnlZbehlo,h#hL%K77lWYV(Is]OE=^/PZCAeXYrdUV!X=j>Q$,oPn$G7Uj,K2\O_sf8Cs\fUta=-l&h2ZAP95&!i];MD,i1<96q!=79038l[&7:[[#>#2V=SYYd]5-D1R8QJAC:N:Kod1gjXn3D/cun:4pIG!P?ei(:sYQ/o5``_r1[/blKGp)]X/cK[&c^QdZ$pRffa8K>ZdT]@-q0_e]hGn>p#;g7YkRp`EY/G*)%U^Ps#5]%t`unU]6Y"@rLZs2a-]i4l&Otjrnqi&%e\?39C\?39C\?39C(h8N0n],LcD8gA2D8gA2D8gA2(h8Ma5AmO$g/e&jWMlb7Y^]-d?]UnY$ej<<6+<,>&Uf5Y#"_>'BZAFfN@a[a14R7?.D;1\HhYke)BZ4lO\:1%\,PO%VIHMK/6)Ci9Z00E&&RGcLubWU\NmTE&?MhS4H7.>VI.S^B"XB+2R3bGMuZ`9fSE&%]@VloUDFE9SYDqL9h]a%.!gs30SFp:*i&VZf`FG\b#RRoXR&&1@[R+YqHjY:*6u/L5VC]iPNRWE&fo^oHWPY'B.C$.hJ=l*qV3Z(G:8f7'B`XV-gAI)1d7I3hLL+oJ27>PD9gDFD2B&&gZ:?(2;^ge-7'Kf*.t;s](ejbE,"+68Zq6Z-H8ZHN18Wi?/A/,etCU)gP_g*!/]a=MCbIcNqO(NO9mTHAGcmXhN\4(MDR5sLN2l24Vn'cqU&h?GtTm05T/WsZUTLM%o^fU)@MXEHPXpu`DP>oq?/0f?FB5[Q4AQSH8IWRYG[o4;*/Xe7c$@^UjaH:FPd_u+g2rMJ]nK'?iMm4PWTIB`b@0kdiF@B+fK1<(/@T+SOI[hZ@e[hZ@e[hZ@e@uN-#rj])?XgkLCXgkLCXgkJM@uR\_a)*\FgF=`g_P.H5mRk!OR1+X1+11e75^.E*o_/&'+sIH>06As&%UDYcP()JJV!CM%KRQ>PaTsQ+dN,6Xd_!eP@=<]iq,==?h$*YlX"HtN9=719q52p3-g;Er?d]&AJC6Z+IIY]@8_9Re%Xl1C0hE1Cc4bWLoGZtg<$CMN\1?eSUqR_Y12GiAm=L-b4H92?V@4;Gq-A$JVOVY5BUBL&)kh4a"[!@k5&ueVWDjbpdrh.V-^hFET[t-Y.bKSk.ZT1-VctqX$"`4FRmp!0Rn:&o6\"i4a$o!p)H8:%*UZer$M"NLDu8D3"8WD(V]*O7)g'RCj^5,EEdEeEEdEeEEdEe0ub&?j,_rPgPXaCgPXaCgPXaC0ub%LJ)"('[B8SEL-W]T#^BSL!Z%tF!)IYW_YVNHiQ(%1+SXtR(ub-g\l6hr7A'2;VfZ/-Ab>(Kq@T8Gk&$s`6`t?)Y+O.oD<^',:T]cm-1e$V([,YZ3[NTVqB"uXP&;du8_;:O^>;K>RU0?LV@uF+Dm`NlQ^F2MQ&^u#8`,/+n)l`'^Uq4YlDAZ!dda7dWC50OPq.j]oiCnp@,=p/4^9rUG,H/%-Da":I/l%GrK(%8"u!!Xn5[D3\=NF*mQ<9fHW()h+r3L2[0(Ro8q=smAIpbD.AYbDL$.nC+MZ&.s7muShGu\rk*(".p&8`/\,?TFXn9KL>;'FNhKX;qE$*efq,G1a)J*o9jUi9HL-G[BeBI777]V&*H=Zp@_](]9Qn(i0[@N:9?109l?;dN8eoI^tcmpL(JPOrs'E1WC8A/-t7DijRjTijRjTijRjT@Z3%]`ZMZ)[hZ@e[hZ@e[hZ@e@uN-#rj])-r&r]-k!q\-XTVBEmt]1P06D;[5u4DP\'GQs&YWSR;!%qWT@.B7q@O_mqPkWc)3Kq:>n_N3kV_6RV:VdbefU&o8O$d8iRP,pXqKPk*Kn,A]=oaE9esK?9"1)"$bC5VBM!Es(.k,clH>X!9):ZVeDln4d"E/7#dnY2+L3F!;geA`8"2-8Z-oD`r]EULW4n[9^9NQ$16NE'ne;!;7d(!dt[0#_*!R+unC6qI$0"&n@]45,7eo^6BQg7BEqWk?#l*,a7#Dq2m0uhiSMqa-DMVF$CMVF$CMVF"C`Y]YEgfE32gfE32gfE32gfB@g`n:(H[[Qc(2)d!)b,TJjl)OQ@oBILcq(idEDd3fA"^)BX*WdR&/);s(VTepQK_2>;$I,1u^Y2>QL7(7`_FqcjL2WZZ"7!"aDd%&8V&cH*h;.`5g\$>/LS;GTm$s:_?'8*]In]*fQL7\";+u_?U\L*2[BI'fD3a#2%[g<\6\Ptib,nK:m=C5/Eql8F_]Z.q&WS,AJORa`_3)YMaK'!-Y$g_0(4@>#uAD*E5RK]"@iD9%1HQ7ImeEWkmOBF8Y[.nqG3r*X8,Z)Ut>OdQeUKbYJ((oI4IRQRRaj=5AOcH$,CBm4k"'3hUbBC/=+BEA6^C7f]Ec'_]=Vr2I=7!eb\F2SDoSs78q5t69)APY\m4m(=@pq08RLk-?..>\kptT6P:AB[)iG$D2/(<*=Au#XK_;8!e`0#!E(#PKKE>Un=OX9iC._gKLC7o2kRd9(DV+WgVk1f5qj`80*gUG%iDnh"13HGTP+eXP2!;gkuLcL4h@:BM3!Q%1@+X0#M+sWgiDU_on\6pI2>.=hRJ+l)Wq0jco=M=i;Y#l"Frk&S=Y?D#IfDc'&^I?&kc.bM_P^\\H'ao@us+J/eg]n)Y++dumNl.h0Vr@",3&mOl"ICbg6gBr;E;f&2\:#kJmbGMa&+2T6-]aiaer'sXaa"B"?b_9'DtBX#U^/G"b+Po?"rccB@@Z)pmrX32@5rVm&JS2++KO4-OI$mIQ$,DnPs`&(]@&JK<3ut(U!bN7;AgR%;ZheC55iZEtF8[%f-MPH*u7#jagL0*Up_q!BRiu.Xa*>S'[5;!G+^b7pacR6[!#W*(YG[<`^6m>i+GHF``2biJ,?Q)gM9$0Q;=#BCUtu\?ZR3K`4-]IS*Fs=#I-@=K+)`hdnM],cNo$1;tT6!7^uk?AQGF=1^E*PVUr@BkC>\HoJfnk1cmaldFA=.XtFC1[XgUu168MfVc__TgfE32gfE32gfE32gf@AL*,2:ACGZ:W\YduhB(H4pWTW9LijRjTijRjT$3o9dUUhLa.rMCjI'1j:OQW'=kF0X7A>YrVgM.XCX(JCAoKW/4ftA'#FpBi\21a$6JQ@QBjp?RgA[&`"_6SAT'K48tLOcbL:,#&A3\2XgkLCXgkLCXiC1;Fu3ROD8g?L+m0d,!I6;hCR1K+S-PQIk;$D!gPXaCgPXaCgPXa#C4Fcok0(<;\?.+=>iRphcc'tMP&lWSJ@"EDk0%^J"nT1nG[(e1DsH_3H(_Fm!k\He#Q'OQJ\?h6_-]^lL3IBE3dbtr:&,Ykj5)coY7;O4"$&$lJA,Tna5r%qDC`?B%1-+._<^@d]W8;)I]Yuii-hF(nnVI&TZ.%e2:g/*(kQ>k53mP)`Fc%a2'rEtZ4*Y(g'0u'%R[?+5.U!6osWQaY:<^!YL3a]FY4Nj$YrF*\BJX#C(qJ5VeQIcY:=G\6@Q$W$6!1=Y0I%mIFAdGl4CGO26>d*E4sMM21rR]hHM__D4Y]Rnp:r\brGQMYCEZJ@=o(s=$#_bqU#6S5X*&%`GH>p\?5brhVbj%[ebO/MVDlJgf?g2j1oNND8gA2D8gA2D8g?LoM+GU+sNc-_/2%][["R57doMG49#Yd,O;Bp9#I8ZZr.VX4uS#!*=Lp"M4K'Zb$J%i\/*DjK"A_m3X*VhLOoNdiga53aB@I$a/;VK8Z'piTcCZ8@a%Fqu[`fV*](V4"t$JIWor-H5^&g-QT@ch>mMSe8%!/069/83i$)o"]$nZ+Yi3gkbkRi9f8`D%-PWil_#?1Fu:"4Y$?Nn=0Fq_aq[I/d\Z8-C.]s\POqfEX`"%]V+>pk.p%nmg9mscqe:Kt;Qmt!bK8,]f`;2!Ms11N&L2_9iL'WN/kIFeSrr:ZPHIb"gGMcO'7N3LZ#W#[\BG6D8gA2D8gA2D=op8OnbH4kMj%(s'.j1^qj*nD8g?\1EO"?[hZ@e[hZC&k<)8oF'>/nk6h30"j$cM?Qlo/o\W]hT2*8B.q!M/K>l:_3l1+G&FDeJipQX_SY*`n3lXS%r3O-%k8e2/k8H4c!Z+b+6^+8MoT:EGfaS^r]=e:d*\VV,h49;m[+irWK>8qk:++\rej8rF/uKBTX6__`\6U_+fPFA`:]SI'7F9oR#Ii.c0"K0t>NjK(^P.-IdVF<"SIP&E^'22:q^<@lnCh^`\ZP^6D%8WiGk_7[5'dKPNuR`.k2-YD\Qd=NZJ'/'Z!"mhGI638QcB9;Fg]TEdL>uY@?iCgc(KQrq?Np2n%\2)r"4":040>+pc.L&kluXQ%m@V>d+R4YJaT,gZum;Z=0;K!KKs/tFEMe[:X\,Unjd-;5ErG#HX>qYb2K*cTX1\_Lks'PV_\;nS_[,q@"EqXc@J0+s5`'%4$eAlF'EWgEE`V6\[\cOXgkLCXgkKhLqWk,.rHkT.rHkT.rHkT.rHkT.jC_Xj0kEEgIe(<-iH:'hWr4Aqqf5>s+,6\X'Fc'(V]Bm!!*-0!JZ0@0T7,60H:p\K*955!lmh5T*.o7iOC/YELc/(G?M@cX"3UDP1?Co[eHZdKj;'S@ILhs8tYp.8agSa-Ce@?X&Rj_u8-^Y-Nn_Jg^27Rmk71,+k^M.n\3>Lch<[DllB"!d?;CGH.&Xb(^!>':``fiJ+!,!>X<47q7M0U[s;78En1&oe`t"CW\sKBZ&6-5&%XlDp+&[!M7e?+la:4#SYFe5W;JI15t"9/%9D5^b-?pHa5'YHJ`P%h1j2N7Bh=HKf0D76t4re[`Lef[X5O8J$CKQ-4,STFX(Y&;KNO$uW-[[:*`kqWe>:5IA;V&K>K'qLUn5aBC<3#@YCTXARlq+7d=rlIoUsB*I5Slnhu)5>3(!L^$<+6p%`u`o*UdC7r?-NVU?n1:$:KfJfd1kk8bDDUJS\+/>nR1Y&#Vs'l@(+L>LT[UNIGXk6ZjX-U>oD:NEEY#f\H=+*8>Cb)sE2RV(tU[Q)oDAf;Zk/Eja4I*%oFl%DGHH5AGIUcq->qg\!8)i_WlR]]ZVXd\KQ%h>XA0q\B?FA?`2@%EN7+GH$`5HBr>ds3CA!o-,nO$G]m7n8""`iTX9T(@)UT518m4d%BXie)Xm3(3YmNjh/b/)H4Iqa;TGWZ-m90S`%-",)[_K[j()NV]f^A&=%Fp&!O!Vktf56QK1qqo6)54r"PkjSKNT6]k^n/p!T$i]D48"oqZB7I^J,6NR;BWr#EdV0Q(_GCoGU[96fJ*&$Ck\,aH'3!7"=Fro8KCIT3n"Jc,?*B:3*H7[T%m$cS#oI[l"oL%mM84]A6$V/PgL8j5G,PL]FPN.AmF$Pnk>%Y#?_'._A]R_8:IA/*#`kT@"j``'$bO`m_l9VOX\_0",p\CKm+4>lCgJ^nc^\m=ff\=pYNugIds8MZJT\f;/=!JgPfK^J"2`EN#:ED_,FZ59g%7.+sYl%=lhr_MmYIsWCeFA/kRb3k4RX<2]^?\e"'l;Fn10:\[f;hq&fW+7;jU*oeHGu%=W'>9_/D0H[4U7Ze0^(0PqE5Z%"sM`YD8iqm>Ht<_IoCqZF4F>,'usM,X',(;$\'+"DiZH?U,1&)o2'(.5,F07pq,IpA[pUSp3-H9\'@r#:()A`cGJ.oUrofW^$@9YKq3;P_/!)^GP&ZB%98sG.^ogJ3d[M@A$rlQ]AA>@bn&+;Bn%&@@k"oA56k\t'\#oE,TMHaQigj'#X&+J=4"4h:kpV#hc##Z!@oEbi50jI^@Lt0\7f%7ahKqJSY--RTd]9rl\C*[]eH%66d(>%m]Km+3'.@&=;GJtfr&Jd_"i7/I.mC!iEHNt^qa]j>ZV,Mfc=-T@,JaB$of#e%U7JHaNO<^b::dO/9T\1@c:'8!sW]>DAdqdD=IJGMbg:7c6RH=dNgJl$s6csJT+VP[cOR=Q/-?&!DA+1.dLW'C1C3C1C]MM;SO[^BCq1Gc@Vs8E,iO[oC83'KM5orduM8,*N:8dHSN'?%h6%)udK34]ZPs4hYuatLm\4fdmSg"BDB/%-2IMJ^>@@U$+>#U/8`L2Fo<@U$+>fN)f=[M@PSD++^Re\eh1\[FPDjB\-Dk6s.U<_SGB81Iu$\W)QGZQ#mM87llrQHVTG]i7$#PGubE[@?fN=?Ho_,qDcu]MdEf7VHQmoL0B'FO8?>rFf3.ck$_0U]UY/>GNpF=D=_fAQYS(9J`[p:guBj8Np])5(t0jV\?8h9m="FSS6/D":bWeBD_MC9Ao)^@-icIo2[$fp$9n@=Vd[FYJTB*YT#)2upik*;XO(;eIc"$Q%RUg!aHt<_@@U$+>#U-!ifN,-'<_a(;IIJYlU.Ns=C5mBce(&,gTic&h3f@Z,$iO*CG4l?]?U"*9r;@]YJPJ07?eb/Vr:tu[KV*[A*5;:'??l2!7JOY#&&L^i"X!O8KCDqQr>JF+c,0LkrrIB!mW/YIsrYrp:e81m*>i1^-7u[aj!ZNTii0CTMRFkUt4@/D=GlGB]K+?%&qj]Tns;V7q44eYb@*WdcgT!bMuF=-O&SnVP/LSZ3QE9K]0Ib&)@3,0RViUK.n@Pi8:,R!p\%26ZUN=Sq-pp5i0ke>TURTL!89*7)"pPZ*A4#cV]#7hi,,D0Lq>;??)$MdrMBWHYLYFtQtc=&-b$L2jdIH63)i#n9=i^\C4.+G]:FK#^5oSWt4T:U91SiLj)55=`A_,I7,_@)\__O9)&W1Q$iT"1B;6cZL+cf^"!JsMZ!fn!O,:ES*?HK_&0_Ci[[)EQ`TXNrXFKTJ(4cb"K@Dd-X01h4FQmPtX-@@U$+>fN)f=[M@PS&43CPD:L+QV4I2.JYUS-`M(=IXAPTncX\nZm.`M#muP7l1]tL:pO2PY5Q)>nm3q<=(kFpJa\SVfMS^0:h$a8^YCApQX7e,,G!^*i"F'4f"Xg21iHOb#$XTBmLNidV8'i?86@GJV*JO>REumR$[JMj!$HM,N?+](.-NFOt'9'^Q3sc]j$0\XX@Yro?e_]h"Yr*:;'f,M[*+%mrL\aNYos@S->Nth>)t0DS=$9+l$oh)(0$S])d#(5b?JGa;ef%>S3"C(uQ+#5HJ,^qpnFJ1"^jA66YQ+S155a;^_S_Eu!<;T=T:jeZ@+=b_iSI>^2`qR[M'S#_4`GRf*$4nE"Pj#[-[b%K:Z9!2h?RD7r&6M>jd3]4af!rn3Kdoa.N,7r6BM(LAThQ+7@eW?+=P9]C;-tr<_>.b:Yaskg%_*Y\Rd;pH7'$4o[Nk$L[k+%0#S3Zgc#m]+aW0qeold$H%sjKji.,b@rIijm"'4$G'V+NRjCZV-0LeX)sg1#Y,CGL-`Q`4['+B3I_o]>:o$eE+L='VkthL/shYYJ7df4siB7kaH7PmM1>,&4/9@a>G*_?\>V@@U$+>#U-!ifN'TUB8fM-q$(kq+bk'U$N\Z6fe>HM4b_HO@tgE0dS6aIA<245%##pF[2u!u+,#21#bF"q'&%L7#%aIWd.emQ*Ee&&S/Hq7KCeThSN"B?GC:DoFoOTYYipX2Q44''HK!f'0FZ"]Y''g!+Wp=Z*-e`0'TVl]_Vb:T-h.*UhhHXZnJs=NRt(OoL7W>s?L$a*\el%&"./pLkRZ>8q<)+;-Vdou[t"/LnF4iOi.47f_"kqle:c6Hb%b/FGUkr/klIFj06qDZ[VZWe%F;rl^&'__i6H8Wk9'U69Er2WZ9>@%[$?*6l13U^kfqb&BUCfb(?/mkht`A,j/iB3)_Q@eGiiHse3D!8b@TV;6rD#3_Zd4[7MA@dnCZ(#+U_`O95[Z)uYZCb)q/+bYr?YcZPYCb)q/gPTje[UNIGXU$)GHIu9#doI'jkNsM`WlK[#hO#.8=$9D?\JTl2*nPC-X:h:Dog[l,3:9r8@Q4T_Ajc(b5PuDSH/"nZjJn"W5Gurf`]"^jTn;;CQkdBB:2_7GWBcSIZT9_W"HLB<0e=GS4FI@81>nQ]@rCT+kn,Q]so#!nG(nNj>"f?>kE-]D[Rs3,Y\>F;i0IpY.#@@U$+>fN)f=[M@PS&43CPD:L+QV)J^1Fl*cj3#ch-F5XiM(_4eOE-TrcH<\H?*M!"=q^)Dag_5JA;aECO(krrN\6"Dh*:]=gi`Mgi41??Y]k11Nj#VGF[nSLW-`/bc?4*Wb:>g]hh>5E&].3&E;n7u)k-11ihqM23nM=:U:F/JngI6-j9O>W6M(nF>Bu"Cn,o(jA*F6.bPJQf(]t+:MBb(l?m!'_FcaqY:AJr#>-UDAF,%(=4PYQI0,AVhM?@@4s]kR#%T4'hgpNlL)0"b4`Y9s6:CS[^6/>YokT1]N%r+Y&K;<<-VNt/c8r%0-Hff=6H7GcJ*8'T0EUZ4g$HQFU0$QI1^pN7_Rl/Z.&Atlfj>`nqI#\O^KO!)o$Qc5_^hbO0(#+U_`O95[Z)uYZKFgJmKPe]:@U$+>fN)f=[M@PSD++^Re\eh1d^CX:@WhFjX8iD#M2"J_d9UoYdY$fVROllQH+)gla;c%XsKC\SKKH#`%SQ0OhSIA?K7r'%B]C6sL;q4Jq.hoZs8$+-?/!Dll&uWUO@gTnj-OlL!hg,Jul&(5kF`7K)JGB\hL*FjXY9e*)rs5qrAW?CVX@@e#s8EJ'Pg/dfdY5OPMplF#:6ad`aMJ^>@@U$+>fN)f=63nb#_RS70k'4;V5$phH"r2VDlYHl0Y7MI3Js#9SB'&dP2>aqFLLks1[osY7d1:j-3uShRR$(XB4djYbLdt\B9984DDV^@`QD"][T(Q6WP%=(KB3k2LOi($ZKK#!\L#HB4kjb,SkrSfRY3<+&6(S$MCE'5?:_"A<")KbQo#=&OE$-(T%V@>RZ%Q:>pet1Tedq:9M(KT*]-6I;2`[q3IWaoP7)Y\=Qc;2(r7s=lGH]6l6R5Kg)3>$jMA;6/Uie#23+(B4'K?[9@.t]K2R"Y:rTT+_281\P>mq_Ye*Q(CP?IrlS%9f^QV]*,f?*]Q5G#A<12Tb@jNg$'BQf8$pSHN3JZXjN3?5,&-Z,!sMHk)5r%lkn6"(A^Qgcr8_CY-OcXeH;gPn#Z8(f$3J+ZS3+kqlk`O95[Z)n#\MJ^>@,(pN5+`&[;(#+U_`O768[M@PSD++^RA4,!MXj^O@aHg5AblkFDI2IOD;>Pfla:jcps&,IB#k?U)kIpNKGOi)iPk4n(pLkRa%9:aHE-NN1(MCC"H=dLZM=O`m(M>'AiS;X.<:gj%K1B\LYG_'A>"9DEraBpq<4Ni%#'qM?*U$Ja/9Fa3Q-Hk/YL:6`[M@PSD,gdVX')m]#-VK?&OHb#fN'TQJ#XI-bXnj+*Y5@(j#edK*>fj.ajd!KgZGsY2!#U-!8@9^"=fN+!_+K`4]Co]=">7j1-+\`KJ^q:_58U/a/+)iDMW=I83+&6*HK'9AtO@YKg6[=QN_nk'DEoNLM@`)[BiM5a_DiVL1#s@jrkH=9'#*6Lu.6RP-kO?j+nMTf7GkcoPBZk^=f<;A!)t/4Q3?/kWK=2GINY?uGg/`OB4Y,TI'!LR38t6l9[YTSJ63p^)r=V=;N!e](gT`kWX3JMiU.lleW[)C263na18RYi.Xk6Zr]4G33KPa-`+bV[$Cb)qoD=>:^Zm5(B6gqjF:]eoI@]o]d(k]/G"J#)(>LN?4XS_S?H>A1&7uXNh+V9B0\d..k^k"d!$Fck6Eag'/>A7<,1U4BRT!?Na1[k<8#U+k_X[$Z281oo5c@:XfIhi$@6GY!-N%%U:S5=L5I4i&n)Z>NmS<:WjL/KAC>oIEHqjODeZND8*Q+e`u6BQD[cAg-h=+W%IleBKKme[3.CB3o4U>W68YSXYpXCWW?[8Z)u0(D+,?M[T0ZO[N_N]YcZPYCb)q/gPTi:#[gjo4)?E6l3l@(D,j;7"YBuUm3mAZcnQA4A=sSha)ls%Xia`aL9%XoH(&^lDJUj+m7m;EJ[bbiKG$8\'4\3=CO!?JkjN##U*_/?sBnHJ:fMDQ#`.maN@#.>9$W]"^*8)`G,]FS)Q65eooIe='>]&n,cD&J92C[D@6%uF!:eSM9oaG+N3@^`GAbR7fae=;(b;rWqa/I'lL1'S'DZuAc"0;K#`P0?GgS^Rf>e5q6&RndH7IQ`:s4DCI\-M'3uEjSp.;X,gg4LE+3e/Iqk=qUTp4=tJ#Cb)q/gPTm07K9dhK?pu8>ESd![V?gTSVMuIMZ#G5kP[NbBuD:L\33X[kWXg&YLL2GHTYcZPY2/0+a*J4TX^'fi'g>i[K@Kr\b=`Lt\o:%L:^<'=YB!Ss)-B`)AUPE=K,YY$j0UH.$iFj4nnge\P!ZL4>GTm;-4sXnChbWqt!;CNXDZh/k];*\E5-l]nVZW,6*K%V/cY;ld>^:LCee?;^`'3%Y!2n;qUETI8BA$'fBG;KK32b]&#!\6%&Gaub;_JmZ#VpkA3#iCRHTkS/Inr(M?3n-M#[3`A2kG7#u2#DN&.T*YH.@RoCohh-4fIT1Pa\4b1Ej__m+K)USB?c-UagPTje[UNIGXk6ZjWuD)J(#+U_e^X!%[V?0%(^e=Ajj"p78E\pV?+3.k`Qk$d?oSdSh7Wo0?t]].;t4r>Y.'F\gL?Z,4(:;U,;E7_8F3je,8Q9J$:D8P\np2IX)[+E_R%)m_OlJh_Z'o=KGT?e/I&0tq2I,4XN]WoAt#,tTZfpMbN9ERg\O?>@UaBoH3%MNXJ-+BD"qU8pQg4*I.L["%:Rp5#E@m]sUn2KfN)f='=Lp,_7$B&#GgHt<_@@U$+>fN'>8X4Do?<_nicj>Ht:K"1As!Wg^@'fT*!GLMn1m$MBOSPCrte:5S5T;O2:Bc<]ptP@pOPEpE![\81hU:]p!cn)"Sh4F%_!s1g9r^ktE.P(Yo?m=lc3!Hf17J-1#^fEHCW>L=[8kRU,@^%_I.%Lc,uIjbNe^L=mkH2XJ`:_0&hY!/f_XoZMM.]2@gXj$)QoeRn`\[seEOQZk>3O(T()2@9WPW7;f/7EUp0d:+4(T(eP@@3<.#u\-sFY'a*e1GYi.(m^3J:"s.d(lh[]1CW(#+U_`O95[Z)uYZ2ZdfrFl.I#S$E''>HtfN)f=[M@Q^7Y#?`mQ5?!;`5b7/%4![T/'KYSBhAnWd<;uCoa"`[gG)L\9Is-39Q@=q*5oPpg*QTq*34EG9S\&cp9;)K9ki#$?BAY]@"Cgkd*Oio)5SOtTnVk!GQf3--d\(,UoD1$DSXke!g_)Rqm`o(Ye!U%CT5SRPmm"ILE8t1WRFCgIk#ZC[!G-_p=*,a)^>\5*U;V1[M1r-H?;3hEFYDq>,pq4!D,.aS!\,pa^>\7lP&O">F$b_o=-NgLnsImjo15-k2^T/t5Rj[c1[!]T!sda'YJ1PXm!B\cqT:=-n(u[To?TQ)p!3:"#^Z^q:&.RNpOtg(p:e#pSl]9O0>6j!4FH?(h#I(0nA,&%n?"Y,K_o*5$e)@?eFh6UHt<_Ht:K'D&/4>;\0P/%-2IMJ^>@@U#8(@U$5]CobugK5JT9C.ujHNc!=fYcZPY[:q-Q$=?$e5+G`4\U%PZ]Fd+HN\/4Yd597^)MY`fg^U/E2Uk5D(G0mTcJ.9af7=Gsng+.`_iMVMp)J`A9+cF'*WHS@H$LL%nODH]4*JMUNrocJiO.Xh4*SRkNs0I:lY^snI6WFH4S]LIj,:^!DcPDi949OVa-Ye$e:XR!WuhQ-Yd6ZFaL3Rq;lo(!T(m=dZZ:2TZi(:Mk!7a]>(DpHKtfKmccGkC)uQ1_98"C:(pa;:0$\*;i-[`E:6nT)&.;\8U8onF7kIK5\En)Z926SqO<7f`V9Hf]2H9iN^EFK5XBXr9jC^T<+:BoEV4bH"rYGW1c-2d#R:VbFG6tk56E/F1I;I[;(3O(cU\WN&N;V5#d/%-2IMJ^>@@U#s]!Fn=4[V?f7@@U$+>f"HSgT42"^%W&1g(P?SD[UNIk(Ub(5WjZd;g,nc?OnnJb8*B7s%P:*,n3RtPc9(,L;Bprc?*LR;$]`L;Tft4i++b_Y5rcSdX``KT':plt?a/MIU^p4H,&h!G/37`dhL_MDTf)+6Km>9(:`"8!2?:c5CoAjdX"@B"DGl6kQc.F*joM-ugt"=_[B3Jj7*)edVH.Q1hmkdiAPu&,\u6phc-)MVM7PFFFuHg9k2ia0u"S;j"nC6,I:`l*qR>0+6*"EAf6%:QoHi!SH,T;ADSN6q&JH431#=B[0e]AIYRnUV_jXencaes2?=L_qSgk8rlbLH/0/8)`LI",uCF6?:+o7@b;#,fnQ;9m4U`9Egl$JUGT`O95[Z)uYZCo_-UJo/K8@U#8)XgT+U(#+U_`O95[Z)uYZbA=5V7J?u?MJ^>@11=C(1MeSM7PrrlQc8r/3N$S7`o**mY0I[?*L*1*IdkaLTnIm'7Tl$a0<1^$\%gFB<\;C(Okr>Vm*A>+-)A@_7BAeW+V:@OV)j&i[$QA0`bid+89r&_bWMr"Eo!3_9Y=D"D/9d\<9M&h!12K?&"'/>2:d^rN7h;1C_U"CRugj"?h(+JtD/uA>R%hl)XIGdt)O`$[R99:"V$[/?l6k#ht5R`O95[Z)uYZCb)qoe%rIr@9^"="L_=j^p[]VZ)uYZCb)q/gPTjuFKhlJfN)f=JSipsYcZPY[:u\'lRQoR#PLjGY[\j[]-`-6F!:TG-A/H7Y+6$]Uq#q>?'?GAhS^SiEA\"`-SVG#[V>dXpA:WhFdha!9CQER!"=NId'6m07FcJ&TJ.aX1TrDs0>i)=4\(nV67+!j@:!I0BGA-?ZX/l&&P?:mIjnV8F@2>"b%*$$Z9s*?B*HC_U3cE"4MEcbUi]&&J7Z??kPP+ZMS@#`g#j#d]@IeF?Rc&,+P3/XT:GTgmV]Or$ke:;G,F8a:oq>Wllea_FFM&BmJjZZ3H.+R$AF?gnC;r>\*q_mX#YZ)uYZCb)q/gPTjuFKhn"fN)f=[M@PSD:Na4Xk6Zj/%/F[_RXp3q8OK9+t]#7eX7s*PT2p&7I#s%BQ4Im*cYf[k9Q?Fb:jG5$/G^#+1qD!^#L]s,78qY2:KDS!jf#j\5MY>>"YQhJ&%?KTGU':O3heQ4X-AncYF$&/_3j>a=9M[8?.i9E^p[]VOnur'@Tt]:\u9GGk(7Hh[]6L4CoA/ccbFo7T'VktB86?RglPV0^pE%2TdA=,`__t?Zc\`fGqm5uDbO6gh.MJ.ep)Yj$d\NA_7#q4(j$t)5sJma'iV0Al4q;B*D<7/e6h,&#K!%Ko0PJ/qN[`J!WJ)JOC2ClQBP;1]'IQ4I&OBu43?gee]jF2qL,%^EQjp&PNG2m-p8jJe+AmoR;bPJ]1M6#FAQ;5E2cb1>+:ON-Z9LL+%T1XrsBGBTl$+QL"5ojmof%pmXffY3^U+dDm^sBdj*9pTjM-j=&"?jcA_Fqa#61;XmCN5\[Mnpcm54XH$#QHu]@5ggm_7!fWZ)uYZCb)q/gPTijUVXBJ>;^"\YcX?7[M@PSD8iqm>Ht<_bXL`4@Qj@PTfhl?=Q/WgHttPn'gO$+e(_"$-R57'GqKjlO]Zmi!3)d!+'cU>l=!g+"fb>uY)`I35#HY,NY5Qd%QdiN/]A78LJUX>4KTF>*Yo\1#!?]IrDBprsC$joLl+0LKYtk_Lp@A=_TtdV64]cGJ+m&^2iii6(?Gf?Gr2iE)pP_3O+Eb[salATdk8b-]i,2@Wa[NPsr/aYrY,nLpQLO$9C5R*T@%r6."AV34[D_4JcFiMA&kTe,b,-C'RHIS`)V!6/5,DVTqAYR2F2Mmf-A$*R[UNIGXk6Zj/%-2Il:+/81>@\'eHhNM`jTV[fN)f=[M@PSD8iqm>Ht;J1itCWXk6[6J@T'(X!WO;`O;eDXn4BdZ!B_?)#BdO>dEC!')F.\^M:fidC1Qkb&DFj>ik6e_g9jE"d`7#L9Koci_Yu^)fVJ;6sqDSKQb-AfiH)AWi^C&/j[7sc-*Y@5u5ZMrZXg#^IO^4ZbDLro#BRAon@8%[UNGu8:%MBfN*N>K=Gk<.`:S=2>.I%um*3`hlARVAh*=#he@h@_HXM)c*rV^?!lTJ'\=`sKYfmE2jeVH.Qa,KpES#Xr[OXqT],E)8MFkeuUpR,7H46/fFBc+gRW%&nlZmMGLjo!]"hX)rXZjJhl=r^bE5)sb[-'WW\0,?#+q]o2PZK\m163RqnKo6p7pE_a+g[+0uUJdr5O/ne:eUpG#K@M1jq[lcTGo[rTYnM7YrH"1Ug0`-0=G/@@U$+>fN'pLCb)q/gPTjU'sOgm&1;^P2\6]HQ&^<4_bF8+5mF45ge1@6k]Pfg%4*[E(2(o_M)@Dfu'btho-"u5"*5:Pal(<0S#S_H6;3oT?.LAef6nG&>W_Oj!\;lH7fVZLpLDTC.*$$ofuo<^V5kZR6OKVsMg#_*Kd0)W2O'Ak$J;XG2U]C[J\L>?;J!o&TL`O;Mq,MQs=fN)f=;I@Z(c*h(c2$.Tp-A?/n'V&eLE"fEEg^DS!XlT%?o'(_^ghGTU^!\H3!/;A,^."IT%P![0p9joTiljk4t5X,bSAWAbTA7W=m1o&)2#dfb8@L3.L!5^FM(W.Q-1kRc,#8,X73#Oq^IKDUHt;F8;Si%[M8gZX*'JB`LN:*JiX@qWd;l@`jTV7fN)f=[M@U>fiIEJITs(ZC.O13#IY?JCo_]>E5e?6\UljOgT#SD/]P560%a3@X6R]/3A>,:i&_1)5Wb9RNJm@`'2?;6,RqXg=/S+H=?UfVW`S7N>;%LmJpNNcGBZD7`'UmQKP[\uC-LLs0*Hu;5o3Pi#lR7ZmgNIHf9DG)4.HhZH6fF-"YL4UNLX,-+Q-d/>lfh^$]q5XXlINTL;MA+B3V<1!*=E'Z0RbOs^h)oB$m>HtHt:K"1As!MJ^m3%FV9B`O95[Z)n;2$FU](MJ^l\YcZPY2/+SS@Qei.0MJ?A0Tf,JPc4VI8S2?kQ%c2S2,f7a]L^ecJot0:h=%=pmd_W%=dVgnG'8&FeH6@D[d+ucD7*9R[aGa!H@oZiVgK-j@f24YBA+S^rn35("`6*pRI6]aT*>1A9NSbW=5DuR[UNIGXW"<-[UfX.YWQa&F^\LZXU(m,Cb)q/gSuu9>Ht<_VZE9"`nao.OK8PB1%.ls;WAbJ7_+X1X"DY0u1S1Kuje@Io_!T#]'QFF!N?H58AFShn`-beN.7c=30.J+^T^e-:J@`O95[dHsg2PAO;.gM3-n77[kr>Ht4sr\OOk6#XPSc`jX^ocgP6^]7%CpgkmMpi72Y_[N=6-H8[\%>A7s=7A(-adSnrm_Dq^h7W5us.qleeM5O![#*asi'%U-P4_XicAmS?(k@_-0)?dJ`gPTiJ@Ag?32C[Bq?.`1o.mdtWgPTje[]1io/%-2IWkqM>>A[9He[huefN*[T'"/P0MJZ?pfN)ghR^?'kI-8S_cqZ.0E$>g&M2[gUiG6bgbt'Tk:D6kJ9r,aeCXP)+b!J1YJ=diH"iH0RN*^jdCPJ>rZm/-ZM.^3IR=jI#HB#2*CF%l=Et?=?Y-A\",Vs41V:Ji-XX`VUN/6GgX-:ao4->(q\pC&eLKuK5[T,&iC+HK\s#+2uCA$`P\u;M1]uR<_2BiuCBUMM$?4?%,HmJVod/1NB`-Pb?jnY[E8Yrm.Y&[AGBh@q1QOre-2sC4X`s)&k=EG_Rp6*iQkau\$.d5[RE]mGRFDL)_?,*&u^*)X.SeCZ"l$A&e^Q7Vt?b5Lo4?jrfoIC\[(Ub(5MJ^>@@U$+>fN)f=6>?e\C=BDhRN8gOgPTje[UNIGXk6Zj.mdtVgM53AXdU9=(#,`8D5HY^oIfc)dP)M][@AKNKjFY>XI+!5IB\/)%"mMl(gj$Q8\c?.Ga)9la0[5JS_ArC46]e/d%ZA`!si5(brduodR5UCAr(Qo?mfk>8E\a2((;SdRVNt#dmiJ6:$?ek%Zf'28fR!kX;@mPcYVaV)KlZj'>_+d>Ht<_VHZN6ODrc`h5h,#URHC(os]oNEcn3TI1S-$U,NtfQf">pair@f%ZkLDo8-XG!ga-!k$,AW%U*)$1lVFi\J6dl-&DpN@,,BstXf@.neYKFOfN,CsX4R(fKp05!SFXYWoMTpn;bKtBZ=Sd6GJY/9?&Ga]hbY,<`bRp^?)=s*NuU.U&U`e$O2-IG0\ipS2k45qi9[0An,;e&i*/^36#EY??PlOa*E]\G,rT?=)dti&`M>-g-[\cNm0ghT?2`-U,EQcM0"#FE1NR#Wc9`n-6+C9H8'mGnM,)H^YhfOHDc$0$>9@qSg/^-?H5#suKG&@@>PO&J?!69`'%5Ku;a;YU=-_6Ajt*rR*G^RN0g0;@$t]ZKdmo(X"[03VDdWMj4=<6;ga)+,lb+1)(q(16MJ^>@@U$+>fN)f=6FHs()&O43(adX93f^_m"XAL4_8t*14!:BhL&g_5;Y7g%4+3'=CuUAONPdZXGgM)h`'6K90qMRTd+aSfE?6hQ:umd,*/kMdOi[Nnt>W`8#dXPcu:ogiXCp$+?A-IWOrREh.n:]KTe2SEM3[K'=NACgKF6.2+knl?K?I5qgsbjJh<'4X1+5*L!=,Oc+g_Z1Vq7pNs+@@U$+>fN*Ze7Y#@+m'*VEP@6!V16QOq34(H0gM#cnRlDh2S)@sWTBa8fU=_jQXbs)X>7CsdlZN/T*u/lph[oc6kWOBm"nR,?bB(;"6dQdA*tmEEg'"Od9"-M$"5lr5Qbj79S_+p,omK-@0D'ZN[lfHt:9+cQKVWnCfbZ)uYZCb)q/gPTje[N^A]!c4oLLMb#=W_$Dti>?t$XeW+;49.$p>>QEP4Q[H4U@@TsF2)@EoQPJXb;>LfOOK&IPoriK]"b`EX4*=]Oh#N5Dd5[[^"[]VrGH%uIX16$R+r"5A,k@3B7$L_YMXX(#ho:eO/'Po;.'d86lQ@Wnl[]64,/B`TqTES\Io.W;]57>g0cbXZ)Y35[p`Hc]S^]R@AG\O4)Y((VSB*[S<3I&8V&mjoCK\$E3>rNVi6afuL[;)`K_(01X/I4CW\"KYJ(PI8Dk!/N?oH*?X$24_;KO5+2$'%j0HKe**_C^ArZ<6S3Y,>3HPs2KXpm%M1>0^Rg63t+f?sBnLcMF\%tj8?\TYpBj]nUV_5gUR0=G7D7Fm;6FKlK[;%34%+Sco`f\!A)'euAqMfiIFU[UNGQ63q9CfN)f=[M@U>fiIFU[UNGQ63q9CfN)ghC>)95;ci\t%##@6.@br13sGRX!X%+u@52QYiuk1kmMh!3C(^!%4mkBcqE=.^.]925P7_b!oW%Wu6oci7`b6+0cJ2'6b5Y=]1Ka)ufF8E`"Z4/H_jk\\Pg(bmheCo`HE_L-!%%"5-DA15[Zu."O:_%&E`!YgXpCX-[2NruNCMi!HesDl3X8pEqdE]UcPeIEpVVo(a+.t&`ch!@mtF[5L7RP#;LX6GZlLMW2`5mPuo&Jh1NRgK_pEaKG(\8S"M]qh^OerGmPpl&k-aHt:9.>D\.85mF7@U$+>)PoaP\s_OXbs)X>Nr!<(Bu=^7!b)bQ[(Gj@U^@JV.[6]rEF&c+7iH7@N'<1FO6G$"hU?*#b9\;Qq+"pZmDTKirTl\g$?a1SE'#P3PrXK<-6Pr@:MjsB(-.8`\5LjlJtn0=`;\H1Hb2=A;`YcV*-6!AEEfN+hV>Ht:9=^bMHdOMK'fN)ghL1u`M>q`Wd.G.[;.md:hQk$U==RRh&BW7/[_fu>]t-4Nm-SkR$i1*`r-YB\3tb2l3"RnF3lpK#hpOo<#a1jZO9GP"/TMScS'qg!1h*l)R-?r<]+Wm#X!/"4daErP](0EdEJdK]=\QsL!Sr5>1'p"KD")gXq`Nj7qXcf64rE`;960qVH.Q1MpWjC#l6_')WjJ]Sqp"_e==OS`:,0r`)?ta;9dR1<%sq"PKFonD>/8/)J,CVp3![C$g-IQt"NpY9Od?j/*:#B)dWe4,?XH$G#k54Auk04j[l^I+^FU?=l.VJ>c;Ej6((aVB%qYdQe\G9Wj^<4YY6:f@0>Ht<_d>I@0Ug/$bFMqcEbng.D,j93g.I-'l%XLcd!N"_U-:'jrQKa<4=-@FW)n@@U"uk_R:Ya2.0XnXk6Zj/%-2IMJ^>@,5$Y,77_40[UNIkVQIf8LQ92I,RK+NoG[BO/!:I-0GI)[@VSggX"sdIBFmX0,cK;QD7Cu-M-=NQTC5p&K*+%mpJK`ck%0[m/WgHttQ%mU6ThWmJbU^Aa0[GilmeW1DLq_[":uuNDS3]09A'W8FGt"3hOR6[U=;4AT.a:F=+!H<%"5A]M`O95[Z)uYZCo_$t7jaLfN)f=[M@PSD8iqm>8>&a+tWfLMNGEb[UNIkUocsa(qt.N0O,%*i.@5!j._fhSkr+>MofmZd8\tAldS@/%(^c'--PuYpY6"GqT!YrH=7-:G/p.mC>K?QHNrE\e/Z-e^[H`G*^9fMqX#N30N6e(Q<;doV?pA:m>uFT/RR31.e/6o$@8g6]\M0J6ad*in7,Z;;ld@TdtQY?>jk[1%P0Af`U";0\==L(lcVp0-`Q<%Y='\%\@aA4_-,'k-m=S#3Qt)+g/1.#h)]P4O0HLY'*p#l[M@PSD8iqm>Ht<_Ht<_7jb?fN)ghg5NL]@W:f8@rTj4JJ8%$)Q3Kf39,pS&NK092MNqRH"nc0B73XU$U;18_7T17$2j'T4+-=#0>J\-k^GMSZf/^p%(tooHf;<7]E'+%pea!m9L.EC;r040pP,\go-R_/P&PRn$JRW.'XPBO*RH^P-)^cSkeRga;6UaY*rHcA+HchY^XIMgglZ,N1`$7m]XAUD)tGPM6Nu(+kq_m[/)k@q0R^"-d2km)b?6,&jclYMJ^>@@U$+>fN)f=[M@@U$+>fN)f=dMf?l#cTIn/%/GPg+$K#iG8=N_U1dW%XVZ(`"Ri7Md\TZk_SZp*buIbL(Vh(k3A]$l>ce"95hZ0p[![1ZV.P&l5Y3Jq,cPM]RPpe]s\G8q9Kl8UOR>*?#\`3-N`t'H>f_h]W*SP`OHb;'+5;_eBneZ+U@:`c*f+!U^SYj?5?\qjLGflPRS0cZ@D)kgc1bprb"L"%P.2YjKdoNmshu#8$#WE9:F-tLji"sQ3GS3>:fN)f=[M@PSD8iqm>HP-3DD9^DCb%i\!k&iuMJ^>@@U$+>fN'M=WuDJU(#+V-Xak9-[]7_iY\2AlLZWG50H5Vu]?8[mQg:e,2CuMIm5jPo1)ka\?%XhALS5`o+PWo`>.)nfT]Zb)TVSu,?>Gtb<7,0>\-Op$XePL:=)!ebKrF36k3_/N)L]cpYAuO>X5G&kfj"aD_.SVjdk!UqWaF08mYbW'lAPF\pHHtRa8fT<_^GY4q0=O-o?:Rh?>e:fN)f=[M@Ps%+nTsX7\^5-"'rb0Pme4@9^"=fN)f=[M@PSD8iq5"1As!CAgqP$.r91%,5N&fN)ghR^?)AMSN2XI$D@*adIf45F.D1lb20>e.kf7rn^SdN@6.3H4P2$gUl1lg3h`RLoio\ShN$hk$T%sD7.QNY!GqC`#cT=Ob,X!arR_KQ0sp%lqMh816;1OLZ]8^MaNpL#or(7/D]T7uD7XufN)f=[M@PSD,ic9/%3ttB,e;0%E5nY[H9#TIY]KMDJDYn]Z($0f^c0t2)1nF.(=]6CVC]7&4&:N;qkOD)GJ1G"bI:jO_p36T][T(I"*PMr'sXluWE!/:\b$1qJt?LpfL8I>)#/asF70ic(A`i9'BpVm]esn#lX^Rrd'X]*oHIG!T+]mt5aW:`KQ8thX!%__Ne/h81?Qc&1mE@WT?3nedsq<\=CSe+^3.g\S*T.c$+R:pI;k`Yk?TT0&,i$`Z24=_Hf8V0I0i!Hcbi^3"(rse0Y;XS\aI[n%A3Xc-2>Pkmm5,l_*gBj-RUI49P0r8\\][EjJ8lCT#`hHF;:p`U)toa&=MPrF^jqOFlF%_O=%rZ!&!eWQl0Af\>7j[gPTje[UNIGXk6Zj/%/F]YcZPYCb&BdgSu+!(#+U_`O95[Z)uYZCo[nN>Ht<_\((PY*Br3.8L0K_:'_=JlpBMR$@N\&"fUL%qS6UtB79a'F/0q[cf..;P',QR/FNgn]QY3-/gi5H9=]J;MY06RfBTG<3-@'ctmWE!.k%5aCq692C!1Qm%ZA6u:(lX&RkY+jGqB4CIkXY\M*bkL(-iQ=c$YYQAQK_+dCY]/8KT9#LN+UfVVIege*iP*q<_GY(o(1n_'XZOCG+4r@*HC\'%K$t[K9?XDC4Mq)k@2OhI@4JSboq(Ca04j)=7s"0p:Qf[=3!Q_"'q!)q_m#>YF#-*q#%B4N>#(BLgpq2bQ26_j8ZY._N!js/eOqH7"BLKm7oDQnT>h$t,kOV]%tG9?f[bRi`O95[D*^RoXk);ZCo_\d>HtrfN.CLh_^o"+PjX&:k*2QYifD>D$]%Yu(MrR/J,]\#(I6ZrS:I"'/F.]-6`eKaDo*Y@sip!:M$Kfb!Z_@GO=6-loacYC-$qH^r]_-HaJYsu/>4leEBbA_IC$PUW-b[`L`/LJGiR*K5N[L=sHKr<_88Z+@9f[84ZodRFsGsQMbjAt]&JK]?hAM_L`PKp?d(/;W!=U/P>CZr?dF<:/JcGF*M#=G1I4Ru5Sro)fRQq=KsJ2[KFk9Eer.[OFq6\D^!PKAY3UAIJi`tcU,e`Kc\*(m!pX>ar[.ssi8g>HaBH6sq-l]=S*pY_$Y`b&G[Xk6Zj/%-2IMJYer&[iG/$F$YR7^0!qfN)f=[M@PSD8iqm>EL[K>Ht:1gPTeMgM2FZ`O;dD><.f_I-g*1i,>60rSudBL6"Os_A`IL\!LBmIS"pL[]FuU\+h.p7+=_uHM1?`[]KYcFp,sC42eQWVH.OK(A*bZ8$(o'`Vcl4$0@,n0OJ/3`$O9.CbnLIW8(6?^;(@TV\63flph:l)+0&K^TuD#ZCDT7E+F2)k*L-c(UYZpN"<1M/@(R@2SB1(43(`;TMrif*cmmAM8T@c]f5hNjLENZrrV),=6JjRS-r]fJcGfPJcNW;n\Gb>iP;[+(c!@-YTXC;+Wj)B!m1FhXO"1#lY*-)Ll8d#j:!u0)NllrcJJHT?.IJ2]m"Vdqi[4[eZ%dlj-Qa&l=+m[c1Ed[M[(A-Q'E4!)&X/bJJ$^OZpDaA^^hKs!5A9Z&b*L6[0/V(%>*+YI^Rn1d6+Y7(6HDbCHg.e*cUI(cj-Vu54-DV#m8DDjd6QY%eV87mq4J!X#AdkDFM#YpC4]6YL'E8=H1+g7[l'p/_d)Vs.SQQ%ml<_QS>#MX>N\eX&d*^I4"$/MUokZ2f+ZP0nbhQG(!e1-LkJ3ig^#8M#1Z5OYT*;uWr7BlS-_:LV3$g\4/096!3Q:U1i>5;f>&ht"1=TA'q3/Pt5C;tsDB=9CN(qTLN\H#^+V3d;i=(,FFr<5LKTpD1Ioc@IQ+p1YXk1=gni;uM;OLS]=-^6oI];lAQ2ab0B4seOBP*&tmU6e:?nW,r]9*@i/1lM1V&7jA6pY92!g637h(2#*,WKTHln8,[U>W#9`hB[K&FkHkN_!q9\qm.<.jdU9=jutn?Sri;ir/%pq36Hd&l#D/%QJOMJbklU0H$IQpZRF7CT!q0tfo_C=B.kZ6XNbH22<]S[+?1:BlU]VZ<=&NLb0)-<5'O]TP%W[dT0[#/,SR.XqV7ATCAq)i?F(?eHl_9ed851`k_PdagSaDJ#2[O+Epcc>AdHQP6nP:hKbd0?n=I(aEMeT_-t[KgW&kIFuG3LBS:IE]rFK8i\,h("q'\WtBLi[QYt).]PA[['+hZM.Ke+g:MU4S_^"$?L^Q8q5o4l')@iXg77!+ERR[d/`0,fh)pZYNCBe&Md&k,a1ZYbuT?SLtCq3F_r63;+aKd;uoJE!V5bih>k7EWk/^E>%HN8Yq7tW/o-$O6j:ZJQKb`\Sd"5]!MlUhb,Na/WgBq##N&_Pl'>C]`84><#9o07V_B*qgN4sW(#=ab7CT!qdB/eRKPj5fU0B?8_\'LT\"[*SXlrf-/%QJOME+Ao4W#6)DC4tBB!b?=<[gHbMDC+KAXicu1k#J3bo#_1e[oAYmA8'EC9upOb$2)lr?TDp11IKL%F=U(YJu(Wa.O8R;SSeKa)d>SG^pRBSGp*X^Q3ZJ-KgH5bCnsAT9u6ZNIsI9V/gbc'[;F9Yo`L>PTW>+s2&d$e;89.[qaBokZ2dU\eX%YDFM$D%MQDgh26*hoF0QU9t-j$%EYaC`>X!__Ag;a>!B(oXNiB?a6pff4Q)`Y>T_.4JUI:9>Gbs6g[fsF?!]6+#;g9:kQa1e$Wr\sU_maD`>#K8!;0.>G$;\'gHLWnaK;HL^U)=i_ASYDD6(=G,2WlW.PcOq/%8Mb:g$cFa$WWqT+^GgV(_)ue!Tu9<3mgI`ru/Y\s94XH5_.SeJ7B%]7]3/l&C?lU?%N>!OZ9]]:mk[Y5lIZJ6l])Lu=nB)mn3_k=sW#Dg*Zncfr^OCC9]kYV_!L;e`FP'[odgWk^TmI$3(+`@A$D?DnmGB^+]]7e0tT;-N/rAg,HS+;I7SVS;O6_0X/s*G?k0d#K=V-D?LkZ2dU\eX%YDT*S0\eX%YDT25Yh'sDU(#=ab7CT!qdB2V5bX%q,dB2V59`NJA_P(2]XbPk:V)ik_[5WWka=Ks=C4(=;d&m.W=Dh]MUfG@Aj=NBc$p4=bl@$<:4se8Aft"fB[H&2'/\.1B7K:lQ\**jP4r:o!DKVUMa]^/3&*:_]2&mPET?Y>#E32%&*"Qkgmt!m,%"b[WT[%kG%pnW<]O`T'DG8W^*7H:'."P"$!BSO?W)QHp(>f:-ZNWCN5*.EH[H?h3DPa8WY;Gh.Me$BuoEW-l;B9MNAAXJ+dt_2M8XJrM6FW[ndB2V5F=Xp;h2:G(h.f/r/%QI:@-CWS6ardodB2V5F=Xp;h2:G(h.f/r/%QI:@-CWS6ardo%G.^gIe@j10KifG4q5]cE"9b3k]?7@W,(T5eS-Mu9cFq8$Q>lOl@oV(cF`tp_BRY@[p`B(?E#kW+J0!5C\emV#O8/g#-!s7cl7&!VDGiH:=?@olD@?j]p7Kq$AB+c>D4ja[ouV=U@PT^9LVFl+/h<(nujP#;Y^]c+/sWl7:)*\q36afi;+shT62W:ae/Nm,];T5LBS:b6E4Zjbod62*n3RI6;Wc'^Erl5j;[624nX4!\_=^#5H.N:P&Q/>Q4b8C\iPUp34Q$&?('e./*MS(^H,5&OB19Rp[,3pTJ1G>`KVoD[[.b@X;W9=J-68`.]R]=+[4L``B_'bV;WC(Ec-A]_9JD"T<7pU6nZ3O@>be8*>A26?GkCBulapJo0M2^Z!X7S1AH0*s")k(!q-.IjQ/IcLK^h]?'=#8HDqm\icHkRcKbr[TXfZZie7oL7USL,SPNQR?`.]CoU%XdUd:jKg+tQDp&*R,*UH=0&m7kDFM%/>LBS:'^F[GDr%[E]`[4UM5A%M\%A5Y%9/o?2J?(.Ko0u<^4('K,D6V1L$k#OEekNF^^*U7h]l-HZD<;sI^IdirO@2o&/M[ZM(0-4#:O@NKc(#=ab7CT!qdB2V5%qb$+F=ZaGmf0.g0aEDMeMD:t\eX%YDFM%/>LBPobgcBfZr'aB"A';$4ZM's8G$'m&B0aQbWA+E:r?Aplj&()2N5!JcG$H*s/`Im?=1=%+n6a^aC1L)!kgk+B^D603<;p.a$S&Feqe&mBVBRD#U`s$Hs.:deW-hA%(FjGW.F15X]V8;)O_rrddEnX<8%_X\,(3-Wf45JQIoDJ2jQ!gU\LecA1qk3W+IFa]\[EndkEMW?n\AaKrI@"c]AajN0!WmK0:tJWSme=-qm_Eblkh7,KkJYhApLBS:]%$eS>LBP_*P,61F=XrQOPHiCSp]Ju=@nfE4QWo@/G\Xt5s/9PX3'Y+@O5"Znqtp`S8i*f#QF>8O+XWbo,kg3rp1"8^7,A"qm.r-\_&h8`5A2JX#i=\l09\l_O&"I*r=rq_<,&FXt#jpr`/(7.O%]=XR_b$G?&08oIm5cpWe8eLg0hUar;i!WVfkVk`UIbb$K1B6n:pLd2:.Oo`##nj%A'DqZ7o%h),#;fm.]j=e'Wm+gTLBS:]j1gBFg_=P>B[`>tSIS^Jr7Q7.Br[5@[X:O`P>IJ"Tlh8t5EXZT_B/V3Rg",LqJD;P2u56$u-^E7k.XR,)#4;X.910E85p]Q:%JB51FM)SU>_3T8%?u`d[UaI_^'Yqf^'$(fGJ:"NpbcokpMBT$g7TB!mb,8bVK0C+%Q``jt.WVaeDY6k+?fNB'P'u?qWU_3FbNC[-,KRQ[q_#!#Q5r#;5IkX=D%L_<(Nc5i+J7o2"?a*9Ao".Cl88gf_dqLCLp%MCbhcn]DbD[p0l.5BSS@d]q3=t<[4K[>\NhM11'W\3N.\3h1s9:MXLamt?d#&f\!$%Kfs':.Y^O)0=f1G6Q.R^N%aZ(.5c)g/or=)9fqLBS:LBS:8d2RXS7CU]3\"[(9)Z>e\=6N\,/%X8Nf3=N?i3DGuJ=4Z6c\Bd$7^7m)c'"fGk*XoIK6^lM#NkGTp+FCu`54tZ"D?RBJ=4ZVc^'XknbEWd'5sp(K#2GlJ96X%odgrLNIlPU#OYM=Ac^^;S7/sn$kBRRBh)`+7Ac_5Ub&N^W,/H7X!CY&[;Q\__r_aOaA8Kl:4h7.?NY-Ec\]im\kqPNN1dEEtc'T#puf["n@FP:huM-@XJqB0#k`[fE)m1R0M?/!CgtH_2W5o5ZZmcKNt*.RI18p]/im\I>Y(Fi3b-J9Y[t?-MDKR4k;;.;fY(:u?!922-L+\st"35OME$"+\Z8hK`%2XF\UQ;PCXuAoD'-=/2qAan,uFg3-;2Zh.im^>LBR5(V8-/UMIgkU2_HdU0F2Rd&lM4_f`"MT=Y(Mf(*3rXT0^"nilR`R"uQ+eA2fB?T_glY&uN4cRT>m?nrk.n67HRKOS36UL6ALT."L28='VYL8sL^C)W&T7"DdIWL*j2X)NgTSfnog&#KQ,FueE7hT*j=(F=\BU:Q#i$g/HQ:qg,WP#3>3@8G%X.X=:6.>MBc;#-Sb"X"*YZK!p=H71tYG4Vb30jff^LXm7f.qp$Z"9j,OB\gfYAJnU%kQQ%isL,qV36U;SPM)qC::tD8d8D+$Ugu:,ob?L#*=OcDnl6'puq!#0JbKmf%2iHT"*V(*h!?T9t[EijRj46J`&5V)[_jd*%sF67Or9h$"t2.KR+\cOA"!oRfS[A2.&UYB@MoqC<2,)F*k>_?1Wh9^1iJ@SY]N%dpZK^-j$L$S&IX\ZE\_Ao"'*p5*^#J?5E+PuF/V"X%\/DhWAgpR.VE!A1biJgl$#<9S5-!BL`Ikk2a6:@\lSG2&WF[i/.TTptDtY4fcBSL/.FlK"]tqE7?J(%ZoBpJ;LOV&F@^rDXP"We<)nen"q]F5@m.?ik^aKnubSg7FnE[.l*N?8k%Y#s-O\T?.)7'A"GAfpBPpsVd%QNkZ2dU\eX$n5F?>2[N^]&\"[)tMU8Kh^#Jld&mU@ia=DiVp"!"ZS9TB1e6S+0gfR1$>B`_eQTL,[+E4Aj#q3j:e#gJ)Qj$.[b1,GKB-L.m!8oJ$a[M*D$T>'=OImoj8$W=#sOH5`Yh.hRa\dGmSE^1Zq=a/?*#ggb)=\[hc(6C,a4'`K?%c/cp[k=h$!mrX3e]GeF?_UNJ:n]N'ha,`^J116YC*$>H-4n;Q>gIq:V?.aL"Tj``DFIoX4>%j#%;r43SJc(FQcbI/%QJOMJbklP0g>VB]rK=X&BeF(#=ab7CT!qdB2V5F=Xp;hUXlrf-/%X9Yh5X:cJ04^U$1R<#pVG=^?NJJ$SpgPmGjb8!_6XqB<*VX.>W\Hh%(_?5)OieJFR'H_iA0>7\2B;6T=.fln!\lC^WG:R9]d:[.hmFGnmqMit=>R\LQS"&.tc8.]"!9@(*.dHbbP1k>s1Z6:?O!P(TIB7]8E%[a*u!Wu=QdqW)0RG7m"X-3SWXU,#i2LnkZ6k+F=Xp;h26)=[sHCf\"[*SXU_\*=jBeN",qMJbklU0H$I*jj:rkZ5T@X$RDoZ9HsA%?_I(Mc@Xsl*B8HWVBFca!#RRC'/FB'-=LLpU,VI[9dF+WgF,`@4V7.OXepI[T!;'@NNSr5dq)UDKR;c*?9K&U2Q,Gk?1rEK3U#>AF5O&+(&#nrUl(VEdSdMC8I+lLX$=W"#=R'\&r5"i15(0!n1k9c0[P?Q4+m?B=eM=Wl\bYZb$C@eN0Y\)aO,D?jGSY+6jMB\J$#FIT6.9q+>[9"V]G67^_9LAB=^?ibH(G>\aE6KeM&n:EIKKn:=+/]l/.gSMouk/'p]uuXaKGgNh=lPO#bkPNXlrf-X&Iq!F=Xp;hLBS:I2rGk&2N_$_',?@)!5nFC@5Ji1&4(9*[SO.%oeop>pZYAW^s_cpq"6F)i$UbA"XA3uTMR4mV.^Pobf@NEc6epG(^2-6\kZj;Uj_;9(74j+J,Dg@]b(@W[5_iDVQ:o9;C_7-.h6V*V1e<;]`.a2E9Y'F5VR%UUP,`K3n%uC%t;*p$:h-kkYqJK3\:IQ[K6C(DuToepH,k#e%aT;PLH"/H[>uK0)/+8Xb(4CeV2CaJ^3lsaFZ"S__V?4'V)JCs2T\gA>Kt\BR.'ktSm:cJ__,FjTsXlrf-.rp-4>P/E\l9P^3MJbkl3n,J>Fjo`[)e&O>=GtBQa^MDQHdG2KX.PV='Q;6Bf8[>5JIJAhAup1f)iLW!Od2e^p;ZXNmHJKg]6#t"l?cIo'jMFpg\_EA0R?$fnQ2)k@2m+B%sEfa(]K>6^p%)J+^07t?2dK!',Sd'mR$f&;,#"5,DV@1nB]McZ>5c&:LEmCSG1OTU):bJ2EA$#gpk;L-8_BrBPhZ/e8D,;]C5bpli[T^ICp=M3lK<[]p?N?La6?ufgCOfA2"6r>bLbhYQ%fXsEYVadXcitBIACRnboN1J2n9TsZ\"[*SX\P@FcJhuU0H$IkZ2f+#;($J\eX&dZoQ3QXV]fnBBWCZ3-6[^(#=ab7CRTi6FW[n*QP;C(?EV\nEZDnJ5"YcWL+f4[PY>D5GR3q;iF0Y`qjT!Yo'n]LH#j]o:AQNcDLgF1";i66!$>O=#4o/_?ts-k>^CSqN/an=3TeHhZf&jR7<%qr!graj%STZ:J[rm.0K#*qPLJ8oG%q[AbU(("kUMsjh?"dI3"'>q2So$]cf;dQ#k$JM"Z$fR@!69$bY7lGqp#X)3jK!&kB=YKO4M+jj>OOId6*ecf`lKi6&7.i^nl6FJ^d?HYg:AQVg#rC`0QI!NN&ldTBT)>mdEW\r6,pYR+VTUdi2]m@'8:s[^Da;QIHU3b&cM4H,p="R6!4!;78"Oc3O[__l8!n8`;i6&5Ql:^H69-8\!UBV^GjgnIdBp9Vl1V"!sAfKqqah+\XjAPhP/6O*`;gD80+5(2aH="@^kZ2dU\eVb?d&hVKDKXMt\"[*SXlrf-/%V"!DFM%/>ESdbh5Y,ONrbT[^3]l;eCjEb1=ajaik+]!gDrZ6mV*3+-6+&*Wm]a'tN'Y&7Ao+NJ#up'N>.Q%T)0iFu5O<*nEF^"radk**4f%9X]ZY>%Xc6MY*A8R@.]JC9X='o=h#/PmAq[c`uOi8fYd9f0ME("td7_Ge;G^J3$J;d#pP:m0ml_[i9"8R2BXlCIY\kVii$T&;/4T;ZUn:1J[A"ZtAJO82t\$!]co_8o`RG7pCdnht5A>i/#e2$6(T1)cVPk`)JQ(;e]\"[*SXlrf-/*LBS:)7n@\6ao,B%WYnA7CO0hFK5WiF=Xp;h26)=\"[*_cd8eSSY$R\(UUSjjc0JTlf$+?-oXdP2B4M0nFEJ@Xgg1)X[oU>ta?"S/h$*<-M][NEhO=aoDQeZH\!FkTCMQ,c,@Gn8%G\M%!i@/3Q"%$6Flrp)p:LL0#rp1XFV>B,2gbK2/kW:eM=XW.h6HX/:oC=f>+e0;=Mt'gYgB%2'A6IX%Peh6D)+&I6Ki@3t?/aLk1[`8bS:DS"AC8oA`$0QY4+Gcb0kGJ*($Uq5J6qGe0C=T6^a`/!liT"2+H^oAIc4Dh-aCn0RS?;t#:p55o>:jb9&:HdB>2IeVW%i6CFk")kmF!Vjq2=2DtK9lNUBrFu`lcK.?ud0;As#Q(IsU=mq2)n<&3rl[l-72HD+V;EEUfg,L&@%"/"()BRt44=2]DQJ@VAdnn'L:6'U=IX/s5\_H5R4hlo"6d-Pj>_LBS:i_?]k0YWtXV7[2s>-`#r1_f_SQCCnW9MUQKR>)`%`Y^PGhm6&=6IAm>bfuD<_fC=8WnDL1ki`j3PmUoJ@2`*\71e5gcNS3adecFu@R0sZOa7H\=m'o2(>Xjc7CP:$>W"/%QJOW_Kss>LBS:<^U#.V2fisPrF5-[=PE^1)rsGJ;2k]7Y#]WZjt)?`cPH^D_sa8SH:>3305Fu7ahG0*@K`jno<-aJ`D&!=I<\\^ic\jRT@UQJ6QlB[V,IW[m#B1q5@mH+'Sco[IX,?&Dq2I('rTXC_P]S^I%hDqhl6QAl_0lD?>*,)GQi;A-Z5&#NY.jf*':E-1K2uhZRks1fTJq:eNU`Q;_1*/dltfK.8WdPXk0kQ)mTVIC`&g;<^q!Q1O98K7n,2\"[*SXlrf-/#HtCLBRa%]3IXXlrf-/%QJOMJgCTKl0>g)PeKt/%QJOWp='((#=abF_nOeJeroX&X;SkW&.1E2X6sbBI[gpY5;2`f!$lW)BVbc@=aS2qBWtWCk,1.k>s35,HT,oG&R]>D76dp-7F0Q32hM'AU76!8`$;"ADP9Ja&R?&BZ9.qVc#T?'X#@%b5:X[!g[m`nScGY@#-R!M:6n-gB)jrcqG"n$Co9NFP6HAiMaWs"c^>9,J@/%QJOMJbklU0B?86ardo%8mbK(#=abeTES%MJbklU0H$IkZ2dUVCQa=]%%o,Tj,pHkZ1soe#hh7FK8i\eT3BM"M']W;`6n<;H)(nasP161f'4W!+\`FTQ%tF0!i--8J"eYe<*s(WY%mBh^O=lcFMH-:3!IC""oO95[ho_3XO=qJZEd@`h48]meJ8Q)3h!b;gY[I:^XCH;&_gBuqe?&pWoor3>a!"4^1i,g$/I9'Bh+ERec#uS<(Rg)E^aE11ka9K1:FK9bN;r^pLnR,T+j!-WNINk/Ig'*J)#Ai,u]o&N`^>U=&)FH$Zr7;pd%CW_9TNJ:H@)m`(hC9:4!Rl"=S4AlBRjoTUd78#df+,j',Vl[I6rEr:6uWIDeKI;hU0H$IkZ2dU\eW[MFK>@mkZ/d(&@rV4MJgse0\qV(7CT!qdB2V5F=X4=FK>@mkZ/d(&@rV4MJgse0\qV(7CO2$>1OSa&Ya[^$ooCKhZZ@sD24n\"I,a*\K1*E`^@q=$"?uVE(AR7ZrsZis[_Yu\Y(&BOZCR837#Wdu>h@u:?K%+*1(_%;&lAtU_!j'Ai+ESZm+:r(i!`d@!ZHKn1Q"+e#e5n*%"<.IEk3hU0H$IkZ2dU\eX&dCo'o2#H9f@Wb;4UXlrf-/%Sa\d&m/"DFM%/>LBS:'H(#],%Q73B&/Wc[0%NpC786WB6/q-HoOHJ$26`ArK0ObY1LN@K#$4<,_,nAM/b#ZFp^1-\.tCDXr#)`Q.*5+Bku7Lc5kdihJ$_s3fl+8UoIgEH4f3GA^E.[5dq)UDUl(FqIIB)3-#DL.PbVYU8gCi*i+J*$qX1ICrZXi]6TK1Q%3_ZJ8Feh]ibJt\d*-0(^&1sK.Yk?#.KZZRDAE10Nb[X827P218%mX^rCO5`&G-@E\%6-[g@YA8>^QF22\b5>%LXOP/N_MJbklU0H$IkZ2=NF=Xp;h26)=\"[)t[a;/?dsR[o+sZ.VZJ'!WhKorMWNY4M!e<)7--t(&&phTW6@I%_6HB3X<^C\[bK'tN_c`tr'%0.<=mh9!r\MJc3O*#mGrh',-p5Bh5c*576OV8O4K%U\mL:,OId"Te9lFfib0sM$3UEb1eD$lEm6JfH$'D>66BZ0J*)9BGapF"2fb^n\E)'L%_^JY7Z$kD"jbk_@5sQ,1VuV_Y0nXn7D4iYrs?e$D?K?iYI;G./te?3r&Mf+/q)?:q'E=a)>ETosf6VmbW;A?lUn'bbge)q\a1Um#B:j-j.K6U%HOINRD2;^umirh3QDXlrf-/%QJOl:ctN7CT!qdB2V5FK8=Q\eX%YDFM%/>LBRuFQcbI/%QJOMJbkl3[LJ(dB//h<_rYi2))dB!4,m@71%1T'u@aVWLM.2_;(?rAe?S1Qb_rk%P2GY_07!?^\C!1._o>,k9;i@+k0XmVYdUL)AAe?RDk10oJ@AaH!XXY%#_H+tFUt\hUC0okCJ5G.mOd_;*7mP.tr%:RM$Kj]u/)=a30kHo?4tJ'\A;';jSmtM+Cs)u$lWI'*)aMtP2%?26h'+N](J#@+?-m/3BA3o02X=acC(*M*&[8sV%1ZGIFk,Tp(6J?(@bV+7"W(G>?l@0`V1D7djkR^"`gOL'LVu4HT1.EiXhJooRb'HdhrJKrCDN>JPD%i2G1e`JO\^QaVH\[t314^"*=oWfNC]FZlCan34@IM#<<5\-IB\d&lM4F=Xp;h26)m(.5R*>LBS:OPttgHF6S%/W`"(W#0Y!DLP?i6KgrkWIFh;To0Q1EY#M$e4(2NWtI'4m9OeUbH+U[Q]'YV`Z=TF7?"#%HY/ZLoO.J*,7YQXLD(`r8R!&:q+=+H\*D(_oGu"f1Z+\(n=Kq=hP-k9/6S013F]UFY"&fM^FPNK[/radqd]G.C/9GO9b>6k&tXh5!b%5kVo0\G7*0+J*9pT/%QJOMJbkl3fB\9dB2V5F=Xp;hLBS:QO87\(!ZpFg@e^28+Nk3ZN;,Ij#OE_Nq\H;9H(WU_GbEYMTXjM@n3.>"t;$YhO0lu&/?XCb)kQ9d15P!5k1H.Y'p10l#82@UVLc`R=PMC#$W$l?HJ"$!Fk]QOsi`\V"?2@Y6[+4Qae5g@g)/FoR"%%_5a5oXLPm;NU0rh3QDXlrf-/%QJOl3rAaeMD:t]%'VD\"[*SXc=:1(#=ab7CT!qdB1\jkZ0i6\"[(9-$1ZK(#A/BTj,pHNoO19@N"5V#5I`;YCXm'gYc6\")^Mii+=586EcLBc`O#HOB8STdY\aK2S0"XbcQJE\aH4Z[gM:!F=W2)S_-t;jm(A,JSgl!ZolKl[#]T^>iij6Y6*DTghYGjlSUtCf)V57"+g[sb"ACj'T`W$Y\ld.*#.YKhaCQV690f2mLMCkKZD&P,u!lrJ[O[R%.oYfGH__rmWI'\de^rqf0edK"X+H/MeA+G3??\-."O]K#O#4I4Fh>"BB<+V'n;S=d(EFsl)[>!*87sZ!di%++E,NLD?AR1"*ps#BRtCZ"WYQ]\0+aqq;@?QPC>iKNKMOOHqM-:-*sK7'p)6p6K`"4lKM+<>e^;$48mJ6k1]P/N_MJdR,d&m"/\"[(I4`i3ceT'A:k,YdPG.-0+abg8qb!,'qfgW2_K2fC\BTVhDeV/*qjP>=C-XQtp;AJ9a=]!>?!So5q#LKRWMu$8orig^S5_ehSXQlCdBd^p.)d(+fNSjLCcf=tL\Hbg$50rrYXS8c9k+F+A(>SPE7;Bm@FuHsE]UACB"E3l"WTXZPg,/$!@qWf6:[D1Y()>9,28X*]uXk#V>B4$'eSA=,!6l9O66I=!IP>djkDGme_+D'8VQ5s:M(/B\[FA+p`f^8%Bm=g,0+<\ZmL3tJ-cQ'qkg(7.=l@Kt\nPV#4(_*dej5Uk"TK1=/b\mo3%m8pj5t\"[*SXiUHmDUftRX*YGieaJ927CO0lF=Xp;hLBS:4XOS5c.tl]1]!gdP)X`C*md7?VQ-V]_YR7O95s$Soh#[OjiJoh>Lu6F:A@i=K[;7k7MtHeK4((H[0#R/J)8@!e$."i(kU,J)OE%$IE,OBSA(7RA3E#Ye3j8/"9]2`c"'E>?a,GQnFJc>l'k@jdGBm+rRKC0;6&Vngct3OY="q<(rQe\(K@Ah26)=[lSXA6FW[ndB/EF\lI)'Xh%7m\'dXQC=B_&e<6FKq#Y.uI^nSHmVbM]eM4KV9B\FNsg'&&3a4+*0VZKn"Q9cj]#&>^_ZWY5'[^PoqUXfX7M@&XH$UVJDq\ur49a?KQ#&^i3#5\8%'j>7HSs\J!4ERWNOYbor,?mFaoT`&Y+O=Fl$e>1gM(C>T#8iFYW)l^?6Spn5gm?n`%O"t,[4'O*IJmNfHQ>6BkUq\09]1$4U4![/=]!815^j:Pc7FI45usVW5A>+-jXCp77CL@RV'<+ub8*19Tj,pHkZ2dU\eX&dS:tk21N]\#'@LBS:=hW]s)$c@/dT"Q!Mj@^C8")se^\kfMEi5LBS:YrKV^m,Ge#ClEc^AsU#$l'Z,kZ2dU\eX%YDFM%/>FiOUXlrf-X$_SY7CT!q*A_df\eX%YDFM%/>FjBmXlrf-X$_SY7CT!q*A_df]%'X4W_f^GQX7?2lBVerQ3WkUO6hC3R5Q`n(GsGLQ;8a@;n*p1koE=A@OGI%+h*gJ$q65SZ[KikkCE1Zl.C*YE9L?9U[CmuXo-8'ML;uBDSA:Em^t[`rq^Ef!Fs_.^tRQRR!`fbjC^7kQrjToLhmXHX&S`GIFK0Y]9VbE5YOf"UY`4@-=$Yn8.Q6el<`O&\CDpfG6W(<:Mj==,\n]p!jZ?N-'ePImj4P5Na;M?F>b"H=q.+dD?J\)1'6ao#+3'/!.OR`B>FGQ31.=`$F2`>+Npj.[q[oTi,utRT958*5Te>uZ9A)iS*oWsDFM%/>LBS:LBS:]P9"^=lQI/\BPmmT.;)"jjBgTj.2M\iXYRFZ5]BW.2CE:ZOtbUa'%3QXB_=0KfrZr7]o@1L"8HdQ"Jc%LC=N9HY!2h,@kDER`am4]R^F.)mEn[Cr+8N[jAW7LIeV#NT=KhVJ9rL.\f:JDd,u>7G`s]%%@4,e"-CqE`*u[i/78h$$^9]gNkDI8'MqA*@^-#)UfLJJr%P;jVD)AO=](&$H(XF'AV6Mk>RB%qi`RV&:EA[bT.NY`JKHmE,*r\5af[!2O"N,jRWNb@q@?MJbkl,52>RLBR5)7gR=MJblN%s4kDTj-?:d&lM4FK6X?DFM%/>9,MA/%X8-ge)1[^NoJRYhV-Mg-1h_@ll:#-u?pc%9TcoW?H26Nd#p$15>jTl_J<d>Gg.Q[)(DE/1?g!5WTk?.NH$"ccEQTDJ+p`-eKSJ9o.l>S]-Ya+>0Jt5jF9TDl!<&=o_[KAipD#[[)2j*p,-<\6t9em"hb2p4/!F4.pUSIEg.2#]M6+u+Ts/pB8Kl2$060M@IeueSj]?3q1K_'7h5TZ$:?55;dD=Dm(o^U_;W'sQiX4[RIA-(JU(]d(#!Ck*F^e\>427R\c3Z*3V*4.e-gII["e!UPoGOg9uVrIDo66<9MdZa+?cDr\%qdg4:o!]HE3X2>P4#f4#.P5IF3]Ae3)sW)n3W:`#AF9hu*qET1LZMIgsIuAF@SK0\\0%o/^#RWjXNt79$')DQ!tE+2=ncD#tU*V+6GWW,L)W>'q.-8s>6o,g\tR\oUPV<$e^lDWSBFd)W8a&OM*6F^_;W[-/,@ZpjK.I(W[oSSA*fZDokI,JfVLqah*;llYF7\pnVJVkJi&"$+,6-,6HN\boMsWN$[D3)1F:c"mF6\NR;@aT\t+HE1TZf6%f,&gdA'+;M:aoQqMSA7;i2jOPk9>oS_r:''$KrPq\s")be9#$,WEJ@=#%O]qNqjZA1*JIE[LfcnU4TZ:=Vi"80ITj,pHkZ2dU\eX&d]S15l\"[(I.l7EP0`a7Gn&i7#09h=K`uLSr,FHP7.VOs@+hQS+uDTZlBAD.I*-U$cen\.i0"'.Vr1ANr%Gn?eh24>M5S-"Ie7.>M2*,VH^QFH=([e"6(r%E>e(/u2%'gjYJ)!Y%?GPE$D#cFITk2;@T!f#?8i0V/dU?DWQ*qOGh8JMf_gki;icCZIuk2EtVj)Jf\eEkal,hgU9@B-*8AL0h&\e.Q*JkPsO1TR7mV68RB^/h%d*)aIQ@;q;Le[I9ljPA7K*YPfjf'alL8\'pY[^Ib'V;]=#$Kg@[@;-L5&SEX"LH$`koIJmUY3!kA4*"BZaK#P)AeeAlDd50=GgQ`&.+d:aMu'c!k4lUsL6-Km\"E^=:bndR,HRAX!gWf:1"<3'$75H9skJ9^\)rM8+i.$8;'re/Hj!Qq6JG`FZ?!7H(eH.s`qH5NG]6Ot&[0bnV6.;gaO:f9.^V'Kl++4@;/^8kgGDU3+\"[*SXlrf-/%X:,$f-\X7CPmRUkG5*"uu.]3_HGfXJ]iA.pW29;bNc_We4cS%-UaNd&hVlO'ATm`2tr;2So7N#5H3Is#651!f=<*E:pV35Wg951"l$OO6a6)9Z)naIA-X:KDDC%\5fM=!4bK@B7a(NW[-KY(/-uEckO#-#:-R_^huK#X'&?ZY5>1ZN3[P+t+7#+S8e3=5V]f"Lch`oDR1t=^G1NjagSKj(2,&+I?2e7=j-.J;*f%d&T%",H3.6-@oC#:P[^t:3b\c/*.sG,nn(8D,;i"^nJma6uH3_YfXXpc]2+]lN+KG"MNUU^`F65J]HspBRF>08>kiK`'CAu#5cJ^^L!8j?@!J=W!/-+$T&cZWW@^k:tLkn=Xk@?Z5P?`g'*,a$JDXhelt^Ihqh"V'-Pq[4no['rpq-]IV`3GMdQ;nQsZ?c4o,cHMJbklU0H$IkZ2f+o,"tQh26)mW6h[1gU0H$IkZ2f+o+nnPh26)mW6h[1g)N%b\b>n&MMf4-e?4B:;.u?#`9b]lE;$+pf'h.dP+=6AC!Q9/%?mXe'c0tSFi0Cc)K@jcOX=$VJ/Q)/n/V)BB4BUIa!',9a;=Q[2"rRcQKTEbY:"4Sj-].5U^rT1`jNBEroi=4C\*>!YXn:?oDKY!iWuuG2"ap4)IgYIq"lf%mE;>J(5\b`gR%=c:CsLM5Y4$WgKXN<',;V0oBE6_2gG3&BW*#o+QD4ao(bUWHjFH?<5"a)LL?hUJ;r3!0<3%X5nuSpgJ8Lc@(7TT@%@Ta,":h+Ko2V2:H_(P/iiD>N(e3'`KQU`2SEd[A;\>HokH"!"oZA1Hq,VN:$f6],B_60EuTOSA$SG7ba^r$omI*pMoEB"E^'g7>P:e$:P:C'@W"T]sre5BXU">(Yeg5R->tOZd*]%?N(uJ_MWq52oULb5mW9!\(M:RNQ]4^[APp1HQ6TdchP0f7@MAJZ+Ym\Zo6Va<8rHeU?/[O5BG62q:M8fX:m6JO?Q'>*#`cbH-?(fG\Fj(3oJ*(I@um(7;j!&+i$;`N=aT;O,9ZRNN5G"?hLrHfeB*#uBr4*8QKi7CT!qdB2V5k:Ld+\eX%YDFM%/>Fe1G91nhe1np_)*IH+X'fAJTI>B4?.o7;$IEo7Bj;!fVsGdo`CN8.YDE7$"c+h5[Kl9WIi+FRa5$VkJUS:(bBNH'7.+fQFF/-FF!tP8nFW(*mh%+Tj.38@GE@/d6'rg;rI,Zo0]adZ4&(WkYm0aTR=tI1H-e,qDS-J%t=jKqtWG\C3RU@;M$>QFIUfeV%%A[CnH4r-+(+<67^fG6U!`;gdirn2QFV$=K[p(b0g'T.hnm$=m'ssMY#`M(B+5?Jqf'CG@-a0#$W2`S<ndO]RR$'s0ZJUER_5GnXl="UNPhI=)<.$_t@)H/\_XQeNr9S;Hg7?GV,_,dE9IeqJ#@!Q2`gq7k>[#HsTc.1WBPZjC)7AEMKa3Zna\!$@HF6oUdgTX#RU0H$IkZ2dU]%)'6h26)=\"[*SXlre5&\8_5MJbklU0H$Ic#t*.-*Lb?1Njm1VJnUa0&K&qS@r%6i@c/G2mtImoBnm%6i7?j$%PS,T*"W!7IM(<]rgZlCC5r9$MRHY0MSt,R(p]O5C%r]a[fZjhSt!;37AF!L\_d`E\h\Wc"W9U_'==1>.X?DZe\;3gXRV'\aamn@L6.9j>Yf'6#Y,\SlCFsJ8b+Rm0Q[u:?1=&Y6e%i,55&*)_XjI9fe5d@:.!_al)aLO_l;=-TF;8&mH5jNmjsAqF/gsdp?o]g#bo:&+]*^$q2V?Y1KB:/a0^9F8_HT_>823_j)NaW2JL[VL=I<7pqYICg#AVG`KPKcZG[J:'trh$qWh]*LHS,*t1&jnDeA[9`t2]EM3F(!rm@5X$h!\QE_N\Q3*Bnsb:!,=S/n8qRq/Et'ZP2aB"ImUCI#b?n8Yj/mZ$lIf/R(i5T[__+1\6#GLfk11mQ'qL>mqZqO9+e^DkIkV;]>gTC)]at"hplQ.N*Fmu_E^BV\YoAIo/&WEgR]=8k7!dS?n-)\h"phu-%_Q&^r=@P.8`)@c(>$@$i\)U%6]!;R\Q]kf4=s]3mXj!Gdf#Ls0f4`"HHt-.u!DV9"2_BFmJcb,.R:"*H:]M'R9)K2=TWJ^'=T1994UWM%!Kl."Kr:g*a06iitWX?.]AA,>2DjRcn5Qc9)rS\HFOu4UJPt$fLlH#acHcJ]X$3&7%hWj[Gf,kT5OLG'oU!_/^g['AWgBYlpF6?NF*c)dmq?"(I1&YW00"/mfM!Z'@-_RpH3?YmcG3$F!<:Gm@#:XajM)%3eG:&6hmY'&\!&?3L_C>9G\j"BXKQ""R"J0R@42gq;onj\cM7o_plg\\/,Vhs\Y72OKqlJLd)-J_jju`>u1qPQEAYs$(jKp)D%tVX=C:^VfL_#6>5M#RhOS$mRHX+:&Sg"rYWmr;2'ka:'g[a>S"GM)/;J,k8g=/^(1G=dJE!Ml^1uWI8,EOeOakC[^*7Hf[c^Y353o50\+dA2d`eNU+BYWigZWWd6^l8^8i7+Il@/S_!E:Do*?uE+ISp>Gdpgj7&E96!m^_LVGooS=J[XPScba/;OUY`+F0!0/p[,jId9388;\ccoC]`Xl$c@:GfTj&WsOTa');rGm&PCO%pPI9S-m-*($K/+tb=99pAfd1\g"3-[M^:'HS->bb,u?e!LBT2X;S94Hmc)(\lo<pKKtS9&02^1Wf^5%6(X<']QJnXHkYcjlf99Oa_j6osY#s9FeP]?,KO"9qZ_BS9I5n\c`_3k7kTdOSr9A:pX0?2]6#"](t./>Na0/*N#CZ9$"J!5%UGM'#Hj"E^qn1p/5LV^V01Qr_3%BcT_HlOd!,"@3-t9*8>N.L/05%:X3/McWi)H]<^T%K@/S.apkSnHI;ips+1QXX&f&%d+<=QS2hG5\#0J$krf'-n)"RL*7t?g*BjI`mbJ=I+5@7t^UF:bgUeDp4ELYsIuhX`0UF6kkG]^JeGGA&'XG5*3DfcSRbTEcJ*3=:*+m0>#"p4C"GHU7-"O26P!4eQH6DU7`2Tmbiu?QV8=q`So0B-0+AD\"h5k>Q>sk90!Cqbb/#?/Xf&IA$>M+`R)#6#bi)@F4W1-fF'JhLNKELNagC-]T/O#QY*:*jL5<8cs*P2aZo[4Lokl'Q"_O_..lrFn:hJ.LW!SeO+%UOGBAT6+=bAuEZd)).!2%+nVUPA9rf.;Oi^A?UVRTVLg/%Lr#8o>raP$<'5jAp:O\WtrBDC)c,8*!]k/%Lr#8o>ralF+d9jAp:O\WtrBDUjcgXlNO-I=jZ`;Q1Kmd!Hc!m5o*R!sa.uJ:kP5^k(@k@"7&OYcl!Ab)a$`SY]/AR!@WL*[%iqtYYU12(aps^"%lFp[$1tI)>Q*;jC\I2LS?@'.[=THa%mj;"dY$c:b!a+;UHm\6'Ve_Trb-1]:F0_^)Tb!R/lR@@NbeFb>l0pddhg.O&BsK_!\(I4p"jJipmuTZ*\mK"PCT+iZ]cdkJ:&>+^e_:?p5X9YQ,GO".jjL1H>$k$#j>Q7DNJn+`>8sB/*`nF)s.QYHHlNXG'mV>,qE?l7R?TCYp2X7rBW^P$?&1jAp<%DN!:BDC)cT>KO#.raP$?&1jAt(P\WtrBDC)cT>KO#$&\41^WYr9<-IX(Y:Bk@l5U=#K-<'LYRTafD6)6-]NA+?GMZK6VcQn[F?]A`6%`Fj3FnMbeqAQfVN`uK'!#9hs5qG#$P,T=\8u=j7R/h9.b/g]bLL7X$PjIes]k_$UGqdc5!P\<#^B5\_f>7!l*<_QnGJN0]4og_e0bBlq$(/:+,#_uZ.P_#KNiC*E_"(q.fXLTn+;,\"Z03$l)BT$Ej*-Gd+>Prg7)@C6'SoFX#"1o^mZn<@JuQks'gs7@?uk6b?nnC>iug*3#%CLC&=o6kQd2-,ObjAU[?cUEDH9"lm(qK?2[n\9@cW3.:9U\:&W>SG;:j\9@R$i.-bU`^+l4:J?:P,\BFF4(W0l2W-hMG?jc`5U9`Pl4.4nZ<:Ya.#:>?_:3K-h]oFS\U^XZ]4E=e7R6d&PICPtgXO.n&<5HG/7EX84dtPghDf/<(Z!,nERbn2NT4Y(K@AubU9PD'V(t;R<>i>Iop@\CQ\rs"JP^t``Agq#KI;WAX6q/ehLk";9dS"4L@&U%EC/X@t(!'>D0O9^6d>]p]am(Wt+kNBXr[:,/e8V?,NJ9*kT_"d[M\2n^@g`F$/HMLeYe9%8mVWfn[:P$?&1`#9l0$B*\S9k%$4\Q-8'>LeYe9%8mVWfn[:P$9g,NQWYW-FoiU\0G<#ORGFdjld6TI.r#5@U%t>$(F,Su!\P$=EV?egH?3$M`PiprI_R+pCdV$Em((Up_#Oh)*(OU%EAb.FF==Ac)cFgjo=^91&.XogQ9&_j7KTjX]8e5PZb\r:4GR3B77`(eE#rpndnd?[N"cT:Gtq4-+uiger[Y6iQa[mB%bF$B*\3DC)dW49t-%HHE:h6uKCZO^#4&\Q+:'X[F2NXZAF^/%Lr#Wq.4+>O*TEWY2kmRRD&D2WRmJ,.A2-+LgXoaK=N(c+$b9R0JdA'"kr$)bA:f6$.D_,\@fWP"]LSWm$(YHHH=t-G+kSAcWl9FWSK\.53P6#NSpNO^!Np8l[RTMt?,G?&(_AIgZ,3a_/HSF6Wng6IBH#"JnpY_/R'd0=A#Wl4='KO!%WJ@IM!"^%>*h4$62+2%i"0t+>Oo;'l@&XM=!?MW!?"V:OihNc[]%RMc(FQ5-DA`T:,prc^b9nC^Jn02?@-3j"55aG6j`:n0BE3K:RqaK#O:7OI'7l,>P3N\WtrBDC*jO\Q*5%i>IeJ.RW:n@c.;GnnraoMVA07\mXA)O7LGntA1EV8=&YV]\eB6m=)MU*IO.2Hr3WK7Q;'in/&^t:cW=Ngm8.MQoRa08l]Rj_'c<]tLf[g:-s/77K[\a2XJD@r,VA$m^da48$7:HkBSf8#,HL`Nb!X?4PeF.g%UpE%&Bat#mH'DYTV2T*t['"EC1(rXEA_;R`d5g_c=hqN2dPe5A`%Ge[ApY43l-kucT"Y:Kp26?5s"l(jq49TipH5F6"q'GP,CKl=-](1q29-7a&L8G\GE@hYag@ZL8g#qKFY)S&/pcMs-Q^>&/12(MB>ErC(@8h&seONTki4#>6'lraP$?&1jAp,Sge)J7,.@p3p?k\;.kRkmq4DKXl`*e:GUtE.5e^&MK#_36hFY8*&b)KZbnWLubMPcK!&u70#.L*bHNA)EEF?tl.O2F&*_pE/&%D(1=tG4%6GT0O4p"YqDM.ue_,Fb*Hp>\`(-o8,-:hG^"f:=!7T%[?+^/"'TE7C&9c9Cl:_>fa$t]1TC;J3P\=jo]kjjYHo6H2/:-7PR%>^gjYR_"&2+YB#]pc^,0S#EL=YbQmoPnB=qqV8WKac=K:MFqLsJ8on-3SBlc7EXRMR@K:0u2[@ta9/@kJETnh&oXh$;;D&2trV8=4]J]t[B(M\&?n<*#bi])N=3lG<3u^gKo:XlnbPuu$2I3j&I1L@[fTu(FYY23if^aal!\!09TK&8CQTdG?Gf&,#>9KP@"B/Ak6+QFF$-L65\?7W,U\O^#r0jAp:O\WtsM*KaRJX]j^bn`2OZp?jQK:ChfK>&GK[Ft;#/Bn,No04Y+>MC(d6>4sRF+_()Ip/b[nTgTT2F[U+MY5fk!GYsg`.\903b)tJZ130Fq.?uE%l`KqjCAXHG^/+g+KbE=l".N(F6S%9f4Ylh^ck;]0E9gf.Bgjn@5WpLJ]2);=$F4rr3Zlc/1@^c.Bed^Y(/;k^Gq-'cO+:Uo75/XdW4C(ULIAreU'VjHd#^ESntn%pFH!=N>"9kUdJf^;7:M^VAi1ogWgF[usrQL>8e8jAo8*[p"^2XlNMJDC)cT>KO"u3H?X\Q/&AojAtpt\#L@WeQP@Y-+2iT)e1B7`D't]RaK8in5%&hW-$/Z\0XJ"9iCqQ&I/\[%5^IS`bUmGCXQ-S+*s\R);kWLm=b#QcF2mSE+t/Kcqb[,*3FDg3*.eN!VViFcS`2eBTgAe1qXstO][U!]3:8,l*YY>5qLDr="EH*&HXgkF9QilJH(#O?kQ]MkS4p6+Q*olDS^;o'^."?i?hn:\hE``:N\,-LnBAN3Wnh0fYGJ:9e\0fS0WQ5To="0iD:6dK&LQ$NQ7IdVZU9$f?033!b5=g1j<9XJAKC5J7hc=mUju!m&om=9KB+@fs$("h],H`rmf1(KO#.4W3sj>;*kgFa&,c@bmc%O@qgN((Nl@P^$+R*L.-nQ$5%QsaPYC]uR'B%&@rArU-c;*l]j'MkU\OH#`#9F$0/Y@M(9[Cq6hu<$Si5m?r$M^ZHAe%d>`1#;d[(PXph!!6Uc=X+HOR0@QhliiJAAHEK!+LeA0go>+:09m>IfsI17;d>od"r%%bIl3e.Z""]R`_'@:8p%Leb[@hWfBreBb\(`&nkq-53^n_AH'"Xnn`7!Rp#JL2Pp@W?SK>#=A@ul*Wg`2jf%t*>E&4oV!So?6D!;*.fGREpQd9$a?O%IWKYscAu/>2Ct#q?.p*8mtS@luaVNhHH1*\9[[%ltf&i/igq0Rm`.(Fr;=N:n0hqdZOF,(GS,U'jk[C!D*[HqZ([JVa"gOm4J+URsE)lp3j,I`h?afXW)E\"\#QUPfBE9('c;kB"d\r^6a>:j]F*gBm:4`W'`Q/"uL-+B%AF]md+%7bIET4m-.ZWq5p4Gk0u5t'q#(IOj"/M7:mPrS\X`>$B3!f^a"ni%3.Q\*rMYV57#7QC%02RO+U),Dh-5;#(5qk?O)!l/cks!A1@a(s6AKm'Bf8/k8sC"\20NU%mTbI37)^dn3!J&R=O?"\=JulD/[a.!)-+>gQ@#$LLn9+1D`>$R/q?/Wf^Lc%I9Ulpg#&Xl85tZr*-&[miARGn<`VX1OjAaNk4ok6:cCU>E"[=5;ffZP2jG7euJ:o(e9CIpm"HG(1Z`09*s:prh``]NSI-D-+B%AafXW)>o'tN_i\0*F*ZJDN0),_WpZ$S.A%KgQ/"uL-+B%AafW-*EiXp>[p%tc['pkqO]tiA-+?c91NG"VG`_Q$cY2/$"BWWB?skOYmHnTi+:YIk(&a^.*#hCD?NBV,)K9*-XXYR)WZ",!@QVn<]Ld+d3D7!M&L=/n5HqN[=pHXe9`@%Q4*Ij5@'r-X=,48;Igicj$6)-K/%Lr#8o>raP$<'3=Eh;U]ocO$7H@Kb;'*8JebFl^>HMu-))SG_)/o^V]#$ea'#$49W/)[SR,6:m6UcO`\YnNeF-B\gH5JNBbQYsdXVnH`Z/+7ikqCZ"T(N2c.s&^1E)9W/i^%Ht8,\]cQCLACtNhi>IebCFW>XX[^YiYmoq8dTp_Xha&QCi9pR>fI-QN,::do+B86b;hgM_?67n`P2&DQ2_E@PN%/lDflRS%Y-./cT8dq,L^)VChg]i=h(BHcWUZH6]n^>KO#.KO"u-upiKTQIfo/@lOgl6!_bnrEe.fmrQ:4`*tg<)a)]5[NsXM!lc&?nieqg5nnSW:?J!HSWj']%(FkA^E*mfre!='jfD;U\^qsk]>+.!ss-7L*IgOsAXf?E*iAb?Sfl>oUE;5.B?a]NH8@.eeB._G6C:T%Hr$>Gu^P.[*Y8+J?_Jc\a[eO>rZ-6G+ppfa\aK=N(E\"\cge)J7XcZi,j]6CP[j=EdjAo9MKtidT.A%KgQ/"uL-+B%AafW-3EiZ_*8oEb!KLgdOWbSm0=)ohQ1F'Al>IE%arpndTi8jP63&-p+-\l14f:jIJiIKt?@c5m8"IpBjJhu"gi7Ph)TST-W%QJnh!npqTR#tX5;qGL:gs@<+I]abuE;X\(3NO\s`1KI2&d(PB>+['2ZAOcF>_5O'*>BJ!fXOqXG?bO!q/A3#hASWFY087/ah-LqU@l15:7pfZsFI]k7FUXp<@a7/8@RaGY]1`7'oMhXQa)MJTBIgkZ242q5iK>4S+fCI_dfCG]gf?8*k_0l4W9CVsQiHNgP0;UFE/%Lr#WoK1FafXW)c,J:?DRCb!P$?&1WXTS1DRFS9^GoC3\WtrBDUiaJXlNN'X6/F-0"5#I>KO#.`FjG?i3Dr6@3EEN'j`rGPokY0?Mb^5`_,IV@]V9o>qmlMSC*E.JYXI$f8a3Q/&t0sst.`//jnI!'g^=MYB2*L:[QT+\dP>LhWJrh<#uO^#r0jAo9B>HL>:jAseT[p#EFXd8$KE\"\cge)Ilp5rS$XlNM_OB\hUFlZTR,.CaJaK:che1#t>T=!(0239^%5HNI'D9`),oWgZGLl*BQBeFDJSN<`LBRC4##BE\"\cge)I\Zmp)H\Q)SoXmDGIF;k)Rl0#n/Ie,e^Qd9LQs7P_*j!F3E1Rl36T6WHTfp7Ias+*LV('MT6(QWH2mL0``Lj>a$Sq7SQ;:b6=G/g_HhP'nechgR]Xu;Ru$7df;`a<.ibpY\<4S:LCAfBdP$?&1`&]'NWYW-F]Ai!Wga0Fm>KO"[Vf^W;`SY@CW,aE!ebVdR-+@WG>OeH&J,7LLV(LH;VUr8/(LDMG@*;d4`@]i[VCc#32at4Hd[&M$VCc^'D[!fE2L'65>N"T,o3b^g!$etQN81H/YRC4cV-EI,D]BqFl_f-r;2lJ,;BA%+ouD1-LglYJ!h?[a35-p=:&'Jp>:dbD;p-IR%d#BE\X#m1I_U6+o"/QTI]Cup(%h#ZaBcN31R<3KoR;bS8o>ra''k2*WbUTqD3*Ie8T#i`P$<'J"b#H4SK,2*ge)H1ed&`ce]=lH*kBgage)H1\*DlYqT,d"3H?X\i>I_[2a$*4)0A6nNBd\&9!BZSH-L](B)o/Q3F7E4bG0Ck-K3oNV+?CO]s:#(:f^9DNS/24`W'`3KrV&[N"Ni]`;MQZ623!&"(IiPNT(K\lCkX#'-ceaK6A@D]_/fGRY&)m4N;8Okq^$00ppIa/ap*YD/cB[k=oZRFPdQP,WpPpQafSb+kO[\^@aW8Kb^=jCdgH2Sc^kBSnPcDHOBY^SDUi\m]SW\!6Bk*eX#(APlF^$j\V-iu9'u.E/^=m]?*sJTE\"\cge+XaEiU[P>I>u%.qSZ([o1dD`#>DH/!'X*-pLV6#1-)AM4=JNb^(?CL"!3uW#NQ3r$_Jr$[^RX*0@q,pJ*$5IO=^Sd/m%`fB?m(Nrl1:/IDJQ;DV_XNqYfQ:]eg=`df@51i,g!WM:kG8T>&9\4e&RfmW:N?e.]^:[+1&+C?[M>Ws:"b6'sr?WbMRShRc]J9quf-,:-o>Wlb5H:koU"ShSs[jU*`fj.p=-F7quYO6H-b^$uYQ8IZ'Q'#9"MP;Lkk:b?YKe/TMQ5qA]0alV;fk^]Mo#2>kn)&QoAnJB"::-B?K'A[,ONj'+_I=#ElH@ca0>.&m\C*SIpsJtm`?M6o?IJDa>d_?/%G"us0b:d0G-M>JX&J16!fjNR+pI%.Q'#9"MP;Lkkqr>@`fJ%l-spDaA:qRu?Mfsq:UcpNkEO$D;*Ie;Zm!nu4ZMZ_moDgiXa:.@N#R0):Bc?I'6?i1NrHL`n[>:>#8@MZ>_<=S9^oLqMj-4:Hm!UPE%B.njooi?VYafR$;[o*o/;3]@_ge)H1[ust;XlNN?U*tnn1`s8nge)H1[ust;XV=3$'Lc_"E\"\#9AD"cb^ee"eh4S8+f?o"#NTDSNgJ8P)NUL+..GJ"00pWT8FMm'c'T&9/IpssZ(#C919"gQPYLaE4+_$V)r.+e$HJD0j8`gAX=RH&AHjI&X`Oj!gJOkcrlE[sRUPjV;i+6It>E"9uAXh"YQ_Y][*bHKG>Tj%t08hTF+%(TBUO^#r0jAp:O\Wrm;9".9-[BUpbP$?&1jAp:O\Wrm;MUIoT>A^I_XlNNbFfR*4D$RNoBlGjdCWq@ad9/.9SI(+r!q'e2/C4"Z3-aqT07k-QEH#\;i;$*NK4k1r$2j!7rrjf[J+o$(%$$o>&&.PS@ph-Z"TRZV%tO1p$9[h)_dI^G$>rWd_/KAK!dN\3Xl,%cq%'_(aD#U7+q7"Oo:We!=sfO9\"Y\:G'%U*,EWj_ip7sV[n7q*5]0R>\Wrm;8iJ&7n[mB2WS[3FCsLK%Y9^j,[p-";GYCZk[QJT2L*O0j>KO#.KO#.4#A>i8loS!Q3qH0Jkd/0JNfe-YC/RnS)rj,2h1nCd$!!`:R[tE'"8!pYQ#_4n`IVh=(@X4TERYi9A"h$@_cVhgfQnh$sAR>MfN10+EJ&*rd_bf"_.hI/DfN%/Om:JA-+'i5%o)#=&+aoAK8V/b#UOIfb#rM=6%W%\Em*`UMpsW27Xr2J,,N244M5P8Rj7%$/_d)rhfTibUi8gT]`-P?V$VDP\b=dZmC.35Jg8;&3F!/F.8Wra;A;RaZH0.+B]N37/%Lr#8o>ra;A;Ps3\#0N%2udBgo;Z<'hcf%9s;;6Y)L<7jZD^WOUS`TOp2"58^LfkeHoKn&Hc*P-btH%;h-+ao$&V&ohHK3T1FU.d1j*41CgSC:4hHH3RC!R#(pDAi:>+q\2p&Z/C10I0lZY`'O7-MJ1GgV?uUK3>eZa5(N1WdgY3BH^(UU87MC:sTmn2&O.Q:GH(F@YCm)a/3l\WtrBDC)cT>:GH(.%Lp[eOGVT8oE1<>?/mLKAP;RqK?iWKNu]78^W@E\"\#CYDp/eS+#EE\"\cge)I\.#QFnO^#r0>1:c;X%(P]l`K0GJH'n)#<6ul%Sg8)!,afF4U+YeNuP?S)cQ(BaVn:-noTApfZVk7-Z13Gam/u*Y>9^Zk6=16R/o2e'6:.raK6.F;7\NQ[/8HCP@paj'j\7P>#L'NMDpYN4?[SOjVO54[X?E<=+A^dQYDAgpoo?d6[j[$/[&Zp3&_AU*tn[ge)J7<-dP*NM](uC+;(KrqP2BE+CX80GFV;K+W(PkT,Tc$r%V'bq[Tcj$mNCDmJkJ=2E1\f3f:4)2a'UP"c'n,*`QVPXBr88_EF\Wrm;8iMHbmaj&GdOL(ZOYqSP]ZEhACN0_89"3MgTe?;s_XFk<23(iM=ZYq]pP+CNDpHnbZ`%oFL*O0j>A]aRafVR3DP\b=U+gU<\Q)9H[q[mC/%O2bWL)D?>3&_AU*p?n[ust',]]r?diiTD8^2eK[VQ2(/rtV%=2r#fU\DnZkd`GLNa.S]Z*k9&f&9ePj*muZi@C,M;#a,tpQ's@b9Ps/\H*77Aj@i6!ck?aaK6.F;7\3(FT:.%gTo_BYIX.Ugp4ukUnu1+q!<"Z[CCo*jH]n6]p=9d*n0\S2OP@5="S8$"M%OMO]ut#K61nBjAo8*[o*o/;&Hj/go<468T*'ljAt+"+Pg3S\Q.2$XV=3$'Llsd[qa/QP$9f4%WSQ1oJH?f+(##;ht_L#>Mf1sp_[grB=G,NCtZP+ea-Qt>$f_HXOeuBb<'mN`[a,7#-[Lj#b4)&)8p#^OA?#b7Vop(VX<^D5RbV'q4q0QJ\SKO!N'"M#[BsV$s0o8:;Z?dib'7K2aT1jAqP.>:GH(FAqtuk&R9l/FQd!CG,'[G.DFt[(JGK(YpQVnH)->nltl>IqJ^ip"JM'fW$FEXlNN'/$V:ZXf=j.V'q4q0QJ\SW?7qa1E_kfOBY^SDP\b=dS8\qH],i^8#n9$_jPI:lEV-#-DH-3$g4l]Zg>&D`#=DH/Q7.n*;LKooRkafS_Y\Q-P0>D\>kgo>,M=ej#5lQ4BrK9Kq$Jn-VGprnt,4)JW_UZi]=(q$/o@"Rf+h=6B474mVo+h/]T2)S%7b:^\(YfBXXYR);A;Ps(qGpeW\l)e>;[>0Q/$,l+h+J1ge(EX7:G7XEi[cU:i=fs3b5p(1c5Blf_-r=bi_6;Xqn;`:Q6)lNI3m*TOqnkb\Rcbk40X/E7g[AG7eeQ/XmE8>?+.1V'q5L:#VlE]9]'nIat1jeFICu:FtD-4Op2(`q"2;Y??;[>0Q/$,l+h+J1ge(EX7:G7XEi[b",e6pMO^#r02B6b"pX&sBHCu)f5biajk+\t]7[hOd!Qf@=[s,tVAN"T7:/V/V'^jNj!.bnc"+HZ_GX3/Mc'Lbm1+FIX>?H8m^afpHuAGLe14nt%K^s\OCb,lSBgo@]C>Et=T:mt!=rOqO_i\/G2KGiREiZ4&>:GH(-uu@7\Q)9I[q[mni`<#rY^P^3@(@"eTEpEJ-/dsgSPQLY8t]YFat4dK\>=f8bl1d_YB9qHr7B(1T0jf(%.J-L:S^8!h!4iE0KE&7D/lV>b99M15Gq_>S@R;s.Z0rKlP2Up[ocg_#u2M?0YHU-$P/ik:P:;j-H"_]ub6!mGH_^k%tL^W\(F7MKqkQ<^Yn]n;!@f!HP6@O^#46\Q+Vgr7B(1?Z%1!;A;PsQBpT4Ei[ce@br<_]DBbmoFf:oi\dNjQCV8s8;D*1dt7UAY\>`QBs.MrG?F)Rk-\\M_9C0nDJ4gDH[sZ(XKbMntq+VQX7(Ag5CpUXemX#+[qZ3eui3S>-hh=%O%#C:U'm(7cN?oc0k_E2);.m>;[G3Q/"uL-+B%A.>jjA=l`V(X%"ENEiZ(d.;kEB"`J;5$.?/<+>]>fl.K7]2b1"o>VY@V=2i]?OdQ=7/mSVkIc2G(4rFNPa%h.U/--frB!NPI=TJ-FX%["4eQhQF)c"]`YWSnqJ@&1YhC8VjaY[[r>J9Pm+./EJJ5Tf)?le'\iM6:#V3XUYh2;68HZ8Wd.>jiJSK0o4jT4S=_1iQ5;+O%;\:)OBXR_\WtrBDC)cT>:GH(F@YCmEiZ)"&ot%MdpBM@V:#D/3UkbR*Iq@'l%OX%=Z!E,g*nQWU_dbnP*uW4R4S-gk8siKkrJ8.QbNks`hpQ755tVMMPn;$9E!e*Dg_kp4L&u<9Z6*Z1pp_u^!Ra:eL;_PE7g[AHP+W^kshfO#5a^WLV`b-&M,LumI!h$'`utc)sfbD/[VXAK6`FU8*U#?esBB6'Lc/oKWP#aq3h$_nP`S.iP@NI?.\Z1iA"TUek8njRN(;=SMdQ56&Dc+I\f*I4*6:1Ohk>;,uUA^.i%=5Je[Y$`M=^Ojkc$oi7h,2b4,)ioiQh'rS7HbUB`gj9Ajo@rHDZd1cTnAj_-e'C2[rq+F@i&P7leqLa2cfVcr>Pp3O>I`u0(B5n>^Z$QLjVaCgM@oD0?Y."6Nu%0[PJn?0^\Y8_UccA^Ii#E0jQA_7r5oNhIk^3-*qYH-?e&-as/T>G*&8-n3i/,X$OP#:X'A;-L:!u\Pu#JGp;]"5M3*%;Zpp8"pn?fAI_Oo2cJuD/HA/^q/_Au:/9An?696`p_*`\>Y8%\AODg5BhI3b[+meM9dWE4%^+2R*BIu+7fCEiL?W;Nl>"3*pr5]:lq1^a$g>s3)':@sSr=_0DIg8+7niK*S-+B%AafXW).t1LAj#uHL'iL!P?hl2K/TNAPeS!IMs/MA?LQ$nJ:8t)/6GiraP$?&1jAr=G-g[C5O^$@\;7T\d@rrge)Il&`"oo"#b(G%h)7ZK'UF9M%$mX3=U_?B#3ut%(J%>l.hd;(`l>&S!10/pr_JY!Ij\4hh&n_oQ>+mkRRCCK+A(<`4k*Wi#f`04`GIO)RR3/9edM>4I#s!VP]?`(#5=L#05%r!c]0&a[?iMC;&/%+!(N+WsbgYJj_@$;OKB"m?!:H5U)d"Ba\iBIo2LcAuS\4eUR"JiPI3\4u(4ui^/5Ze9i>,cR^P/"^MfFY.`f.n:MJ)(T=:DX!YHgAgg*Pk?RjFlpr6KfR/KpmuQM@NX?#5M3#%Ye0ILBrMLR&I#`Ih=1OSco`id_I%*Ih#b>(dSIUj$RQ.H=V`ACU.nZPGd4GTQl5#jE%1A_o1iJG7k772fqml8(9$$gp'&OIranc5Y87r6u!P6ip-2\3'N:P1mEr!nfmafRT)\WtrBDT2AeCYV?r-+@(Fl@,)T.Nu9a>KO#.raP$?&1G^F^s8*Z5F!%qm6>j3RW0:H-X]?CArh:Q'bBKK6_Lt%cjAqP.>BPp0^%CG>E-4"DK#,ja$Ef=^K7VDY\2p'bCBg6fl<#B`kHli>,=s*iDGJH,_)hsBol_<[)bkmWd3Q4[Q3'EtP2PV=b#nOeX[gR45lXq)p]81]3.CQ.TNa"/7*mEmHK22Wi8$OD_:]Lb^f+&-!rU@PIf[_B"ePSd00gkL#/&@?[u=Pd&%mC/\RY/JHp;9(/'1SHr)B:is1.6sKtfZ\@DR2#?M&^u4O4J[UkM&5D[WVi$F7hP-h4j&G6cDGGXB.2\Ea7?Ba^PU]_YPB/qr5/pgs>p>5/qFqg<)QRH9%>:HX#Ir5?h*[6eI8hQ9oSD&.9qcch"p=ghFW$$HZFpP0M*_d<>=KoNlWE$5G+`h::HQHiT]@:<[Bq9SL]EL5i?4O6_00D^gm`tf/JMjFCK]On/)\`*FVAc@f"7ib+::1b;ck]uH[-Z-$_Of=C8pV0kQBP'pq7-Y_Zol7=a4$N%!4eBM8o>raP$9)M/%Lr#8o>raP$?&1jAmcU[ust;XlNN'/%Lr#8o>raP$?&1jAp<%js.A#3k'G*opt%#bs]@L'Y&68@Dp"XgIWUn0&03F3k#a[dRY:H]cI:=DT'B1gF7+#AfP'iSH=FRZ[hF!1bfNd%7e7"OYga$AQqhJpjVBK\T021Wju,F^;7O21jJW0@pmp&e)3l+r%cq'l,V`Ea=Rs_a2#T"GR1)X8\d>3?043a^1I'hi@L>7iOcli>J>#a"ZcDA-$V+^F2!t_Z1+-EQ3T!hp%,Ta718:$HnW6EiPUkN_LoU=H.VVSKf/P'p_V-:/_n$)h1fJplQGY[qrB\qW,ETIja]$79sbP*Q:ORO%J=M8J.:!Hl2kIdd>lTK(C)FJC&@:>e6]=EWF#N.D\b9Q>l-clH+FofW#S(HOc]I68OMork3IH-mq,tla!VhO_frs&R3N.8*O$\d\H(@F4oi>D0!B&,JFjUK(:GZ3(al#@]2O'DN<@CsKCn7gm2J`M@CQA)e%Ma8`]2pl4F[Hl^%r,W#.O-=`nSa5>2QQ/2=3(Q#BI5f^I9^)CNQKVA-$Obnhj:(h^VX6Wd-+E.FjAp:O\WtrBDC)cT>KO#.#4K/;+hi:N"R_"A/S)5Fk+7KT);Gg)Qp!WHJInlcb&?#?c]Mn'EUJpoq,,73"3kH7O1ULu33jllq>VZL&iL$Pr^G-Gnec9'0mlR_mD((^[=T&ecFWs=GNYKUmm1!FfA[`$iPO7XB-7lt^+23*ja3D6C;/*J#[b&c/)`5gcM]q>nS^Sil[;Ot=>+t6k>?_InI\V(J"`u8dR?LO;h*5%e;%c16o2^?kc&S_*Fmn&+Gc4,#9K]mta-kM_6V4Hg"kfW\b5B;tUs$GuCZYOq-u\;LkJp'$MNS%iCj7B,@\^K`2eYU$8tdu]bRI8M[PI$g3KNucM;5+8ga\_`!RG];%ZV#mK"e9_E-s&H0K9e$'EuOqIDM-[CcONj!ur8X"t)[^abt[:CO'q'Rf3M<)X7>!*Yr'-&$]88c85>(+>NUnRt;g(nZpa]*!.4jR1>A.mQTCMMV>\Loe"t+?ekP*IGIMJ7YSN+eU@ckVb^Q3_W_)Fn_MH>cd/L;O7AG$Gmh671Q^cNr"[Dm2h&LLX3?4pRPeEBlXe^U>[>c("?k0I1/?@m%X+')?0SrbJt66>q$O%p+%1d8W5%b\BD+eK'GHcq0uAW?-mhHsOJbk#fOYf`2GYK;bu+Z<.VNR'40K&MOpOB]i/7(4;JP$?b%ge)H1[ust;XlNN'X#5ml8o>sC"6?E;]VVLo7.://ADk>&X)R#=lVU]r/]tfA6^=r8M5Ea%u[^TNa"lb^qK1p`T'%CqcmZ.Y7VsS]`#J!oaTVZN?_R,/uW-cU.rrX,SbKmdgA\SMM.tZFP\0E+[C2h/W6P(RC.]@_T/DB&q-qY?KMJ;b+T%NQWpqFQ&S%q9%hgrT)Ng$b,oa+HQ%*b&1\IfjCh7s((siMdO9=R^*=2Kr]tqb07C3kIoc]n.N>b4:a#oj,ga8?Y@E)*PHtdaS@;)b3L!B80d.H_^R!pi>*3#+5!LEZ!]\KMcj`H/-]1AnHRs>pYtQ"LT!-8f$o1^Rg\Y/*bkkZbS_Y].dk03EfghR17Y^mI1m"NB<^_L?Aj_Wr;FV11M6bY)pGcX63)>en>YV1lYe*@0U\_L'np^#K>1DoRkD[?l=@Z%unB=6JH\6F;t/cbHLMfi#uqhs25jn:p$K;u_[F;XFFXaICo<.%dl2^.!r%oA%3KkEE$65I51EaK=N(?%q(6)KI@=Q/"uL-+B%AafXW)EiX>=ge)J7a.+i_r@/p$7Yj_L,YlEL7EMjaXY#.i*HUV,\hXe4mSdTbXhXb6-"(:#c6#bgM5U;HnnTYI!kuNXc!ke3b1%>0nZf(Db.j17;JVhGnLr?#1'oN0@fH`Geooiq#0DGt=1aD#>-gggHkB6b:Hn"PI4N?[e_jAl[Mk;'cpPtk+n5h/':WQ`/k?]OH`LiQ@B03F/UG[_fiVSiQ.^g0ekki4U$Z!S2rTY6F$>O9]DIEi3DrDK3GkV@?u/j#.6O!03;C&-5C^,Q8o>raP$?&1<]p3>PUuE!946&T0pMdc^A%p%P:fW0;p3XdHcW>M6uI+&44m#ge)H16ri;K63n`f&9T/*g(8-Z2AH7\9H%l`QaV;N?@1j&nFE(;Jlgg_!T)VG'C[4Qah(SrQW/RdiE#unji<["/8n^j*g@9%$&+(32+e<8LZ0Pf;O!J;DUh(bop+%/p$,TNkkYX0l[VsJ2AW=E#"*8S[o/H5M;5+bFR(HV>O0hAlI#8>m+)3:H>P34Y766AWdEQZhdFc@;IJ86Dh7q9o#Ul#=g'r!iD?^hR8nrF76u#B!i@_O+?g_L;s>]dP_lRdQ&(%!&4-XG6jJfG`'?/E=[=5f'9LE<.[Ad]DPc.7O]r,8KFgIpjAp:O7B&4d.j9QW63rY-Wqia62q[0TBu'CBWDip=4aJ)%7kHk>DWt)aX$2cq!N[iXQXNLM5%Wld]\aXJ9)@WoI'^/u_oC"ZJc])X4cCl6Wq)A@IGmdXW"VfpN8)>Dl!&r#0ahZeZBcBdRhd>!BXFn/7K_,`LeVib:p&Qj3O[eHl.EkOGr-;5TY222UUpHJPJ6<4u6aeP#Sh&G8Yk&tn71`MA71P2&ZIV;+"l>BS5d>P1n-m^EP'?E0@WV0[!7HHE;MH5(CM&i&`E,;:P?Z/2Pcg)&8dHSn&0ce=Al`q&\Wq2"7rBW+&4-X76[0]uJ=[%p2iEiW2t>$$X4eZ'e_5F5S3hl;[4QV`;a([eU4DUQPCh@qr9!-I^TMVQPbGX&@+lV9.lmdhTDneRMdS`nI>qKX=3#/RMQq[&SCe)>m4+Z)2;^(PJTe*c.ni6@($?U*1ncV;pW;)r7WjaV9O^bLA\HqW0BG@Q"U=opfU@P-s?b78];W8_1j&iucJDi/jRP(E`F1oq[ld[QNkpd9:9g9/.2e)Jdl,3k*5^W9$/-d*&iHSI'#AOBo8!X0-'6V)h<\UfK?Y/a$hgd'i5rW?mO0X3$:r[-FBfC>SD_kZ1r>`K.RQXlNN?U+#bEC3_If]OCba67sFjW_?oD2LcdY2IFGDchL\OA!Zs.b!%?c(@LDeU0)<'%1kF]5"lW?-Q8?Fda:@X_PFNc6Kfu2m'Z)X.!+-eNUH7K30Z+IeM5<_8@md\:j3H'LfRY;p,jF;9NH%?Yh-O>JB1hAXBU3I)WrS?ZZ%SbMTFn^UJU.jW?&RB_eRVo0a&`VWD#7hmRoFol)DO0/!9>q4?^*>lNRM+04T%Q604Xkjfr+B/38cStEUlbjohu0.d-7q5*1%bHG1Mg[].'D_/YGq7Yl#/l,\2++)<(8'@MUJ$qIXnQZ"Pnq,sl$icPJ0=e`3fkbrQZGlC7j`QnK/Y#gY[;Zqk]PZ?aZJDh(nug.gbBkl1><]9=kjjkt'?f96cQ3lt-Fm][A\ZChb9>&;QQAfglKPVp[2cZGYai(jE]Its@l\0^CZ1TNQ4'":Q:mOeQ7FTdQE-<;QYVmqMr/QmEms$Wgp2mKN*=4Pitahm3-r+Z/=fH8\WtrB;&!RD7;aE\P$?&1jAp:O\WtrBDP\b=dX:+VE\"\cge)H1[ustO=)PuqYU>WSn>iI9#p+QV;,GH[iDCEZiZ$bs>g"rKjB<'sr)D_X9?=cb:OBU*B+Co60>&rZ8Duq9isQW#*e+TV_(GYRO?QYYV,aM>_AKlk8;Y5I!'0>&l.(Q(iA@jAp:O\WtrBDC)cT>KO#.raP$?&1jAp:O\Q/$7`Q>okKu8sio+4Rc><)Eh0ocg+$dfV'_cmG>8.W?-T6!Xr;8'^67cQ;If0)O$3.:?tp3dOIGRUK5[ESR`7;4;n/%Lr#8o>raP$?&1jAp:O\Wrm;bsuXt[ust;XlNN'/%Lr#8o>ra;A>u'aK=N(E\"\cge)H1[usrQYhk8`0hr83"oNru^X^G-5OT'/1U*e^3B@njacF.I%^"Yk<-T,ULFul@XS1E]u+4IH-#/2mqs2aQR3e'HrG*T_=Fg:HjfO0oqn]:8uj/FP$?&1jAp:O\WtrBDC)cT>:GHXI,n=K/%Lr#8o>raP$?&1jAp:O78]M7ge)H1[ust;XlNN'/%J[IDT-Q_nNQ'1Jtn?1]P-dYCgOj,\`G=W(5safXW)E\"\cge)H1[usrEMUHn5KO#.GV-L,8;m!ac82fC3W#OTE@Shto.e<raP$?&1jAp:O\WtrB;3^2f[ust;XlNN'/%Lr#8o>raP$9AmdX:+VE\"\cge)H1[ust;XVu./^81ZZ5+fB>K"r`Q+0[k^04-md3D8?.MiUKE]D921m_EHg+7G`/n--b>3@?h7HZBMO?^t*bNR)D1bl6mTlhO*g?OD2DEYj5E@W8Ue@^U"T?SB0E92Uq>7rBW^P$?&1jAp:O\WtrBDC)bi'W(WHXlNN'/%Lr#8o>raP$?&1jAq/41`s8nge)H1[ust;XlNN'Ws7AE@@(/p)0HtdGB#+L/Y%]OP_W0L.UF\QAG?AfbCp0cBW7gcI,SjT?=/Uo>-+lB.>lQRe8iUOXlNN'/%Lr#8o>raP$>%HKr@Y2l8mSdP$?&1'W%!lb8ht>P$?&1jAp:O\WtrBDRJ14U+T`OlX7J#DC)biPYOt*GF[G\DC)cT>KO#.1/ekGqJ,'OLlD](k9NrpeIfb`Tk%5O2"(7@j@d1NKqj$J0m/,pJ,#eWo\.8[3VPnC\`mDho11)ekI:o3O?JHA)5rj[pm!JH+3>GobEfo\Wp5GT>oZD!l\5*"j1cB_-X+R>>_B0Ku_Q0\:mQ:]nu_gMd+T)3.^$(*^cd`(:k6GMHf@D._j/"(>\8"/rdDA/X"*Q9aTY@0.nDcjWuFqXdB[/HJMJW>C!%POfTRh&BUrkX[4;60":D77A\`,6FT"_H:$E0.ofkm`@[Sde#gp*:pR`LcrK`_,G"JD@.[ga0Fm>KO#.JrhE;-iL0YZ@':mSeUP*ub^N3K[AYU'Z2,(grfta#q\EDJr6WF/'7:+sKqkK1CU%396?!ae_d`Cp&$>+hSri((CF^;bZg[!ZMW%'W+!`#mi<.Y<]rp2u)3DSI6K2ds`@N/9o*9@!a^]R"eP_@;MX&g1pd*?\;p53rL\:5I't?.UmBOu4<`V<+[>-E+[>_EOa'3B9ZSD)DW,=W^Pbugb@2kArg[3l?[I"r/)OXaEVt;A+X&!S%7u%'L,?o;(_`YNM@p),#m<]$V3D`$Uk4_WBgFW`9*cr?5X8Hd#pPiM5aKiIpT9-9gTM5"n!Dr(rTR`SGFQ/#n)KPV:NP^E=m!qrch$:jRB0hc-pPkN:J%62/%>/Zb(Wpq!II)fr7Gn$nlpD#^8tP.9nI9%Mjp"/XSh;Ua*,L5HV'F:lp'e0=]s<&^V3URRn3&B>@-0fA9.F%VAJkOmVJcgr)ZT:I3mrUI]H\ps*j-4D4k65\8mSfMZ,Pi1f=7hOGIkhQ+#+AI18-'R3*,[odjtQF4s5jBe+%sXgFA%dT5'o>@"5SlOIY[VJ*$(CmVTA8R#o0U91ef[aJ418m?#1A'n=A4F(ZZ-VrU.N8%_;U1HH-q=6;H5!LKWPQTgkb9aVk/M"T->98'+>Bs!@Wb-["b>1cSem-SKNH_YNMb-QJ/qd?WAp@_^;H^qfSV@J-AL$nOtlGr2Hen=)I?J4D=ICM4a&\02XG[K!Vb1%Und8,^j]Ipe0'aMMBB"!,!%9Kt^O0`jDkA_OoRiF>7c`c]Hrp98]2VB$0Cf[.qQ%eonYIl@^#3NmJ/@%V8LZ(6FX8@2VGd5/:HVMqg=ndIsB(hKXot)r7Q/7crSlcQg.)sb)9p`cY6b:rdr[$_pd3aF3$`'#MNod>A:/:aD.fXiQ>3^EE3S04H?jRh`u%$1fj>8hKHccj%Sk9/afIQd!%gcZH"lV]pgR$j[]2qS5*8tAYIgm_e&M9DWO`]pr"f%T@H]eH>M3MUm+tI&^@J%I5#/#XL9f1DCTAQ4G@DHc%/(K"s"B].KI8m%)>UAlHmiQ$_?[KFq68b3RXOV8h"!_PTp:]=c*CC,M%8=`\LsMDg,CDMH-8^gWr5H`']OMsBg+mG+3pD&"eAh1W\+)qYO6l&I3'tG5M,#shXam[;\,65;>/>megE,aHsZ6jR5WYlk0n#<[Mnrulo[@.kChVNrrg'!<.+jiB_=kZ]G#EgUJDp%UO3F=KlZ*En#)*A@t/C\4!BC:f1KDgJ\R"AA.A-E`dIrek!+9Xmk=Y7aX9)eZDq7[Got7ko#MV??WK@4HBVq5-TAO4:?gN)O)'22aW]&=<\"R&6(?,%=k/]^?PB[7>c_%Q]l.AD73"hpgsSo?h*+J?DsMI@&%Gock^^lGVJ3*DbV,JL[g[,MXnK!bEf7B[s/Pc7Br_\WX".nb4YL)FBrabO<`boADWrL[:0[,=0fgGbeW@5fIqqZdoLg=N"/Bq208t#II2Q1II"(O4,u'V">Kt=R9?_JFbnk=`^?!SkQ[G3DB!?baE[o-hQ06VKoD\EIdW]<;[lp5PjRR(4hq"@mj_S>uC/uPuR$I\pq9>)!k8UeW7-@4o-[ClYmI"oYq/5UO1r#V+qlTFoP1Nd\!;UC)h^pk.I]klAjN^n/_C&,X%_mJXc6op[Q@*=n<]+s5XRgQ\q_0hkZfUWG\FR4oo1,D6XC3/(HS!A*;rWI=^*EXG8iA&hJ=:?$q'UquY4_RTE^RsH&Eh[:Aarq!b]Zl1+"G35.6]1P8*\N`e1/GTrF51huQN0A2aR1:%^6.bUlUj=DM0Q,>7N>b>Nh"+`8KrbT\CF3s&7qPVbO5K?Qk\==DB>rgm,_jPR=IQb:hbK;0(.K=,b:Pa>ZLf+C=i8jU]Me;Ok67>>/`r2eFQ^3U=ZsAL+,6<_jHJZ2JR:'5_b>`(d`\+lT!'+lI=h3SV8%0pDR,(BQYaWZQTT:@hoPZTQ@@ubn%uk;b*Q%;^7+;Ml`IOZ[aJ4VX0&a/d8nsn>A5TqS[KHbc7@r.8KBnVPjLj(TgYOdU1F,4c9(3Nmn;jHc:+9_JQpkQbPIHBBp%-88bb;epj?C+@,`e.,b+8-Hp6h:Z2)7PBSMRh$o9GTeUao*a[9^o&5,3RJan)*B4O9gtn$1Y.LI>/fbPG&WqW,=OLK:"M]SLUk/1Xqn),Yk]F!YUh(!Gqf\%JnTqOM4ld,dc#BI4e0PcS;ccK0bPV`U4`AIW_QAeCHujHbjn/F0tqcX7NN7o#gj.rpn^js6A6IBR2Ce&$C,oNBt)931CIaeUH-@?-s2ieo+(j#iV&X^%TfXiR,)P2oc6hrB?B2o$lt6Bi7:Zl!"nu0;`-%*"r$\h9AL/k4Wd3YV4l)@9Oa"/p:0qUZS1H2*Pm_6Qu.OcU5IhG7'&l(')"hApX>b6D9&=aDtd7qS'Y[u!6'H10#r14L1_:<4[CYfY=7*9N@XFNH*@]"I\+lcJP.=7a_)a2tqeDY]W^hg0"YIBjTuLadg!b\uT>mtY6[XY`oS0%'Dhm[V%^j?5,VSB&`iV+1(BR;ZUJIDtn9q#U1b>7G9sD5FA?:i3&2[$A)JA5U)V6.*>YR,/(F9HH'o'EnugjAKQbII5![k-Qo)h)97rVW2c7F)D0AL6Zt5C5<'T$']G2U8Zi*tb"VrWc%rj0"QSls-?MA`_3?T1n`pT3O18'h_bBQBE]8*@:$AJ+_,3ns5Ms:mTYp2LVdk&FK3`b@E-/a"g*0ST@?_Q5gN_B?XUDI??NT^Lf(L%cipgPcSWR.LXKeRlP?RSBCs0F="\nq+lI(3En,Fam?(;Uob:,fc->)kLmti2`iJuRp12CjTV.>P-W2TRHJh?MWOMr?dG%PW+9s)1XFfVI[#&`XA@iS[oKj\D3aEDZXPquAeFjSm2U7OeL\*-V(91]^W;JM;fYNA&Z[aJ418mD7a[aJ3l0;Ye*[$A('BWK>18m?![D=qu(8m;>2PdVJkK!m^]iSlWW'jk.Y-iT?;!W6T.RNjF*4s0P^F]iB5oqBEE0ZBQmae#+17frjM&>b[T>ba)jZAC%.TEhE8X,?p:!jN]d`dY#(VTC\\gO_rE;p^JNj[N$l5U1@Y@2N,YK5-fP,J9_@j>FALRP`e82jBS$mpd7b^Vb+5o)GH.QAci*f['ET[rR=%5O/+01e2fQo/X2KlX)*oY.PVKe"'u+Moar>8a2k@SJP-5dHmKQRX/#Ks$`mdAKYWoSEFs2an)+[Rp5GUanfO4k9*>bjq>sEp6E=RAB8iGYfr1j/^:Ph29a3UII\C&q5kXDg#Tf!F"57SjgPjmfjjhn7fQ[brtAsMSiHfA,U:PM+m&\)Ym,=mk%8?M8f7(#/0QjH!%@rn>I9,21V6'_a>7G;I.qu&ddoP1;5IAt7dT5'/+LK[\[^oAng9OrZm-EWN[VHV^q_R3pX1GY1[u%ii]rb=eALhWJYH$ohg?mVLYHQp-bHq4^B90Y'\"0XkG#h@j8%BO@BRe,Dp]9%i3S-M:hBMga4fDom*$B)UUogeqXgUZ&Br_?0XU^W)dT-@AXbO45Q*f)MBIdqB+LK[mdT5'/+LK[\[^o@d$Mjn8h`5V_453ddF5q,@j'u9Go>aB3Op=X0$@9H/jX0`P=NS?BpY4@'WMeaumbRhoXf(/Zp3bapg!X]OgcR(gqQ$X!)>&-#L%OG(7*8$#R(%g?ML96X+7T!,XThXfeJ%G/s#HG;l4t[RFC@l=su_D$?T7L:#K-J'79KHMuZIfB/LABN8+Dr`raY:%V1`REr($b>GE`T"OQA^C*\A%SY'Q1[/M73(/1?&,m(!/EjE%;Dl:51e4`LItcVelE$L+"c43!3K596+^(;mb):[K6F/VJ*"RD$9n>9[Qm.g'Rf[R%g^;ZkWQ@0L]1TBe'/`@#DB2dT->J^_CWCUoaUsJ192e86Z)p!)p8TOL>2j!2aG1+`.A_!)1d@6eVkI!19L_L9qZq!&-iG%;@S!.ZNPC.MP0!!#s)eW@3@!!&m0X!)<`!!#^?<^YRJ!!&C\XbO1t!!"]A>7G9s!!$Da[MmRp!!'eKD)J,k!!%Nug1j/_!<<*u[+18H!WW4tBWE:n"TSNrd8iWg$31'nU900W'`\4f79^48.f]QWMRFGO6+^(;mb):[K6F/VJ*"RD$9n>9[Qm.g'Rf[R%g^;ZkWQ@0L]1TBe'/`@#DB2dT->J^_CWCUoaUsJ192e86Z)p!)p8TOL>2j!2aG1+`.A_!)1d@6eVkI!19L_L9qZq!&-iG%;@S!.ZNPC.MP0!!#s)eW@3@!!&m0X!)<`!!#^?<^YRJ!!&C\XbO1t!!"]A>7G9s!!$Da[MmRp!!'eKD)J,k!!%Nug1j/_!<<*u[+18H!WW4tBWE:n"TSNrd8iWg$31'nU900W'`\4f79^48.f]QWMRFGO6+^(;mb):[K6F/VJ*"RD$9n>9[Qm.g'Rf[R%g^;ZkWQ@0L]1TBe'/`@#DB2dT->J^_CWCUoaUsJ192e86Z)p!)p8TOL>2j!2aG1+`.A_!)1d@6eVkI!19L_L9qZq!&-iG%;@S!.ZNPC.MP0!!#s)eW@3@!!&m0X!)<`!!#^?<^YRJ!!&C\XbO1t!!"]A>7G9s!!$Da[MmRp!!'eKD)J,k!!%Nug1j/_!<<*u[+18H!WW4tBWE:n"TSNrd8iWg$31'nU900W'`\4f79^48.f]QWMRFGO6+^(;mb):[K6F/VJ*"RD$9n>9[Qm.g'Rf[R%g^;ZkWQ@0L]1TBe'/`@#DB2dT->J^_CWCUoaUsJ192e86Z)p!)p8Tck3Y8R1#@IEU)&1A__;&D9L:,!!%!)4L_tsr22j!2aG1TqcG)e#,toj0m][?&#ch!.\Q,D=scH?b(.LgbQ7%[K6F/enM0.D$9n>9[Qm.8'k<2S2dp8[+293]QkBU>e[iZ!!(replgm,X\P0Tk:\ArPI>dPH!\%fr,'h^g'Rf[Y#a7K>6+^(qkpRihcBb`5#O:QX&J16/0f"SVT)nc^MOj,!<<+[M)U`*'m6M2J+;MR2JK4iQ04K8QFE3V7q+kjBe'/`\2n:RD$9n>m%:_TD6&$,2p1=,8'>L]Fab3@c^nI_\Jf,+SmTK?!!(sP4*Tg'A!=@DF^$ek^Fnt+8WUe\ng)&GXgAfC!*j*BQ*p_o!;92m?.i9A9>4X+S)k%>T8U,Z!!$K.Xe&[%<*ike?'67cOlT)c,mg?KZkWQ@>TL2:[K6F/p.nm%gZh3&%>Ouu=?BIdp'!!$(ICR\^T_j0shYq!*n?+>Fi9CIMqVPpt(l&`#J/K`XBq[jf\0jP4V;(,Yo%(8XMo*[K6F/N\t[MXT/?OrR4eK[ai?;\pUu7[="iVs7BAFj6f]jI2UqSoZ/d_S:>JqVpF3!W,^hpO-akDq$37+nsj,*L1(pR@2N(^G[ME`T"DLkmp:H'2Q,_ItH:AJg/1(kuH9=3Jrkg<))X__;M:0T>skCU^De.6f9UQS[_.jW!;Gb2])brae4kg$`(`'5kI0):q%C%El9\VI,90h=S]u>kb>3C>?L]-U$dTL1(pR@2O`-*;=IO1LIbQ)fBup14Jo92_6RA+?BSnWR!p6k2Ynt-mm+=%g;&]oo`7a`M9Ouu=?,[hHR35`niA]aql/_@h4&cnh%uZN5U*pErK],hlWDE.-qq/PY]FfPADjQi!#+-P;S?S;@]npcqX^&M+s=$@#YL/!K[#j"msd<'QTHj?NbiacMTq!OfuC#BlEA>&UJ>O5_LKQ-VZW;tBsMfe))7s&8JqPi"%L.0!SY_nQEBL9EMi?6eB3iVWd>/!K[#j"msd<'QTHj?NbiacM/lgZ&,54%idl.prn3D1HJCrdgW:Xk*0db"!@^/+RD0&!T^545k"t(FWpWh,gm!-V6em*&$G4^pZ6&_!]ZP6eVka1:I:m`VBa^T=3J#8n@TfZ2-=\5Amdm*basH!!&%]5/ZjF'`D48ISnY`J'e$+D$9n>CdM@.doHGK^a?G=L/oqGlIiR:Is!sV!!&%]:$2AeRsI=?l\hc$Tre:pJ/-dQ6eVkI!*Gqsp8i2s-N,fumr/7,?l/0NWkV,"CqFqPNj\uhJ8:IZ3^DC+!!'0)g1khJZ82L]JE(G"c#Kl +endstream +endobj +19 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 17 0 R +>> +endobj +20 0 obj +<< /Length 2198 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +GasaqhfG8H&:X@\_=XSG9W[ehd"fgj9p=gIYEtaRg>#s$!?9]8"iPs3a7n3C!YS[FSbd5f;0d'6X&fLnX%Ee>?1ogDN@;Y!oIRLjlG,)h\r6Xsc]/?G^GPFo+%r"Q:)ED\CGolLT+1i\U@q\:mF1k,i`haAugA_2%pSi,6.mEj*qn$+WhH^@e$mR@T1Y^X-S?@pJVB=HT`-u)G$L@/E`?VG:.4>U.dn[2<^F/lcabhQRU[?/GRL/D3tm0$fi%kA-ZeX=!f0?[So.O>OdD@rf=bF(7lM^TYlQ9p49-7V$M*6*6)YJ80Mqj=45P>EV?-Ds^ikuPj`[?mK1M`thNI#>0[/0:Xe#92;#oM(Mc^th\lM$amTdLXW]ofBTL.Y;Y0*N")*6"8>7MiXcodIcWSC/"#QK(7?Zio:>-oAE8Lq%S/KsSjun^j]+h(&hK_X"'ALYpqI%ioR]Y27[>Rc/:U&!3#%,-FVI+2]OD`l4))$htGM\sL&_KR/X11#ITb,lG-r(1ag[oRu5[m8aIX=6S=*QI]WV(UJCZS:9p(YKo)3L!%=-![L7GP^QLd`2"fs[4fT+S@?V([UL;kQQ+8C`bE[if^&TR.L_o*D_ieUA3T7hhm1mPcs&g*]Anq?)$atk2C3bhZ-O1U9+N!@=#$P]?cE2q(K3!DiSXE*`SiN#-c:^9J3_P8_p&!%Hp,GI(6]76CN]5eThtj8F]i%hqNNnBOO]*!]1b=.R;6G5q?i^*6:mWlLXFj%G6U;rp,E<24U32X'!9HB^L)ujb_D%dCTgA$\4=s2uH$Ai-YV%1Jp;clc)odmuE;Hk`=%U,pfHOT["LXiS*jIGYM?u:$JOVn.Da_$KVWVr2^q7X'ok5HuT'%f1firJ[a@j6!e$0di+m5r^ZtjF),9G!f=UFo.kk64-0\0oGi+3=b<$YTq/*J&/0^ufT1L6'&a)__(-Y.-u`f'6j+D$Si7@fZ;CE.pe,,ER=-n352T[^'(oMI[]dEjiEq([07;I=B9$)qjPMS;\Be"H9.&rh/`KOt/W@8bT"&`Ole039iU]-L_2T29oL/=L-HG8QI)USGm(/2O.[0A(?TJa5c3I%0"@3UoDuR8fG(UG2sVL#:K'P1FT*"LuMW9D2!hGl?WG0Gs).U&1OA\;K#,>5m;T[8H;5p5BA0m2)*8N(]fp)U(@,P0\GaC#o@JBPVLDUl;Ae8QrT]=(AJ"Oi<>QPcmkP;o:K@moW:jNb,8SpL]FLT8?:b$CqmcORcE2htdF"WjCr:Y42&fHo?Feq6M+fRi/\9'tme?-4,#aG'r`:j9XI6YK0*H_C(=cR)tFX1)-=HGEH-DbQ!(LN_DrLa(H'?V3\XR\!>ZC"pep/c2ljf.T);NjMk]EZC.mOakk+B=NXMg^:_XgTfZ^lA"l +endstream +endobj +21 0 obj +<> +stream +Gb"-6l&Si`rr)j5I/eifUX+S]"!?;'-6sjk`0fi9W'/2gU7q!fbH`\BZ7O2)Y-3T6F5/Adl@-/mbH`\BZ7P>rlEs=Z7O2)/Bb?#8n;iTQbAYq=dEW%Q=X3aaPNprO\Jig/m^;_=/iojc.a4;#g*D6K!M,0AQcoEC!fc/aKho%7@nu[C\UQSo3CR%nP;53K0[VQr_#1h782::F^+Q?Q=Z>Hf/Aq+%@''U=Ouu.]iA4g>?R7lnLr6l/&+ODmj7*nu]B]u$=g6:L1"3]QDZ7O2)/Bb?#8n;iTQbAYq=dEW%Q=X3aaPNqu.bS+H?U++:O_b1"dZQ3%`am8b#W``C,j93oTqI$(#;"%:*r8Sfe2=N_lZSER+3PS2ihE!eGV8?neE>h`G(9dJQ@UB7[Xpu$eq7S1Or[ZuGL0`!5*8Zo_r6d'#`"#Ak"*Am*^ScrSOjf>t8!gI7]`/8NmqMfp`5\Zk6pT8S3Q!?))E#+>hO$5s@WO%N*3]p69rA_e'kg;^G"Tp"R\b8Rgp\$EKK/?9l`g;^G"Tp"R\b8Rgp[jip,i]=htW0W=ULZCrAq(#&qe=Id@Db\U@THAd"$i246X.V*tb8MGu68[1LZ7P"3UOWbQ$b>rsKlnBeFY2WZKC;Q3%G0Z=%Zp%P6G!"\Z9>_#3I%Ycp.n(=b6oAQ;m;,d=L6%i/7.^nPS;L1DeWAC`^Mk^X0,J/&7s7i#,_K>lADYcK;`Q<%S5U9+anCC4HHFi(HL'NeU]%P4[&K*Bd/0P=T*/?VQsjjeX\\>CX3C,1;Qm"25gGdf.+QDq-CDqAmog*&8'sAV+[jE?qGJJ/?V_q<94-non?UK?r9pF6?U!i<=+&)YcM:MKKM3TYdq:Hk'@Yuj+%V!*!6-0%C2WR(W_+qeHlVaZ[c!KK!$!!Rh\pPY]B=qY^B(nTrKi@\foFf^ne!-*kW@u`TD@rR(IXM\e2SR>n<7PUqktA%:E=]"tZcg$ma/N'f?G.l./>.U8eMNY=aF9>70;j/PUb@Q;sj!_Whh;\`Ff=SX7k`JgFW"$!Whuj37@1&#]utk,eMIgknPd5r1iS6Gl+t1UJ+)m&c$:A'4lnciJ'VJDlD\.7GHRjHD@Io_'5R2DHgGiS#@W,grFk[&ce!ehg*H3t@r8Sa7hTF\i:qTe=RoMB1>gW#6s"j4@0]T4_i1Ff2J`kTAJ`kWDJ/?coJ`jd=JJZpL^u)jc#@:Ze"J/nc!ACUV#;s1AsAD*p?m?%'TQ9n;j,F'U/:o6aWq\s^:+&PUr@"ja;H"e*47)pWuu)tJML?J&'b9'5q*#ocVdX?R^BS6gYAE'OYM^tUR$MsJ\9X?-mj^@!9AgUbklL!S(s^O:PLN;<>Ui;I"$&q21j^jBX+k`$+%4U:uVhCmfZ+9)Nlc1h]pq"$N8m]R(MKmrO_C%1YQ1Z5%q%H,_&B>LV8VnqZc%H,'heq!d+G8SP+;[)%XV&m9RHPW^:=qB3N89jHe#/Fu$\G[EBpm23Sp6ILBr+d5OGA1n#i`C5R4re!npl3>7F!sl#lu?YrRW44li5.ju3pFT(NS\[cT-.npV7>^?-D[mXsE4M]Wo?dloko?MN_QSH.-iSd!HB4TV/Qpc+YP[N8-qP5`pXV#13-eFpk;m%,DVnpht:4Qt@8glUIg/A;"fCrhCks3>-,K4Id59>b<2a:pUf9oQ$5*Z[+/'_tWX?@"^9mIEMGC:L!q-=o_pb!M!#-WI,P43l#bkNe482ANj0k'ah%e/i^[:%.H>JTPDS%st)>JZg_cQmmf)U/!U%%."L3ACL1*16Cd(6$Ioc[j\+B#'AoS%tOg$2=C8%JVo=hf@lbgUREEeq7Rfp4S0S(1q5E`bo^+N%kFNhTF]t(isJ$De3iuD`-UbTeY[f`SSboar#28@;f^q2$i'=,NsLds6qamfuUpkbWhcujF:6_M5q.7X?$J*TD'@nq"-)pdA\dMM:5c3';k^94>QjM0^@W]i:2#O-G3Of*a=%T@F]'Gl.m!ZX,\'-bg>q5WY8e"WcJKI:P-?a3X21'q`"$CR7grbnMB+HIHSD9Di]Mm::5_rn(*$nRneSPhYA&5q>)etSSJ=3O.QSk\(?7Rh=.KI-h`D8oXf;IJ*a\u?s)9W9Ao/Q5qW!bGCX)o@Z=6_iRC.U,%YM66G(;#[m/dsa=Vo[U##R1JSudqe9cMsF,h5r&<6*q[i,IAgT/@7)f2>1)E`_9_BFu6X[;.Cr*VN.]bjQMHYc]_]n5_2Pif"Y\/N+1tZR#?Gd>'n!7G%+oYQ$`;/J$CnYI'g/tb#Oq!`md\"ANRGWXRbBAIDbBAGd]O(c:Xk/u]#8/_UEsHhMmWf[:dJf#BOkFNL\=ANR`(V,\XfodXVabk^U7#X,HRjFn@uM9Tm&fWVN%qdSp/^lf"4?3Qr[hW/aY4`W15LE"H#(c6s02nn0RGagIr6j*2"t3n[_;e3@u8ld)RSQ5i-];FR/bGZ@.`eki;U7npV!gFY_`2>mLJS@`g@nnR>Al,q#rl7B2?D"SUk'Sm$o)(gqVHm=5I0eC==3]_:LVtD[rSZV!3@6CGtP]A#@HOI%oFQi?."@ZN]jWNoT&[\NbX]q\??s?j!q!r^gMcVq]#:Qfip@c#$kCcb%$@qK$'<4(!S./(];'g\65d936`P:]:GQj9hQgmK@cOjgQAiFp3hP?m6FBm6`R>_&cFCkNCA"G4h[+:tQEunkihS\TpcD*Rn?-^TIt-8,Do4?c"!>/K@P_5J^sJ@hD#$]KC@.c*=a`[kbtY4P3lk>8^pg-1%c#XmE0Er&-COgpYj>fio>(DC+YOm&^K@>8;a'KoQE.qhJC--GHhggct7/0R?JGGl3Qi6%*5fBPttD6;'*ohg-?N[pK>tRh-f$N?bt0jdpV\n>"-p1=\TcXKYR%'[m#po%Z_Rgi&^mVYBN1IQogbIasE6lu`_5O?6^cbIG#Q,QfA)L$gp%Cc2Sgj,[];Me3c[C0P4>c4KnA%7P"aM33u@r;J:XmE1VXbQa31re>EfN[$5).ROfm&fWV#/aZQ#P"u:2[7e9eHYQ%Lm)1P#0+sG$gqB++,kX0C[f-h\_t:QF21/lk(.O$k(9kek(?NlcN=^'h#YO?XT`4sm/^_[m07(WW!/rU0kR@%o>[pSN.,8\+Na65]PZTP$*Sp[q=@t0*=kgEGKVnEO/9j\k7(u.:AK>;g?dh>2Fs!Wu!Fn`3aJE^j1JVWB(!VcP6*OpImLLAX(&&:?WhZn@$>93K(8;rqeE5[u@i%O]1K;Ur6"3&L5eprp6CB3CRR[.peoM5K@n@f]'"sYM1$)Rs@)RM'ZP9=$>RM"6e)AZKnRMpN'HRiUMc&99#]p1>7QGDA"hTF]t(h8:;HRjFnA'?NU]p6:]Fn&KA5t?NM#&Ocpr*LrS^J9(SU'"fYJpi2R0R!F:^lReF3.G";2rIhK(*3IN(EEi&!"UX7#KA;g(q]9&i3s'G+,Jut5R6W\[mn/*Ra(rW"OpT?J]1-qrJQ\dd0oZ##8cc!R(Eei1d>F(K)OVYq$4a'"h!:)"hVS&q>7tkY2[#1[r;ips2Htd:k2L+k_8oMfQk45Si(]-DrAG8q\&&["lnaq-G6TF@GWX+@$b*aL3`R^M]8N7>dtT/HXdk:B]1!dDVblmi;?b4G/=02iS)Hbk^Wcqed-MY4l:Sj*4'TK(jg+RH&ZeOp40CUpB"+PA%UmLDFQe\4rF=RQf&JHC4H$%lX,2>SpqPMR.i`\2.[(25P(q/f=skDnJ-m@:g5k1M\KX4ej?4<],,0ao6,0m^hd^_qLCb\^b[lSUhn;%6-pm]$8N[Xlh3(Rn6b:s;i?`m,^W$,aKDY478BADf;JVRk8#f^1t*-!Wp.#\IkmTR)D1NmpVd%iD8r4PUl]d9mC@HL$5DY>D2G%ST)62q4Z+7qi1XU!)Vm0O40/W@B.]p/[\TEF$P!U[#UXTg57"$3(W%V7nP.sidnX8^sDrOWpfciG06!R"khAT'FsE?*=+*H3D/g0<67>pjQ52X!ua01"Iu/R895W7kM^CA&\RgNO_D>PHWul932'0=;$M:$n'rI[i5T\TZHPC94[Ka2-3=^qq=7$Y=Ro#X@6Cr!O"#@E'68+Bf;E&UQ$T.gL/]#J>f-=ZKNs"7+J`T`W:ij^letWJ--:RJ:l_%''JB`88hL;ZB?Z=Z:>l$TL).QWIr;Pt500l-qm&B=elciJnG@*,a\&+Ih.s.;X"Ejn:*mFln7k*E.l_/cFE.8XJ6_s0D@!$2Mo+_Z&GWZZX=HRf=@XFMT/L;2-G%0I)d02%h)-_S/<]iAD@2CLS+)QZ43K%m,eYI>>lCer/5`TcaZ:g"_b3ifg63A.aK[N\c]"o>.[eiNR7?[m&&Pqp2#DF9C=fo%s]N@@n[3N/6Xf5k!@,5-?$d+>3m=q3%C]a/_UaY40ZTG?[P8Xb^2Osn3]sn3$/Mm5^U/X7gk6U7ZY=pjJX&B$`o,djhV_Q1j"EutnCjeq4,=UH-ji`bPP:CmQ*bOZj%PHJ(A6LO0B@V(Ke;BOD*,]ajSqEOhK3LsGdnN*"Q$gE5%WJ<,hV2h#WLKDUoV)2Y]WP.Y7D#3gVoJj>oVl8mUb`W=N?FifaC^nS\1&S;a^BbA5&2]d=K[CrUC@GHYYUT:,Ek&YZ(8E1>UnF7%-T%19dj)85'>"%Bu;)"=E5'4JkW$j+e&Pprn:+fH:c.'[mN?O!SL-rTi`)nNW.`_HHUtU:s^M%-(fID3Y%]G;E`t9>ja>o/(%'fjlYN42XYiN\oh'n4Hi?-V4'Yh67]C6:\N=ZK$:)2JA%5]Pqg9,p/^lfp/Ze^d,&LSG01m3/@gW(X]!iD93cfoHRjFn@uRB$HRjFnH`OsjBQ#a:46;M*QJ=n%6mC>E'TBrVF6>RGH7:sKCWQIKdE*38=G"u&PgEuq.+.8XouUEB!T:La$(X]WB[2`;]GH3E:IdK+9*^f^=li,o=Xl`=)X5gK;,Y,>ehR:(mZ6'9X\Od\%>O=TBXA#]hLI8i,RK;KiHJWS.cORUe.WF86VRmANj#Pi`_S1iq(/LS#GAF_;pQ-Ou1Q;.Y<#Ql99:$>ppE`q)QCC`RqCJNf?4q,keT`q7`$/%Wqi*OA'G/406nGlu6%,1*q0:J?XTXgm.1hLbNg][H49"t(`-[@A;cK>h9H1T8aTLltJAHl94F=&(H:`EHdA\$[>%"pCfPtH[p68Q]9oll7r9KJNr*?H"kp/^lf2m^oA%0I(RUN%4WN-2<+?AF()`k5;RPg3V5%[aY;-()=>*ADifgL*cap1!-c+f0"?.V6ngK`B>D"69e@+=pR)*]L3/h:EU^S:rK/X9He_!37j(D)ad]#5ZjRMr"NGHi[c0fEJ7WdGE-<,qB#:l+i!I&X*!uKkbfj!-6%BJ%)N=7fE(Wd0NJA^>@\Q&ac>7Gs+@rF4AfNSe'p/^lfIDOd_hTF\iO96!m7C!"Vi,H2)DUj:2lFe`/;p!8IYpW#Qnq]JbETK[Q3SBYC@`?AE>p7C?1_/"fLUeb&q]Q_6;(hdTs"O7c8JotF;"=e-;"8S1,dh!%mj-Lo1=c7>R&($f#@jj).:&m8"C;P`qKePOZA,DBIl<;OrmOnQ?hdK*N)FFs*#'3a-DJb/8q'=q)R.A#CF)&1dc5d;jQ1:LMu$jphfH_X]\E-gJ0!gm=kD6gDnlZs:,j"6R_7FT>`LCKI9R;eWcGR(;RGBJ4[CPR"qRU=tbKe&NQC,.c5[U'\X2BF\5O7LJ>mQcrOG)TppF6_M58.#MEo:OA%*nA3Tq`$]o;='^0Zd.I"?q@T&\9&Ms`u/T%.kg.?UGA#";;FPWtQ'[Cn&hF,=Sn,,UNClNBq'H?uJ-,:enj`1I&,B0mm`JO-%APb-B,]VIkL%^1/2[OfN'tVCh2pL`\@,\DV+I-^Hr4md'>2A&XhTF]thTF]tgqMEFfj!-6fj!-6fj!-6fj!-6fj!-6))H6uXmE1VXmE1VXmE1VX_q$Tn!%ltagW>?6,fI?#&hKZ<_]P%i"Dco,S":i>S/]i1PeUbU8Kf(mB!3U$B8"0EhlX0EEJik6'7&h[7<\cjRc&J/j=lD]R0l^1A=g-gE^H6/m\!*..L?nE0V%%XmE14YFk3am&bU"PWlL0AIVGg>M366>M34dZ+%$JZFB,&m&fWVm&fWV/;pgCZF@-KZF@DSDe3iuDq/3#:N)N*DTP[,'AX\IZJGt85H#`]H!'8L6"fL&5ifuc9M252J-5at&6n23`J^B@Le5h7,fX9A'k`]&ef_t@@rfslGJhMgP`DE&Q<(d\4FLZMO0GXc&*'UP@T>o$kob7+LdrS<\80SBd!hYjN4`p?.(#KLq*GHKhf]%]o$-+P`Ck_f-50cPAo;L("YHinJ;_O-QS*itM\cAs6>=!W!S4FN$5=F/SH7tk!IXG17aTk<)4\I/^jtSO2I3#Q)&-$('-<_>(uPR4q\0AhJ.7c=B0e`=$nbfK!/9Q9^c8<8().+XTWRTJ6Kl5n(GC@%QLd7I%l,9>WU3"Wcq>u$)kj&D/qR':"f-58KPV-;(ipo=pSYC+GC\6P(BQaHR>&(n>Qh1rD;`4'6X]bsc\'g?(I7L8r1W@9/p.5=$:dbTq0'QnjA9J1Nn).H1q;1X)/t8<[Trka]t(N[0W?Q6.%G2X:"^LGJ)LI=F2UVrG2XW)Ir2[T2;/,e,M!VY<[2GTCUn[)XS_R8:pSt.]JC(J5j*dGeq<+CQ\!F-`D1-^&4iZ4%]p"%*gc\"5\t3Q=_g[j9T_pnmudd]mg6K2WW]DHJoKMC%"a*E!7dr\e:fZGu/mDiGYsT>BS-Gb21:tb.:;YDe3iuDe3iuDe3iuD`(qU>M366>M34`QG&QsQ+`HrQ+`HrQ+b_`FZmE<-I>\dJp;rC8!>egk_UGTcoV"G\@!*\TM:JCkYFQr?2^`sr'q%tgWhup``U:QgYh)Q,'2?4kD6`8.b=aS/=AgD\GMkE_7Hha"`Gqq$6FZg0ehRka2+B;N!.=*^'iS\:&4B'h:rK(h=(kUY[do^Geuj&iNYt)p#5-]NR0',5Z>B7cs(LBFt2AVRL1'c__7:i!$^7TODbA`\MfO`^&[R@3=7Tc"n1T=f4KRUX1*_%6Spfd.C9/b`hBtBi1>;a"#'WMCQj!;GF\;^sgbd2UI[ad'6aoZtu\D+l1DR_F:]sX,Wdj>P6d@Zhflh^tF)?i*B0l*QiI;]Bp*!s@6o$]%ksF(+rbn(+iho\2O?<^]"];A^1rT\POapF4p-GJD4pcahJiU#e6[uqXcRO_88WkhVm,Wj'^9o`IMSQ?bQS\*V@`LCB+`RJ43.VoMM8FKkGOoHn@7(Q8U"BZ<"^<%cF36:5o%[e7YD%%PZhOEt*ZMfXc2E=;o-,-Nk1!j#Y[?B4Kp8-&6*VS.!cuAl-cW'u9?=.lc,4!pU\n_6Kl'hDjAZE%7+XGDs$>S7p,uAad>DhPQP/FSo2UL0#LFB'bXEH4XaD-HReb8&31n;Wkmd`]Q63eS*dg273RU_6J_738Kf(]_5juZ@H$HV\,]>l,F_$Q(D^6JPgXK$b0>UpA?4Er.N,+ag3Fh9ueJ+Rp*VtL'%/6o5?lKi$/oOM>AR7qOD58"rn8(UT#.#)sitF)d,j9PVY$HgVg^cDCs,<)^Yls*>]5rF7^pj3Ed;j,b:*VBH&o?bc"l%%_kC=n)0Prr]dNjp41kXoM3T2?R7q$iP5:+n3G"l/7%uq(LC1\H^DbSSHB"idK4A#:CDt!B(W`>-)u/L\l[5j7=q=#J/R%p@ep*H$de^;!*eu,h)XTEjDY^gi;L_i+,1bS8-7M*oR8XC%`JR_'bk)$1>@ecf!lp(;M67Z%`<.hLh_(@/P[J_9$b4^mU06`b%6a=9-hLp+lEBk#]?)5(5C!:,ZY!KLnsj"%Q,fhUHJHrYR24EtpZu.Y&,+mK":QAU6%(4!hS1b]QFE/qVbLhZ^u;*+[L5hdEq&ZF@-KZF;Tu1\OlCK(pcfk"2J?!'b[qbI<"$.LhtsEXMU9J,Thc,lUllPbA$Z0o;=_Xn"boe\;>P)>$jhIY3&(,+iqd#fFTAAp_@@M'oh/^]VF9_rDKdm:X^[t5H9=qL-LIY42:*Y%+kcJJ5iLh@_9iXS.!Yr-b@*/>L??N`+0MP/ck9R7t?7gA@@[B/[F[9]u\RLAa,m);J*3-+L^%NINn#7"&f'$`ndJjZG6i.K@j"cl?G!le$+$kAn)Jbqo$"=?lm)N8t*&TFg8"7@6m*_^g+$E1#O!%tkJcD1Km["hCh^u>,@3)lLPAL\cSOI+1&@60k_fhlq]fL="(qu!nX@4YUKLo+YM_DaRNn%dYLqE'U>lha,?hT'V+*e873,oFII2KoI8^k4#[JNH>[!f'S7^qnLEJJOri-YEeEnEGU*XpsI/C*7mA3l>f&#HtQ)2%J,K_;R2'>sQ7<4d/GsPm4>fprAs/s.-b9Ctr2%`f?YsfQ9VY2h@sSrtB@6]PQ-=i9*7G@+(;&^^Dg/$GQG3$F'/tof9h8Hg#Pih"Bh8^dAb^K5W[J%">/S'oX(r&b*LoHn#;s^@2c&0^3:j\Eh^:#lQ(DZ4>p4Vph;L^Qnd!S`Il7&(cG$f-Z\s'^(eY4GZZ[#>V/3*@'tV%mMrU9R-JLYiM?4i5h;p(if:ui3g*'_:XMiJ.X"rJO?@+i5M&^%3Cr01mkn""k[26!6.g%":h&A!b957"s0B.1gi6_4d,nB5Q;Ak^?QM"GC90Z'0(*6&PRFs.X5XDj++U!"*,1=1jJ1hpOI9O]k:i\IG!BQca8;W9ATj:/t^WfphuUBS\:<%Q+`HrQ+`H*43QL'hTF]thTF]thTF]Thm0_s\$EKK\$@R-hTF]thTF]thTF]thQ#JET&(smJ[t3XlM40J/cuee#YG>uK!JsPF;$IZckUmff)j5TAO'>o-9-F'REilBBQd/X%<2,MD,NC^kKFbQi%^668mLHSI[3]FR>DefUSBmMAsdcJb>P)$.O\XYGJOY'Pd"Y@jS?oL"bQN_]9P&45_=%)rjqp&[hY`%!We5esUlop^9[Du0Qcg`jEFef'9H1W=hn$+_%F$'\bVh`@*O(H/a'03k6p7B?X?$/klL$h-m:H4I=]KfA!QNb%M2a?'t\@X5WC'*'^%]oPF1Y?h$%<`dG,Y/M/O(H/1j10gf.Br\o)Urq1]:3*H1OuCpP1`%,FfC%h9n9@WlY%4'4';QqNi#(Hl&MVSfPs#o1(RLMSOZS.@*e?oq"7H.fQB$Ep/i!\H*fXT_!\B$oCqT2Q3T43]F,W6Bi+@s8:&hCb21:tMV).d>FF4WHRjFnHRjFnHRjFnHRjFnH`M0%ZaVDnDe2TgfN[$5fj!-6fj!-6finnYDjAtFEh;Lk.JYdHiUN20\#MN0"tX#j*%Y:%_AHcV.1;Ih/6_`o=SC<5Se/N9&fb'H@#T>#!A&FF#XiSJs+=agCL3udeD@EVJHW2VpZ]Qab+^T[t/B$)o1#lR=l-^Uo[f3[M?ts)^]^1$*`u)&!K[03ATf8=E>a,3!W&R6g7+h4^eeX#?-+C9p$d,rCA0+J]c><-(eSkSBJBnD20(HejDI%rD4Q>4scQEPK4:e\ZVM5Y*WD]:?d$cBJ5]&/(@^:=JcIP*rtEd=g?$WbL3GP,]#K*!^@c$q"3=cJ:H.D`*4PRn3ueq!Id5$"i^(/=eF>jBDCI^3=IeJGkDdJ.=OY!oAl[giX!laq[0"T9.5TpE24-Vm=R?C>Toue"2brC4AD!]_=88ZM.%2Cu3d-8ET.#omnkQ,u6iai9;)nMohGT!oh$jI9GbcmPoK+aXCC?bSVtC?XiDW3*<;APEu^M1mbcS;h+t(uBafsI*s"%PUe_UE5Hu8ii&2mU$BUAME"a_bHX5UVU)86.K(WQOsE&\!5)=KP3.sidn.sidn.sidn.sidnX'7Ghs5H#2!tL*:2rbokDe3iuDe3iuDe3iuDe3j0h7Zh1KBr9mEd9s_RrR*L$/)DClO,X,@%ZFfhr4$l^"k<7kY!B1gs"H-!67$4A+D)B8&LZ&liKE&r!H&bQU@g:Wu0b#n!-U)_U_un<`T"0VAAC[Q'JC;Wt/;.IE`8+ESIXLY((Z%s%j^ac9K;HQ7PF7Z'4Eh&oX0HYK/_JS'%c.%^ZP38@FV"8HlX2[)9F;L6!0b16DK#3gb9qWe#BW39*%k9*ci`!+fj!-6fj!-6fj!-6finVPT()GS%d8EQ3.(h^>M366>M366>M366>M36:]\Y,8-7GM4!nK&t8b\l#'N;=E3Isa\;*^-$J.CdnPm#UKntloa$/00cMd8osSCOZ!O'HBf%9KF,Og61%S*://2P&-GY1<`09q^E\C`Kl'+EH$d+E]d&;Xb1Iu0MJ9QlS.fD^FR7pCoUl'A?[Mc:Y;n7REc!k]/ruOu?dLQLp^IS.$>inS,l)``_Wog6/5'OlNQ-Qf@6D&:f<@H\[b22DqYsS.b%d8G\,bVhNWU-bRXa71N]p69r^""4JhTF]thTF]t!?LZQ%VTc\.XN[mX59mlDe3iuDtV/V\$EI]*o>&F/Bb=MbHe3X-%5Z!De3iu=dEW%Q=X3"?Y+.eDe3(;AQb=1=k:B"De3iu=dEW%Q=X4M^h%FqDe3(;AQb=1=k:B"De3iu=dEW%Q=X4M^h%FqDe3(;AQb=1=k:B"De3iu=dEW%Q=X4M^h%FqDe3(;AQb=1=k:B"Dfm)6'a(bPdm6@Rjd'I\Q=X3bAIVJ(TTV1I]p69rAQb=1=dEW%I?V@0]p3/3Q=X3bAQ],%^"&,5<`u(Ih\c!(bH`\BZ7O2)DDo0HoUheA5p\/!hTF]tZ7O2)/Bb?#R-^sAXXqZ$/Bb=Mb8RnWX_tAPb3-)R'pK6gOW/SBQ=X3bAQb=1%>lbAd6u>cH,#WXQ"=*aAQb=1=V]*9WiYQh/Bb=MbH`\BlBCS:b3B1YK0Ae)`Z'3"Q=X3bAQb=1%BeE:h@.QiF26YThTE,TbH`\BZE+CEDcJ96/'G4LbH`\BZMGqqX&<4fDcP5Q^$8'nWF]4uAQb=1=bEG!61e47DfsUeb-ESAZ7O2)X?Oe`WiYQh/Bb=MbH`\BlBCS:b0&S`Z7O2)/Bb?#50;Z]XR*&?bH`\BZ7O2aPO,Eob21:H/Bb=MbHe35akj&!m&_h^Z7O2)/Bd=Bm&eFQhTE,TbH`\BZE-73hQ![DXXqZ$/Bb=MbNb;XXiefCb-ESAZ7O2)X?Ob_WiYQh/Bb=MbH`\BlBCS:b0&S`Z7O2)/Bb?#50;Z]XR*&?bH`\BZ7O2aPO,Eob21:H/Bb=MbHe35akj&!m&_h^Z7O2)/Bd=Bm&eFQhTE,TbH`\BZE-73hQ![DXXqZ$/Bb=MbNb;XXiefCb-ESAZ7O2)X?Ob_WiYQh/Bb=MbH`\BlBCS:b0&S`Z7O2)/Bb?#50;Z]XR*&?bH`\BZ7O2aPO,EoC1t9q4,*@l$u50f1-q@N5,]bU*Q1'6dN][@3CqJ*dmYH^;J-^hZh-fN6BEO.I@-E3'oC/`=Uf6)a?+P85!k:kljP&R8'S\_*YQAq_Wc/@ZfEO:[Q'J[=,Co1b!H*O_`RtFah&eG6.$)4iePIQh;gP%:2Va7Im\E/")AG]pJUQfHPSbc^i/(dPu&USIZrNTSd9?%,/cJ*,1_[/A]d[P>!7mV'$eHK/M/hg0nMts7C5Gk`NqgX^i'q:=8U5Wapk6WqP]QV,s@9.]I0TY(DNng*5k,9!0@9+-"aIaI7lc_'C'!Q-@nSB>4&H'AT-+6Dq3#^_:.eR>4&HYXmE0-95hcuKb\*#g4Pi>;ijaTbek]<^*8G66^(KW6!Ci@3=o.]k$p]G8&^LH1]iln(OCXYK_LM8R$MktUlk?B8ie8]R<^c`,C+NeP<"^%(8PSK5I%:16!F*(TS=R9Z$1X'd`B(BRDe7d0o5eIUch#6EZ&h':e)(\:'YdYAeHJ4%W%HMdd)Om&[hi,"gV:`:s?gIUu$DKP`;=\ZT:WIn+IkEl?e/jku\BQ*cd\bb=,\sPlA:;U>T%@"S?hA%LgKTr#L"]bMX.`*7H`J[j?pU--:2lFSBTWbT(4EQ86QdU=Z_>^_E!fORTW.40&C]s7f#cAoQ?/%U#+:FmE"T6B[Xi:0(RuXt^-L%)Eq+$Y@oLajOUnJtK(ce/8*t1X`lRF3DREJ68NiXN2?$`@FGr^rLBMnB"4fCU%k33h:[!h_:cs`\R4EqY1']'#[!]D_'BHs=)[*ZmW0=!6f@Us=p5.e3d7tUTeFPJ[hCZg,g?gmoI8iL'j,I$F"`178N%,Sf:/&l#8B9TL+G[3-rN)Rh\(>4-07?A##8=b$Z%S3YC:5MZf)O]3[94G&N[4==-9O\uI9JTCSgM,`i\fe[Oh@@2t.qo,-fbgN1ZrOMCR`,'lemfbLVl0JW5j8_Nkq'Z]N\@U.E]sfXJ=d)2jlgSAk2BiGn#6[*XuE^O&YHpOQp.MBFTh$JBi+7"N[T(I2RpK(@1jq!:&7%E:Zp"PS\"WQN3((lFW[Fr8El$fMUg(REqR`!X:H[\Fp^1`ok>8t>F!@f.N[:"lDhPJFd?@5]iCuDeaI'fAT)-uAT)-uAT)-uAT)-uV#ftcb$JK:FNWI_hPu@tXmE1VXmE0mg08^ChTF]thTF\)>OmVGmA@t6?M+SR6EGf6c`.?#4'1aC?__1qc6U!Y+];s]C*X=Ji,fn%8tHc#_.oOoh3t.%Fk4u$;pWnF\<8t:*fO>6`UOp.SV*Pq/I!1-DoErkkOgpGCa`'%)MasGeLBV?+,^rcXAmf)([4\MI+SE;:Nb$hOMRmuaMJAG:i`A5_JUlcc+>R*rqbpsDjaMWsgq#37CH9o?#M37$mmLmd-/d]2T)4(4hF4^%X\:a=FeZ!qNC3\m;G,5;L?YOnk:=A:(BC+g%HOeQ$ssDV87I>M366>M366>M366>M34\;J1?WGb.G:7P9J%\$EKK\'cO.WP+S1Q+`HrQ+`HrQ+b`@&.9KkDl&)>7p+=WO_0XO!0uT"7k4%04Mk6,,O8L&;Db[#iQm-$]u/'?1MRtgZV;_jMVYB8oa(#WaE(15R]i%LPi2!\-1>Kp"0('9=HW2M.95C\EQ@FLX%':hdC)F,.iUiDlC]hGO&Fs77?QTY,HJZBG..i_6Z+HCAVsAXHo'`*-j]AQAUh#[;\9emA"_U+8m/cggr8eO!IbBD%MbIEM>Wu]0M,e#CptijH;AV`MA=9eLa+6\h4@N!-E8bn&i_3$n[(!fuoge5Em1&<@2^2T^N6?R%2O1^FkA1`''0HX;E2\c6Eo[aum=XLXo\7QZY5#00(d\7$]$^CgY^NA0/-=CeUBLR>2`t1gm+C\d;HmLOH2Z+nD]s(8TuGUJmTjQR6/S>B^ZZBF/YSe_'hZ"C.L^D01UV,^O[*Yo4+Ukm@IaL\7.F@p(+lW*/e=@n-\*$4'k4u*aqA=2_m@d30[GVeW)S9mRKCf$h^&,ZSCQYUlr#FE<*F;'s[g7:$SiM`\Uq'c2bmM0O[u;nIlV[.:;Z5!c\(ego;-@8`"SoB;u/[,*:<[93_7o;JL[pe4OXc3[MrF*YQ4+d:P?&PLD8X(OjJHp5/bdkoBK$cC,f,L`?_KsG/KF`W:J`L*(eQLFIu(Q>G"W$m[=4\MDAOcdF(qPOep9)3r\Zr"2lpKJ)3p/\$L=j1]#<@W?rlQNqKH`KngX5@"/hTF]thTF]Te)&7(8k&lCfN[$5fj!-6?*Um(V)@VA3pj%u?WDG'HRjFnH`Kng.sica#s;[8AT.6shMR@kB''N;,HO#*5n8a1LgqtK:lRsE12AahD%d5So9`ho`G:N>+D2WN&K6b/F5oric9.gO`lJ>K1G7*b3f?Jmbe'?S,>r/dk2V2A,!U+^Ic:P%CUB4"E:[`$Re077-LD-!&WR"mKshJ-FrZ^uFF9&44N="IlQtl.NhV`cTgeM!VO,1JR\%JKjUi7H=blV#qq>D)7-a:%U0X6`mm1fDaMp&[V=p6NN*9l.J^HsF^+E'j!Fha=\og<_UTL5lb-'7fiG+I4-,!1s!'5RrR75KDl]S-.J@Zra%)CU`>:_N0\CT*?noR\SQV?p%Lbt[2:F4i!0,l?`V>cf.'j,ANTnK:Q$@0hAM-]--f&08I6B]A^9Dcm:aEkkr=Bo^*=X_tfBi#G/p)'7!9MYLMB@9]C27(6+7p:#]':!I6\QU9Q@2r-1W]8D(Kj]V:XV.-.lEopVd,+&f]iDQ.XmE1VXmE0mfN[$5fj!-6fj!-6fj",T]KghEX7fTMZF@-KZF@-K\mfShDe3iuD`&BgMBA(cj=5DDl`d(M`6=K7NpM9m76XtUVahM%W]n]!\r+sO;!dpK,3pk3Lam,D8B!D7ZF>ti\]J&-[3-Y&N6h4HTiN_G?!k;A+boX#5*7+3YZF@-K\m_nR\mfU./UK!pX!.+9RtB;9RYOJ(K.;_Z1VXE0-Kumj,LYru&a:t$Fh1sYTDThD]96puhU0cZX@c)d<>%\<3+8W>3`,#:%%4"J<5D'HAJOZddu+/bamB-()@2^:#;If5j03n1_HL]^f$h]&_?%IH,[+4(kFr&_cf/6'D\%(ur#!$m0od$l:=4JoqF:QCN]%:63&[=f">qE-"="GZ\)N==8.mH!2Pcnn7cIBW/6p=Tk\ZI@'>`#q!k/_asR7El_Q!@^m^EQ*7!_0W6W;,.Vk+UUL7;o"ECLs*Y^66R0FOr0ao5riS\hrF,O&N4TZ>L_W,+jd+bH#LCOiUIUO&8W/(^/[>`$G!uPl?c9Ksle^(*A#Z'`D>jj7!`)3nSOf;L4T#HDa\h1L9?1ViBMW6Cr6AnM[g0tcbAR1(,A;q6O,-iSS\";G`O[e7iS?#mAYq^D#d4WeG%[6il3n2\fWr8i;bE?1PjDBs,K3c)ecf2()A[+GaS(QYH&i#6>F-('nYtuH!SC#cEn;4#0JlUo+bCGQ#VhH"P,'+-q?,q$IU\F+[ogI$!mZ17mlYj!<>kV3P;+k<]qX*p/Y8]Xh&(^Fk,?khTF]thPsfRVMkBO=jLQ$CE1U#)`f12Fc))6S`Yc>N\gg6;j54p,5\JdB+;FS=pbIp0Y+(PV.$M/E/r6m[=stJBOcME_%EKAO,*h9"TD(uQ*<@o9Z!+/FaD8d%5CZNQ8O5lX/Lf_`':\SG,jn5h<0XM366>P01eX/kqph6OMq\$EKK\*C?0lD<`%:F("W&L`",;V>8[Z+'"a^"&Bg1PnTPMV23Vg0nL)"=X-k8XL*_E7t>46&RGs:713\gFgBH=TpV8H?:eagXHhuD@AcLG:k)0AGutMNk#uD7BDk,=-(,X=8U^H*ra:SbTc7>5+`Y1o,">8(AWBc-E34j)>('H:XJK-SGS^0^7l\I?ct?q.2sIo?($"F6AnFs%S*,1YX%DKYM,]bHW$XsA0^-Lf]b$D`unXUK>TqBiVR-=TiY+?&!&5-L$F)D)'j_(`B&Ad]#eCj<[Z6e?PPhYKloD2A/iiJjYHWS"]LU]F)>;ogEUrcKa\TR5qQcQ7H]EMS,-MGKdC8HSM33iMV&j@?1l:fdO)QhHIA*S1VQSt\`#dDR4\Jke=q.("98H,e,"K!pFfs2"f#rnTTJecnoE'.u`i5r#INL,GFFI2WHNQ.3I^iUSBUY`T;Mr_n6\9UY4+'1SZIt=n7NN4J'kj:_*81\*^cGY4WO+5T=ta[4#JH->SuuRp7j@AUZ`&m4^.6TZA>+C;U8(/LYft"9Uoh3ckd'DArW*'8CWQ/la0XpU/LQ\%HDS4;Q''`KOnjcdEak!/Fu[>r+HP^fO%6\d:9+t07n$U6@l8:.7Q-0=Al^dpmaWm:O]L"XK0qtpNdk5$>@(s<8:r_h0_ko7O)R\7,b:'>C>u2@B/fGO-IQ5O\"HFCG?2r*Q+7[104VCCkYq+q\ohjEI5WfOB6>!4C?V7)2QqS^S/$spZf8;qmk:!P,Tb?-P^:oL+AJjBdP9'Cd@3ZK>C+C'nLT$f;R'&FX%n#B?E0^*T3djRNZ"?]$Mq/U-?4#l[$&_V$;>H^h^a`5C+:]$(+Uc")F_,f)<9.WDb<[En$M8gh>VKZQ/VBWX-GSfk1UhH8hSTX2<4D^jOTohPH&:&W<$!)D@[pJ,q3PSn'KgsX9I$EjSKMN/m5ZT`t/aK#FiDi;B96]6,;C,h]p69r]p69r]p692VnJA/Q+`HrQ+^1Z[MT`NWoO43OhFcJ$e2NLXfgA^Fj&XAe)%*/p/^lfp/^lfp/V:Cd!@2_,j]+9%]^M9NTmRP]CeA<+4=pi9"gL]7<-M-->DYK3X(Mq=*M"=AS,ABTfqY<_Qja:m#[fo1i`5fEba6Z$g^@M0r`6qhpTIc;Ym`SYCg-g.,c^-:Nl\Y$5RFLZFRcl'%6*HnICH=oGs=WU@*N$n\'IK2#FF)Gld=g6F3U:QN05d-ZVB:"fkpJ%D,4M@:+LMka@CNf(1S:Y.XK2We1B]0Q,.C(Yb-QS_sn1J-J9%'@"e\X2=&U4LancplBUV(JkQJDD71A_'@'0Peb4A3f9S,K?O8:Z3k)KlX,5N3Rf@\5i"5b`'ak*Eq/GOk11mb,@DQgRRZKqc"@ZbT(mNlEc>F7p^<,WFp-,E7nH\9&%DCWq7ihX6V7$AT)-uAT)-uAT)-uV&*f`FiE4;>P;+kBlKZ?hp@Bok+/PEH<)?hX`un=>6AWZ+s4tYdrhdqV)'R+1l>OPU`,Afkj.KE*GK3#'u)Ru\$"bZ6UIu7X+H/DA01-/aR5bClEjQeVsBE2oi[s\iA*d41@c+NLbY^3dm:jk*u>$*HK6P"5LHAJ_V[k]l6Q=Q='pGrk*trGr&T$]S+ZT0&1S/S>'S%u8_?EW!%)**Tr>RF`0na4e_\UGFgIWBe(YEHDN'add4H^%4UQ:,6'EBbJImp2X[g+W%VX7J/.o&@E)on#R`$O$eh*sc?5?eauJ/^VG5);6nP=F(e_&CXR[ohX&?3!H`L%!ZFs89^""3i5$28sp/[aX)4B?:em#C:/r9-leJL&;`3&>5>FrP\81PID.QNPY[SZM_eEAL.Tr%GX.7eA?^%TX_9.rdo(,:j;&S%D>K-CgorBe60)kP#2qM-G#"D;kJ#1Wc21'`>9"coVNed\_nYo<=:V.-.lRTGjGqWO!I@H7J7"sFU>;N4<"cV1XR\mfUNqlsRJFkPWohTF^?LM366>M366>M366>M36R_cs,8pXUk*$N2NXN_Cd>+]M$DIcXI?/Y/seT:FHU3h@SETcT&l+75"DMuIr_U<"NTl_>2QW./Go4#O_us>^`ua#FWM\]W$$EnFVN>Mu69Mh%%6A*$k@gFr&6.T=+qG>M;9PH\_\_=m7K[LT`<7F90;&iV9+YdD6UO18u5AR)D=6?O:Mhn&B.dF(B%_6jBd]a^UDc60V"Ko_:ru'X=a\a+q&dChF5]4c@XN:6B/N&K2`3!8N(([pGl1]%5$VemMMNp8he<73_&Z?tOiP79Yu9?(ddONN#9NV.JoCVtFI7H&tljl`IZddKtmbVFu_905DUM@33-[XCQ!!M,#Pkp5+nVZ`)H1(T;s3Z6,B(Cd[@Dd#,K\d)Qntf6%.is@cq,RimaZ)c&pmID'\:=^?luoFXl?Xq.[@]tooKqtDe3iuDe3iuDe3iuDe3iuDe3iuDe3i%WE;Re4%n=r8bQ1dm&dj1DfsUeWa#0tp/^lfp/^lfp/X+;[t_BG(fX(=rcl&V;5k3;`u>pci@1l27@.W5R;U>"Q%U5X@A021$A3WQZ@e:;@/2Qt\%pIR(go!Tq:6CVb>XUh=I%B,SM8N]/A*odCH,:nGUT"9%kl*^,F*V$[V"Qj,m3D6SQ-Lh.[_8*=Lk)kRuPc0bMauK)qV6[RfbMK6up/]d4HL:E,AJYbYF1Uc8?F@mO8r]_@a%MZKGZHJ(aOn\AKW8"&g<.s7[uApYeBng]0-(:DkG@h^\-g)IF$C5385ZqFVhN5+Dqq'MHe'%i`<[2dr%UDI^.:!j>RtuK1.\E!om=Q'7^Gac\r5oB=\_+L*MYD)ZocD'nLcmbPC[Sg/Ge]30'D272!QUCCPV',3/ja4cccMBsCP-]ZS1VcTVHkX6:LoHWdY&M]IqFMM7fb5?M_+MK8gN"Ab.7DZ*FoNT+2n^Q(r"Kot>6DD.#hH7QiI2[ZPYHmdTCfg`gN_rL`X34HsP`sUrM5"qV[C)'E&NST"AZ#]=p-JEYG_TtiBASUU7Qk)6`3AT(B)pi:n0nnHkNpZPj?-()*5N=j!eRlK*]cM-JME'esd180Vpd[u+D/Xl;__$<>g_2J4G0IZUFPb0PJqE"&a\Ice["sgZ4`1F^SY!Vc^M3H$&L+UTK0Q&'KM:P-WP?%\7h6TcSp614X`$$9k08WBA2/"1'Ag4F2r(g2";,[4`QhoE8,9+cRaRsobkGq5*4,\<"0`%";iZqiFLIq/51OURpD"%VXCVEF7J!H/R`UP0XBUg5EI-?@9Gel:"M]$Ij5+UIGkMj5akZ22jQ->p4%EN?TLga[2!8_be5ogmm'5&M+EMHe'%SgSD5)RsF@6p,Ii]=?AnEN;afl=KQVh!.(@omEOQXl2&]X!+MYqFO29rs`-YAtY+O%;6DD*mMY+K1nobeilkh\XnA)3#1I?9P3[@TWIeo3`?h^H4tcgK;rc8umlL)rq]CY6T=!+`K^d8:n,FUl6_&q&Jh>K'5V\e\YsG.EK_QGmTM)[1_^g\'SW^a=gV*pZk`pJS%m(rB\$DA9jl+q3pr]ZRH_-9khB\`-#&g[$i[jgh9]dddN6kK!6$;p=Nea&uukl)_I7JBa*YbS!r=_D(W;Pg1H!eYtS2;fspekBXg6-6E0SJCXAc/!naC=,(271k:=_RCL.ErpoNUFWD*b%)N7Kp,N_fK>2M\AEZS%+$;t!Zi^.mY<(1M%s)FQ0BLaPT,WobDVqc;8DYErU"''/p>ai.PMT^U8CehS-1IYPO(\_$H7'4'T2'L()&Jc7X$Ecq]AVDU:.tQcMq@+0V#N3QA:*nNiqKD@r:d`U`p*HHg'u6i`o00*`goJZT:kofLI:WKI:LF4kGaqc<1=**Z`?s^u62UXWe)OqZC_55Km;"bYEc'N@Wsi[pht'Un0iQ68#8)(mkg_.Et7l(B6APD]6>YL\*"a;Tl3%TH%7\B6]>;S`6;e4nV16D(b7!D?A`ZJ.qU640m!MgG/R:S;3]B_-eg#FEiD^H)p%O1rZRLENA8p,&l=P$XB*>X16\)EN?TLga[2a(Uo9+`NA-#E@]#gr5>`*j&XJBLWYQ[`N:2<>K*`(19T78O=*"U!&hS(_3Z_qAW!%UTG0fb\c66Pr-&2n)CB\/'CUg2>(\?FVlor&"io6$t3`-]k3#l?=j!h;!r^/U1"\9*Fl'VF1l(+d-Jpi4]E7$)Q(Q[5]\UK8_JYfgM4?G@-D_]Io>G4cXN.Ag2Tkis485'Z2_ZMdWu%Lj/Tm&X+DIXB1mo@i9j/aCBq@5mDVS3C9";lh*Jg:VSj5K2rWS@;ZsghIH'a/psmA&j.kNOVt9c=,KXDABX<>K*`(K*^&j]K!4a6#u;2s"q6%-cEUPK.l0SQG/>E>#r_pB!6ZX's+>#X2F',6g;o#,.HV._Z'.tL$L:m:"p3)NPcI_Y?/6<"t3M,4;h55Ec:tV);:upWC(FnfTU+!W$&>r8L'Wk:rAI8%]Vd4K+QlX0O_2`Z=@Y4:9a190d_Y),).kk1:s*G%"nqeF)'O@bA>\H_[Q1q$@5Meag5>IFL[cl[n:JBQQa<=K5\+.t\'D:lMDP;GHCiYqr8(ueT>M-F9FtWm%DY6P_7,080[1RDZ\5h<6DABX,,]5K-<_iaS>4!bmM-JfVXWE:&`NA-#ENAuH$XdhakT#nXd.TcCRXi%X_rdh5EJmo9OYlCIW33?Zc,=6._JR&R'+B5OW8?_eW!F6"e\.ru8clIs*ZhV+8r*KZ<76LLN]3#ViMD.4q6A0H0-d(s6Qa@;5-6i;@]7d3gfGaQ74O1E<7U<(EQuhd(:tp10]$(T^CDR,A)3"c9RaW";8BXZNlRoO>I:%dNi.b?$Aj)qp`0W90roZ@/p9sBn^`h,r&Y+,M6AjC$NIFIO#Udr'9P@%B0s-qb(X[->jE\%7;^j&VMVeJ$Vd\CEd]XY+Uo#NAd(X%2/MEN?TLga[1V[u+Bac4\oi>M[9#SfhonM-E+S[u+BQ'"93fuQD\^gN'4F`X(:$:sV)R/qd/;X:o)*[Kou!Tg*mPtt0@k`9qgk(cDABoBB5V_^E\b_lO&@Z7Z0kF-`BUOZ[TNNl4L_72J%_?lqA]aLBG=MgbIXb"MT7<;a`C*pnqC!:S-"bXK0AqI!ZCmA#$2ea'F.WO_4mZo(0uj3QFdo,l$:"alG![tEn>?+c9+nu/,BCG'_ZDL-7u7CVdkP'#;&*&3!jo%'D:LrkUhhJ7hiLFV/d&Ai`>E3SO4JM+q.7m&uN?)CO(&Ap%k1HEH@K1VG>.c=F<L=kkKE't9')`NA-#ENA8DBSpUcX$q#c,5:0F6b"O5:WsBZ>#*j&DABX<>M),6PkXXa8N-R:&4#1DM4Da)R"^B&8=?ldOX`J?BtI-/@L;O2)<]=c4e(HL=Wli5Tp43b($('/d`"i:s"(4GG?3%jIDWPTCVj1*`+!]b\Vf=.Ia/BBlV!TZT:VpUbQ+6'BG@W=Pa0BoocBT,`J/qH,&XfY\CEHc.W0B'ghKdIHkVGgEpECF&"(pD-.(frh\q3[,)=<5haf6M?ZYW)8LjpY[Ijj$fS1R"`+^n+HV">Te\"jkfUb4J]"IVuE]o9]K6LYp*5d:119b>.G=d.QE8*Dk5rMW\19D?kED`[*tFIQah"53>o.(A#13Ylc7DQRF1MHC\[f\sB7G,!nN^>D;h`fLaF``JZJiV23f+]NHFFs#YrZB)&cQlCOI"HX-qWS\q*&IY1^$03?dA3^4[34mdBn>C!2"Pejd3N!g\NeWH/uL!r)#0:#/4VfZDZ@:jZ.>2WPSa,:rD"nYd0[-U2=C15qM[?%2C<;V[u+D/Xl&gV?\CC\$X16\Y3TNffl4UR`>K*`(jWo_%A%F$AKH8'nHWT.*j!gGOEslE6RBb%O;MRFpjj'20=,!n%s[sFt"PDusm/^@SrB@t01q`faU*-[h)<"Od*mTGcpTbT[Y7=CoH/U&euWfu?JZb#%+O@/L88:k&@PZDt%`ICP>MFR]Lm(Q=jPu%n&%lR[&`P4V;YP@2*YJIcg(>\Z$<8`>Rs%dV`i`=5GdC@`f;fSl8\CJd.Ynj,M\%7W)`NA-#EN:JFn[MTS.W-!1MHe'%\.Z9>XIl4=MW4D3ga[47#d#)URbTU8XfdLb`NA-#EN@3\'&lsDn9EaR)A53OXk]e(>LD-fOBeKCE.mKeJu@gf`69g1!r$uqM?o-UquZ\";kL:@#>fqZtMH\O)OfDQTB2[IWVN-N(e.(\X-O;7rCrQmV;f/uiKMdO#9MnkW9Os!V7e^H8cqKLcF.bW_qO4,L&iKCJh\eKk8OJiC88[.[VZ;n!1N-DF$$76WLP8?;%kFdCtn$t@T;/hGYa>9WY;NF.FGr+\=?YXQ'1Lr64\94lW(%85oH*0u3mNh9L%B^6u03.oa7tDM33.'F`+QXKjR3ItBU<^j4P8tf46f5St5-O&;"O1A<%id[TZG'B9ls5B7_KeU_AENA2G0,h=rIGF)gC5bn#\(VPEMHaBGLq0%P'eaMO!%sSTr[sAh!HG1)5X$=V+i`:'"\CC\$X120b.W0An[;l.cUWC)<*4J$Bo`Qoa2TCLIHkZRI<_Skb:4?f2E[HlH/8Nrl3oL^K.sB?hOJQ(+1%dIrJ>R3Yh=10EI@LnV@2"g\!Pl:#I#.VAoVh7^^eUl/XB7oP?:9[m#ORKVDnUmf:IE6hh^DqEJB1df<*8T"[DEQ\:2)qLZ4E[7'Bl8G@M`MF8`T_NY(DXQAHo[b\3\6<,3!jK]9qI#r/Z:1N.t421/aA+V\nCsc%&:UHMDLVg:h4?Fm1[u7p*].A@76(-tuHeM[4Ybhiha/C/[YdDKQc)H6@)?[sB<;FW\)M>K*`(enX120b.W-!1)YjTLiV0'0V;QRR`H96ScT_ST8?NMt"8h9L%`9ml>".]Zp(C1)G4dm\>[d'fM:nqKZ/uPhB?*s3\L0_0S"?O*gu]0WU([5U\[sRH^F"8R*`@^bjTa;^qSF6Q`B)'lc3l-/[;Y)HHIfd@Id+B;46dLSLC*]Fob1aX\>A]H)kDAD[/pcpN:Qs>+&SIZ:eAkCNFtXjtX`7%4`0EBp<)0o*2^LMHe'^c'?(VZM;dm+`$#[qb/+$-HB%NO]Cu4rnLEYY"YEr'Kd%NXcn-bSW*Bo(aZ!kGat]0T-JTnR(A27Di>^&)i(,J3G-#SUKj=XG6dVq+A0fB,N#40mKj#.K&nGuGc`5b@=Juq(^1=2,,?uPHbD9A.#EE#*$C)13H5K*`(ce[sPsE3I+2$S^IncJ#A0Fl?s@$;g%dJ<`lA^$/__ce`V9us'agNc&$5R[u.2\&nht4`ru+kEUFcNn\HCjVq8KZ3'qN1UP`P1$pBYqf.'i/Olu?/GG6Hs^BYkio2!b-DQdL`d"56HZ#7M^<(q!!'Q3_W,.IL4KJ4BdGPuJkaYL^m/Oi#\oK8GMjb%nB:?O!ISjHk%UL%B"+"rGQ6YD[ej\\T*0bl[qicGor]1oDtITKpRns`5&:X3/r-Z1dZ(ueTJ`3$Iu4NFQVEN?TL,An7*MHe'%i`:'"\5h<6DH0r07o.C!\CEHVX1PlAga[1V[u+D/XlB8fF.gPi]hT%>iG54$k#'H2N"#$F3W1VmJq'@h/1g3O@)pT>8>t443/8fNggZ=WahYd(h32oQV#'iEPpI.^e3^I\Wa8ZF0D?S0s`l)mbr'"45n)iKsbosQp?PP`Y0INq$LGRd6^4D7@ngpD>PYcW[sUl(Z@B*p/KXY@WYe-/@93,\%bcj*_YN`^KV>HYJ43Lsro:uC:OTV/l/Jh"$i$-Ea+]R4o/M;ZY0I10na8!$BD%u3S9j_:#,miX[os8u`i\NBGTn=?I5PnbM-Gu",0-fqG5o3'"'i/2k6!?sR9_\in:3]L+c[0S//B=eY=u\^L)NLton/B,4a>UW\U/9LedA7AW,:ik8X6%:%6ASj"&@VuIi`>#\,Asn5EN9Z1<[#D`6@cRGGhn0[XiRbbjiP[3=W?>m`1>0(In5"u8Nj_X'Q`^dDWO9m."pD)3nrru0\`1<+:G[9"HH\l'=S=bSaBOk3B$R"H;_u#ENAT?;097sqdHoriBS/r^Bkmh\gD;0Jih_lG&qKbiUs"6HfJ/cFee/:X7sMJHbt=bgjTnrDKX2qcD:[^\CD@bjLc6'aYFbEjOdb7'?tJ%qm42CZA2psFG/89U=X86+k+uZr[cju`2tAC>D3&sWt=8k+iLM"CI6fk$fY215hmiB\5`fSX72Ph\(ZFDh.k9!L(HZW+bUD-+`9//ga[sg63n`f0LX]2P.4Kt+bUCn#[rP!eKf.8&4-XGKFl!3EN;[j<[!,-63n`f+lZOd`2u?3+bUCn#XcP4-Abr\&4-XGKFilo>>5a>$6b'663n_C&\"2SDA>JD+bUCn(aUPJjRi#U+j463orsXX8m/Kb-QV+bUD]Lg*Rd[gF:3&4-XG$k]t;,]4>`#U+j465Una2+cRQKFgHU+bVO;ghN"^<D3VT#U+j4L59&.'"82kKFgHU+UeslRNubc63n`f&4.3XDDb#@.YJ@"#U+jT7,2O?\5`eXKFgHU@>MGD,]Tjr63n`f&AeuuX%D;O+bUCn#U+jEi`;8]X[3::KFgHU6c?)R3NZKtjqj#,C](4]DU!f%LB@KT/<"O[mPj/BifMZ6Lm]d*NPrra^NrK7nY=+O)**j%2NH)(IaB6@4nfp"cHe^6\DipkVlpm%`=Em+j$.JWepED9nK0]E13Q%O:koE_\S!JnTs87&004Sbc=qK'BB/`GT"Z,PRNuc.8_e'D\CEd]X\MFB.W4oMgo;]=[706hb;nt8l>4D@Q4p`r,]5J2ghIqj<[T/1't8K7DH.@Zg7n1ojd^L,FZ/5[b;l\/IC[0.pL_";0'*J(:3"QG7A)cm=_64,maV_/r;'j&U%!Y'd9I`*BYlCKqJ6QOVh%EX:Q=3'XT9f4+,"MSh?i[rAD-n[BH+2N#Q4C2h-"o_XW7(O.[[.Xq6S=-T=6\AJ*VqC$<9C`s:iJMY2jM4s3o>?qoO=q2.aXYqJC[56kkDKUe?m7uI%7Yt?/iiL/%&b69_RNT?ghJjIFfV]&p^-/61l@!0hXIm6O@-5?76H5H68Dn15#2S-\=b4@TsWIfm-pclf?^W>CF.pXqo?_AFk?fNGaEg`>T7[`bEQ3OdPl?bDRF+A,V9KrYU"Y#iL4EAB56_"%t2E7jY3bG%YIt#8Y@.)?+bYK\El&Bh9)!Z`.M8/Fne^A?7UN>5uSP90rl+Oi>f-F.gl&di43F2SM5nHU\Hn1qMAE.-Z4'`>BN;dEN;fj>Fgkc2Xd0X0]#:_^+i:b>VSoT38DG\4ogmm'rOCCX3/;LS\CGK,Ic=DO3S(=f\:@cqL,%niq!B\8*-eECIAu1h015:-Z-admG@DuJ@fJ5`#t8jhD:V=R-hUr!/53o\LKj.+.`o[h)J^(lLE^4k4.0.kB"t(7Nm?ZG0]P5?Yl[//$iDuui#=ljlk-^A^+kE+&LiD>=ldlBAV)V@V4;G?:->k\$(unY\`Gr@i.uBkIj&VXIA1VV@+1HQ([D(K`h!.@c>E.VJj&X>H_RNSn<(l"]3H;+A_&0YM/<7?e>"S@^*k0jf,%GVnqmb/YX7c,qi`8!1ghINn(q3ZY&]Uq6Tj$GVb;n.UMN$Lpo?)2C@tuC=_WT!*ThB!2Ooa]ahr=/m++gljMXBuH9I"S!*r^qQ8]gGLj,[*<14?bDqgo@;?[M]R-T,'3qDH.Ct_EN:['RiR[%79hEaX6%:%%OZ/%:G_[.Jh(iA9AJfXi`8,W0Q&b9_k,j%oeZ78]L:d\bDBG?1#)&V`%Bt`M-DRpeSqR7Mo+.d&,2ep9LM%)q[-\rVC/n=MD_PLmH-M(s3`"rDJ`LX%@=a6F,3Q;">gHU&)Q'4T0<]gOZcY+edi_SV;B,Q)F[*^R@i"C,si*0p'dAVpi1p+P-H5&]V4nuU:n)-GE(U]ml$[FbcZ3gZ]1RUj'+(T>iE1I='Tmdj3cr.^Y^I)OR7V:I&9b?JkH-72D#u"UX@Q5k+dn[9\aA)]\ch,-g[4]S^:,iX+c$E2"Z%JlC,65H0CBc\CGDAk#K::XfdLb]be/8>;bD@5E/la9\_+8[2Z97\CGWZk.W3dm>Q$Br[4u[%\CGK,>2iT+Gr=B7^#-G])]Ce=U#Hh%]nJ/A4$=/gVU.8$kQ_P]DB.WU)@XVC.e4n`]KnIRO_8PPHc!j2r]_YI`ss/rfqlJ)r&B6^`1d`go"86K(>7o&0C9RPLg/[r7H5GVWtXLel>`ld`2sNI=@%Ii`cu')C98YRZ3M%7,2N4)oW@p8DIs*.i6lp>:m%r+r`\`X^26i`]Z"W-RYRJID-oq]lu\CJmCXm2hH,n[Vt`3$V->Q$Ht[23h`/\#N(11#urSq>rll%d'C_Z.fNB/a.7>\!d'D,8C$Wc,G'(T">up6;pTbOPM7iMYOH$miJ#?Y^XEqUmjC>J4K"i?+NucN+"#+Nu!ek!D2>$r(`O<=u*I/(^K2Xa9PZMbW-cKq%"c5B#YK]!0S-31cf`(/N30l(*g*pYi9.*T"<3cg1s3%c^UA`2tY3X14FdMHcX,\CJmCXYqJCFZ=BA9AJe8`3&$"ENE)D$EN.7s4,"s`8:CA,/H$MT1>JVmL!T.9FgPZe]u+82C36`3,tulh!3\)FUD/F.rMbb\CDmCog%rJi=WjM=#WF%M?uZCYi"`Mk6=!?!3)Bae^6R6ht/7iE:R6i`=[LX`ik)DWS-Na>f^qF3D3Vo5&:JgJ.ID6QHr3p1)p9"#'-#1A&JX.>)OD+`UKE8jpq&@\*&ga[2a#.K37Vfs?W+e=O>,>C/a+mLD.-(Y7dlH`jjQ>DVD5*l_ZXWrVW5mJ(W\7cpPLu)>fIaZ.LWJ+@@nnH*g/R3.AMbC*&DupPknt6`I[3r29+>R@d")lC,65cCEIfQmt8R*1PJ%^>>6Dq3/=RQ[g#iM_?uuiloHF_Tf@:@#S;A-Z7I;5B3b$\CFp(XfdLbm7c;M;rUi5'=S=P,\mk/\CGWZS+BU->p4IkBAE]5%L2/j'.LgO.X@m>i@Wk"E-/T4NFS@c*>h:N*@k]DUh>6W_R?UL"2%"X^5Gq<]^u(g6B+tiP_k8/'1t)0Q+:g\5anrX#d@G(KMn%[sEab>O>,>C/a+mLD.-(Y9[nC_78$9cL4dj**FRtHqBUIoCuL;bjgek_O0LtA%R?t7/.9%-gIUU3plmp/Bhj)>0acTb)b^)m,oO0[50c&Cb3s2%14KqGK!gUsmtl6)DLuBSMJXhEMUa207e9T->p4IEN;fj>9-Jo.Ki,jMH_Y[DH5_Ai`=[LXgT?iF\UY+BAus]'"9ol\5`fhXqeELcM?:R.n*5f4^iXZ*kqOM7cTRfL&>bR3a3McpiPOTNM3f=VrL-?RA%_'riJI'5/?J)#[u^nk94`N1T,@GrXf?u0[%D(NONd1(V+0f4Gd;@I=pP7:_S5`;&&M9kH,N&Sfp4MHPF)hTuZ1of>Oe+LaR'T\(ZhOeMV?ISV^S]'=S;LgnWk0bDBHR&5V(2DRCF'X)$]q3to*W#8ap`@Z4MC-Z0Y#\4=N?Q?,E2"[-)U[H8ROK5p8)?DL$AimrI9[F.A_.IrNX_QirENB%p>?qoOg6oJ$VSoSH-Z0Y#`3$HjDH.@ZMHfIDh!1?:nPjMO4j%2nFXt`m*0U.iTIo/(2/>ninD2)f&^J:3`KK:+hp@,,DDfpqB6,S*]cV+sF]^0qa1@Q9XUK,Hhq=.$`=?U!Qc/4-:h?reiC_m?3H;+I^i?Ebe^h[@/odq0esZpgDRCp5X2BcuFV;0p;;tVrX/CbX>na]9CusZUi`=k"-D2sM<]+Ye"VA/sPdo9&`2u(W>MU]IX/"I-g0jlR=qDc&@?t)EkMqQ0grcZ+?V0AGah3mPW&C6(TuW(Mon9jhm^0$]h0TbE?4H:9MZOYqJ5Lht3)!c-:>uqHSr>[A-CGnJCsM"EkH0&6E)06g%lgJ%j3q%&HpbC5ARLg.j#?KtRm+MVZQea9Aj$#O)a\2Zp1h"jd`\!V$@lPgVNTsT+QkTgGOBs4]uME5j4`:I%>\rG1E3.JY.KR9<"EcJ#\9(DnSI(aMjlHJjTU^hd]q:KNM^pb6MU,rbgn:LGa"tRdBa\@3*@iAj[2NX)$]qEN?U7M-IY8\(YHJ.>V2&'";%>go?RJeP4s?>?HZ#X6#l4)slEfOqqJL(j\$T]Pf]+Y+?NQV-q]hUms0B36^Xrc)X:.'R&M_m]$"D;'bE\>kqdF-Qqcd4$]ART#b"a)dN2^j4J/fMa*/MC_!pIrK-/"?4[Jt3*U;Mph"$mj!SiIe[KUHnn+ZLOgrpfDRDQGX%D;ObDBG_Z@_5C#P#!/=;@egf')o\2".Bj]_SIMC?qoO]#:^oa):P`nQt7R[tB_S%ri5k+s+lqUE!CFSU@G7'_#56ikY$W%Y^n?q[IFkIjNrg3+c&9$s3G1d8QIi3RAG"W75+H1(bVs^)T+M[@FbW-#WB@h!,N]H@iZW-#U+PEN;[j(FV;0pFlHGAWu$Rr?/emG\gHOdo$V#ip6>+l:PX-XfdLb9bOq(S<8[ka/rAfDKS;*<]^u(RNudYS@I)tX09'oYdb=TRSDQeDY4'NX%V75H/_jp&\#?iX`c(02+cS<3H;)sF?GaY86#'LL].tGEop)K&8a$Dj"0TE_kt4?7C1AIl5#c-o+jD#3&\,M-Is$?6F,#[sEV8eKo+@4)q;mi`=6Z>LaEC'">G(i`?qoO]#:^o-Z1e5ghJihX-u@Ei`W/MhEQu-a;#np-hu(JF's5\39/..J2,mHTa/uM$>@$5hHf6nV%",]qhXi[D.[ZPjnMo^6H4on90/\V@^MNZ\?V2sms*CH#*j&DRD^)*k.R`DKS;*@$b;m=A(!B<;Z.Wa2B);?mK?*^Kk]A1WSDQ8Q#,*CN>+'lL4`B#BLPms1X17.ip6D>7&iacO:#,"H\([Bs`+L%h-j]F$#.NH<)CP'[L*%cOCQh\HUVRZd-h)m1%eK(B1I`5:l<=^Q6&qI&k*G#s[i-k\=2*.&7=DO?e00/FkE#`\FnhrU]N5"s_mbHk=LW>:KWl%06uf9h`3&$">N=]Oh(#SGXnEoUFbs>iNqWNnX1.+iEN9XO-#U*oEN?V"f!m\,[u)\UX*oe.?/ensj#oZ_lKu)]ga[tWM-Fi5q;$oY:Q*a&c`\;cVO^pYVfd_Pj9sp^X2V':*j$jcET=Zj4UXe].;;Y^U2^M"MPAq_gd>6+n[R+,EN;afC3TI,1D>SZ_/@!7-mfMplR]Dp0RfP@9RcoQL*$Z/brp,ROnkS&gHAkRhPZb]&).NEiD1EalHiZc>.H%Mck]/\gbL4pNVhr\CGWZk]/\gbL4pNVhr\CGWZ%;V^pKl?XcTGQF^'N3:2hhrN85W6bkGK[K_Q^+gNs%UkNa#d&\%9M[G/oAEMf5h@V>.oQ&&gP9.+U%l=jSAC3h2Q4,)9E[>D74QDS-eAG[?%`Dmc+FeKf.8R\HNWcVI>!KS`oM6/:`<\([C_eX7jA+1GEKh!3F"]CB3Lj*;6VXd0X0RNucN;cM93q<<`k0QF-FLg+0EJ5?!2r9I14>4R]eT+tN\)IblkC7CaSZSe3(5JTtgu(]\4aA*#D2-$VVQdt$br=UPNP\r_nOsXJaUd800)A'-GhhSQ\CDmC[24cfD_HMOa/nB'7@8dH`M\d-ZGVX73^oWC&<"SiFfXLYG>A]m+E$kpYh]f6nZYNP[ghAsS@;ZsghQEMU8%Qbga[3L/odp*'"?SM\CF:b\([(VeLO#B.W-!1lDZ0r't9')X\7I7KZ("d+`;E9`2tpDDY;-`[u+DGS6NQ(I'5hWJ%G0VL;o=1H@e*hjD[3r#n&GkBEsc)I.82Ncck`i`:'"\5gj,n8')RMHd2Lh!0R2XnI<#(q7'_SEIE4EoL-'$ur>Xe]kXi90k)W2ngrX7>G5.$C`GAmg2+0]th,l%^Ri.<6JW*MTpZ-[P2jE>[3sSMV>9F3l8DW20#ZighM'4d,<'+>(A)?qDjEL8PF">g,+-42iJ_`l!kt"iUj.7[%2;X^7FMi?mL*>E,?eMq=>DBtnn_;o\E4R2cuN$Fa2e3&ndbePY+_:crl.&Opc3o*tET`3#==[u+Cl6JQ<2)^j_uZ*`Vg(];[4(H'^%Jo[@FbWEoL,>X&Xs[9kNE243tFec39/2SJa?e=5m8e/!DK'X/!0HTm5k<,)kMDa/tYKXBQDWlhT@`d>a4SiRB@#"Q'l9(pa!NNA!.!ah2V)(33A:?God<:-#1_`HN4^N(V\4ErEPg)a!V&K7Y(Fac_h]9V;B)p)ddECeNL6)U=:"p[8q`?gGi_8@W^)t.+]gcScQoInRANf*Ni3F%Kgs,_u-<-,k7#:l4(3M`FSE0bB:la_dS#D.-e#rZe!UJJ(pVUjI%NFT!r_Mj&SZ)2!NENI5pkRE03<&(!qe4DABX4\5h>L$l"nNghIPd0Q)"IEN;afC(90'>7e94I(Y9583Li*[u+BUga[2a#)^MbDDd;m(q2P`\CDmC[0EOOX.Jdi)XmKgP1\,>k,Dc0PijV/cGtOS\PWC;QL\ta-D0)ElDn3*l*h`l?40`kH18Q>7c@+bsU:Oojha=F3ipu%?4qkRa3qFQP6i3OgnEHC'IEWDKS\/C?O+,R>DN;-]!gePQb"Fmb[Q\tQAK\(ZGDeV_;Ii`7jS&ojsfi`8.=*k.#2p#AZ#>E.W?`3#&/BWcF&jOOd"jg`hVSCXgVhtY6iGt5(hi&eEej(n1%i>amCcDlf/B.41FXS)d?(dD>+S\t5'Oe3\Prj1?M]]S%)F1;<8't%>A7K;$noqP!#F-eYg8iC`lFUSk<8XX8m//]Z%fF6NN9_GWL=#Xqd@!]s*%3`q(*XbA9&d=61SX3(1X=,L3F0lQ4Y7=Ng'bftuKD2O5b[_V:UXa.O^PO-tWE$`H)Q4p`2NgC(8d.o,DV0M8:MQHLSG*nkDYR'8n$Wj'ss6MWVYDHIXp7L_M+3NQ6eRIN=POjj='XrBthTcLdr2eM;RhN9b'Gi-5J_Q`"o6+Igfs;.H8r-\'kHo+A63n`f&4/?(EN;[j<[!,-63n`f+lZOd`2u?3+bUCn#XcP4-Abr\&4-XGKFilo>>5a>$6b'663n_C&\"2SDA>JD+bUCn(aUPJjRi#U+j463orsXX8m/Kb-QV+bUD]Lg*Rd[gF:3&4-XG$k]t;,]4>`#U+j465Una2+cRQKFgHU+bVO;ghN"^<D3VT#U+j4L59&.'"82kKFgHU+UeslRNubc63n`f&4.3XDDb#@.YJ@"#U+jT7,2O?\5`eXKFgHU@>MGD,]Tjr63n`f&AeuuX%D;O+bUCn#U+jEi`;8]X[3::KFgHU6c?)RM-GZF63n`f&;H!F9bOoB+bUCn#U'Tg\!eR['g`0LKFgHe,&T9[Z#4\;gg9Tpean$JqSJWE?)&cZ#;5:SW"_[fSfIIbV[0rd;aoW9W`uN/gJJZ_#[CUhNgVC\NDd^DPLZCIMeoKFJ"/o(MB[nK)B6hHO_6%&Pkkq!#LO\'(%2gA7Mb@j!8q/GeQ&BGoJ5.:SRHhN]ep57#*HqRD)Z8Y^!gYgC2%`Pkj==(.`'#rB+4K!4E7E;i`;8B09"QmD3B8>2U;4sOlti1-U1&X[@SiL0AIb5UaAMQ+CjH[lh+.7RR)eY5#jNOorpF8'4q'ucH4IXqDr6s-ft0ou!dgnKB?O]Rqp)o[?p.<8:.7=.2R-=[aT3A6tuHKR_!1r3?eE+Q/q(V>p>=K>V]V\jC]A+&U64``rP7,7&G&rg,GnMj4i=,XJ5.#5c?6[=\r:!s^6l:X]7:Kg3,I*5rE[P[T]3qTqg&\#?kWQ2-Dl,fqUMCV-o5htW;[sFdE4cM3b;47%8.B7SuKLHQUPlt1>b'`"01>&jYk(Fq8\CEG^)Rla,ELnf5--UaO%0Q]crl[#0ho=P>tZu=,Qj*\CDmCogDAu)J+`!1?ZVT<:@I*M^DOV$*L@pq7+sdY[dFO#t5JHX(t8u=LTJ=o4C4B.H2eRas,4WLL,[ma,A0rJ9l7W;r04<2Mt*T$92#V7@oErEM_=]oOQ0#(HnHo]6fFJ*Bb]#QDC+rpQUo&?1aGSWoKBKW^sh5D`1#Z&FAY)-B51&'`_DH3%1TGZ1=YUX1G*HX83UMX]EASoe]p9_k,^h<,YP?(>4LJFk0Y,->li4df^&8>>6m&Iu56>FQ7X+k.&r*`3&J1u<+tYmWOk](=siJGT)*C7r1rk@#%=HU;C@9(WpqA(=$6\`DC&)HZ,.E2j+4Am0F5;ft1%S?>V";;&LR)a[*E1?j(iE[,e+N7SoUptP0?l]H,p&:&N3(uhq4O1Gr`3%)bU\e+%Q^$WUQ_;t#\C4p]ji?0m71P^rh:Xo+&V^J19`RkbD@7Zd[tZ]bI-?i>1Dg@UfA\()>O'BsF$Q3$5lhi`1s':7]Mur:4>>2U!]CH$ElHiH^%_(S[AKq%TA*EG(W,N9S+l)m?]%4aBdn)YRc\mlrP_EUU%`(SG4a!?a;MJY@>?qoOMHe'%i`=YB3,TJ?>-^qk#MFo;h8cXh8Aa&9>@$5hcZfAueMSt"ghKdI`@K,Qs@G#(:,=Gqc'("r:<&eAM`>+]@^M#U-S>;g(\]*\?qf=(9d?s5jPecACmi%d751![nkq9dPnLB0.OU[TV%S)U/(!`3Qk6Iu+KsOgcYpTs^C`=ZtI]i$@jlD$JMd88II:P#`KbgK(\4(mj.EFV06(#Nk/8N2AS3SBFaP7/A7C_GSij)Kn[hmut73+-on5G+I$@+V8-$Fbb%!uL-)L.*L`V1oLfu]plVc\!\@IY+k+m`@]Y9Soo=WPq"cEmULLL)fCLNe>2oNYHs<:P]o7?bO4&!No4kl8B5ORXh/TSF>K5g7Ndi>&2)N(&USbX`G9>@aMU0#A0\+88\TPsC=S/5nbSVnDD:*M2/jW"s/1S]ts<&538.(XObT/\a1`Jp<1)I1A@Mic3QgqVNC%TRCcf%`(f3nX5/S9`N<1_+h/oN?P*-7i%_b\0DrE.JYTR,f(esX&o),+!KHVE7_HUgUpm06&P94P`5I&3o]_(fLC?gRY<$n(eT=6"e-d&u88K0FA*PO[=!^7"^F1o>_di%3phHqb:*_Mel3eK_\/ks1.X.%>r'.-ISXNaWV8%<\d#*j&DABXT>]HgSAXlK*]sEN?TLga[3l:#,"tDY6-4\s;m)E$-b)KVbM7:Me/FbMc16P/*(W-"#f+u:!=%),)8?+jC:T:gu`X_U/+,k_p`?4N2@-bkk3X\%(E'Mqt@rE0jZIdUFE[(=Nbi@%8Dcm&V0M9:P*3(U,3pa-)haM$W"Yp%2K#a>8ekT?_n).;>;[rO#+M-n_V^tSt?=*PB%M/^nou.h+bL]0uXUpQJr&Db^st6r%jc_aJ$@'5-GTV,_4K1o4$j]@cO^IB&e/qMMbUi-Z0[.MHe'%Y)-B%Xl^=ZS8Ek\([(V89Se>K*_Q->jR-H7I.UX?t]W;iZ"$U>9f#(*GBPbjPjkc]9kE\]&cLh0\B`S/(#jnbBI$O=5OB7+q/Js!QW0KP$bFT?7I6k%PNIZ&<+Ik-*/FL4t9#5M>Nl-[LA[PpOP]8CZf:#Y^_6#Ks4:XYl/<5OLb=3Zlr24;nSF?-BO^eHh\^HgI>XT"t?H]Kb"QS9LX\E5gQQ[RP`$UXF'L\5iIU";5j1jH/B*iT,kTDq(dW*&72t'h?f!]]f8A?I/K9s&Qp1O2+H+GCn60R(:(Gd`W).r(VE+\/hBa"RBn!T*m>gnKNc*37JI[K$tX\+Z"u0PUi?5J?eId`ettSTO>7h?2)!Dni,NY3i#9V/XU()OCat&\tZ]41dOnd(u8`Q9i.?2!u<#^:bCjS.i4VOL;'?eJ:JHVTBG1AYgLdTO=Mk74`bO-1!Dd1k9U/1K>e1%'Y1.XB>4-[#ErdrSr#IFF\UZV'"<00DABX,,]4@+MH^h6XmY4M)\]\!9u9]FXY+Uo\=U>3'D;Gqtd4We[tT3;eq&8+b%\,Cp1-Vjcm8rbk9l57>EK\0:a*!O\+o_8h1dW%>jVCpbUmj+Ve*"UYWl17j$$r7Y#V"$i[MTO5LO2ra0f+C0b4i4G`TNlA+VK*PF/o"!:_%hYg>i+jtmFKqlE*l90mJ>L\*W*pPT1ra-*soadbgL`,HdYd'?+S0]Do"-W$l#O.G11N.ojm2q3<_9M\c+RsHHp`EEX&LcnNK'h(7WTAijNOb>69>O8F2Tc#<`05ufHi`=6Z>M[?%i`;&KeU?4&DABW1M-F9F*6>FIG?;ieVIGKXl>H/C(Q1CDpIi,@a6[ogQSK>4a!OJkf,P^09_GlDc:3cqu<2!ETY'*ugNb7*lI)J_221%XiiGX:WoC^hYFKX'CjU0B?qI#E"S7Hf;@R@OTY.?;je`D[Jtlc$M!;]EBi*m-s7q'$jq1B1.-T!Sd@qi.34br=:A'=Wj'`NA-#GB'Ygi`:8CX-XF-]#:^/->jR-H6dAC[u+CP7,080eW8HADKR&1H@Y"nXmY4MEN;RaC6H*WA-(^kpMm7ceZFAYbPmU1=FaMC]Hu_'YML4FVWA0.1$;fO`eThXZ@Os^9EZ[`DXf^$kNAoO(!a"[R2gI/eV^+Pgd8(COLCob0Q%S4S&tqiVl2tc'^&EY8B#N-km8D`4t#HA%I]7$`.>8RC101oEJVt)gh4lh%Y+V%`BRr.D;H(`5B:e!@)@fOsX&=>Bn\MOs?M%8J(FZVk.4C*21lI2rf!>#+qE#f]!/QlgKi^tZ`Fj-Rq*NCUY]&Q`AL(duHOZrWdP&s'/7AKKK.7:TTC%iZW.:uF<^Yf'-LOgnEH.W3d(ga[3L&TOj'8eJOi>OBF%gr^N3G_6Jk;/nbD>E>Q3qTq,=&9l^V*Dl(hf.cf7mV)D-P&l'qP@0:ICn]B3W(34d,m;Zb&rZObt3f6arc"Mct8caXZaW[`b[`!4k4Z-Y#[sB<;FW\)=+Dqq'MH^h6XlIY-n\57$EHu;SbVQuC7=TJ0#fA_S7LF2C*M,=lGq1Z=c^:oMC_7iF_E6_l^'/=/FuZ&59@VsGYAn-b&f,)<#e`;'DjDBQ8:i0:ApurZ[ouP^.W-!1MHe'%i`:'":?#;oX0%4_X[q4sDABX4\5h<6DT.mN]TM9,mqE,.@Ik=I9#ij$jjd7Rj">[uR0FjtB\i8(03]@(JBECdubZnT5psTH/U87,VW#qYM!>8[#_WJ(g>JZD*q1oS:e+njIBbbMSEtb7Vn[-U,DFL:[O;9c2`='%S=CCtdeub;?R$"mIEB%[uOh3sjh6I.)>PT:U0i]iZC@P`MT#Za127/Ii_lNUG,^>4FiEA6`(M-l)VSROLpeM2+*4K*Hga[478DNL!\5h>LV8TLE+E"T$.7bY#FW\*X->ms_>K*]cM-F7![u+D'Pdo6Z`2tpL"\HY7mc.@(`2tY3X!]$]\CEIW\s;G>3WQSQ(?G+Ls#W,C#Z!N'_E^4'g[X(rf+"oOGSBUDMGH-8;T93-';<[2XO;I/9k?5[R64mQZ+WBJcK5QTjXE6@9>TY!Q!:[fIkR/dGU_U0^@k11.)&A5#lMFogpR-oiLYRD,FAkZf/u$T_&4tF;0GA#0,kVP/P'e'*Wi[I@)#;SH@.I:SHNBV.,:PCH/'kYoF47sJJmTl&t\[hU*#OZnaLg.hU7K6&[I>$[UrYYh^ril8bYDW-K9tQ0,_5dlWHqnbB`dKq>C&((;BrIT'(50/Qd]kc7tI9V3-YeOr3P?Le'QVr8`0n@2P%VVLdTPsO0nK\O?g`A#%(5("O!O6=(qGhcS_0`G]8IXE1F=Lt+@KqVC`V0Ib["Sna?Y[c+%-])%Z-Z4'`>K*]_EN?TLga[2A6aak7i`7!1\*AXeh6dM%[u+D/X_?h+]h(:.?[QjE(mm^.EJiXLjE->kPoQlNWt#mAk$SiN]?j.=2kfFa5f-4gMTlYqOaKKdDo8/(pE1>#EC0U@[.HJ(#NR66Ld'8@J^,>ju'MhRuM/cW!`Q\$#,9_dE6'dS^EW1VV0JD%pu5K.')`s8_te2&?;(>T=FLjRu\[R!j*o.jp6cu564`C$-CZ/)&8-/gm1/QPtt^S/k-nCO+U?$9[02K*T9ji":\EK@R/h=ZN(/Ee[$Aua^8YpV?t>ECT1;f)+uPhP%EMr>.uOgOTZ*0sfNFfo[CJh(pLMW7L0':;ePs3\W"jlZ7Li9p[;3+r*?@MQ;eo^7GY*bG_V`FQq&Il3[C'N[C/@2q+]]7d)H*k-0CSeuf\>5eIMO9A;9qVd=dSMhec`T^-\?r4%lH*.k93>NaPRIp(5BnrURe^rO9:^SJka)]!L-u<)tF+1U0J"!*8L;kt^RU=Yt/YVaQE1#8-M21iOPhl#=HKLX,4bsH:#tE'@3V:8R7,>Al\mot7DKS\/.W4n\EN?^]eH9flqmb2J[8F<_>**FQl4URP=Xi?2PJjT_PrNZ\WQXu.1H`g*(R83&s"b.mR6\[,("QQIjcdjnrh+k(H7a6]-'`+*$GfjoCg:\gVT5gdVW;XjQNDZ*GB'^eLs3PSc5+N8.Q-k=/;mnSiQEN`TjbLFo!K*]_EN?V";dged't;nQ\5h=!Pm[9Lk#U8P;rUjPEN9?((%SqCeG<&dtq$-k^JGPsZs1ImD#(]"fTJgI(qC8)[+YNo'CpAD/bWJP/Yl.p)2!Fli#bE"+`@nT#uimZJDD@DT`[!Le&moG,X1"VK*`(K*`(n$&s/eRLZnff-M_@HMk7i`?D3'0jb((dn4N/`^Y-@=J7sPF9NM(aA1L""3d?g]\8%QcVZ&!Hr_-VtAq)?*f&0b.#9%Dm6<%eihU/=gG6W;G3#Y]lB0QodY'8_.)/HZ0J:#1__)5f5,fmY+L!$6m6=RTa?#TZke`"@$5hEN?TLga[3lLg/]SXl(d;Z"['J)2uo!_!..VlMC>0ehQ?]ldH+)'Gf@UWh[o;Mjn,+i;[p"5%H_"tPV+;*sE8!Ue#lZloO.<_+h*maP]NaMIQ5a`;1XqqYiX5DB#[)O\/cp*%atkWr-pIH9qt&k&6)'<18jU]<4$B`#RJRbpM6a`<)'@K6pE(dJ6!_^SABYDd1%XhVNt[6dj.#NhoR!QKX?M`!r&iSsAIUt6u6a!pl\D?=ZeSbtCHg1IP.g9e4M9C0I/Rim?R,WUF'M66FY)-B=a/pD=>K*^N-u%HdDRE^3#83##`NG-'\CDmC2'-hoC*2G9pMm5=i`:'"(J5UTMHfK!q11roms_>E-ZC\(ZVD\J82uL=+&o`YZZJfM(iq^;I>%Y)0DgSA4PO"8m*$W?8.#GhDE1rKpIg9KWS[;*_QlCs8Ck^4o@E\`MYQ7h_kc-n?hYb9i"q@CAI^8:iOkmR6;p/G.fIO9@^t(1];3Or&m_k`BVl$<>jkdR#t)jWe^C9"`u[R/))XOO'=#3i(db,30O:"J5rEYg6N6$+lJ=>`^i+a"$0K@Gt8Z+1dFjV;B[AM^a@Im8cCNa=XG(O=1\VDFKZq[rT\]c*%:b0nfM"N%dqsmOcX7`AY-&BCJmb_#A@0@5sD.*:hC4A\u&jQ9Qb>;dL"UQuc0>76MHAk_^R>INdr055.Rk$s6\MX`P7i[G?RpH7kJIQt7pLV?1^n<*FLOgrpemVHmDa[G/iGB'[nlqM"VS'^)M+NeXfCk1JT^)[OVo2]+WKC_2=,q8hif"HS&2nYl_l'8A#bf:#o3aP=Z48pE^bH"R4=BM"r*4&7Rg0jQb*MW8FpB$N4''Sd-SOKQPW#?Re'KcH7:oh787h%;EonMn#!r!+1jQn+]S6k6chDo/i?hdI4LB3J)I9*V,-X#nK^g8J8tb_a:"M9kW#V&-75-*2Y^,6[@]'+rd<;f$e?bX0NiH^G.rOS3.!mA_\,Lo7nME.l@UIV1>!1Hslf'2M#PbHSTd5>Q`11t`Z83'/<2@IKZ_gMarJMla4,oYfrcYfH,2g%]03>Q+i=V[ICQR?0;/pe1LU+cF=bq#T3-.mB!SC_Vlg:SrK>n(jt0IU4lk_W!#:=l\io=,N'Vp\\3dVY'fHVY!,(dW0eaNm(mncKYma([##J=RgZd_K`gfc$MW*N!!a;%n?9a(6(CAKJ'PLcC$%$3]=HL^K__s>:^SP/'^6h]#NO8hVbYPdQ5=j&ZVQiqkP0>Qr7%CM@#8HoRp`1b--j7RiLlLf"rGs.j&]6I:CTGFAX;%[os8u`i\6$EN?V"IG?;i't9')4^UIW3:fNT[p"p(eT)XNh!/%tC+i+7DABX<>K*`4j&U0#\5h>Lq#YTUR4#k]eV_;IQK+@m*`F1&`ZW$UB=Gc&`Tg%f\e;_)a;E&b4LC,M)?3m3YGlkFF(U(->_Jf"fQ<7e2pudnlGr3Pk7f4*]isH$C4MGK$+'nDsOXo9]:h7F&67)r0TE,6J:\ibj:YI4?HqZ`O5FmlnZZ0]M4&VJ8234pJlONd;fB.%F3@=.7B]2OK49\]5MoApa75IqUbZN]HGcn=S_dGPf9q29usP"+trS3=X]&t[Gc%^[:uZW2fY=mRHEifW40\[V**r!*6NG-L[a7+GeOE%CFfYl2,R7*$+#9SBQB]jouFFXXF16GcnZI?*d3"0G*S\mV\gu:$%jb'h@-sYEr+cjAcBP#Kb]'>0>=$p'ec3h5OEClROaZLGN0R>qT/#K$NMc)7BHbAr0/$+q"C3\Q).G00$^N\a$+A2p+6fFoJ!7$Rq*k08u;)rUP?7IU(43[@$5hEN?TLh!01EIeOS">H.`.bemm39'JXbu5^!prCKmBpd+-.]Ejm+Mt>fTPG\_XOM'5W+Y1RAX$);EH/m!Hq9L"YT%\@>Q,E+?T23r@#*i+#TF:H9#K&O]VjkdVT$!*MPB5n0L__;6qAD(@W&Hoj_S!A#X0H>o"^`H[/A$f0D'Haj+@R.E5HS5WS9'7kH-l*(N/?A#jap("EoHP><.ID@Ghs:]!i#lQV65o.4-6W-@I/dQ,urfhdH1M5[Xfc/Q0Wk*!UfIW`XtaUW9KoVnC?O'RlBXR!*_3h2W!b1933+S`io'8ZV&5I\/l5cGK>`RJ6!'Ek9,CRXdg%8@V=?Et4<6ni/-<`N`!S(<21@28T+Eb2o@-F(O=O,mg4+Sen(D_Oaiso,'O\>2[H76h:pE'Hq_OF+c\J:q^D`97WXl>:h4?FW\)=+Du)i`:'"\5a-\jbd8:'">H1>K*]_EN?V",B9bWga[3lLg,!c't9')]o_GS'?%"*ENA9mj)M+mh!,2@lW4%^_>6T$=o-fTHZS0fjgC9$R5_k4+AoQt//*3-56u0&\+/7J*8n"T&Y*$Z:6HjNJP<@9@LQUN]qh2i,faoFAfd!)*_M_^)ifcRE';&lhH/T)%8jX#YP=Eu3UCLSUce&hdkfhC3I0e1Vb"0C"]pMXpaS@Rj-fDkQ/^9k'X65@clnt1U(eFU0tVn%Ok^(glf]-35''HV,14O3p&aE$Wrf;T.mmkQVMemr?3h,u0mXJ((ZAF6m]/^O.#'GKj5/4J">Nhc.`$bK.-XPW\AE.(J`BeS+jmf"ga[1V[sAh!MHe'%i`=A=\([7[L"cAHQQ%CN+X%abbA)5;P`404,m3=;qSt.8!0V&su7K5'2a1ouocP,Fs%4[75f[q#'UqBa6CpE*n>!UcSSpmEm,?2Gb,I5/FlO>OD&[Ufd!t@18lRB.C&[DN/7uUSCpdVr$q9ochO>YXl9F('/5o>)nR[&3F;+^%2BRb*5BK3oRcYeiBghk]`4(`Xt<4Kim\F_Mmpil2XG+cqU_Kc`e58!7-K*\G__H?>uW1/Vorkc4tpL:Vu[!6f2N's8*^3If@oDj1/9,/X]emc3=1:@9!LDLtF=+-R:H_Ii>#Tn9qhZhOt.crd`PY/:U,hQDm3P%58,2e;)XWn@e"#UpWq#cXk6WO)cRii*>Ua!BC\ECe1.5Vr(n=RYfq63A%'!#oR<;VM+#IH4jG.?B"pWbUeZVR/lWOMi6VG7X-59t+bpgfZGH&H<['JR3ua801C5iV>N-[CTP%-u4K[YI)>edU7>1'EH/*Zl[^2RITCGQj3Lr(u30?K=%#!LJi>YRXl,Fi]iXeY\F/ga[1V\!m&9ga[478.cBAi`97p[u+D'YXla8i`:%Lf-+5T+D9q8hJ`[]#/(Q=\1[/+[aB=iY.>`Ag5Yp<*leGr&9%>q!J(^Dkpe7".bEY>pqD6==>&k*(irq-@p-uuSjjbhlO>Du1G@X`Ke@(P:hOjg&r4,7_8m3"X]I]b(d=8+>D(a+jl0@T-$K^i$P<[BHs3V,[X!IK$q12^/#p(DSDa?6rqiS5p>b-'T&Dof'9Jps'0XeC0?44enWs@WbQakQJEN?TLga[3LS@I*ci`:'"FU+Zt(:W"^A)5<+LF\ln@(4%OTaAUgIp!]&7HYG_E6XTXV`5[7-Pucsp>5Gn[d:T/qd\(V8W\te/KkdYQhWOW*M]VN,)1OmK&YNJ&(FjrQiktOUZ=$um$[tQ!m(tTDe'KX@_f%fuL49?Eh;hd%Xq'CK:_q?'mVo+^=to*0h1]2"r;X@4LHo#B5d823]JFb:QAb7J^5V6YXZSb'LqF6.g3eF1St5*(jG?7!6eT#%LPI_?A["?[L>8b^,8oM16gA:!E>5nG>UN9N>u00(D3_P%>G\IMMZ-XhE]dED3_P%>G\IMMZ-XhS@TT/,'Mb-a9c5&"u0AJA3p6Cr?#k4"o"q,LHdU%9eD[NZGP[(3:gY@hQh_DL!=Gic#?\;B8.@25O-H3=@CYG20aO*"#,e+FIj8R[42M2C'?]*tEC;8Im04Yno&f9'T]d7=0$=HUd(&2$$i!*&]J01$aP?@V-nK]q@1%(01b.4sIA2;ck%+l7aJ9K67pl.32K0T%/l.b?QAUUY!e4jlU!XO1a.YY5"rj&&roaZHp"[`RAQPC-&H'T&r5rH6j9AP>]Doa3QFIL;`_rkLYtQ&fCN^R$U*\5ob$8LUQPWdL'[.cHmBFYI?dNl?^lZBreU@g+$t4>-gKJlB.bUBreU@g1j`(doJ8=X0[5:[X&qAoie[eg?Ofo(29hVc[FXuY6/NRf=Pd1sX+2Y-@b^uDPk#PhB+!?7+_RPdMIqW/_Ma=EbZKth$nJ6(7.?KH>^g"6gV6-mJD0;2RH:?O;D3_P%>G\IM<`_?N\WaH_9%rQb?(&-IRC5^l/^d[6X0bm\.W(HZ_WS:+g+$qC<&neQPI>e*[ecA*X.aTaDS\s2dmGDCI9Hh>E=5D?X#d9sOZ>pbQmm\s6pr[2YpfSo4oA#m[L!"^.i/7pU&l.R"JP6?bHEHfb\fifDG_08TO2nUbBEdP"^TtDjq\\";K3)D8>0@Yr1S8E!*OlRN*Zka3<_`>qZB#fod&F&LI#/?i!eK_VTRIj=.ZmAmuYOP3,H<][dp6f.KO35lUnHiVQGBg7)ITL*?2@#Y57,65hbLLdT1(_ZrPg0D=nf]X0gDmYt`qePI/m5Uohr)3eRs>XjU727bT>/Q*s:hV6+&KD3_PU/[e5TD3D?=T![&$>_fQ"ZrPiFd@a-rqU,Dn!R`d'6",\F+UgC"o#"\h7Bjl*_8_j)IQl<8F5^aV19$cX"sjO4L>0J>-Tf`c(d$9te'+AinY2HNHI%g?Ol\LreCJ3UgDAf*,nk6DbR%PEYAM-P$(M(2*WH8.1C9t3JJOWB(H>&]Bp_(oFTBkS8O*P"^no<^<6EQbIME9dl1?"%1:QnYLr$4[5s1u3,JcYJHf+AW8!lirM./P7\D95q_UB_s_Rf,'M[cV`LV^`?'&FY`Y;DR#s)hN':8)64`b.Tk:io_,Wt\+2/UTA2h9)VE5jQ1?-B8rIH("j2uMZ-X?BMZg>MYUPg+$s)[X-.P%r&)V[+-\TYUi`kCq/3FPA>;uS5q]2cqBjP`MN"*)A\YL*uCD!^*bucpoE'G^OYm(*a9p$%j:\*la-edNG^'ihnV4f`k$c>ile6,A@G2W=FKR#KcJRK;M"uq6bL*?m##,9,;o4Ge!6`^n%b5NBhSokC!\oZA-38fi",.L,!7Bmu[LprpIgf2Wt7+Ug`8p25mLp+_s&=Y3boA&KGXIN%lLfY5$qZG:O^ZGX4Dj*=n=VljO;Fh`5TYKD)sCLKGU@`g;9]XrqEq,aUYeftfmB@h4@[fH7P*-U-VDOGd>e>c67h.+1)BoP!47E6`ZH2/RICKr2!#M/(.I4X0gEBrLUHd)=!g%]&@Cf[X+(E]'6l[JO7gdBreU@g?N8'l4n$6ZrPiFb'm,jbm\_j>MX8+8R&l!>MXC-lp.7?X/uec)XrMX.'r5ZW.@<'gu?5:KK\[\$lc>\gY`pPRj.CD`Ua#!$Z^4q"C49/_cu5)k%Fr6,k:U\G`S:0ID:7t@Q$W3n1F!'3^2$9'L?3^LFUcu,c1r'85T.A(,R$hAc0n^Irg1BTEt0FG%_t(T-j>WVpH?($Fg$2K$iRaIa"aR_9YNeH!29P3TgI'D.)U>el`IT^b)HI/d\&UVe9e@2HUgX6W,\SoV$=hr[6^5bG7Q>*E1'sH+)W!d8#b8]);k/SgnW8O3I)tpl#/=dO_r_n.E9D[E&0K==e=C$c`^)6kS9X=]S^KY68@)5&3mP2s);V2in4S@]a!6e9_F3u4gMrg>)Wn#3!AL#=s0KnWY@bYbIR[8N6E*tb+\6"hhpHUX/pc*C-$kc<_-D:(_XRE!<@69XaC>M"4,X1%HF-C/57Z*41PidjYb1"fcbu54O9;e7G@$QdT1(_ZrPiFlf[uXZrPg0D3_R+7b[,BBreVk4_^t'.sBY3PdFHE.W(HZqYIaN0Q!)`8mA-o^6,jM7G95.F\g`Vm#%@B3ot(`Q$^PQG+)uEl`e:]]L/.(%Gr'>7c2q1ZK'S6e%m+F*"j>c1R*$\^Zac"kHFN5dYIRVmE\P@Y2iF8LKcjBi@@"G4X;("&$C4(*%HAMbX80";!C'PG1pSAe_8.5.m%OiOP%*e)Z3VE>qf6ufaj)*Rht&%QSehGG.QFbGU1E7N"1%b]Oo1(T.7l7kHW\TQ!aXdhV_!phm)":SB.lj5btpFC#fK9o_a&S\:EdT1RYXrG9/gmJs?$h[nQBS;rAlmt4[Bnio'oiKl4C]uK([F6&.ZI@Vsikb3DW^jq"dYGh)1jT[t^6DoL',6Znptd!39M&Pd^V,B.4l]:F2e_kH^nVAlh=XZ!`6_mItJ\L#mBhVOlu_u`Gd'>;:69:`X151nJVlKG._D#[H'IDC=<2E%$.4l%\P=X%b5<0Pr[gBEd%./8[6\Og[=4R:rXWLkpkCG[!^CSL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]SL&+f&J5Te&Vin]S`ORn'qO?%)K797/:<.V:?,PG)FMt:Ih)d6>_HnOdW\s(SXl5;jLVmW6g9ZRi&oZB+n?KSTM(_#hsjhsN1&,m"7o&,S`nBh.upli-I-#N<1D=t^h>RQn4j/VM5e9!(ibrm%=InU(0_6+9)#DThEi6_$jio)%BcV:r4Ih/+4REUR4:"nmr9Gt/)P]!#ik!c)JNjdo,j[43/hCM%fSR1I0cDGlTcZWeP\5S\,&)BDD1[N;;5AnA+qto;Ig?Op0e]Y>M#E*OQ>l'J][^/o]SQn,JE%(Z>)4UrD3[>a`l>D5Abk]iCoc&VBWrB@TCDs]+!2tuesK0+q7:+b6P+&rhi2ma+"j6A>rG$rmOKB9pLQ[U@-:4lo>pp*p@(qO+QI1@QH0)+UjcaImCf21%llD1OW8R'H'BW'5?mibc8S@N@7`rT8j1TLL`KP%bCciJrD8rR#/;_ZAZ\!IFMU`L*(oR&maE2KDTJRV:2=+SAWF;UYOq>,R5/mP:?bi+G_i`Wg$63]40B'Z#?P4-Tenh?ITb[R>'46:Jt;TqPh#:-l^T`JXZ_1-po>S\/_06]f>@<49^U'U$2Y\d14N*mU`1T88V_D9a/M^Bo=hhKAnq%X(:G>^p$_70$_6"ec$jLp5J0.tMb/5lj_=A*hG%r`K`/Pj@$s!;o`K#_G>hmIhWdL4i%):!&N%:Suk,Blpl?J9dgg\>.s3G/P$[17NCRmV!#8r9-@6RqlSMdKXI%8ce+=:>YX$G`N1,ia&[N03Fu/kCq2)#T?s;\+L+-G+%SFPK)`%$TDi_A+&s)tX:krUkjr")\ZL\>HXl:fDQjDZ&3t(bNM5prW9?[K?rQ*J:ild(-=Od'q4X(Or[IMA(JV0t7R?\A4bYrU\!)dtdN+K6/)KjtK1F%b=Y;E`WlZ>ZR/[m^!9+'i)F%+d2aq%u2:JrjY!VR\;dVKb>Kmrj3a;nDQ,5=n$W=ro"^.,S+c[DXk)HVl\cYlm-bP(`W+-`WNA2brZ=Q%.9&i4<+tEp^ED=E%aq1Gc30Nn4H$k^LP;*%fD7(+]iRccPX2Z,9XV^Jt7\I`-(,Z7Z1'\HaEdaJAcQP$h=#rfn]%s2[J-n.6CIh"jOSsSh"/RfJ9aj.u4f3TG%uKs3ZG:s*?s7WA:reoD8pDE/V6F9+'u.M7lWFM['VO@hjW1X&IGI0@Nt*86_pmmR^X-QIAlq6eZ:]au6ac>1-G-BreVkCS\)XK#+hE.;>iLBrb=2XjU8EUoe7PBrf8tD7*MX)r);_BrdZ/@%ZPe'ga1NuJLRE<)Hq,N^.&nIB7M/b[P/n-ZGffV!09%A_%H4QN:Gj$[EN849.C+CKC!biR(--kP4UHR8gE",n40-3?@S\mtkLGUiG[g=G%H(L32PB^s'0K?NY5;!"C5[k3=3Un1E\Aa03_oDf*EMTG6,&K2a3&G7$l?Wui<\kfLm_Q9\?/"QNdT/$L]58nC^am_7&_JVMmC[+:"L-LL(>/c5"dsrpt(qc/5FA)C@"R(]2Hc)?GJ6eK/`nC@KUHIIPT`k%3f#VUZjFh;0?lB/H.7b/Iq3`UCgYT`urVK0(+ef,aF$(`U84(gKLC%#*CX$'E:.Tf0g?MkhJJnPfZqLZXds&)`7j^Z'0$+bJ#09M-Z(`)[Rsae2"'e=eQEEZQ?!G:.\['9Nuo^BrejeHW/Y`'G@=G?Dahg8D7f*D3_PUB\_EXX0WiW@ft.[B0ApmSW^F-RC;rGdT1STp854I.3qYm]hDXYOJgW0\Dbj+G8\,sMmUhDdH190p/CK#@fL&'jd"X*LNu;9PF=`A-*Nj_9j5oY]$;W1Mn^gfuLa[ZWp$%CNi6O$Yo[''/BlMVC'0&/9mWNa0&N9F5$QHb&6d?0Hjrk>aXZZN8KbN?kbSu:i%s3%OEpJgq@WFUD?@Ec%dHD]?Q-Pdu)hsJ`"hnS(VrU+gGE!Z27U#F"A]/ET=C'1,NR[+4iFXjU6a/%8s@.W'<(g?OolO*Qqtg*CNXQaZ`uOA,8CXhL128mA-odT1;U0Q!)`H>S4->Fe)!>YSF.mpXpb->iFp[+,8B[Rsc;Q7Hg;[^n_.\XQ^s^%O5Hr2&Dhi"..i`r%(;c9?%OJAL2W]+92.FL]O^^NiQnqIkrW$pM94R@ZK`^k]n-WBX0n2dD"T'+\5_L)+9c)16lmr,t-1>VCT3IgA>qdD?V?$lRdP\9&,hG'5uiih90kK&(.5TjFPbce/hcG<@,rITd8m_VcO6Gm&k_4PT$d?T@df4*9=oYer&b[j"0!MM9'DdKbClIpH4=!?^5<4?R-lT5B\ZEi58]U@VF(@sg\8W/1b],c6/U\)BWIT6(YR@$&Er423np^a>-a<@=<;n.=sa+ZXB1OQ7!_3!u.343[JWcQaTLjM6p::l8;+r[X&qA<\nHj][Jp\Z4%]IS4nj_%)bkZK,5u9]t+a'!nl`AM?)gBS3I\%5PeUFnO?&6SI=(fA6:f>P%s`sOY':_$bGCDWQ&T"4mNI-IdeFL_qq!XoO99BU49Q1F`rr$fP%\fq(0pg1(>SbX"mtY]gu=.1B9.RQmRdsZckkTJ^l@ehfYaCZK_'C=R(8`m+Yb>n4D^Ti>N#e,Bm4n!0/'j.[h_'=bjh!ic@&l57;Vlgn=\=B&4\SGn7*Y!30jmDO`+Lp6X>uc*m\<9O#9JP5ptIWI)h8^l49DTiei6?Jg,G%lc9F\8!PZdY[cjE(>.rcC[0ABr!JBuC0=/bjWK>.8U.u@@j51J\)f?S'BQf3Brb/\1i8MdHHef.Vl_!Sf0*tnejJf"X_&*mW3$l*97NDbA^hi]Z1K3g%!F/h;G!QBFp4bZ"!cO;>Lio!86%gL,;$hf^WqD"o(G+&l]9RCiJm*YLX5\59)K]ELe$UW1Y@QW]Xes:ROSQg)h7Zm,89pk`1E&e]&?uo!$\.XgT,P^FeJ%EaZq\iK;D\Fe2W';:QE9.gUIJ#gQ!GdL$+6Yi>eLc:&4n>j0)D=p.VXg[fM"+F=?(P[3XgpqB_28ST@Z[fAB?Dt-Q[`&WuT%(uKb<5D_0Es`_%NhFc+oikfn,1IRPB5a@.?34QFK-mhfU'GQk<;$@OlEL[^/FKu@6418Bjdbe]k8=LldB*\BGp_IIo52h&H`fL(.rIWGMH(0%E:N'=)8T3@>2[EdI96J^llG8#f^e@,i.Pididr8iV?F__Ocdja.gI*T]S\?uu[qtVDEgo?l6iQ;Z_8Bf2BTq1#toJ4JHaMgn;oJ0M#'Sb&het5uIZ$1OPB$_0FdI44S0Z$!%[2@s3qZR0qK0d8f4Fi2h[YK<_)1S1/*cd0D<;BQ9o#e*oEOQId5S#n1#5MDC([?>B"_J_/nW4QJG7<3Ca4+.-%J8T*@_gFZ`]R3KE(XSQhF#rRAKL[`='c0\==LcP_>-B[ho\<0lV1D8k)pbmoP-BIGMh^qh3/LCLiZLp!s-P#?O&$8Bdb"X<]N+8al!khANBT8m@jL[Rsc[PI=(fh359.`JN&EO$hXdA_JVNQ*s:h]cqP.!CtD=o)iQ+"93[dlA=4cK>Vn,[H*^aa>;?+me(rX,Tj-4JbR6ar*ajbfC'cVoSL@$&=.)u_>aAKG<"n;o.YaEkAF]XNL@LJ>UeJ[V;hSTqr,M26m$Bm<$Rb;OU5LBBndXB[kk#(o0M$m'G3n8JqSQ[+D'b<1j'!r/YNQF.HZf/4TFPZo!cetB.djXKPi29]X34:E0LTrkidcd!WL@a.EeL+d.G"u6/,C+CA>p3t/_j6.K9abU8jiB.WAW>>be/t;3D[G2tKoh\-u&RG0*3f1D$c\uKt"m>+a&p)5.&_T>-M"J@1H7o)oXF"o!XHG_`F\:BQPdJua[+-\TG\IMepk51]4;cAnn28Ua2C(@k$GFkTddXM]:\2al*3),KOktpt!I0OW\VMP&m.JE0GT5G_El^TPp15:/M71965*O/A*:l8HXufjEQP@J;m#4;A%XZZbLPC$>%s^.9OSJ1_#R1fF*=l!U%YL&IDoY4e_;M"3RDD6!%N\O0*=i[_/J#m@XO>G83*"!6+1-]0aW7ND3:YB)&ejtXAN7[8_u+OO3bU&"BNLVO>T&"]@gBK:*uYRRiFT_#9XGPN[SOs=T`MQ/(6Fp$7rAc#TGWu4g`Ujrku31NB$([l>GF3OiYIRnE1XmabFUd25)aHV)7ps#L6LZS,(50`e[+1q6[^o+9V6/0HQYNR0HN*[@8`cliLnAs>ee'.S1'W0,L!kH>pfjp[GfW6J&H=$MTF3/`a$]2qT)r^4lrgEE1q6s)h(4#]g?h!B20,DaO>LkE*=kBLT]q1SH?1KMp]e>h+D:FafS2$J3&LUOnkcp\I=p34Q4I\oUSqH9=?F"1o1Z,k552LNB4`$cbfE3aiCOGg+$-UOs>D+OR!"Q'3&dT39AXjU8EUoi'GD^'%`[^p)g]siU!dT39AXmXVFe*`ZrPiF[1NRVX0gDmUodt#XZgF=M:5L<$Vai2:YKPYS@6!PBreVk4_^t(eP4=nd7qB[(l%6.+F.=YGqkicfdQuTlsCUBbX5^W[6ZHH2WuZD_4fbAZ,)N0+_'jJ/%5!-a^"OPQ=7g$%'hs&E9I?j)HJFJEVIEs^u-SRVb`_Pq##1@dL7KtQjtD8IYpG.$lc!FkfQEbcpP\;_[GWEA=(+f5'm:^TL17?I:."RDe4QM[@X>o1(U?>M-]41*d[4eq$8(8cn>[)_\iT[I/ee%E5_DiEG5.L/.Xq^E8G?-/9_G$k/n2cW0aROVSf^/`HWL7&0>fP#8]#bM]4>[an:JoBm:+qIh$;rn4^2(HS3^tO"T4QZj+h):^d?PGY!3s6$=1m(XN$sOMcn6>OE!o.>$oNof!]\fn4r[F;UEVs+po>fc[hM:?r@Ooblq<0[=-FK>G\I;T5Sjoi@'EH>Tqbn/T9WrA(1F=R"hme@*nH[mULQ&#Su>$%23S,ST]/pY+Y-C3=]H4c/Mf\RGDuZ:ce'5&%*6:FKXTgY;aM)qOHALl\NmE1UM:!H`@RXbg(XId5glG^1%,r'$AY8o)G_\F'cU>YL9bS=/a>^3Q5eT_TLM=Z%k/a%8U?Mq^LW>cI)V.muK'eLsm%gaY8R&l%>G\Hd.rCQ[H;cMZ[X(au.rBFo=PE$mD3_P5Uoi'GBreU@g?LQDkW\i&U6hM=fAOrONH^jkE(J/_8=:modqmXAqQ$X%!pnD5.eroSUZ3=a"]ie@E1*QF7K,!@/8sCO2&M+)O(qEL8>HVjYMK(UR)QV"@=BR+;;Zt?&K^6#D5)Z3lHW@deO7HhdCd_Mb7!:TI1P4C5IBJ]=Bi=XI/]fC=2&2'r\ARS="q^\DdSV$q\D7^m-q[rC;I$u$'+D7AuIIK1EF+snc4bp*koHSFJ\kMi0e7/_Gm&'K)U3YTTVk4hh@a0mr?72m@W>;c6\Si%in:O58_3M=5<9i'OY,m1!`p,.)D]<(CDHCG3gAq\ACSndE@]2AIBU8(^fpq,XhC1<,b7QIEJ_5/KQ%HH.ek:%aN\!oX*-tBreU@g<-tSER*YdC#>G\IM<]EkYdoL[,X0bm\.W(HZHF#iMQ*u",[e_ZgZ0X3;[eagol4n$6lUbKE`s.'nUV3$k'cggdBR)J*/X%QMlX(:oi;;b=P*]4WJ(_E6B4^^uaTRIS)D,G8b6I.ql+EK>F*bB!lnfD+2VY.kMh5O`9%u1"!:&WI(AE>]B%f\Aab*_dRMVP601jr3%d/(Z]&M6n5ch\O,OEamLAN(t8?2[D4QD\q^mjHX`p&_=m@D#<8PKmgLE\.IC6\M.skeTpiDN:YP(dD=p2IBreVkCR3FMBrf9%D=oZ$Q*s:hV6/T.GLBN+X0e-T9O#2$>C@&&93[t[E+h9`Vld,r0Ptq>C!p$:06N/o]&+ifJp:iD,$A8+=l,L:A&t!jbr.DHR"n+PhGr%sd\ia$ZS"Y-?hGf->gS,,!r?F2nopfVBD!ThSm%R?-$aR-)A\cQV!bM&hX3r3#\=V8"B/1mma-Z#I-;h!f+EZk'X5e2n`J`.:'n]J4Zp;[G;:AKGm5bIqu/1&aWjCNuLoV7(C`HIO[.\])mH33hWq5p0J&'+5U;\,gu%R3FVA`>+CXH#1"5=QTs+bDnk!,]BdZm)0!Je!8YPZO3^Rg`eIe=:bH*_MN+IIotQ_DB_2N-h<2uKH\eC?/ZRrZ%_#)kQr[GnT_jI0,dE!3jCeSdr1'`58[?->dlgBrdS7X5h>KD=sQtXj27Vd_2o_XmXVgcX`9%rR3LG%C%CYJ&+D=rdneQ:1"a*Tg`oj6A;K@p",eLA_t[+-U$X0%,!Q&U`bl)sXn7dgo.'=YKfS_+/&L-$HnNe\IaQ&#:oqI#(_6Qf)AT*I)'h7'=*H^sIcJqkoGq"'m,b!fEH%^!Q;N/&#,6ANJrgp+c!_*]E@.m6!o3rH[FdgWcl-s)3`L)rJ<+^4#/*ra[KOGCW)*Qi[2*q$\kYS9o4T,"ZJTmc:dTf.#-'*s_43,`@i0#IUt%1aK;nft?3H$:1c8oN&"^m%fS?e"\;L:Vfc3@U6"DkF"fJ*mW+p::e'gL!L%F0k3T#KU4&6#C_YjUlLkosB:DL!^&(V$>IiSg],RCa6)/48P.;]*^U:LS5&pD88_@a\rQ[g?M&O>Ieg#Qe8bO`PM?>d_s;s7W8ru9H3%.mIO"6A5^!X0bm\.W';d:"nlP86_pmdT.DRBreU@g+$s)[X'b@doI93R'o%%D)IZO[X&qAAplfsdk2i.E?DqIZH^/PQ^4ekV2T,$*)Vj7FB&5eedR3@\0QZ^XbOuI%)hHhfM$`ZV6.-16gtsjMR!.X%D%*_)%r!_BR>4.>HFr^[?mI^krUFPUI._^(6QWELg(jEHCL:*;shr(33=J$)$RET5BVKC,c)][AbA\Do4cU:tLO8\$h$4^(uTIs=$KB2T:n[WK0>S\3g#nMfWGGm_G^@p5+T4A2@f./bQ[CaP/lDI+3laXoW@t!ip[+-\TuH+iD=B502cZ+hZmc%pLWj+)0LZ9WR,$+#$J2'i9PgP(*ICJ=<4mLA#&LVH$p5SL7e^gt6o1mjdcgLBJ;8lHbX-`#3EnW![oigg'-#Icsg+$r^:YKROMmV#;&(=R'Bra0L!a!fNGA4+bQ(1WSc!WPKFir0JX'r+/ggXpG3=Q@kJ$F<-0Sn$l*"q^b838U8DWRS<$6@i/I>b:lqV.]*6OSMtHFua2I!YaQLV1U>o8V>;6guH%E)7t^n-sR70,A!2_9PaEY30*Q*FXT=)qZ%H#YXo"OL(-PHK]7P6%A'idmGB%WoGqmaF8Ho`&f$o+J2>W-6E0'_MK@J$CjFc*rNfK`0F+LaG&?Bm^=q@rN6Zss#\j>9>p9DFU>`b>`6hJ)k3dB:bn7f9F;(c&@PDbuXIG\LHe:$e;mNr`O8GnYZU&pAY6P9$IljO2HH19LQIEQ3,Xjaos8n.^,p`Z!:fo[,(5I)-]^s5_,gkJQtZe,`)0ZL@@0oHct8)!6SdT1!4qc;E#D=p.jB\I4pd+r5bBrgP_9O#2o[X(Br.W(HZ8mBQEJ>B;B8R%anls"2)[+,7ETkUR\6[+_'VQI#q0Q$JXg?KDeX0bm\.W%&\!g9uQjdBd44%;?p>JnG]$pSe.4.M'M#F7>m4WD&!LI86'"N6QH3fVH3;1s#D0rO!fSCNu:!4ZS36/dR0>1a#n9OQtSRhYRDLdl@J"H%^C1Hb>A%Cn;rDmp0k>4bLlAnd#\Ha4,J/D6jc)ZLKre0`Sf([6)";M3r$A4FE6<(bK^g2qVDh%Jk>!Tu38;@E*@MDhXqKL_((B]iXdhCn-n"BpP:Ds&R-0V6kbHjA(2g^]+LalQGl__Z$;]opC5e,b2,@Bd9OOZD2`lOD,q&r$]Z&]CEf\?sfZUodB0)CfUs,&R!TUohpg3+O+#9A4.06a!5ema>.>86_pmmR^WZXkj2HdoNBBX\K`P.W+i&D=q#,Xj25PA0496g1o)(Y,&2fdT3PB>G\Ii8R&$nh?9.nS;l25:#sra"=1!LF?k]Qe3Ad-SZ;.8e4Ke&U6ji]>)u"0([H515@E82T.>u%.V=j03Cu_.GuudXUm43Et:uI'XDA`LFO*RG:-@ZEpf8HA;r>_bSs'R(Jd9)$K$TqgYg4:P+P?[o$QAlMh'J%VUp?on7r="LUAO+]#$Ko?e^TiMg`hKK:h"8@Oq)AkSQn"TmEft9@YAfV0!Oq2=$+oRJF%!N;pn]\X*`8qhb77NXY_P6HJ7XM_<82U.;>iieNIWIZrPg0D3_R+:_,_HdoL1`[$G\Ii8R(#IXjU5Xd\O"n8*rFLE7KTZX+]A;oo/J\jkZ,)4!%l#OG?4#E7ARA_dTE%n^'@&)()F(e*dq(+A:2Qau>0$%'m[[GO-J[YpKqCXkYusa0f=&F6V8I*ZGU,L:(UU^]K)HOQMX[N][OWI593^0H_S+.])b(fqB0lpI''@DtJ[;5';+HLL.'P`WcYYM*-RA*s$P":CrR/A.D\>nmtbP7sj$Gm_Q`W.ljE->ihXknC^=UR!Li2kSSXO>K.a(,QbO#6fVU-_5Gga#TjS+AhNq<@#=5VEXDE\27+4H@#=]IN)%S,9;.kfZ5YdLW^ZEs(-jLT0_kURg!GA#C?3BV4*(hTQ@6i4ZA,3+Q:G#&ZQo"D00#/,T=r>DM=BYcX2J0e[e!P-"(Y23SW^EB-#Idk[X(BrlBJYUg?S3">Fgqc\k?8@,&NURH>Sd9>G\IMJ6=LD09q-VlfC8]>DgT!mZG$2H"*6A)+KBGPL]$(fTS$_sU7T=c5FbQ1V&%1aDL6;Z5D01a!s4jqt*=.!#UknH0<7Tg^piRXnB>iBA]A\IGKYd8^?XgV]n)I!+F(>SIcjpLe@aba6Y7Uob[>$6u$F;0uF\:@;D08Y..W'<(g?S#?l1R\Q4TlH[`&;>1ZW0b)*UVsqeL<*pD07astbX[EsN-:257%L0I4h(_G=AAr+$qIO^@DI1]Ogl:'D4_;Z$$MDH-EKsW-KDnkmhWH84a,QF;irCpG^F"hnV"&Xp_&iGImjgOhV\"cLpu1A.*?0Aa*":e`,Q+*!h9JCDG8qP1?KRr"EQ',m1far9IA[i+js/3]o$H9d^X>InU-g!-(GHlrr6Sf[!ll8e"+(\_>iie7V]iVoNPB)Lg+jN+b"`INX:2eT*:4J&r"/qX).5Ch2SZ!:\1VOM6dDRl6-j3QZH)UV#@tVV@4S15.GXiuQg1o*SZrPg0D3_PURC;rGdT39-4`,=6g+$r^:YI:8oiaEfFl.1T0R0"@^;UiUBV\4(D0hSX8mA-odT/$Mgr`"8+#]e4SD'@.QR@SNDO;k23",e/!Or!gm6b9C,5g,>s1#k0=KDtF4D67nluXjfO>P9a>7I3)8!;>1K<+uk'<]\#*l^`#`Wkt,MstdY5;XK;CC>h/OS`/f56(.^3&$Anb[msPpaW+EDA2HLVLI[lKo!Z`inU9*mP!kE),*H^TX+O'LUb<[*IVp\dq_qGXfdFGdoNBVXL-N9[+,82@qi!M*Y&V/8R!5.0Pts![X(Br.W'<(g?L;-o`e[;[+/I9l@Y'MF@"XG7G@$X_6LAt=UtallD1PBHC2.P93](RD3_Q@-Z+!m[X&%Y@+so6WO7ur,VY0[$9X0"Xe1`tp`[76\F$!/2"q_\R4CG].$i>,.I[PTj.Qp&`A)lpF"YQl*IJn@*t#H3.[(k`G7<1m2m89jg!7jY%1`abA(qpgE,*TiMJMLDdTpDm%cdAHL[!2RFb(>^!f()M'Ce(N-Jg3jGaPo>7Z^d*"L[m?qW4`T+%I:I"WS'*!Z.\lug5!)4>:AgtEWg[,DS3!!d"*lsE)!@]oLh@&UBm#uf0Xi/+gh7eeqZNCau,_"Nf6XgHV/CcQ?Tf$;OVNO75=%u1l4T@6hR4\T)9V6)pPg?N8'.W)"cUoi'G2h=VUVQJ9IW^YVkD06L?oP)WURGiR(<^.\/0t-FQ"E/\:dYSK;`^>6qr(7LuD9U0SZOlZ?pI!W)L2Vi&=r:Ggog6.o@bO0j%Zq0"hXQ]XcUBr9PWjJISWPU:G6fpFJYO7G0C]OKqacFi3+*RcoQQdq"tYJ`bJPbA]4$=Eh$/YQ4!"n.eG\Ii)+O)>8R(#ARkibk>KsYidT1"M-#JpU8mC,AVq"fh5Z7eE7%,Q7?t%Y.W(HZ8mA-omR^WZXmSbb]p#ls>G\IMJ66/8mA-odT.Fodkbi`b0t)UpPpJm+cWP?T'LfmTD%uUi:r^EXBIHF#L[\bO>Q[XfmScTboTc9J%'h[LoBk,G0+X44h,fZ%gdIUa==scrWq6#_oA)o`5A.`8']BpU*_rd(q^TJjWD[]6_DFBUq*QX2EQehQanm8K$,9cp+?$NjWsB]:p4M#>&-rXjU6;^Se1T'Zs$P]guA(XjU6aX&l+!dT1(_VtH-.BreVkLDJ#IC7;SWRC5^lV6/0HBe+=Mg?Pd2BrdS7Wt4bp[$;GB?B+Z^c[-"?AU$Y9.t^.NEi5"R>J.$*&Up.'2L'9R#?]uuJ:N-BgkC?p9'Uk<olMhn*h[)uQC`4WK@;_$g,MoBXa^fY)CEE6AXo5:TW.R/!)S6/pk%/>AL^IeI[8D**L#doNBBXj5r"Z(87%g?Q+Cm7XjU6aX0bm\.W(HZ8mA-oDYOZa'[R6H>eitKQ!o9S:g^InV`Ef]n&dhaL[O9?6RT=d0u("2m(a`b8Ah;YeC5O#0mK$&4L@E2Ii`cpS&8c)><.[MeTRS]=FhEBZA(^g^u7/S;;TBA7cP(C,eHk336cD1dIm'rjMBuR#D7f5X+Q0q1-6OdE:ArBq@4QUn?TAn2eSM(mM*P,6U_D<&dE'f0.ofUfOh$XGKS:U,drJp*OGqg[)T#d3tpLQm$Qu,YQEHE8(9Us"RDEag-]X+:THj#Qsg0f.dAi1'?8QGnQ3]V?Td*%aHG.T+9E^kgR5A:),]Fd4)kiLj;ck""ZS`FA&bk$QMQgfGf$cWgE4l=7+gE[%j+VP6hnUlUbTPpP*d;dRk1`4\arkRPI>d_DB\"3g?L5'X+qg7Fg6^4:KsC_0PtqJWgpN/93Zhk_mEFtl8@!jB;(-geL>45Qff,.Y,&2FP.#ZBdT.028G9F@=V&t^B;*I^X1Pah#u*"3nZOBb#X(tRl*K3?"4Dc])N38Lgf"[a5l#(n2p^`M-BB+42ZH;rQ=3q5u0T%#YXGW>I\["apN!IKX\]r[PT8/gP7M=HZP-W\SQh\7b8=i9/&[Qg&c2`UL,a2/;R(*hlZ>*ZdjkMb4er^Cu]4">2Yp18]DjB^_Np4W)ii!KL_dhj-AGfKOd]/fE60Mdg(e9#AL%!%5BE.bm_H,Fgqc3m2Tn<]cE/Kc"9L@6GTNGr`:'\(\aYMX>WrYWmbq3t6>Rk?E4FSn'Sdol?Ll.u+`Zno/97BB%m#B?Dnk#?O.\*pt;f3EH^i*=ga?RWmu3S^M_.H*BE4R9.sfa$XpH0o%["XBq7DFN9BWYq$^goMAU!_rf=%g1cinL0>!eaQ5(jmgQY@NLcBm8].]T=fW$HL+BaUj_!J/T,q5Qi2*PN8R($d)=k\QQG*[X&5-4(3qlEYoU!CXWE(f?;@hJj\Xr(*i?(%.Xs9;gdum7XrR@$*3q@Wn'H\KV=4'I@!Pj1YH7V]LZVEC%W-Gn]e6AMNZ3U\=#0F4TroAic(P`Wdk!Qh[2?'..r@/ql`sc5(9XI8*eJ%!Xl?Hj=>ufXcelWr(ha7H7(b+IXj3*VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cB>VnLkpkCLdRu?cLPr.l5SW*s8L?-lFiWFVJe*^8`a/j.iS$R(LLGjZJJmV3otQ;\FSGf&J5TenXL_&s.72j/Y6!I+_m*!O74$BZrKL^6psFJ7bT>/'bM#i&Jl=A+kIf?s,9e\=-O:K[[n9jn6psF2`*6!j.W#n4&J5TefCQ8r=CqJ6q"tiUoi'G&J5Te&TKsJX#&JpT.dp_pd^7W[n'^l6psF2`!H[UeUP%&*u9?9nUh4F#@[g]Jm_/S779O37)VTUZrPg0+sJ3T,-E;1orW_Wq#/05([io(Fn+/(Va'j,pO?nXLkpkCM"phu^NTYO%K;Zh3mh!CHiNgV(4TocSVp8sO<02ij9^DA$%o0J>=CqJ6q"st:>.17'bM#i&JC:/T)iL=oI/;-Z2Fu&jD)cW77B(4.GemQ\Z8&h4N4G#l&=rGOl"uDX_$OiV0W7Tou`ilJYf<;jecelA7qhpBI^A-R(s1L[D+@_G?#Sn[Zg?N@$%K2m7\)-&_m*=P0e=\^R%)2*5S`ULm5.BGqK,Mm@#2`=2B,9e*GEO[tQ+"inP8`5Dh&6-X)UtXG_7/6ndl`5uk8'Ru0S:7ei*0scbX0#B:,7:b[+1)RT.KtTnc%P(`TJ&P[.s8(J)^Irb?t1,qnI@4q6g+70<`.JIciZXs1\-NDr1Nmp,g$c/'"uH%JIigCtcQnIqi%m4b&_m.l_RHt)W\/SHkFVu3_7s68N-?Mk%dIrFlG/H5$mGZ+Mmn^JUK`5dS_T8;Y7+Z_nN@6B*(Tg$:WEWCZ@A3`O*.hEUi&&\bE"Mo\C6.D^4dT-t+R:;YAGUcmH,+]`fX0bkp>XPbj6p)3d57u5$[+27[^:F$*$bg/mmiDH%ih%cNH1@>-+sJ3T,3$un+=BQ)BIA`dYU@pJpdYf:&)KZZrPg0+sJ3Tin9L'8m=_P6psG]oq\^%?7p2Lh_O=eL0n"&WoPNDhm<+8(]V\f$VMKmD\gI/tYdJ=OHgdkYGXWlaCMJXQsWG)6eG]'=ZB)FB,+2$TgO88/$]*j'6R;XAA"3S84a_r^$AOTeq`tuC/8^%.)Lj1!=Lj3Zq,3%WLlVGI*KqOtjT"ppoTAUeOJ3Z@T+lt7r_%0nbpB"(VC8MZ[@&g>79;^r25J!0E0i4%K;h/nN?RUn^JUK`5dS_T87+f5s&L;JN]\j_*;r?JUh8r6m*uk)EX)h$'Vei>=H1>'\c$o;pkFTnSCd$V6(s$!fCh=ii-ViM0QJ)X_',ipnT(@i+n*t]_KAJNUZTE5G1].rU,9WHr'7Z`@j_L6psG]Z\5"-nNKsep_[3D/=n).F^Kg8;j<#pd0tsFXNQ'Mgq[rABpmQGBO!gA`Tg$:WEWCZ@A3`O*.hEU\VlS6HBrd'!Mdi03GUcmH,+_#5X0\V(,2t/m2A,IY[/NHUJ'qAe$mNkbZ$[na?O<1hO2W206psF2`*8-EI-W-K=XkMnHN#!i5=F3T+sJ3T,'HL]c(qHc+sJ3T@Y_>@-Gr\3bH;laAcbLkpkCLk2q``OMd,qWe]1n;)mVLkp9c>T)hqW/7EQ4HE"d.O$&\,3!**g?OEgXWer5+sK4ZUog4!4,k*i&J5TeD_Fng3Bf&XF[&Aa6psG]_t) +endstream +endobj +22 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 20 0 R +/Annots 23 0 R +>> +endobj +23 0 obj +[ +24 0 R +25 0 R +26 0 R +27 0 R +] +endobj +24 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 428.885 469.692 448.388 460.692 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://xml.apache.org/batik) +/S /URI >> +/H /I +>> +endobj +25 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 487.0 373.392 514.999 364.392 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://cocoon.apache.org) +/S /URI >> +/H /I +>> +endobj +26 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 196.366 258.192 227.353 249.192 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://abj.dk/dxf2calc) +/S /URI >> +/H /I +>> +endobj +27 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 208.549 177.192 228.052 168.192 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://xmlgraphics.apache.org/batik) +/S /URI >> +/H /I +>> +endobj +28 0 obj +<< /Length 1857 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gau0D=`<%S&:XAW&H%am2'Z!(WBMl[VT6,lTSpC.@'_7`S$nUIW['[r^Yb/&R\XcQTdLM]>>oKO*_6;s3VMLH%l.SV`+h'K.&rC*&^No2f:Y?hO);=Lk(F.7CNi`0W6?LuH'\P;[3CGQ`ORIV9LbSTHL8b5nlk9g/G^PMcI5"1ms+#mZ"Mot0mH$pgEMT(mk9"@5rZEaE7=bfh;IlN_F^?t<'C%q=YMNi:S7f\](4%N+Cl(hJes\'W,'^N%UZFTTF'Bco'VE\\_V"WR?I)XUYA6uR>hGt81Jmh6k!@W0-H(2\UZu#LVkmG=/t+oTca9&]G@qcg-rTJt0I25(#g>s@&8+Yc,=aoX.ClEW;9CK],fpusK,$&kV(nf!A*Mm:bk62uDiBP-I'!_>?THCjU>3]H_;Hl'"\jCFE&1?kQ9s-1W^WrP].73qG"O9UEp;pbp*`4(jP)SBGkGZ%U!F4074>AfhH_WJ^7LA!_,kn9@,Ujr8Ok&33Q[lQqhi;&N7I-Q;)Z;4h2.)Q0m'V`[d`:^)KqO[$MNOg00epnX2$iC7tc+DJH?KIs>G2JY2\II7+H#Rt8l&uZe'"/sh,#;>Tkt`%$MDcNqq;5H^@hecjKl2WB!$Bo`Pica\Bq@@=N*2l](H*ehCms,>T>1;?1DXsSONj6bYN"Ue8Y1G!9W2fS4Nk(M9kt_p9TsI?O5-Vk0X;ShJ+;#D5CV%*&]@5Z,0nEM_TMJTXA\'b*'eRBRch]G&D7iY\XAL2i"/)6_eSge`/*1d1giLeHk.GA;1PL(Qr=@TMo&o\YbV!`BSZZP;WiD@iECfS4Z@IUpc=nH7#<0JE93T@?`mm+VC4:KN=n@IC0Fku,gHgr<1B^j2Vk,'UN&s/]mG2T)'F]W177KjZVCF!oRu7$QSE;72UC1K?=AIl4iC1Hm]MQ7;p21MaZ'L9sV%JbO%+1'535KWoAo*"d>Pc5hg$E!p\C5D4`B>_7p0X.=Q9F&D"r=MTBA^Jf4-NO=b4mGKZ:]^Ylnb^pQLUmt5j3$aNFVd*XaEGO>T$#gW.6*i&rAYd9"RRHE#Jji)9WOTp3Gj#!!=Wf[o.hCc7@pe'#R6"JhXM_Q=Pj@k[hqt$DbA$'an3Wh%;Dnq:"([X2XiP'uTb6j$Y:\1V3!5O6Aj=7h4^\Kj.Q$k0$o"R;h[;,qR/EVtmm"HK"/V2rpHT$7*?A1:#)F\HUr6h(C>M^=D>-k;k?p-bj@aV.+nW8pK7>RP3A#8:)t^MBNV@=,2Y+K5\7in,=tBH#*c~> +endstream +endobj +29 0 obj +<> +stream +Gb"-Vfh^+1j8O&u!DblLa9)r8k^eSI8Rk(X$mC986QjFTYT>p-lc&<"N:8Q$o9Qh\X)#HJS<)ht\s)Pc%O9l^_,JR$duqd0JiL]K\N.c5:&M0ub&?N%rj]:"gCG/.9^q+Cg?b`Y`4P]ko+bq:.`ta]SGLXt=NA`Y`3E0ud=S\?0?[[hWD30ub&?/4SDqZ-t>)RI$f$bcf,9o4mhM`Y`3E0ui))[.!M7Rt'fX:m5<7qb+Q0hY']jPIR_3@uN.^(h5@YgF@C%56bIV5TZ=gJ@N3RT%-^roc1Lc=A=5qgR`noCuRs+H_?G3UFDtVYMIl.J\5Z!Y1N%Mnhc*A\9fXoNO9lKnH0uj2Cn`p]qmqh8`]6YF"hUnm?RKI:IW6(]%KUNWjBW1/MPEEh$`GNTHHP,/i0ZMsMr;+=`3ubXD[hWE>%H;^R`n9%'?[io>BB-Fh2XM72e^Y/;P=ke#89Nqn%q"9EIG;a?>WG.Dr"_Blc])JE"#0Q5C/\dS6bSXiKrHfL8LqIM4+p;E9@2PV]%cQTfPRgeZ*0V^W6N0M=@R=RnZk(SK3lYYde.:+$e%Pt=f4%A;j.\cgaVQ9HKj^4]RM\gXV?rX:(k4`P&c(@Q]J-P\3tV"m>LT)@Os>JDY@V[9iA?J$rt[H*e)_0=Q=D;gtP@4c+PMiUIIQq1XjFjT"7Pq'SaW9;W23Fi`'0/2]T?(fBlm%2Lg0hX831DC`^DA*dKYgPXaCgPXaCgPXaC0ub&?Z]EjugPXaCgPXbN^#)jFN`k%GHtf[8bA-&q:a*O:#P*Edtn?oDq-[g4eM;2;_o"unDICjXte0oVX@BdLAFV@F4(RRhu@G@1V7lN4qH&S-RC_aYqKC!G)N"LT;e:nB`r8?EG_\+>+ba<5+s=Oc7=od92!$)7_U_l=CN2JDTl(#kDU7GRnTr9<4RWpHD57bJj&86PRj3^SHR!Qa$aVRC[#a5M%e=QnibB(-HiKMbE:%NWWD\6c0id"?-72OI@d3#(GJ$ag2@6>f/rjpUmg>>VMfCKj/Ij*1O51BF4:(YK9f,SgfsmS>K``5SoCl5:q*g=7VZchK82%TO]mGD/K1b6"ed6Rek#P3#H_"QHFF#\>0]ELCGFU[3=cWB>_!(RMW"$\Z=k::QU^SN\HLDp^=RBk6et`nBlAj.okmV`pKGm/91o<@]dpIuS:Q#=7?[R?mp:MnYC%4p1gL+Si7=2<:d7Clh0`nLHR>2I]7nY>9(uMr$D@(R-\m:Ec"EiY_HfahdNmU`3X:kXgs)/mTVY5ihf;19K\!c5iEhGhg3a7q\"&2bG>>sP];MDc"o"H]c:ZOlBU.(!0g=lOoC5@GapCn:k<\]2\CW")hsQfB`=NNk@EOl*jnP*JOl#<3eaqfV26t^"5iO33S0ufS-DC]TTDC]TTDC]TT`Y`3Ebs$"qDC]TTDC]V*pM='5mq&T'A8%6faLYpVAH1^hAW/@`rr$O`CHU_.M)msL:,b!ffPJ?\42i"j;=,7A,l53XgkLCXgkLCXgkJM@uN-#qm`cc#?-1G;)jI=?NdO@j:Hhdu(h;piTB?!i;m'$$N\ZD42VtNenSe_d6;PBWh@BBY$^es&J0TF\Cm&e>)(a`.?k#%`YY1"om%O?1Y`*c-$TYWA'NpB[6cS"$j$AK#^IIVfQePc4?$\2E"PFQL8Y0:k,rYg)#%BtB$B!@:"XXr6G=tujV\U?*corN\@Vbgr)Y$%Y(NtA.eoRd+Q0d>Ib.<`3A*V=;[6h#.[]_V$*HoTmM8.Gl=e&kRMi&P"65sk(irbK#eR+2P"QtV\H"ok3J>&Q&9KE=V.uu!n6H+1V]K+:)Xt<'_!eEB4;qP&/qVDj0p5c3<(f(\r*D[9fAoH4.Kt$lJ>W`Zp1!NES&'0cj8UGEsRd&@;IJ#j($DD6;riHH,%K3b0J-^b1-&[@mnQT2-A@];56V*S:B[Z2r_8TN%r?/Tt%57XgkLCXgkLCXVbQ,0fJp=XgkLCXgkLCXo:cDasg9Hn$l`%Y(([pp.mkP`Y`4Phk0$T`p/rA`0<>LS[Y$n[DROX$D]MS_[!khYfN1AMapjaP2S6"Ce0=-qFk!@/K5Ege-U+>=b8gVQKrQ6EHDX8O04ag+[mcSNX0?o+$mn[*b::Y%')i]JaD?V@J/i1=?H@.AG<3Yn&k4:lG!X3mre,HDnrlt$E?^^@'D!tX92VB@&>W^$7pUn;O5\%$0Hdi0Fm59CF"&GC+8]h_a(BsOX+hl%HN(h:bX:"Jo4teoJ%2;2F(X4QV^o#$=).[#eI2F0#@!9#E;e_@CRrqN$I#K+'JujTe'V+3uZS01mfKrXbOq6Tg(ISe%eI]*/p[8>T_MCVk=un#!N\)Kn5i?:inT9S@2nr]5'ZkOasnV)R&U^F(Z"NrW-jQ2+6*ZC9J\cTAe?*6De;$^5V$.gf#&M=m:oh,I-qaMaYE*D0bLl0[hZ@e[hZ@e[hWD30udfI[hZ@e[hZ@e\(1AjXo'sIh2RE"?J.]6\g$,uq,A5AN3Rk\RVDG"?&X3S@j[kRYnABM*KY:j*Tm4X@F"I(QoglfN%Gi4$,ZIX+e0Z$_L,]'bR5`6!l$GHT*bt]P'7'\Ei6c@O5s#f`=C!=\Q6Q[q^P][bDKiVL,f'F8@7GCWdYBsY58g4Q3IUSDo:+o9^p`a"ChLXbt1g-@$D'ki6eA,qIFQ+VLVSmNMM,8<3V@Z#fGoD8;]+2'!-`M?li&He)2])$]K`&@-Z&>j$5L>#$4Ba_E\n#qf?2d0?[d7YS;JV"uprT*kXrc?qQ$m=2U7&5!pN=oL]b+,c#.b8G*dQ]%XL=)5s`sUupFNl;LM`GmL!*3W_3T3V_D7n9R4TP6D"S-kqEfg/_S%I[;(;Q,qJI:h)o<'/`nAKMeM!gPR`*)#KB7D8gA2D8gA2D8gA2(h8N0fuIsKD8gA2D8gAbYM<._=h!b3m'>uMI&`,[`n8&?2qqBn_%'Rh.1t^&`IllFF2jQ!\nc=X"lius@(G2k&;#a*-jeDW>2W-k4=Pk%=UUd7YeZe>$XFXSfTmsG,\I<4[0b#-.j<3$.:p>99/\&aKTskAYe+WpFEO,T^Z,Mt'd\L]Qi__(Jm_7T[2lo7"@8@WDTSYH#1og3e4HF7TU*IUU`.C=15*J;@42jA_h)SV;j&A@+7dW2tVc?l;M%1;H#6-D_+K)),W48c>&bkZ\5%*at^'(CErM5Zc!TE7rFMDQef#$i-H]PZE(K"]1D_U9[1u+;IDFHEje#M31e@Gn/=Us^kld'kn+X\gD6*?8c*@GW,+4l@C5f*:U';"7'k<1W`ZjENijRjTijRjTijN@n6&Xtb`W*-[T*BR$qZ%5=QGc1\l<2;Bja_-$d_W19pstK,IQJ=C7Z5HHFU%%I/&#Bcp?9\![%J6&c.[heFk;$G)fKq";7qnF5:`YZm%EeG]uoVb_tr+W5Zn3:NS-5%Z`b6RKL=2k3:oC?FK7Z.4B'[bGHZ'[%?48HJf>BOC=s^9bHF(E:]3:e5.o=rREkhOYD=YRH->AcnCDkOUqm(]q)ueB!O;7;na`HeD`Y=db^"C5f*:U'?OE0\f]f0ub%tgfE32gfE32gfE32N%r$-W/HGQ!>UWIGpA/4qhHl?/KX%7P@9S;"m4Q?^q=%f/2F-@ieBEpW)&$@c88X:9n>aA'nRY>(0`&"\s*4g/X`iQ0,9e]Vnb(2C.Q\ZM,Lu4)j6.q@9^^;nE@tcE7qBZ=[=6V9e.>s8-#i-3VZ:ii&2m4b:#@CWF4=*J7CP@m),g\cm8uCX2$KT#3u'M`o.Y?)G12)J7.S6(]#pQ?$b27_5W'F5n2&".0Y*b"AljVk=@A,$dha*VLh1%#a:HE-OltFiY\-Xoe?u\!)nA&(jZk331'i[Ss>u;b5g!f)X.'OdI),'oa$;d//[ZtKnA@LnFZ5lYaLBbCoN*YP!VuS%0oi3g#D8$[&D]4H[O2*KG+;=d0b(2bYB(h8Ln`,3J1`GNS2`GNS2`>E*DZ.[07`GNS2`GNS2ocMjfG@_S%s5[*iN%r?Op!%Ya>tTXXhW6F=S.'I_b_$(C&n'#JF(,'e-*X1&"W$>Y@@f[ik56qM51$Kf`O?LhhNe>Ln9Q;&gUdG$5>6]THPXEp@gh7JqF$]pC_=n5Qii8iiaMi["d&4%'@\U*UMC!\%W&?D$6FC*JBMsHapXELAP@Z*+T_:TSI^J3$tu_:JqH/IK<@-PrnRGq'HCBY[a??S%1AZr(-piP`DBVK#DIX[JqiP:TH@8pLcj#B,^"1F$MsW#J-Ka0\S&@H?4e3/7Cg=mJEaLkhZWMQti;`aAVLFirs_tlJT+)0^s/fQj0kTC<]XQK;JRa1:VE$6a2NF7G.G769+JHE2>#bW\5oUCNXW)*6J=g?Rk7E=$h=(4;`fn@!!LnFM0\$:G/T>Wp@c[iSKXRoW_A?eG9E;%-PHC\Hq;.`DBiG$/+!7Y\I/b`%R1(K890;k+BBnFa8/@)\!+fY%#1=T?KX3:Z/af^dcDpc'o7eGf=DgJ;5/c>R.3p93Fabm@50XdX0GKC5m,_.)UC9I@!u*AD&/"lZkteQUZ+PO4SLaOKiY@t`To0ub&?Ii5^1[hZ@e[hZ@e[hWD30udfI[hZ@e[hZ@e[hZ@e@uN.^B&>/KeY:71@Es*;bRLJeS?6j@_7^PMHhKgoGA[^,HRLBF'je[kH3Ia_;)SB@)jpY_/2btOAe=6nNIYrp+a$2l?q/khJZlU9tjFS:c,Q4ZNgZE'D?b6d0c'ng5%PEHcAN@8B_XOl_q!PK-THDI2,C>cmVU+Emro"B]m*$(r%VC8Q"-o-,#W1gB4qZj)/`Z?@Y\S#:'GooJ='m5gOsT^mU:^UY/'DA=L'[<:e2OH:"YM2=Reg._;>e$W#>Ih7pd07j(KItOABfDpD;q[QY<-:)65!n:0iL[1:&6dq$sTXL+ghZG4#&`g@Pm;BBHe@#_-B!SPia>V1aaRWot+s!6!-+.#'8,7LNu81@$*&VjrBiqo.(Togcb7;rmbSaZmPqk\#$ssIIgn(R>!?0H3qgO\H(c/SIb"ue_Gcb+gE72&g!jdntBkjdBA9VPoJ]@j'l\;/V)8*WSi5NM=m55L3P]Qa$MHjVShft"OQmU_PomqTV6BTr;+Y>3-/''NMaLobo_II3"md!(I;W[;E2C?&a]=A+WT1G#`e:Z$9]E_:g9@sUV1#$e('LeruXn-Vu8CgmE#P1^a`1DXWFhhK`7PNE;JKJn6=lp?qc5`gD@ZcgPK;Z:59(`18(m9"_o\AJ^Xi?6L0W-?l@+;g@L6=31'oHB,3i0\L$b4QZHT]mu-,NNeQuG2aYKo"Sc]k!kkL/d/Mc)Ce@:TsRMgos`2-Q(86=I/>f!psV1+A*6n6b?G?C70W2"([GL(:);pPXbI9(f"ob/HXPU:TAZK*Z6;:k*S.@9L:(eP+I00ape`C5R@Zh7Jj`J2q4q5:9d[e^-*o2\RE[Qo&g;:(@f"/A^(+o:0^XfKA[e>pCZ<+hqF,:G^-UZ7F!.I:5"J=a4,_LG#8P02BA04ADgGDr]FXU67%4qJB?lR5g;dVR&#;Uu38Aj9:E;)gW%/6h93jV*'-iCPi)*D^q#SpnNS3FFsr73jsNlFH5\,uT*6n'"$#/RDX4GFQSO!K?p=H]kBHD.FXJk],rMm6(C9`t'')#DZGf96]aJMbaH$/H+m60m&X)!Tm;kW0e0!Lg@JCS`_.SJ&RH$Li<XY,d^#rP%Dobj^2.[9LtVWp!;=.FrTRXD'549>+4Vr6"BI(3'u*1F&1#$kMi5WA6J$jI_SXEJQngu.p\JD5t9l5tu>MD<+Qe@;WjXgkLCXgkLCXkkmP.rHlW(h8bL>B*ke>B*ke>B*l\:X/Hlf'=@.R`S,RD6NV?`Y`4cSn>O8(>$UCS2':(&sta%-\S>dGTiG&KG0#8U(@mu]bk"XbR^KThIOHh!Xh--6H->6(-,<%Yqo*HLF!F=W?i">=Y_,FRL/L"@C]N3Y[g%_4r8[OqAMC:SHbFo'J:(Q#IU]3Q?^65(r?)iLd.-T9YZVKh`DR*ZV<=LP<`)^((GF?iRU%597A.(hH22`aW[r^YMINOjcC[<);kF:mFN!,AAdJWd@]&2[pJhjbg&[[#/]W0-2m8b0NZCID!766.qh&#Vh"%BU0G;o,1_GlhbH0__K_P`o,u_:6.:N4iA%kZ]LWrAE<<$@_eg0g)uG#?^Z^5]&$d,uHA:$)Vr]3V`5F@-pg/\q'APcN4%TQLqAS%i;<<7]@A\Lu`=ulgEeO"E/$)jge$.W%r6!\1&@Z>CJ)JY>LV2GSOq>/Fah0BPY\!<=]#)gG)/sd7LrW$nAEEdEe0ub&W(ZMm_[c4aT[c4aT[X,9iX^;#B@Z3&8DiWS0gPXaCgPXbN5J+&)cT*9"r`g,c'U$?&iYfSNKJ;M^j\"Uk14NrrDn5o$n'2?mdb*23W&Y[S:SrFeBD]Ua@uS)'^"0X'eQ<,fJMpWXO9Y;=8MFfT6^TuJ2'L1h0$G>?/qajF?78YV8c`A75:MaK):UOr(V58gXu&G9\,*n&-J4$k0*^#Y9.$LO;S2Fl2'(]#)5'`4V>'/ghV-;KrSDNjgT%\E*IPF,#hp##Eb(RO_.+27b):Q2!#RCG%h^c[\fK3]S8fot[iXDJ>IN!BMb&_'kD6YUfPPa.S$KrVEkat(Z2''THs9KE^GLEUDb3fe6b"A@:]Mi@p](n]oIq_-7&8jC4BN(oVk"KR\G9+fQ[\OcP6paJGO+\G8Xq0jc9j\N3U-s=`18mcQu\>,8h9h#`AmB?u^B//F$"HqGtB:]u&dc<%/9BoL)k4IFt)#ELdsYhmlY-K]UN\6GcYI'9\pm/"WgT3jKo/8s_k<`8)>3L>bF?^D0[:R2'[ZBBeCE=2fR/dccCkjC!%YiE1uKWFAOAL,TVQ$o*=3$nQoo?>`_R8p'Sd]*[j0)PapVGU%H2sTk(dB"3N8&'rB&R-oglWS2p6[gqU0%qRUm'@AjW/H9J4u<_g+E\?2?D>B*k%`Ya&hijRjTijRjTijRjTijRjT@Z3$"qm`cdiE)];(T^(HdA/B[L.B8_&g;mm3>&=iTUXsH[HO-n*bn77gG^Zd68t*Zl^b=*J!FqLS3eW6)].3*.j)c#DMk=d*O,ICWO+?FW?.Z*Co):P9Y%C6b"K!lo53Yg\um'O&*X^PC,'Q._o\t#D`7%\==!^dZY3&RWh)6itgV)]),4VUb*0"1i8"#p.pY#`kI((7K`)p4pN6p)RPg*2F[R0#>?\HV;$1aBd=+>tE8\[m4^o_B=j0bN;eofsFNQlG*`m<'dcua>MK]Yb_m]E**h,\uZQJ9.]GCG,?9q1*=bE(#!rs.b9qD4KILVZ+,%OSk!\?2WfgPXaC0uhkX'=S^c't4pe't4pe't4pe'k<3-fuIsKD8gA2D8gAbTASlS>unY:Ih^CHVWYbrpiHI5Y`,XalYnK/L-H;?El"b[$YJ3b_J#OJ?5WJXXMZ!m2Y&k1L->dqa9Fs1-!5:sK4T.goF4nKgZX]+*Vi8DrAih!s4&:i:Ve3E+fBo-H;md1^<7?)V5a7N4gl=\#n-l@(E8ts#)c9_F1=C`e*q-'Y"6Rmk+$RD@>m%K(Bnj*7r#Df5M"uBj:bLj/R2iY[8/^2XPZ:NPUE*>k!h;Y`3Me"mODYr)m?<\#?>Fa8lE%@5@E1%*LBo:t*/#OUO9p&]CI)0hASE@Ttit%e0>t^hq&-`GNR2A*dKWgPXaCgPXaCgPXaCgPXaC0uhl4j0msUijRjTijS^0DCbC&?Mt>+Y%'Y,>Bup9q@i@#dQr9loRJ@sr!'uM8/.$)i&7H_bE+3M$2P'E,rg&3@+V6+6_=i`h+D*4$Z%'@&aZ9ED)b$h/*2A*dRR[_aoh7^3pC-_p_,=jIL=YWcbMO<3Tu75"S9u9E3]6i(`kSde)c4rr]pgLKcrQ"Jghp;bV!c``Ya&0;Vr!QIErDrSP-hnEJUm%_L[%Fo!^m"gC/PW*Un>lJ_,;`4K]WT,DPOBG$`Y-$6JAq#]@[oND#H./ih0'+&`\&7r9Mu4a7u>SYVfO[8N!=G`9[L*PlTn''p?1WQ3X@,?ZOmE_5+s/!W``JB**^\mfWn(eRYMD.fUoN8UrVr$Afu+'b+1YN&"R\+QP=696`d:IMMd);W]lETAcuX@H^Ar]107bJC.$#6^7A^?G9@e$OH+G"Fc&a,[pq1@G@Hq(S1*Sq,3r!40WSgf@A6[c4`)N%t%o`,3J1`GNS2`GNS2`GNS2`>E*$p2O;V>B*ke>B*mGGINk6BAo:re_N.ij'uu:Gr6>LV?HCXP6>A>9MVUSoBI'=$@)3Bi0'VA'QE8:8?#u;9c$8S^bVDdG%E'0CkLD=(0H;8R0QcFYs1`^/*2A^57`\TJtYueodcYbZ1h06m9^CAI=eVG"8)8(KBBe*0J[BpB:V0s#R2Fh%Y7efC0PC*KE"aH).SU[2Y5uIjiL0!O2#pho#b'Z!b-&J#8$I`LS1gcr17LlN\'pAn@BPBf:>IX7d3Baf-@i/8scA)_W8TY5EEj)9tDf601cTki\$k00"Tc)Rr3C@c786$Fp<>;5s)A]XY!b+FJiQiDOQFB&Ngt1QIIYRIl"&d[_mSdD6#+pLf7J0bC4E"?\`2G\BK;3@+PhRN+R)tRC?u0+d`D5kn'e1AMP1?@Wd4M/T=oWkI0BY@Z3&80#_\HD8gA2D8gA2D8gA2D8d?%D"_jQEEdEeEEdEerF`UioB0H=jZa$#C#XCT\pO9^bSu'of90N^2jk;ps'fX>?XCFA9*C;>$/E+&@5J-m,K\j\9`b-)W\BS?emZBQS14rDK68j]/G/;FmjY.;3J19Z`KV5Ld!o>9nHZ)Qd^uoD7YNIh=gp]P>amuu[6jRJ)];A9%"qh_h?Pd$Pa34aDThGcf_%:KK$3`*?Sh-N]B'T+FAIGA.X'TJgfB@g`nm8rXgkLCXgkLCXgkLCXgkJM@uSYrDC]TTDC]TTDQEg([[MI/LZb+i='[sV&9`iep=09O)O&#;E`Kg628t3gQiM"k1,sE.bE*"Td3S4?VLe'P]R%OWS-mjHFKc9fJ9>gb0Tle*_)*kcDQBB%0[Tb9N-9XVSSc-Wji\,&W3$Hq5A1;2`s;T/!(*ur([L@OED?JoT/">&@n?QB/aZVLFdL3dK)5>%:fCX'F(FlR7umKW!RCiR"n"_(hZNu;D,:?^jQmoXrH;??Np,\.CY-)I)CsqArC-Wff32gfs]_4]Hjd=Ran2Uu2a0m)Ff"L"HmaKghYm8cro#.h,g)6/u7l5,,+4@T2S7]TL3<3+Y;jakmm(dHq2/Xp^/&iE9s%M3KgfE32gfE32&TM#p>B*k%`Ya&T\?39C\?39C\?-t7[e`5OXjj.Ef3jq(4RF!h^W-eCSu^3!s>)Sd/QcVlHP%>:1:MN*=R#rI@["G^lo5Snb>&Q=B>k^pRacnlU,X&]\ntWARhDfE*G':fKZ#)P,gbEWqo#YreArB$kN^>5[JDXil^@%&0;4sXiq".(n2/YD`X'6-sf\!o=[uHCH)9]d\2D$go>Iq3o.[]E1:C-,G"4\g2N8"aQHXH4@NiS"PdN"^KY%kS@EhMr8e:88<+c1$,QhJ>X14/^p[#T;tki&DZHF;Sc9V;D-^c%D`Rm*AJ5B!&&/N6ScRkGRCn$=Yi/U8CRhR!D\mTU*4N\(D4?jcNiq#nG3EWLRb`I-lsQjX!lF'uA%2%4\?6g)?\k^K$2I2t=%gmnZ\RkeENlXT.,RKm,8\M3U@A*ECZ#^W?H-_EXogLdCaY(EO:G.?)p!:11SG\+]V!4]-JA*beE4^D&1)jRB-X2h1=6od.@K(6*"9T22knJ@hgPoJ>u^ur96;m*sn$:3Q4_>=4M?9J??e!@fBb=<`>DN\mg)HgRD(9e]q5]0=:r3eTne>1gi7kWl*Ned4[S&&[J%Xu`8:a`LFSu[IP6#b_7cTb!S:NGL3A\/:8pJ%SGrsa@aDAi4TQ_gY8C*o-ZRVa@Se)#9J"FRh$"oPSR*Idp0-%*TXb+`:&:-BdL7(n05Cm0#081^1kJHb!X!.Mh,Y1Lo#J^8J"En^AK>LROYjmXJ&HC]oBYL&ErD2$4kEA$lGq'60XbV]+ItEi@$>=6nK:B@=J_f8dO3I(e_;rSf2?205rJghQraC`<\Ajat>`:E2Nhu\pWmZ@`4XQ*W2Igc`M>d)+LL\2G(g_S0N/`n7N>lF_(2/>>huTcn(%sQmhHLP1\%oT1,`%NY!:8i;:`!=0H0`<4\c[4<.?L(0(jt1Ei,r=\+26!S`8sW7/Ths+^!.,X>SZ%\+m9O9?D7TZ&$u/uMh,P#*f0YF5'l[/AjfX?(4%CE;9`ghKo`^l/rsI&Ch>i8-KT0??JG$Ipd+NCW4K\_k\4]+LT_ts5n@=FllT>CQB*n?=B>EiU(Z\]iHh%?NU]QQC#WW('?#o([cZK;@XocFf!dq-q&9+6A^[!^M?Cotm$N.%?i,p(A^[!k(m=O58!iDK"3[iXA$T:;1,N$\n:G8]Pk&D@@YAKn>57DGa1%;`6K@=iHe._H+%g[1_H#6(0aeSI>Zd:gPXaCgPXaCgI`Eo't;`*&[rKbm!XcGMVF$CMVF$CMVCbX/@Umj+0=:!*RB&Ij7^:5/'/>V-%]?n!!-:Jp^A7^Kp*U/AT0e[RPPc&cRscqf04h=UJ'O#0:%3-+<@PYR:%"*K&2N1:jIL-N"3"A[KgU,fC,"l6JPhe5EQ%2cT[)lQCf9UFZum3Yn.s7r@Hb$)HN]\Kq[q\TYFtWoQG]ch+p39mC'T&Ps^S_[$$ar;eg`ktNWWfU')Q6*uh58_aRMlEfM2T2d]E)Mn7L6T/6GRpOI%ID.onEmr>E],&.8.Kl]`dV(mSgRELZ%]-KqQ$Y6Co)$HL%Ab&_'h6@rA>>\DOXuen0C;!UjS*H)`%S.0m'J4SX;HT['Y;nTu$F?JXF?%UNeI<";3<%J\^k+Q+[MFli=IVZ],B6L_TZ,C#bl+Q,?iIet!ZRjdJPJq1HAI#_+ofEre_3=BSXH#+iNlmi(DAL8L//VKe_$s3sc+lGBa+jUI6R.c0i?3!8m5'UF.VcVB)-\qL/ptZ/XgIY3HVEE.Pi-%\8_?C/Xku]>8@?$6ICZTY9?rg\*^RD81Vi`>3ehD(DBa!t7X4R&stfZE:dTD8gA2D=u2mD8d?=&)t%W[c4aT[c4aT[aN04`GP:.`GNR2HOo,EijRjTijRjTijR;/pMHu)V`isenZMnWS!T<^?qp]o.8d;pJUM&4Cri"T^MaaT]$Kaq^N1jr5Ke\qBBu5Vfgh^DW>\e^8gh[#Y[aP.bfCs#aW@%V^(h<#/g2YUb;n$H?I\14Ma^.Xi(k4QC?CGJ1^%dhqW,4C5CkK!#.njh2T+LSLKn/oXi4B4)+-]#Wr"?MYIObg;1rAfp+2I,Nha,V9)gng3&F`t\ml0>nB#\lD\1n)7ra@\Z>ZW*0B`t(*&i^nu+X;+IF?Z[Y[$5-00[tX!;\.T!jn2l4J@ckSmV;7+4D=t;FP]W9fQ7DMX^)DXHQ@dpeIZ\+!3`Fon5d?%NJ[/\VA/O3)o-&:K0KlXKABE7gG`c_aeLlSob<&/F<2naCk-H==q3c59S*Xb4p09t.@@b1]<_dUY-TfCE#]AVbC\V0-c(Ail-OU'#C%6O+QtusDX0"o*B4%sO(H53hbrFch@+Z"E&79[a2)OQ#sRMqcjq1JP/:H`\i1@!*a/kEf/A33Fr:.;"/*qqofh1AkKdbXl(_rhF?0Mq55kS7Y(PZ?mt^nFhk9N)-fDH#"cmL2go15Y*6*WXIX`T,(T0W7;(As/gBd)BE*IO:f=i1TUKaGVH61R9A4#=A>VPKP_1SWXTT4H"8`c/c/KWZMi3dD;/6fnuh$Z\X4)eECNn]HGlB*ke>B*ke>B*lHrm#B2%5*DDe@+q;&d>W"PMH"FE%-MUYj%L,?'csu-@p:f'eCS]BdaG7K,J&7=:+++2ni`>8-`Y.T^PSW?%4=4pLX[ofeCj\$AQ,m$f.4)fUWHRh)Wj:\OLhT*r7s>Ts$iIHn'5\Hj"kYf>IR<+/,X/$ngGI&!sFWJ^rn9(u%[[h6I"CgZj`6O)2:ADtNa:g-=7SM"0H1DNDf,Zu9%sVK/3hIMF]9.:Q8_HbDi5H>rNop5+3Lqm9)Du,Zt[#"o8,2HnMM8_fiFei(^mc;.!Q9>r^ROj[0lm[#R9^Icdr:]G('eAitk'dl>jtgN.ZYi"[_'M0^c[b!T,d0nXDCtR2HOEmi6tU`"0ZP\Lk<0+lpBJNS!njC@VuSm&u09P\"7/e3h%#!3`f4!q(u>SQ%dS25gnba4OGemiI"eX-\CpIpIgXmutOq3t$Mp):/h`K$E1"6=&-nd,06[RMrZNcel]/l^_CuCG1:%SjT`'9+kLCp^Qk<*eoHpgL/?n'Y%?D"aFkZi3F'4iB:moXo<)QlJ;tUO+fgmXFeIg9q]cXR>)3hWPbdp?IM]C)qYOZn,opB1ru+QU]:e?/pJ?-a(%c]e#+'H;fF6Nn;GB'VhHg_frP-0Ff?\F/iYo=)Rfd!ODJ:WrD-Oegqd$H+$>Nf@XM9>?7'I,u#t(+g)+ar%TO8X2!RjjpR/>@Ke=.=Ahn'LjHWCI/X'qeS42Pt".N%HpL4RVik^SmK4O&MmVe^u&)sW^6Vg6Y>+nRs%&,0:XJ@"E3iR69Rcu?N%e@'D>e@#_,rdepo;q<2ZQM'll8Wi\ge:Z:'I=23jI;k/A2"f#r2"a@7qr#TmAWNEm#!&Fpj"]j!_Wnn"W*@b5I"1e<8#ZajAruk.m4C%"BF73^1kWZ6`hK@O,ME[[Ng^eloO?UPI`X;sU9:*?G+#of`m]aKX^6C+#'CCK(u)(\Ad(k]g0lP^$JK>S(46+U5SNoTN=bS:J]DsR&sb2)j`*p9'RBguf1d+V[m8Se)Zm_mnAD+\TGEs9G72i"/;6UgcU-!&#Lp0:^Y4bVVb_13h<7:(f3l(Ul6,<(%'R.B4;T0\2;$H3-U13u.Q,.JRZ9b\l6OHoMhdAEIL,92ie3BQiT&]=q!)q:DCu*rj#e06KFK"N6JI,;&Fc1pYPS_:oq$b0?R19Q=pI7C3U%62]N+I=`alSW^CbkM!nb8/-(I#b#O:oj*Vk;h(lA]Bi6Oc)i3]#,rB&K%VJH?n"jVbHEst0kI->H4#R>RMJD55QN$G7Z^s3AX3K(]A4T\s1@H_J')4j%g(>P3=E3JeY-p!UqDT?`&GkZg=-?Q]p!e[&YJiX=je$0q9cE71jH$4=Yp%,)eiC[r>pg"-?B0.NopVPI=H#W5tHLSQ?_S)gBTV4+[K!*#L1iEJWFZ0^kq["lTkCD[c4aD`bi\3`GNS2`GNS2`GNS2`GNS2`GNS2`GIL0\?39C\?39C\?39C\?39C\?39C\?5b-D=tE6'-&[^N4a2k;DJC!M;Yig#UW-0!^?R'QlK6RC#Bh&!rHpDfLD%?19pu*UPW@r9GRD)JT2eQ%/jn5IsKK--"B^tk^0UDZs+C3aV)1u0$;B:I9>BK``0ILh.O(SLcu4h0-`)ltqV]QjG[s5^UdT19pql-e);h'mJqe&:@2l49=0Z(W@d*)q/%S-,"'nQ(pl7PMBX#HM[0cH%CG+-D&BJHBP+aVicp1@f/gIu4Gp+b8moif&^aI:6M;L)j=(:PXXIoK;".`Os,k++dmVV,_oZ'd/K(`P'H&5s*gX_F[2_PgAI$LM?1+5SQ,0r\W0puG`,Kun3)I*,g)cg`rs\/bBfgZfiYD&!E5(]8I\\ZNjQ/J.Q]_Wau`5[<(g84m%mldrFGi'>F5m%0GB*TXN^7jM`f8>R@/mQQSG&$/!Jp&8PKqYBh"CY\D+Y4f&Xb8.CoZ2lF*2T"!;>9W44#ISaWNY8S]MrDkP$/dM(6dR9mWZ_>fFg19-%.JPb"kQl_4"DK4/qt$pEePa=_<\Z45C]:2O'6^ZhfTP5;TO8%`r5):k;WWo=#'(:2&3:FI1I?8^C$$OJ7n9(i,S&mfXE(CN2+#$C-Dnn%]7+",FQo!q`>Y]h@0M;EU^U?&=gAK1pR?]+&.O=U:&AZEHAH<7ss:BldMXqW_5XG3?Y_r.j@(jNUrqOahm[B9;Z5*Ejml=jT9SS`Z!h6mg][f-F*k:T$eV0bPb/[/F7i,T/(jL.scD)L-eH6te/cL*<0qFh,U[T>_#hCafDP4gNq@l+^&[hI>@]K=!NlZU)l+7GHnpe0p;fcb4!reRpfpf.'2L\-A/?!&b.\eWeGqAXf/IK073W3!Q6K>T$\0t]c@p=NH*[5I%m*=NChKqUc-i?/PEW4PMgKOJFO+NRbV7YO]RA0_^Ph5/R(,3\\c.3o(l0q&5t0p9ouMI[-GaW(Ag,n-!HR)=O+&*iZEMr=h?WuZ"7$VWRkAWpAlSR#9c"Y@(^S2kWq2K(4"DneFEs.?tdqhZfWs$$GZ#L;_IlDqY_$SV@nUm"P7,fG?I63o:K64&pn47e2EXu+gX<"G0@-u=GpS6PWu.pD[Ft"@YK`=_`3j@i`:\GVQE#T'2sRAGi];)>#'&,8op[gXo*2+]WZl=]_l[,J\p`=;Q%qGF]\KY4mLZk,oX$*hbA2^=DjS9$g&^r6K@h][D;[$hcJaeFgu7me,5XXGqp+)_<8Y2ApPX1_GH,:[dHd=Z2m-h`(Ih-_o#?[G^"$`F<:g7uK-76@?fB3umG3"2.q#Rpp,B-1Xg$HVL;h'>U^uJf\%`.J)@c6j0^u67;\b%2$"s4)`AcQ)eQV^n/&]-n`^h+I=]sb6?J^aI_lM!V_i^.IbaLi__j4JeJYc.!1tF!EYWUVOt<_cX/Sq?8)&b,>XAT/J-JB`<\FG`C%H[Q@Wl3,I9)%H!+OW[fM!37gZhPO0]Uq6`df2a6VhMYl\`S-3WeIdSE'l,>NHtVGD8k4d[2!I-elJlS=Bceo=Bi&=@Vs*8>ND<_b4uXha5U)F6$r5.@JAhgR'XTAL[Y`ugr4G97(fiSt+ab1G5K-Vh1fcYj3hrO3pm^dSA=5sa6HJqI?J1;jZrTiMF,,Jq?TL^52fMMe])FL2p14:B*tc+rLH5Thbul-gt=H^72n+;,>>E;mK^/mL)-(.c0F%PdlD=Bh,CpN>L,\UaUeXqIph_Y^Oppoc:-j73R)$]mWE4&;AB+td+GOtRK8;husRXda*fFD2;Db5+AsY_#/6W&1!:dHX#q=+FUe"f"Nlf%o4Y?V+6%nFNgb+!3Wcs31l*9?)bIZNIqU>B&ST'E%d:@G`SH$N^Fd&/7M8#Oaok#SlKTY])NhSD&S980TO@i5JMT2oN\GJBrF,I(Tj4Sp!IfJdW4;\KU4M""moa_53&"\=Do?.k/F0CF6Q29*n[;[Xm+?!k36?E"T6i)n:)C^b'ikc4di$T%oVI3ntM=^j&CJH"Ya:>71545WCrn8Ig]ANb\L*JaLF.q#UlJ5k;7Tu"Kp:,<0!b:@8)\dT1E^Osut%M%e)eH9u1+#k9:#b"`J=t6\`>a?`Y\A_UC`ZK^R2?4`JQ\;IMp0,\g""m4c\BTH[Zucqh-IBms+=SH6N5e@q[kn3=BL=Fj_3G^!0H5>RU8nNcV$=F[\)4k:#0h8lYaQY#g5TKb2k11dir^uLMns7G!:a4roQHf0PGnlVAH]pK6nrX(Ai#['_c.+H>nn1jA`0lFJ4X#V)JLoC<(13DQW)Eg16`2IA`7#U(4oOn$3ip2fF@SkU<YnEXM#b^c4&$3c[=Im27>n<^H@`S_R+V-W&U-Z5U%Q6Zi6/0PV9nh2OVr?*<&m2Q\n7j']h@K4oU<<_@4pt'okC?P9?2@5cIccf+'^>"h`/D%loDUD8k4d[?^Kj[UO*mg5<9QCFdt:XK>T/Z*n+Y`S-3W'l0kF%r3]HHtVGD8k4d[2!I-elJlSNn.8'JA61"3AaqDN5+Z/0]l5Us>"?!%049nJe,,g/dTNET&CP6MhOK9"&cLM,M/R=%SV+Vq99SSN1@X7K!Q/Z4lSoY(tkH7]a@!:rN9MaOkVUC;-U;$=`'UKM#9uA+G%Sf95s!uH0NF4N1i."s8/M0f"9+W,s%O_6PKCA5Ri)`*+:21/a:[Gk'^MWK3EtJ=O#RE*tJOEn=*J/lZ&:DnoK]jO(PR%^U6JF<3i@Z>8]8Rn4^>RkJu^>!crg;\jAIG*e:^`!#IR_A)Qb"OFENn#ro&`mQb(!,G9cG^W,:16X23+J=i&GA!@$oZc6FaeubX#@PmiJ"m8TeC@fSnBg&X-@Q8ABg3d,"bl:taMki#<'LPQof;BHPo$?XpbZ:Yr"rf!eolIK>P1mbi3Y?DGK'4_$%?8?4p&4$RBUga8Ok%5oS&V6GJL*E#FDD#(8f:5AkF0sc4tl[>RsVWP9Ju;8`7=::&bLc`ZE49(CKP(I'AtVTsl6I8rFn/A7u1*\H8k0#3]kd$T2K-?o;!$lW_0&&WiL\`]k="G/eY[/iu5jE.YXeV1!nB=fM"`<^5rgfXjLP(kC_#U%$-jO6+2mV2FANFo_DnDh1\o4!gjft!it94#a\HIBm0\nA/W2=a(EPHO)GZhq;YS]l3kD):PZjAMVdF@&`.@NPKL_RXgi/NF+6(-Hd4`V>HtVGD<3p^X]Sf4[UO*mg5<9QCFdt:XK>T/Z*n+Y`S0V@_qL!U'l,>NHtVGD8k4d[2!JXUU1d1Vr@BP[j(jCqUF:/..oYEQ+:::E=r%olCamL*gDtd_>W@T:fMf]$B&d6Kg\esD($qXM@/fKBi%onlDZJt:DFT#4\/Gt4eaWgb(eom>UV)EV[=i`AbXcZ$4BL`U+@]Ac%2=`7o7h0!h-aX_UDQod*Xo`)Qa$6FLW^l5B%'Tmd&r_=n8#Hj^jfd?33@+)T(*$pjK$p&/[Y8"?;3&-folo+=@9q'>Z%:&/&HIbRb\mLTiHaKSSmOe0tJf6s*i(5S;DkHAIF*!KX.4\6+>)8+BT`0;-g6k)9oc&r=JI`;)eF0i8-H8TNgR(bT,m6cu6:aM-C0+$P(*CKO]Rp0JdZnb>iES.6U'el6m,.gF5VM`TSHtQJfgJ#X5M[<+j^"p5B1g'%E-QP0U*W'jSDEL;`Zr\9,gm2m0/HE&o#:VT1ur:k;N8P/'90eme:ifq\bV*(L[?\'SYKT%]EduH!!N';K56gK_!V%*Bt%Op3m&8I*+Q4Z9o+K*&01HqS>9DMpY`8?#O1@nKV//O[&Q=ap,bZqrBZ,:%[!ZFW/*Y\3oW(Hb_cIgobh3(#Igh%l6iZoiR;H@SOqW8[ChSSU>73ELc!WE9_q<^c\=DU^=fER+SJhi:0D`MKmRpqF21sB7"BIkt<8Qh)L9]_aG6XM.$1TEJm"]Jl\i6FY:ThB`aZ1;$DG'X!b<7L@+XRn6_=TAh*$#]N"6SskCB*m>2h>`pK.[rSiX+PsMZ.3dm'W+t$s["VTu#H?[2!JXmhs\WXK>T/Z*n+Y`S-3W'l,>N@CWNHtVGD8k39F2YN@qWrsM?O##ubUc<8G1]bT@7+p`fi8p&q6U.JhL1&)YK*;cp`8u9]n)akn"BEo)"F-[Gs:Meqq6=*O>H$mCL@i;#!$2C#@_'L\t4inrBt;uHg#]:9(Z&1A+6F@'KUP)5^VB*[.V*V\jrF,HP/B39L8]Z3I(70'fu5!K2umlPKXd!>ZJ`@:jKc!eP/84gbGZ6(`^4J9*Ku%3`Pl`5uj%%GcT>:_s^5KSPs$DNR\I%3d#:&05J;W(9)@U5_R"QLGA45/Eea$NqB*PgnBm8kK*j#t3c53Li<0,ULRji^Mkt,pe[)KB/7S8e*e_M;d=IAf)D2%GVHg^<##YXMWR#kjO%PJ0!o2"9ifcE:P7dI*r5rcIIcU05IH!g:OXR[p$fZHW<^-7@>;[g'E$uW-EXHnVfl+)>JRm`5`PHC&FCJ`83hPF#l9NSNfmq-#)9=F_USDri>*j'lddu;Qbl8g/U-=c=F`fd8?!]'d/]YJ5RZoe_Xt*WDu;fGTH-V.6YaH"R^L?%fQkaK=2p[A;d`\=I@RTWDc4'.0gGn#O[ii'kIVf#uqCpLuhci+%O^a+G_rhF;LG_ki(kG@UD^S?')"9]j5SC#Kb*+jV.lo:fjj!iPm`,gq6CXhNUB5j"pK"E=A(P2:sHAi3_6IbN/^K*U_k-*DYYZ*"l)',h:f'[N4.h90(X!-%n:60GT5b:_!h00!*@U"Jm@O*9M:GRu4.<_O(ilI5*^q'[p-7L>BUeLrdjt:JQUju=5%XQZBGkiTlm.q^+C2S[AE!Q(_Q"O=S[=hDD!t+QGO@j&fYH85k^#"XS'l,>N<^/LDX]Sf4[UO*mg5<9QCFdt:XK>T/Z*n+Y`S0V@_qL!U'l,>NHtVGD8k4d[2!JXUU8R\%f!u\oHM@6-J2:3@7-`C[1+--YGkrJ8IADf,5="$iF.+KNL3uFn6pncrOCkGrPqnTV;@9:^t\BjGVd&8,@epdHB`Y37XZD6`ti)sP^'oT$(ei.h@VEu/Ao98"aKTU*X6dHIeE(#.Qhu>:Q-jA^rSQYoT+OR?j\?iIZkV.mufF+>QOo1!q>(NNj+':'eVma)VS2i#$G3dgu9I_%C3glP<0cn4+647On$C#9WKL[l8ak^G&.Q!@q%jOD9\q/TK*q"VYi=:["+ZB'`S80+cp]WQWCO8rZJVjlS>tn6Ol%nW8RA$+uN@,G;IgD[]pY*^OHVhYnE!b2qVqIE&oQ.^#"Vc0"\c;koXcC^%GFtYh)p&Olb7sgTHU/g`HgR,Xjn4bP@9>]n^IV>J`BiIA#GLb;BW3Li#4[_2`RRgs4O0EXi3'?efeXh2YprEXWTS(PHW.[V\C]9>^[[H;4oI:LVHG(n?U6i3klDi3N$,pG/e_JE"#i3.2JWA_`RmfWl.E[Vjao;G?S9lCtj=Eg,7pBd7:2\ZF'6Zot3g^i"T,DJLK,/=_J:SK>X3JQuWLS-Fc`Pi&'Ro3E.o%7:dOY@8*G0A/Xifds;OjB$SN<_".\HtVGD8k4d[2!I-elJlS=Bi&=@Vp8[@;X!;MR=17/(Rb&X]Sf4[UO*mg5<;gOkP]l%bUTi%D+hfI%"4>\^Cg_\K4.:%1"o#Yd1-ZV%l#702#_c5m5[.RkQ]MK#nlJ9MA+;$:ChS+-D%nSVT"Hk=17C1L!@YnDrCd%)-#$Bjr92<<8Y=D+/'.c3tF#g]io"FpJWY%&Y9i&/Am\maBeDd\j$W4iG9@JB+GEX:WE.K0WfI^-G;m&Flf?p<-IG^GqQfK7pR7Jd,1`,'!Up)Np6hm\8JQ0<--T=UCEJ.u4m">c"T/Q,3-/;W>8)DVgJlm@2%re4iO:ko#D@H*77'l#7.m[kCdp`k/AD$K"-;kSAi,mm(!.'d?CiH\d^9JuC(6jbB.9JepfES.HWT#C``h"S$(`/Kb2d"up\X$jgPt`*)))JcWBFp7rr9V1T.I>.AZO"3JZ"\9s]88Kk6A+g,,rDHp,Vbo99bI7"&"\!4\!`i#`XJ:AmJL0hQIp%;=H8AlX7C4WuZ]1SbCe3mhH($t=G0Hq]mLl=)T$r77.d0b\d0b[DZnD4=gHlE?7+7l\qitW[r.u)LZ`0iDN3.'3V#mhs2gD>\L[gS@^ZuFuu%[&L0i>VedGJWsQe90cj/HmGUgSlYn]q^>SF9Q41PsA+,-IgR1J[]RT_^6sAK@'[2WtF\V2fJf:rN7]Kj8HTZ42?/\q$5X=Z[3a:gs`J\WP6E+(XMI%EIIJ`m2REWmpO0j#$\6S*d/Nn\$4s6U#&UfMea0>`ECshf*'p8@jh!+oSOPJaHlcNoaG*N-a;]W$?"T@oaJ9F:C138qt(M]0#HI4EVJ]"D?\UbD<7nU_qph5CFcph49VgVgt!fkR-J*e;RI(JSb89&RTuU>JG2]apBS0DP4#G@B'5Lgr_($O`211@GCPW>c(DNCFaHWEH;[6pd?=XrA'"%"AL4"7;>QE)rUL9`B$jM'r@H_D^R+3)4d&0dn_.C+[hJMB,XfARpL7;T!kC?eo%T8,d=Bg2p=Bi&=qHJ]^'l,>NHtVGD8k4d[2!I-elJlS=Bceo=Bi&=@Vs*CgQ?DHAm_r0Q,pXLFXfT7r^/70jF'K@h"M6q;_2*mY9md2VTHce285`:IO_&4k`<5S%L'CEVRE&KEn5IX\DO=l1q?@Xu]RlMA-U^FB6ZgN^&`na3I%%ml[gRHN@c5;m+c^IDJ\XmJd6UIm#/p%u_;E!8:A?\3@\O4T-Rg2&Jr3IDKo6kZGX2Y&P?#P4,3?*C\BAu$8Q!?aCN?q6>m[uX&pNcbM,Z4*VTL#+9aUPLKQ-[W">[;A5]GjD]V;aD\dY't@Z\`#+BNHr^4fWLLl-KY1""_Ymk_oQFs&D4"[DsU%`aT05TEQ.!eCbT$]Mm7ABp^-6!2c$,.n_@q'?]'q]d3.T3"?WOpWgHO?i@_"^KoDeuquSLk'ifY?p%@P*`>7RWV`/pQ6oPjQ-%.;qM5\:ds/V:Y%9rP67KQh@kK2B&b>.kPB()'fP:>ji`4&:)pLHCA7&l:gDHahG0[rsrR_<]]9i-)6>NdJd`p24MoCPJ;N6l0KQ\N[m=H^pg'Z.tP]hO:NcC6\Pp>HUg6q\EfVHaiEl9Y;Zb>B.'iXh`Yr^Ejl'_!N*c>gK?7MJdDtVd<8Ri,TnS?NO>hGPmp5AW@V#\Q(^\%(i(i,\I@gX-C5NZP26gg47Z7oVQ=[Q#:E<%DBq+`+9bj_+a_Xi5qIed=#;Z"7^FC4T#-\$^p_-06u8K?N$QmbRbijg8uq.D!K!:09$^AZGpFV33;1LS]Tq=(QTDbJF!#MnZEbmt8MU!o+,6Qhe?#[u"$KR.I8(E#B%6>NFm$k/6%gRI\1*b,+[ED(HrU5Q8f:as;pK<">0&qm,N?FcW8$9^1IhAUmLI$$pkXfQB2^e(k2>mP_RKPi2hVNAn[f\E1P8]Kqp'JPfb_9'L\a8q`j:.)DQ6!,JX]XK>T/rCt2`MR=17/(Rb&X]Sf4[UO*mg5<9QCFdt:XK@LHXK>T/Z*n+Y`S-3W'l,>NHtUt8mAhjDo(:[$r29eN)*/u<+c6"/)>3nA'`i6E8&E>T1_g1tT19R@Gjt!$1^lV/&VGHJ)B`>r`5D0I^5$>sj+m^:$pH]=iT]AY!&.j(&:.[0)Gj_hrK9F6h+LVgnSaN8.LTqPmsTYnH`\Vm_>YD-7e?%_.b@1^@5Xu30=E[s*bC[JmRs:\INhi7_q;3(G`nkRFVq/qZtK#.[t>;Rm'4FJNq/nG.2Lq"!?mFa=9f$U-qpB`n,8h??.$=pPWXK]&N$E5K'krqO/4NrPOM^E"t^kic3+NuN\CJ)S3cJ!@gLLi2\mW.JO"P2V($+o(o"!0?j[_G?H7Q)eC+(g%-XfSADFHPTtiu$KPfs5^):$iZ<5$))=!#&U,lJ,g4BFS!'^gh!I0K*C\90F&^#mk^>37\g@7AfcP7sBMNmdGf\$`VZ\%re+lr_Ol;:LOR.p.MY@3n%MO1CmQN?i+=iGhULLn*%Mhd7;e^_61G+KAnCo>8*c+jbYdS"X`S0U5_qL!U'l,>NHtVGD8k4d[2!I-elJlSN]sPH=Bi&=@Vs*"P>S\*\7Z8X:,)m,*7lkK0^DH85=bC&dCBg0^'gVTG9nG=r[_b@5qpZ,!\Mpf*Tu2'I[%X4ig[`5e9W@&X"G(Yp]V"![4F/o6_+p`P]\h!XRtF`Q8g-XA=GnSjDRgYm`4TDnobc_;9L=s"/(VAq"V5AnIAPnl.cB:U!/P_IqjJE@,)t_BZW8q6CD1!a6`Bnf7T"1ER5C5Jk27'aDC$Bb94[#Urh%+[&g0^\j5r8Je#7KhEZ[YC?enYK&:^_RXm[msbR-r7P[Q\N0lVP$5]Jrt8SKp)\ZCFp^RRdNL2Z')8@T+[:Gl8rBHA=KDXWOf`;Z&&&\'UCCh+^%6&/q6*P^FY6"bUi2<3A+na,/q"^b=YKq@\o1OdEO.Cut^ha8^\-bD`(ZC^QH'"RQ$L-e"OI#_T$M,O)?Qb&S+up>RM*Q%V(;(P,JW9>&&;_YTQ-)@pPQ5njI%a@@dC_6EOL,I0cYYu-\^-A%A;.7dE_&c&6>1$cE6AH6HjV!VhZNoXM$MgRMW31&eJ'`C]=nQc*kr!f8MB"<_DCucO/q4)Igb\?/qB#/"UGR^KW?PS^b$rB$GH\#8PS^?YC$T^aakD?Sj?md3FlaI5]MpF-rrYHoq6+'l=qEYlf$I2[?X4Z!e\l/B!VfNF;jC[IE28!;Z2=.^7`Y\#H,`P%Yl"I-9Gnj#*;DV+Pr@!k(X"l)^ZA],XNZ^iFVU/6smY]XF.e-%:W=*XAI]<2:8EO0sO?QM,ufrL^iT0+nHm\UXm,[*K8d/q\JMS`2b#FXMH50guGpmk^.Z3&^c`BbTHX]Sf4[UO*mg5<9QCFdt:XK>T/Z*l\c>B,-2rpsb=E#4BPSQGrm645H<7YAV:$T<,-=B'rR'aR8t!#XdJ@$CnI?5[,m_0)/f&<\lEc])Y]jF`9@o#+(K;6ZV`U>e4I!oB-R%-,gAG;VVfpn-H2Q'Z$d(G9Skb%3L7#5,goA0W@,<.V5k"b_Um!M:$,_"U5X`5d9K">A`nKiL[WUObE(91ViY_&kk/&0+pa!^R%o#Ns!i.k`&&X;I+`H6FCRK1^oli1&XHE#$YGF[5HEEs[8mL/'jNA<086CMF.8IBn716j/eW?.X#lt)"&/*\$dCeY(FQk%*]]"Cq\';_K%7,;p!^]6>i7tm;7,eIT"r0F-l9#1Pj?e=`.WEQAY?i*$^q`X"kI3fF65P8Rimt016i^;C'eit9UY*OYculP^pOo$4?V]7`nHg@;X!;MR=17/(Rb&X]Sf4[UO*mg5<9QCFdt:7j$;_XK>T/Z*n+Y`S-3W'l,>N90QBp0Ai-*:UF]5/Z%&!m"q6(`A,6\&oe_b!9no!l-E9/2G)F$jZ:Uc.@F?u7M+QC-gNgf-C0;6Sh^LQ[NU.'7mueW#3S1KqS12M0K=":#t9PC`a=>:k(/\)(kCDB<8]Wo>9AP2YF;'dFK7!?7OEo.\=a)I5?1U039*)TV>0+n;Gf\34HRLFA5uEa_MXN&Xgb2Mk8Z;b`bEPis5YYscU-]:M;5tq(q=@cF)+l97>+4E%buOI0:"#;++GB8?/:)_2i-eO58,t]E:`3-gqKP941AH_RMjOP%?Q]aVQ<1sS[bSQ]6>8`Q3jiP/WcN?J=LF=jQ1-54:UB7'8=%/4qnVuKc2?lf#%C_.OZ_l9$>`Ri.2N`bGA$4+b@d..9'@sTr(El[5ASqY7j6.>q_/`hFH9A4lgX!R_>oI:2l?'qq]'LFFqbP"gcS^HE@Z6.Q+/i.M#.*-e6',h+^UX&#)ter^6Cn]CHN%^HtS45HtVGD8k4d[2!I-elJlS=Bi&=@Vs*MR=17/(Rb&X]Sf4[UO*mg5<9QCTG4JXlqermPmEl3;AtB6k[d&Q&I3nk)?;6a&Er2KTU#_3A;sCm,=/[R#1AcU:i/[QA2P@Fb7Pk#MM06N#S8Ud$W4,d*t>8l`6'WlR#-OY.6]:W`PLPeJ/D(6R883Tp\l?NQW?@[`D`_6HNIrQ&POMR=Nh7o3:--1[adJ\Y,u;KB8A3dogLF8$I[DiOI!.=\_pf62Vc"C)=D&sLb(&eAi_%bCE%;7%7C\gRqmSf4;1SbJc#SUVa;+4'cI@(-0O83/Q$>;qdgs".9/`LWU3><6DTW#q&'^MFe^'="l:o.nT.8rOs"#Z6$45m5_!o]D=C#6fN=@&tXW`d^LeTm#`EG[eU]c85^IR]bS"qR;8`QC>0-,1\XVQl,kNS_[^jZ"Y=71E4'76(quV.YQ%Nj^$`YNT`%dnKBDX",P7iT@\aK_0Fe%2Iq?+h2+FA*@!#)R!uVVX3"#'u4nUt1p1&='Za[hp5D4DFpAfP)Nt0h^HD?n6r"UP4Rab_#)CPtqc$"&0D;]S>$+C#F^#kDD*c!:WT/*IV$oZ*n+Y`S-3W'l,>NHtVGD0<4oU;QpZf\(ie'=/gFQsoc83,hIN;#,`<)$!]_0UUsq<&j*\@A"?(JO(1T3b\k5KJB,47Y,YE#a?9*+CF5]E[(e,bGS`$W@6.$+^@&3lUqho[QlE6_6d:g9uT\p=r7Jbj[Qd3+-t7\ZkZ!Y:bZTrD0#bq2SMSPoPBLL.h@f3ghEXf;UKqjn`^ZZdNBq_R]MsWop)t"M(Tk*o6s/N0=8_oOd$a_/>q+5'X`(b.FeTiW42BbFd[t\*A7BZ,gn!!k:\/Fus-e%51N.UTiKhPkUO,DR*/qh"`Vu^+\OAcZ=CmjN`8S0=0AK#PS#\hH=<)`S-3WQ1qMk@Vs*T/Z*n+Y`S-3W'l,>NuhR,o^2W=+LFd!n=q-!Z@[SFiG)(\'_ORskdG97DHR%i7O=&HX+A5=%d80+]&s09EA-Jo[7iZK2?oTB1W;,nf?@@prsr!e`A7+J);\L&'3%1rfjh)XR'ZEA0Q#KDAiGhAaBQ<#:oC_9$M]9$\>6hA2iGgru"pTc8WGka/?d,C.FM_+=N=1ak(j]-q0XMbS0-$Be6AIcjTPhLsL,?0q4L^Fep+5tYcgXFS4s'676@GC?)XI(Ce=_HV"t_rR,[-Wnn;qD@m3CO=WDuO3JU>0mO#iNPr^[M>SMKEpO[<@P;g:G\$nJ@dTN8*YV_s"XA-("IIkioD8k4d[2!I-elJlS=Bi&=@Vtcs%r84qHrsVO_o(3nRu[bhX8chdC('_f#>5`rrPUhb[FJY135/AB(NuVs=CikrXpY6);uhNKT0TN7JX'A%ge@N&aMi/G_Au2J&CiE!*1FU@;[h1QH/#oAm>=7j(I>q]4Au6/gX-di-o5jaOD.'?d_trHSZ2f-.o,-Vh)n3L71^B<)r1s\;eg;cuV9o347S2Q9LW#)b3]lHMd4'[MDCK[LLnU_n!AZH(iPg]uf\6FK][pBT>BiTf>?+]7&nMP$/br(>CdE?sB;hnP6<0;AE^4cT'DCfH]*E6BHttZD#eHMj)iYmWRLIQmUke)Eio*8!V,chM%BXIcBPUOD8n`-E^nXClU-er%?ZlZ&T^C,Ro^o)T^J>+A$+F@,eLOa)=bKN.#-fT\Z$6qX;@./sj`'X80iV6/JU:[%).m%3[\mMPe&oUSu?S3H"^luH>%%M6$'B[6V@eW&$;r<%rJFPBQ*M7k`HcE3]*'>3]iSQeZ")e/ui+c4Zu2OY6+RsA2#tcJu\*R(jnLIX6WEOT/Z*s3EelJlS=Bi&=@Vt4H^@?Cf@"2up>HqVSk!(o.XhHfsX]Sg+/]6;"[2!I-elJlS4O,nbXon$O%;RIPCtSYULUGYkk:`bD&!%oV*>\#AsFGhIj/L]#D5JX!*)J&Jk@!jP0EtTcTVh2@0jr-5nG%*'.eUlJS9bIFmV.&h[bIr)?(0hs)48H:OqeI!K_0uQ!?o2'&9';hZ#5aqBbg4N6[fYmWco`!YNC-Ws&K2REVC"*1LPO+aih7Ar>&Ec5`C`6<>$=Xb!F"5?[6693H\[1#_kVAiFFH6XqkC,Yje8T9kjD>8:R;-/]4E&[H8lP3Qg!lS_rEoe-&*e.L!\G\#5rtnOHs2ZmHkoJ2"VFC^#m\M,4kBM#H4_/""mmF)Rc?5r\LhVnQ1^0G%bQp5nhf(m%CGu6Q=E^KnldBU;[7^40Hg6XmIIpOTF/sN6pFT"n'V4;2:%m,W_mL/iBJWmV\kVSfWT@hHmaJ^-2]HL]2`O$k+[SBk]`C(jZZs>AXX)?uN`DLldK#\QfHEh^h*8UC\=^D:$qF%1Q#O2`,QD?-q*fL2T3FD&-f!21'"R2c=`6F;U[1ia+^-3f3Q**RU^=N\2o*F_`B_FSA[]SpL65d,1aO-iHY0!DaeYj=p@n(jIN_b/unmnmi"qhS+`PoefRFFMP;L`G>N!SaU9n^[!_/%3%3ArkBB&Bp`p/(Rb&X]Sf4[UO*mL(,([Is"jtZ*n+YjZT]I=Bi&=@Vs*"]k"b9Mb#Zd3D=;:b=pq[d/a8Q(Pg_\+SIg2H#$rl3tW%RoMjK&9Q=:^+,r1?6c*Wbg@ir7bD&9Qo=&/FbSaM.4$bRK?FZ(M"#g:F#P0Yn!s*rd$u8,j')@D>,Nrsr4W*s^7:@q#@H*))Ca@:K-CN4_`5]D6$";:Gu-%sgL_3$NlK`Blfi+8c6#+e4InpEnSYDHjYa!A#H:(_Sj&Y33sd+'`=d+c6*oW3CBo?c+4=bm!jZLmt&&sr`i7&n0#FCld5[nblQIIa8P>nj9`XcnkYm\_na_YiX%>!^fcAX08/imfc"C6[6shd5'Zf!3P6G\#=>*ee1(Q6[NrS-K]@EPr)G]R>27mcB^#7U\LqPkK].W<98'%Gks`V"8)5jaG"]%+7[^[QPni>G1@\/$r7P[QL;Y*\I')fQJqXtB>?[*>2#G(@;?P(dR__:/Zim:g=ffkj7X_k_$u?=1c(kL`W:k],Po846WO;qAr"R5P:Cgr8\/HGtJMW"+sCK-Q\km(kedh:Z04=!5*[Y)AX))5UKE]>,;==N(,tlfiF]&XB8]3@DdiEd>#%DCFdt:XK>T/Z*n+Y`S-3W'cT&IfGoHtVGD8k4d[2!I-elJlS=Bi%=_hQF`LUGZ>D6$Bn(;-iemSNe59gr0L!JH%Yab%>O-+LD39*hpN&6,B#fP@Ms66QaAY-$d.OW[kg!:^E()?n"R(_G$_5Vs>^DgBC^7FZ5u)s4uRF>V598&6>:(p(J:&(;2)@Id>:N(rj$e$oD7O!I)):)TkjpI!g9DW'5@UJZTi@"uFsXgg.ln#$W(oRL.a2,/jAX-qeTqJ(>FR$mpZe'he\2)P^#+5b!5dFZ=K0i)^X@J&BCL\G_Dd$-@;Ppp0f*i>gSiVgBtnF"O(]VRDNkKV'ei,3j.kO%[qGl&!-mo$/5AqK8%3%5*iF-TBg5<9QCFdt:XK>T/Z*n+Y`J+g@2Fek?HtVGD8k4d[2!I-elHV>Y[MVF@;Y[MD+-Ybohjl*KbY++b7cSE\,^m-go%ZOp+.alo<@^i6e9BGrmVW@o@0C6jPDF=_Xc]LLR"^tK<;rSnclK+/'G!//ZMuY'>jVB.L:`]BXb"U&rYhdQ'>B#!kCW,@Yp2>,GN(%"#k"%Zb"b5`!WpLZVpEc>hea9Du-bElmqM1eqG'Yh8J8ig(4U"oAC3$4CXEi,SYI-H>a.Y*<$Iqp[o2BgAc[#pCH&WpX+Dr#CGB[#::deCeTeE0uOo<#_X$'"G-ZK"uY%b]dnum:r.m:d\Z]p"rN*OlS.tfHhmKnf6+cH^"1L>`O>YmjcOrZ%)[Ss_`Z3>W=V`T-K5Rkek3DC]TTDC]TTDC]TTDC]TT*fn@rppdH9XgkLCXgkLCXgkLCXgkKX4:k@fAb@dYAtYg0#26Zn+=m7!bk1:WklD0Zm+VV@s*#@Ss"iLZN:lOkdI)E:enGGkD']W/XTWq+W^ef^Xe<#N9V\]2b:Jn$0?ldOB-TI/pfgGidfbJe_;2P%"&:'n%sSj-20\X7P<8Nd@I&orgttB\QCEeAX"PWCYXmJ=6lTds/1u$0C;,XN72,I4M/,fE]Q2O.AI!Pa9'm?9W>4!q=USb3.7Tdhj5E.P%EF!AVns\19QBkQCXEAZ&T:tbJ'`(p#d.udGGB\IiVFD?W6G_(sf=mPb'[U3PSJcFCN;aOV+8M*7>0hNUHKG!f%EK"#d;Q]q3D(bbDoLc,G[GgQM[aVoJ@p-D3,'b"/(6'D*\a>p^M3qM^2VpRf/F+i[j46SN26H4l>+TLACW/ktPo!1VZVg!o^9P5a_[YC*\US-4!6$1U*\:4<0>eV!bG997>='n2aoaSdja9514:BA-YTJ*eN)IW*YUK7rtU4Q-Ad7Y)J.8U+=bnG.J8_ohm9V'2$Ti"^&;JAObg.3-#>4&8J9hd*s[\D.[p%mrC,EC@IJCHY"lm@]sdc`%N>`q*_rUS[V4LJ,;oMGG%SDp4=W!T6H?Q.DW*Hc/_*Hf&&T%ZT>I^oJ82Q1Fo)*O$X8T@u)GWahA)n-Qk't4pe't4pe't4pe't4p=a5_#agfE32gfE32gfE32gfE32gf?NYO14Y!>Q)+7Q@U[%:B.do?OMk50rV5+6$@u5%!/#0lrb:f_QCWesR["WjS@CUJ.*3MIrJa;0$5]&A40Ebl1@k]?%f3kLX"mV"sV([nD8a(0Dg/?ZtN=g4=kZbLGRZ^9Q)VnrLf$mFV,aCB,[D=1ne(.Jik2ar/:IVC`P0E0f24\#.k;\VbD.QIQWHVBaBnP6;`fW_LBiNOWE_.LKL6PP#WJ@K1P%m=DgPX&3n\4_,XgkLCXgkLCXgkLCXgkLCX`urLDr]ldijRjTijRjTijRjTijRjTiph9+NK;iZcYXu2\5)4hW3(/f"#P1[5XXk)ctJ*Ji-TG=WZ.Hlk9,!V-RFh[Nc=QJK-9&nihR6XnSe[+'@(RPdh+]*CuOZND/e?\+5D$^"Q*LsiSL/sE5uNSgtqoIGTX;F1[^9BpmsS45#8dc>7f,XIOV+8gC=d<*N[L<#fZ&W0O/*N'U46[a]LSPGA#R6)P;k)Y_Vb.#ldR`f.J6CRiF>U`W@>2W\YOD4H4)Tm>"S#'M'I0*jH;ttN@7_hC40rqnP<0?<]hFaBE#EC\?39C\?39C\?39C\?39CGW[$cj5[T-[c4aT[c4aT[c4aT[c4aTnT_^+O5&sK[T[!?!_Or"/6tgL1`9r"c8Yk_c,3@adg+P0%?QrhJ=+8!Le84&j)biqQnLj?5tj[$KL_?F]/UgYGS:C%m#MEBNX:7[n2;O",!6r5Pa*g'=pnd5hSQIl;QIjhMo:Ge!^2,f/<'WUMU7'YL$U6.\@dd&WD9O\qL7S:F=P.iQ+4TW>Af;_F;$C/V$N<%:CVU>hhi=8Qc-h*e`Nn#h,>k)=&,5#qG9W*JO\oWb?skhYLpU%__tA>uu5d9dfS78ZFE4JbQ#Z>U:W5=f"\.C.IhU72g!k-W[-!m7%4O[UA/SL/'L;/UCZ+C6#-VA\_R%luGSaNn!MK^B'rhN=i&Z)p>RA^X/)X!,,s2Ia_o&r`5],%3ck#c;A8GcZ1tkR(,kY/g`ot,"qhNltj-Z*X$]TUY*9D@bD3N^!G>kY4N]sCf>YCXaBq19+OLlm,O*a+u_B*ke>B*ke>B*ke>B*ke>Ocr#hT!TQor#6m@ob+$YctD7"f:>-eCb?AD3IfF1_/X?I8Eu!%Jm)"crG0QIT\bnkb[8k81u_aDLNTo>^[m-Sco#Z7hB+l"CWqG+Z6Y3U=7iS6W,5+7H[#4JRaiV`'+Zd+:!+HE:JVVi$&GaXFh>:Q1-9/!hMk\_W/]=+g_;uh[>Kt9>Tds);GZR!M;:cnB#sV!Ea3>O"VRR5]&qk9&H_Y;BnhO.gh7kATWT?TA3I-)nAIZ0B=NN[`eUrQRetr<,,Y!aR)s8929nZ[A9%>>a;q_m,bCl?'W#G8%#a+fe#5WWpK&`4?Gut[@EH9I:YT_oP%-K;?G=>@SL^I_:mW$$*;C/XS!UHU1m#]3@D&TM(E_RCONTj-l4#8_7$);='T+i2:seC[&/IWgf?NYO8$'&D8gA2D8gA2D8gA2D8gA2D8kQ*GT.a6't4pe't4pe't4pe't4pe'p$DqD1(,>?T;sM-Yl@V>RrE`EG4VM8fN)MU:(/=X';6uU(rP8lCjl`9IQrmgsSZcYR1_XCEXoN(93O<+g8*cii_'iFIRmojn0IRF"8@oV$uA4.O"b9(qd==!$Tqe&:OKh`5LcRlhD(uLt0DtW+$$k'OF=ZiApBi,THX_bMcH7.JO$XJ_-A8TXMH'3#6fFL1#7&)#O)ki=D,N'0pD'0*]uA;!PNLH67GRY(d.?%RXCA;,Tj+d5_[t91Ae6D-Hd;pYjLYbFA6arup7C>RF6Z5jEL[IiSU4f4!d@Jf[U.86/9>/&#]npW(O(-MsW$S8]f2<,ZW<]W*J2Gu;VVXfP.!fF3^GI-m*_3!-2#`3oS,Fi"nT_^=GMH6SU-@5HM\eJ6ji]gVgi#-ao%O98*a-DH42OYJIGjkL6LY^24P9t#T3F[]\#!KE*Sss,rb&=knIsm\@gdO)h\+p3GV+dEjg3!paX&omPSrWNGAaGJ"nAeL&;ECu/+q73#f>bi?f)O*m0^/:?H#sLD(7&L4+jQO3W^%=@6#RVZbF,V)%1As97rB72-V4P/jDh)B/E&mb%dXM=K;M]c<:aOMuKMG:E/c'@Yo9JqpqPL)2fM"=%;Gs9h!C\/$pRrZHqW-n5@d*9KmS'7c3KZaIV*9h.Gq0qsa4lhu>B*ke>B*ke>B*ke>B*ke>Ocr#hT!TQ`GNS2`GNS2`GNS2`GNS2`T-K5)]uQ>T?g^n9B+m[_TEMPQW?G"a!=&A>_i;"2jbPkK\=2TYgBj$Ak\Mpe6r`=[sj$_j'/00ef#l=Ke_Uo)!nP^Sh;N1m')2CE[SpgZj$#+\&)7$/$q5VKW[3pk\.2Up,WFlX`oN.H<6fo)-X)2TVb2WW,[KFE[ReD*/2O52_^I9JmuD4UhAM;$b)bE]pAr5q(N``#)D/A[M@&W[\?i(*cg#rkk,J"L8;7UDc%a;;M\X^d)@*J0F+,<'Od.St&Qp$[7;np/U+=u6KG],HoV.S5JM&]R(ZhM)5tU/fG>HLQmYi-6#jN-#DP?p%^C>MM@rcZ5l?DnH(M+CG14=<%b#&1:ojDmr)cpd`o=]E's3u&"6f/#G`"%LD[h^TA8g1^+qo2I>5/l.KkjU>%naUOkc\')/)$pWotP%RD8kQ*GagI+.rHkT.iPl3[hZ@e[hZ@e[hXtEj/m[`m3l_#AB8=WpQLgaoNtASY3Xd&6'MeTL/)Kji)+hc4pc,:/IlN"g04XiS*=>\G>%bFS?;t7U+-[I=nu.q!r7^ke%Yl&d8u_,#Z`kW@Ko;l?ho[;m4tOYOq%$*OQWqHDefW8l?1OBq2Z\Lb/5364`1VS*8ZWkg\WrkN!]+d@KNU4XChkiTM[**R:AjMia^[RI3EaSRRRBB?DNa1A[<0DGopsBgu7**mUJkUTZb-"mIh=44?DO:g9ocH)GDPNhaKp)HV-\Da0+1oqLjg8+\+#hc=h@qF*mB:;=7$[%KlmWKBV@V*:HMD7(h-SU!==mp@hf.rHkT.iPl3[hZ@e[hZ@e[hXtEj/m[`)TX4"c$re=#4Q#%i-dNPhS*e&E,ZWSaH_&M]HN4t!m%@["W&P&WV%/+6"UkT:cl3H\WSRpi\g(%OEsH!%-QI/NJb/Uki0nim:g4A<#brJK%fBaUEWWsn>>]BBb>DK3PUFB*La57.PdjHM[fXY_5[DP>6h;d7YSP\OcFC+JRS41PI9m$(B9ctdds-l.4:H5TLq75(dn,@/enF;0YI3bh761D5+43k.Zd9LVG>:.[m@E7_T^4,kkn:="Ag5ZF2:6I[.-?PHZ8?M#VY,tF:2VlPO#V;USh'n%I:/#2i:O'0lo-l2IlI8IKceX"3,oLm#j[\EXq>H*ZWB;qh[k_GTZKLA!iqA#tN?fgl[4B*lp\?39C\?39C\?39CGW[$ch;bs'[c4`iEEdEeEEdEeEEdEenT[1Q]#S[\Bj30k/Ag\gX5sL5d+:RqBbW=cO2L>"DOBnK"4I>fYh18Gp?m[??4.TEfEXiX\%k>:4cC*BK9G8!Ttk(UjIb<>h5*#;C:A`m>&+s1*e]h;/*LkiJDNbhV9TPhl@o(Znh-nATn,t+_(\%&hKra&Bd+-k]"+A&-n-D]]Nl/>B.seUu7M`[RVJED79s!fr(%&7G^$&A_6WX>eo2]t!C6opr67&JBl'35OZ(D2&G?;3ph%YlEW0+CISQOkSF#lP_H:j*e>NcF`C0M.jdI0BtEmq@nH4>&OOrUqGO2p:K5Ahuh.rHjU[hZ@e[hZ@e[hZ@eO2p:_He_ZWYCUlG&>Z3DKt2at0\*oG-3eY29_TSFmFr$IrO/q,CBp9J\%k=j$^BQ+#.eT^TIn4hnrN\MWCOFJWRLrpRKR,qSPX56]leMF;0NS?RV\Y!jrh$t4%Y4#\\\@cWZ7_0g^1"',e[#\iXBD;LVTR(K4:B%jQ]Klj&'GKF#sOXh2?s3Spm?@qY9me-76ak]*A++b+2TuS(1"ck>1VHIk>n0pUI?8XgkKHgfE32gfE32gfE32gfE324PmZiD8gA2D+3KnijRjTijRjTijRjTijRk:eidoO:YY17SgXM&cOif#940.uLYh/*#emYVAo"K!Y/*e&nG'2+l-01Ce`"9ihI$k"ohJnr[>3l_4(tY#LXnL6BW?6+L.WhlY7R_W*2'1Q)6++#TgJ2NAL/s:pfLOhF+KK@2osHnJC@q>3-?_X4MAVJeCb@b]mVRg3XCo_'/2L2".O`lJDQi'f;V?u)KA0?:=o[2nG&"UL6mnCD^=)Oqfo5nWV%t013-1iNF[R8*:e5s1!;k$>V&@QV$$H\e^dl;oT^?M1.4_LdU>c3P?M#P9A44>tu]sOZgiH0H@bp>Cc72KH8F,:s+hYiVm*BEthoIg;gEf/^ZUTNalQO_KlB1VJ[B:u![e0@q-Io23R=YmX1W#Yc/dCZHe7F1o(Bi%CKS`uU4C0R\97;YJS9M))3(B"Nff9G\jT4*Zu<>(kE)Yime+&(mj:t5B@QZ+%3UB?&=:K;.?EEiBGgM-cgl;&`+kJpXqK'8c%'nP5GqS3eAA&C!,;%>r^-*T-c.P*3fr5oAJIWYBOeA(+k_sF<$>4@"/EEdEeEEgi#XgkLCXgkLCXgkLCXgkKX]QK:iMVF$CMT0MPD8gA2D8gA2D8gA2D8kP;He_YOC+K+]0Xn=ho`+/[=Bl"-F[h1k[fD'8YHZYr#Euie0K*SFUB;"aqs[\NDfLJO^R]=UgOEV9m4?c:42SV=Hbe.F(J^P!"_u5!^]fdIO;)=.a'AWPQd0H'h)kT<2_JqJCTIJcrB\9;@ghY\q]F2N4CH5'rs,C>LI%];8dept\Bk[KBe(PjGr$&2XZAQ@@A'M7qF:`tot8h!D(BpL9Jo*jZ;lpfb"aU$l'mZ=CXFjS3aG2C:03aY'V^DVm%TN8#17*7[@?Be"Wb6rP,%p$T9QLpIR&q=k+%X1>Nc^]<+PmfcHE2,[)'hX[\E@fl?tMC8gCY*c?*kmD(Bp);/`.YU/-`>BrQ=?6U])ESa"gp3eb_1Nn;YjZb(8MajYUa&M!W4--4I9d\hCkm\Use+PhfJ1Yn4hdt2>]q9%)2h!(_%4h()jNd_2sn#'+PJK+h6I?RJ7;5;OXc`+&1cLcY:L?I(.>l1-e@)+/VgL5mJ(6_CD+,hu(SjjL$05AUVDp-0/ATEp"S>-9K'oFiE9nDY:7Qm09@mT`C^B/fIOkD+7912Sf':@09"f^TjmmloEEdEeEEgi#XgkLCXgkLCXgkM4c/Z7lnMW@E.rHkT.iPl3[hZ@e[hZ@e\(/6=gf?Po#01TRBj30/'3_KRoBcK"5ANJ?<80cdZ7ULA?TC+FV(W09:e7k(f>)9%`/**m2]I:S5:K6$TNRdR8><9el[C>@mKM:?-Z;+AkNF:15A*>,#U9^DrgP(Q\rLp+O%?88.C2MA%8G_lS\_E!K>CVX7*l(qpj=QTVX4Ke4R=_%&9ZZttKHcJ`:jMT:E9SP`Nk.Tcq[$pA$\=S(<"&Cq.`F",OO"bH%DC]TTFkg$QOct()RgHj't9GhDC]TTDC]TTDC]V*J+^=RGeA0YgZm7r>*.>W?!3a8j@ogS->;T^JrIX3:iUt8kT%#rH]/-P[-rak2G5a"=i5p/&lL?!KuC%,^efXmq"jq*7QRVZ\5g%_k83>s4p[_(Q4P(J#946O!]HAE!G`(:XM=l1meS"F3OAtXh;/XRIet3$jW4H;7m!E=e3T15[@1&`c@XJF\V2*o(N":B$r!4?d,3Y(d!;\^EL<5`"_t*_\jS6c4!!N]?cf6&.&2TkG:udihO/9/pfQZP,I0/397?OAAK#JbVfpOX7P@@kg.G)52,-dgot8iOVI#4PqLY;gkgQ1hZ+l@%1KU-$hhgH3,3[C/cOkY5eWdCPUB=(PIfMSUPo\.d5))_(nJdsBIiq53%[YHFnFEerAUc!Uoi.-:)E26C1pR'$'"UbdbN=P%J@,*?WR>OT15gZj'2Q1prSM&e55nIC&GLuR.]BX+9+BP*hZ]2HfkXKJHRnJco\d)iFu)$ccH9!FZ"7X8g*<@.4B:[J;hsTTV\Le5(55ZZ+^5W)Jc"VTc-+DZ3p-0TRZ_5EW9U#pQ$9&'t4pe'ogt*gPXaCgPXaCgPXaCgPX$UpUI?8XgkKHgfE32gfE32gfE32gfE324PmZiD=qUIdA9?70-VnG++27(R\7VV#!!!-YgR+eq8[r8PbVGkZ,I(43eZo34!;`FIo-)[#L%BO6=62k$lZ6U=R)4KgDkm4"45M-$bbpcd,&:B/[]cK?@MrYlg1:T_&d?l%mk](cqnijlH4f!K2AO3!:+DN#<,/G[Q8as'KSq$5],%1g^eM`l3D#RNMKHjd19%e8ZL$m/9B*@Xfo/iN^nN2[aKs_ohFb1/G6q[j-OCR>H+AE;K's=/BSs?XYfH>9sge+U)C^.asApNf$m_=dqGe2ATS]K:4(BTM*@jV@e"L2jehCmLb-+S41,gZR>tFtS(+81dFub#mhmZ0/\oNGS738"k@ZubZ8<(bF47A!3;8j&-"1M-!O!)hb/s12*K7:M_&rG9C8T6A_.-M8hI%89r"gK/$_"c8u&gQ4gNRAelQ&o!S.,0d=#354>j)dNmsk&8%H"([\BbaXYc25SN2h/*gfj3Mf-Y#Misk$]uS8m;ULO6AQPKZ26uE^iiKF!EYMYu+1&&#oH.+NiOVdK6$K0p0i7=qCQD@8Q7W%V*(D=ISZ5`Q99rg00pX(8lk_ao9U;:(>*`aC9.TM,rA+NDB-4St[hZ@eNSB?FMVF$CMVF$CMVF$CMVF#tmVuHN>B*lp\?39C\?39C\?39C\?39C\?1#A*k0[tD'f5ZiiE+LnW,nK:f:U)D'gL'-Tf4fcYckOh$`$^H_C/d(=6@b'p]aJ^f6X(N:lOkOj8A/DVPc?7SDt2Y^q@K/*LoZL*!>+`CagPL9;jB0\+p/Z/-8MC@.\%jrcK^*Iu\KWfY@DTZ/*Rkmp(*YmZf]*C6mTIc3k;E,gFBfAbc5btp)4H_Ip\#H4cE-H:SM\E^JR2lj(EVgu?dI3l;8+u:UG1^`I47@#q7[DB<*?t<+SXXU7!3)\X%iNl\?APSA9]uX(R8pumm2jlI]6WG&4V,!efep#u.[_AOmVma1%WKF#3on)T'35&[j3GgW+2^q767IN\.Xlp(WI^+@ZMm9<)eBdk$XNZX?o$f?E9ae#2I!eWuns0%KfUsoN4M#k[L:UStDS0B*ke>B*ke>B*ke>B*m;eidoO:YTXSirf3fp&DpVBc6OXc-U@nKrgL`0K$3V`Wu7R;O]8f7;mt#:0SS"[Xb'CI5'Ha+/l;r9pRK[Yoig(XIuakk\[_^Se`:/P"a-=(-3B#TY4ZFXZZqa[J%sL,;`@+[?Zb=\MI2(S=ib0f/nMV6msW&oE?V8=Q]fi3UU;DF9mn697YJM6c%F&$e/4j_u9'6g56r,IL7KEoPtl/ZbB&[.'g$X8XkuECW`Ku$7Lm^]sc?;+EchReXE?I=_l/4F&#ebK=4[==flBW9IcKW%UYRUeC_DJUeXG\\IVtfa1(*SHj*g;Kfl)Q6hR:c'[)/1edF0:]2+pXt.LgS0,Me>5@B,$4SgG<@BS=e$#+2GDKSB_U+ii+:FRDZ7E;LP)eeqkqUB^SLX.dj="&hZ4n)SK0ENob$K918n%5O!T6eT"+?o[F$\2ZkGOi,Q9jr#^-QO6+)YW0u4o;c&&AY9Nn\2_;%iY'TAmCB?D?YS:rgfE321i=g].rHkT.rHkT.rHkT.rHlo]#S[,D8g?\j0msUijRjTijRjTijRjTijRjKHe_Yo[aigK19@q7nfed72*nig%Urp1@=5utAd4pKo;XU=,%Q-iTo5KH:7KdmJ`m&;(99af^OKs,8(b1:ZIEu)tn3A%!U:?O@^9Ie\R&NfN9Z2$U_pKka-TVC8&+B(hg%&iT<`LBs*!CeoKtj'*dc[U&:#hA@jff^9[q*YFgT$]G0RE/-9%6[+M"qAP6bVd9U,7B)C1C_,V;6E.:)N92KR]-.X'o&HDn0\9,,o=`[P/ZeSD^sPLS@:=-VQKMmgIUNP3O;!>\J'>F)\?39CB\ZYDXi=(Zf*e]AfgWtiP35A(oP@-KYj.-Z6BI$@"h_+Q/$,%q9d+osh27l+dUX1/%)dK)Mh@3Y(KpHJIU$=>]<=6,K8"caGW,rFt982q7GL.5'OqUYkHisca4_^8'o-_OqlsCXHi(p!e`9&J+PFa8.CkX`=2IKA5>COnDH/>179@Ra.h0#?Q5BIt$hbJ'ps+>fBNDc6u7fB]-6[L>28b+YZ*'MNXF#F;fl<,8j9S3JG#3SO0_A>@J?^Y0W5sPPZ4&E)KH=DSF;6)f;ct$gPU/Z\Kp.V]?jisBf$G$1uCX-/>EB^$Fe3CPDS^$'3'$DkG(G9u@.1=(YhpZFg^OMU"Zs>%E56?MfWNp12?teKg6V(+.qubX`Fg`=p;0#ZcgA-'p0.liqd?%],rcr0#4<:Zi:-P13-ckj:0eA8UT"cM]"4PYYRe`Da'`Lo(;=*Zd0%g@'YX"/(FSjW7B_^8p&+Z$66fUH94+&b'C2,W?`[r[0s\Wp0`(3[h'Ootn[A[c>k7;LKnjpAHe-pGAmY+Z#YW0uPoJaWl?PAZ7`k[,0(4'.6TrKLSU4W<9]iGXql<-U;nN6Wg>6KVbOs=D/B1g2^W,2$].$g;*XaX=uR:Z\qJLnQLMhMmn^d>B*ke>H-YkijRjTijRjTijRjTijRjTiiR@Y/eJHqS!N<-mA[Tn=2%2&WP=#-JPh5Ro7SYPR`YCd+]H3g-$R%>]&)P@i5]BCL"@_K>5ZA6+M@a*K$iVB#XVD`lMb/p:F'_<(0`HSC$I]JM'#[Dk\W7pbnX]Erc4F2^.>>$ZJ=@#;sJ'E;b_W>k:&fDGE)d?^_H^WM/h6aTdn<]0`0E"b\lt^j1i$@*"-)rsL3-h7Ffaar:2$mt@RJ!:Y3BYP'%K-%g>M]ImnD$A%i2Gj&:5"meE_/r$_bg[rVCi_("1aU"d9.DJM,f=(i!mEU"_*VW=*-JK;\[`TFQY%#!62gN\DCaR5`bi\3`GMH3gPXaCgPX!f`GLB*ke>Ocrf4)QQd.rHk[gfE32gf?7L.rHkrgPXaCgPX&KgMpHr\ZM0JT":o'.Os_WUMCY!]-j<*e-@RBK2BtB&#JrN^9.]5W]HiPU)WY4?'(sC5u*Q(IG9+4r1gGTpI:p$Tr`8q1H>irP&.]0-_0g/)bk4rOHrml*=UK5@AMDqC%0aj^?tq*Des[5M1ZUo8654YaFp?*lb@fTR00KM_rOr`LD>=>ZK3j0&hVAbBefX+<%p86'T.=QJ.6/@l*"G6>PnesT>J`CY*Urs0s+?kHIt\hS:-iK$)#.9=K%IGh;H3TO=Gse$['i8F03nV;;jTh0SNeW8131)@WJXNel=DUNYfnNUrX8N#S[4s@>'+7=s/R`gG)Wi;[/,Hg7[c2/H\?39C\?48#>A`B6>"E@MP<&C5)>?jp9(&bQPLe=Wd5O492X:B$5/d19[hZ@e[hZ@emjjCPMVF$C8fbCk-LRpgPZB`2F.](EhmBBD^03a8D+u+#e&,h)*`1laI,ApJEEdEeEEhtId^ZDCD(E3i3^"VaLZ%i:FjSf'%L"0/nC[amj;6E7D=\lL2YBF(VB0c8)PF%A)j7OB_(RJC?3DQAH@?O'k-mZTY*@BF&,h]GQ\&R`/qbP&6V(Z2"=FInA"2HMLBd5YY7VsniFus_4F&SB$n@%5:NF;K9dP%t.YjKH$ukU%*j5@*!_(]9LP=[N>m)OXL-nID5P0&A!aUGL:978rdIZ=o\()k`!+1[9NS^lpG[,7,Z+GA)D>%>>L^uSreZi%C@U=3nqZBlf3u4f!Z&AD:'8^3ZQ5krDq#.8KeR!fK%u"jBWE_?f'6_SEPVbF>WE6J+g8]+d0nG:74aGpX^>;!?LQT@o(BJ8#k5j6MNiRR@ei9bml?J`:"B20Fu\F9L>M@PA"QTZJ>7mh_9@il4"JZ6P563ED8f`"\?39C\?.U-D7/e[mtCPs^1f_!2#$CDjeis)'t4pe't4qHk8h#H[hZB;`ji/%^$hLg?edT"#G1(lICB%fj0msUijRjTir-OM[eb&Ld7GiCC9,eR>%ha>!G>IEaOf$o[@I\)2tfOOFXO]/T7\LE_P*p@'DqqF+YY)BJg.M9q8d-g.Q0S5IN'Qo[Y*D09+Ve;$tlcWJJTJ`&<^-+mh;-40X_#=I&M[1@288gZr.1/&jgBlnbXdqFZUWc"BNAk^Cn'JWWK-$Y4rdMV8pH,LP;D0Q*I(p5aH\jju*aYaP*Om:VqL0.,;Xn,3LfT)2sr`]!Qar,)0#r\tjE*-ui*-PX.g>jdUl]h*XHVC,L=(A_.6p\FSms7!;\@/f1Rro*\Ol`efK!'3c\cqu>2$XpbT-a`!Q@TtJ/[,jYMC_/F)l(P5Z)!]97T[o24ebX)aI?Qi"l?&FjSXThK"W:.&T*?%@.8Z;!"T#J2#e.-m,^Ume4F[iEJt>0+@!'bWl@6X%hE89sY33U\"Vk1,Y,@;c;m%X*rrHPbZC+%#m@+,GC1%DsL.0N%BJ-;.[_PVfLl"Z-#,0O+AXAkE/6XMH0CcO)fDFTEn8[[J\ZNBD\?1"g09+_DgPX`XA*1GJTRG;Iq1ee$Q`iXoe[>p?P^E\T4E0\WYn"5,RjOCVi1qWAA346A,j70Z(NoK,U"GR6ARcQL*M#*S]KKchm]8Fq<4=`8u;gZKa$`WBWD$P5(Q:>>3?:"78H-(U[s+@h%RmHg^[H%jMX#SAC84DqPL)FO5*dKNJuVLgPXa#:&>\ZP'B)1DiOX?:O4j8.rHkT.j".ta)/e4`GN#[I>\n54/V)_#D\LLkmj;c\k3$ruqWlg^&Ql&UNrVoGRd@Wo9o>CO#?[!'IE;!_(]9]*WH;Hna@H08*h:5JUjf4RfkO%$X__hV$h1+W=+&'u5YViF"M86$HBXoF1H1&(4K@*fp%K+$J)Qcb8V5e2&XUEli>VEaa"WjZG]P_>f_*Z*oC"?KYar/Ka-0Eac4!$g(YK@C@lmjr2]W[P7s*)D`Q(6Qf?n(.1f15#dg.JtXk#b,"UF9[IFM5]KO]e>1,M@=UQZdUOCI.i,EhL&BFg-qK;Mo^jP&9pFYTT_Lkc]XP;'<#[=n[lXSX+jV;Xnh%e6#!c/_CIid7#:\M2+PLEL`:"N%N]9A(UFglG^E;<8>=.DMit1C#+5ZeKJ[`@"nCm%@]R=f6K("!%8Bt]^ch<*MSGOud:$;Ag9YN2.c/]5!)#=qTgrgT%+_>hhH7B4)X:4VL0F(c8W1_oohT0N>O!UZ]Hi>1Ept6dgM1>@eR.6<'[#@a]!6[BKa6cW_F$"J44O_f_RWLrsC_i:ooh)cZt-SkgLPWY3U(7Dl0^.WG+NK80IRi#>o*LX-.Am2(IqiB]N[Hr1e+eS`[=76q<`7-gl`*SX]_mXQiaTgWA)eg#.*tO0NXkPA+aPt*YSfj-�p07Zr+%[7^kJ\EfW9(F`&T.=G8HN7LJFqAS1%gCRf5\Y$OA>I42H?'YZ`.!7/fLSPmM1F[N84`UH%^N`b5e<4<,YABpc9]slk7AU-#/Ytg\,Hs;l7mtEfg=-$]oZVR]\b@_EJ"c4n&!g,54Hej%Qo5]%:8hbJ:%$n_h6!9&:FL9%&Z7=M=d8kPsK<(N&7#L)s4GZfrUYsT6Un0QGYVm?ug'cR$[pn[hWh&a)/e4`GNTSnT[1fa)/e4`GNTSI;.J;gfE324RTBTFAKC8&+;%NC>9U]$"NbpYY]mbfYo*u^R3mT`28Y2#!HA'M$=(7@*o=ld_r^dci"oE(ce_`Ra41Ib]U&V9T'q3T>?uK8$.kab_6Id4E;3lN>^TKV-Z5fu.Be+YFu^8j48OK^MT=cII[4h)ZKTSllB[`Eq."^K@=E)$r9egH@Um!rPRIqBnM!n6!4-h<0NSo47D`/L$q0sLJb#O?-n3:TM@2[NQm:[)6X`_:kcurd_t1NKB*[\0[ZFoLA=bseGnKKg.m=/Hi]ftr&/?,k#nc,-'+kF?mpAHC6$nFF^E;;QY_AlS:E_RQ,m4CaK#$";&G5N26sm\5iVT^mhou2Yq:pRP#N"D5a@GaiL*o0oi/u>CiSI;=mr\lJmp#msZS!r%H4)&u0#&(&ZmP:PqA-qHlG26)(Z%P]_rV+0i#c8+Sp+]'@8JCth"Ul)cb5*>7o>!4N](a5d,c>>oCdmr%e^+)_6rX1?miG]r+(/Cl0N*MJq*NJ?-?%kq'*"UgThYZUE*VCNma-7&Y0H+JX%3!W&ufq?O3JE"4`+ZBi;1QipIeoaNl[=nZ`B1P'k,9;:O(DfUQHnIg?5Y>Q@KZ1ZVq!^QD&FpUn8,,I"olH4&[1>H'>7%3&69r=2#^l:JhE?2k5u31nO1c^PlP]mh\-js;]]#jNlZ3H*gq+&Wmp(R%G:nNobq$XG:H3E7&*R>E^f[9g"d=dUiNUl$0Jtruj(%,dj90F+nMYUHB*ke>Oh]`j0msUijRk:GWajFNn]HGMVF$_mi8geVenk:7@'6nWnJd:(nHD3i$d5nBaaCH';;kF(W)n&Trqr4.N8TMm\>!q+fQ;rhL?!DHibHsf)h?d-:fX"'(_*%o19oiB=5O1b[q,VXbV[MZJa)dLZ&+T*PD;+^uoi(]Srop:TkUSo'cnQ2aq]EIL=kU>m?Xf'Z0P+H8p0t%5.JA^tCL`Na,5/;dKWHipqG0kj/=[=#]dGou$"W#Y`E=>H,B(^ZBY[O2p;NrcT3fV3P=Z/$QCj!%Ws`nDpSS/2\]j>[8o)WW8MO8\?39C\?1!<*fp''a)/e4`GNTk2iQLKgPXaCa5c]7?[LR/gfE32]RRi/XoTYSn`R7/ID.-cDk66S?rLsP=9W3fV#OPU1M8^6`W^-P;'KX\5Zn1(FJ?:<;[Zd9V8o"H"`"]`G<2e?t&$A,.8:?XSB"24Xe2DPb@;_u5PX`urLn)p6%[C*NW!q\UiZ8`5@f2'2&9dHgiKEIdAR]CfHb8"G><>#]R'd58;&I?j?QS;e;!bP)3_,TALQnIr^a[1KE-m6iD/G(i"f^FH9hd\@2HQRS3O$i_o4]#k%&+Z7a_Vk$L0V@b:P8V5^Q8]4bhLs;ClU&rY.(.e=HJ;_%kN)tjWAe3?m0ZN7Sd.=66mb++O)R_^JB<%E,!d&=3!l>dVdM(DU_%qUVID]A.!M&=4tO7\N&41:4uXQ8bXT4[<4!Ug7_-AJbMQ]DY[84bKTV*_i.%umD=4p9\?39CGW[%.p[-"<`GNS2`V\hXgPXaCgPX&3nT`r?gfE32gfD(;hRK]egf@("4E0sb>;a=6a?4S<:IEaL%((.Q6;tq7?kR5/7\RD=(eST?Kt9PuXQY50W^4]Xm=VL'DTF6kJ^d"0\Y'&aE`sSDV[Xiu)B^l5&`0EB_:sW(GSAs?:W'3jGsiZ8$`f!%Tlk<=YR9g4.>QZ]$ukNd5j,8P4ZC01a!KYm/JX<'c%hMW%H)4d'O!T0TZ>Og"$QT:1,9?p<]hFapWjmDRFA.uO&,8L]JKkBf8ma?<>`rF"pl$\O2^k!+L;ZI^d7oEl@V04@0@"D77R@D5R*c$K^P\_`J[bf+ip\_V.:]kS'&\m$kY/W@G("f2GU^gOKQ34K4imN-r$6nbJH56F:;f3p/jZB0/7MVNEnn0;#%9=P6P8KKRNGT)k]cb`Am.3\[I9ZN]U.2$u*&sY9mF$th,Kp`c:R#X08j,pJu.8<7@_+]Ng_?jhN\Q+Ys1*b%t3PZ6Mm4^B*m;IaW4?EEdEenT[/;mtVgj't4pe(%3Lj\(.+R_7mPfe5hK#b>;-d%/iQBcoX2hSUFG`hE:tCS^Yr!S:J3%0rSe-JVo1jd+8^m;9^3tjsV$k9E-[IT-Y%]nI+9_k>]8$RSdgo_.spi7K_W:/:o"'p$DqrPM/*`4:2HpeC_RqJhlU$\@!28FSf\#t`H=6&=\iLi]hQ<#81]#%)o&U;nrh/Bek8F2cI6^?@">A`&9R*$:Qlp4gPnLJ[?A)lc$e?odX-9K_iu6AJiCjKKRQ%U"D?ecH3GKGT!E60303n34&[7R*Duq#h4qM`V@UnRl8oi=&C+GeislFS`n&r$`f?*>T8_!+!ou3r16U`4Norlqs.,EeETej=j9H*/-;#>8[Cu$5oGi@4K\3VB_Xc-jLp48I0NnR7IRM%QOeNmgd-fh>QAAlCIuck;]gd8"lo!#jPWIlGe:OW:,Gg\fN9"l@Qm1%`gF3g%mVJ/8BpHr"_iFD2-!1-A]o_KW*B)#Z%ISd"FFcNin/QW&f/:?4AR*"M]-qn2*sd(gm@4f7MVt;Rl*q!nVjYiQC1)\G2]sc9KMScb!n1nmVSU)7uT[e,qj^I5!W=#i&HC*fp&6g%(:k2on.oEYK;3Jml5Q!fl^+#%NBqBRb(<;D!)ZjK@n>f#7]bmiI(2e!A@IpDeQDXPqP]9,P`q"RY_\i4dB0Lq@a?EZB9hMU`aRhn9KYD>&M;hCUDqj9^`!Q_=>B'h%Nc'oEOiJr4X#0HPEMWr/Ap4NS6\cgQUQ/!_k2HQI:ThSg2lO6)!W(Q_?o6(..W=\YrRL9hrltP5+':eApF`DUYlj.Fft_us,qK3-8+peN^:mnj)B=9id;e*Qibe+nXgkLCX`urLO8"9egPXaCgPY`(NSB?FMVF$/j7.@Ykd[b)XgkKX5Lm9Grqa9mgt_fio_&_Z=*G`'41_,r`<\?/9i+\i$\ks%d$Icu&^ce7TiBD'.teP/\?lV8;Mi++DrrMS@]-6(^#&ABSqiNC.7:(QAQtm7WeJdirfE-\npVG$a#F$7;Jrnlu6JHW1\7Du^qD7TU/,,SgQ/N%mnJC-RDuYOf1H*VQj:ES_mY7I6#9ifXDJ2W4KS!isck.fkF4goVnSSn[F;qU#GCbpt2UE9+!?]Vd#'uni;!2U#I6e>so\LGiJt8RnYn^6ogC#7pSKQ0e/+gN\L:2m7?nBA;.^&2iZHL##E.A\1q,?gfE32gfD([C>;kFA6gB75ak5GVIrUBDOrqHF9e`u!6>(Y3@-e)]K)R`Hm=P704$("-Tt@oA#5a0aHup@,XVU!-X`urLmiT+e=JGgAF6gdkB36U3+I#!CmM$aF/:IoM8RC>citnXR?isR//E#s!/MNIW#=2uR_/7LOE(##%C*+:!]>IA?D;`"g(T9F_!)^A:_c$CI\F-jA-;nct>IWKu-Ii3qPKq%i4o^58`9T)kmg6l\(Z>8^hr0:FaUV7&/&G=)IeX[7RB!OLcr8U#_I6rlPaJOP9Hj8*8.&TI9lE`PJ&K`5keST^m;Sc5'b4h@iCqd%+KcAqgiq+gg7jEX$`>D?9Aqg"Ttmn?NrX==o368l,-51H5P52E0W5']^W/t&I=O)7`]7lRK(YFhR"e_d0_gq6$l>.(.p>*,Am9Xpp)EN,HC=udoqY,[:29o3sYH:dmh*"PVDHX,;5BWaDm(H?rhf#YtIe!#l?-Ca^oo%Ar4h%K;5MW?SH"q?_M+)/ua&;TeSQDl1`[.YVRHrA\[a=4'XpNoK7u_Dg;i0DX=./5@eunk\P:G+T6+^NZ)uYZCb+!L[M@OH)hA6;;j;5'5j?++tut?Dk(6+&p@A%I3`R3gJTCQTEp+5\7CUX29G"<:S5`.XRgc'b7BGq0hq0!t?_mAbX`UZ+VYemYt%lhlUX@mkQc/-^S;?oEG/RTY\f4HDQcumXk0T4ejZ:!6MVE6WksZ%68'lh`D,r(iVCj=$eFq@<:RNGpl!b&icCg[`nBY&\t>qHN`O\qCf]fW53;eNf?YCP.pNFi(#(3=fN&!&.Bor,[Q=)Urg4"kF.Q"=_"Q)12A2lk02RmL=H6X)mFQYobiJ%.\L3L&3ESJlmT:(;"L%;fFQ#%,#$[)mW&OW)l^:h;Q1;^37DX8\+MeEXWG>Ht14OPq1A*iHNdYmTlTJ269c4<]-h:T%Tb@:RtC?F'ku^[^3!Ij\+-Fm\K,_3M@(f-WNsc)3o%69(b$5Zqd[_\MKqVe(+gUI&-M,G=m!:IB!(gL3f:aWP56+lJ0Jhl>?C6;J3a@I8-ElQ4kb$r.T:aJpNp$#W7>6PIm;[WpbB,$.[XT;GH"uk"p9Ff.)4:.s8SfF4K+#Wg[*)W]Sn1;S?e`[_h.F[UNI['AEio^p[]VZ)pi,fN)ghG[akX!8(=g/%-1-$ess@[oHCa[8gZP?qMa5]$'Y?"TT*`KmZ`l'XB2I5,#t("`$L8NK:-a5Y@l:Ts!f9Q0<$c]q(^oUU*NIduZCMZfhXBMBZ5Q.ZUSN3N->+/HjL:QTNqPDQ*R,bVf$U>*g0.HGCQn&NkuHutT^m;Xn^kiPs"eT$Ih#:JfN)ghG[akX!8(=g/%-1-$epPU'i/Wr!!(c2D8iqMD.-XS`bbkZ!3V,Ed@*mc@Su7Y=lo,30p3DRkPGK`ZEI=UP!,M1:e.6QV7I<)kYj.5_i8Fus79GPHMXF0GI4>;U-$lTAT]IeGU,?aW\Y7P:39]3Q'eX#o^*8"FfOlt/iEH[G5EpS,B[9g=&2/*-TY8Z\$u4+9q)"X`!,t'H]u3kE@/F_r9AWY>5&QXdhTuB;7Geq=&o&Dp%EQadXrdXlq2BFUP;B":lk>V=neX'%1rcD?:od&(,7q_&($'e)*WSV_pV:$f85*]0JFIs:sCRRiH1-Z3XR#EJ6l#jEL0#AXk!V<\OBmb7%(h$VL!.ZP.>?+e5kKtSa>G5NYnlILS'QSA;uS/.Xt/eAiQOiL'Eq3YE@dP2>#]0^M@4.e2q\Woad+`i?<,-SKH.U!=SEP*9"*Hb8NT4o&_U8'W]GFjr(MKq"4&1iq((n$el!g!)sB]$KYc%TjlYTCb#JcC(Au*j^VMg@]'+43cFr=SDT^ojulYbRgK,q8h9(Dl_!2jPOXd#c\?K#=loR&7_`5:s(jfa%@QSH=D07`ntVnq87(Du`mn`\1m/kX-&eV)Z4ZngkbMZli?G?X^GaE-4iXCTNtJ!35$33LYcRm*^h(?j_I^Ql6H-12fN%tP`"Ul4QNc+N'f0p>[C,SKQ>Z)!@Aa8k!P?)A)F4]aJt*P\FT)&4h[WU$5"g<>[D3jn'$^PFlUrga,&%T+"V4Y!!#haCb,EVCb&b)Cb)q/!!(IJgC!rngBq$9FPU!sP\,CIm\FPT?^N(8OuF*U!*iAiC[tP5Tr9;^fL.-#NEb(mJf;,r,DCuEROECao`MDR602)C+!>0iFll9%boAE$4a`4`4Rp8I'?3NOgBmo\<"[l"L9(#45g2W4/%-/m!7MS8C5/e_5=!F\dsbL1RQf28:75UhOuF*U!*iCK75`&>-@[\i>6Sg5=-F`;n<9dF.KD9NULp:SA_o1+4a`4`4Rp8I'8C?-!!)#/D$?TLfN)f=!!&lB[M=<"RqCEtYGg^S`18V3dp^Oh^RIjP;ucnp@j4:AN8FXiK04!W2Z&G?HJPKSNtJ!35$33Lpo*_N;oucagBmo\>UaJ>!%"nPfN%tPTIan0!$t@kD3Zur`o#T3@@E-^s6sshD6qi10n,2ZdjZ@mGFSUhs'^@g!5oZ-MJWLs!!(s*Z)pVK)S[0h?H.F?_mJrH2DuM(F6(Zk&`ZZPI)EU3[[KqQ3O?OaBqC,_%fcS0T]2[nF$I&/1#$!*hRnrRfMI,Ij:tAMZCs84T5>cjbJ"D`r!U/O8=>#pGq.6_'akr#bMhq1jjWE(b+u1X/]ENSS\Pga5Un;TNZUe5:O5k)nR,Jn)I%ukTVPtr7*(#'(o$(Pi4<""aO5]!^-fN%u)!bWGPe\^>W&6itOd\7u0059X"$btESYSf3F-_ua:J[40Ch8\p-c3V2K@QOPi!.\2B6[SGfmmhdjr;.K'J`)a.7tf1q*u[=+I#LIs\/r+Njk*T6!!!#A_6thQD$9n>!2(U381Bih(5l='so7#3`_nXNKk^`49iNpCVL/3jCYHD>=Z)rQ1_V#,Y[IEqn`#m`K8o-!X;rVTqTNZU6+^(!% +endstream +endobj +30 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 28 0 R +/Annots 31 0 R +>> +endobj +31 0 obj +[ +32 0 R +] +endobj +32 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 372.994 679.455 389.5 670.455 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A 34 0 R +/H /I +>> +endobj +33 0 obj +<< +/Type /FileSpec +/F (resources/processing.pdf) +>> +endobj +34 0 obj +<< +/S /GoToR +/F 33 0 R +/D [ 0 /XYZ null null null ] +>> +endobj +35 0 obj +<< /Length 2455 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gau0F9lo&I&A@sBE,nQ_,+&?9IU%3''5*Ib9fm@DG+'I#$'Z<#,XYImSR5`#"NZ;@05qR"&:rhMpFY5(YX#@/04*OBI(QVF>CETtL!PkJ#F7l-j=k0X9TTq_QAr,6F"=isj5T@'NIui*`qGOS^!jU37Z@3B-7&'lo0"<;'q-uD%difk>N0km2S-,H%CU*CLTQ(N((e[,/g:e1DKj[Hcc\;*?Dj3mX\$G9(TG^C>!YB[UE0^E&%1in#X7V;L>#2B6/8$1^)1)MT3.b6`3V7Q=V*jpE]fAP^.T$(WUc+hOUA(%#oLKBMk4_M^&/GJ`'Fg^AJfa^r;(t?C,U*l5la<)&=q$]C5f:Z92E1q6"W;^j[4+*/``.4nai1^cs%15n8$1S,!m5QPhA\-8mV9AMQj2/.h^=T["#(/bs]\f-[`b?r4Emc'8\79[Yd$rji.@U_*"3%?uSodu)3([kH(f80\_2E6^$g=TZ/BoR4S3?[ASGI/I53>:mZLJQ#F89aOOiog%<>E,G1oa8ep%(#Q1!r0f$.]0cR*cb$-W)DXC\&IUSn9cJDLm6#l;q!^eN2iMA]r$nP4Us0A%S:2<7Xj8b%grO[CH2Ku?D$_+$=41hkAY)Q9R[`:%pOEZ$m\;5aC^E./Ol8J:/.U2Eu7;rc*t^e]/n$9Oqjb=W`pr,3&/J3(7S;8pSUpe2;T#F(Y_9pk5(l>`t`GcPmCh'U9TE^))b]>%;]!WdU_'"K/)pZ[qDEYUXP/n)WkFB'Pa!s+8D6`c+m#3:GX?5kC@6C)8fu>i+M%+"+_QCr4^ORYXkP.1@=&:,g(81Jbg'h9T@P0@O"6=-BlqE`R]lD=[]ns8tIF"R,[d+[M@m+fW;DPpX1"CLe2LH!*/A@9rJU#9Tt9uSg5=RL^EK0(mI?\F2`[%BaW7,s-)mJ%XVU2XKAAX^b"7.2fUUc\-tmZ,:Ag#f4/E519aWL8X!k/nn]Sph"PORD9k*,d.(DC;'P.qC3XBY4WjHeW1>g_UPk$Blo>Uqknp:T!C%6oe&%]cZjaS4d=NUOHIV:t_o,#u-;C@O6#fe=7GqP+X3t+],Egf-%_TN)"P*af]lP>Ht,&&A%Oe0Fu4h-0CZ`oi9K$o\mY]EM\>S2?WDG%.R`QXO*b%T$iNY&G(Kt&rk?c%A77(u;=JN>B&PN%b,\S<9,d'^qbpXFjto5BOf*tZI25A`W_22X_^EiMGe2qsl+RTh?&)uN*9@L7OHmNBhX0$dPbJ[q*0>=HT&^=pI*6l;"KX6`O=cR@)q-W`WAR]S8U)Lnl&-Fc7An?fOP5P:5,#TtGP8%ssIplLkj32p,ei[4Qui;7D`l"[BTTZiNE.f1'%K'[6ILf(c%U,P]2U0-7Qd]a>&QqX4^sdh1#qJA+qsArLtL*b2=k(NX#*Q)=f89c2L/EEnDVCicOV`pN_W$qpQ6D.)f0dA'..Q`m]#NlH_oeX<]t0sM_Ei).t6F21oh.Me\dk=h!o,O#!-GU.4%)Ma:Mr_/6=SoY91Ve"qR-I;^MRH0%T'JbSj^lI9V*[<^Uuq\Y;P(4NemA$uWIH;=,8j/4+4pOn^5AmHP/CqkU6L6uDC;3iuAb?M0TmpJ:/tm*5Md!tKu02Q1($jRe1[Rj::c&n+LOYq,AWEFhSH!;1I2FjYO8+4f"#,Q~> +endstream +endobj +36 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 35 0 R +/Annots 37 0 R +>> +endobj +37 0 obj +[ +38 0 R +39 0 R +40 0 R +41 0 R +] +endobj +38 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 103.704 300.137 134.691 291.137 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://www.abj.dk/dxf2calc/) +/S /URI >> +/H /I +>> +endobj +39 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 120.526 287.537 195.253 278.537 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://www.openoffice.org) +/S /URI >> +/H /I +>> +endobj +40 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 251.026 265.937 320.011 256.937 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (mailto:lbj@abj.dk) +/S /URI >> +/H /I +>> +endobj +41 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 178.522 244.337 191.023 235.337 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://www.abj.dk/dxf2calc/) +/S /URI >> +/H /I +>> +endobj +42 0 obj +<< /Length 923 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gb!#Y9lldX&A@ZcFA$X>kS&egdNk$"VDE)FaeA,'KC"]hi\!f%Q*noGJ\'f<2$8,Dr%t."Z&P[cu!`Hs&'p.Jn.49dYLWCc\(Yf4;J0>!V$B;:rS5gmRj;Of/4f\n*$%[^""R0=Nr\Nhe>Zq8uA5Z6q&BQA60kLD'.`;;^]?rhYZ/@rX_?&VW$-'B0on*ffkYaFDL19a.GE#'N'a*oni6uY906Q?C6'RJ!NXkS?;WJD""CB[,L&&K+'G(Yr"k$'^9k&RQ,GIXtICD9.,9gCX%/)CQ[*U[S<0jerMb$P*`l0(j$1?T7t.L6@iW3YSPj0=qebc5'#UK.HF`K(C:u@0"mP"-6FPAK+k9u]MI8qO/@(!CeC'ZD+XJC(KsZO*`cN]>B/K_p@:>Yq03X>`?t3\[-sINdd*hWdpc-/?]7Puh@?A1Meiq:^-Y8YLc;AjOAGdConU6DqdJ2bULp(+Y>q^YZu9PL/aAZ*)E06qd^PW$o,6$&?;+OpG%t(%N@LFRQM=aS&&,51E0bfHE9RiUT?$-OPTN,Ccg8+d/*r@85]b["R>Y:`[//0:?ija?GW5?cqQJC*;mSnQ(Y7F()r^t:'M^3Y3OtXgP'@bkQ@?=#N@VIWR?BNm0U!N]WB,gAj~> +endstream +endobj +43 0 obj +<> +stream +Gb"-Vf5DU@g-5MNi&uLLhP36dK,j6o!XgQ`=g-5"(5p.@YuiR.(L,*a6WhQ5//F/_@^0#dee_Q7mqZW6k--`Kd[;n&bZ>BQt2YZ3cC`F?)S//F/_b1j4_n7D*-cNOq!1WhQL;Wktc&[PCu:G5a>-1f2`qmDAJ/L@^0#d(5nHA-%gCm(5nH[iq8)Gb1U74@^]aN=9Bt3D-/>i[YiZY(+X$Ufd_EYas9m,HPCU&dO["Nc)RSU?`'Ah+XT21X]=L;dV5X*FSOZ#[:?Xa2Sr)qX1gL\=7bIh*t]?'N*uP_OL]8t,L7WZ.t@W4JeiJuWmlcE^QRgo*$;b4ZUU=KF0PGl;'UEjfN*0#MoOfZR)u#6,;@,ToWgO:WS?6@sq[%suB\^g_dD40o[.'oS@#`N]l1`QD6OqSQe(Cb]-K>Hq;3!>NR4//Ba?`Tn%mQ*\GGQ!F%'XPTo@<$gutP^br$rjCkfrUXRpme[>n\@;acQ7dsPML@1$`@`QA][9W+"K&^(+_;AQ((&$.BV;.e#R\ECfkD:A`g:80YLp?aHVk1Xi`Ph;7Q^"(9`Csb-b'WFL@rS*DBU6"*/[Z?Eqdf/X49LZ%m]Pm?:AW+]U^Loe5K%);nE*V[QjLq2uQ?l@GF&[2qpiD5oKr&skBHdDtS08(3d,J/OV00XGKrPZ;RRl/c\g7ceA5XUlF[B%85q[^ZNRFbGP*:@Wg]m*Qg*4$Bd'slHRH?Kh:ik,faE+dA[`Ui<'1KuS1Qjr;?orHKGG,lhD>OIf:%K>I+WJeSKrF[G*5iHXYXNh9+$W9OG=k#grA`Sb>WgX7C9F'U)>2O]S1-NBBgM(-2LX*s.'#@9=g\q*Y2'P`X*-e^g3k):9jb4C8lk?IMp,,.DElA$GQ>n;m"UocH_@lp)jIG\Q_Jn9WmO9"nY9CKTjB?3>Q*-]CB1g:Gm4`D-%a.J`G4@+hAXU)L#>A7(!nJBoKf+W:l]9nUQ2<5OXOTD*FSQ]>^\J.O4*qLh*Nk):Vf0G@!uIYIboR]\G<+.mYD#]kDo13q(SPU$;4,%B%ns+Z#QOOrmm3Pn\uA:C`Hn@QU5+C6M'm!Y]OJr#@p8nT7TYbRp\S5(6C+!rjZ_cQ*/gC96QhWiejk(lCB&E0sPa,9_d7R*u.dm;momC41j=C50E5:j]GmgK$TZWHW/icKo>-DRBk@4Fh`f58b\.F0WM2]k&!6^Aa>DQR(N.sN*j4=-84*XF#G+o292l8[^.o#Dsbk)CY`X-.\;b7!(d#qUoS&k4.<877PcPMMS11L"GjoZWT,qm4%sp8>`P+8l$PB=;9Xb*Tj="eR69p85WP$5_$f1POM>fo"H42\p&7idHoHkBp?D[UQ\fS&N.8Rf`%->Weq0'P=Dl/R,ngeY,V7iFD],7ep,KjW@=ukJ'Vtrld,W5OskSn].ikgCYb$^OIba3AX.A\)72h8s\&DKV\pHB\>9l>db6%.X&_*nf:P+Z-uU]M`qdh@csD[>K*gp1Jt0CON7TjgQ_*)b.#7KA_UYDiCe.\qE6f=HPa+34V,`E*J/.+Y/-'.>@I9FqljJq%bPq#$Cnj'&>h$_#)+iL_!^eQ@K-,Z:qUHNX?1MFB!9tk,n$'Wp>_L4CtT"pHf,mFfQ@VR*BF:(*k_c')>f`;(L[(4A$Fo_/M,Or&13]]J4*mJLi!pXL'd,VA@j3#ALqJ4Ir^1eH4t^-XD?>\WZ@Bt9B'$J$F/DbXt8B9,>&_=g"QB?omj/,gEfY:(1?+pQMeng,9Ke$T]["Y`gAf'6PjTKN!4/geO&;h5VLZp/j+\SEB\t_llLP-7r-PBN,_FUV6[UQZhAh3_j0O$89&bT)JhYrnEL'=muZPBe]%4>a7_;pO8!R&u)HZdi]XXlS@pQ8]\MW][:"<'=.PQ[b'KP*pB"o0<6T%tCgJI/@ROb9-]gSfKJ=YJ:#lPZ2OR8JQTGY]?e@C,6Qhmt?PZ4.qCc-m),2hZEL20YVob,lX+DHo"ag49bJO4GTL)%`3d,Vr5Y\$W&m&$.NeI$WlaZJY0qWKU3-C\9[NtPg3GLUn9NZrq^BZl>R`?TgotqY0pjY3%QnWB!N-uj""-j]O],n#oXG3Hn&]?I=M53I5,j2'$VOlBj^smU9WYHl.MnQsl\D'f.%NbDg6Mai>>6Xb>N)KC`?>2d`fXKO@,KL):poU79N\M;$>2#E)(W/4Y4K,17eJfEJ+sG:<7J_E-#6o\oS'MWod4Wk;5j5D@Dfq)0OaqbQr^p1rq,l5@$Ra_WfF-kW_0"@KFs%g&m-Er8>ot*@^[JTcP!Q!ZP='L0:8l/XdH5HM#)t]MV3lCW#*ZYT3\mOY=edG@sO93Tus?,rc.#2WkK?2&rPjP_fpV.,96X%TAfX]rW9hc(]e2XrrbP$Qb\8#2)'L,8nB4]0%a];\,jSuKaTfmCp9k+'2s4F3=Cb+=#*uBFe2C6Gi-.2.2H:#&]WSI2tZt2InR-A9G[*K2eUQCHJA1!n#JQL#2dspHJLV19\>H$B^nP?S@8\PGFX2`Ra!O0i`+RClQD_4FpDnJH3o;Ee)AaBa"VRC2;E[b%i9!L^pLD$0R_5E3.:H`eD>ZY'BUhJH%bIpObHUe^ChU;3FV6I1GE9C0jK#!*-NAf%D*+BJ/Rqp_3$O?i8W!OY\Ei/3-jmT'U;[#k,l'Cg'EB?2aPj.op,bs_;;jB)WXUBKAJB!0CN7dq=;gq_0*3)i3mQEd1bOVDLdiqjY2/"C7)N,"stm-%7Q3+_!%3:QEoUKZ=4&4>-\Vb/mJS!Mc[g77@&PYb@'E'V(co:8siIU"-XP&J16Dc6/e=C:qV#tI.d7&@#:oVWqNJSY=bOEKFs%g&m-Er8>qZ<_ed;.p#Y$8RB:M,YOY@q[UQ])R?I==PcQF]D"VA2.>-r&bZ;qgbZ;9$G3AOHOP)*rqC9f*Ah.IDSger7:W^c=bZ8*5R52:t`bb;cB<.s\q=fmiWoX,62c]hDq[lXaUC&>C.Y[?*q?m6#^].g>j8ZuPs83"0B5E,RZRVYVp,j0R@g.g\\J>Na/VDHW/HrI]^t>sSrNX3d*uFCt;L,Tn6,GCH1`rPdZh@'.:UBcmln,cVpp.UCq:Z)#;28ZOC67a`_5uatb,SkIm,_&GQSDJ/qf?cB#0PI1SJ3r65VS&2ADD"J^MGJ:_$ji=>.?rZAg(fRjE7aG5fY;9@\=17Bl-3(Pr:fXj%VlJg;Lk#e(AULuN$oMR59tZG\IganO8??1]bkBlhi.*P>@S/=`Hq?Y5jA/m7bHA.7iL1>FS7W:8=Hs@2r;8n6/VOhlg1b$YMJGMQPc5LRl\&b:>0sWX(-"r7g4d`LM,$R]kmU+9.reV][D""(b,^L;V?9@2U@16UWfAEFsAMI>MtM-qF=s"qG,7ZK&%=_`VL[+O:8nL[F5H:Sm8GTq]-,)h0nAh.Jor`i$^XYRHr10Y4_`kcIKPaJS?XbNY+0O#"([>sgqn9'S]l8HjebZ;qgbZ=[YZ!KV'[d#5P.qU;D.qYi5G8k.p@CXlcIMfdO0iZt`fo"JJpTddaaolIRKiq1TlNX)I]3p_:KkO-2Dc.IQssm,N*8oW6Ip%@8ZUS>6HDZ?rG&o#CX6O'T<7st$@AW&0DiIFh(HdE_TDNiC]rjQPcH8!,WP.QWZ6NErB7(eJo[4ZVBtDO\]jDZAa1>Ls2l,]s8UOo1(`ok,?+1D[/lh2Zn$I([][0l$n3XlbcSQYha:5^R%"#J*jGY&1aZ+\*4Kq#A,@,nUeL*B;#1[RrHck!MVjDs;00J/#GTl;Z4l?_C;ok9Hm3Z3k\K/k_dT]_*,!RR*hG?&]sKBq?*%D,)>6C/gWe^*c3YQHcX.8[lrYeo#9%1qO`L4"MFG](O56W-(\_RWbDG\%;OYGjB`e1/g:L)+S]]f2M)O^3ES7`()u1o,ikI-$^M:?U:[JU_\orFQCELl3B_YkZhg1d,dAG5'[[.2BV+T?KC7\al=.7)sR_t]up!;jR5meK5[J$TnQN]Q[;2F'\%^pqcV_?7"upAgT6.]LCSXdH5XXYLc510ZJ;0jCKjCc*2j&*utu[UQ[S[UQ[S[efHdR&u*SnU[5[bZ;qg?Wab"k7m2]rN,:9WnA\^+ma9$Vs+r[nZc5XF2nd+o#:4Yn?-U>N/n^#pmq)NqjP@Kn.ZL*g!^(*0:W1BW&oiphQ;'ll^kr03AY+(RcWK-fIK.K`?c[R=tE8@U)E6f4bB!rk9/eGl/BA-HDiuV&m?5\Jel\"4mZ\=:r!7;k1:^tq-"`R5"q6Jaj]f!<`^pT=j$2L!o(70c=j.:>rCBhJ["Z3\W!r1`fgL8d`H#W&i54CTO_!jACg8-U`C3^7PB*0C\GW`h8#WeHkn?dd3h@;]37cr:9DqhK'j9d#FpUck;k\^FSG\M-m66Y_I)kZoM_3PeH7S8!:4CeBr[ele8gX':_(+&?;)@LZ=0`_"/rJ6+TeM/F^#s[#a?K<:B3c",>u;.Z#2Z7O4Qr?t$KQ[UQ[S[UQ[S[UQ[S[UQ[S[`X&3j5S9`bZ;qgbZ;qgbZ;qgbZ^A>f"T&uCq>;9=k+Bq!*F^A)$[&FTDqS:Y0#_$tJCoCJ?NeZ.>YH/GnN[?.kr=b\cHNO3:c/7L@n\\0aD),p0]*`'`*bPk*>n1hc>/9TL_Q+JKiV])W0Rlh8]RKAYPg,^&2m-G@7187np+74ko#)_S[Cd-L(/KUMc_&#>Z;T>_@ghY[Ynd9/kVc/<^P#;ec/!nOK6,=t2]m0>1%[<8QL'qWh_RKR?)A^Yk"(2*,YAjC8(%=4fqBC^Zjg-=Rpu#It1tRB'd0+f>DM>C\-*UnVAsbQO&73(q!`Q!j!ne"HA("Q_MU1B\>+i*-1rrRUmb`cY$01"/UB`KHBH18:Ii>b3=pJ%BMd]c-&f",c,9p'_t\%'"nIu9Q<7t^.[H+c17^<#Ur`ATi?Tom[_K_h%]i9']9O9&\7l[nnN'!BbkJ;C1UglBFSqYsNs:pifY6k9SKbZ;qgbZ;qgbZ;qg=h9SJ>CC\c3ZKkYd2+"1cP0tAAh.IDAh.IDAh.JohD&5_G4I[60jE$A,-T<,Auf`ZX4!siA#.]<3fp,CH,CP6DKlIfjU:&?o;Agu\cRm5g]oSgqe5=JO<*t?>!Vd\7Nf">WPoNYbD*FoO0AQnf.N[#flu-Eqff3\c>=NZp5N7;`[hri&h4[AKCAj=*I&T!i:!0%Kf%VRP=Imh^2d@:N#hL'9Ue'L2JoOHLC\:?L:&NtQE"-"!8K.8@//R9MiZG8G[$Y89IMFlGB5p3PtZb/,n",0qUJD)Tb+A6\H)[+m[m<6UBFoTY)!bpNiHa\R.I9GZ@O:uL.QLuBlQpECXG<*Le#W#+#6d>0O\5@SRNZZpbF(^cTPD=A@WNpO".bM=P/P+JSII%M=)F#"-9m%S6.ErV4]WG#8A3MuA?:2i!M(i^W$%2L75MEt4!Dj@':h%1H*K178Dc"kOmK6!?n8X\\J1ju;[0f+4?(=`Qe/P"pdG)RH(6Xhhs>5pK_Q*#r%85qDq+N!?\=Za=!/a$#Bt&N_s:qHf)7:Ogh7P*C8S#mWckFP[UQ[S[UQ[S[UQZ`\pH'9eX%_s6ac:'HK,\3fB7.rUjb,+'seX]'seX]'seX]eW?q^:j6YdX$Ohp:bB;bhY9M;om*&_WSbp9ong$*XO8O/$G)q=nKiE"ol+lr2HWtm"DUt:_U!FD^rjeGY[R3FQof@-*8\:@2QU'l4#a8Hq%J0p9-*dIocS&Ea7&@XRU?'rjn$Z'iTqHOq#2kD?901RSi?joB9p?G1<[&anaPc1FkF!C"oNcF.P./m#(*dqJF+:V_h,1.E;/&i=LY"+T%q'encm9p"g^JfX6'"-+E*,2[9DW'L?^)V^uoB]XH?%ceN$fJnD_r,9W$.9K7nUAp(gMCje]RY]Idp^Fgj`'hN=fA<'$I6!b?\;mpUL"(bDh@E[AinET6?=C/]AcCI'+qfciX3UR,qD1T5RVS]n(#N9:^3S:WT-!WQ\'M]b+%kGd=5[rVN8!9WWT/$#E^@"l%V2K"]ns_O>&t+M2^kkQ*Y_E&X"VScC8k(;Z-HgL,0C!q=8-D%BFk9CTF?V$K'G5u)KHj1=mYRcWY8@9"&,9Ib_W9BX4+l^'m5f\Lf4#@ij2QbDlK?:&89S9hj=F)e7!,W00\]g_##ir/6/1=*bIqB4+KJM!-3]g^3\90Y't[M)AG[*k9i10aYEIuirV?1,+JtGeN?&2H-D4%GmXYRq5`GEM0Q.O](g9`'N!mT*?p^Gr[oh[QKfJ6H#L@aS(JB-IOM)R,h^ZtI!1k@b",.U::dI;ORpg<),H+<##JNZgfIB$a>[rq&Y6#a4i6..83)o1L4".uV84KYeca=bXl:i8dU;@eVDGJ!qOAp8"m\/b2"DLD\F,h:#si+R?=p(ls1qgc=djI*)"(X>?=nH=rK1S\In\/hcGV;W6SAalROkh_V,OD_;#g+\B6a(CT1L$?PiiSLsm&9KtKgY<(?Pi'jso(m%q-tsaqfM:FMJCG%OAE+s^V3*_uM(+=!QgI^^G7pgFg>t?D90aOcH[>,jfU%aMM&(0^Vm-1NP/ag5G@>gf"IM>hC5UTRQf)^u!6s$qK+&#R6s8\i[3Wa5C']ssd5!oV)$'JH](J)Y*&#+br"?C!f,t09Dl^jPoTfR,N!F/Ta7!7r&j,_O2::"J_%im?j8_I^0icO>;9>:>;9>:>;9=o&Ue-4OaPb"E42^fgB*?m:pOCOZcT@RT_7WMSpgoe)n4X.AUH4]m^I>_kgMa1o?fPM:7RXbHADD-+)1:!m/;Nn)Cc^3\>44G;Xpk!_;9,E4*=]q+.C8g%Se+Vt&:nOG8pZqUJEJ(G`=ueCFI(A5hmMD#Yp"ekgO([P3oa75)\EnO?Pp*pI1&I#kn9XtOg[du]t:?9SD7l[\-/B2JWf0a'Wk+RbRidj9%,>W7K&$fk>$Q\E.,Pqm+>VZuWKZms=d`d4*Y91')3)O8$Tr>DjLq-;0e@/m0l^$+Q>?RaYmNk$^)]5Y>#[!J%\easdHirl(Q>Ym8#1b`,g>;9>:>;9>:>;9=odAOfs`G@EeR&uaXR&uaXR&uaXR&u2.9>GA_Cc1"8X`>dnbp\t]D.+Go8mB7)VBZ4@dg$K&$_=Pq,oV:lh#lKl+EW>qBTF"WQD!su(=o-AC4L[G0`qtCrQl/(TIgk.M!fuj8.aL$TquE5#GFNL%/VV"934(Q1#:7qeh'`43[+d8LJ9&tD%TEffMH\RMM30f"@0]J5"/M7Zn=LqI@eC$nXU\R[]ff"&^t2N9M)>Jm>)Y,((+6^(--uO:]T50LV=;)(XajkXqfM1@K\rna?90N&i-e`%edn9g'h8l2EoADMmcG#HE(qa1`N'DNd/kN[6$*!#`6ff7^,VOV8[6iT5O&E:i]Tk!u?%A7L^G]6oBdSr/aMA&eX4^FnLsgL0\7b0d'b6#Wfj-,fVjl+NS09#d#Uf8SmA$a>H1mkqik5;E@12hX2(l=si"E0%UPMGRuSQ(=GIf$23>8N#X/Y('(ZUZPBe]ZPBe]ZP=)"VoEPlCc,IbXdH5XXdH5XXdH5XXbc16_JI2-2-cNNE[=qT9qMVu4U<4U%q3@b"PjVI]atYM5R(Lkh$]e4!43UbM!5ZmmY2,ZA/5%efd[^.UkfjO#\dTN)a;5E4CicS2#NI1AsLGH\f9?3017Z>6o7,A5n?B#IaE^!ckc>-1o@8J+<%X52GCGJ?^8\T,.\k,MC^&PUsI6.p8&Bg5th..on^TYCl^ujR"5rtciXk9#kC,eh%,t#%3aO<7aMMu7:m$D4p^HT8B_b)`u]QB!tr^C\e".U_u>dtH,2\*CqP0gRdMP-BEl/Cq-5&3R[?ScGA.35dko:A&#B4nN$-dI925`h%Z3*&+;1T;XUPqBe5\h'$lqZ64\/s@)+enK?Tng="aDm9Z=%>ZN[D\'KYk(67[)haY%(JPl+EDt@ho')r+:l+1"p=/BDbYQfOf/N%;$0.I&Eou-bYU*K6M2,CVoW8fP4VW:4JF't6,`C^3,".`IZU7l@CRnd`tEJ[38P-.AELga3njm#2q`,rr=Uk:&Q8qjmfr$3U%gmULJ2-b@^]aS@^]aS@^]aS,,4&3CrL4UeaCIo`GEM0`GEM0`GEM077;n[1[(e3Uf/(,\CTK]7Q`8(d<_I+2B/;Ub\"i:hf"KjaYK,B35/8T9%B6!e6^*f33CUk..t)T%46d_mI-4'6bAVS',ri-'Xp/:Cj-]s>.qF(,k67-FY1gqRnNC0">e&bLV9GCa9T3>RA3Kh,=$TC:Zl@))kJck!^NR%fV6Hkc'q+Q&1Kl!c:O%bZf%/@MD`+SBZ4]?f*8F3XQg/OJ#kk@DQm7R<5#Y$qdoa(CW@-@X\H!Oer)YcEi#fVE]&&6EodKm.9Uhs&t*3d?l^X!"&i9Ws1$huuI?mKPTDlo-o(72GPEL6Wea@Sdl/%Jp'n#W0r(1$ZcgmdAKUtUa)^uMAK1d@)Y]Q+VN5HDp<.pt2d)%&W5U]Ws")!F7!N0"R%7P!['-^^>A@c7H9-!bNrp.qU;D.qU;D.qU:U)FDYKbZ7lbCrL50CrL50CrL50Cdgaa%;%,&X"7_gb+WWO3Yh#-?c`"Fe%?5k6=C0"%8,'h.Gej<4'!d+\$55b6eISI'3SZ34#Ud'(X9)AIhK.C*h>?/!&IXR9*HfPRh0`h]l3Z2lc4GXY_UVRuq=CjU5Yep3CsG"M[6M0',$]5"epk?^L]i@mA-09soIH-7cL5O#1caHeoF`k>#:+%rXbR'%oLr3GGEAIV/j&ZX(1j!G#.YrrZ`IfMTG#`GEM0`GEM0`GEM0779M"fo"H4H\SPfXdH5XXdH6eJ)+M@@^c-:V3nB@BF$:r0jA58:_g=e:h6WKOE>69^N!8kk"*DjT6f^7fnu&6kfaL'>db>=b3$R/F/M=Ug^jnu5i/"^D^A,AXhnKU*3G2S]sIoS/?FLbPr18#U^W\q?!nL88BOuaK2.94?MBVbXERhd7Mr#K=UJqgSUtR6GJNhsCLM,"Ec?:tpu2)OfY-l!BSHoUdNj=W.W3aBJ0tlqJ@DommbPM_ITHn^3dVKM*dR7tr[='`rE2f=W6Pml4Jhi3s6cTsLKr9Z+69l;T).ffo=_Xstl-]SH7n(h>n'1dngoPdbSg_4sM];q0B)!LYs-UuAeZX/cmT4Lbo"EfGqe^u7YTIdN&AL`TH:q!\mB1`_Ss3t;cB49X?@1M>!"+J?QeK81Q^M8HfE(Z=/`#Oq`k#EUj..5,#?KW_IqYd_9PoL\RG"^EmoeqUI;aC4d0i%m\e>J^<]`H.9puD?7j[pAC`lh6;=^>.Asm#50\H&Iu#>*q#P##]7CYGkBntm+T#lY$F'j1"-Xg7Z&*J8/aA]i80I*d,5DL?)J2([dA^Z9s(YokUCcMb>WZ[[LFKd]mnW;+57MCD/R*eA@i@_Zhs_#!%*\4($W^nMS"#5((@qs,[3t_2]A'cR&uaXR&uaXR&uaXLhJ1k>;9>nZhlI]0j?A:0j?A:oo@^_fntUV&$m"WAK_"<\QgcJ*N%.$>u4_=#3Ka)KsLB<@F"/5nF^uMTXiSREZo0V%#C9:QsDTZG&CFf>nI`ZTdVHsZ3%c9Fp+%'RfbHZ/VN[pS)N)IY@6"F'sOXL)VSX4YeO^K'%!b]Qf./JZQRRcF[f*(Hi=-nLcp7c!:4W@Puk.BS5TVVr:iDhNunO(rp`M2qX=H:7K9Uips#Gi07Wd)jLQh'>lNfr\Z$(q^3p*=Nu`q@FnP7`eP#B:"*!YIF\m_Y[p/XR%f2fAbco'l/oORJ=Nf;u**]D(d1ea(gpf:Lg&F8$/HZZ\3J^$12E>;efH9-`6'EtdW-S3;?3=r\#+_]^G3X8nmM&"C%GKq#Ph_=\aK@Fq*AY^YV90Z++]5I_6,hn004;i9PrXm9ria?bnTq=*q#Y\*8PE-[s-@cRg)H2A@nfsVVRDqtIHXU_jfmiHlOm5H6c@f?#TYDP235"b`RUlrTO,6oBnqr+S?rXm:FVo):TIK5_0!>81gCG'SN+N6[89lo+5!j:ZE`Cn#Wc;-b%2M8k]9)+gBr.C?%qZMeq;cJ'+a?.!T*2oVkMd^5hX.=i/GC$pM\qVH_^aISm@!CS_`e/Wsdd+Faso#h^]dpOo;&IVqre'R7b'\N@U>\7[8AXMV3m?MV3m?MV3m?MMOG*Ah.Jo]YeR)CrL50CrL50CrL3Z6og(VMV0KJ0O&soC_bB(@"pMJoB7'>rS8!MmjBSRnBLtP"Z>VTJ/7cC=LZAmh!]-7-P,Ztr9\BGRgHYIKP$Pm^AE?nHo#4er*r-OjZhd5eViA*GfCu&5Z.0(8k*JB,.&6H&L^>=8^gf*1X"]`HC)+P[`bcL*=Kkj!i'gUG#2?f/cUp[;L(76-;W/;0:hf"fgO2o)PI8nHO..'KS$[ec>qaf9Ko*d4TX)-9]RCrecC=po8-D\[4TjUAn,k3nYCm&e(PAL5"ZL>U#!$Xt7ZW*T"_1tgd0(:JDEN#_G/Js)+2P;H00tUn=kRUn;SEjrY$VG)pu%hjLZ-Ol]-,p3AGs567)LVHTB\]W#uF3U.eR59PK+/ar:;E>G:S(i9M&K=@NC'SG)qJje!r$S=LC`k1/+9.;ZQ4?b;AMh)=mlIg9EtM?JFW0+lQ:gEVQ,]o\dN!++NQXs?T#:/?bcRU:0tF?2f@H(=3mLkA=85c!."7K(A*3+A:ML0ir,U+#$5]tJd^0P^fQ$b4&f1_"-9IDkloOT>N.*/8*Jukfft@_(0PuS7"\Uoo'5m@ph=gN4KX)BV=U!3H?f02gqIqL*o4F3GAg^eH/@i?V/q`C2l92FD'9AL8M5:+X5r$M^qh,l?n(ja]K3e.[/2pmkGYTBS,`@-L]gs*Irqdtgu.k4_Ya)`d,*.S*U7M.D5n"3LUXs]osiSU>s"aiGS9B"]bg+l\Hbp%quZDN1fRI-K<&'l^lg"/nFM9&+E&T6ZD8HU/6E0.XoZ#d$b('3L"WfpK#HCIo,#0s(ZV,cp%\&%Yhur'D\)j:Nefl;^O:>78JC3`16o<)GJiYYLI(Mm+<5%uDp'Zm2)lO]5eH99BKTVoM"pqQDt?/;FoNScSGb9:&gV$=5>2nU)ORXoXdH5XXdH5XXdH5HBK.\M0jE`[Ah.IDAh.IDAh.IDAh,(J6-NBRo]?3oa9n7jRp#Q7I]D%>nsEX@2?d0RR=#=;T=6k#,FmBShq,u7q)^NC!g?To!`X^k$srCaA-2#GJKA]h+Sr"XDRoOlf5lL3ZF)In@KXUg%Z7Dc-O2]oGi7=3X>sqcs[,%WWaLbN'N0G$Cub"d-Z$DbSPr:Tn+8*6"36X6pj8%J'5j'Xi.W*B-A0Li6$sZn=]b@4DB$@[pR_(P8>n2nBo/#g!p,lhS"UR^V9_rT4sA_"K.2(.CnJgL_&6dgq%qPm"aX!,\f1M;r&C%s9K>B)tRD5l_2f)3m,p_46,2&F>(M5A]`fL$ONm4Oh>/Oq.;:]XoRa%ZL'JnGM\1%sf[QUoYmDVO%W/)p@PgAMF$nBIVNTdd%nt),>3/m:l0:$b4E"g26CFaZmKsq;?NtjY0d(gH[22WTe]XlL>-6oK[<%H%dFf6)OaZaFBAge[o5OBn)7X_O'I8+E.?MN45!"nE^3F*9-#"E9WMGM<#?NN]UnR-,AtO+Gp*.T;R2h.'(\Y-NQCHLOK='9r9;`qIj3Lpbf]HMiScS`BY?sF#Eo8RA3t@T1S:K=O-fOoeZQM'I'\U=g=3cB`7@K4&O6eGFSb?7SH-//;CJbW>2(D+,[sbQrqt]#heck."Pm`nY(ZF)u95s"@=`?:6K!WMk_3q(1Ps*8r\9%=*]SVB9_pfg'HbbRu6KmIim2nau>nH_=_8dX_Hg%.=#_j=\DFA#.;Y#qfZoku#!%sm-!U$VWLJ(]D_St6hE9c^[\6OAQ3=iO*(G(p!K3V0jeLRU_h]=ZAVp)94=$Qt.GA^[iT24`$71Z94k7inN&%^1$`CLWohOs12;R"I%XJ"l1=$5e.d'6:?ZarKdIuOP\YtU2H#tM-"0?,*i,%`1Eu>f:cD0K7<"i)AZ&&=?Ne[LkZ!IePPgsH?n@>5"`Eaq@p,rH@>4JUd+\K6SoL-UfGK.eaZO-:hH$4KmbD^`'6Vm3e,RU^V>$AIEHkGD48Fjl#hFSQ+MF.k([QA-d=.-m"\L4_?d`H4fX.QD8G+lX53-4(2k0i*kdNQ'RMnh4pl)pVRml&1_1G#$Y6IU2LV5egsBY8jPS3RgmUGkXoFNrpKMOL+k$[nl%dTmc[X)4.l[":+K+[8r[/Bq!4*EH'seX]'seX]'seWP)EBn)A@>sU@^[2h:mqV,l$i&MC`4?YdbMlG_?AmS""L$!YEOLJ#_WPZ5A:'c1e@!K24Gp5ilYM-&b6;3b1Uu96(2k5'4:R/M>+KP%g5K#%Vl^!/"([;0d0MKRbu47rA;[_D!s+_j4K`:0;-P@f5]2K'g;Idst$]*Xq>FV&XPK#_(+J_!k`[Ca']crsYhkGj<1X23dhj`=QeDMq`p>l4FHi:f'\N0\%:lu$M;Deg"W[c6mZbZ;qgbZ;qgbZ;qg7%)-LE@/",ZPBgsOCP_.[UQ[S[UQ[S[UQZh)Ep/Cc=F@m[UQZ`Em.QOR&ssqT)ra+gpFPGTkr%?AOFB_Z!j84$[Z$1HB>$@[S>#+VG#C*ZLRJo?&fp!!?S+hD1#YCT%>Qdh6lEgb7d`:$.o[S$e&Cqe10hV%.7;/Pee1K\;79.]5"*p%s$8)'pEYb5MJ*9\stc6psF27%Y4eFHuf3s!\jF#+2N[Xb_dhLkt8=0O$89&J5Te&^fMk>P0pZPtm#ifdbbV<&>1!&J5V'CA)HicWa*l/-'94Ah,&L+sJ4'O4fEDMMR(ELkl7rfkS=k@(/WUAh,&L+sNa7(8&'F[NZn>+sNbtA%#jT+sJ3T,,2n`[MnZ,#Gc;1B8T9%slS)1*pK++KU7?<5![T((]^39=F^(KP^Lm<7\PYGL(l:M5^_+lPl8f+g@Tg=l4$g0E'Q38\5XdM!fnk`ANGg?:\gsJ233=8sI2Ai[:9ndPKER,1h.3*_^#"pa#E-!4'6,l)r%74/;aX-hlDlS$2brg/]pr\(]%eJ8[]Yh5PGE+PV[rqaoHoQ+`0CXYE'tSk&dLb\W_S80f#-QQj\>A<=hpPE?Td'slFucAR-'Q1aP5c^DXd2%5kS-r2O$AIGgZZW2K/>NHN1.qU;DX%^fsIP$iXmI/Ah_JD(A@Y8a:AegK_%d86i>a9N=%'"(<[,n)*c]0Eg&o;>4IZ<-RH@CRnd`FlPEHUNX,e'_ZL_),@>)"LkS!8(B#:BT?elU3Nd"-!#Cd3G^r+_it[VRKYa01:EsaS2K5`K4Hm'"=&!Fh!5*kbuZp0OgKt('m5s^^%I0!n6d,HT29cbn"iY$H6q_TWTPSpUsA"@F7e.aCX&S!tYhj+ZG'KVr@ndG=!k?L:4$,d5P#d-hV?BRP<+62TT2`6k]I=IL*$].BL-u>TeA*(7J;rdloB1X8AL7'(J9DP2rCVs*t@Y6,kLfDNQ):0]E/_$pf6e"l02D6p_LT`L7pLC!a#j6AO]RLun_:%mo9c)_E1"FI?9LRV)KYKhqcDAe_TFCc*?Z[UQ[S[UQ[S[MiJr;A\m;.CcTa:Q7Ma?]hj[6+JBnuH1#e]DX.IE!Mj_[L)hK25B>B`T505oPrn(L/DhR'],qmQ44A9[(GgY:X\>KkMJHPD(@*DoIV#J=c#$f12)-/+]],A8m_qphZfFT0!rbp!C:(lq;qhR7W25'H1OhK/ppX"srugUlEm7hFCc^!PH_"`M!nQ8Sj%\$s2WD%ZOSD21%j;9SHQ^EJs-O>_r@\h*A%=c.Fj;0]:?q&[q[A:=1Wf6"83BkHe=Gn[qh5YQt-*>.N7GW#8pUXLD7j84!%hK4JWB-=hAh&1sU[iU?K#;'3cZuoS6hWU9NOJON5l)o.LQ;;N4Xk)_$$A#R*B6slrmr!oi*cDp#')-(\iQLj.gASYV9dU61D/j91)9*pm-]g8Cq#7F?/:glG9FBo`-&f=J@Af=8@k]ePX0K$61qf4PO;c1k;IN1W&*%So8U5)O*(-am-]3a9:S)$o\QbEE!i"'mS+ci-G51Ld*W_cc?Co)kg\O-oKBkQm"!I;(e!6Ed,(m-3hmgaM`:#X98=\j..qU;D.qYiU^hbknbZ9@03bBmS.qU;D.qYj@`GEM0`GCeGAh.JoTuLn+5g38]BKB`UAh.IDAh.JoiPfWPCc*KkC3!H+BNbu$oDjPsDMX$p@$h^Z1]Z@#"qf>D#ohe0qS=k;+FguUVKni$(K5fMD42cJq7nicTSESVKRscc2/(Sm=ahZAi_TFL+@ep\]jN7FQ4I.30.7m/+khiFJko6njD8#\=Qj0dG$b\qRP'\W)T%pId\!;'+!U634[Ol.N0"ith#Po;"aLu4<4Br"1ZPh783H:)V;36CiALceP5a\NM`fZ9jA4Hm3e-%m]oU(M^4Y]]$n8%c[-5)q6$pZcp3<5nkQg?p+X7+%c-ib?_#ENkTAkRZl4Om@\f_tL^sq*j7N32!"qfZ!M3CL/@g>TTleE/SP>.<*Q!;q7%\.59+S!^5#NaHd1H"ZW=tT-d&279QO89u,qEZoi@!k(P5*EU@7Mp6N;g4Wdbp*1RKPjsM"56'B#R.maO*DrCkCN<)>^t#1I;G*liO0ptUBK&/FE#e".Ij/3@#D1kK5"Gn]C2?s)2cK;DPl:n*?cG6Zn-EKH+[5-4eN%lPthU=]V'&+W,=pl^^k9J016E`;9=k!414k%l^iFJ2(7_>;9>:>;9?1Z6RG,`G@DfCfO_@!cm;@!j0faBS'S$m0(J7"7X-.&(,g;T`4F%M"mLe*l"ECOB7%Wi*Y%]#?QqbF9!2,V0Q:BrH+.?mISCKoRIl)\jZuc6\G1Cet67T:](a=(MSW&l%;f[/RVdaROr?:)IN\2OQaBd?'ZqFnKJtD6!_A9Gk12I4FHu4[#bTKl%8W-"/;Y7,"<-fTFYR*eC5TqMGru/9t+OK1kHT0copGVe8AI$9g>uggklp)`57W.^2@__SS]N@dt[Qk@c%Q]dMC4rAkk%M&.Spf(,@&mpOgEXOK!lcfaW.3)R/u&6YHmMJJO8KidJ+&,j#>+]pgnWn^.$o]:EG?/VX-7UcCJ&\u:!P-B6^%9hGnQ3q8tR%:W0:A:1?AWQ_RVM>X3]NI8'KL:ot.H_qe<2#AomPNI4fI:QrX,(G\mO-?$i"nmqBn$+g]]g!H%0A%LL//j/&.btM"GI.NsXX]#TLGsdSHL`P(4m3,tCY7Aqc"UbXLGD<4fm[@oO7Z6Oh#@%%B?=SL2YRKA/j'.\Et?-b?$@G1MLk1+J7P^VpLC,8`B"q.6CP7&IS39i6Mt<@6T=q9"[*D,H6F!lK4.s=iHhGNFW;0'>6+8TbQ:Ra1W\n8@p/jn63]u$8c09t6phkRpR![9o4jOoEpiIZmMJXG\V``G+Wo^OeXjJ_2)dq]Na[t*8KjHj'g$qO8M!ZnRQXR)K0c)""a#6ViW$MtX:3L>(q9(OI^]@5m!4n3e\i,lT(^8V9Bei1C^Q]Ij6`[*<]%n',F8:6UoJ_V8$fcBrMR-)PWVSUa:C@bWgLL6;nFE]7J$(E&i>PSl==mLT<-Z?lmZ].e&Zjr\?nj1Ll>1BL_46QqF=\NUHLH;UCgJ48mit%bK?"XsE-o/.P7,fH&*qjF3Ci4cuqtIp\1T)DSEIh@[m-e=XA?0][JD#h5MV3m?MV3m?.a>[`>;9>:>;9>:>;9>:>;9>:>;9>:>;9>:>;9>:>;9>:>;9?Yfc=\*oU)bJXTk&mAke#9mX\Ke!F>]VE-UAUBUCh%r"UO)0_4,*q^5%'[g?(g=9.)W/q]hUJYU8GK3ZsoGA=\=3gsBmMdINW>gW32g]DMMPbj%],U8Y?BU]er**EKrkNBYWk>a5)9F4s<3Xro]'ATa&W305*(XJWTg#hBr9Am\?'2\Go.?lKW#Bt)l"UPJ.S%*mVic[8t]!\SIgZDd\^%Q)PW,k9R*.fJ0kJDgrA^L5K"W.7nFN20?8P8Tb6)M_8FMpkW7n%-;$+'2b*ml)M#sbEV"gd_F>X*N7*nO^&?X4\>!=rGKHk$57=P8EUN&ZYC#gkHb:ri6e14o%d5PijI/fj]DO'\[_`_cYKI^Zl#h*07qrfDLbusgVO09`E[jc>@+iS&s:>`_!kKY?5J8]50sBAMsiZ2]2/[fem7dHnJp&f4p3+kLIbBs]mD\i4Gn:MjuqA.BcU^sdd=f1a^KL7pBFT^08.q1Sq-c0"8g/*k"R%jFJ;>Q*NLB4ncg/^E-uM((G9);V"^=b?\4lV#s>m3M?"24fgWk#VD&B7#_BVL-JK(`_DE+3pB9$!T?+!!ug!KRPT#>E'R2bZ;qgbZ;qgbZ;qgbZ;qgbZ=a.HZ/Uf5X_96=MRK7]BIheo[\Bm;/)#lhU9/)Zg5<>-Bl/"M9972Q``mT,9Y*M"TDW"rhKPG_hY1Z.m'].$n^BR2HV_8$Fht,a]C8I>_5HE[._jj6Q2GO?!PO$E?Bh"0R8o':."b%5-+a>L#!aEY+(HP:G]pLSAfo0W8Vg;i<\VUsnWh=&LpI'^KWNn\+Bb5^8p-fg\Z8#1(iBA[d>oNT%EIIQZoEp`.QjV4K0'(,SWgTSkbWMZl[d^SD\K0);_rV8'kml_3&9JS'/g7%-s/RQTJa,e;aX$;`=If/.NDVr#s2E+T.YI!]nhg>6Cq;'Y,AZ"s,FMVcW-%#5Tfl65<4T*H9\`gHajCbNZbEHS!amR"dh$*a]l,r^7D#/O=oGQb[D&:n)T6A@Q5$BH%CX1'U2m/F[;=k/tIHInalg:$MD>b@*>I]:,FLuAV*g!S,5:^YVdNW=PhB6``rMV:)H:7I=Zh!ufT?EL2$g"8YX5uLNmZKa:ldi/%Q"Q+MYOf1S)s(_)IO)COq76.^kPX5Hk6Lh7^YC)q+5&=GNs6QSI4BZ[iS!tnra*>4b4F%Gl`!j]oH4k&gYXMC'1l?]fH_D>g>us_5ER"ZElT30b1`;jntnYM614Yg]6&C;hR$&SY/"9#PLeoss./6(q2\1@CqfoDg>Zn4:E/2,q)n:S]70NYDY[bToF>eXWL%JHF`RFnT?-'5%`nmX^*kMWSrh')RnTY?A5dQ/gpd:gqkHl7o)#W"aTFcpP)hgg=+7UC@p*/E+fiq\P!8jBD=ZA#B`DuG_7T`1hCX0dE%[]>9FT)#e>O?.*LGSlkN.>S*g\fKEiVkZgZ88[k/kcp-fgRH5*nH%2m-L>r?_#W_qu0cRJZpXC"IRW5:?9"p+-p2,Vr^/n.5u[`7M[WBEnf_No$G*6Ep'nnjQ;HfjmBP6+qO/B8U@Nm2QiBb]sU,&dp99Kq^Kj&>NPkQ?B^pS+3;GqKhN$Nal=*FZG!;3I_**a-9I[WHZ-VM=0MNmqF(2FbDl)YY;T%7)6#T<>b3oq;#8Tslg?j2s']uQ5;*Q8gElfVk$J@CL&Ie)CSl#OHlDk`ZK^u2Z9R(e*RgPWs!A//'UXntkN@QrEHi%]miWRo>pB1]N+lA`0unt@]ujLd,ih`B.2monHgn,9UlmPpDn\TFV5bpHskmsltDYYFhN:<6XXqn$Z?T9gpoZa)HXQ^MYbp17,WQY_l+NZO8epAQ>LZ[(6PcmV+00:,CU[IS?TeL>2_g5<>5X_96=MRK7]BIheo[\Bm;/)#lhU9/)Zg5<>5X_96=MRK7]BIheo[[OI<21OHrEj.&EF3/N7W`?L0/e$o-e78`OcD<)2t`JaA,cLo9h4Z78%tHCcZc"H2uiPO\`T)OjHgh:8cO7q46pe[jLe"Dg^!#`:$Y$--]T70hEVSnF6ED8\LT?0&%ju8:T?eE>&34imk9c8:@47WNr1AOC?35.U6k]_.O^H2jl_q:Bo(jQ`;dda'#mZ=T64l/nJro&WO*@ui_t:E2GA>?gCSdne5PY:k,l5!Enf>d:q8me^^r4FD+O>eTDIq:mc%b(&2pVt=23^%n[EDf(_[++?Imr-XKOlX(%\B<+7_INGoO.[*TLY%3mCjKc(cVFDUgF[fE]eB<"#f>t*_X'E.5;u+SZccZRUba*>M3CeO&#c.pCqp$.$kP&?,qRT;P&:F'=8*.W!c&p>rImUmGo(-n>qDIj*(S?uY5$K<`c5`1CY?NScHJob;esd'.r28]!n%RI%(VK)nTsU2?Ou%Am3V#O\]Fl&_,RjIVGdT&^O&A?)]=p_Z#2RKiEZ267rFVED0>EP49$XUDKN,BB^-$[E_i3LS6BNc>ETNK.fWalh%I"ZG!e7Ahtm(qtVE)5MMNBQ)F>WOWQ]8]3Opf9leYZgZ2Sbh(QB=c*G)G/,cY[`t%O&cDCF+R3eJps.io5EeX.o]8i4/Hq,Lr:%H>1gLVk"OL\?"m-SVSqmO6lCJMM[RI65\aT8s8E0EuXqIO<6?9\2'KCXf$\&lD@HF(9I++KV@l]uqfY'b'R6dfW0aeOWeIr8L)rl5S2b.Qd.>GZhOHnXHN/cWid-bF3B]@,1'N-as[f49NDMS\&b-;:WYbH%`lP7pW6*!]::g(Y$CJ]bAu.RbG9V3?!E=6rr^OScTWYu(V_?r03%oUdZ9\IOWI`l;"\*dr)rcjkS.mag"n"OHF)'"b1G')..:;a8hN-\/t`%j/cXGW=o!O_/ohV9Yr/)#lhU9/)Zg5<>5X_96=MRK7]BIheo[\Bm;/)#lhU9/)Zg5<>5X_96=MRG"R[X)QB;f_GuT5Bc*D7+EOS[Zc_GMO_RIp=S?\a:`SERs%.:s0aPQbWGi55;pGo$#JpntGsLQS1Q"N-tE:#NYH]`U^u\kKEZs4>-*;pE$kbh-0X(]LV)LYIl:Hc2FR4'?0S-`"a:db"[677\3m;5H@p1f:;b8DV;d2k.81#a&_t"kDio`4M&[:@lo%ghrW#BAMVrq/H)s"pt+:JgXaM8j&>Nqf7/t.LMrOV[lc)91DOs(r=@%e.O.#YRcQaUQm9cj/X-WLH;Qm&n3?#Y41<>$b#?`@&cVUaIF9&O:JRD$[RV[6AS^Z^3Hrb5jSmuije3n`b%,_.9I8Dg8#Y86[p,XMPjREB*_G>\EO5,I7m?Lb>^>M'GK>40IZed7gaBl5C5\TDpL3mjNpSUro*r^cH=09%RujUC7WrD@jhB2<6=4N7-2+RZO.[=>0"*C?46bHfXbZ9BBZE4X(tokWub&m2G66Bk_:EhII_ikFR#i55OJJq=N-3b*QIa;;Q`q?1O7^?BTc.JY7RrU47,]fAsRE_Sii*`1I2tnKkk_!s;l/RPp^I1j\reU2jd!&j",_$\IX%l:u!1`f)6dk^XIbODS?ZQJ`IW&q9Q.]EWI/'?*jm;l9OE]#s7,DqHrUQ(rccK^1RsaA_H."Y+YJ0Y1oMs*7?KY=ZF5K./_c$E91p.IPpO)t.-fpQ`k/r_X-L$;jpZBo0-f$4Aqmp<2jW7QIFJJ1^o1)X0?]:KOZ_*GoZAp\`mr(S?%XqMK^uD7@TO/'=\I3Si4,)'8RFbp?r8Vd3n5Q1DQ3n&qj!s!<`UV<$cE'lrUNa(9TI0/NEWS24fDltEMbGMdOuh!ro2nq$],OoE6E$XS9W\r#ErrkP#i?g@E"9(.c$jU7pJM@\50g$@1k9+knA71Tb[?R?FQ;5'\L(0AkTo;f8XPP^=A(U^(Po1Pt%d#K=U?r4VT:lB`IA8cP94s+PjkY@b`H`^S3]O8cm,g5<>5X_96=MRK7]BIheo[\Bm;/)#lhU9/)Zg5<>5X_96=MRK7]BIheo[\Bm9>$F-OmkL6QG0+:'?1t*uAG=d;10]$+p1C>dfZ>@Y+P>T%.f6MS3L&uu\b:2,GeQ]1ZUri::J:`BjlP%"e[_8TR;(D!PBEM?I)?_fY!4+W1Kg.1mYrdQhd4ZV__i@i]fmk$X56`mi8bnUpb$ndj(>W[h)\@Sc;C9"ZV>'nurk+b+7(@bl%=LC`Vq^:,G8A9::TNhW\&mK#L[7dEaam]`oYYhK19IiHdjY*Fq/it8A*(F>_3GZ:4Iu4/Fmh%X(?gU&EeQEcO#E=,[O\BA;NU^.We:kBf"j44PrflDeAnFbT1\Dii4DN%>V+9Ne1nL$3f`p-!CR+-XHS?$L*j=shbWn?@j522uibP),:n6`_Q6,PT\bu?mbJcn[0V]/;:K.$hb=!O#]/oO=Ri.BGY!/7IoZGJ)N:aK:5F3Sk,U/3=5GkWf%]UU(B68dm,$1c#2XlIjZRdT_jsE@A8Y)Dh:!WV=FX4$qS#PPUrHq)20+>k:79G8a].52pk!?GIBp,i?Zu,Qb!\-8Hh*:tI*MVI0@W2.hOOA+D=R`)Zk[FH>L?KY'l?BDd8mUhD+.[VL?KY'l?BDd8mX)N01QCXffC?SpGF[b\#S*0;mW[C:IY8PE`WIohL8AF?#ot;;W]d+17N$FPP=[R5ukHpQZO?Dd8iFi\dQ8+(X/^:A2Y=iBmPqJEZgX3q82AGA!bu\n^H.:laF?7LWgN_*%s:jfA&;a(Yok8aa@0V*68T19I_?04jC8oh^Q7V#Q(gTa!-l."Zr0QA[\Z8'$p6HA3SZrHVu;\:NX^MT-#E[ZTc;*b!gdp4jmW(9XN!WHrBgTf@?M\mZAOK>jj,sV9;[9WV1Z&=!mD*_oeV;8]k;4=o(&5>O"Im=*f$cglmcB-em]m48>pGX)p;nAibS3dc[W3[C>YuOm0r7iHp!hSlA%&%56G`kYQSrI@/eXfrc[dZL_fjC=4+3EcT,cm,q;5T)`5LR)9nb%ar8B:bLbdU^"Y01&\ZO,;dfSp^69m/t&P0t/%9]?!EJj&@!fq!#D4c*4mQV#8i<)WGOF41*^e_cRVh1\4>_>%'LJ#t>E'eT>#?*L6rCO8AIF.Z7:>W*o,UX35t`XDL9>%G4kq\MpQ,I<*P]qC!:Rr"Agh'ncVC6t:_i5(gR$1+hHXTgYXK@%-/)okfd;-RjDSp`]@)BHpk"]RbHZ5X_96=MRK7]BIheo[\Bm;/)"aX86aJB=5R'MSpF(B'-4BZZ:_Q*,ST<49YeJ5B`ig?gN3?oL/.V1ta`?j*eS@t)LPLW&ZelKqJ_Roin`kq?aCoB?GlY@a2C+CKD,3s#>aQE>OZD$u&0\Vq;eYf5;ZX7FHYE0P@JkNT&:9c`oiA?CmM7dN6c:$6TPmrEfEl#?@.N.-WnYO;!T:rHjX-Y^:%C3.A=k5Dd7Y\CPC?f>HIA=gEXK@[mkF27e@.['&FfhaECQR(hp$tdV[B-C1Q_(mnTdd9%ZF[J1ei#A.lFKGf=]7!PMC5R.Y*].K1R6Lr^8XPIl.*2$OYmTRVRBW.s1I&M>?OlP4]cJfj!@aWe4LfKmgXbAFa[fuXi\,j*ilaf>2LH)dlFehf5,qPK"g\glB0=!>Jl<`N66=l31!fh`tX9iKk^fhrpF<*pNEP5\WB2cO.YVhr/$pM+;YCT*E@KuI?%V7oR12V(F&@:T6Rg!gkOo(o^Mf#XmpB4#3/dp-L'e46stP;0!V^]nEYS?k5%^'>$iM&.%BPK80?XBm.E2!-nUG/ZE^)YZDf=ZYp*:!0D`KJ`,>AGVsn>')QTZ`Nr9(9g^lKbW_RQ^H=HnT:@SLUb5)aZWOD@i[Pl]+2FUC/QF[FV>'E:k1n9\N%B!c9j%7qPGY0kN<62p0WiWD-P`9fcd[,m#\nX5c2S&ggC^a'Y6N3_&Eno6#RS3;Q.Ib.>HR*Gs>L?KY'l?BDd8mUhD+.[VL?KY'l?BDd8mUhD+.[V<\pn\*h+PSdht0/cc^E7ZY]$1Q#2@=RHU`;]cBg&h\hhUe][Z&A4rXtG'5^bFA&Z.[PuAt8)ok.-X*Z`='P9]9XM:M.AfZ`Rq+#%/H&q%k;jiOm4C*@d1Fu6'A:bID#Wfr\$jCXH](R@e4Hj;?V.^ca_XV*]UCuJV+%M6B1GV=ApMcJU>>-&E7(rcpPXk-a7cE,*0tLq/<^IuMgXpjEr#"49B>/DqT9msQZmH"W!+WkSDV,5LMN9;FN0E\"n,^@L\)q:Z)8o(9?D>]Kc5:L!/TDmk9m.]iQ9>h%Jl@dP!Z:dDVX4S*V0pr1!.HYKq"Q0>5l>lX'U!R9]5f\U8&Sa7>L>(X&0&?6m5OhIQN#gIidkpr:,*[K2p`fEZ8$F"@!W/AK%%!q?1!uG$[TIi9dMGMR;S+c@&EETFhq=g/M`8?[N>edITlO--\jof0mT-aaiJ0Zl\aM@QPkU$`UB.c]PY".%[d]N/j?7>?'cK0nLYnIg-+kghiu4=6t@dDo$fG+Kbap+p/)#lhU9/)Zg5<>5XfhQDdoNgjD,iXFL?KY'l>h'Uod6gg5<>M->iG"]Qpe9T9\;_ZV>Ti>%Ld49m1&NA6Ut?%rgt)BT`,9'M!X>kI[]f6XLoW>IaRS#Q)UBSpLhs3B'GMt)`ZAc$.ffeb4"%An=j3:b5+)mV6dG=IbC"5hm*Fa'?`mE&jq=s]HVUGZh6Q3KYO"gRa\7.KVXqJVe(lBm]n=b:`6Irb7.s"q1>UA#)#n.8NQG8=hT0g58q6Enk)/dYHhMQq8*5-pV*?YtmtpZeP8b-_?o$I]0=1;m24VNVpQ*r%U/`3>?@%c./i;H%H0#S//'2V:9]^Ss(Z?+P`m")ab3[HHq6RW'hI'+HgUBiPSujZp-2gC(bF+=5?"uP_`SXVh%?1=tMFmd!kP/QDZUm15/+8q:il]7mI[s."=,I3'lo]ok[\Bm;/)#lhU9/+0hf.[k/)#lh.NN4Rg5<>5X_96=MRK7]BWKcjZk[F8NRCk(.W%UY?&Q.;C>P^@SaM`7D-/$PRd+ER9k7m2KC!8bQ@;B2TDmSBgE\jrRUp8?K5>;(P)YH6ASY4eYkD/^8(YatD6/qM5&K*K\jkB,cleecdpK>YW?t^t>8ea@K(0(drg#H"T9V!&SpgrnQG\;]XcI?8%ppO$:Y^'A0Unk.G:1`b3hs$ltiYfIG&-b'oZJ`c_ol4:I`(up?OK+lB$GI`0FT8@]Au;#8(kq2QpqeUNCeJFg>q8+N#E0$Q'DjD4,q+/gqQq>AE&)Ao9Eh0K`psZBajCE7`Fmb[),A-Qis8/BG2gKJ9P#q84l-8^^Y9.W%UY?&Q.;qXJhdT2*MQ)`Pk#qDt$XDj0(.]gI8IeQ05-kBF5,[7Rr7DRoQr1==Yshd#ZVCoF=tNAVG+r^WUZ8uVnDJi=`XKToAn%)Qc`H\^Jc3+o:rteSq"hF-]Z8Ns0t`$ktcej?I_CJpWD1`b`\%4I7XA0j7i*dGMO]LY?W7NqWF@/KD3]XhTsdI')asr3G8%KEqVZrOP\sqG/*h=I/2-ZqrH%@G=\o,D<2Z2p)=D#'9CD's*WaR\ZC1@]^)^^A927_]^q/ua[bJW,]C9YO7L*#h/`4j]B,@uek'6.:)uDIn%ATWks+gu;sUW:\OkY$lco!u4ZhaW\,98*mC$6[9n3#7oVo6Fk;VrBs7Lm'\\=U#aX-#!]g'YUW^BPY*@;sS?Ec6JDmsg!.!%>D\m"2Ws&pPSCg8@Nc$`Fbq=F.)FD]E+Zk[G#j%*D%-mX#7.7$P(/%FeESc$N--B@>4FQ4I8kqQ#\c[SQi?aE@B>.7ZVg:L"lqQ4J3H1o/gq;pe3ag3@Tb,WoIZgkXsB(S?nP5Ou%KqqrI)maIHlK=Ba&+"o..S(=^(%Fl1pp+4L:*U+p]n!CcEp!`[@Hh0"ZlB98L5jna,#je$JfPC-c`D#)W40BA/\>NB(6hC]gOm;5S'VWt6f]4R=Up6hi>-S%EGccpr;*]p`94ud2`r8Smu9;]>Tjl-/&ah.#Q6S9rt,k&JE:ALePrg3P/a&Y3EmXrqjZ"iBUEo$"VjBlg$PMEq98,;f;O%BkKn7l5#*^gf?[?emG3dE$>HthWOhC(IS)o[4?V7N\UA*N1GMIABI.!E#jIcJM-eZpQ0E:_-!dX+62p7\/rep^R],f=lI.L_E/A:]-?[5NF/RRKW=jHC\n%U+%RiA.VN8EW.T70+QpTFL?\btK;rEgFlVRNb'IV&(!c-q/LJV]-2itTD43nkS7J,GB-+a8CI9r9sU,],tSd8kLsZk[FH>>=uJ4!GkDQa@KE79e_.Pd[/Vq'9E-[s7g*p[[[:H5?bWd^@p"HErG9!jM@I3ani$D=8!%tMfk;_s/eIhr5u9sHY$PJ,CRo,g8[8`6Cp2W<-mKQG<hqeZZ4e>l"@4B3NuS2o]#ad^F;+Ds%L0'icF[k0/q%-n%L*7/QjLZJ*RR.iEAbFs!2ggn?%*6q.Jb-YIl:XmeT4ql!C!KSsqArf@%V[8.VEbk'/SE$g5YThg("TBN^`S>POe3N;0'YpXU;3iUb?aY?dl`W@rS$^\i\2j40LWmdIoQpWg?SqXX=5b:cCnoN]-0A5Dg>F7\Me0/gs@99WWM_R%\BW/m8tOnFuPjEK?:bGXOJQ%%eCXq7]O4M5m)oFpJ91C6)/^[-c43*jPE>7L5djM!cAaG/CUq;oW(Z6u!'nIP9T4?2M18R'SCZrK[j>L?KY'lAY\LfYg<79e/?86aJBZk[G3Lks#C>Q)QYp%/oYb"T*HDVMHoelA?)23k(MFi?r:=6cg29&EqLQ(!TZEnf_NdZJ\3a?d@Hb88S/VL0b$p\aN_XK=I1M(YIgRlAHQ7h3]1[VqG&`m8$W[!0"7\*F9%H0Vp;k,Zbt`8Lg(Y4<"H4K#-XBH"?[opHKak^gFQ2j]\V#&,F3I]:GL92'K:b$;5>B"H],0%h]P^f%piOmV^pYIDViU-g9]R\e?JeqRA]hGc/?dg>:3aTfB2S)m'h+6dEX:VN!JgMr'VZ+D)2)NDU5UWmn.N1\*ND&UGCBM-M-ISRI4gRhC]m9O%]$J`Xf4J/MA;s#a1a\17`*BnRI^MMTg7N?D??"FgfEK<0s,&.re"a?#B/bJ\?*ph68oqR04]XhO+"IPL=pe`?V.!WD;-uSX*1gRG[;SVkch1doNgjD,oTD9P3M^R)D*XkP*p(lo5FSce;!C$M6Y?S8IApB..2:kD7hfccrs7X(*]h/(9H2%.Hf_Ec\>SiLp\`(m)Z4\2&ZD4fnHKe?Z,6#[U?f]`WS`<66bMVm++X5q7^eE^bn-Wb`>r%a@>iM:NmuaslD1sp/Zk[FH>>>!u2Bj?jA8*RJ$LoUBX_96=C>+0F&J9"093Y]>[X.)8-Y5K4P.Q5=?LHR]9-3kBc^"._LjttN&[/M^B'"#U:%_Ml]qo&D2V#sYjuVb]k.#80@;FgXY@(RMUMOd]O<*`5d]^#7f?;?2I,u*T)R!c7Vm)qmnN,@[g`Y@?lD7jU1`S17j5n$,+89NYrM$&#^!b>6GDSLTii>r;5q2B?H0()/4"-.0hBrj#h_"f*HpgB@\;(RnFhq^Y4L"30U2@BIh$%Pd[V/l-lj]>l1.mJ`Sq^u7'po/^B1G4ZWS1D83j7UfTj`:1F7Im58A^]MJ+"iU*03]hhr,:mSA(Tn?0e[TJs#nRi`E="LrPM3pIEL6HHk.pmm*YdON'1B_jOn26a]?ir:\@Gmnnn!k5MT2mY$CVZ')h7n+8>3T'l?BDd8lU'IHKC.Q1XEE^'C=58p'cpHa8q/lr/=2BIheo[\Bm9nEdLsD+.[VX)mPg'Ri<`dtQ"!.aA?D+.Y0z5k33%ZkWQ@!!!!5%rFa>!<<*"!'p)$6+`Z81Z8d!!%O"1<"Jgg5<6+`>on'WHXT/?=,\S\.!4Z@^6+`Z8C1B;!-#WEX_93bJ/\gK$31(/(UV^MD6(]fHWu^+Y.IqC/Ih]2TBqho\j/dD]>0.d9;"<'KQ=a(!&K\4A]plfouiYe8((GF'l?BDd8g5I!!$(*D+.Y8g5<>5XT/>$!/c?9.]p."H?c-trI-Eh8\d4R6,7^5NejMd]I_Z8J&""kn]^OAT&%k?0!DpSoi8g%o49Z9Ol[+40@Xq9Gl8KKWqqpM3Muq-bH^349E`")DoKhK2qcZi0-!JgKW!K=pako_^sffDFpIq*?MQ5USnihkqp7F@kE!*q*uOJ7irQpScga3s2W/KDZ.KfD'DOGO.KBGKJ/Jl779e/?Zk[E]!!!!q4L>i?79e/?ZkWQ@!'p)$I^7YEPhuQ-E![e&`>E05TEWrNRp^TN;o04"0[I"7(+2uf5l5HS-c^QilUGu\gA!72kOS$<95-#(%ANglf1FP:PnZDmr2(_F5tGof>j0;h(ls[lHP1S?2ss*JDV$I'l?BDd8mUh!!!!an^(=D'l?BDd8g5I!!'u*>Er5nH(9eJ\+Bh."+HiPDf._MT>g1_n;nXIf_`5C^;h9$ljWe'nG_s6*fnS9.h4<&3c@H2^mX5n]Ycm7//kc295S#:7rc'E6s7gha`E\iqE*b7p'43Jd!$5J0#KXq]d!!$CR5[2W:Zk[FH>6+^(!#,r\79e/?Zk[E]!!!!q4LA+&[8hUePul1*q9B0!%W3/6cMIVIK(#uC<,DlWGefBlp5O/i^oc3"n/*7.P?Ja>`Sm;'^ZD;=p\"f=e*^FgDjPC`])p8(J$RhFS)\8TZJq_=)KdZD"&fX*3ZC$qE&W(BC_"Ag.!aEil/#<6j+H[bng8^E3O6;>:[C75F5Gg0pc1!!"e[g5<>5X_96=$31&+TQk-#g5<>5X_93b!!%Q/TrgqfXc1<)U]\=epHTeoL$/$omSAD9!T.BG"alO#BYEF4GRo]^9SeO)+>7].`/je__AhVYCbqDYZKScg_8uLQBb]YC-8,o#)TYjfS#=]a0Z2oBGG"Nu,14I;con'-C0gn'bY9]`8$4!165h/)#lhU92RP.f]PLJ>/a>BIheo[OS2WzMMAPhXg[f6Z,b?>".mO,Zjn1=Jb%X&+1Q_Ki+I[()>r"STn$Xk-0Erl+Xb[S(>P9YRRj^HuBk8DN.`utGrg`cD^3u%_^Ie,c4]hQ&C'/q(T/4HD`HOuQ@I3MYr[iT%KHQ4KM;fm=r-f+]_>!!!!qEmRjo'l?BDd8g5I!!'u*>L?KY'l?BD!<<*"'G#%\>&=ur@H:L;^Zs1%-\FY(e&4HuIOABDA`@!'ih>L?IO!!!#6(>>dqg1kZjfR7\NP2as/ZR^KC*5D=L7DqDNhH#*^qkemVO5G(UYs.]7j4cc:c2SK!9sJ!=-p=_F/#G9A;f&FiDeZlWVHC+uBbQ!^C1dK7/,tNN*<6'>5cI"Qd8mUhD+.Y0!!!!5%rFa>d8mUhD$9n>!)Peb>m(--!5LEX>L?K<5[0N&<[G?`!!!"LBnWphXT/>$!!&[:BIhdDz!/cQ?U9+Cq!!!"lG\AV]$31&+!!%n3[\Bl(zTQk-#g'Rf[!!!"VLUNqZz!2+RM/(t=1zMMJX7XT/>$!!&[:BIhdDz!/cQ?U9+Cq!!!"lG\AV]$31&+!!%n3[\Bl(zTQk-#g'Rf[!!!"VLUNqZz!2+RM/(t=1zMMJX7XT/>$!!&[:BIhdDz!/cQ?U9+Cq!!!"lGc#/To(")hn[?$t?:eAKL?IOzE%R`bBIa&_!!!!I*nlL[!WW3#!.a(&X_93bz-m%*"[K6F/!!%Q/TrhuYz!%8oBMREQd!!!"LihKqNi@G+mm-ia"hKCXjHk/g+8HSdJhHN=*H!!!!kO2i<2(HF/>dC80q#HM5H.AM074j'sL?IOz:cu,8YAUD=kKT2Rfo1#W1#<6;!!!#W7O(+RC4'Jmk&W!I^jYrLg5<1-FOz2_;!!!#<6X.r=z!)Peb'l=*Sz`C!kWi?"TSN&!!'u*>L?IOz:cu*"D$9n>!!!#<6X.r=z!)Peb'l=*Sz`C!kWi?"TSN&!!'u*>L?IOz:cu*"D$9n>!!!#<6X.r=z!)Peb'l=*Sz`C!kWi?"TSN&!!'u*>L?IOz:cu*"D$9n>!!!#<6X.r=z!)Peb'l=*Sz`C!kWi?"TSN&!!'u*>L?IOz:cu*"D$9n>!!!#<6X.r=z!)Peb'l=*Sz`C!kWi?"TSN&!!'u*>L?IOz:cu*"D$9n>!!!#<6X.r=z!)Peb'l=*Sz`C!kWi?"TSN&!!'u*>L?JJ6B#7T^Xq.sA9sS+L?JJ654^/>gfqpan.3V[K6F/\.PC9BIbJSHm`/?q#:Ee!cnFP#L3R%cGs;^D>Zr?e+g&r^jcJJ!a`ch(CUK,Mhk^@L''SipeL>FpB:Ici/,7?!O#p#i'1]##Q>?\.I^$Hqt[5,*J*AUh?k>OJ+EUHr)_gu_#Fo>ZL^9_"+gIkfGs)_`%*9c#eX5%NF04sq$$g!!#)^SD$;3hD)FU`d8g5I!&GADMRJ*LK!q,@X_93b!.^IED+.Yp$/mu)mXVX\Vf>_po70VQhs+hV9n>^*1>m)%o>HQ+%X9kd479:_^pii?]&.6.prhk9o3:'^:ZH#W#e6&QK3JEFPhs4LJ9,FCi/<,Pj_ab1nMU4k&._dEcRf/FE-&fV]IWJT^`Rf&?t7!;j>BU7I$hR=gB-fu_#S9Fs]6XX8o2W1,[N@-L^!5S%6g5<=j&q[QdX_93b!.YppD+.Yp#sheCT3b7Rd`IlH;Sn;@$MiuTo9RY^D8-\IcRd6j=P2okaVh;TpSm-b2W3UuW?ro@u"T%MABpCl.AilQQ-Z%,>>o`r-8n[6+^(bZ&7+g'UFXg1l5JU9+Cq!+m^f'l=+#K^XSBdiQ77p\F0rIJX`i@e-b#k5t/jBb,G#rYBaKPfI!RB[?*sDuPe#jp)k`c3f'Kgi7If*s57T5Lb+2+MJNG%!ZTT7i8dn]ZKS$IuZn?42JPJURAcrp_29XMAQ-@^r(_Jq8UHZGtVcRr*4Xlgfjk%%HjY$*t>jsnBN#51#8`c!!'h'!SWF>JeE[DU9/)Z!!%Ne$Z/=:5m]h]d8mUh!!'fnKsm_XTS2f/]8%;M%+LVpFb,SU^=i2s+5^Q]%!2Xm&K]ZdM>[VR+E0$m0g8os_oI>dkIl?Z(^dc=]Nr\_roEi1fY++fT2boANgK0r;i:^;Oe2^SS7M^3"S5iH1k!%0S4d0g-h-+\=hkgkIu^SS#K>#KpKTo)hK=8aq[W^7cs2^i;4br=A\8`X!5LIF[\BmsKV5G\/(t=1!+L?JJ6I8c?'l=*S!&.oVX_945+ahc,qg"gRK7Wf%=7_;>(r[S#mV.EY9K[^^h_3m5qj$rDU\IA+%q:F"]I3DWT%GPO`E_9#n^X!.Y?61beb37@q:HL-uopi(l@/Ja7&i-k2q/Nb__\924sh^54H$d3WK/qocnpX0\pM$ZhQt+p&>(h"l9`6#eAF%1#b<8YW-&22=Z/'^5e[V>=$@t>@$>,C2.E4g'UFXg?L.PRC3.s!4X)s<`;@id8j(1pc@PYePH"d>QoT!pCsg,@X&LLieT8;`"s?TC:L?JJ6I8cJ\fH6PoUr;d!9!SYD0;,jG!;O5o>?rO6?s=N+VXb.=-l(b%P5NlF,F,,K^5+4%\]C'9F_gdL@!_QCOTu?r!,bou2]dG0=q/OOST+`qKAFmT:iao`--GlJT-=dc!!(fYcrRmqg5<=j&q[PA;5SR;'RAU:!8rTc[eciI6+^(!!#:ScrRLgz!#,r\79]cm!!!!an^(=D'`\46!!!]DD+.Y0z5k33%ZkWQ@!!!!5%rFa>!<<*"!'p)$6+^(!!#:ScrRLgz!#,r\79]cm!!!!an^(=D'pK7S!P^B*(_07"l2e]=76`ER]cmFVn687ad8j(1crL-&+5.&%i.croU91)ATWJ3+5-u%)^^UZg79`%aiK?5B3#ee%A)g5<=j&q[OnQm'gW!!!Rc[\BmsKGY4V"^G8\CV&+0i!.0X62s6+_STrhuY-q.f"J/JE*"TSOW[\Bms'Ig>i4I6/m8Mq4O2"=Ym#<[@GUuF>'f55.#9II1^!!!kiMRJ+7KXLrL+ja6i!+9Ijg'UFag'V5B5[+6hJ>')Y.k!iDCod?eT\Jaq^lH3#!Il+b#1a"L?JJMU5B(1BcD=!!!FE79`&,6cp?0.6\47I_$)Zr6Slb+eKVAIqn!!!FE79`&,6crL,H?t_(E$;(oa$=JTR>6+_STrhuY-q1:=>FG9QrdsnskE83V'??a,4tU,VJDVF%$31&7D+.Yp.7.5>bReGf#'pKoLeLtRhqhV]WFXo]*Tre:p^sH,h'pKoLeLtRhqhV]WFXo]*Tre:p^sH,h'pKoLeLtRhqrgZ613t6>W3,'-;<6.Yg'KR".5mU&!W]`=TrhuY-q.gM?dA:V'Q$9C!A)g5<=j;M;LTjj7&8e[:(=!W[a1Zk[E]V$Lp\Q!Es8]B1hjks?_8l,-MCd`KDe=+(#i,>egHKgWWpj[uI$,6el*#kMpb.[,2;dXTZ!SWF>Jl791\k6Wdg5<ObeSXZ$fIYF+5?XZdB@f3+?oMCdJVmN6BVR5rgWI/fij*%:%uns5;q%a"82aMN>qr5cAf)&nb;"+>37GZ9\=

' + func(text) + '

'; + * }); + * + * p('fred, barney, & pebbles'); + * // => '

fred, barney, & pebbles

' + */ + function wrap(value, wrapper) { + return partial(castFunction(wrapper), value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Casts `value` as an array if it's not one. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Lang + * @param {*} value The value to inspect. + * @returns {Array} Returns the cast array. + * @example + * + * _.castArray(1); + * // => [1] + * + * _.castArray({ 'a': 1 }); + * // => [{ 'a': 1 }] + * + * _.castArray('abc'); + * // => ['abc'] + * + * _.castArray(null); + * // => [null] + * + * _.castArray(undefined); + * // => [undefined] + * + * _.castArray(); + * // => [] + * + * var array = [1, 2, 3]; + * console.log(_.castArray(array) === array); + * // => true + */ + function castArray() { + if (!arguments.length) { + return []; + } + var value = arguments[0]; + return isArray(value) ? value : [value]; + } + + /** + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true + */ + function clone(value) { + return baseClone(value, CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.clone` except that it accepts `customizer` which + * is invoked to produce the cloned value. If `customizer` returns `undefined`, + * cloning is handled by the method instead. The `customizer` is invoked with + * up to four arguments; (value [, index|key, object, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the cloned value. + * @see _.cloneDeepWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } + * } + * + * var el = _.cloneWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 0 + */ + function cloneWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * This method is like `_.clone` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false + */ + function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.cloneWith` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the deep cloned value. + * @see _.cloneWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * } + * + * var el = _.cloneDeepWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 20 + */ + function cloneDeepWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * Checks if `object` conforms to `source` by invoking the predicate + * properties of `source` with the corresponding property values of `object`. + * + * **Note:** This method is equivalent to `_.conforms` when `source` is + * partially applied. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); + * // => true + * + * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); + * // => false + */ + function conformsTo(object, source) { + return source == null || baseConformsTo(object, source, keys(source)); + } + + /** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ + function eq(value, other) { + return value === other || (value !== value && other !== other); + } + + /** + * Checks if `value` is greater than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + * @see _.lt + * @example + * + * _.gt(3, 1); + * // => true + * + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false + */ + var gt = createRelationalOperation(baseGt); + + /** + * Checks if `value` is greater than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to + * `other`, else `false`. + * @see _.lte + * @example + * + * _.gte(3, 1); + * // => true + * + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false + */ + var gte = createRelationalOperation(function(value, other) { + return value >= other; + }); + + /** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ + var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); + }; + + /** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ + var isArray = Array.isArray; + + /** + * Checks if `value` is classified as an `ArrayBuffer` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + * @example + * + * _.isArrayBuffer(new ArrayBuffer(2)); + * // => true + * + * _.isArrayBuffer(new Array(2)); + * // => false + */ + var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ + function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); + } + + /** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example + * + * _.isArrayLikeObject([1, 2, 3]); + * // => true + * + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false + */ + function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); + } + + /** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); + } + + /** + * Checks if `value` is a buffer. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true + * + * _.isBuffer(new Uint8Array(2)); + * // => false + */ + var isBuffer = nativeIsBuffer || stubFalse; + + /** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ + var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; + + /** + * Checks if `value` is likely a DOM element. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @example + * + * _.isElement(document.body); + * // => true + * + * _.isElement(''); + * // => false + */ + function isElement(value) { + return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); + } + + /** + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ + function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && + (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || + isBuffer(value) || isTypedArray(value) || isArguments(value))) { + return !value.length; + } + var tag = getTag(value); + if (tag == mapTag || tag == setTag) { + return !value.size; + } + if (isPrototype(value)) { + return !baseKeys(value).length; + } + for (var key in value) { + if (hasOwnProperty.call(value, key)) { + return false; + } + } + return true; + } + + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ + function isEqual(value, other) { + return baseIsEqual(value, other); + } + + /** + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ + function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; + } + + /** + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @example + * + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false + */ + function isError(value) { + if (!isObjectLike(value)) { + return false; + } + var tag = baseGetTag(value); + return tag == errorTag || tag == domExcTag || + (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); + } + + /** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false + */ + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); + } + + /** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ + function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; + } + + /** + * Checks if `value` is an integer. + * + * **Note:** This method is based on + * [`Number.isInteger`](https://mdn.io/Number/isInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @example + * + * _.isInteger(3); + * // => true + * + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false + */ + function isInteger(value) { + return typeof value == 'number' && value == toInteger(value); + } + + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ + function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(_.noop); + * // => true + * + * _.isObject(null); + * // => false + */ + function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); + } + + /** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ + function isObjectLike(value) { + return value != null && typeof value == 'object'; + } + + /** + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false + */ + var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; + + /** + * Performs a partial deep comparison between `object` and `source` to + * determine if `object` contains equivalent property values. + * + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.isMatch(object, { 'b': 2 }); + * // => true + * + * _.isMatch(object, { 'b': 1 }); + * // => false + */ + function isMatch(object, source) { + return object === source || baseIsMatch(object, source, getMatchData(source)); + } + + /** + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with five + * arguments: (objValue, srcValue, index|key, object, source). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } + * + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatchWith(object, source, customizer); + * // => true + */ + function isMatchWith(object, source, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseIsMatch(object, source, getMatchData(source), customizer); + } + + /** + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; + } + + /** + * Checks if `value` is a pristine native function. + * + * **Note:** This method can't reliably detect native functions in the presence + * of the core-js package because core-js circumvents this kind of detection. + * Despite multiple requests, the core-js maintainer has made it clear: any + * attempt to fix the detection will be obstructed. As a result, we're left + * with little choice but to throw an error. Unfortunately, this also affects + * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), + * which rely on core-js. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + * @example + * + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false + */ + function isNative(value) { + if (isMaskable(value)) { + throw new Error(CORE_ERROR_TEXT); + } + return baseIsNative(value); + } + + /** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ + function isNull(value) { + return value === null; + } + + /** + * Checks if `value` is `null` or `undefined`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @example + * + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false + */ + function isNil(value) { + return value == null; + } + + /** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @example + * + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false + */ + function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); + } + + /** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ + function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; + } + + /** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ + var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; + + /** + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on + * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @example + * + * _.isSafeInteger(3); + * // => true + * + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false + */ + function isSafeInteger(value) { + return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ + var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + + /** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ + function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + } + + /** + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false + */ + function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); + } + + /** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ + var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + + /** + * Checks if `value` is `undefined`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ + function isUndefined(value) { + return value === undefined; + } + + /** + * Checks if `value` is classified as a `WeakMap` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @example + * + * _.isWeakMap(new WeakMap); + * // => true + * + * _.isWeakMap(new Map); + * // => false + */ + function isWeakMap(value) { + return isObjectLike(value) && getTag(value) == weakMapTag; + } + + /** + * Checks if `value` is classified as a `WeakSet` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. + * @example + * + * _.isWeakSet(new WeakSet); + * // => true + * + * _.isWeakSet(new Set); + * // => false + */ + function isWeakSet(value) { + return isObjectLike(value) && baseGetTag(value) == weakSetTag; + } + + /** + * Checks if `value` is less than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + * @see _.gt + * @example + * + * _.lt(1, 3); + * // => true + * + * _.lt(3, 3); + * // => false + * + * _.lt(3, 1); + * // => false + */ + var lt = createRelationalOperation(baseLt); + + /** + * Checks if `value` is less than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than or equal to + * `other`, else `false`. + * @see _.gte + * @example + * + * _.lte(1, 3); + * // => true + * + * _.lte(3, 3); + * // => true + * + * _.lte(3, 1); + * // => false + */ + var lte = createRelationalOperation(function(value, other) { + return value <= other; + }); + + /** + * Converts `value` to an array. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. + * @example + * + * _.toArray({ 'a': 1, 'b': 2 }); + * // => [1, 2] + * + * _.toArray('abc'); + * // => ['a', 'b', 'c'] + * + * _.toArray(1); + * // => [] + * + * _.toArray(null); + * // => [] + */ + function toArray(value) { + if (!value) { + return []; + } + if (isArrayLike(value)) { + return isString(value) ? stringToArray(value) : copyArray(value); + } + if (symIterator && value[symIterator]) { + return iteratorToArray(value[symIterator]()); + } + var tag = getTag(value), + func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values); + + return func(value); + } + + /** + * Converts `value` to a finite number. + * + * @static + * @memberOf _ + * @since 4.12.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted number. + * @example + * + * _.toFinite(3.2); + * // => 3.2 + * + * _.toFinite(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toFinite(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toFinite('3.2'); + * // => 3.2 + */ + function toFinite(value) { + if (!value) { + return value === 0 ? value : 0; + } + value = toNumber(value); + if (value === INFINITY || value === -INFINITY) { + var sign = (value < 0 ? -1 : 1); + return sign * MAX_INTEGER; + } + return value === value ? value : 0; + } + + /** + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 + */ + function toInteger(value) { + var result = toFinite(value), + remainder = result % 1; + + return result === result ? (remainder ? result - remainder : result) : 0; + } + + /** + * Converts `value` to an integer suitable for use as the length of an + * array-like object. + * + * **Note:** This method is based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toLength(3.2); + * // => 3 + * + * _.toLength(Number.MIN_VALUE); + * // => 0 + * + * _.toLength(Infinity); + * // => 4294967295 + * + * _.toLength('3.2'); + * // => 3 + */ + function toLength(value) { + return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0; + } + + /** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 + */ + function toNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + if (isObject(value)) { + var other = typeof value.valueOf == 'function' ? value.valueOf() : value; + value = isObject(other) ? (other + '') : other; + } + if (typeof value != 'string') { + return value === 0 ? value : +value; + } + value = value.replace(reTrim, ''); + var isBinary = reIsBinary.test(value); + return (isBinary || reIsOctal.test(value)) + ? freeParseInt(value.slice(2), isBinary ? 2 : 8) + : (reIsBadHex.test(value) ? NAN : +value); + } + + /** + * Converts `value` to a plain object flattening inherited enumerable string + * keyed properties of `value` to own properties of the plain object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } + */ + function toPlainObject(value) { + return copyObject(value, keysIn(value)); + } + + /** + * Converts `value` to a safe integer. A safe integer can be compared and + * represented correctly. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toSafeInteger(3.2); + * // => 3 + * + * _.toSafeInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toSafeInteger(Infinity); + * // => 9007199254740991 + * + * _.toSafeInteger('3.2'); + * // => 3 + */ + function toSafeInteger(value) { + return value + ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) + : (value === 0 ? value : 0); + } + + /** + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + function toString(value) { + return value == null ? '' : baseToString(value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ + var assign = createAssigner(function(object, source) { + if (isPrototype(source) || isArrayLike(source)) { + copyObject(source, keys(source), object); + return; + } + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + assignValue(object, key, source[key]); + } + } + }); + + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ + var assignIn = createAssigner(function(object, source) { + copyObject(source, keysIn(source), object); + }); + + /** + * This method is like `_.assignIn` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keysIn(source), object, customizer); + }); + + /** + * This method is like `_.assign` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignInWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keys(source), object, customizer); + }); + + /** + * Creates an array of values corresponding to `paths` of `object`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Array} Returns the picked values. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _.at(object, ['a[0].b.c', 'a[1]']); + * // => [3, 4] + */ + var at = flatRest(baseAt); + + /** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : baseAssign(result, properties); + } + + /** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var defaults = baseRest(function(object, sources) { + object = Object(object); + + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } + + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; + + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; + + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } + } + } + + return object; + }); + + /** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaults + * @example + * + * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); + * // => { 'a': { 'b': 2, 'c': 3 } } + */ + var defaultsDeep = baseRest(function(args) { + args.push(undefined, customDefaultsMerge); + return apply(mergeWith, undefined, args); + }); + + /** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(o) { return o.age < 40; }); + * // => 'barney' (iteration order is not guaranteed) + * + * // The `_.matches` iteratee shorthand. + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findKey(users, 'active'); + * // => 'barney' + */ + function findKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwn); + } + + /** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(o) { return o.age < 40; }); + * // => returns 'pebbles' assuming `_.findKey` returns 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ + function findLastKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight); + } + + /** + * Iterates over own and inherited enumerable string keyed properties of an + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forInRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + */ + function forIn(object, iteratee) { + return object == null + ? object + : baseFor(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forIn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + */ + function forInRight(object, iteratee) { + return object == null + ? object + : baseForRight(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwnRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forOwn(object, iteratee) { + return object && baseForOwn(object, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + */ + function forOwnRight(object, iteratee) { + return object && baseForOwnRight(object, getIteratee(iteratee, 3)); + } + + /** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functionsIn + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ + function functions(object) { + return object == null ? [] : baseFunctions(object, keys(object)); + } + + /** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functions + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ + function functionsIn(object) { + return object == null ? [] : baseFunctions(object, keysIn(object)); + } + + /** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ + function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; + } + + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + function has(object, path) { + return object != null && hasPath(object, path, baseHas); + } + + /** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b'); + * // => true + * + * _.hasIn(object, ['a', 'b']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ + function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); + } + + /** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite + * property assignments of previous values. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Object + * @param {Object} object The object to invert. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + */ + var invert = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + result[value] = key; + }, constant(identity)); + + /** + * This method is like `_.invert` except that the inverted object is generated + * from the results of running each element of `object` thru `iteratee`. The + * corresponding inverted value of each inverted key is an array of keys + * responsible for generating the inverted value. The iteratee is invoked + * with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Object + * @param {Object} object The object to invert. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invertBy(object); + * // => { '1': ['a', 'c'], '2': ['b'] } + * + * _.invertBy(object, function(value) { + * return 'group' + value; + * }); + * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + */ + var invertBy = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + }, getIteratee); + + /** + * Invokes the method at `path` of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + * @example + * + * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * + * _.invoke(object, 'a[0].b.c.slice', 1, 3); + * // => [2, 3] + */ + var invoke = baseRest(baseInvoke); + + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); + } + + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); + } + + /** + * The opposite of `_.mapValues`; this method creates an object with the + * same values as `object` and keys generated by running each own enumerable + * string keyed property of `object` thru `iteratee`. The iteratee is invoked + * with three arguments: (value, key, object). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapValues + * @example + * + * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { + * return key + value; + * }); + * // => { 'a1': 1, 'b2': 2 } + */ + function mapKeys(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, iteratee(value, key, object), value); + }); + return result; + } + + /** + * Creates an object with the same keys as `object` and values generated + * by running each own enumerable string keyed property of `object` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, key, object). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapKeys + * @example + * + * var users = { + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } + * }; + * + * _.mapValues(users, function(o) { return o.age; }); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * + * // The `_.property` iteratee shorthand. + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + */ + function mapValues(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, key, iteratee(value, key, object)); + }); + return result; + } + + /** + * This method is like `_.assign` except that it recursively merges own and + * inherited enumerable string keyed properties of source objects into the + * destination object. Source properties that resolve to `undefined` are + * skipped if a destination value exists. Array and plain object properties + * are merged recursively. Other objects and value types are overridden by + * assignment. Source objects are applied from left to right. Subsequent + * sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var object = { + * 'a': [{ 'b': 2 }, { 'd': 4 }] + * }; + * + * var other = { + * 'a': [{ 'c': 3 }, { 'e': 5 }] + * }; + * + * _.merge(object, other); + * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + */ + var merge = createAssigner(function(object, source, srcIndex) { + baseMerge(object, source, srcIndex); + }); + + /** + * This method is like `_.merge` except that it accepts `customizer` which + * is invoked to produce the merged values of the destination and source + * properties. If `customizer` returns `undefined`, merging is handled by the + * method instead. The `customizer` is invoked with six arguments: + * (objValue, srcValue, key, object, source, stack). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * if (_.isArray(objValue)) { + * return objValue.concat(srcValue); + * } + * } + * + * var object = { 'a': [1], 'b': [2] }; + * var other = { 'a': [3], 'b': [4] }; + * + * _.mergeWith(object, other, customizer); + * // => { 'a': [1, 3], 'b': [2, 4] } + */ + var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { + baseMerge(object, source, srcIndex, customizer); + }); + + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ + var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; + } + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; + }); + + /** + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable string keyed properties of `object` that + * `predicate` doesn't return truthy for. The predicate is invoked with two + * arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ + function omitBy(object, predicate) { + return pickBy(object, negate(getIteratee(predicate))); + } + + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); + }); + + /** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ + function pickBy(object, predicate) { + if (object == null) { + return {}; + } + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = getIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); + } + + /** + * This method is like `_.get` except that if the resolved value is a + * function it's invoked with the `this` binding of its parent object and + * its result is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a[0].b.c3', 'default'); + * // => 'default' + * + * _.result(object, 'a[0].b.c3', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + path = castPath(path, object); + + var index = -1, + length = path.length; + + // Ensure the loop is entered when path is empty. + if (!length) { + length = 1; + object = undefined; + } + while (++index < length) { + var value = object == null ? undefined : object[toKey(path[index])]; + if (value === undefined) { + index = length; + value = defaultValue; + } + object = isFunction(value) ? value.call(object) : value; + } + return object; + } + + /** + * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, + * it's created. Arrays are created for missing index properties while objects + * are created for all other missing properties. Use `_.setWith` to customize + * `path` creation. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, ['x', '0', 'y', 'z'], 5); + * console.log(object.x[0].y.z); + * // => 5 + */ + function set(object, path, value) { + return object == null ? object : baseSet(object, path, value); + } + + /** + * This method is like `_.set` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.setWith(object, '[0][1]', 'a', Object); + * // => { '0': { '1': 'a' } } + */ + function setWith(object, path, value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseSet(object, path, value, customizer); + } + + /** + * Creates an array of own enumerable string keyed-value pairs for `object` + * which can be consumed by `_.fromPairs`. If `object` is a map or set, its + * entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entries + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairs(new Foo); + * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + */ + var toPairs = createToPairs(keys); + + /** + * Creates an array of own and inherited enumerable string keyed-value pairs + * for `object` which can be consumed by `_.fromPairs`. If `object` is a map + * or set, its entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entriesIn + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairsIn(new Foo); + * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) + */ + var toPairsIn = createToPairs(keysIn); + + /** + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own + * enumerable string keyed properties thru `iteratee`, with each invocation + * potentially mutating the `accumulator` object. If `accumulator` is not + * provided, a new object with the same `[[Prototype]]` will be used. The + * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @returns {*} Returns the accumulated value. + * @example + * + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }, []); + * // => [4, 9] + * + * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } + */ + function transform(object, iteratee, accumulator) { + var isArr = isArray(object), + isArrLike = isArr || isBuffer(object) || isTypedArray(object); + + iteratee = getIteratee(iteratee, 4); + if (accumulator == null) { + var Ctor = object && object.constructor; + if (isArrLike) { + accumulator = isArr ? new Ctor : []; + } + else if (isObject(object)) { + accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; + } + else { + accumulator = {}; + } + } + (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; + } + + /** + * Removes the property at `path` of `object`. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 7 } }] }; + * _.unset(object, 'a[0].b.c'); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + * + * _.unset(object, ['a', '0', 'b', 'c']); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + */ + function unset(object, path) { + return object == null ? true : baseUnset(object, path); + } + + /** + * This method is like `_.set` except that accepts `updater` to produce the + * value to set. Use `_.updateWith` to customize `path` creation. The `updater` + * is invoked with one argument: (value). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.update(object, 'a[0].b.c', function(n) { return n * n; }); + * console.log(object.a[0].b.c); + * // => 9 + * + * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; }); + * console.log(object.x[0].y.z); + * // => 0 + */ + function update(object, path, updater) { + return object == null ? object : baseUpdate(object, path, castFunction(updater)); + } + + /** + * This method is like `_.update` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.updateWith(object, '[0][1]', _.constant('a'), Object); + * // => { '0': { '1': 'a' } } + */ + function updateWith(object, path, updater, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer); + } + + /** + * Creates an array of the own enumerable string keyed property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return object == null ? [] : baseValues(object, keys(object)); + } + + /** + * Creates an array of the own and inherited enumerable string keyed property + * values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.valuesIn(new Foo); + * // => [1, 2, 3] (iteration order is not guaranteed) + */ + function valuesIn(object) { + return object == null ? [] : baseValues(object, keysIn(object)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ + function clamp(number, lower, upper) { + if (upper === undefined) { + upper = lower; + lower = undefined; + } + if (upper !== undefined) { + upper = toNumber(upper); + upper = upper === upper ? upper : 0; + } + if (lower !== undefined) { + lower = toNumber(lower); + lower = lower === lower ? lower : 0; + } + return baseClamp(toNumber(number), lower, upper); + } + + /** + * Checks if `n` is between `start` and up to, but not including, `end`. If + * `end` is not specified, it's set to `start` with `start` then set to `0`. + * If `start` is greater than `end` the params are swapped to support + * negative ranges. + * + * @static + * @memberOf _ + * @since 3.3.0 + * @category Number + * @param {number} number The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + * @see _.range, _.rangeRight + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + * + * _.inRange(-3, -2, -6); + * // => true + */ + function inRange(number, start, end) { + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + number = toNumber(number); + return baseInRange(number, start, end); + } + + /** + * Produces a random number between the inclusive `lower` and `upper` bounds. + * If only one argument is provided a number between `0` and the given number + * is returned. If `floating` is `true`, or either `lower` or `upper` are + * floats, a floating-point number is returned instead of an integer. + * + * **Note:** JavaScript follows the IEEE-754 standard for resolving + * floating-point values which can produce unexpected results. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Number + * @param {number} [lower=0] The lower bound. + * @param {number} [upper=1] The upper bound. + * @param {boolean} [floating] Specify returning a floating-point number. + * @returns {number} Returns the random number. + * @example + * + * _.random(0, 5); + * // => an integer between 0 and 5 + * + * _.random(5); + * // => also an integer between 0 and 5 + * + * _.random(5, true); + * // => a floating-point number between 0 and 5 + * + * _.random(1.2, 5.2); + * // => a floating-point number between 1.2 and 5.2 + */ + function random(lower, upper, floating) { + if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) { + upper = floating = undefined; + } + if (floating === undefined) { + if (typeof upper == 'boolean') { + floating = upper; + upper = undefined; + } + else if (typeof lower == 'boolean') { + floating = lower; + lower = undefined; + } + } + if (lower === undefined && upper === undefined) { + lower = 0; + upper = 1; + } + else { + lower = toFinite(lower); + if (upper === undefined) { + upper = lower; + lower = 0; + } else { + upper = toFinite(upper); + } + } + if (lower > upper) { + var temp = lower; + lower = upper; + upper = temp; + } + if (floating || lower % 1 || upper % 1) { + var rand = nativeRandom(); + return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper); + } + return baseRandom(lower, upper); + } + + /*------------------------------------------------------------------------*/ + + /** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar--'); + * // => 'fooBar' + * + * _.camelCase('__FOO_BAR__'); + * // => 'fooBar' + */ + var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? capitalize(word) : word); + }); + + /** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('FRED'); + * // => 'Fred' + */ + function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); + } + + /** + * Deburrs `string` by converting + * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) + * letters to basic Latin letters and removing + * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ + function deburr(string) { + string = toString(string); + return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); + } + + /** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search up to. + * @returns {boolean} Returns `true` if `string` ends with `target`, + * else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ + function endsWith(string, target, position) { + string = toString(string); + target = baseToString(target); + + var length = string.length; + position = position === undefined + ? length + : baseClamp(toInteger(position), 0, length); + + var end = position; + position -= target.length; + return position >= 0 && string.slice(position, end) == target; + } + + /** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + + /** + * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", + * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https://lodash\.com/\)' + */ + function escapeRegExp(string) { + string = toString(string); + return (string && reHasRegExpChar.test(string)) + ? string.replace(reRegExpChar, '\\$&') + : string; + } + + /** + * Converts `string` to + * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__FOO_BAR__'); + * // => 'foo-bar' + */ + var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); + }); + + /** + * Converts `string`, as space separated words, to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the lower cased string. + * @example + * + * _.lowerCase('--Foo-Bar--'); + * // => 'foo bar' + * + * _.lowerCase('fooBar'); + * // => 'foo bar' + * + * _.lowerCase('__FOO_BAR__'); + * // => 'foo bar' + */ + var lowerCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + word.toLowerCase(); + }); + + /** + * Converts the first character of `string` to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.lowerFirst('Fred'); + * // => 'fred' + * + * _.lowerFirst('FRED'); + * // => 'fRED' + */ + var lowerFirst = createCaseFirst('toLowerCase'); + + /** + * Pads `string` on the left and right sides if it's shorter than `length`. + * Padding characters are truncated if they can't be evenly divided by `length`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.pad('abc', 8); + * // => ' abc ' + * + * _.pad('abc', 8, '_-'); + * // => '_-abc_-_' + * + * _.pad('abc', 3); + * // => 'abc' + */ + function pad(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + if (!length || strLength >= length) { + return string; + } + var mid = (length - strLength) / 2; + return ( + createPadding(nativeFloor(mid), chars) + + string + + createPadding(nativeCeil(mid), chars) + ); + } + + /** + * Pads `string` on the right side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padEnd('abc', 6); + * // => 'abc ' + * + * _.padEnd('abc', 6, '_-'); + * // => 'abc_-_' + * + * _.padEnd('abc', 3); + * // => 'abc' + */ + function padEnd(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (string + createPadding(length - strLength, chars)) + : string; + } + + /** + * Pads `string` on the left side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padStart('abc', 6); + * // => ' abc' + * + * _.padStart('abc', 6, '_-'); + * // => '_-_abc' + * + * _.padStart('abc', 3); + * // => 'abc' + */ + function padStart(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (createPadding(length - strLength, chars) + string) + : string; + } + + /** + * Converts `string` to an integer of the specified radix. If `radix` is + * `undefined` or `0`, a `radix` of `10` is used unless `value` is a + * hexadecimal, in which case a `radix` of `16` is used. + * + * **Note:** This method aligns with the + * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category String + * @param {string} string The string to convert. + * @param {number} [radix=10] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {number} Returns the converted integer. + * @example + * + * _.parseInt('08'); + * // => 8 + * + * _.map(['6', '08', '10'], _.parseInt); + * // => [6, 8, 10] + */ + function parseInt(string, radix, guard) { + if (guard || radix == null) { + radix = 0; + } else if (radix) { + radix = +radix; + } + return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0); + } + + /** + * Repeats the given string `n` times. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to repeat. + * @param {number} [n=1] The number of times to repeat the string. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the repeated string. + * @example + * + * _.repeat('*', 3); + * // => '***' + * + * _.repeat('abc', 2); + * // => 'abcabc' + * + * _.repeat('abc', 0); + * // => '' + */ + function repeat(string, n, guard) { + if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + return baseRepeat(toString(string), n); + } + + /** + * Replaces matches for `pattern` in `string` with `replacement`. + * + * **Note:** This method is based on + * [`String#replace`](https://mdn.io/String/replace). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to modify. + * @param {RegExp|string} pattern The pattern to replace. + * @param {Function|string} replacement The match replacement. + * @returns {string} Returns the modified string. + * @example + * + * _.replace('Hi Fred', 'Fred', 'Barney'); + * // => 'Hi Barney' + */ + function replace() { + var args = arguments, + string = toString(args[0]); + + return args.length < 3 ? string : string.replace(args[1], args[2]); + } + + /** + * Converts `string` to + * [snake case](https://en.wikipedia.org/wiki/Snake_case). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the snake cased string. + * @example + * + * _.snakeCase('Foo Bar'); + * // => 'foo_bar' + * + * _.snakeCase('fooBar'); + * // => 'foo_bar' + * + * _.snakeCase('--FOO-BAR--'); + * // => 'foo_bar' + */ + var snakeCase = createCompounder(function(result, word, index) { + return result + (index ? '_' : '') + word.toLowerCase(); + }); + + /** + * Splits `string` by `separator`. + * + * **Note:** This method is based on + * [`String#split`](https://mdn.io/String/split). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to split. + * @param {RegExp|string} separator The separator pattern to split by. + * @param {number} [limit] The length to truncate results to. + * @returns {Array} Returns the string segments. + * @example + * + * _.split('a-b-c', '-', 2); + * // => ['a', 'b'] + */ + function split(string, separator, limit) { + if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) { + separator = limit = undefined; + } + limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0; + if (!limit) { + return []; + } + string = toString(string); + if (string && ( + typeof separator == 'string' || + (separator != null && !isRegExp(separator)) + )) { + separator = baseToString(separator); + if (!separator && hasUnicode(string)) { + return castSlice(stringToArray(string), 0, limit); + } + } + return string.split(separator, limit); + } + + /** + * Converts `string` to + * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * + * @static + * @memberOf _ + * @since 3.1.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the start cased string. + * @example + * + * _.startCase('--foo-bar--'); + * // => 'Foo Bar' + * + * _.startCase('fooBar'); + * // => 'Foo Bar' + * + * _.startCase('__FOO_BAR__'); + * // => 'FOO BAR' + */ + var startCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + upperFirst(word); + }); + + /** + * Checks if `string` starts with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, + * else `false`. + * @example + * + * _.startsWith('abc', 'a'); + * // => true + * + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true + */ + function startsWith(string, target, position) { + string = toString(string); + position = position == null + ? 0 + : baseClamp(toInteger(position), 0, string.length); + + target = baseToString(target); + return string.slice(position, position + target.length) == target; + } + + /** + * Creates a compiled template function that can interpolate data properties + * in "interpolate" delimiters, HTML-escape interpolated data properties in + * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data + * properties may be accessed as free variables in the template. If a setting + * object is given, it takes precedence over `_.templateSettings` values. + * + * **Note:** In the development build `_.template` utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) + * for easier debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The template string. + * @param {Object} [options={}] The options object. + * @param {RegExp} [options.escape=_.templateSettings.escape] + * The HTML "escape" delimiter. + * @param {RegExp} [options.evaluate=_.templateSettings.evaluate] + * The "evaluate" delimiter. + * @param {Object} [options.imports=_.templateSettings.imports] + * An object to import into the template as free variables. + * @param {RegExp} [options.interpolate=_.templateSettings.interpolate] + * The "interpolate" delimiter. + * @param {string} [options.sourceURL='lodash.templateSources[n]'] + * The sourceURL of the compiled template. + * @param {string} [options.variable='obj'] + * The data object variable name. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the compiled template function. + * @example + * + * // Use the "interpolate" delimiter to create a compiled template. + * var compiled = _.template('hello <%= user %>!'); + * compiled({ 'user': 'fred' }); + * // => 'hello fred!' + * + * // Use the HTML "escape" delimiter to escape data property values. + * var compiled = _.template('<%- value %>'); + * compiled({ 'value': ' + + + +
Number of entities:-
+
+ + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/examples/example.es5.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/examples/example.es5.js new file mode 100644 index 0000000..e119773 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/examples/example.es5.js @@ -0,0 +1,29 @@ +const fs = require('fs') +const join = require('path').join + +const Helper = require('..').Helper + +const helper = new Helper(fs.readFileSync( + './test/resources/Ceco.NET-Architecture-Tm-53.dxf', 'utf-8')) + +// The parsed entities +const { blocks, entities } = helper.parsed +console.log(`parsed: ${blocks.length} blocks, ${entities.length} entities.\n`) + +// Denormalised blocks inserted with transforms applied +console.log(`denormalised: ${helper.denormalised.length} entities.\n`) + +// Group entities by layer. Returns an object with layer names as +// keys to arrays of entities. +const groups = helper.groups +console.log('grouped entities') +console.log('----------------') +Object.keys(groups).forEach(layer => { + console.log(`${layer}: ${groups[layer].length}`) +}) +console.log('\n') + +// Write the SVG +const svg = helper.toSVG() +fs.writeFileSync(join(__dirname, '/example.es5.svg'), svg, 'utf-8') +console.log('SVG written') diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/examples/example.es6.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/examples/example.es6.js new file mode 100644 index 0000000..f16cd52 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/examples/example.es6.js @@ -0,0 +1,29 @@ +import fs from 'fs' +import { join } from 'path' + +import { Helper } from '../src' + +const helper = new Helper(fs.readFileSync( + './test/resources/Ceco.NET-Architecture-Tm-53.dxf', 'utf-8')) + +// The parsed entities +const { blocks, entities } = helper.parsed +console.log(`parsed: ${blocks.length} blocks, ${entities.length} entities.\n`) + +// Denormalised blocks inserted with transforms applied +console.log(`denormalised: ${helper.denormalised.length} entities.\n`) + +// Group entities by layer. Returns an object with layer names as +// keys to arrays of entities. +const groups = helper.groups +console.log('grouped entities') +console.log('----------------') +Object.keys(groups).forEach(layer => { + console.log(`${layer}: ${groups[layer].length}`) +}) +console.log('\n') + +// Write the SVG +const svg = helper.toSVG() +fs.writeFileSync(join(__dirname, '/example.es6.svg'), svg, 'utf-8') +console.log('SVG written') diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/Helper.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/Helper.js new file mode 100644 index 0000000..570eb4d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/Helper.js @@ -0,0 +1,106 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _logger = _interopRequireDefault(require("./util/logger")); + +var _parseString = _interopRequireDefault(require("./parseString")); + +var _denormalise2 = _interopRequireDefault(require("./denormalise")); + +var _toSVG2 = _interopRequireDefault(require("./toSVG")); + +var _toPolylines2 = _interopRequireDefault(require("./toPolylines")); + +var _groupEntitiesByLayer = _interopRequireDefault(require("./groupEntitiesByLayer")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var Helper = /*#__PURE__*/function () { + function Helper(contents) { + _classCallCheck(this, Helper); + + if (!(typeof contents === 'string')) { + throw Error('Helper constructor expects a DXF string'); + } + + this._contents = contents; + this._parsed = null; + this._denormalised = null; + } + + _createClass(Helper, [{ + key: "parse", + value: function parse() { + this._parsed = (0, _parseString["default"])(this._contents); + + _logger["default"].info('parsed:', this.parsed); + + return this._parsed; + } + }, { + key: "denormalise", + value: function denormalise() { + this._denormalised = (0, _denormalise2["default"])(this.parsed); + + _logger["default"].info('denormalised:', this._denormalised); + + return this._denormalised; + } + }, { + key: "group", + value: function group() { + this._groups = (0, _groupEntitiesByLayer["default"])(this.denormalised); + } + }, { + key: "toSVG", + value: function toSVG() { + return (0, _toSVG2["default"])(this.parsed); + } + }, { + key: "toPolylines", + value: function toPolylines() { + return (0, _toPolylines2["default"])(this.parsed); + } + }, { + key: "parsed", + get: function get() { + if (this._parsed === null) { + this.parse(); + } + + return this._parsed; + } + }, { + key: "denormalised", + get: function get() { + if (!this._denormalised) { + this.denormalise(); + } + + return this._denormalised; + } + }, { + key: "groups", + get: function get() { + if (!this._groups) { + this.group(); + } + + return this._groups; + } + }]); + + return Helper; +}(); + +exports["default"] = Helper; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/applyTransforms.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/applyTransforms.js new file mode 100644 index 0000000..b26e53e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/applyTransforms.js @@ -0,0 +1,54 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Apply the transforms to the polyline. + * + * @param polyline the polyline + * @param transform the transforms array + * @returns the transformed polyline + */ +var _default = function _default(polyline, transforms) { + transforms.forEach(function (transform) { + polyline = polyline.map(function (p) { + // Use a copy to avoid side effects + var p2 = [p[0], p[1]]; + + if (transform.scaleX) { + p2[0] = p2[0] * transform.scaleX; + } + + if (transform.scaleY) { + p2[1] = p2[1] * transform.scaleY; + } + + if (transform.rotation) { + var angle = transform.rotation / 180 * Math.PI; + p2 = [p2[0] * Math.cos(angle) - p2[1] * Math.sin(angle), p2[1] * Math.cos(angle) + p2[0] * Math.sin(angle)]; + } + + if (transform.x) { + p2[0] = p2[0] + transform.x; + } + + if (transform.y) { + p2[1] = p2[1] + transform.y; + } // Observed once in a sample DXF - some cad applications + // use negative extruxion Z for flipping + + + if (transform.extrusionZ === -1) { + p2[0] = -p2[0]; + } + + return p2; + }); + }); + return polyline; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/cli.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/cli.js new file mode 100644 index 0000000..afd3f9d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/cli.js @@ -0,0 +1,28 @@ +#!/usr/bin/env node +"use strict"; + +var _commander = _interopRequireDefault(require("commander")); + +var _fs = _interopRequireDefault(require("fs")); + +var _ = require("./"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +_commander["default"].version(require('../package.json').version).description('Converts a dxf file to a svg file.').arguments(' [svgFile]').option('-v --verbose', 'Verbose output').action(function (dxfFile, svgFile, options) { + var parsed = (0, _.parseString)(_fs["default"].readFileSync(dxfFile, 'utf-8')); + + if (options.verbose) { + var groups = (0, _.groupEntitiesByLayer)((0, _.denormalise)(parsed)); + console.log('[layer : number of entities]'); + Object.keys(groups).forEach(function (layer) { + console.log("".concat(layer, " : ").concat(groups[layer].length)); + }); + } + + _fs["default"].writeFileSync(svgFile || "".concat(dxfFile.split('.').slice(0, -1).join('.'), ".svg"), (0, _.toSVG)(parsed), 'utf-8'); +}).parse(process.argv); + +if (!process.argv.slice(2).length) { + _commander["default"].help(); +} \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/config.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/config.js new file mode 100644 index 0000000..1a7e6e9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/config.js @@ -0,0 +1,10 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; +var _default = { + verbose: false +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/constants.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/constants.js new file mode 100644 index 0000000..2641659 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/constants.js @@ -0,0 +1,14 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ZERO_TRANSFORM = void 0; +var ZERO_TRANSFORM = { + x: 0, + y: 0, + xScale: 1, + yScale: 1, + rotation: 0 +}; +exports.ZERO_TRANSFORM = ZERO_TRANSFORM; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/denormalise.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/denormalise.js new file mode 100644 index 0000000..43cbf07 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/denormalise.js @@ -0,0 +1,160 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _lodash = require("lodash"); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +var _default = function _default(parseResult) { + var blocksByName = parseResult.blocks.reduce(function (acc, b) { + acc[b.name] = b; + return acc; + }, {}); + + var gatherEntities = function gatherEntities(entities, transforms) { + var current = []; + entities.forEach(function (e) { + if (e.type === 'INSERT') { + var _ret = function () { + var _insert$rowCount, _insert$columnCount, _insert$rowSpacing, _insert$columnSpacing, _insert$rotation; + + var insert = e; + var block = blocksByName[insert.block]; + + if (!block) { + _logger["default"].error('no block found for insert. block:', insert.block); + + return { + v: void 0 + }; + } + + var rowCount = (_insert$rowCount = insert.rowCount) !== null && _insert$rowCount !== void 0 ? _insert$rowCount : 1; + var columnCount = (_insert$columnCount = insert.columnCount) !== null && _insert$columnCount !== void 0 ? _insert$columnCount : 1; + var rowSpacing = (_insert$rowSpacing = insert.rowSpacing) !== null && _insert$rowSpacing !== void 0 ? _insert$rowSpacing : 0; + var columnSpacing = (_insert$columnSpacing = insert.columnSpacing) !== null && _insert$columnSpacing !== void 0 ? _insert$columnSpacing : 0; + var rotation = (_insert$rotation = insert.rotation) !== null && _insert$rotation !== void 0 ? _insert$rotation : 0; // It appears that the rectangular array is affected by rotation, but NOT by scale. + + var rowVec, colVec; + + if (rowCount > 1 || columnCount > 1) { + var cos = Math.cos(rotation * Math.PI / 180); + var sin = Math.sin(rotation * Math.PI / 180); + rowVec = { + x: -sin * rowSpacing, + y: cos * rowSpacing + }; + colVec = { + x: cos * columnSpacing, + y: sin * columnSpacing + }; + } else { + rowVec = { + x: 0, + y: 0 + }; + colVec = { + x: 0, + y: 0 + }; + } // For rectangular arrays, add the block entities for each location in the array + + + for (var r = 0; r < rowCount; r++) { + for (var c = 0; c < columnCount; c++) { + // Adjust insert transform by row and column for rectangular arrays + var t = { + x: insert.x + rowVec.x * r + colVec.x * c, + y: insert.y + rowVec.y * r + colVec.y * c, + scaleX: insert.scaleX, + scaleY: insert.scaleY, + scaleZ: insert.scaleZ, + extrusionX: insert.extrusionX, + extrusionY: insert.extrusionY, + extrusionZ: insert.extrusionZ, + rotation: insert.rotation + }; // Add the insert transform and recursively add entities + + var transforms2 = transforms.slice(0); + transforms2.push(t); // Use the insert layer + + var blockEntities = block.entities.map(function (be) { + var be2 = (0, _lodash.cloneDeep)(be); + be2.layer = insert.layer; // https://github.com/bjnortier/dxf/issues/52 + // See Issue 52. If we don't modify the + // entity coordinates here it creates an issue with the + // transformation matrices (which are only applied AFTER + // block insertion modifications has been applied). + + switch (be2.type) { + case 'LINE': + { + be2.start.x -= block.x; + be2.start.y -= block.y; + be2.end.x -= block.x; + be2.end.y -= block.y; + break; + } + + case 'LWPOLYLINE': + case 'POLYLINE': + { + be2.vertices.forEach(function (v) { + v.x -= block.x; + v.y -= block.y; + }); + break; + } + + case 'CIRCLE': + case 'ELLIPSE': + case 'ARC': + { + be2.x -= block.x; + be2.y -= block.y; + break; + } + + case 'SPLINE': + { + be2.controlPoints.forEach(function (cp) { + cp.x -= block.x; + cp.y -= block.y; + }); + break; + } + } + + return be2; + }); + current = current.concat(gatherEntities(blockEntities, transforms2)); + } + } + }(); + + if (_typeof(_ret) === "object") return _ret.v; + } else { + // Top-level entity. Clone and add the transforms + // The transforms are reversed so they occur in + // order of application - i.e. the transform of the + // top-level insert is applied last + var e2 = (0, _lodash.cloneDeep)(e); + e2.transforms = transforms.slice().reverse(); + current.push(e2); + } + }); + return current; + }; + + return gatherEntities(parseResult.entities, []); +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/entityToPolyline.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/entityToPolyline.js new file mode 100644 index 0000000..564b544 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/entityToPolyline.js @@ -0,0 +1,205 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.interpolateBSpline = void 0; + +var _bSpline = _interopRequireDefault(require("./util/bSpline")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +var _createArcForLWPolyline = _interopRequireDefault(require("./util/createArcForLWPolyline")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +/** + * Rotate a set of points. + * + * @param points the points + * @param angle the rotation angle + */ +var rotate = function rotate(points, angle) { + return points.map(function (p) { + return [p[0] * Math.cos(angle) - p[1] * Math.sin(angle), p[1] * Math.cos(angle) + p[0] * Math.sin(angle)]; + }); +}; +/** + * Interpolate an ellipse + * @param cx center X + * @param cy center Y + * @param rx radius X + * @param ry radius Y + * @param start start angle in radians + * @param start end angle in radians + */ + + +var interpolateEllipse = function interpolateEllipse(cx, cy, rx, ry, start, end, rotationAngle) { + if (end < start) { + end += Math.PI * 2; + } // ----- Relative points ----- + // Start point + + + var points = []; + var dTheta = Math.PI * 2 / 72; + var EPS = 1e-6; + + for (var theta = start; theta < end - EPS; theta += dTheta) { + points.push([Math.cos(theta) * rx, Math.sin(theta) * ry]); + } + + points.push([Math.cos(end) * rx, Math.sin(end) * ry]); // ----- Rotate ----- + + if (rotationAngle) { + points = rotate(points, rotationAngle); + } // ----- Offset center ----- + + + points = points.map(function (p) { + return [cx + p[0], cy + p[1]]; + }); + return points; +}; +/** + * Interpolate a b-spline. The algorithm examins the knot vector + * to create segments for interpolation. The parameterisation value + * is re-normalised back to [0,1] as that is what the lib expects ( + * and t i de-normalised in the b-spline library) + * + * @param controlPoints the control points + * @param degree the b-spline degree + * @param knots the knot vector + * @returns the polyline + */ + + +var interpolateBSpline = function interpolateBSpline(controlPoints, degree, knots, interpolationsPerSplineSegment) { + var polyline = []; + var controlPointsForLib = controlPoints.map(function (p) { + return [p.x, p.y]; + }); + var segmentTs = [knots[degree]]; + var domain = [knots[degree], knots[knots.length - 1 - degree]]; + + for (var k = degree + 1; k < knots.length - degree; ++k) { + if (segmentTs[segmentTs.length - 1] !== knots[k]) { + segmentTs.push(knots[k]); + } + } + + interpolationsPerSplineSegment = interpolationsPerSplineSegment || 25; + + for (var i = 1; i < segmentTs.length; ++i) { + var uMin = segmentTs[i - 1]; + var uMax = segmentTs[i]; + + for (var _k = 0; _k <= interpolationsPerSplineSegment; ++_k) { + var u = _k / interpolationsPerSplineSegment * (uMax - uMin) + uMin; // Clamp t to 0, 1 to handle numerical precision issues + + var t = (u - domain[0]) / (domain[1] - domain[0]); + t = Math.max(t, 0); + t = Math.min(t, 1); + var p = (0, _bSpline["default"])(t, degree, controlPointsForLib, knots); + polyline.push(p); + } + } + + return polyline; +}; +/** + * Convert a parsed DXF entity to a polyline. These can be used to render the + * the DXF in SVG, Canvas, WebGL etc., without depending on native support + * of primitive objects (ellispe, spline etc.) + */ + + +exports.interpolateBSpline = interpolateBSpline; + +var _default = function _default(entity, options) { + options = options || {}; + var polyline; + + if (entity.type === 'LINE') { + polyline = [[entity.start.x, entity.start.y], [entity.end.x, entity.end.y]]; + } + + if (entity.type === 'LWPOLYLINE' || entity.type === 'POLYLINE') { + polyline = []; + + if (entity.polygonMesh || entity.polyfaceMesh) {// Do not attempt to render meshes + } else if (entity.vertices.length) { + if (entity.closed) { + entity.vertices = entity.vertices.concat(entity.vertices[0]); + } + + for (var i = 0, il = entity.vertices.length; i < il - 1; ++i) { + var from = [entity.vertices[i].x, entity.vertices[i].y]; + var to = [entity.vertices[i + 1].x, entity.vertices[i + 1].y]; + polyline.push(from); + + if (entity.vertices[i].bulge) { + polyline = polyline.concat((0, _createArcForLWPolyline["default"])(from, to, entity.vertices[i].bulge)); + } // The last iteration of the for loop + + + if (i === il - 2) { + polyline.push(to); + } + } + } else { + _logger["default"].warn('Polyline entity with no vertices'); + } + } + + if (entity.type === 'CIRCLE') { + polyline = interpolateEllipse(entity.x, entity.y, entity.r, entity.r, 0, Math.PI * 2); + + if (entity.extrusionZ === -1) { + polyline = polyline.map(function (p) { + return [-p[0], p[1]]; + }); + } + } + + if (entity.type === 'ELLIPSE') { + var rx = Math.sqrt(entity.majorX * entity.majorX + entity.majorY * entity.majorY); + var ry = entity.axisRatio * rx; + var majorAxisRotation = -Math.atan2(-entity.majorY, entity.majorX); + polyline = interpolateEllipse(entity.x, entity.y, rx, ry, entity.startAngle, entity.endAngle, majorAxisRotation); + + if (entity.extrusionZ === -1) { + polyline = polyline.map(function (p) { + return [-p[0], p[1]]; + }); + } + } + + if (entity.type === 'ARC') { + // Why on earth DXF has degree start & end angles for arc, + // and radian start & end angles for ellipses is a mystery + polyline = interpolateEllipse(entity.x, entity.y, entity.r, entity.r, entity.startAngle, entity.endAngle, undefined, false); // I kid you not, ARCs and ELLIPSEs handle this differently, + // as evidenced by how AutoCAD actually renders these entities + + if (entity.extrusionZ === -1) { + polyline = polyline.map(function (p) { + return [-p[0], p[1]]; + }); + } + } + + if (entity.type === 'SPLINE') { + polyline = interpolateBSpline(entity.controlPoints, entity.degree, entity.knots, options.interpolationsPerSplineSegment); + } + + if (!polyline) { + _logger["default"].warn('unsupported entity for converting to polyline:', entity.type); + + return []; + } + + return polyline; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/getRGBForEntity.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/getRGBForEntity.js new file mode 100644 index 0000000..21c8e31 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/getRGBForEntity.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _colors = _interopRequireDefault(require("./util/colors")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var _default = function _default(layers, entity) { + var layerTable = layers[entity.layer]; + + if (layerTable) { + var colorNumber = 'colorNumber' in entity ? entity.colorNumber : layerTable.colorNumber; + var rgb = _colors["default"][colorNumber]; + + if (rgb) { + return rgb; + } else { + _logger["default"].warn('Color index', colorNumber, 'invalid, defaulting to black'); + + return [0, 0, 0]; + } + } else { + _logger["default"].warn('no layer table for layer:' + entity.layer); + + return [0, 0, 0]; + } +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/groupEntitiesByLayer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/groupEntitiesByLayer.js new file mode 100644 index 0000000..00f5d65 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/groupEntitiesByLayer.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _default = function _default(entities) { + return entities.reduce(function (acc, entity) { + var layer = entity.layer; + + if (!acc[layer]) { + acc[layer] = []; + } + + acc[layer].push(entity); + return acc; + }, {}); +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/blocks.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/blocks.js new file mode 100644 index 0000000..045bac2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/blocks.js @@ -0,0 +1,70 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _entities = _interopRequireDefault(require("./entities")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var _default = function _default(tuples) { + var state; + var blocks = []; + var block; + var entitiesTuples = []; + tuples.forEach(function (tuple) { + var type = tuple[0]; + var value = tuple[1]; + + if (value === 'BLOCK') { + state = 'block'; + block = {}; + entitiesTuples = []; + blocks.push(block); + } else if (value === 'ENDBLK') { + if (state === 'entities') { + block.entities = (0, _entities["default"])(entitiesTuples); + } else { + block.entities = []; + } + + entitiesTuples = undefined; + state = undefined; + } else if (state === 'block' && type !== 0) { + switch (type) { + case 1: + block.xref = value; + break; + + case 2: + block.name = value; + break; + + case 10: + block.x = value; + break; + + case 20: + block.y = value; + break; + + case 30: + block.z = value; + break; + + default: + break; + } + } else if (state === 'block' && type === 0) { + state = 'entities'; + entitiesTuples.push(tuple); + } else if (state === 'entities') { + entitiesTuples.push(tuple); + } + }); + return blocks; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entities.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entities.js new file mode 100644 index 0000000..5d3b4ee --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entities.js @@ -0,0 +1,91 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _logger = _interopRequireDefault(require("../util/logger")); + +var _point = _interopRequireDefault(require("./entity/point")); + +var _line = _interopRequireDefault(require("./entity/line")); + +var _lwpolyline = _interopRequireDefault(require("./entity/lwpolyline")); + +var _polyline = _interopRequireDefault(require("./entity/polyline")); + +var _vertex = _interopRequireDefault(require("./entity/vertex")); + +var _circle = _interopRequireDefault(require("./entity/circle")); + +var _arc = _interopRequireDefault(require("./entity/arc")); + +var _ellipse = _interopRequireDefault(require("./entity/ellipse")); + +var _spline = _interopRequireDefault(require("./entity/spline")); + +var _solid = _interopRequireDefault(require("./entity/solid")); + +var _mtext = _interopRequireDefault(require("./entity/mtext")); + +var _insert = _interopRequireDefault(require("./entity/insert")); + +var _threeDFace = _interopRequireDefault(require("./entity/threeDFace")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var handlers = [_point["default"], _line["default"], _lwpolyline["default"], _polyline["default"], _vertex["default"], _circle["default"], _arc["default"], _ellipse["default"], _spline["default"], _solid["default"], _mtext["default"], _insert["default"], _threeDFace["default"]].reduce(function (acc, mod) { + acc[mod.TYPE] = mod; + return acc; +}, {}); + +var _default = function _default(tuples) { + var entities = []; + var entityGroups = []; + var currentEntityTuples; // First group them together for easy processing + + tuples.forEach(function (tuple) { + var type = tuple[0]; + + if (type === 0) { + currentEntityTuples = []; + entityGroups.push(currentEntityTuples); + } + + currentEntityTuples.push(tuple); + }); + var currentPolyline; + entityGroups.forEach(function (tuples) { + var entityType = tuples[0][1]; + var contentTuples = tuples.slice(1); + + if (handlers[entityType] !== undefined) { + var e = handlers[entityType].process(contentTuples); // "POLYLINE" cannot be parsed in isolation, it is followed by + // N "VERTEX" entities and ended with a "SEQEND" entity. + // Essentially we convert POLYLINE to LWPOLYLINE - the extra + // vertex flags are not supported + + if (entityType === 'POLYLINE') { + currentPolyline = e; + entities.push(e); + } else if (entityType === 'VERTEX') { + if (currentPolyline) { + currentPolyline.vertices.push(e); + } else { + _logger["default"].error('ignoring invalid VERTEX entity'); + } + } else if (entityType === 'SEQEND') { + currentPolyline = undefined; + } else { + // All other entities + entities.push(e); + } + } else { + _logger["default"].warn('unsupported type in ENTITIES section:', entityType); + } + }); + return entities; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/arc.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/arc.js new file mode 100644 index 0000000..eb574a5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/arc.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'ARC'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 39: + entity.thickness = value; + break; + + case 40: + entity.r = value; + break; + + case 50: + // *Someone* decided that ELLIPSE angles are in radians but + // ARC angles are in degrees + entity.startAngle = value / 180 * Math.PI; + break; + + case 51: + entity.endAngle = value / 180 * Math.PI; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/circle.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/circle.js new file mode 100644 index 0000000..0fb559a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/circle.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'CIRCLE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 40: + entity.r = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/common.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/common.js new file mode 100644 index 0000000..d393b58 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/common.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _default = function _default(type, value) { + switch (type) { + case 6: + // Linetype name (present if not BYLAYER). + // The special name BYBLOCK indicates a + // floating linetype. (optional) + return { + lineTypeName: value + }; + + case 8: + return { + layer: value + }; + + case 48: + // Linetype scale (optional) + return { + lineTypeScale: value + }; + + case 60: + // Object visibility (optional): 0 = visible, 1 = invisible. + return { + visible: value === 0 + }; + + case 62: + // Color number (present if not BYLAYER). + // Zero indicates the BYBLOCK (floating) color. + // 256 indicates BYLAYER. + // A negative value indicates that the layer is turned off. (optional) + return { + colorNumber: value + }; + + case 210: + return { + extrusionX: value + }; + + case 220: + return { + extrusionY: value + }; + + case 230: + return { + extrusionZ: value + }; + + default: + return {}; + } +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/ellipse.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/ellipse.js new file mode 100644 index 0000000..45a2ec5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/ellipse.js @@ -0,0 +1,73 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'ELLIPSE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 11: + entity.majorX = value; + break; + + case 20: + entity.y = value; + break; + + case 21: + entity.majorY = value; + break; + + case 30: + entity.z = value; + break; + + case 31: + entity.majorZ = value; + break; + + case 40: + entity.axisRatio = value; + break; + + case 41: + entity.startAngle = value; + break; + + case 42: + entity.endAngle = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/insert.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/insert.js new file mode 100644 index 0000000..acf0220 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/insert.js @@ -0,0 +1,97 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'INSERT'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 2: + entity.block = value; + break; + + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 41: + entity.scaleX = value; + break; + + case 42: + entity.scaleY = value; + break; + + case 43: + entity.scaleZ = value; + break; + + case 44: + entity.columnSpacing = value; + break; + + case 45: + entity.rowSpacing = value; + break; + + case 50: + entity.rotation = value; + break; + + case 70: + entity.columnCount = value; + break; + + case 71: + entity.rowCount = value; + break; + + case 210: + entity.extrusionX = value; + break; + + case 220: + entity.extrusionY = value; + break; + + case 230: + entity.extrusionZ = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/line.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/line.js new file mode 100644 index 0000000..d825d21 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/line.js @@ -0,0 +1,67 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'LINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.start.x = value; + break; + + case 20: + entity.start.y = value; + break; + + case 30: + entity.start.z = value; + break; + + case 39: + entity.thickness = value; + break; + + case 11: + entity.end.x = value; + break; + + case 21: + entity.end.y = value; + break; + + case 31: + entity.end.z = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + start: {}, + end: {} + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/lwpolyline.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/lwpolyline.js new file mode 100644 index 0000000..751b5cb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/lwpolyline.js @@ -0,0 +1,64 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'LWPOLYLINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + var vertex; + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 70: + entity.closed = (value & 1) === 1; + break; + + case 10: + vertex = { + x: value, + y: 0 + }; + entity.vertices.push(vertex); + break; + + case 20: + vertex.y = value; + break; + + case 39: + entity.thickness = value; + break; + + case 42: + // Bulge (multiple entries; one entry for each vertex) (optional; default = 0). + vertex.bulge = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + vertices: [] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/mtext.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/mtext.js new file mode 100644 index 0000000..0a74003 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/mtext.js @@ -0,0 +1,92 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'MTEXT'; +exports.TYPE = TYPE; +var simpleCodes = { + 10: 'x', + 20: 'y', + 30: 'z', + 40: 'nominalTextHeight', + 41: 'refRectangleWidth', + 71: 'attachmentPoint', + 72: 'drawingDirection', + 7: 'styleName', + 11: 'xAxisX', + 21: 'xAxisY', + 31: 'xAxisZ', + 42: 'horizontalWidth', + 43: 'verticalHeight', + 73: 'lineSpacingStyle', + 44: 'lineSpacingFactor', + 90: 'backgroundFill', + 420: 'bgColorRGB0', + 421: 'bgColorRGB1', + 422: 'bgColorRGB2', + 423: 'bgColorRGB3', + 424: 'bgColorRGB4', + 425: 'bgColorRGB5', + 426: 'bgColorRGB6', + 427: 'bgColorRGB7', + 428: 'bgColorRGB8', + 429: 'bgColorRGB9', + 430: 'bgColorName0', + 431: 'bgColorName1', + 432: 'bgColorName2', + 433: 'bgColorName3', + 434: 'bgColorName4', + 435: 'bgColorName5', + 436: 'bgColorName6', + 437: 'bgColorName7', + 438: 'bgColorName8', + 439: 'bgColorName9', + 45: 'fillBoxStyle', + 63: 'bgFillColor', + 441: 'bgFillTransparency', + 75: 'columnType', + 76: 'columnCount', + 78: 'columnFlowReversed', + 79: 'columnAutoheight', + 48: 'columnWidth', + 49: 'columnGutter', + 50: 'columnHeights' +}; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + if (simpleCodes[type] !== undefined) { + entity[simpleCodes[type]] = value; + } else if (type === 1 || type === 3) { + entity.string += value; + } else if (type === 50) { + // Rotation angle in radians + entity.xAxisX = Math.cos(value); + entity.xAxisY = Math.sin(value); + } else { + Object.assign(entity, (0, _common["default"])(type, value)); + } + + return entity; + }, { + type: TYPE, + string: '' + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/point.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/point.js new file mode 100644 index 0000000..6697775 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/point.js @@ -0,0 +1,53 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'POINT'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 39: + entity.thickness = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/polyline.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/polyline.js new file mode 100644 index 0000000..cdb79c7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/polyline.js @@ -0,0 +1,48 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'POLYLINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 70: + entity.closed = (value & 1) === 1; + entity.polygonMesh = (value & 16) === 16; + entity.polyfaceMesh = (value & 64) === 64; + break; + + case 39: + entity.thickness = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + vertices: [] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/solid.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/solid.js new file mode 100644 index 0000000..273af25 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/solid.js @@ -0,0 +1,90 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'SOLID'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.corners[0].x = value; + break; + + case 20: + entity.corners[0].y = value; + break; + + case 30: + entity.corners[0].z = value; + break; + + case 11: + entity.corners[1].x = value; + break; + + case 21: + entity.corners[1].y = value; + break; + + case 31: + entity.corners[1].z = value; + break; + + case 12: + entity.corners[2].x = value; + break; + + case 22: + entity.corners[2].y = value; + break; + + case 32: + entity.corners[2].z = value; + break; + + case 13: + entity.corners[3].x = value; + break; + + case 23: + entity.corners[3].y = value; + break; + + case 33: + entity.corners[3].z = value; + break; + + case 39: + entity.thickness = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + corners: [{}, {}, {}, {}] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/spline.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/spline.js new file mode 100644 index 0000000..c3e7d2d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/spline.js @@ -0,0 +1,99 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'SPLINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + var controlPoint; + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + controlPoint = { + x: value, + y: 0 + }; + entity.controlPoints.push(controlPoint); + break; + + case 20: + controlPoint.y = value; + break; + + case 30: + controlPoint.z = value; + break; + + case 40: + entity.knots.push(value); + break; + + case 42: + entity.knotTolerance = value; + break; + + case 43: + entity.controlPointTolerance = value; + break; + + case 44: + entity.fitTolerance = value; + break; + + case 70: + // Spline flag (bit coded): + // 1 = Closed spline + // 2 = Periodic spline + // 4 = Rational spline + // 8 = Planar + // 16 = Linear (planar bit is also set) + entity.flag = value; + entity.closed = (value & 1) === 1; + break; + + case 71: + entity.degree = value; + break; + + case 72: + entity.numberOfKnots = value; + break; + + case 73: + entity.numberOfControlPoints = value; + break; + + case 74: + entity.numberOfFitPoints = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + controlPoints: [], + knots: [] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/threeDFace.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/threeDFace.js new file mode 100644 index 0000000..2ad7291 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/threeDFace.js @@ -0,0 +1,86 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = '3DFACE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.vertices[0].x = value; + break; + + case 20: + entity.vertices[0].y = value; + break; + + case 30: + entity.vertices[0].z = value; + break; + + case 11: + entity.vertices[1].x = value; + break; + + case 21: + entity.vertices[1].y = value; + break; + + case 31: + entity.vertices[1].z = value; + break; + + case 12: + entity.vertices[2].x = value; + break; + + case 22: + entity.vertices[2].y = value; + break; + + case 32: + entity.vertices[2].z = value; + break; + + case 13: + entity.vertices[3].x = value; + break; + + case 23: + entity.vertices[3].y = value; + break; + + case 33: + entity.vertices[3].z = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + vertices: [{}, {}, {}, {}] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/vertex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/vertex.js new file mode 100644 index 0000000..ff822d3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/entity/vertex.js @@ -0,0 +1,45 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; +var TYPE = 'VERTEX'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 42: + entity.bulge = value; + break; + + default: + break; + } + + return entity; + }, {}); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/header.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/header.js new file mode 100644 index 0000000..b67b415 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/header.js @@ -0,0 +1,82 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _default = function _default(tuples) { + var state; + var header = {}; + tuples.forEach(function (tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (value) { + case '$MEASUREMENT': + { + state = 'measurement'; + break; + } + + case '$INSUNITS': + { + state = 'insUnits'; + break; + } + + case '$EXTMIN': + header.extMin = {}; + state = 'extMin'; + break; + + case '$EXTMAX': + header.extMax = {}; + state = 'extMax'; + break; + + default: + switch (state) { + case 'extMin': + case 'extMax': + { + switch (type) { + case 10: + header[state].x = value; + break; + + case 20: + header[state].y = value; + break; + + case 30: + header[state].z = value; + state = undefined; + break; + } + + break; + } + + case 'measurement': + case 'insUnits': + { + switch (type) { + case 70: + { + header[state] = value; + state = undefined; + break; + } + } + + break; + } + } + + } + }); + return header; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/tables.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/tables.js new file mode 100644 index 0000000..6500f84 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/handlers/tables.js @@ -0,0 +1,162 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _logger = _interopRequireDefault(require("../util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var layerHandler = function layerHandler(tuples) { + return tuples.reduce(function (layer, tuple) { + var type = tuple[0]; + var value = tuple[1]; // https://www.autodesk.com/techpubs/autocad/acad2000/dxf/layer_dxf_04.htm + + switch (type) { + case 2: + layer.name = value; + break; + + case 6: + layer.lineTypeName = value; + break; + + case 62: + layer.colorNumber = value; + break; + + case 70: + layer.flags = value; + break; + + case 290: + layer.plot = parseInt(value) !== 0; + break; + + case 370: + layer.lineWeightEnum = value; + break; + + default: + } + + return layer; + }, { + type: 'LAYER' + }); +}; + +var styleHandler = function styleHandler(tuples) { + return tuples.reduce(function (style, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 2: + style.name = value; + break; + + case 6: + style.lineTypeName = value; + break; + + case 40: + style.fixedTextHeight = value; + break; + + case 41: + style.widthFactor = value; + break; + + case 50: + style.obliqueAngle = value; + break; + + case 71: + style.flags = value; + break; + + case 42: + style.lastHeightUsed = value; + break; + + case 3: + style.primaryFontFileName = value; + break; + + case 4: + style.bigFontFileName = value; + break; + + default: + } + + return style; + }, { + type: 'STYLE' + }); +}; + +var tableHandler = function tableHandler(tuples, tableType, handler) { + var tableRowsTuples = []; + var tableRowTuples; + tuples.forEach(function (tuple) { + var type = tuple[0]; + var value = tuple[1]; + + if ((type === 0 || type === 2) && value === tableType) { + tableRowTuples = []; + tableRowsTuples.push(tableRowTuples); + } else { + tableRowTuples.push(tuple); + } + }); + return tableRowsTuples.reduce(function (acc, rowTuples) { + var tableRow = handler(rowTuples); + + if (tableRow.name) { + acc[tableRow.name] = tableRow; + } else { + _logger["default"].warn('table row without name:', tableRow); + } + + return acc; + }, {}); +}; + +var _default = function _default(tuples) { + var tableGroups = []; + var tableTuples; + tuples.forEach(function (tuple) { + // const type = tuple[0]; + var value = tuple[1]; + + if (value === 'TABLE') { + tableTuples = []; + tableGroups.push(tableTuples); + } else if (value === 'ENDTAB') { + tableGroups.push(tableTuples); + } else { + tableTuples.push(tuple); + } + }); + var stylesTuples = []; + var layersTuples = []; + tableGroups.forEach(function (group) { + if (group[0][1] === 'STYLE') { + stylesTuples = group; + } else if (group[0][1] === 'LTYPE') { + _logger["default"].warn('LTYPE in tables not supported'); + } else if (group[0][1] === 'LAYER') { + layersTuples = group; + } + }); + return { + layers: tableHandler(layersTuples, 'LAYER', layerHandler), + styles: tableHandler(stylesTuples, 'STYLE', styleHandler) + }; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/index.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/index.js new file mode 100644 index 0000000..78e88fb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/index.js @@ -0,0 +1,71 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "config", { + enumerable: true, + get: function get() { + return _config["default"]; + } +}); +Object.defineProperty(exports, "parseString", { + enumerable: true, + get: function get() { + return _parseString["default"]; + } +}); +Object.defineProperty(exports, "denormalise", { + enumerable: true, + get: function get() { + return _denormalise["default"]; + } +}); +Object.defineProperty(exports, "groupEntitiesByLayer", { + enumerable: true, + get: function get() { + return _groupEntitiesByLayer["default"]; + } +}); +Object.defineProperty(exports, "toPolylines", { + enumerable: true, + get: function get() { + return _toPolylines["default"]; + } +}); +Object.defineProperty(exports, "toSVG", { + enumerable: true, + get: function get() { + return _toSVG["default"]; + } +}); +Object.defineProperty(exports, "colors", { + enumerable: true, + get: function get() { + return _colors["default"]; + } +}); +Object.defineProperty(exports, "Helper", { + enumerable: true, + get: function get() { + return _Helper["default"]; + } +}); + +var _config = _interopRequireDefault(require("./config")); + +var _parseString = _interopRequireDefault(require("./parseString")); + +var _denormalise = _interopRequireDefault(require("./denormalise")); + +var _groupEntitiesByLayer = _interopRequireDefault(require("./groupEntitiesByLayer")); + +var _toPolylines = _interopRequireDefault(require("./toPolylines")); + +var _toSVG = _interopRequireDefault(require("./toSVG")); + +var _colors = _interopRequireDefault(require("./util/colors")); + +var _Helper = _interopRequireDefault(require("./Helper")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/parseString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/parseString.js new file mode 100644 index 0000000..05e0d28 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/parseString.js @@ -0,0 +1,133 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _header = _interopRequireDefault(require("./handlers/header")); + +var _tables = _interopRequireDefault(require("./handlers/tables")); + +var _blocks = _interopRequireDefault(require("./handlers/blocks")); + +var _entities = _interopRequireDefault(require("./handlers/entities")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +// Parse the value into the native representation +var parseValue = function parseValue(type, value) { + if (type >= 10 && type < 60) { + return parseFloat(value, 10); + } else if (type >= 210 && type < 240) { + return parseFloat(value, 10); + } else if (type >= 60 && type < 100) { + return parseInt(value, 10); + } else { + return value; + } +}; // Content lines are alternate lines of type and value + + +var convertToTypesAndValues = function convertToTypesAndValues(contentLines) { + var state = 'type'; + var type; + var typesAndValues = []; + + var _iterator = _createForOfIteratorHelper(contentLines), + _step; + + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var line = _step.value; + + if (state === 'type') { + type = parseInt(line, 10); + state = 'value'; + } else { + typesAndValues.push([type, parseValue(type, line)]); + state = 'type'; + } + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + + return typesAndValues; +}; + +var separateSections = function separateSections(tuples) { + var sectionTuples; + return tuples.reduce(function (sections, tuple) { + if (tuple[0] === 0 && tuple[1] === 'SECTION') { + sectionTuples = []; + } else if (tuple[0] === 0 && tuple[1] === 'ENDSEC') { + sections.push(sectionTuples); + sectionTuples = undefined; + } else if (sectionTuples !== undefined) { + sectionTuples.push(tuple); + } + + return sections; + }, []); +}; // Each section start with the type tuple, then proceeds +// with the contents of the section + + +var reduceSection = function reduceSection(acc, section) { + var sectionType = section[0][1]; + var contentTuples = section.slice(1); + + switch (sectionType) { + case 'HEADER': + acc.header = (0, _header["default"])(contentTuples); + break; + + case 'TABLES': + acc.tables = (0, _tables["default"])(contentTuples); + break; + + case 'BLOCKS': + acc.blocks = (0, _blocks["default"])(contentTuples); + break; + + case 'ENTITIES': + acc.entities = (0, _entities["default"])(contentTuples); + break; + + default: + _logger["default"].warn("Unsupported section: ".concat(sectionType)); + + } + + return acc; +}; + +var _default = function _default(string) { + var lines = string.split(/\r\n|\r|\n/g); + var tuples = convertToTypesAndValues(lines); + var sections = separateSections(tuples); + var result = sections.reduce(reduceSection, { + // Start with empty defaults in the event of empty sections + header: {}, + blocks: [], + entities: [], + tables: { + layers: {}, + styles: {} + } + }); + return result; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/toPolylines.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/toPolylines.js new file mode 100644 index 0000000..ef01649 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/toPolylines.js @@ -0,0 +1,63 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _vecks = require("vecks"); + +var _colors = _interopRequireDefault(require("./util/colors")); + +var _denormalise = _interopRequireDefault(require("./denormalise")); + +var _entityToPolyline = _interopRequireDefault(require("./entityToPolyline")); + +var _applyTransforms = _interopRequireDefault(require("./applyTransforms")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var _default = function _default(parsed) { + var entities = (0, _denormalise["default"])(parsed); + var polylines = entities.map(function (entity) { + var layerTable = parsed.tables.layers[entity.layer]; + var rgb; + + if (layerTable) { + var colorNumber = 'colorNumber' in entity ? entity.colorNumber : layerTable.colorNumber; + rgb = _colors["default"][colorNumber]; + + if (rgb === undefined) { + _logger["default"].warn('Color index', colorNumber, 'invalid, defaulting to black'); + + rgb = [0, 0, 0]; + } + } else { + _logger["default"].warn('no layer table for layer:' + entity.layer); + + rgb = [0, 0, 0]; + } + + return { + rgb: rgb, + vertices: (0, _applyTransforms["default"])((0, _entityToPolyline["default"])(entity), entity.transforms) + }; + }); + var bbox = new _vecks.Box2(); + polylines.forEach(function (polyline) { + polyline.vertices.forEach(function (vertex) { + bbox.expandByPoint({ + x: vertex[0], + y: vertex[1] + }); + }); + }); + return { + bbox: bbox, + polylines: polylines + }; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/toSVG.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/toSVG.js new file mode 100644 index 0000000..7fc1f08 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/toSVG.js @@ -0,0 +1,401 @@ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.piecewiseToPaths = void 0; + +var _prettyData = require("pretty-data"); + +var _vecks = require("vecks"); + +var _entityToPolyline = _interopRequireDefault(require("./entityToPolyline")); + +var _denormalise = _interopRequireDefault(require("./denormalise")); + +var _getRGBForEntity = _interopRequireDefault(require("./getRGBForEntity")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +var _rotate = _interopRequireDefault(require("./util/rotate")); + +var _rgbToColorAttribute = _interopRequireDefault(require("./util/rgbToColorAttribute")); + +var _toPiecewiseBezier = _interopRequireWildcard(require("./util/toPiecewiseBezier")); + +var _transformBoundingBoxAndElement = _interopRequireDefault(require("./util/transformBoundingBoxAndElement")); + +function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } + +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } + +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } + +var addFlipXIfApplicable = function addFlipXIfApplicable(entity, _ref) { + var bbox = _ref.bbox, + element = _ref.element; + + if (entity.extrusionZ === -1) { + return { + bbox: new _vecks.Box2().expandByPoint({ + x: -bbox.min.x, + y: bbox.min.y + }).expandByPoint({ + x: -bbox.max.x, + y: bbox.max.y + }), + element: "\n ".concat(element, "\n ") + }; + } else { + return { + bbox: bbox, + element: element + }; + } +}; +/** + * Create a element. Interpolates curved entities. + */ + + +var polyline = function polyline(entity) { + var vertices = (0, _entityToPolyline["default"])(entity); + var bbox = vertices.reduce(function (acc, _ref2) { + var _ref3 = _slicedToArray(_ref2, 2), + x = _ref3[0], + y = _ref3[1]; + + return acc.expandByPoint({ + x: x, + y: y + }); + }, new _vecks.Box2()); + var d = vertices.reduce(function (acc, point, i) { + acc += i === 0 ? 'M' : 'L'; + acc += point[0] + ',' + point[1]; + return acc; + }, ''); // Empirically it appears that flipping horzontally does not apply to polyline + + return (0, _transformBoundingBoxAndElement["default"])(bbox, ""), entity.transforms); +}; +/** + * Create a element for the CIRCLE entity. + */ + + +var circle = function circle(entity) { + var bbox0 = new _vecks.Box2().expandByPoint({ + x: entity.x + entity.r, + y: entity.y + entity.r + }).expandByPoint({ + x: entity.x - entity.r, + y: entity.y - entity.r + }); + var element0 = ""); + + var _addFlipXIfApplicable = addFlipXIfApplicable(entity, { + bbox: bbox0, + element: element0 + }), + bbox = _addFlipXIfApplicable.bbox, + element = _addFlipXIfApplicable.element; + + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; +/** + * Create a a or element for the ARC or ELLIPSE + * DXF entity ( if start and end point are the same). + */ + + +var ellipseOrArc = function ellipseOrArc(cx, cy, majorX, majorY, axisRatio, startAngle, endAngle, flipX) { + var rx = Math.sqrt(majorX * majorX + majorY * majorY); + var ry = axisRatio * rx; + var rotationAngle = -Math.atan2(-majorY, majorX); + var bbox = bboxEllipseOrArc(cx, cy, majorX, majorY, axisRatio, startAngle, endAngle, flipX); + + if (Math.abs(startAngle - endAngle) < 1e-9 || Math.abs(startAngle - endAngle + Math.PI * 2) < 1e-9) { + // Use a native when start and end angles are the same, and + // arc paths with same start and end points don't render (at least on Safari) + var element = "\n \n "); + return { + bbox: bbox, + element: element + }; + } else { + var startOffset = (0, _rotate["default"])({ + x: Math.cos(startAngle) * rx, + y: Math.sin(startAngle) * ry + }, rotationAngle); + var startPoint = { + x: cx + startOffset.x, + y: cy + startOffset.y + }; + var endOffset = (0, _rotate["default"])({ + x: Math.cos(endAngle) * rx, + y: Math.sin(endAngle) * ry + }, rotationAngle); + var endPoint = { + x: cx + endOffset.x, + y: cy + endOffset.y + }; + var adjustedEndAngle = endAngle < startAngle ? endAngle + Math.PI * 2 : endAngle; + var largeArcFlag = adjustedEndAngle - startAngle < Math.PI ? 0 : 1; + var d = "M ".concat(startPoint.x, " ").concat(startPoint.y, " A ").concat(rx, " ").concat(ry, " ").concat(rotationAngle / Math.PI * 180, " ").concat(largeArcFlag, " 1 ").concat(endPoint.x, " ").concat(endPoint.y); + + var _element = ""); + + return { + bbox: bbox, + element: _element + }; + } +}; +/** + * Compute the bounding box of an elliptical arc, given the DXF entity parameters + */ + + +var bboxEllipseOrArc = function bboxEllipseOrArc(cx, cy, majorX, majorY, axisRatio, startAngle, endAngle, flipX) { + // The bounding box will be defined by the starting point of the ellipse, and ending point, + // and any extrema on the ellipse that are between startAngle and endAngle. + // The extrema are found by setting either the x or y component of the ellipse's + // tangent vector to zero and solving for the angle. + // Ensure start and end angles are > 0 and well-ordered + while (startAngle < 0) { + startAngle += Math.PI * 2; + } + + while (endAngle <= startAngle) { + endAngle += Math.PI * 2; + } // When rotated, the extrema of the ellipse will be found at these angles + + + var angles = []; + + if (Math.abs(majorX) < 1e-12 || Math.abs(majorY) < 1e-12) { + // Special case for majorX or majorY = 0 + for (var i = 0; i < 4; i++) { + angles.push(i / 2 * Math.PI); + } + } else { + // reference https://github.com/bjnortier/dxf/issues/47#issuecomment-545915042 + angles[0] = Math.atan(-majorY * axisRatio / majorX) - Math.PI; // Ensure angles < 0 + + angles[1] = Math.atan(majorX * axisRatio / majorY) - Math.PI; + angles[2] = angles[0] - Math.PI; + angles[3] = angles[1] - Math.PI; + } // Remove angles not falling between start and end + + + for (var _i2 = 4; _i2 >= 0; _i2--) { + while (angles[_i2] < startAngle) { + angles[_i2] += Math.PI * 2; + } + + if (angles[_i2] > endAngle) { + angles.splice(_i2, 1); + } + } // Also to consider are the starting and ending points: + + + angles.push(startAngle); + angles.push(endAngle); // Compute points lying on the unit circle at these angles + + var pts = angles.map(function (a) { + return { + x: Math.cos(a), + y: Math.sin(a) + }; + }); // Transformation matrix, formed by the major and minor axes + + var M = [[majorX, -majorY * axisRatio], [majorY, majorX * axisRatio]]; // Rotate, scale, and translate points + + var rotatedPts = pts.map(function (p) { + return { + x: p.x * M[0][0] + p.y * M[0][1] + cx, + y: p.x * M[1][0] + p.y * M[1][1] + cy + }; + }); // Compute extents of bounding box + + var bbox = rotatedPts.reduce(function (acc, p) { + acc.expandByPoint(p); + return acc; + }, new _vecks.Box2()); + return bbox; +}; +/** + * An ELLIPSE is defined by the major axis, convert to X and Y radius with + * a rotation angle + */ + + +var ellipse = function ellipse(entity) { + var _ellipseOrArc = ellipseOrArc(entity.x, entity.y, entity.majorX, entity.majorY, entity.axisRatio, entity.startAngle, entity.endAngle), + bbox0 = _ellipseOrArc.bbox, + element0 = _ellipseOrArc.element; + + var _addFlipXIfApplicable2 = addFlipXIfApplicable(entity, { + bbox: bbox0, + element: element0 + }), + bbox = _addFlipXIfApplicable2.bbox, + element = _addFlipXIfApplicable2.element; + + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; +/** + * An ARC is an ellipse with equal radii + */ + + +var arc = function arc(entity) { + var _ellipseOrArc2 = ellipseOrArc(entity.x, entity.y, entity.r, 0, 1, entity.startAngle, entity.endAngle, entity.extrusionZ === -1), + bbox0 = _ellipseOrArc2.bbox, + element0 = _ellipseOrArc2.element; + + var _addFlipXIfApplicable3 = addFlipXIfApplicable(entity, { + bbox: bbox0, + element: element0 + }), + bbox = _addFlipXIfApplicable3.bbox, + element = _addFlipXIfApplicable3.element; + + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; + +var piecewiseToPaths = function piecewiseToPaths(k, knots, controlPoints) { + var paths = []; + var controlPointIndex = 0; + var knotIndex = k; + + while (knotIndex < knots.length - k + 1) { + var m = (0, _toPiecewiseBezier.multiplicity)(knots, knotIndex); + var cp = controlPoints.slice(controlPointIndex, controlPointIndex + k); + + if (k === 4) { + paths.push("")); + } else if (k === 3) { + paths.push("")); + } + + controlPointIndex += m; + knotIndex += m; + } + + return paths; +}; + +exports.piecewiseToPaths = piecewiseToPaths; + +var bezier = function bezier(entity) { + var bbox = new _vecks.Box2(); + entity.controlPoints.forEach(function (p) { + bbox = bbox.expandByPoint(p); + }); + var k = entity.degree + 1; + var piecewise = (0, _toPiecewiseBezier["default"])(k, entity.controlPoints, entity.knots); + var paths = piecewiseToPaths(k, piecewise.knots, piecewise.controlPoints); + var element = "".concat(paths.join(''), ""); + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; +/** + * Switcth the appropriate function on entity type. CIRCLE, ARC and ELLIPSE + * produce native SVG elements, the rest produce interpolated polylines. + */ + + +var entityToBoundsAndElement = function entityToBoundsAndElement(entity) { + switch (entity.type) { + case 'CIRCLE': + return circle(entity); + + case 'ELLIPSE': + return ellipse(entity); + + case 'ARC': + return arc(entity); + + case 'SPLINE': + { + if (entity.degree === 2 || entity.degree === 3) { + try { + return bezier(entity); + } catch (err) { + return polyline(entity); + } + } else { + return polyline(entity); + } + } + + case 'LINE': + case 'LWPOLYLINE': + case 'POLYLINE': + { + return polyline(entity); + } + + default: + _logger["default"].warn('entity type not supported in SVG rendering:', entity.type); + + return null; + } +}; + +var _default = function _default(parsed) { + var entities = (0, _denormalise["default"])(parsed); + + var _entities$reduce = entities.reduce(function (acc, entity, i) { + var rgb = (0, _getRGBForEntity["default"])(parsed.tables.layers, entity); + var boundsAndElement = entityToBoundsAndElement(entity); // Ignore entities like MTEXT that don't produce SVG elements + + if (boundsAndElement) { + var _bbox = boundsAndElement.bbox, + element = boundsAndElement.element; // Ignore invalid bounding boxes + + if (_bbox.valid) { + acc.bbox.expandByPoint(_bbox.min); + acc.bbox.expandByPoint(_bbox.max); + } + + acc.elements.push("").concat(element, "")); + } + + return acc; + }, { + bbox: new _vecks.Box2(), + elements: [] + }), + bbox = _entities$reduce.bbox, + elements = _entities$reduce.elements; + + var viewBox = bbox.valid ? { + x: bbox.min.x, + y: -bbox.max.y, + width: bbox.max.x - bbox.min.x, + height: bbox.max.y - bbox.min.y + } : { + x: 0, + y: 0, + width: 0, + height: 0 + }; + return "\n\n \n ").concat(_prettyData.pd.xml(elements.join('\n')), "\n \n"); +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/bSpline.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/bSpline.js new file mode 100644 index 0000000..e69a745 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/bSpline.js @@ -0,0 +1,104 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _round = require("round10"); + +/** + * Copied and ported to code standard as the b-spline library is not maintained any longer. + * Source: + * https://github.com/thibauts/b-spline + * Copyright (c) 2015 Thibaut Séguy + */ +var _default = function _default(t, degree, points, knots, weights) { + var n = points.length; // points count + + var d = points[0].length; // point dimensionality + + if (t < 0 || t > 1) { + throw new Error('t out of bounds [0,1]: ' + t); + } + + if (degree < 1) throw new Error('degree must be at least 1 (linear)'); + if (degree > n - 1) throw new Error('degree must be less than or equal to point count - 1'); + + if (!weights) { + // build weight vector of length [n] + weights = []; + + for (var i = 0; i < n; i++) { + weights[i] = 1; + } + } + + if (!knots) { + // build knot vector of length [n + degree + 1] + knots = []; + + for (var _i = 0; _i < n + degree + 1; _i++) { + knots[_i] = _i; + } + } else { + if (knots.length !== n + degree + 1) throw new Error('bad knot vector length'); + } + + var domain = [degree, knots.length - 1 - degree]; // remap t to the domain where the spline is defined + + var low = knots[domain[0]]; + var high = knots[domain[1]]; + t = t * (high - low) + low; // Clamp to the upper & lower bounds instead of + // throwing an error like in the original lib + // https://github.com/bjnortier/dxf/issues/28 + + t = Math.max(t, low); + t = Math.min(t, high); // find s (the spline segment) for the [t] value provided + + var s; + + for (s = domain[0]; s < domain[1]; s++) { + if (t >= knots[s] && t <= knots[s + 1]) { + break; + } + } // convert points to homogeneous coordinates + + + var v = []; + + for (var _i2 = 0; _i2 < n; _i2++) { + v[_i2] = []; + + for (var j = 0; j < d; j++) { + v[_i2][j] = points[_i2][j] * weights[_i2]; + } + + v[_i2][d] = weights[_i2]; + } // l (level) goes from 1 to the curve degree + 1 + + + var alpha; + + for (var l = 1; l <= degree + 1; l++) { + // build level l of the pyramid + for (var _i3 = s; _i3 > s - degree - 1 + l; _i3--) { + alpha = (t - knots[_i3]) / (knots[_i3 + degree + 1 - l] - knots[_i3]); // interpolate each component + + for (var _j = 0; _j < d + 1; _j++) { + v[_i3][_j] = (1 - alpha) * v[_i3 - 1][_j] + alpha * v[_i3][_j]; + } + } + } // convert back to cartesian and return + + + var result = []; + + for (var _i4 = 0; _i4 < d; _i4++) { + result[_i4] = (0, _round.round10)(v[s][_i4] / v[s][d], -9); + } + + return result; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/colors.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/colors.js new file mode 100644 index 0000000..9d4cd35 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/colors.js @@ -0,0 +1,8 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; +var _default = [[0, 0, 0], [255, 0, 0], [255, 255, 0], [0, 255, 0], [0, 255, 255], [0, 0, 255], [255, 0, 255], [255, 255, 255], [65, 65, 65], [128, 128, 128], [255, 0, 0], [255, 170, 170], [189, 0, 0], [189, 126, 126], [129, 0, 0], [129, 86, 86], [104, 0, 0], [104, 69, 69], [79, 0, 0], [79, 53, 53], [255, 63, 0], [255, 191, 170], [189, 46, 0], [189, 141, 126], [129, 31, 0], [129, 96, 86], [104, 25, 0], [104, 78, 69], [79, 19, 0], [79, 59, 53], [255, 127, 0], [255, 212, 170], [189, 94, 0], [189, 157, 126], [129, 64, 0], [129, 107, 86], [104, 52, 0], [104, 86, 69], [79, 39, 0], [79, 66, 53], [255, 191, 0], [255, 234, 170], [189, 141, 0], [189, 173, 126], [129, 96, 0], [129, 118, 86], [104, 78, 0], [104, 95, 69], [79, 59, 0], [79, 73, 53], [255, 255, 0], [255, 255, 170], [189, 189, 0], [189, 189, 126], [129, 129, 0], [129, 129, 86], [104, 104, 0], [104, 104, 69], [79, 79, 0], [79, 79, 53], [191, 255, 0], [234, 255, 170], [141, 189, 0], [173, 189, 126], [96, 129, 0], [118, 129, 86], [78, 104, 0], [95, 104, 69], [59, 79, 0], [73, 79, 53], [127, 255, 0], [212, 255, 170], [94, 189, 0], [157, 189, 126], [64, 129, 0], [107, 129, 86], [52, 104, 0], [86, 104, 69], [39, 79, 0], [66, 79, 53], [63, 255, 0], [191, 255, 170], [46, 189, 0], [141, 189, 126], [31, 129, 0], [96, 129, 86], [25, 104, 0], [78, 104, 69], [19, 79, 0], [59, 79, 53], [0, 255, 0], [170, 255, 170], [0, 189, 0], [126, 189, 126], [0, 129, 0], [86, 129, 86], [0, 104, 0], [69, 104, 69], [0, 79, 0], [53, 79, 53], [0, 255, 63], [170, 255, 191], [0, 189, 46], [126, 189, 141], [0, 129, 31], [86, 129, 96], [0, 104, 25], [69, 104, 78], [0, 79, 19], [53, 79, 59], [0, 255, 127], [170, 255, 212], [0, 189, 94], [126, 189, 157], [0, 129, 64], [86, 129, 107], [0, 104, 52], [69, 104, 86], [0, 79, 39], [53, 79, 66], [0, 255, 191], [170, 255, 234], [0, 189, 141], [126, 189, 173], [0, 129, 96], [86, 129, 118], [0, 104, 78], [69, 104, 95], [0, 79, 59], [53, 79, 73], [0, 255, 255], [170, 255, 255], [0, 189, 189], [126, 189, 189], [0, 129, 129], [86, 129, 129], [0, 104, 104], [69, 104, 104], [0, 79, 79], [53, 79, 79], [0, 191, 255], [170, 234, 255], [0, 141, 189], [126, 173, 189], [0, 96, 129], [86, 118, 129], [0, 78, 104], [69, 95, 104], [0, 59, 79], [53, 73, 79], [0, 127, 255], [170, 212, 255], [0, 94, 189], [126, 157, 189], [0, 64, 129], [86, 107, 129], [0, 52, 104], [69, 86, 104], [0, 39, 79], [53, 66, 79], [0, 63, 255], [170, 191, 255], [0, 46, 189], [126, 141, 189], [0, 31, 129], [86, 96, 129], [0, 25, 104], [69, 78, 104], [0, 19, 79], [53, 59, 79], [0, 0, 255], [170, 170, 255], [0, 0, 189], [126, 126, 189], [0, 0, 129], [86, 86, 129], [0, 0, 104], [69, 69, 104], [0, 0, 79], [53, 53, 79], [63, 0, 255], [191, 170, 255], [46, 0, 189], [141, 126, 189], [31, 0, 129], [96, 86, 129], [25, 0, 104], [78, 69, 104], [19, 0, 79], [59, 53, 79], [127, 0, 255], [212, 170, 255], [94, 0, 189], [157, 126, 189], [64, 0, 129], [107, 86, 129], [52, 0, 104], [86, 69, 104], [39, 0, 79], [66, 53, 79], [191, 0, 255], [234, 170, 255], [141, 0, 189], [173, 126, 189], [96, 0, 129], [118, 86, 129], [78, 0, 104], [95, 69, 104], [59, 0, 79], [73, 53, 79], [255, 0, 255], [255, 170, 255], [189, 0, 189], [189, 126, 189], [129, 0, 129], [129, 86, 129], [104, 0, 104], [104, 69, 104], [79, 0, 79], [79, 53, 79], [255, 0, 191], [255, 170, 234], [189, 0, 141], [189, 126, 173], [129, 0, 96], [129, 86, 118], [104, 0, 78], [104, 69, 95], [79, 0, 59], [79, 53, 73], [255, 0, 127], [255, 170, 212], [189, 0, 94], [189, 126, 157], [129, 0, 64], [129, 86, 107], [104, 0, 52], [104, 69, 86], [79, 0, 39], [79, 53, 66], [255, 0, 63], [255, 170, 191], [189, 0, 46], [189, 126, 141], [129, 0, 31], [129, 86, 96], [104, 0, 25], [104, 69, 78], [79, 0, 19], [79, 53, 59], [51, 51, 51], [80, 80, 80], [105, 105, 105], [130, 130, 130], [190, 190, 190], [255, 255, 255]]; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/createArcForLWPolyline.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/createArcForLWPolyline.js new file mode 100644 index 0000000..ce6c239 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/createArcForLWPolyline.js @@ -0,0 +1,85 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _vecks = require("vecks"); + +/** + * Create the arcs point for a LWPOLYLINE. The start and end are excluded + * + * See diagram.png in this directory for description of points and angles used. + */ +var _default = function _default(from, to, bulge, resolution) { + // Resolution in degrees + if (!resolution) { + resolution = 5; + } // If the bulge is < 0, the arc goes clockwise. So we simply + // reverse a and b and invert sign + // Bulge = tan(theta/4) + + + var theta; + var a; + var b; + + if (bulge < 0) { + theta = Math.atan(-bulge) * 4; + a = new _vecks.V2(from[0], from[1]); + b = new _vecks.V2(to[0], to[1]); + } else { + // Default is counter-clockwise + theta = Math.atan(bulge) * 4; + a = new _vecks.V2(to[0], to[1]); + b = new _vecks.V2(from[0], from[1]); + } + + var ab = b.sub(a); + var lengthAB = ab.length(); + var c = a.add(ab.multiply(0.5)); // Distance from center of arc to line between form and to points + + var lengthCD = Math.abs(lengthAB / 2 / Math.tan(theta / 2)); + var normAB = ab.norm(); + var d; + + if (theta < Math.PI) { + var normDC = new _vecks.V2(normAB.x * Math.cos(Math.PI / 2) - normAB.y * Math.sin(Math.PI / 2), normAB.y * Math.cos(Math.PI / 2) + normAB.x * Math.sin(Math.PI / 2)); // D is the center of the arc + + d = c.add(normDC.multiply(-lengthCD)); + } else { + var normCD = new _vecks.V2(normAB.x * Math.cos(Math.PI / 2) - normAB.y * Math.sin(Math.PI / 2), normAB.y * Math.cos(Math.PI / 2) + normAB.x * Math.sin(Math.PI / 2)); // D is the center of the arc + + d = c.add(normCD.multiply(lengthCD)); + } // Add points between start start and eng angle relative + // to the center point + + + var startAngle = Math.atan2(b.y - d.y, b.x - d.x) / Math.PI * 180; + var endAngle = Math.atan2(a.y - d.y, a.x - d.x) / Math.PI * 180; + + if (endAngle < startAngle) { + endAngle += 360; + } + + var r = b.sub(d).length(); + var startInter = Math.floor(startAngle / resolution) * resolution + resolution; + var endInter = Math.ceil(endAngle / resolution) * resolution - resolution; + var points = []; + + for (var i = startInter; i <= endInter; i += resolution) { + points.push(d.add(new _vecks.V2(Math.cos(i / 180 * Math.PI) * r, Math.sin(i / 180 * Math.PI) * r))); + } // Maintain the right ordering to join the from and to points + + + if (bulge < 0) { + points.reverse(); + } + + return points.map(function (p) { + return [p.x, p.y]; + }); +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/insertKnot.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/insertKnot.js new file mode 100644 index 0000000..dd69257 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/insertKnot.js @@ -0,0 +1,79 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Knot insertion is known as "Boehm's algorithm" + * + * https://math.stackexchange.com/questions/417859/convert-a-b-spline-into-bezier-curves + * code adapted from http://preserve.mactech.com/articles/develop/issue_25/schneider.html + */ +var _default = function _default(k, controlPoints, knots, newKnot) { + var x = knots; + var b = controlPoints; + var n = controlPoints.length; + var i = 0; + var foundIndex = false; + + for (var j = 0; j < n + k; j++) { + if (newKnot > x[j] && newKnot <= x[j + 1]) { + i = j; + foundIndex = true; + break; + } + } + + if (!foundIndex) { + throw new Error('invalid new knot'); + } + + var xHat = []; + + for (var _j = 0; _j < n + k + 1; _j++) { + if (_j <= i) { + xHat[_j] = x[_j]; + } else if (_j === i + 1) { + xHat[_j] = newKnot; + } else { + xHat[_j] = x[_j - 1]; + } + } + + var alpha; + var bHat = []; + + for (var _j2 = 0; _j2 < n + 1; _j2++) { + if (_j2 <= i - k + 1) { + alpha = 1; + } else if (i - k + 2 <= _j2 && _j2 <= i) { + if (x[_j2 + k - 1] - x[_j2] === 0) { + alpha = 0; + } else { + alpha = (newKnot - x[_j2]) / (x[_j2 + k - 1] - x[_j2]); + } + } else { + alpha = 0; + } + + if (alpha === 0) { + bHat[_j2] = b[_j2 - 1]; + } else if (alpha === 1) { + bHat[_j2] = b[_j2]; + } else { + bHat[_j2] = { + x: (1 - alpha) * b[_j2 - 1].x + alpha * b[_j2].x, + y: (1 - alpha) * b[_j2 - 1].y + alpha * b[_j2].y + }; + } + } + + return { + controlPoints: bHat, + knots: xHat + }; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/logger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/logger.js new file mode 100644 index 0000000..4d79953 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/logger.js @@ -0,0 +1,33 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _config = _interopRequireDefault(require("../config")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function info() { + if (_config["default"].verbose) { + console.info.apply(undefined, arguments); + } +} + +function warn() { + if (_config["default"].verbose) { + console.warn.apply(undefined, arguments); + } +} + +function error() { + console.error.apply(undefined, arguments); +} + +var _default = { + info: info, + warn: warn, + error: error +}; +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/rgbToColorAttribute.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/rgbToColorAttribute.js new file mode 100644 index 0000000..3710503 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/rgbToColorAttribute.js @@ -0,0 +1,20 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Convert an RGB array to a CSS string definition. + * Converts white lines to black as the default. + */ +var _default = function _default(rgb) { + if (rgb[0] === 255 && rgb[1] === 255 && rgb[2] === 255) { + return 'rgb(0, 0, 0)'; + } else { + return "rgb(".concat(rgb[0], ", ").concat(rgb[1], ", ").concat(rgb[2], ")"); + } +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/rotate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/rotate.js new file mode 100644 index 0000000..b4faed4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/rotate.js @@ -0,0 +1,21 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Rotate a points by the given angle. + * + * @param points the points + * @param angle the rotation angle + */ +var _default = function _default(p, angle) { + return { + x: p.x * Math.cos(angle) - p.y * Math.sin(angle), + y: p.y * Math.cos(angle) + p.x * Math.sin(angle) + }; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/toPiecewiseBezier.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/toPiecewiseBezier.js new file mode 100644 index 0000000..11a5b80 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/toPiecewiseBezier.js @@ -0,0 +1,90 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.computeInsertions = exports.multiplicity = exports.checkPinned = void 0; + +var _insertKnot = _interopRequireDefault(require("./insertKnot")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +/** + * For a pinned spline, the knots have to be repeated k times + * (where k is the order), at both the beginning and the end + */ +var checkPinned = function checkPinned(k, knots) { + // Pinned at the start + for (var i = 1; i < k; ++i) { + if (knots[i] !== knots[0]) { + throw Error("not pinned. order: ".concat(k, " knots: ").concat(knots)); + } + } // Pinned at the end + + + for (var _i = knots.length - 2; _i > knots.length - k - 1; --_i) { + if (knots[_i] !== knots[knots.length - 1]) { + throw Error("not pinned. order: ".concat(k, " knots: ").concat(knots)); + } + } +}; + +exports.checkPinned = checkPinned; + +var multiplicity = function multiplicity(knots, index) { + var m = 1; + + for (var i = index + 1; i < knots.length; ++i) { + if (knots[i] === knots[index]) { + ++m; + } else { + break; + } + } + + return m; +}; +/** + * https://saccade.com/writing/graphics/KnotVectors.pdf + * A quadratic piecewise Bézier knot vector with seven control points + * will look like this [0 0 0 1 1 2 2 3 3 3]. In general, in a + * piecewise Bézier knot vector the first k knots are the same, + * then each subsequent group of k-1 knots is the same, + * until you get to the end. + */ + + +exports.multiplicity = multiplicity; + +var computeInsertions = function computeInsertions(k, knots) { + var inserts = []; + var i = k; + + while (i < knots.length - k) { + var knot = knots[i]; + var m = multiplicity(knots, i); + + for (var j = 0; j < k - m - 1; ++j) { + inserts.push(knot); + } + + i = i + m; + } + + return inserts; +}; + +exports.computeInsertions = computeInsertions; + +var _default = function _default(k, controlPoints, knots) { + checkPinned(k, knots); + var insertions = computeInsertions(k, knots); + return insertions.reduce(function (acc, tNew) { + return (0, _insertKnot["default"])(k, acc.controlPoints, acc.knots, tNew); + }, { + controlPoints: controlPoints, + knots: knots + }); +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/transformBoundingBoxAndElement.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/transformBoundingBoxAndElement.js new file mode 100644 index 0000000..ba03a7c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/lib/util/transformBoundingBoxAndElement.js @@ -0,0 +1,118 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _vecks = require("vecks"); + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } + +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } + +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } + +/** + * Transform the bounding box and the SVG element by the given + * transforms. The element are created in reverse transform + * order and the bounding box in the given order. + */ +var _default = function _default(bbox, element, transforms) { + var transformedElement = ''; + var matrices = transforms.map(function (transform) { + // Create the transformation matrix + var tx = transform.x || 0; + var ty = transform.y || 0; + var sx = transform.scaleX || 1; + var sy = transform.scaleY || 1; + var angle = (transform.rotation || 0) / 180 * Math.PI; + var cos = Math.cos, + sin = Math.sin; + var a, b, c, d, e, f; // In DXF an extrusionZ value of -1 denote a tranform around the Y axis. + + if (transform.extrusionZ === -1) { + a = -sx * cos(angle); + b = sx * sin(angle); + c = sy * sin(angle); + d = sy * cos(angle); + e = -tx; + f = ty; + } else { + a = sx * cos(angle); + b = sx * sin(angle); + c = -sy * sin(angle); + d = sy * cos(angle); + e = tx; + f = ty; + } + + return [a, b, c, d, e, f]; + }); // Only transform the bounding box is it is valid (i.e. not Infinity) + + var transformedBBox = new _vecks.Box2(); + + if (bbox.valid) { + var bboxPoints = [{ + x: bbox.min.x, + y: bbox.min.y + }, { + x: bbox.max.x, + y: bbox.min.y + }, { + x: bbox.max.x, + y: bbox.max.y + }, { + x: bbox.min.x, + y: bbox.max.y + }]; + matrices.forEach(function (_ref) { + var _ref2 = _slicedToArray(_ref, 6), + a = _ref2[0], + b = _ref2[1], + c = _ref2[2], + d = _ref2[3], + e = _ref2[4], + f = _ref2[5]; + + bboxPoints = bboxPoints.map(function (point) { + return { + x: point.x * a + point.y * c + e, + y: point.x * b + point.y * d + f + }; + }); + }); + transformedBBox = bboxPoints.reduce(function (acc, point) { + return acc.expandByPoint(point); + }, new _vecks.Box2()); + } + + matrices.reverse(); + matrices.forEach(function (_ref3) { + var _ref4 = _slicedToArray(_ref3, 6), + a = _ref4[0], + b = _ref4[1], + c = _ref4[2], + d = _ref4[3], + e = _ref4[4], + f = _ref4[5]; + + transformedElement += ""); + }); + transformedElement += element; + matrices.forEach(function (transform) { + transformedElement += ''; + }); + return { + bbox: transformedBBox, + element: transformedElement + }; +}; + +exports["default"] = _default; \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/CHANGELOG.md b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/CHANGELOG.md new file mode 100644 index 0000000..7dce779 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/CHANGELOG.md @@ -0,0 +1,419 @@ +2.20.3 / 2019-10-11 +================== + + * Support Node.js 0.10 (Revert #1059) + * Ran "npm unpublish commander@2.20.2". There is no 2.20.2. + +2.20.1 / 2019-09-29 +================== + + * Improve executable subcommand tracking + * Update dev dependencies + +2.20.0 / 2019-04-02 +================== + + * fix: resolve symbolic links completely when hunting for subcommands (#935) + * Update index.d.ts (#930) + * Update Readme.md (#924) + * Remove --save option as it isn't required anymore (#918) + * Add link to the license file (#900) + * Added example of receiving args from options (#858) + * Added missing semicolon (#882) + * Add extension to .eslintrc (#876) + +2.19.0 / 2018-10-02 +================== + + * Removed newline after Options and Commands headers (#864) + * Bugfix - Error output (#862) + * Fix to change default value to string (#856) + +2.18.0 / 2018-09-07 +================== + + * Standardize help output (#853) + * chmod 644 travis.yml (#851) + * add support for execute typescript subcommand via ts-node (#849) + +2.17.1 / 2018-08-07 +================== + + * Fix bug in command emit (#844) + +2.17.0 / 2018-08-03 +================== + + * fixed newline output after help information (#833) + * Fix to emit the action even without command (#778) + * npm update (#823) + +2.16.0 / 2018-06-29 +================== + + * Remove Makefile and `test/run` (#821) + * Make 'npm test' run on Windows (#820) + * Add badge to display install size (#807) + * chore: cache node_modules (#814) + * chore: remove Node.js 4 (EOL), add Node.js 10 (#813) + * fixed typo in readme (#812) + * Fix types (#804) + * Update eslint to resolve vulnerabilities in lodash (#799) + * updated readme with custom event listeners. (#791) + * fix tests (#794) + +2.15.0 / 2018-03-07 +================== + + * Update downloads badge to point to graph of downloads over time instead of duplicating link to npm + * Arguments description + +2.14.1 / 2018-02-07 +================== + + * Fix typing of help function + +2.14.0 / 2018-02-05 +================== + + * only register the option:version event once + * Fixes issue #727: Passing empty string for option on command is set to undefined + * enable eqeqeq rule + * resolves #754 add linter configuration to project + * resolves #560 respect custom name for version option + * document how to override the version flag + * document using options per command + +2.13.0 / 2018-01-09 +================== + + * Do not print default for --no- + * remove trailing spaces in command help + * Update CI's Node.js to LTS and latest version + * typedefs: Command and Option types added to commander namespace + +2.12.2 / 2017-11-28 +================== + + * fix: typings are not shipped + +2.12.1 / 2017-11-23 +================== + + * Move @types/node to dev dependency + +2.12.0 / 2017-11-22 +================== + + * add attributeName() method to Option objects + * Documentation updated for options with --no prefix + * typings: `outputHelp` takes a string as the first parameter + * typings: use overloads + * feat(typings): update to match js api + * Print default value in option help + * Fix translation error + * Fail when using same command and alias (#491) + * feat(typings): add help callback + * fix bug when description is add after command with options (#662) + * Format js code + * Rename History.md to CHANGELOG.md (#668) + * feat(typings): add typings to support TypeScript (#646) + * use current node + +2.11.0 / 2017-07-03 +================== + + * Fix help section order and padding (#652) + * feature: support for signals to subcommands (#632) + * Fixed #37, --help should not display first (#447) + * Fix translation errors. (#570) + * Add package-lock.json + * Remove engines + * Upgrade package version + * Prefix events to prevent conflicts between commands and options (#494) + * Removing dependency on graceful-readlink + * Support setting name in #name function and make it chainable + * Add .vscode directory to .gitignore (Visual Studio Code metadata) + * Updated link to ruby commander in readme files + +2.10.0 / 2017-06-19 +================== + + * Update .travis.yml. drop support for older node.js versions. + * Fix require arguments in README.md + * On SemVer you do not start from 0.0.1 + * Add missing semi colon in readme + * Add save param to npm install + * node v6 travis test + * Update Readme_zh-CN.md + * Allow literal '--' to be passed-through as an argument + * Test subcommand alias help + * link build badge to master branch + * Support the alias of Git style sub-command + * added keyword commander for better search result on npm + * Fix Sub-Subcommands + * test node.js stable + * Fixes TypeError when a command has an option called `--description` + * Update README.md to make it beginner friendly and elaborate on the difference between angled and square brackets. + * Add chinese Readme file + +2.9.0 / 2015-10-13 +================== + + * Add option `isDefault` to set default subcommand #415 @Qix- + * Add callback to allow filtering or post-processing of help text #434 @djulien + * Fix `undefined` text in help information close #414 #416 @zhiyelee + +2.8.1 / 2015-04-22 +================== + + * Back out `support multiline description` Close #396 #397 + +2.8.0 / 2015-04-07 +================== + + * Add `process.execArg` support, execution args like `--harmony` will be passed to sub-commands #387 @DigitalIO @zhiyelee + * Fix bug in Git-style sub-commands #372 @zhiyelee + * Allow commands to be hidden from help #383 @tonylukasavage + * When git-style sub-commands are in use, yet none are called, display help #382 @claylo + * Add ability to specify arguments syntax for top-level command #258 @rrthomas + * Support multiline descriptions #208 @zxqfox + +2.7.1 / 2015-03-11 +================== + + * Revert #347 (fix collisions when option and first arg have same name) which causes a bug in #367. + +2.7.0 / 2015-03-09 +================== + + * Fix git-style bug when installed globally. Close #335 #349 @zhiyelee + * Fix collisions when option and first arg have same name. Close #346 #347 @tonylukasavage + * Add support for camelCase on `opts()`. Close #353 @nkzawa + * Add node.js 0.12 and io.js to travis.yml + * Allow RegEx options. #337 @palanik + * Fixes exit code when sub-command failing. Close #260 #332 @pirelenito + * git-style `bin` files in $PATH make sense. Close #196 #327 @zhiyelee + +2.6.0 / 2014-12-30 +================== + + * added `Command#allowUnknownOption` method. Close #138 #318 @doozr @zhiyelee + * Add application description to the help msg. Close #112 @dalssoft + +2.5.1 / 2014-12-15 +================== + + * fixed two bugs incurred by variadic arguments. Close #291 @Quentin01 #302 @zhiyelee + +2.5.0 / 2014-10-24 +================== + + * add support for variadic arguments. Closes #277 @whitlockjc + +2.4.0 / 2014-10-17 +================== + + * fixed a bug on executing the coercion function of subcommands option. Closes #270 + * added `Command.prototype.name` to retrieve command name. Closes #264 #266 @tonylukasavage + * added `Command.prototype.opts` to retrieve all the options as a simple object of key-value pairs. Closes #262 @tonylukasavage + * fixed a bug on subcommand name. Closes #248 @jonathandelgado + * fixed function normalize doesn’t honor option terminator. Closes #216 @abbr + +2.3.0 / 2014-07-16 +================== + + * add command alias'. Closes PR #210 + * fix: Typos. Closes #99 + * fix: Unused fs module. Closes #217 + +2.2.0 / 2014-03-29 +================== + + * add passing of previous option value + * fix: support subcommands on windows. Closes #142 + * Now the defaultValue passed as the second argument of the coercion function. + +2.1.0 / 2013-11-21 +================== + + * add: allow cflag style option params, unit test, fixes #174 + +2.0.0 / 2013-07-18 +================== + + * remove input methods (.prompt, .confirm, etc) + +1.3.2 / 2013-07-18 +================== + + * add support for sub-commands to co-exist with the original command + +1.3.1 / 2013-07-18 +================== + + * add quick .runningCommand hack so you can opt-out of other logic when running a sub command + +1.3.0 / 2013-07-09 +================== + + * add EACCES error handling + * fix sub-command --help + +1.2.0 / 2013-06-13 +================== + + * allow "-" hyphen as an option argument + * support for RegExp coercion + +1.1.1 / 2012-11-20 +================== + + * add more sub-command padding + * fix .usage() when args are present. Closes #106 + +1.1.0 / 2012-11-16 +================== + + * add git-style executable subcommand support. Closes #94 + +1.0.5 / 2012-10-09 +================== + + * fix `--name` clobbering. Closes #92 + * fix examples/help. Closes #89 + +1.0.4 / 2012-09-03 +================== + + * add `outputHelp()` method. + +1.0.3 / 2012-08-30 +================== + + * remove invalid .version() defaulting + +1.0.2 / 2012-08-24 +================== + + * add `--foo=bar` support [arv] + * fix password on node 0.8.8. Make backward compatible with 0.6 [focusaurus] + +1.0.1 / 2012-08-03 +================== + + * fix issue #56 + * fix tty.setRawMode(mode) was moved to tty.ReadStream#setRawMode() (i.e. process.stdin.setRawMode()) + +1.0.0 / 2012-07-05 +================== + + * add support for optional option descriptions + * add defaulting of `.version()` to package.json's version + +0.6.1 / 2012-06-01 +================== + + * Added: append (yes or no) on confirmation + * Added: allow node.js v0.7.x + +0.6.0 / 2012-04-10 +================== + + * Added `.prompt(obj, callback)` support. Closes #49 + * Added default support to .choose(). Closes #41 + * Fixed the choice example + +0.5.1 / 2011-12-20 +================== + + * Fixed `password()` for recent nodes. Closes #36 + +0.5.0 / 2011-12-04 +================== + + * Added sub-command option support [itay] + +0.4.3 / 2011-12-04 +================== + + * Fixed custom help ordering. Closes #32 + +0.4.2 / 2011-11-24 +================== + + * Added travis support + * Fixed: line-buffered input automatically trimmed. Closes #31 + +0.4.1 / 2011-11-18 +================== + + * Removed listening for "close" on --help + +0.4.0 / 2011-11-15 +================== + + * Added support for `--`. Closes #24 + +0.3.3 / 2011-11-14 +================== + + * Fixed: wait for close event when writing help info [Jerry Hamlet] + +0.3.2 / 2011-11-01 +================== + + * Fixed long flag definitions with values [felixge] + +0.3.1 / 2011-10-31 +================== + + * Changed `--version` short flag to `-V` from `-v` + * Changed `.version()` so it's configurable [felixge] + +0.3.0 / 2011-10-31 +================== + + * Added support for long flags only. Closes #18 + +0.2.1 / 2011-10-24 +================== + + * "node": ">= 0.4.x < 0.7.0". Closes #20 + +0.2.0 / 2011-09-26 +================== + + * Allow for defaults that are not just boolean. Default peassignment only occurs for --no-*, optional, and required arguments. [Jim Isaacs] + +0.1.0 / 2011-08-24 +================== + + * Added support for custom `--help` output + +0.0.5 / 2011-08-18 +================== + + * Changed: when the user enters nothing prompt for password again + * Fixed issue with passwords beginning with numbers [NuckChorris] + +0.0.4 / 2011-08-15 +================== + + * Fixed `Commander#args` + +0.0.3 / 2011-08-15 +================== + + * Added default option value support + +0.0.2 / 2011-08-15 +================== + + * Added mask support to `Command#password(str[, mask], fn)` + * Added `Command#password(str, fn)` + +0.0.1 / 2010-01-03 +================== + + * Initial release diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/LICENSE b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/LICENSE new file mode 100644 index 0000000..10f997a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/LICENSE @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2011 TJ Holowaychuk + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/Readme.md b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/Readme.md new file mode 100644 index 0000000..c846e7a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/Readme.md @@ -0,0 +1,428 @@ +# Commander.js + + +[![Build Status](https://api.travis-ci.org/tj/commander.js.svg?branch=master)](http://travis-ci.org/tj/commander.js) +[![NPM Version](http://img.shields.io/npm/v/commander.svg?style=flat)](https://www.npmjs.org/package/commander) +[![NPM Downloads](https://img.shields.io/npm/dm/commander.svg?style=flat)](https://npmcharts.com/compare/commander?minimal=true) +[![Install Size](https://packagephobia.now.sh/badge?p=commander)](https://packagephobia.now.sh/result?p=commander) +[![Join the chat at https://gitter.im/tj/commander.js](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/tj/commander.js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + + The complete solution for [node.js](http://nodejs.org) command-line interfaces, inspired by Ruby's [commander](https://github.com/commander-rb/commander). + [API documentation](http://tj.github.com/commander.js/) + + +## Installation + + $ npm install commander + +## Option parsing + +Options with commander are defined with the `.option()` method, also serving as documentation for the options. The example below parses args and options from `process.argv`, leaving remaining args as the `program.args` array which were not consumed by options. + +```js +#!/usr/bin/env node + +/** + * Module dependencies. + */ + +var program = require('commander'); + +program + .version('0.1.0') + .option('-p, --peppers', 'Add peppers') + .option('-P, --pineapple', 'Add pineapple') + .option('-b, --bbq-sauce', 'Add bbq sauce') + .option('-c, --cheese [type]', 'Add the specified type of cheese [marble]', 'marble') + .parse(process.argv); + +console.log('you ordered a pizza with:'); +if (program.peppers) console.log(' - peppers'); +if (program.pineapple) console.log(' - pineapple'); +if (program.bbqSauce) console.log(' - bbq'); +console.log(' - %s cheese', program.cheese); +``` + +Short flags may be passed as a single arg, for example `-abc` is equivalent to `-a -b -c`. Multi-word options such as "--template-engine" are camel-cased, becoming `program.templateEngine` etc. + +Note that multi-word options starting with `--no` prefix negate the boolean value of the following word. For example, `--no-sauce` sets the value of `program.sauce` to false. + +```js +#!/usr/bin/env node + +/** + * Module dependencies. + */ + +var program = require('commander'); + +program + .option('--no-sauce', 'Remove sauce') + .parse(process.argv); + +console.log('you ordered a pizza'); +if (program.sauce) console.log(' with sauce'); +else console.log(' without sauce'); +``` + +To get string arguments from options you will need to use angle brackets <> for required inputs or square brackets [] for optional inputs. + +e.g. ```.option('-m --myarg [myVar]', 'my super cool description')``` + +Then to access the input if it was passed in. + +e.g. ```var myInput = program.myarg``` + +**NOTE**: If you pass a argument without using brackets the example above will return true and not the value passed in. + + +## Version option + +Calling the `version` implicitly adds the `-V` and `--version` options to the command. +When either of these options is present, the command prints the version number and exits. + + $ ./examples/pizza -V + 0.0.1 + +If you want your program to respond to the `-v` option instead of the `-V` option, simply pass custom flags to the `version` method using the same syntax as the `option` method. + +```js +program + .version('0.0.1', '-v, --version') +``` + +The version flags can be named anything, but the long option is required. + +## Command-specific options + +You can attach options to a command. + +```js +#!/usr/bin/env node + +var program = require('commander'); + +program + .command('rm
') + .option('-r, --recursive', 'Remove recursively') + .action(function (dir, cmd) { + console.log('remove ' + dir + (cmd.recursive ? ' recursively' : '')) + }) + +program.parse(process.argv) +``` + +A command's options are validated when the command is used. Any unknown options will be reported as an error. However, if an action-based command does not define an action, then the options are not validated. + +## Coercion + +```js +function range(val) { + return val.split('..').map(Number); +} + +function list(val) { + return val.split(','); +} + +function collect(val, memo) { + memo.push(val); + return memo; +} + +function increaseVerbosity(v, total) { + return total + 1; +} + +program + .version('0.1.0') + .usage('[options] ') + .option('-i, --integer ', 'An integer argument', parseInt) + .option('-f, --float ', 'A float argument', parseFloat) + .option('-r, --range ..', 'A range', range) + .option('-l, --list ', 'A list', list) + .option('-o, --optional [value]', 'An optional value') + .option('-c, --collect [value]', 'A repeatable value', collect, []) + .option('-v, --verbose', 'A value that can be increased', increaseVerbosity, 0) + .parse(process.argv); + +console.log(' int: %j', program.integer); +console.log(' float: %j', program.float); +console.log(' optional: %j', program.optional); +program.range = program.range || []; +console.log(' range: %j..%j', program.range[0], program.range[1]); +console.log(' list: %j', program.list); +console.log(' collect: %j', program.collect); +console.log(' verbosity: %j', program.verbose); +console.log(' args: %j', program.args); +``` + +## Regular Expression +```js +program + .version('0.1.0') + .option('-s --size ', 'Pizza size', /^(large|medium|small)$/i, 'medium') + .option('-d --drink [drink]', 'Drink', /^(coke|pepsi|izze)$/i) + .parse(process.argv); + +console.log(' size: %j', program.size); +console.log(' drink: %j', program.drink); +``` + +## Variadic arguments + + The last argument of a command can be variadic, and only the last argument. To make an argument variadic you have to + append `...` to the argument name. Here is an example: + +```js +#!/usr/bin/env node + +/** + * Module dependencies. + */ + +var program = require('commander'); + +program + .version('0.1.0') + .command('rmdir [otherDirs...]') + .action(function (dir, otherDirs) { + console.log('rmdir %s', dir); + if (otherDirs) { + otherDirs.forEach(function (oDir) { + console.log('rmdir %s', oDir); + }); + } + }); + +program.parse(process.argv); +``` + + An `Array` is used for the value of a variadic argument. This applies to `program.args` as well as the argument passed + to your action as demonstrated above. + +## Specify the argument syntax + +```js +#!/usr/bin/env node + +var program = require('commander'); + +program + .version('0.1.0') + .arguments(' [env]') + .action(function (cmd, env) { + cmdValue = cmd; + envValue = env; + }); + +program.parse(process.argv); + +if (typeof cmdValue === 'undefined') { + console.error('no command given!'); + process.exit(1); +} +console.log('command:', cmdValue); +console.log('environment:', envValue || "no environment given"); +``` +Angled brackets (e.g. ``) indicate required input. Square brackets (e.g. `[env]`) indicate optional input. + +## Git-style sub-commands + +```js +// file: ./examples/pm +var program = require('commander'); + +program + .version('0.1.0') + .command('install [name]', 'install one or more packages') + .command('search [query]', 'search with optional query') + .command('list', 'list packages installed', {isDefault: true}) + .parse(process.argv); +``` + +When `.command()` is invoked with a description argument, no `.action(callback)` should be called to handle sub-commands, otherwise there will be an error. This tells commander that you're going to use separate executables for sub-commands, much like `git(1)` and other popular tools. +The commander will try to search the executables in the directory of the entry script (like `./examples/pm`) with the name `program-command`, like `pm-install`, `pm-search`. + +Options can be passed with the call to `.command()`. Specifying `true` for `opts.noHelp` will remove the subcommand from the generated help output. Specifying `true` for `opts.isDefault` will run the subcommand if no other subcommand is specified. + +If the program is designed to be installed globally, make sure the executables have proper modes, like `755`. + +### `--harmony` + +You can enable `--harmony` option in two ways: +* Use `#! /usr/bin/env node --harmony` in the sub-commands scripts. Note some os version don’t support this pattern. +* Use the `--harmony` option when call the command, like `node --harmony examples/pm publish`. The `--harmony` option will be preserved when spawning sub-command process. + +## Automated --help + + The help information is auto-generated based on the information commander already knows about your program, so the following `--help` info is for free: + +``` +$ ./examples/pizza --help +Usage: pizza [options] + +An application for pizzas ordering + +Options: + -h, --help output usage information + -V, --version output the version number + -p, --peppers Add peppers + -P, --pineapple Add pineapple + -b, --bbq Add bbq sauce + -c, --cheese Add the specified type of cheese [marble] + -C, --no-cheese You do not want any cheese +``` + +## Custom help + + You can display arbitrary `-h, --help` information + by listening for "--help". Commander will automatically + exit once you are done so that the remainder of your program + does not execute causing undesired behaviors, for example + in the following executable "stuff" will not output when + `--help` is used. + +```js +#!/usr/bin/env node + +/** + * Module dependencies. + */ + +var program = require('commander'); + +program + .version('0.1.0') + .option('-f, --foo', 'enable some foo') + .option('-b, --bar', 'enable some bar') + .option('-B, --baz', 'enable some baz'); + +// must be before .parse() since +// node's emit() is immediate + +program.on('--help', function(){ + console.log('') + console.log('Examples:'); + console.log(' $ custom-help --help'); + console.log(' $ custom-help -h'); +}); + +program.parse(process.argv); + +console.log('stuff'); +``` + +Yields the following help output when `node script-name.js -h` or `node script-name.js --help` are run: + +``` +Usage: custom-help [options] + +Options: + -h, --help output usage information + -V, --version output the version number + -f, --foo enable some foo + -b, --bar enable some bar + -B, --baz enable some baz + +Examples: + $ custom-help --help + $ custom-help -h +``` + +## .outputHelp(cb) + +Output help information without exiting. +Optional callback cb allows post-processing of help text before it is displayed. + +If you want to display help by default (e.g. if no command was provided), you can use something like: + +```js +var program = require('commander'); +var colors = require('colors'); + +program + .version('0.1.0') + .command('getstream [url]', 'get stream URL') + .parse(process.argv); + +if (!process.argv.slice(2).length) { + program.outputHelp(make_red); +} + +function make_red(txt) { + return colors.red(txt); //display the help text in red on the console +} +``` + +## .help(cb) + + Output help information and exit immediately. + Optional callback cb allows post-processing of help text before it is displayed. + + +## Custom event listeners + You can execute custom actions by listening to command and option events. + +```js +program.on('option:verbose', function () { + process.env.VERBOSE = this.verbose; +}); + +// error on unknown commands +program.on('command:*', function () { + console.error('Invalid command: %s\nSee --help for a list of available commands.', program.args.join(' ')); + process.exit(1); +}); +``` + +## Examples + +```js +var program = require('commander'); + +program + .version('0.1.0') + .option('-C, --chdir ', 'change the working directory') + .option('-c, --config ', 'set config path. defaults to ./deploy.conf') + .option('-T, --no-tests', 'ignore test hook'); + +program + .command('setup [env]') + .description('run setup commands for all envs') + .option("-s, --setup_mode [mode]", "Which setup mode to use") + .action(function(env, options){ + var mode = options.setup_mode || "normal"; + env = env || 'all'; + console.log('setup for %s env(s) with %s mode', env, mode); + }); + +program + .command('exec ') + .alias('ex') + .description('execute the given remote cmd') + .option("-e, --exec_mode ", "Which exec mode to use") + .action(function(cmd, options){ + console.log('exec "%s" using %s mode', cmd, options.exec_mode); + }).on('--help', function() { + console.log(''); + console.log('Examples:'); + console.log(''); + console.log(' $ deploy exec sequential'); + console.log(' $ deploy exec async'); + }); + +program + .command('*') + .action(function(env){ + console.log('deploying "%s"', env); + }); + +program.parse(process.argv); +``` + +More Demos can be found in the [examples](https://github.com/tj/commander.js/tree/master/examples) directory. + +## License + +[MIT](https://github.com/tj/commander.js/blob/master/LICENSE) diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/index.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/index.js new file mode 100644 index 0000000..ec1d61d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/index.js @@ -0,0 +1,1224 @@ +/** + * Module dependencies. + */ + +var EventEmitter = require('events').EventEmitter; +var spawn = require('child_process').spawn; +var path = require('path'); +var dirname = path.dirname; +var basename = path.basename; +var fs = require('fs'); + +/** + * Inherit `Command` from `EventEmitter.prototype`. + */ + +require('util').inherits(Command, EventEmitter); + +/** + * Expose the root command. + */ + +exports = module.exports = new Command(); + +/** + * Expose `Command`. + */ + +exports.Command = Command; + +/** + * Expose `Option`. + */ + +exports.Option = Option; + +/** + * Initialize a new `Option` with the given `flags` and `description`. + * + * @param {String} flags + * @param {String} description + * @api public + */ + +function Option(flags, description) { + this.flags = flags; + this.required = flags.indexOf('<') >= 0; + this.optional = flags.indexOf('[') >= 0; + this.bool = flags.indexOf('-no-') === -1; + flags = flags.split(/[ ,|]+/); + if (flags.length > 1 && !/^[[<]/.test(flags[1])) this.short = flags.shift(); + this.long = flags.shift(); + this.description = description || ''; +} + +/** + * Return option name. + * + * @return {String} + * @api private + */ + +Option.prototype.name = function() { + return this.long + .replace('--', '') + .replace('no-', ''); +}; + +/** + * Return option name, in a camelcase format that can be used + * as a object attribute key. + * + * @return {String} + * @api private + */ + +Option.prototype.attributeName = function() { + return camelcase(this.name()); +}; + +/** + * Check if `arg` matches the short or long flag. + * + * @param {String} arg + * @return {Boolean} + * @api private + */ + +Option.prototype.is = function(arg) { + return this.short === arg || this.long === arg; +}; + +/** + * Initialize a new `Command`. + * + * @param {String} name + * @api public + */ + +function Command(name) { + this.commands = []; + this.options = []; + this._execs = {}; + this._allowUnknownOption = false; + this._args = []; + this._name = name || ''; +} + +/** + * Add command `name`. + * + * The `.action()` callback is invoked when the + * command `name` is specified via __ARGV__, + * and the remaining arguments are applied to the + * function for access. + * + * When the `name` is "*" an un-matched command + * will be passed as the first arg, followed by + * the rest of __ARGV__ remaining. + * + * Examples: + * + * program + * .version('0.0.1') + * .option('-C, --chdir ', 'change the working directory') + * .option('-c, --config ', 'set config path. defaults to ./deploy.conf') + * .option('-T, --no-tests', 'ignore test hook') + * + * program + * .command('setup') + * .description('run remote setup commands') + * .action(function() { + * console.log('setup'); + * }); + * + * program + * .command('exec ') + * .description('run the given remote command') + * .action(function(cmd) { + * console.log('exec "%s"', cmd); + * }); + * + * program + * .command('teardown [otherDirs...]') + * .description('run teardown commands') + * .action(function(dir, otherDirs) { + * console.log('dir "%s"', dir); + * if (otherDirs) { + * otherDirs.forEach(function (oDir) { + * console.log('dir "%s"', oDir); + * }); + * } + * }); + * + * program + * .command('*') + * .description('deploy the given env') + * .action(function(env) { + * console.log('deploying "%s"', env); + * }); + * + * program.parse(process.argv); + * + * @param {String} name + * @param {String} [desc] for git-style sub-commands + * @return {Command} the new command + * @api public + */ + +Command.prototype.command = function(name, desc, opts) { + if (typeof desc === 'object' && desc !== null) { + opts = desc; + desc = null; + } + opts = opts || {}; + var args = name.split(/ +/); + var cmd = new Command(args.shift()); + + if (desc) { + cmd.description(desc); + this.executables = true; + this._execs[cmd._name] = true; + if (opts.isDefault) this.defaultExecutable = cmd._name; + } + cmd._noHelp = !!opts.noHelp; + this.commands.push(cmd); + cmd.parseExpectedArgs(args); + cmd.parent = this; + + if (desc) return this; + return cmd; +}; + +/** + * Define argument syntax for the top-level command. + * + * @api public + */ + +Command.prototype.arguments = function(desc) { + return this.parseExpectedArgs(desc.split(/ +/)); +}; + +/** + * Add an implicit `help [cmd]` subcommand + * which invokes `--help` for the given command. + * + * @api private + */ + +Command.prototype.addImplicitHelpCommand = function() { + this.command('help [cmd]', 'display help for [cmd]'); +}; + +/** + * Parse expected `args`. + * + * For example `["[type]"]` becomes `[{ required: false, name: 'type' }]`. + * + * @param {Array} args + * @return {Command} for chaining + * @api public + */ + +Command.prototype.parseExpectedArgs = function(args) { + if (!args.length) return; + var self = this; + args.forEach(function(arg) { + var argDetails = { + required: false, + name: '', + variadic: false + }; + + switch (arg[0]) { + case '<': + argDetails.required = true; + argDetails.name = arg.slice(1, -1); + break; + case '[': + argDetails.name = arg.slice(1, -1); + break; + } + + if (argDetails.name.length > 3 && argDetails.name.slice(-3) === '...') { + argDetails.variadic = true; + argDetails.name = argDetails.name.slice(0, -3); + } + if (argDetails.name) { + self._args.push(argDetails); + } + }); + return this; +}; + +/** + * Register callback `fn` for the command. + * + * Examples: + * + * program + * .command('help') + * .description('display verbose help') + * .action(function() { + * // output help here + * }); + * + * @param {Function} fn + * @return {Command} for chaining + * @api public + */ + +Command.prototype.action = function(fn) { + var self = this; + var listener = function(args, unknown) { + // Parse any so-far unknown options + args = args || []; + unknown = unknown || []; + + var parsed = self.parseOptions(unknown); + + // Output help if necessary + outputHelpIfNecessary(self, parsed.unknown); + + // If there are still any unknown options, then we simply + // die, unless someone asked for help, in which case we give it + // to them, and then we die. + if (parsed.unknown.length > 0) { + self.unknownOption(parsed.unknown[0]); + } + + // Leftover arguments need to be pushed back. Fixes issue #56 + if (parsed.args.length) args = parsed.args.concat(args); + + self._args.forEach(function(arg, i) { + if (arg.required && args[i] == null) { + self.missingArgument(arg.name); + } else if (arg.variadic) { + if (i !== self._args.length - 1) { + self.variadicArgNotLast(arg.name); + } + + args[i] = args.splice(i); + } + }); + + // Always append ourselves to the end of the arguments, + // to make sure we match the number of arguments the user + // expects + if (self._args.length) { + args[self._args.length] = self; + } else { + args.push(self); + } + + fn.apply(self, args); + }; + var parent = this.parent || this; + var name = parent === this ? '*' : this._name; + parent.on('command:' + name, listener); + if (this._alias) parent.on('command:' + this._alias, listener); + return this; +}; + +/** + * Define option with `flags`, `description` and optional + * coercion `fn`. + * + * The `flags` string should contain both the short and long flags, + * separated by comma, a pipe or space. The following are all valid + * all will output this way when `--help` is used. + * + * "-p, --pepper" + * "-p|--pepper" + * "-p --pepper" + * + * Examples: + * + * // simple boolean defaulting to false + * program.option('-p, --pepper', 'add pepper'); + * + * --pepper + * program.pepper + * // => Boolean + * + * // simple boolean defaulting to true + * program.option('-C, --no-cheese', 'remove cheese'); + * + * program.cheese + * // => true + * + * --no-cheese + * program.cheese + * // => false + * + * // required argument + * program.option('-C, --chdir ', 'change the working directory'); + * + * --chdir /tmp + * program.chdir + * // => "/tmp" + * + * // optional argument + * program.option('-c, --cheese [type]', 'add cheese [marble]'); + * + * @param {String} flags + * @param {String} description + * @param {Function|*} [fn] or default + * @param {*} [defaultValue] + * @return {Command} for chaining + * @api public + */ + +Command.prototype.option = function(flags, description, fn, defaultValue) { + var self = this, + option = new Option(flags, description), + oname = option.name(), + name = option.attributeName(); + + // default as 3rd arg + if (typeof fn !== 'function') { + if (fn instanceof RegExp) { + var regex = fn; + fn = function(val, def) { + var m = regex.exec(val); + return m ? m[0] : def; + }; + } else { + defaultValue = fn; + fn = null; + } + } + + // preassign default value only for --no-*, [optional], or + if (!option.bool || option.optional || option.required) { + // when --no-* we make sure default is true + if (!option.bool) defaultValue = true; + // preassign only if we have a default + if (defaultValue !== undefined) { + self[name] = defaultValue; + option.defaultValue = defaultValue; + } + } + + // register the option + this.options.push(option); + + // when it's passed assign the value + // and conditionally invoke the callback + this.on('option:' + oname, function(val) { + // coercion + if (val !== null && fn) { + val = fn(val, self[name] === undefined ? defaultValue : self[name]); + } + + // unassigned or bool + if (typeof self[name] === 'boolean' || typeof self[name] === 'undefined') { + // if no value, bool true, and we have a default, then use it! + if (val == null) { + self[name] = option.bool + ? defaultValue || true + : false; + } else { + self[name] = val; + } + } else if (val !== null) { + // reassign + self[name] = val; + } + }); + + return this; +}; + +/** + * Allow unknown options on the command line. + * + * @param {Boolean} arg if `true` or omitted, no error will be thrown + * for unknown options. + * @api public + */ +Command.prototype.allowUnknownOption = function(arg) { + this._allowUnknownOption = arguments.length === 0 || arg; + return this; +}; + +/** + * Parse `argv`, settings options and invoking commands when defined. + * + * @param {Array} argv + * @return {Command} for chaining + * @api public + */ + +Command.prototype.parse = function(argv) { + // implicit help + if (this.executables) this.addImplicitHelpCommand(); + + // store raw args + this.rawArgs = argv; + + // guess name + this._name = this._name || basename(argv[1], '.js'); + + // github-style sub-commands with no sub-command + if (this.executables && argv.length < 3 && !this.defaultExecutable) { + // this user needs help + argv.push('--help'); + } + + // process argv + var parsed = this.parseOptions(this.normalize(argv.slice(2))); + var args = this.args = parsed.args; + + var result = this.parseArgs(this.args, parsed.unknown); + + // executable sub-commands + var name = result.args[0]; + + var aliasCommand = null; + // check alias of sub commands + if (name) { + aliasCommand = this.commands.filter(function(command) { + return command.alias() === name; + })[0]; + } + + if (this._execs[name] === true) { + return this.executeSubCommand(argv, args, parsed.unknown); + } else if (aliasCommand) { + // is alias of a subCommand + args[0] = aliasCommand._name; + return this.executeSubCommand(argv, args, parsed.unknown); + } else if (this.defaultExecutable) { + // use the default subcommand + args.unshift(this.defaultExecutable); + return this.executeSubCommand(argv, args, parsed.unknown); + } + + return result; +}; + +/** + * Execute a sub-command executable. + * + * @param {Array} argv + * @param {Array} args + * @param {Array} unknown + * @api private + */ + +Command.prototype.executeSubCommand = function(argv, args, unknown) { + args = args.concat(unknown); + + if (!args.length) this.help(); + if (args[0] === 'help' && args.length === 1) this.help(); + + // --help + if (args[0] === 'help') { + args[0] = args[1]; + args[1] = '--help'; + } + + // executable + var f = argv[1]; + // name of the subcommand, link `pm-install` + var bin = basename(f, path.extname(f)) + '-' + args[0]; + + // In case of globally installed, get the base dir where executable + // subcommand file should be located at + var baseDir; + + var resolvedLink = fs.realpathSync(f); + + baseDir = dirname(resolvedLink); + + // prefer local `./` to bin in the $PATH + var localBin = path.join(baseDir, bin); + + // whether bin file is a js script with explicit `.js` or `.ts` extension + var isExplicitJS = false; + if (exists(localBin + '.js')) { + bin = localBin + '.js'; + isExplicitJS = true; + } else if (exists(localBin + '.ts')) { + bin = localBin + '.ts'; + isExplicitJS = true; + } else if (exists(localBin)) { + bin = localBin; + } + + args = args.slice(1); + + var proc; + if (process.platform !== 'win32') { + if (isExplicitJS) { + args.unshift(bin); + // add executable arguments to spawn + args = (process.execArgv || []).concat(args); + + proc = spawn(process.argv[0], args, { stdio: 'inherit', customFds: [0, 1, 2] }); + } else { + proc = spawn(bin, args, { stdio: 'inherit', customFds: [0, 1, 2] }); + } + } else { + args.unshift(bin); + proc = spawn(process.execPath, args, { stdio: 'inherit' }); + } + + var signals = ['SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGINT', 'SIGHUP']; + signals.forEach(function(signal) { + process.on(signal, function() { + if (proc.killed === false && proc.exitCode === null) { + proc.kill(signal); + } + }); + }); + proc.on('close', process.exit.bind(process)); + proc.on('error', function(err) { + if (err.code === 'ENOENT') { + console.error('error: %s(1) does not exist, try --help', bin); + } else if (err.code === 'EACCES') { + console.error('error: %s(1) not executable. try chmod or run with root', bin); + } + process.exit(1); + }); + + // Store the reference to the child process + this.runningCommand = proc; +}; + +/** + * Normalize `args`, splitting joined short flags. For example + * the arg "-abc" is equivalent to "-a -b -c". + * This also normalizes equal sign and splits "--abc=def" into "--abc def". + * + * @param {Array} args + * @return {Array} + * @api private + */ + +Command.prototype.normalize = function(args) { + var ret = [], + arg, + lastOpt, + index; + + for (var i = 0, len = args.length; i < len; ++i) { + arg = args[i]; + if (i > 0) { + lastOpt = this.optionFor(args[i - 1]); + } + + if (arg === '--') { + // Honor option terminator + ret = ret.concat(args.slice(i)); + break; + } else if (lastOpt && lastOpt.required) { + ret.push(arg); + } else if (arg.length > 1 && arg[0] === '-' && arg[1] !== '-') { + arg.slice(1).split('').forEach(function(c) { + ret.push('-' + c); + }); + } else if (/^--/.test(arg) && ~(index = arg.indexOf('='))) { + ret.push(arg.slice(0, index), arg.slice(index + 1)); + } else { + ret.push(arg); + } + } + + return ret; +}; + +/** + * Parse command `args`. + * + * When listener(s) are available those + * callbacks are invoked, otherwise the "*" + * event is emitted and those actions are invoked. + * + * @param {Array} args + * @return {Command} for chaining + * @api private + */ + +Command.prototype.parseArgs = function(args, unknown) { + var name; + + if (args.length) { + name = args[0]; + if (this.listeners('command:' + name).length) { + this.emit('command:' + args.shift(), args, unknown); + } else { + this.emit('command:*', args); + } + } else { + outputHelpIfNecessary(this, unknown); + + // If there were no args and we have unknown options, + // then they are extraneous and we need to error. + if (unknown.length > 0) { + this.unknownOption(unknown[0]); + } + if (this.commands.length === 0 && + this._args.filter(function(a) { return a.required; }).length === 0) { + this.emit('command:*'); + } + } + + return this; +}; + +/** + * Return an option matching `arg` if any. + * + * @param {String} arg + * @return {Option} + * @api private + */ + +Command.prototype.optionFor = function(arg) { + for (var i = 0, len = this.options.length; i < len; ++i) { + if (this.options[i].is(arg)) { + return this.options[i]; + } + } +}; + +/** + * Parse options from `argv` returning `argv` + * void of these options. + * + * @param {Array} argv + * @return {Array} + * @api public + */ + +Command.prototype.parseOptions = function(argv) { + var args = [], + len = argv.length, + literal, + option, + arg; + + var unknownOptions = []; + + // parse options + for (var i = 0; i < len; ++i) { + arg = argv[i]; + + // literal args after -- + if (literal) { + args.push(arg); + continue; + } + + if (arg === '--') { + literal = true; + continue; + } + + // find matching Option + option = this.optionFor(arg); + + // option is defined + if (option) { + // requires arg + if (option.required) { + arg = argv[++i]; + if (arg == null) return this.optionMissingArgument(option); + this.emit('option:' + option.name(), arg); + // optional arg + } else if (option.optional) { + arg = argv[i + 1]; + if (arg == null || (arg[0] === '-' && arg !== '-')) { + arg = null; + } else { + ++i; + } + this.emit('option:' + option.name(), arg); + // bool + } else { + this.emit('option:' + option.name()); + } + continue; + } + + // looks like an option + if (arg.length > 1 && arg[0] === '-') { + unknownOptions.push(arg); + + // If the next argument looks like it might be + // an argument for this option, we pass it on. + // If it isn't, then it'll simply be ignored + if ((i + 1) < argv.length && argv[i + 1][0] !== '-') { + unknownOptions.push(argv[++i]); + } + continue; + } + + // arg + args.push(arg); + } + + return { args: args, unknown: unknownOptions }; +}; + +/** + * Return an object containing options as key-value pairs + * + * @return {Object} + * @api public + */ +Command.prototype.opts = function() { + var result = {}, + len = this.options.length; + + for (var i = 0; i < len; i++) { + var key = this.options[i].attributeName(); + result[key] = key === this._versionOptionName ? this._version : this[key]; + } + return result; +}; + +/** + * Argument `name` is missing. + * + * @param {String} name + * @api private + */ + +Command.prototype.missingArgument = function(name) { + console.error("error: missing required argument `%s'", name); + process.exit(1); +}; + +/** + * `Option` is missing an argument, but received `flag` or nothing. + * + * @param {String} option + * @param {String} flag + * @api private + */ + +Command.prototype.optionMissingArgument = function(option, flag) { + if (flag) { + console.error("error: option `%s' argument missing, got `%s'", option.flags, flag); + } else { + console.error("error: option `%s' argument missing", option.flags); + } + process.exit(1); +}; + +/** + * Unknown option `flag`. + * + * @param {String} flag + * @api private + */ + +Command.prototype.unknownOption = function(flag) { + if (this._allowUnknownOption) return; + console.error("error: unknown option `%s'", flag); + process.exit(1); +}; + +/** + * Variadic argument with `name` is not the last argument as required. + * + * @param {String} name + * @api private + */ + +Command.prototype.variadicArgNotLast = function(name) { + console.error("error: variadic arguments must be last `%s'", name); + process.exit(1); +}; + +/** + * Set the program version to `str`. + * + * This method auto-registers the "-V, --version" flag + * which will print the version number when passed. + * + * @param {String} str + * @param {String} [flags] + * @return {Command} for chaining + * @api public + */ + +Command.prototype.version = function(str, flags) { + if (arguments.length === 0) return this._version; + this._version = str; + flags = flags || '-V, --version'; + var versionOption = new Option(flags, 'output the version number'); + this._versionOptionName = versionOption.long.substr(2) || 'version'; + this.options.push(versionOption); + this.on('option:' + this._versionOptionName, function() { + process.stdout.write(str + '\n'); + process.exit(0); + }); + return this; +}; + +/** + * Set the description to `str`. + * + * @param {String} str + * @param {Object} argsDescription + * @return {String|Command} + * @api public + */ + +Command.prototype.description = function(str, argsDescription) { + if (arguments.length === 0) return this._description; + this._description = str; + this._argsDescription = argsDescription; + return this; +}; + +/** + * Set an alias for the command + * + * @param {String} alias + * @return {String|Command} + * @api public + */ + +Command.prototype.alias = function(alias) { + var command = this; + if (this.commands.length !== 0) { + command = this.commands[this.commands.length - 1]; + } + + if (arguments.length === 0) return command._alias; + + if (alias === command._name) throw new Error('Command alias can\'t be the same as its name'); + + command._alias = alias; + return this; +}; + +/** + * Set / get the command usage `str`. + * + * @param {String} str + * @return {String|Command} + * @api public + */ + +Command.prototype.usage = function(str) { + var args = this._args.map(function(arg) { + return humanReadableArgName(arg); + }); + + var usage = '[options]' + + (this.commands.length ? ' [command]' : '') + + (this._args.length ? ' ' + args.join(' ') : ''); + + if (arguments.length === 0) return this._usage || usage; + this._usage = str; + + return this; +}; + +/** + * Get or set the name of the command + * + * @param {String} str + * @return {String|Command} + * @api public + */ + +Command.prototype.name = function(str) { + if (arguments.length === 0) return this._name; + this._name = str; + return this; +}; + +/** + * Return prepared commands. + * + * @return {Array} + * @api private + */ + +Command.prototype.prepareCommands = function() { + return this.commands.filter(function(cmd) { + return !cmd._noHelp; + }).map(function(cmd) { + var args = cmd._args.map(function(arg) { + return humanReadableArgName(arg); + }).join(' '); + + return [ + cmd._name + + (cmd._alias ? '|' + cmd._alias : '') + + (cmd.options.length ? ' [options]' : '') + + (args ? ' ' + args : ''), + cmd._description + ]; + }); +}; + +/** + * Return the largest command length. + * + * @return {Number} + * @api private + */ + +Command.prototype.largestCommandLength = function() { + var commands = this.prepareCommands(); + return commands.reduce(function(max, command) { + return Math.max(max, command[0].length); + }, 0); +}; + +/** + * Return the largest option length. + * + * @return {Number} + * @api private + */ + +Command.prototype.largestOptionLength = function() { + var options = [].slice.call(this.options); + options.push({ + flags: '-h, --help' + }); + return options.reduce(function(max, option) { + return Math.max(max, option.flags.length); + }, 0); +}; + +/** + * Return the largest arg length. + * + * @return {Number} + * @api private + */ + +Command.prototype.largestArgLength = function() { + return this._args.reduce(function(max, arg) { + return Math.max(max, arg.name.length); + }, 0); +}; + +/** + * Return the pad width. + * + * @return {Number} + * @api private + */ + +Command.prototype.padWidth = function() { + var width = this.largestOptionLength(); + if (this._argsDescription && this._args.length) { + if (this.largestArgLength() > width) { + width = this.largestArgLength(); + } + } + + if (this.commands && this.commands.length) { + if (this.largestCommandLength() > width) { + width = this.largestCommandLength(); + } + } + + return width; +}; + +/** + * Return help for options. + * + * @return {String} + * @api private + */ + +Command.prototype.optionHelp = function() { + var width = this.padWidth(); + + // Append the help information + return this.options.map(function(option) { + return pad(option.flags, width) + ' ' + option.description + + ((option.bool && option.defaultValue !== undefined) ? ' (default: ' + JSON.stringify(option.defaultValue) + ')' : ''); + }).concat([pad('-h, --help', width) + ' ' + 'output usage information']) + .join('\n'); +}; + +/** + * Return command help documentation. + * + * @return {String} + * @api private + */ + +Command.prototype.commandHelp = function() { + if (!this.commands.length) return ''; + + var commands = this.prepareCommands(); + var width = this.padWidth(); + + return [ + 'Commands:', + commands.map(function(cmd) { + var desc = cmd[1] ? ' ' + cmd[1] : ''; + return (desc ? pad(cmd[0], width) : cmd[0]) + desc; + }).join('\n').replace(/^/gm, ' '), + '' + ].join('\n'); +}; + +/** + * Return program help documentation. + * + * @return {String} + * @api private + */ + +Command.prototype.helpInformation = function() { + var desc = []; + if (this._description) { + desc = [ + this._description, + '' + ]; + + var argsDescription = this._argsDescription; + if (argsDescription && this._args.length) { + var width = this.padWidth(); + desc.push('Arguments:'); + desc.push(''); + this._args.forEach(function(arg) { + desc.push(' ' + pad(arg.name, width) + ' ' + argsDescription[arg.name]); + }); + desc.push(''); + } + } + + var cmdName = this._name; + if (this._alias) { + cmdName = cmdName + '|' + this._alias; + } + var usage = [ + 'Usage: ' + cmdName + ' ' + this.usage(), + '' + ]; + + var cmds = []; + var commandHelp = this.commandHelp(); + if (commandHelp) cmds = [commandHelp]; + + var options = [ + 'Options:', + '' + this.optionHelp().replace(/^/gm, ' '), + '' + ]; + + return usage + .concat(desc) + .concat(options) + .concat(cmds) + .join('\n'); +}; + +/** + * Output help information for this command + * + * @api public + */ + +Command.prototype.outputHelp = function(cb) { + if (!cb) { + cb = function(passthru) { + return passthru; + }; + } + process.stdout.write(cb(this.helpInformation())); + this.emit('--help'); +}; + +/** + * Output help information and exit. + * + * @api public + */ + +Command.prototype.help = function(cb) { + this.outputHelp(cb); + process.exit(); +}; + +/** + * Camel-case the given `flag` + * + * @param {String} flag + * @return {String} + * @api private + */ + +function camelcase(flag) { + return flag.split('-').reduce(function(str, word) { + return str + word[0].toUpperCase() + word.slice(1); + }); +} + +/** + * Pad `str` to `width`. + * + * @param {String} str + * @param {Number} width + * @return {String} + * @api private + */ + +function pad(str, width) { + var len = Math.max(0, width - str.length); + return str + Array(len + 1).join(' '); +} + +/** + * Output help information if necessary + * + * @param {Command} command to output help for + * @param {Array} array of options to search for -h or --help + * @api private + */ + +function outputHelpIfNecessary(cmd, options) { + options = options || []; + for (var i = 0; i < options.length; i++) { + if (options[i] === '--help' || options[i] === '-h') { + cmd.outputHelp(); + process.exit(0); + } + } +} + +/** + * Takes an argument an returns its human readable equivalent for help usage. + * + * @param {Object} arg + * @return {String} + * @api private + */ + +function humanReadableArgName(arg) { + var nameOutput = arg.name + (arg.variadic === true ? '...' : ''); + + return arg.required + ? '<' + nameOutput + '>' + : '[' + nameOutput + ']'; +} + +// for versions before node v0.8 when there weren't `fs.existsSync` +function exists(file) { + try { + if (fs.statSync(file).isFile()) { + return true; + } + } catch (e) { + return false; + } +} diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/package.json b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/package.json new file mode 100644 index 0000000..fbb80d4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/package.json @@ -0,0 +1,70 @@ +{ + "_from": "commander@^2.20.3", + "_id": "commander@2.20.3", + "_inBundle": false, + "_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "_location": "/dxf/commander", + "_phantomChildren": {}, + "_requested": { + "type": "range", + "registry": true, + "raw": "commander@^2.20.3", + "name": "commander", + "escapedName": "commander", + "rawSpec": "^2.20.3", + "saveSpec": null, + "fetchSpec": "^2.20.3" + }, + "_requiredBy": [ + "/dxf" + ], + "_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "_shasum": "fd485e84c03eb4881c20722ba48035e8531aeb33", + "_spec": "commander@^2.20.3", + "_where": "C:\\node-v10.18.0-win-x64\\node_modules\\dxf", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "bugs": { + "url": "https://github.com/tj/commander.js/issues" + }, + "bundleDependencies": false, + "dependencies": {}, + "deprecated": false, + "description": "the complete solution for node.js command-line programs", + "devDependencies": { + "@types/node": "^12.7.8", + "eslint": "^6.4.0", + "should": "^13.2.3", + "sinon": "^7.5.0", + "standard": "^14.3.1", + "ts-node": "^8.4.1", + "typescript": "^3.6.3" + }, + "files": [ + "index.js", + "typings/index.d.ts" + ], + "homepage": "https://github.com/tj/commander.js#readme", + "keywords": [ + "commander", + "command", + "option", + "parser" + ], + "license": "MIT", + "main": "index", + "name": "commander", + "repository": { + "type": "git", + "url": "git+https://github.com/tj/commander.js.git" + }, + "scripts": { + "lint": "eslint index.js", + "test": "node test/run.js && npm run test-typings", + "test-typings": "tsc -p tsconfig.json" + }, + "typings": "typings/index.d.ts", + "version": "2.20.3" +} diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/typings/index.d.ts b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/typings/index.d.ts new file mode 100644 index 0000000..bcda277 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/commander/typings/index.d.ts @@ -0,0 +1,310 @@ +// Type definitions for commander 2.11 +// Project: https://github.com/visionmedia/commander.js +// Definitions by: Alan Agius , Marcelo Dezem , vvakame , Jules Randolph +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare namespace local { + + class Option { + flags: string; + required: boolean; + optional: boolean; + bool: boolean; + short?: string; + long: string; + description: string; + + /** + * Initialize a new `Option` with the given `flags` and `description`. + * + * @param {string} flags + * @param {string} [description] + */ + constructor(flags: string, description?: string); + } + + class Command extends NodeJS.EventEmitter { + [key: string]: any; + + args: string[]; + + /** + * Initialize a new `Command`. + * + * @param {string} [name] + */ + constructor(name?: string); + + /** + * Set the program version to `str`. + * + * This method auto-registers the "-V, --version" flag + * which will print the version number when passed. + * + * @param {string} str + * @param {string} [flags] + * @returns {Command} for chaining + */ + version(str: string, flags?: string): Command; + + /** + * Add command `name`. + * + * The `.action()` callback is invoked when the + * command `name` is specified via __ARGV__, + * and the remaining arguments are applied to the + * function for access. + * + * When the `name` is "*" an un-matched command + * will be passed as the first arg, followed by + * the rest of __ARGV__ remaining. + * + * @example + * program + * .version('0.0.1') + * .option('-C, --chdir ', 'change the working directory') + * .option('-c, --config ', 'set config path. defaults to ./deploy.conf') + * .option('-T, --no-tests', 'ignore test hook') + * + * program + * .command('setup') + * .description('run remote setup commands') + * .action(function() { + * console.log('setup'); + * }); + * + * program + * .command('exec ') + * .description('run the given remote command') + * .action(function(cmd) { + * console.log('exec "%s"', cmd); + * }); + * + * program + * .command('teardown [otherDirs...]') + * .description('run teardown commands') + * .action(function(dir, otherDirs) { + * console.log('dir "%s"', dir); + * if (otherDirs) { + * otherDirs.forEach(function (oDir) { + * console.log('dir "%s"', oDir); + * }); + * } + * }); + * + * program + * .command('*') + * .description('deploy the given env') + * .action(function(env) { + * console.log('deploying "%s"', env); + * }); + * + * program.parse(process.argv); + * + * @param {string} name + * @param {string} [desc] for git-style sub-commands + * @param {CommandOptions} [opts] command options + * @returns {Command} the new command + */ + command(name: string, desc?: string, opts?: commander.CommandOptions): Command; + + /** + * Define argument syntax for the top-level command. + * + * @param {string} desc + * @returns {Command} for chaining + */ + arguments(desc: string): Command; + + /** + * Parse expected `args`. + * + * For example `["[type]"]` becomes `[{ required: false, name: 'type' }]`. + * + * @param {string[]} args + * @returns {Command} for chaining + */ + parseExpectedArgs(args: string[]): Command; + + /** + * Register callback `fn` for the command. + * + * @example + * program + * .command('help') + * .description('display verbose help') + * .action(function() { + * // output help here + * }); + * + * @param {(...args: any[]) => void} fn + * @returns {Command} for chaining + */ + action(fn: (...args: any[]) => void): Command; + + /** + * Define option with `flags`, `description` and optional + * coercion `fn`. + * + * The `flags` string should contain both the short and long flags, + * separated by comma, a pipe or space. The following are all valid + * all will output this way when `--help` is used. + * + * "-p, --pepper" + * "-p|--pepper" + * "-p --pepper" + * + * @example + * // simple boolean defaulting to false + * program.option('-p, --pepper', 'add pepper'); + * + * --pepper + * program.pepper + * // => Boolean + * + * // simple boolean defaulting to true + * program.option('-C, --no-cheese', 'remove cheese'); + * + * program.cheese + * // => true + * + * --no-cheese + * program.cheese + * // => false + * + * // required argument + * program.option('-C, --chdir ', 'change the working directory'); + * + * --chdir /tmp + * program.chdir + * // => "/tmp" + * + * // optional argument + * program.option('-c, --cheese [type]', 'add cheese [marble]'); + * + * @param {string} flags + * @param {string} [description] + * @param {((arg1: any, arg2: any) => void) | RegExp} [fn] function or default + * @param {*} [defaultValue] + * @returns {Command} for chaining + */ + option(flags: string, description?: string, fn?: ((arg1: any, arg2: any) => void) | RegExp, defaultValue?: any): Command; + option(flags: string, description?: string, defaultValue?: any): Command; + + /** + * Allow unknown options on the command line. + * + * @param {boolean} [arg] if `true` or omitted, no error will be thrown for unknown options. + * @returns {Command} for chaining + */ + allowUnknownOption(arg?: boolean): Command; + + /** + * Parse `argv`, settings options and invoking commands when defined. + * + * @param {string[]} argv + * @returns {Command} for chaining + */ + parse(argv: string[]): Command; + + /** + * Parse options from `argv` returning `argv` void of these options. + * + * @param {string[]} argv + * @returns {ParseOptionsResult} + */ + parseOptions(argv: string[]): commander.ParseOptionsResult; + + /** + * Return an object containing options as key-value pairs + * + * @returns {{[key: string]: any}} + */ + opts(): { [key: string]: any }; + + /** + * Set the description to `str`. + * + * @param {string} str + * @param {{[argName: string]: string}} argsDescription + * @return {(Command | string)} + */ + description(str: string, argsDescription?: {[argName: string]: string}): Command; + description(): string; + + /** + * Set an alias for the command. + * + * @param {string} alias + * @return {(Command | string)} + */ + alias(alias: string): Command; + alias(): string; + + /** + * Set or get the command usage. + * + * @param {string} str + * @return {(Command | string)} + */ + usage(str: string): Command; + usage(): string; + + /** + * Set the name of the command. + * + * @param {string} str + * @return {Command} + */ + name(str: string): Command; + + /** + * Get the name of the command. + * + * @return {string} + */ + name(): string; + + /** + * Output help information for this command. + * + * @param {(str: string) => string} [cb] + */ + outputHelp(cb?: (str: string) => string): void; + + /** Output help information and exit. + * + * @param {(str: string) => string} [cb] + */ + help(cb?: (str: string) => string): never; + } + +} + +declare namespace commander { + + type Command = local.Command + + type Option = local.Option + + interface CommandOptions { + noHelp?: boolean; + isDefault?: boolean; + } + + interface ParseOptionsResult { + args: string[]; + unknown: string[]; + } + + interface CommanderStatic extends Command { + Command: typeof local.Command; + Option: typeof local.Option; + CommandOptions: CommandOptions; + ParseOptionsResult: ParseOptionsResult; + } + +} + +declare const commander: commander.CommanderStatic; +export = commander; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/LICENSE b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/LICENSE new file mode 100644 index 0000000..77c42f1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/LICENSE @@ -0,0 +1,47 @@ +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/README.md b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/README.md new file mode 100644 index 0000000..e1c9950 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/README.md @@ -0,0 +1,39 @@ +# lodash v4.17.20 + +The [Lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules. + +## Installation + +Using npm: +```shell +$ npm i -g npm +$ npm i --save lodash +``` + +In Node.js: +```js +// Load the full build. +var _ = require('lodash'); +// Load the core build. +var _ = require('lodash/core'); +// Load the FP build for immutable auto-curried iteratee-first data-last methods. +var fp = require('lodash/fp'); + +// Load method categories. +var array = require('lodash/array'); +var object = require('lodash/fp/object'); + +// Cherry-pick methods for smaller browserify/rollup/webpack bundles. +var at = require('lodash/at'); +var curryN = require('lodash/fp/curryN'); +``` + +See the [package source](https://github.com/lodash/lodash/tree/4.17.20-npm) for more details. + +**Note:**
+Install [n_](https://www.npmjs.com/package/n_) for Lodash use in the Node.js < 6 REPL. + +## Support + +Tested in Chrome 74-75, Firefox 66-67, IE 11, Edge 18, Safari 11-12, & Node.js 8-12.
+Automated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_DataView.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_DataView.js new file mode 100644 index 0000000..ac2d57c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_DataView.js @@ -0,0 +1,7 @@ +var getNative = require('./_getNative'), + root = require('./_root'); + +/* Built-in method references that are verified to be native. */ +var DataView = getNative(root, 'DataView'); + +module.exports = DataView; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Hash.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Hash.js new file mode 100644 index 0000000..b504fe3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Hash.js @@ -0,0 +1,32 @@ +var hashClear = require('./_hashClear'), + hashDelete = require('./_hashDelete'), + hashGet = require('./_hashGet'), + hashHas = require('./_hashHas'), + hashSet = require('./_hashSet'); + +/** + * Creates a hash object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } +} + +// Add methods to `Hash`. +Hash.prototype.clear = hashClear; +Hash.prototype['delete'] = hashDelete; +Hash.prototype.get = hashGet; +Hash.prototype.has = hashHas; +Hash.prototype.set = hashSet; + +module.exports = Hash; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_LazyWrapper.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_LazyWrapper.js new file mode 100644 index 0000000..81786c7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_LazyWrapper.js @@ -0,0 +1,28 @@ +var baseCreate = require('./_baseCreate'), + baseLodash = require('./_baseLodash'); + +/** Used as references for the maximum length and index of an array. */ +var MAX_ARRAY_LENGTH = 4294967295; + +/** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @constructor + * @param {*} value The value to wrap. + */ +function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; +} + +// Ensure `LazyWrapper` is an instance of `baseLodash`. +LazyWrapper.prototype = baseCreate(baseLodash.prototype); +LazyWrapper.prototype.constructor = LazyWrapper; + +module.exports = LazyWrapper; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_ListCache.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_ListCache.js new file mode 100644 index 0000000..26895c3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_ListCache.js @@ -0,0 +1,32 @@ +var listCacheClear = require('./_listCacheClear'), + listCacheDelete = require('./_listCacheDelete'), + listCacheGet = require('./_listCacheGet'), + listCacheHas = require('./_listCacheHas'), + listCacheSet = require('./_listCacheSet'); + +/** + * Creates an list cache object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } +} + +// Add methods to `ListCache`. +ListCache.prototype.clear = listCacheClear; +ListCache.prototype['delete'] = listCacheDelete; +ListCache.prototype.get = listCacheGet; +ListCache.prototype.has = listCacheHas; +ListCache.prototype.set = listCacheSet; + +module.exports = ListCache; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_LodashWrapper.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_LodashWrapper.js new file mode 100644 index 0000000..c1e4d9d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_LodashWrapper.js @@ -0,0 +1,22 @@ +var baseCreate = require('./_baseCreate'), + baseLodash = require('./_baseLodash'); + +/** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ +function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; +} + +LodashWrapper.prototype = baseCreate(baseLodash.prototype); +LodashWrapper.prototype.constructor = LodashWrapper; + +module.exports = LodashWrapper; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Map.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Map.js new file mode 100644 index 0000000..b73f29a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Map.js @@ -0,0 +1,7 @@ +var getNative = require('./_getNative'), + root = require('./_root'); + +/* Built-in method references that are verified to be native. */ +var Map = getNative(root, 'Map'); + +module.exports = Map; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_MapCache.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_MapCache.js new file mode 100644 index 0000000..4a4eea7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_MapCache.js @@ -0,0 +1,32 @@ +var mapCacheClear = require('./_mapCacheClear'), + mapCacheDelete = require('./_mapCacheDelete'), + mapCacheGet = require('./_mapCacheGet'), + mapCacheHas = require('./_mapCacheHas'), + mapCacheSet = require('./_mapCacheSet'); + +/** + * Creates a map cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } +} + +// Add methods to `MapCache`. +MapCache.prototype.clear = mapCacheClear; +MapCache.prototype['delete'] = mapCacheDelete; +MapCache.prototype.get = mapCacheGet; +MapCache.prototype.has = mapCacheHas; +MapCache.prototype.set = mapCacheSet; + +module.exports = MapCache; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Promise.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Promise.js new file mode 100644 index 0000000..247b9e1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Promise.js @@ -0,0 +1,7 @@ +var getNative = require('./_getNative'), + root = require('./_root'); + +/* Built-in method references that are verified to be native. */ +var Promise = getNative(root, 'Promise'); + +module.exports = Promise; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Set.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Set.js new file mode 100644 index 0000000..b3c8dcb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Set.js @@ -0,0 +1,7 @@ +var getNative = require('./_getNative'), + root = require('./_root'); + +/* Built-in method references that are verified to be native. */ +var Set = getNative(root, 'Set'); + +module.exports = Set; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_SetCache.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_SetCache.js new file mode 100644 index 0000000..6468b06 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_SetCache.js @@ -0,0 +1,27 @@ +var MapCache = require('./_MapCache'), + setCacheAdd = require('./_setCacheAdd'), + setCacheHas = require('./_setCacheHas'); + +/** + * + * Creates an array cache object to store unique values. + * + * @private + * @constructor + * @param {Array} [values] The values to cache. + */ +function SetCache(values) { + var index = -1, + length = values == null ? 0 : values.length; + + this.__data__ = new MapCache; + while (++index < length) { + this.add(values[index]); + } +} + +// Add methods to `SetCache`. +SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; +SetCache.prototype.has = setCacheHas; + +module.exports = SetCache; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Stack.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Stack.js new file mode 100644 index 0000000..80b2cf1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Stack.js @@ -0,0 +1,27 @@ +var ListCache = require('./_ListCache'), + stackClear = require('./_stackClear'), + stackDelete = require('./_stackDelete'), + stackGet = require('./_stackGet'), + stackHas = require('./_stackHas'), + stackSet = require('./_stackSet'); + +/** + * Creates a stack cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; +} + +// Add methods to `Stack`. +Stack.prototype.clear = stackClear; +Stack.prototype['delete'] = stackDelete; +Stack.prototype.get = stackGet; +Stack.prototype.has = stackHas; +Stack.prototype.set = stackSet; + +module.exports = Stack; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Symbol.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Symbol.js new file mode 100644 index 0000000..a013f7c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Symbol.js @@ -0,0 +1,6 @@ +var root = require('./_root'); + +/** Built-in value references. */ +var Symbol = root.Symbol; + +module.exports = Symbol; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Uint8Array.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Uint8Array.js new file mode 100644 index 0000000..2fb30e1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_Uint8Array.js @@ -0,0 +1,6 @@ +var root = require('./_root'); + +/** Built-in value references. */ +var Uint8Array = root.Uint8Array; + +module.exports = Uint8Array; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_WeakMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_WeakMap.js new file mode 100644 index 0000000..567f86c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_WeakMap.js @@ -0,0 +1,7 @@ +var getNative = require('./_getNative'), + root = require('./_root'); + +/* Built-in method references that are verified to be native. */ +var WeakMap = getNative(root, 'WeakMap'); + +module.exports = WeakMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_apply.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_apply.js new file mode 100644 index 0000000..36436dd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_apply.js @@ -0,0 +1,21 @@ +/** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ +function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); + } + return func.apply(thisArg, args); +} + +module.exports = apply; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayAggregator.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayAggregator.js new file mode 100644 index 0000000..d96c3ca --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayAggregator.js @@ -0,0 +1,22 @@ +/** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ +function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; +} + +module.exports = arrayAggregator; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEach.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEach.js new file mode 100644 index 0000000..2c5f579 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEach.js @@ -0,0 +1,22 @@ +/** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ +function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; +} + +module.exports = arrayEach; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEachRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEachRight.js new file mode 100644 index 0000000..976ca5c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEachRight.js @@ -0,0 +1,21 @@ +/** + * A specialized version of `_.forEachRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ +function arrayEachRight(array, iteratee) { + var length = array == null ? 0 : array.length; + + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; + } + } + return array; +} + +module.exports = arrayEachRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEvery.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEvery.js new file mode 100644 index 0000000..e26a918 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayEvery.js @@ -0,0 +1,23 @@ +/** + * A specialized version of `_.every` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ +function arrayEvery(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; +} + +module.exports = arrayEvery; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayFilter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayFilter.js new file mode 100644 index 0000000..75ea254 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayFilter.js @@ -0,0 +1,25 @@ +/** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ +function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; + } + } + return result; +} + +module.exports = arrayFilter; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayIncludes.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayIncludes.js new file mode 100644 index 0000000..3737a6d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayIncludes.js @@ -0,0 +1,17 @@ +var baseIndexOf = require('./_baseIndexOf'); + +/** + * A specialized version of `_.includes` for arrays without support for + * specifying an index to search from. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ +function arrayIncludes(array, value) { + var length = array == null ? 0 : array.length; + return !!length && baseIndexOf(array, value, 0) > -1; +} + +module.exports = arrayIncludes; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayIncludesWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayIncludesWith.js new file mode 100644 index 0000000..235fd97 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayIncludesWith.js @@ -0,0 +1,22 @@ +/** + * This function is like `arrayIncludes` except that it accepts a comparator. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @param {Function} comparator The comparator invoked per element. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ +function arrayIncludesWith(array, value, comparator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (comparator(value, array[index])) { + return true; + } + } + return false; +} + +module.exports = arrayIncludesWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayLikeKeys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayLikeKeys.js new file mode 100644 index 0000000..b2ec9ce --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayLikeKeys.js @@ -0,0 +1,49 @@ +var baseTimes = require('./_baseTimes'), + isArguments = require('./isArguments'), + isArray = require('./isArray'), + isBuffer = require('./isBuffer'), + isIndex = require('./_isIndex'), + isTypedArray = require('./isTypedArray'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ +function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; + + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); + } + } + return result; +} + +module.exports = arrayLikeKeys; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayMap.js new file mode 100644 index 0000000..22b2246 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayMap.js @@ -0,0 +1,21 @@ +/** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ +function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; +} + +module.exports = arrayMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayPush.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayPush.js new file mode 100644 index 0000000..7d742b3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayPush.js @@ -0,0 +1,20 @@ +/** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ +function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; + } + return array; +} + +module.exports = arrayPush; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayReduce.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayReduce.js new file mode 100644 index 0000000..de8b79b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayReduce.js @@ -0,0 +1,26 @@ +/** + * A specialized version of `_.reduce` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the first element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ +function arrayReduce(array, iteratee, accumulator, initAccum) { + var index = -1, + length = array == null ? 0 : array.length; + + if (initAccum && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; +} + +module.exports = arrayReduce; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayReduceRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayReduceRight.js new file mode 100644 index 0000000..22d8976 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayReduceRight.js @@ -0,0 +1,24 @@ +/** + * A specialized version of `_.reduceRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the last element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ +function arrayReduceRight(array, iteratee, accumulator, initAccum) { + var length = array == null ? 0 : array.length; + if (initAccum && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); + } + return accumulator; +} + +module.exports = arrayReduceRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySample.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySample.js new file mode 100644 index 0000000..fcab010 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySample.js @@ -0,0 +1,15 @@ +var baseRandom = require('./_baseRandom'); + +/** + * A specialized version of `_.sample` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @returns {*} Returns the random element. + */ +function arraySample(array) { + var length = array.length; + return length ? array[baseRandom(0, length - 1)] : undefined; +} + +module.exports = arraySample; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySampleSize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySampleSize.js new file mode 100644 index 0000000..8c7e364 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySampleSize.js @@ -0,0 +1,17 @@ +var baseClamp = require('./_baseClamp'), + copyArray = require('./_copyArray'), + shuffleSelf = require('./_shuffleSelf'); + +/** + * A specialized version of `_.sampleSize` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ +function arraySampleSize(array, n) { + return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); +} + +module.exports = arraySampleSize; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayShuffle.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayShuffle.js new file mode 100644 index 0000000..46313a3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arrayShuffle.js @@ -0,0 +1,15 @@ +var copyArray = require('./_copyArray'), + shuffleSelf = require('./_shuffleSelf'); + +/** + * A specialized version of `_.shuffle` for arrays. + * + * @private + * @param {Array} array The array to shuffle. + * @returns {Array} Returns the new shuffled array. + */ +function arrayShuffle(array) { + return shuffleSelf(copyArray(array)); +} + +module.exports = arrayShuffle; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySome.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySome.js new file mode 100644 index 0000000..6fd02fd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_arraySome.js @@ -0,0 +1,23 @@ +/** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ +function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } + } + return false; +} + +module.exports = arraySome; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiSize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiSize.js new file mode 100644 index 0000000..11d29c3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiSize.js @@ -0,0 +1,12 @@ +var baseProperty = require('./_baseProperty'); + +/** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ +var asciiSize = baseProperty('length'); + +module.exports = asciiSize; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiToArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiToArray.js new file mode 100644 index 0000000..8e3dd5b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiToArray.js @@ -0,0 +1,12 @@ +/** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function asciiToArray(string) { + return string.split(''); +} + +module.exports = asciiToArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiWords.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiWords.js new file mode 100644 index 0000000..d765f0f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_asciiWords.js @@ -0,0 +1,15 @@ +/** Used to match words composed of alphanumeric characters. */ +var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; + +/** + * Splits an ASCII `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ +function asciiWords(string) { + return string.match(reAsciiWord) || []; +} + +module.exports = asciiWords; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assignMergeValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assignMergeValue.js new file mode 100644 index 0000000..cb1185e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assignMergeValue.js @@ -0,0 +1,20 @@ +var baseAssignValue = require('./_baseAssignValue'), + eq = require('./eq'); + +/** + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ +function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } +} + +module.exports = assignMergeValue; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assignValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assignValue.js new file mode 100644 index 0000000..4083957 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assignValue.js @@ -0,0 +1,28 @@ +var baseAssignValue = require('./_baseAssignValue'), + eq = require('./eq'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ +function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } +} + +module.exports = assignValue; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assocIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assocIndexOf.js new file mode 100644 index 0000000..5b77a2b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_assocIndexOf.js @@ -0,0 +1,21 @@ +var eq = require('./eq'); + +/** + * Gets the index at which the `key` is found in `array` of key-value pairs. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; +} + +module.exports = assocIndexOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAggregator.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAggregator.js new file mode 100644 index 0000000..4bc9e91 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAggregator.js @@ -0,0 +1,21 @@ +var baseEach = require('./_baseEach'); + +/** + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ +function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; +} + +module.exports = baseAggregator; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssign.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssign.js new file mode 100644 index 0000000..e5c4a1a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssign.js @@ -0,0 +1,17 @@ +var copyObject = require('./_copyObject'), + keys = require('./keys'); + +/** + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ +function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); +} + +module.exports = baseAssign; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssignIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssignIn.js new file mode 100644 index 0000000..6624f90 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssignIn.js @@ -0,0 +1,17 @@ +var copyObject = require('./_copyObject'), + keysIn = require('./keysIn'); + +/** + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ +function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); +} + +module.exports = baseAssignIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssignValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssignValue.js new file mode 100644 index 0000000..d6f66ef --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAssignValue.js @@ -0,0 +1,25 @@ +var defineProperty = require('./_defineProperty'); + +/** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ +function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } +} + +module.exports = baseAssignValue; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAt.js new file mode 100644 index 0000000..90e4237 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseAt.js @@ -0,0 +1,23 @@ +var get = require('./get'); + +/** + * The base implementation of `_.at` without support for individual paths. + * + * @private + * @param {Object} object The object to iterate over. + * @param {string[]} paths The property paths to pick. + * @returns {Array} Returns the picked elements. + */ +function baseAt(object, paths) { + var index = -1, + length = paths.length, + result = Array(length), + skip = object == null; + + while (++index < length) { + result[index] = skip ? undefined : get(object, paths[index]); + } + return result; +} + +module.exports = baseAt; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseClamp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseClamp.js new file mode 100644 index 0000000..a1c5692 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseClamp.js @@ -0,0 +1,22 @@ +/** + * The base implementation of `_.clamp` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + */ +function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; + } + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; +} + +module.exports = baseClamp; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseClone.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseClone.js new file mode 100644 index 0000000..69f8705 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseClone.js @@ -0,0 +1,166 @@ +var Stack = require('./_Stack'), + arrayEach = require('./_arrayEach'), + assignValue = require('./_assignValue'), + baseAssign = require('./_baseAssign'), + baseAssignIn = require('./_baseAssignIn'), + cloneBuffer = require('./_cloneBuffer'), + copyArray = require('./_copyArray'), + copySymbols = require('./_copySymbols'), + copySymbolsIn = require('./_copySymbolsIn'), + getAllKeys = require('./_getAllKeys'), + getAllKeysIn = require('./_getAllKeysIn'), + getTag = require('./_getTag'), + initCloneArray = require('./_initCloneArray'), + initCloneByTag = require('./_initCloneByTag'), + initCloneObject = require('./_initCloneObject'), + isArray = require('./isArray'), + isBuffer = require('./isBuffer'), + isMap = require('./isMap'), + isObject = require('./isObject'), + isSet = require('./isSet'), + keys = require('./keys'), + keysIn = require('./keysIn'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + objectTag = '[object Object]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + weakMapTag = '[object WeakMap]'; + +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + +/** Used to identify `toStringTag` values supported by `_.clone`. */ +var cloneableTags = {}; +cloneableTags[argsTag] = cloneableTags[arrayTag] = +cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = +cloneableTags[boolTag] = cloneableTags[dateTag] = +cloneableTags[float32Tag] = cloneableTags[float64Tag] = +cloneableTags[int8Tag] = cloneableTags[int16Tag] = +cloneableTags[int32Tag] = cloneableTags[mapTag] = +cloneableTags[numberTag] = cloneableTags[objectTag] = +cloneableTags[regexpTag] = cloneableTags[setTag] = +cloneableTags[stringTag] = cloneableTags[symbolTag] = +cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = +cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; +cloneableTags[errorTag] = cloneableTags[funcTag] = +cloneableTags[weakMapTag] = false; + +/** + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. + */ +function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); + } + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; + + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + } else if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + return result; +} + +module.exports = baseClone; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseConforms.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseConforms.js new file mode 100644 index 0000000..947e20d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseConforms.js @@ -0,0 +1,18 @@ +var baseConformsTo = require('./_baseConformsTo'), + keys = require('./keys'); + +/** + * The base implementation of `_.conforms` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + */ +function baseConforms(source) { + var props = keys(source); + return function(object) { + return baseConformsTo(object, source, props); + }; +} + +module.exports = baseConforms; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseConformsTo.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseConformsTo.js new file mode 100644 index 0000000..e449cb8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseConformsTo.js @@ -0,0 +1,27 @@ +/** + * The base implementation of `_.conformsTo` which accepts `props` to check. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + */ +function baseConformsTo(object, source, props) { + var length = props.length; + if (object == null) { + return !length; + } + object = Object(object); + while (length--) { + var key = props[length], + predicate = source[key], + value = object[key]; + + if ((value === undefined && !(key in object)) || !predicate(value)) { + return false; + } + } + return true; +} + +module.exports = baseConformsTo; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseCreate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseCreate.js new file mode 100644 index 0000000..ffa6a52 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseCreate.js @@ -0,0 +1,30 @@ +var isObject = require('./isObject'); + +/** Built-in value references. */ +var objectCreate = Object.create; + +/** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ +var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; + } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; +}()); + +module.exports = baseCreate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseDelay.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseDelay.js new file mode 100644 index 0000000..1486d69 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseDelay.js @@ -0,0 +1,21 @@ +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ +function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); +} + +module.exports = baseDelay; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseDifference.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseDifference.js new file mode 100644 index 0000000..343ac19 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseDifference.js @@ -0,0 +1,67 @@ +var SetCache = require('./_SetCache'), + arrayIncludes = require('./_arrayIncludes'), + arrayIncludesWith = require('./_arrayIncludesWith'), + arrayMap = require('./_arrayMap'), + baseUnary = require('./_baseUnary'), + cacheHas = require('./_cacheHas'); + +/** Used as the size to enable large array optimizations. */ +var LARGE_ARRAY_SIZE = 200; + +/** + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + */ +function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; + + if (!length) { + return result; + } + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); + } + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; + } + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; +} + +module.exports = baseDifference; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEach.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEach.js new file mode 100644 index 0000000..512c067 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEach.js @@ -0,0 +1,14 @@ +var baseForOwn = require('./_baseForOwn'), + createBaseEach = require('./_createBaseEach'); + +/** + * The base implementation of `_.forEach` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ +var baseEach = createBaseEach(baseForOwn); + +module.exports = baseEach; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEachRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEachRight.js new file mode 100644 index 0000000..0a8feec --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEachRight.js @@ -0,0 +1,14 @@ +var baseForOwnRight = require('./_baseForOwnRight'), + createBaseEach = require('./_createBaseEach'); + +/** + * The base implementation of `_.forEachRight` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ +var baseEachRight = createBaseEach(baseForOwnRight, true); + +module.exports = baseEachRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEvery.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEvery.js new file mode 100644 index 0000000..fa52f7b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseEvery.js @@ -0,0 +1,21 @@ +var baseEach = require('./_baseEach'); + +/** + * The base implementation of `_.every` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ +function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; +} + +module.exports = baseEvery; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseExtremum.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseExtremum.js new file mode 100644 index 0000000..9d6aa77 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseExtremum.js @@ -0,0 +1,32 @@ +var isSymbol = require('./isSymbol'); + +/** + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. + */ +function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; +} + +module.exports = baseExtremum; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFill.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFill.js new file mode 100644 index 0000000..46ef9c7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFill.js @@ -0,0 +1,32 @@ +var toInteger = require('./toInteger'), + toLength = require('./toLength'); + +/** + * The base implementation of `_.fill` without an iteratee call guard. + * + * @private + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + */ +function baseFill(array, value, start, end) { + var length = array.length; + + start = toInteger(start); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : toInteger(end); + if (end < 0) { + end += length; + } + end = start > end ? 0 : toLength(end); + while (start < end) { + array[start++] = value; + } + return array; +} + +module.exports = baseFill; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFilter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFilter.js new file mode 100644 index 0000000..4678477 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFilter.js @@ -0,0 +1,21 @@ +var baseEach = require('./_baseEach'); + +/** + * The base implementation of `_.filter` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ +function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; +} + +module.exports = baseFilter; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFindIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFindIndex.js new file mode 100644 index 0000000..e3f5d8a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFindIndex.js @@ -0,0 +1,24 @@ +/** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; +} + +module.exports = baseFindIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFindKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFindKey.js new file mode 100644 index 0000000..2e430f3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFindKey.js @@ -0,0 +1,23 @@ +/** + * The base implementation of methods like `_.findKey` and `_.findLastKey`, + * without support for iteratee shorthands, which iterates over `collection` + * using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the found element or its key, else `undefined`. + */ +function baseFindKey(collection, predicate, eachFunc) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = key; + return false; + } + }); + return result; +} + +module.exports = baseFindKey; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFlatten.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFlatten.js new file mode 100644 index 0000000..4b1e009 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFlatten.js @@ -0,0 +1,38 @@ +var arrayPush = require('./_arrayPush'), + isFlattenable = require('./_isFlattenable'); + +/** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ +function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; +} + +module.exports = baseFlatten; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFor.js new file mode 100644 index 0000000..d946590 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFor.js @@ -0,0 +1,16 @@ +var createBaseFor = require('./_createBaseFor'); + +/** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ +var baseFor = createBaseFor(); + +module.exports = baseFor; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForOwn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForOwn.js new file mode 100644 index 0000000..503d523 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForOwn.js @@ -0,0 +1,16 @@ +var baseFor = require('./_baseFor'), + keys = require('./keys'); + +/** + * The base implementation of `_.forOwn` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ +function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); +} + +module.exports = baseForOwn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForOwnRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForOwnRight.js new file mode 100644 index 0000000..a4b10e6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForOwnRight.js @@ -0,0 +1,16 @@ +var baseForRight = require('./_baseForRight'), + keys = require('./keys'); + +/** + * The base implementation of `_.forOwnRight` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ +function baseForOwnRight(object, iteratee) { + return object && baseForRight(object, iteratee, keys); +} + +module.exports = baseForOwnRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForRight.js new file mode 100644 index 0000000..32842cd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseForRight.js @@ -0,0 +1,15 @@ +var createBaseFor = require('./_createBaseFor'); + +/** + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ +var baseForRight = createBaseFor(true); + +module.exports = baseForRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFunctions.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFunctions.js new file mode 100644 index 0000000..d23bc9b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseFunctions.js @@ -0,0 +1,19 @@ +var arrayFilter = require('./_arrayFilter'), + isFunction = require('./isFunction'); + +/** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. + */ +function baseFunctions(object, props) { + return arrayFilter(props, function(key) { + return isFunction(object[key]); + }); +} + +module.exports = baseFunctions; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGet.js new file mode 100644 index 0000000..a194913 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGet.js @@ -0,0 +1,24 @@ +var castPath = require('./_castPath'), + toKey = require('./_toKey'); + +/** + * The base implementation of `_.get` without support for default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. + */ +function baseGet(object, path) { + path = castPath(path, object); + + var index = 0, + length = path.length; + + while (object != null && index < length) { + object = object[toKey(path[index++])]; + } + return (index && index == length) ? object : undefined; +} + +module.exports = baseGet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGetAllKeys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGetAllKeys.js new file mode 100644 index 0000000..8ad204e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGetAllKeys.js @@ -0,0 +1,20 @@ +var arrayPush = require('./_arrayPush'), + isArray = require('./isArray'); + +/** + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. + */ +function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); +} + +module.exports = baseGetAllKeys; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGetTag.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGetTag.js new file mode 100644 index 0000000..b927ccc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGetTag.js @@ -0,0 +1,28 @@ +var Symbol = require('./_Symbol'), + getRawTag = require('./_getRawTag'), + objectToString = require('./_objectToString'); + +/** `Object#toString` result references. */ +var nullTag = '[object Null]', + undefinedTag = '[object Undefined]'; + +/** Built-in value references. */ +var symToStringTag = Symbol ? Symbol.toStringTag : undefined; + +/** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ +function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; + } + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); +} + +module.exports = baseGetTag; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGt.js new file mode 100644 index 0000000..502d273 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseGt.js @@ -0,0 +1,14 @@ +/** + * The base implementation of `_.gt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + */ +function baseGt(value, other) { + return value > other; +} + +module.exports = baseGt; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseHas.js new file mode 100644 index 0000000..1b73032 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseHas.js @@ -0,0 +1,19 @@ +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * The base implementation of `_.has` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ +function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); +} + +module.exports = baseHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseHasIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseHasIn.js new file mode 100644 index 0000000..2e0d042 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseHasIn.js @@ -0,0 +1,13 @@ +/** + * The base implementation of `_.hasIn` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ +function baseHasIn(object, key) { + return object != null && key in Object(object); +} + +module.exports = baseHasIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInRange.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInRange.js new file mode 100644 index 0000000..ec95666 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInRange.js @@ -0,0 +1,18 @@ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max, + nativeMin = Math.min; + +/** + * The base implementation of `_.inRange` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to check. + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + */ +function baseInRange(number, start, end) { + return number >= nativeMin(start, end) && number < nativeMax(start, end); +} + +module.exports = baseInRange; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIndexOf.js new file mode 100644 index 0000000..167e706 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIndexOf.js @@ -0,0 +1,20 @@ +var baseFindIndex = require('./_baseFindIndex'), + baseIsNaN = require('./_baseIsNaN'), + strictIndexOf = require('./_strictIndexOf'); + +/** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); +} + +module.exports = baseIndexOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIndexOfWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIndexOfWith.js new file mode 100644 index 0000000..f815fe0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIndexOfWith.js @@ -0,0 +1,23 @@ +/** + * This function is like `baseIndexOf` except that it accepts a comparator. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @param {Function} comparator The comparator invoked per element. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function baseIndexOfWith(array, value, fromIndex, comparator) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (comparator(array[index], value)) { + return index; + } + } + return -1; +} + +module.exports = baseIndexOfWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIntersection.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIntersection.js new file mode 100644 index 0000000..c1d250c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIntersection.js @@ -0,0 +1,74 @@ +var SetCache = require('./_SetCache'), + arrayIncludes = require('./_arrayIncludes'), + arrayIncludesWith = require('./_arrayIncludesWith'), + arrayMap = require('./_arrayMap'), + baseUnary = require('./_baseUnary'), + cacheHas = require('./_cacheHas'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; + +/** + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. + */ +function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, + result = []; + + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); + } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; + } + array = arrays[0]; + + var index = -1, + seen = caches[0]; + + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } + } + return result; +} + +module.exports = baseIntersection; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInverter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInverter.js new file mode 100644 index 0000000..fbc337f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInverter.js @@ -0,0 +1,21 @@ +var baseForOwn = require('./_baseForOwn'); + +/** + * The base implementation of `_.invert` and `_.invertBy` which inverts + * `object` with values transformed by `iteratee` and set by `setter`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform values. + * @param {Object} accumulator The initial inverted object. + * @returns {Function} Returns `accumulator`. + */ +function baseInverter(object, setter, iteratee, accumulator) { + baseForOwn(object, function(value, key, object) { + setter(accumulator, iteratee(value), key, object); + }); + return accumulator; +} + +module.exports = baseInverter; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInvoke.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInvoke.js new file mode 100644 index 0000000..49bcf3c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseInvoke.js @@ -0,0 +1,24 @@ +var apply = require('./_apply'), + castPath = require('./_castPath'), + last = require('./last'), + parent = require('./_parent'), + toKey = require('./_toKey'); + +/** + * The base implementation of `_.invoke` without support for individual + * method arguments. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + */ +function baseInvoke(object, path, args) { + path = castPath(path, object); + object = parent(object, path); + var func = object == null ? object : object[toKey(last(path))]; + return func == null ? undefined : apply(func, object, args); +} + +module.exports = baseInvoke; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsArguments.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsArguments.js new file mode 100644 index 0000000..b3562cc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsArguments.js @@ -0,0 +1,18 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]'; + +/** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ +function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; +} + +module.exports = baseIsArguments; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsArrayBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsArrayBuffer.js new file mode 100644 index 0000000..a2c4f30 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsArrayBuffer.js @@ -0,0 +1,17 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +var arrayBufferTag = '[object ArrayBuffer]'; + +/** + * The base implementation of `_.isArrayBuffer` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + */ +function baseIsArrayBuffer(value) { + return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; +} + +module.exports = baseIsArrayBuffer; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsDate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsDate.js new file mode 100644 index 0000000..ba67c78 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsDate.js @@ -0,0 +1,18 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var dateTag = '[object Date]'; + +/** + * The base implementation of `_.isDate` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + */ +function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; +} + +module.exports = baseIsDate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsEqual.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsEqual.js new file mode 100644 index 0000000..00a68a4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsEqual.js @@ -0,0 +1,28 @@ +var baseIsEqualDeep = require('./_baseIsEqualDeep'), + isObjectLike = require('./isObjectLike'); + +/** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ +function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); +} + +module.exports = baseIsEqual; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsEqualDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsEqualDeep.js new file mode 100644 index 0000000..e3cfd6a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsEqualDeep.js @@ -0,0 +1,83 @@ +var Stack = require('./_Stack'), + equalArrays = require('./_equalArrays'), + equalByTag = require('./_equalByTag'), + equalObjects = require('./_equalObjects'), + getTag = require('./_getTag'), + isArray = require('./isArray'), + isBuffer = require('./isBuffer'), + isTypedArray = require('./isTypedArray'); + +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1; + +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + objectTag = '[object Object]'; + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ +function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; + } + objIsArr = true; + objIsObj = false; + } + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + } + } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); +} + +module.exports = baseIsEqualDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsMap.js new file mode 100644 index 0000000..02a4021 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsMap.js @@ -0,0 +1,18 @@ +var getTag = require('./_getTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var mapTag = '[object Map]'; + +/** + * The base implementation of `_.isMap` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + */ +function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; +} + +module.exports = baseIsMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsMatch.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsMatch.js new file mode 100644 index 0000000..72494be --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsMatch.js @@ -0,0 +1,62 @@ +var Stack = require('./_Stack'), + baseIsEqual = require('./_baseIsEqual'); + +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + +/** + * The base implementation of `_.isMatch` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + */ +function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; + } + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } + } + return true; +} + +module.exports = baseIsMatch; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsNaN.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsNaN.js new file mode 100644 index 0000000..316f1eb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsNaN.js @@ -0,0 +1,12 @@ +/** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ +function baseIsNaN(value) { + return value !== value; +} + +module.exports = baseIsNaN; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsNative.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsNative.js new file mode 100644 index 0000000..8702330 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsNative.js @@ -0,0 +1,47 @@ +var isFunction = require('./isFunction'), + isMasked = require('./_isMasked'), + isObject = require('./isObject'), + toSource = require('./_toSource'); + +/** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ +var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; + +/** Used to detect host constructors (Safari). */ +var reIsHostCtor = /^\[object .+?Constructor\]$/; + +/** Used for built-in method references. */ +var funcProto = Function.prototype, + objectProto = Object.prototype; + +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** Used to detect if a method is native. */ +var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' +); + +/** + * The base implementation of `_.isNative` without bad shim checks. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + */ +function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; + } + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); +} + +module.exports = baseIsNative; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsRegExp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsRegExp.js new file mode 100644 index 0000000..6cd7c1a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsRegExp.js @@ -0,0 +1,18 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var regexpTag = '[object RegExp]'; + +/** + * The base implementation of `_.isRegExp` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + */ +function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; +} + +module.exports = baseIsRegExp; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsSet.js new file mode 100644 index 0000000..6dee367 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsSet.js @@ -0,0 +1,18 @@ +var getTag = require('./_getTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var setTag = '[object Set]'; + +/** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ +function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; +} + +module.exports = baseIsSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsTypedArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsTypedArray.js new file mode 100644 index 0000000..1edb32f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIsTypedArray.js @@ -0,0 +1,60 @@ +var baseGetTag = require('./_baseGetTag'), + isLength = require('./isLength'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + funcTag = '[object Function]', + mapTag = '[object Map]', + numberTag = '[object Number]', + objectTag = '[object Object]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + weakMapTag = '[object WeakMap]'; + +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + +/** Used to identify `toStringTag` values of typed arrays. */ +var typedArrayTags = {}; +typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = +typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = +typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = +typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = +typedArrayTags[uint32Tag] = true; +typedArrayTags[argsTag] = typedArrayTags[arrayTag] = +typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = +typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = +typedArrayTags[errorTag] = typedArrayTags[funcTag] = +typedArrayTags[mapTag] = typedArrayTags[numberTag] = +typedArrayTags[objectTag] = typedArrayTags[regexpTag] = +typedArrayTags[setTag] = typedArrayTags[stringTag] = +typedArrayTags[weakMapTag] = false; + +/** + * The base implementation of `_.isTypedArray` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ +function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; +} + +module.exports = baseIsTypedArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIteratee.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIteratee.js new file mode 100644 index 0000000..995c257 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseIteratee.js @@ -0,0 +1,31 @@ +var baseMatches = require('./_baseMatches'), + baseMatchesProperty = require('./_baseMatchesProperty'), + identity = require('./identity'), + isArray = require('./isArray'), + property = require('./property'); + +/** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ +function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; + } + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); +} + +module.exports = baseIteratee; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseKeys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseKeys.js new file mode 100644 index 0000000..45e9e6f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseKeys.js @@ -0,0 +1,30 @@ +var isPrototype = require('./_isPrototype'), + nativeKeys = require('./_nativeKeys'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ +function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); + } + } + return result; +} + +module.exports = baseKeys; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseKeysIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseKeysIn.js new file mode 100644 index 0000000..ea8a0a1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseKeysIn.js @@ -0,0 +1,33 @@ +var isObject = require('./isObject'), + isPrototype = require('./_isPrototype'), + nativeKeysIn = require('./_nativeKeysIn'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ +function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); + } + var isProto = isPrototype(object), + result = []; + + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; +} + +module.exports = baseKeysIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseLodash.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseLodash.js new file mode 100644 index 0000000..f76c790 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseLodash.js @@ -0,0 +1,10 @@ +/** + * The function whose prototype chain sequence wrappers inherit from. + * + * @private + */ +function baseLodash() { + // No operation performed. +} + +module.exports = baseLodash; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseLt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseLt.js new file mode 100644 index 0000000..8674d29 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseLt.js @@ -0,0 +1,14 @@ +/** + * The base implementation of `_.lt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + */ +function baseLt(value, other) { + return value < other; +} + +module.exports = baseLt; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMap.js new file mode 100644 index 0000000..0bf5cea --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMap.js @@ -0,0 +1,22 @@ +var baseEach = require('./_baseEach'), + isArrayLike = require('./isArrayLike'); + +/** + * The base implementation of `_.map` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ +function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; +} + +module.exports = baseMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMatches.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMatches.js new file mode 100644 index 0000000..e56582a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMatches.js @@ -0,0 +1,22 @@ +var baseIsMatch = require('./_baseIsMatch'), + getMatchData = require('./_getMatchData'), + matchesStrictComparable = require('./_matchesStrictComparable'); + +/** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ +function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); + } + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; +} + +module.exports = baseMatches; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMatchesProperty.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMatchesProperty.js new file mode 100644 index 0000000..24afd89 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMatchesProperty.js @@ -0,0 +1,33 @@ +var baseIsEqual = require('./_baseIsEqual'), + get = require('./get'), + hasIn = require('./hasIn'), + isKey = require('./_isKey'), + isStrictComparable = require('./_isStrictComparable'), + matchesStrictComparable = require('./_matchesStrictComparable'), + toKey = require('./_toKey'); + +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + +/** + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ +function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; +} + +module.exports = baseMatchesProperty; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMean.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMean.js new file mode 100644 index 0000000..fa9e00a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMean.js @@ -0,0 +1,20 @@ +var baseSum = require('./_baseSum'); + +/** Used as references for various `Number` constants. */ +var NAN = 0 / 0; + +/** + * The base implementation of `_.mean` and `_.meanBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the mean. + */ +function baseMean(array, iteratee) { + var length = array == null ? 0 : array.length; + return length ? (baseSum(array, iteratee) / length) : NAN; +} + +module.exports = baseMean; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMerge.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMerge.js new file mode 100644 index 0000000..c98b5eb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMerge.js @@ -0,0 +1,42 @@ +var Stack = require('./_Stack'), + assignMergeValue = require('./_assignMergeValue'), + baseFor = require('./_baseFor'), + baseMergeDeep = require('./_baseMergeDeep'), + isObject = require('./isObject'), + keysIn = require('./keysIn'), + safeGet = require('./_safeGet'); + +/** + * The base implementation of `_.merge` without support for multiple sources. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ +function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + stack || (stack = new Stack); + if (isObject(srcValue)) { + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; + + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); +} + +module.exports = baseMerge; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMergeDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMergeDeep.js new file mode 100644 index 0000000..4679e8d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseMergeDeep.js @@ -0,0 +1,94 @@ +var assignMergeValue = require('./_assignMergeValue'), + cloneBuffer = require('./_cloneBuffer'), + cloneTypedArray = require('./_cloneTypedArray'), + copyArray = require('./_copyArray'), + initCloneObject = require('./_initCloneObject'), + isArguments = require('./isArguments'), + isArray = require('./isArray'), + isArrayLikeObject = require('./isArrayLikeObject'), + isBuffer = require('./isBuffer'), + isFunction = require('./isFunction'), + isObject = require('./isObject'), + isPlainObject = require('./isPlainObject'), + isTypedArray = require('./isTypedArray'), + safeGet = require('./_safeGet'), + toPlainObject = require('./toPlainObject'); + +/** + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ +function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); + + if (stacked) { + assignMergeValue(object, key, stacked); + return; + } + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || isFunction(objValue)) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); +} + +module.exports = baseMergeDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseNth.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseNth.js new file mode 100644 index 0000000..0403c2a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseNth.js @@ -0,0 +1,20 @@ +var isIndex = require('./_isIndex'); + +/** + * The base implementation of `_.nth` which doesn't coerce arguments. + * + * @private + * @param {Array} array The array to query. + * @param {number} n The index of the element to return. + * @returns {*} Returns the nth element of `array`. + */ +function baseNth(array, n) { + var length = array.length; + if (!length) { + return; + } + n += n < 0 ? length : 0; + return isIndex(n, length) ? array[n] : undefined; +} + +module.exports = baseNth; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseOrderBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseOrderBy.js new file mode 100644 index 0000000..775a017 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseOrderBy.js @@ -0,0 +1,49 @@ +var arrayMap = require('./_arrayMap'), + baseGet = require('./_baseGet'), + baseIteratee = require('./_baseIteratee'), + baseMap = require('./_baseMap'), + baseSortBy = require('./_baseSortBy'), + baseUnary = require('./_baseUnary'), + compareMultiple = require('./_compareMultiple'), + identity = require('./identity'), + isArray = require('./isArray'); + +/** + * The base implementation of `_.orderBy` without param guards. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. + */ +function baseOrderBy(collection, iteratees, orders) { + if (iteratees.length) { + iteratees = arrayMap(iteratees, function(iteratee) { + if (isArray(iteratee)) { + return function(value) { + return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); + } + } + return iteratee; + }); + } else { + iteratees = [identity]; + } + + var index = -1; + iteratees = arrayMap(iteratees, baseUnary(baseIteratee)); + + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); +} + +module.exports = baseOrderBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePick.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePick.js new file mode 100644 index 0000000..09b458a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePick.js @@ -0,0 +1,19 @@ +var basePickBy = require('./_basePickBy'), + hasIn = require('./hasIn'); + +/** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ +function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); +} + +module.exports = basePick; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePickBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePickBy.js new file mode 100644 index 0000000..85be68c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePickBy.js @@ -0,0 +1,30 @@ +var baseGet = require('./_baseGet'), + baseSet = require('./_baseSet'), + castPath = require('./_castPath'); + +/** + * The base implementation of `_.pickBy` without support for iteratee shorthands. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. + */ +function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); + + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } + } + return result; +} + +module.exports = basePickBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseProperty.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseProperty.js new file mode 100644 index 0000000..496281e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseProperty.js @@ -0,0 +1,14 @@ +/** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ +function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; +} + +module.exports = baseProperty; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePropertyDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePropertyDeep.js new file mode 100644 index 0000000..1e5aae5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePropertyDeep.js @@ -0,0 +1,16 @@ +var baseGet = require('./_baseGet'); + +/** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + */ +function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); + }; +} + +module.exports = basePropertyDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePropertyOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePropertyOf.js new file mode 100644 index 0000000..4617399 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePropertyOf.js @@ -0,0 +1,14 @@ +/** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ +function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; +} + +module.exports = basePropertyOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePullAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePullAll.js new file mode 100644 index 0000000..305720e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePullAll.js @@ -0,0 +1,51 @@ +var arrayMap = require('./_arrayMap'), + baseIndexOf = require('./_baseIndexOf'), + baseIndexOfWith = require('./_baseIndexOfWith'), + baseUnary = require('./_baseUnary'), + copyArray = require('./_copyArray'); + +/** Used for built-in method references. */ +var arrayProto = Array.prototype; + +/** Built-in value references. */ +var splice = arrayProto.splice; + +/** + * The base implementation of `_.pullAllBy` without support for iteratee + * shorthands. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + */ +function basePullAll(array, values, iteratee, comparator) { + var indexOf = comparator ? baseIndexOfWith : baseIndexOf, + index = -1, + length = values.length, + seen = array; + + if (array === values) { + values = copyArray(values); + } + if (iteratee) { + seen = arrayMap(array, baseUnary(iteratee)); + } + while (++index < length) { + var fromIndex = 0, + value = values[index], + computed = iteratee ? iteratee(value) : value; + + while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { + if (seen !== array) { + splice.call(seen, fromIndex, 1); + } + splice.call(array, fromIndex, 1); + } + } + return array; +} + +module.exports = basePullAll; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePullAt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePullAt.js new file mode 100644 index 0000000..c3e9e71 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_basePullAt.js @@ -0,0 +1,37 @@ +var baseUnset = require('./_baseUnset'), + isIndex = require('./_isIndex'); + +/** Used for built-in method references. */ +var arrayProto = Array.prototype; + +/** Built-in value references. */ +var splice = arrayProto.splice; + +/** + * The base implementation of `_.pullAt` without support for individual + * indexes or capturing the removed elements. + * + * @private + * @param {Array} array The array to modify. + * @param {number[]} indexes The indexes of elements to remove. + * @returns {Array} Returns `array`. + */ +function basePullAt(array, indexes) { + var length = array ? indexes.length : 0, + lastIndex = length - 1; + + while (length--) { + var index = indexes[length]; + if (length == lastIndex || index !== previous) { + var previous = index; + if (isIndex(index)) { + splice.call(array, index, 1); + } else { + baseUnset(array, index); + } + } + } + return array; +} + +module.exports = basePullAt; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRandom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRandom.js new file mode 100644 index 0000000..94f76a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRandom.js @@ -0,0 +1,18 @@ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeFloor = Math.floor, + nativeRandom = Math.random; + +/** + * The base implementation of `_.random` without support for returning + * floating-point numbers. + * + * @private + * @param {number} lower The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the random number. + */ +function baseRandom(lower, upper) { + return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); +} + +module.exports = baseRandom; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRange.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRange.js new file mode 100644 index 0000000..0fb8e41 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRange.js @@ -0,0 +1,28 @@ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeCeil = Math.ceil, + nativeMax = Math.max; + +/** + * The base implementation of `_.range` and `_.rangeRight` which doesn't + * coerce arguments. + * + * @private + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @param {number} step The value to increment or decrement by. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the range of numbers. + */ +function baseRange(start, end, step, fromRight) { + var index = -1, + length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), + result = Array(length); + + while (length--) { + result[fromRight ? length : ++index] = start; + start += step; + } + return result; +} + +module.exports = baseRange; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseReduce.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseReduce.js new file mode 100644 index 0000000..5a1f8b5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseReduce.js @@ -0,0 +1,23 @@ +/** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ +function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; +} + +module.exports = baseReduce; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRepeat.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRepeat.js new file mode 100644 index 0000000..ee44c31 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRepeat.js @@ -0,0 +1,35 @@ +/** Used as references for various `Number` constants. */ +var MAX_SAFE_INTEGER = 9007199254740991; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeFloor = Math.floor; + +/** + * The base implementation of `_.repeat` which doesn't coerce arguments. + * + * @private + * @param {string} string The string to repeat. + * @param {number} n The number of times to repeat the string. + * @returns {string} Returns the repeated string. + */ +function baseRepeat(string, n) { + var result = ''; + if (!string || n < 1 || n > MAX_SAFE_INTEGER) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + if (n) { + string += string; + } + } while (n); + + return result; +} + +module.exports = baseRepeat; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRest.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRest.js new file mode 100644 index 0000000..d0dc4bd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseRest.js @@ -0,0 +1,17 @@ +var identity = require('./identity'), + overRest = require('./_overRest'), + setToString = require('./_setToString'); + +/** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ +function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); +} + +module.exports = baseRest; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSample.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSample.js new file mode 100644 index 0000000..58582b9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSample.js @@ -0,0 +1,15 @@ +var arraySample = require('./_arraySample'), + values = require('./values'); + +/** + * The base implementation of `_.sample`. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + */ +function baseSample(collection) { + return arraySample(values(collection)); +} + +module.exports = baseSample; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSampleSize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSampleSize.js new file mode 100644 index 0000000..5c90ec5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSampleSize.js @@ -0,0 +1,18 @@ +var baseClamp = require('./_baseClamp'), + shuffleSelf = require('./_shuffleSelf'), + values = require('./values'); + +/** + * The base implementation of `_.sampleSize` without param guards. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ +function baseSampleSize(collection, n) { + var array = values(collection); + return shuffleSelf(array, baseClamp(n, 0, array.length)); +} + +module.exports = baseSampleSize; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSet.js new file mode 100644 index 0000000..99f4fbf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSet.js @@ -0,0 +1,51 @@ +var assignValue = require('./_assignValue'), + castPath = require('./_castPath'), + isIndex = require('./_isIndex'), + isObject = require('./isObject'), + toKey = require('./_toKey'); + +/** + * The base implementation of `_.set`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ +function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); + + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; + + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; + + if (key === '__proto__' || key === 'constructor' || key === 'prototype') { + return object; + } + + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } + } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; +} + +module.exports = baseSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSetData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSetData.js new file mode 100644 index 0000000..c409947 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSetData.js @@ -0,0 +1,17 @@ +var identity = require('./identity'), + metaMap = require('./_metaMap'); + +/** + * The base implementation of `setData` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ +var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; +}; + +module.exports = baseSetData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSetToString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSetToString.js new file mode 100644 index 0000000..89eaca3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSetToString.js @@ -0,0 +1,22 @@ +var constant = require('./constant'), + defineProperty = require('./_defineProperty'), + identity = require('./identity'); + +/** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ +var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); +}; + +module.exports = baseSetToString; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseShuffle.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseShuffle.js new file mode 100644 index 0000000..023077a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseShuffle.js @@ -0,0 +1,15 @@ +var shuffleSelf = require('./_shuffleSelf'), + values = require('./values'); + +/** + * The base implementation of `_.shuffle`. + * + * @private + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + */ +function baseShuffle(collection) { + return shuffleSelf(values(collection)); +} + +module.exports = baseShuffle; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSlice.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSlice.js new file mode 100644 index 0000000..786f6c9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSlice.js @@ -0,0 +1,31 @@ +/** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ +function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; +} + +module.exports = baseSlice; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSome.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSome.js new file mode 100644 index 0000000..58f3f44 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSome.js @@ -0,0 +1,22 @@ +var baseEach = require('./_baseEach'); + +/** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ +function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; +} + +module.exports = baseSome; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortBy.js new file mode 100644 index 0000000..a25c92e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortBy.js @@ -0,0 +1,21 @@ +/** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ +function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; +} + +module.exports = baseSortBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedIndex.js new file mode 100644 index 0000000..638c366 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedIndex.js @@ -0,0 +1,42 @@ +var baseSortedIndexBy = require('./_baseSortedIndexBy'), + identity = require('./identity'), + isSymbol = require('./isSymbol'); + +/** Used as references for the maximum length and index of an array. */ +var MAX_ARRAY_LENGTH = 4294967295, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; + +/** + * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which + * performs a binary search of `array` to determine the index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ +function baseSortedIndex(array, value, retHighest) { + var low = 0, + high = array == null ? low : array.length; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if (computed !== null && !isSymbol(computed) && + (retHighest ? (computed <= value) : (computed < value))) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return baseSortedIndexBy(array, value, identity, retHighest); +} + +module.exports = baseSortedIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedIndexBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedIndexBy.js new file mode 100644 index 0000000..c247b37 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedIndexBy.js @@ -0,0 +1,67 @@ +var isSymbol = require('./isSymbol'); + +/** Used as references for the maximum length and index of an array. */ +var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeFloor = Math.floor, + nativeMin = Math.min; + +/** + * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` + * which invokes `iteratee` for `value` and each element of `array` to compute + * their sort ranking. The iteratee is invoked with one argument; (value). + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} iteratee The iteratee invoked per element. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ +function baseSortedIndexBy(array, value, iteratee, retHighest) { + var low = 0, + high = array == null ? 0 : array.length; + if (high === 0) { + return 0; + } + + value = iteratee(value); + var valIsNaN = value !== value, + valIsNull = value === null, + valIsSymbol = isSymbol(value), + valIsUndefined = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + othIsDefined = computed !== undefined, + othIsNull = computed === null, + othIsReflexive = computed === computed, + othIsSymbol = isSymbol(computed); + + if (valIsNaN) { + var setLow = retHighest || othIsReflexive; + } else if (valIsUndefined) { + setLow = othIsReflexive && (retHighest || othIsDefined); + } else if (valIsNull) { + setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); + } else if (valIsSymbol) { + setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); + } else if (othIsNull || othIsSymbol) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); +} + +module.exports = baseSortedIndexBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedUniq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedUniq.js new file mode 100644 index 0000000..802159a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSortedUniq.js @@ -0,0 +1,30 @@ +var eq = require('./eq'); + +/** + * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ +function baseSortedUniq(array, iteratee) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + if (!index || !eq(computed, seen)) { + var seen = computed; + result[resIndex++] = value === 0 ? 0 : value; + } + } + return result; +} + +module.exports = baseSortedUniq; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSum.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSum.js new file mode 100644 index 0000000..a9e84c1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseSum.js @@ -0,0 +1,24 @@ +/** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ +function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); + } + } + return result; +} + +module.exports = baseSum; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseTimes.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseTimes.js new file mode 100644 index 0000000..0603fc3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseTimes.js @@ -0,0 +1,20 @@ +/** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ +function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); + + while (++index < n) { + result[index] = iteratee(index); + } + return result; +} + +module.exports = baseTimes; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToNumber.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToNumber.js new file mode 100644 index 0000000..04859f3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToNumber.js @@ -0,0 +1,24 @@ +var isSymbol = require('./isSymbol'); + +/** Used as references for various `Number` constants. */ +var NAN = 0 / 0; + +/** + * The base implementation of `_.toNumber` which doesn't ensure correct + * conversions of binary, hexadecimal, or octal string values. + * + * @private + * @param {*} value The value to process. + * @returns {number} Returns the number. + */ +function baseToNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + return +value; +} + +module.exports = baseToNumber; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToPairs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToPairs.js new file mode 100644 index 0000000..bff1991 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToPairs.js @@ -0,0 +1,18 @@ +var arrayMap = require('./_arrayMap'); + +/** + * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array + * of key-value pairs for `object` corresponding to the property names of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the key-value pairs. + */ +function baseToPairs(object, props) { + return arrayMap(props, function(key) { + return [key, object[key]]; + }); +} + +module.exports = baseToPairs; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToString.js new file mode 100644 index 0000000..ada6ad2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseToString.js @@ -0,0 +1,37 @@ +var Symbol = require('./_Symbol'), + arrayMap = require('./_arrayMap'), + isArray = require('./isArray'), + isSymbol = require('./isSymbol'); + +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; + +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; + +/** + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ +function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; + } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; +} + +module.exports = baseToString; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUnary.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUnary.js new file mode 100644 index 0000000..98639e9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUnary.js @@ -0,0 +1,14 @@ +/** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ +function baseUnary(func) { + return function(value) { + return func(value); + }; +} + +module.exports = baseUnary; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUniq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUniq.js new file mode 100644 index 0000000..aea459d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUniq.js @@ -0,0 +1,72 @@ +var SetCache = require('./_SetCache'), + arrayIncludes = require('./_arrayIncludes'), + arrayIncludesWith = require('./_arrayIncludesWith'), + cacheHas = require('./_cacheHas'), + createSet = require('./_createSet'), + setToArray = require('./_setToArray'); + +/** Used as the size to enable large array optimizations. */ +var LARGE_ARRAY_SIZE = 200; + +/** + * The base implementation of `_.uniqBy` without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ +function baseUniq(array, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + length = array.length, + isCommon = true, + result = [], + seen = result; + + if (comparator) { + isCommon = false; + includes = arrayIncludesWith; + } + else if (length >= LARGE_ARRAY_SIZE) { + var set = iteratee ? null : createSet(array); + if (set) { + return setToArray(set); + } + isCommon = false; + includes = cacheHas; + seen = new SetCache; + } + else { + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (!includes(seen, computed, comparator)) { + if (seen !== result) { + seen.push(computed); + } + result.push(value); + } + } + return result; +} + +module.exports = baseUniq; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUnset.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUnset.js new file mode 100644 index 0000000..eefc6e3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUnset.js @@ -0,0 +1,20 @@ +var castPath = require('./_castPath'), + last = require('./last'), + parent = require('./_parent'), + toKey = require('./_toKey'); + +/** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ +function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; +} + +module.exports = baseUnset; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUpdate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUpdate.js new file mode 100644 index 0000000..92a6237 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseUpdate.js @@ -0,0 +1,18 @@ +var baseGet = require('./_baseGet'), + baseSet = require('./_baseSet'); + +/** + * The base implementation of `_.update`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to update. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ +function baseUpdate(object, path, updater, customizer) { + return baseSet(object, path, updater(baseGet(object, path)), customizer); +} + +module.exports = baseUpdate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseValues.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseValues.js new file mode 100644 index 0000000..b95faad --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseValues.js @@ -0,0 +1,19 @@ +var arrayMap = require('./_arrayMap'); + +/** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ +function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); +} + +module.exports = baseValues; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseWhile.js new file mode 100644 index 0000000..07eac61 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseWhile.js @@ -0,0 +1,26 @@ +var baseSlice = require('./_baseSlice'); + +/** + * The base implementation of methods like `_.dropWhile` and `_.takeWhile` + * without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the slice of `array`. + */ +function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && + predicate(array[index], index, array)) {} + + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); +} + +module.exports = baseWhile; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseWrapperValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseWrapperValue.js new file mode 100644 index 0000000..443e0df --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseWrapperValue.js @@ -0,0 +1,25 @@ +var LazyWrapper = require('./_LazyWrapper'), + arrayPush = require('./_arrayPush'), + arrayReduce = require('./_arrayReduce'); + +/** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ +function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); + } + return arrayReduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); +} + +module.exports = baseWrapperValue; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseXor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseXor.js new file mode 100644 index 0000000..8e69338 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseXor.js @@ -0,0 +1,36 @@ +var baseDifference = require('./_baseDifference'), + baseFlatten = require('./_baseFlatten'), + baseUniq = require('./_baseUniq'); + +/** + * The base implementation of methods like `_.xor`, without support for + * iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. + */ +function baseXor(arrays, iteratee, comparator) { + var length = arrays.length; + if (length < 2) { + return length ? baseUniq(arrays[0]) : []; + } + var index = -1, + result = Array(length); + + while (++index < length) { + var array = arrays[index], + othIndex = -1; + + while (++othIndex < length) { + if (othIndex != index) { + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); + } + } + } + return baseUniq(baseFlatten(result, 1), iteratee, comparator); +} + +module.exports = baseXor; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseZipObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseZipObject.js new file mode 100644 index 0000000..401f85b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_baseZipObject.js @@ -0,0 +1,23 @@ +/** + * This base implementation of `_.zipObject` which assigns values using `assignFunc`. + * + * @private + * @param {Array} props The property identifiers. + * @param {Array} values The property values. + * @param {Function} assignFunc The function to assign values. + * @returns {Object} Returns the new object. + */ +function baseZipObject(props, values, assignFunc) { + var index = -1, + length = props.length, + valsLength = values.length, + result = {}; + + while (++index < length) { + var value = index < valsLength ? values[index] : undefined; + assignFunc(result, props[index], value); + } + return result; +} + +module.exports = baseZipObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cacheHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cacheHas.js new file mode 100644 index 0000000..2dec892 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cacheHas.js @@ -0,0 +1,13 @@ +/** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function cacheHas(cache, key) { + return cache.has(key); +} + +module.exports = cacheHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castArrayLikeObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castArrayLikeObject.js new file mode 100644 index 0000000..92c75fa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castArrayLikeObject.js @@ -0,0 +1,14 @@ +var isArrayLikeObject = require('./isArrayLikeObject'); + +/** + * Casts `value` to an empty array if it's not an array like object. + * + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. + */ +function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; +} + +module.exports = castArrayLikeObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castFunction.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castFunction.js new file mode 100644 index 0000000..98c91ae --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castFunction.js @@ -0,0 +1,14 @@ +var identity = require('./identity'); + +/** + * Casts `value` to `identity` if it's not a function. + * + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. + */ +function castFunction(value) { + return typeof value == 'function' ? value : identity; +} + +module.exports = castFunction; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castPath.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castPath.js new file mode 100644 index 0000000..017e4c1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castPath.js @@ -0,0 +1,21 @@ +var isArray = require('./isArray'), + isKey = require('./_isKey'), + stringToPath = require('./_stringToPath'), + toString = require('./toString'); + +/** + * Casts `value` to a path array if it's not one. + * + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. + */ +function castPath(value, object) { + if (isArray(value)) { + return value; + } + return isKey(value, object) ? [value] : stringToPath(toString(value)); +} + +module.exports = castPath; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castRest.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castRest.js new file mode 100644 index 0000000..213c66f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castRest.js @@ -0,0 +1,14 @@ +var baseRest = require('./_baseRest'); + +/** + * A `baseRest` alias which can be replaced with `identity` by module + * replacement plugins. + * + * @private + * @type {Function} + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ +var castRest = baseRest; + +module.exports = castRest; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castSlice.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castSlice.js new file mode 100644 index 0000000..071faeb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_castSlice.js @@ -0,0 +1,18 @@ +var baseSlice = require('./_baseSlice'); + +/** + * Casts `array` to a slice if it's needed. + * + * @private + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. + */ +function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); +} + +module.exports = castSlice; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_charsEndIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_charsEndIndex.js new file mode 100644 index 0000000..07908ff --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_charsEndIndex.js @@ -0,0 +1,19 @@ +var baseIndexOf = require('./_baseIndexOf'); + +/** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ +function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; + + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; +} + +module.exports = charsEndIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_charsStartIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_charsStartIndex.js new file mode 100644 index 0000000..b17afd2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_charsStartIndex.js @@ -0,0 +1,20 @@ +var baseIndexOf = require('./_baseIndexOf'); + +/** + * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the first unmatched string symbol. + */ +function charsStartIndex(strSymbols, chrSymbols) { + var index = -1, + length = strSymbols.length; + + while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; +} + +module.exports = charsStartIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneArrayBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneArrayBuffer.js new file mode 100644 index 0000000..c3d8f6e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneArrayBuffer.js @@ -0,0 +1,16 @@ +var Uint8Array = require('./_Uint8Array'); + +/** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ +function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; +} + +module.exports = cloneArrayBuffer; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneBuffer.js new file mode 100644 index 0000000..27c4810 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneBuffer.js @@ -0,0 +1,35 @@ +var root = require('./_root'); + +/** Detect free variable `exports`. */ +var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + +/** Detect free variable `module`. */ +var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + +/** Detect the popular CommonJS extension `module.exports`. */ +var moduleExports = freeModule && freeModule.exports === freeExports; + +/** Built-in value references. */ +var Buffer = moduleExports ? root.Buffer : undefined, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined; + +/** + * Creates a clone of `buffer`. + * + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. + */ +function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); + } + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + + buffer.copy(result); + return result; +} + +module.exports = cloneBuffer; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneDataView.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneDataView.js new file mode 100644 index 0000000..9c9b7b0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneDataView.js @@ -0,0 +1,16 @@ +var cloneArrayBuffer = require('./_cloneArrayBuffer'); + +/** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ +function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); +} + +module.exports = cloneDataView; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneRegExp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneRegExp.js new file mode 100644 index 0000000..64a30df --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneRegExp.js @@ -0,0 +1,17 @@ +/** Used to match `RegExp` flags from their coerced string values. */ +var reFlags = /\w*$/; + +/** + * Creates a clone of `regexp`. + * + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. + */ +function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; +} + +module.exports = cloneRegExp; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneSymbol.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneSymbol.js new file mode 100644 index 0000000..bede39f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneSymbol.js @@ -0,0 +1,18 @@ +var Symbol = require('./_Symbol'); + +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; + +/** + * Creates a clone of the `symbol` object. + * + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ +function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; +} + +module.exports = cloneSymbol; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneTypedArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneTypedArray.js new file mode 100644 index 0000000..7aad84d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_cloneTypedArray.js @@ -0,0 +1,16 @@ +var cloneArrayBuffer = require('./_cloneArrayBuffer'); + +/** + * Creates a clone of `typedArray`. + * + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ +function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); +} + +module.exports = cloneTypedArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_compareAscending.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_compareAscending.js new file mode 100644 index 0000000..8dc2791 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_compareAscending.js @@ -0,0 +1,41 @@ +var isSymbol = require('./isSymbol'); + +/** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ +function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; +} + +module.exports = compareAscending; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_compareMultiple.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_compareMultiple.js new file mode 100644 index 0000000..ad61f0f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_compareMultiple.js @@ -0,0 +1,44 @@ +var compareAscending = require('./_compareAscending'); + +/** + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ +function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; +} + +module.exports = compareMultiple; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_composeArgs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_composeArgs.js new file mode 100644 index 0000000..1ce40f4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_composeArgs.js @@ -0,0 +1,39 @@ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ +function composeArgs(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersLength = holders.length, + leftIndex = -1, + leftLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(leftLength + rangeLength), + isUncurried = !isCurried; + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + } + while (rangeLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; +} + +module.exports = composeArgs; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_composeArgsRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_composeArgsRight.js new file mode 100644 index 0000000..8dc588d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_composeArgsRight.js @@ -0,0 +1,41 @@ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ +function composeArgsRight(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersIndex = -1, + holdersLength = holders.length, + rightIndex = -1, + rightLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(rangeLength + rightLength), + isUncurried = !isCurried; + + while (++argsIndex < rangeLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + } + return result; +} + +module.exports = composeArgsRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copyArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copyArray.js new file mode 100644 index 0000000..cd94d5d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copyArray.js @@ -0,0 +1,20 @@ +/** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ +function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; +} + +module.exports = copyArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copyObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copyObject.js new file mode 100644 index 0000000..2f2a5c2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copyObject.js @@ -0,0 +1,40 @@ +var assignValue = require('./_assignValue'), + baseAssignValue = require('./_baseAssignValue'); + +/** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ +function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; +} + +module.exports = copyObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copySymbols.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copySymbols.js new file mode 100644 index 0000000..c35944a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copySymbols.js @@ -0,0 +1,16 @@ +var copyObject = require('./_copyObject'), + getSymbols = require('./_getSymbols'); + +/** + * Copies own symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ +function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); +} + +module.exports = copySymbols; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copySymbolsIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copySymbolsIn.js new file mode 100644 index 0000000..fdf20a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_copySymbolsIn.js @@ -0,0 +1,16 @@ +var copyObject = require('./_copyObject'), + getSymbolsIn = require('./_getSymbolsIn'); + +/** + * Copies own and inherited symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ +function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); +} + +module.exports = copySymbolsIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_coreJsData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_coreJsData.js new file mode 100644 index 0000000..f8e5b4e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_coreJsData.js @@ -0,0 +1,6 @@ +var root = require('./_root'); + +/** Used to detect overreaching core-js shims. */ +var coreJsData = root['__core-js_shared__']; + +module.exports = coreJsData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_countHolders.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_countHolders.js new file mode 100644 index 0000000..718fcda --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_countHolders.js @@ -0,0 +1,21 @@ +/** + * Gets the number of `placeholder` occurrences in `array`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} placeholder The placeholder to search for. + * @returns {number} Returns the placeholder count. + */ +function countHolders(array, placeholder) { + var length = array.length, + result = 0; + + while (length--) { + if (array[length] === placeholder) { + ++result; + } + } + return result; +} + +module.exports = countHolders; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createAggregator.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createAggregator.js new file mode 100644 index 0000000..0be42c4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createAggregator.js @@ -0,0 +1,23 @@ +var arrayAggregator = require('./_arrayAggregator'), + baseAggregator = require('./_baseAggregator'), + baseIteratee = require('./_baseIteratee'), + isArray = require('./isArray'); + +/** + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. + */ +function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, baseIteratee(iteratee, 2), accumulator); + }; +} + +module.exports = createAggregator; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createAssigner.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createAssigner.js new file mode 100644 index 0000000..1f904c5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createAssigner.js @@ -0,0 +1,37 @@ +var baseRest = require('./_baseRest'), + isIterateeCall = require('./_isIterateeCall'); + +/** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ +function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; + + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); +} + +module.exports = createAssigner; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBaseEach.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBaseEach.js new file mode 100644 index 0000000..d24fdd1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBaseEach.js @@ -0,0 +1,32 @@ +var isArrayLike = require('./isArrayLike'); + +/** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ +function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; +} + +module.exports = createBaseEach; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBaseFor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBaseFor.js new file mode 100644 index 0000000..94cbf29 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBaseFor.js @@ -0,0 +1,25 @@ +/** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ +function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; +} + +module.exports = createBaseFor; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBind.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBind.js new file mode 100644 index 0000000..07cb99f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createBind.js @@ -0,0 +1,28 @@ +var createCtor = require('./_createCtor'), + root = require('./_root'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1; + +/** + * Creates a function that wraps `func` to invoke it with the optional `this` + * binding of `thisArg`. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new wrapped function. + */ +function createBind(func, bitmask, thisArg) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, arguments); + } + return wrapper; +} + +module.exports = createBind; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCaseFirst.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCaseFirst.js new file mode 100644 index 0000000..fe8ea48 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCaseFirst.js @@ -0,0 +1,33 @@ +var castSlice = require('./_castSlice'), + hasUnicode = require('./_hasUnicode'), + stringToArray = require('./_stringToArray'), + toString = require('./toString'); + +/** + * Creates a function like `_.lowerFirst`. + * + * @private + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. + */ +function createCaseFirst(methodName) { + return function(string) { + string = toString(string); + + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; + + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); + + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; +} + +module.exports = createCaseFirst; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCompounder.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCompounder.js new file mode 100644 index 0000000..8d4cee2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCompounder.js @@ -0,0 +1,24 @@ +var arrayReduce = require('./_arrayReduce'), + deburr = require('./deburr'), + words = require('./words'); + +/** Used to compose unicode capture groups. */ +var rsApos = "['\u2019]"; + +/** Used to match apostrophes. */ +var reApos = RegExp(rsApos, 'g'); + +/** + * Creates a function like `_.camelCase`. + * + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. + */ +function createCompounder(callback) { + return function(string) { + return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); + }; +} + +module.exports = createCompounder; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCtor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCtor.js new file mode 100644 index 0000000..9047aa5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCtor.js @@ -0,0 +1,37 @@ +var baseCreate = require('./_baseCreate'), + isObject = require('./isObject'); + +/** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ +function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; +} + +module.exports = createCtor; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCurry.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCurry.js new file mode 100644 index 0000000..f06c2cd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createCurry.js @@ -0,0 +1,46 @@ +var apply = require('./_apply'), + createCtor = require('./_createCtor'), + createHybrid = require('./_createHybrid'), + createRecurry = require('./_createRecurry'), + getHolder = require('./_getHolder'), + replaceHolders = require('./_replaceHolders'), + root = require('./_root'); + +/** + * Creates a function that wraps `func` to enable currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {number} arity The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ +function createCurry(func, bitmask, arity) { + var Ctor = createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length, + placeholder = getHolder(wrapper); + + while (index--) { + args[index] = arguments[index]; + } + var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) + ? [] + : replaceHolders(args, placeholder); + + length -= holders.length; + if (length < arity) { + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, undefined, + args, holders, undefined, undefined, arity - length); + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return apply(fn, this, args); + } + return wrapper; +} + +module.exports = createCurry; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createFind.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createFind.js new file mode 100644 index 0000000..8859ff8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createFind.js @@ -0,0 +1,25 @@ +var baseIteratee = require('./_baseIteratee'), + isArrayLike = require('./isArrayLike'), + keys = require('./keys'); + +/** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. + */ +function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = baseIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; +} + +module.exports = createFind; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createFlow.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createFlow.js new file mode 100644 index 0000000..baaddbf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createFlow.js @@ -0,0 +1,78 @@ +var LodashWrapper = require('./_LodashWrapper'), + flatRest = require('./_flatRest'), + getData = require('./_getData'), + getFuncName = require('./_getFuncName'), + isArray = require('./isArray'), + isLaziable = require('./_isLaziable'); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** Used to compose bitmasks for function metadata. */ +var WRAP_CURRY_FLAG = 8, + WRAP_PARTIAL_FLAG = 32, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256; + +/** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ +function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; + + if (fromRight) { + funcs.reverse(); + } + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); +} + +module.exports = createFlow; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createHybrid.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createHybrid.js new file mode 100644 index 0000000..b671bd1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createHybrid.js @@ -0,0 +1,92 @@ +var composeArgs = require('./_composeArgs'), + composeArgsRight = require('./_composeArgsRight'), + countHolders = require('./_countHolders'), + createCtor = require('./_createCtor'), + createRecurry = require('./_createRecurry'), + getHolder = require('./_getHolder'), + reorder = require('./_reorder'), + replaceHolders = require('./_replaceHolders'), + root = require('./_root'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_ARY_FLAG = 128, + WRAP_FLIP_FLAG = 512; + +/** + * Creates a function that wraps `func` to invoke it with optional `this` + * binding of `thisArg`, partial application, and currying. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided + * to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ +function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & WRAP_ARY_FLAG, + isBind = bitmask & WRAP_BIND_FLAG, + isBindKey = bitmask & WRAP_BIND_KEY_FLAG, + isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), + isFlip = bitmask & WRAP_FLIP_FLAG, + Ctor = isBindKey ? undefined : createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length; + + while (index--) { + args[index] = arguments[index]; + } + if (isCurried) { + var placeholder = getHolder(wrapper), + holdersCount = countHolders(args, placeholder); + } + if (partials) { + args = composeArgs(args, partials, holders, isCurried); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight, isCurried); + } + length -= holdersCount; + if (isCurried && length < arity) { + var newHolders = replaceHolders(args, placeholder); + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, thisArg, + args, newHolders, argPos, ary, arity - length + ); + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + length = args.length; + if (argPos) { + args = reorder(args, argPos); + } else if (isFlip && length > 1) { + args.reverse(); + } + if (isAry && ary < length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtor(fn); + } + return fn.apply(thisBinding, args); + } + return wrapper; +} + +module.exports = createHybrid; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createInverter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createInverter.js new file mode 100644 index 0000000..6c0c562 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createInverter.js @@ -0,0 +1,17 @@ +var baseInverter = require('./_baseInverter'); + +/** + * Creates a function like `_.invertBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} toIteratee The function to resolve iteratees. + * @returns {Function} Returns the new inverter function. + */ +function createInverter(setter, toIteratee) { + return function(object, iteratee) { + return baseInverter(object, setter, toIteratee(iteratee), {}); + }; +} + +module.exports = createInverter; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createMathOperation.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createMathOperation.js new file mode 100644 index 0000000..f1e238a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createMathOperation.js @@ -0,0 +1,38 @@ +var baseToNumber = require('./_baseToNumber'), + baseToString = require('./_baseToString'); + +/** + * Creates a function that performs a mathematical operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @param {number} [defaultValue] The value used for `undefined` arguments. + * @returns {Function} Returns the new mathematical operation function. + */ +function createMathOperation(operator, defaultValue) { + return function(value, other) { + var result; + if (value === undefined && other === undefined) { + return defaultValue; + } + if (value !== undefined) { + result = value; + } + if (other !== undefined) { + if (result === undefined) { + return other; + } + if (typeof value == 'string' || typeof other == 'string') { + value = baseToString(value); + other = baseToString(other); + } else { + value = baseToNumber(value); + other = baseToNumber(other); + } + result = operator(value, other); + } + return result; + }; +} + +module.exports = createMathOperation; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createOver.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createOver.js new file mode 100644 index 0000000..3b94551 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createOver.js @@ -0,0 +1,27 @@ +var apply = require('./_apply'), + arrayMap = require('./_arrayMap'), + baseIteratee = require('./_baseIteratee'), + baseRest = require('./_baseRest'), + baseUnary = require('./_baseUnary'), + flatRest = require('./_flatRest'); + +/** + * Creates a function like `_.over`. + * + * @private + * @param {Function} arrayFunc The function to iterate over iteratees. + * @returns {Function} Returns the new over function. + */ +function createOver(arrayFunc) { + return flatRest(function(iteratees) { + iteratees = arrayMap(iteratees, baseUnary(baseIteratee)); + return baseRest(function(args) { + var thisArg = this; + return arrayFunc(iteratees, function(iteratee) { + return apply(iteratee, thisArg, args); + }); + }); + }); +} + +module.exports = createOver; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createPadding.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createPadding.js new file mode 100644 index 0000000..2124612 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createPadding.js @@ -0,0 +1,33 @@ +var baseRepeat = require('./_baseRepeat'), + baseToString = require('./_baseToString'), + castSlice = require('./_castSlice'), + hasUnicode = require('./_hasUnicode'), + stringSize = require('./_stringSize'), + stringToArray = require('./_stringToArray'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeCeil = Math.ceil; + +/** + * Creates the padding for `string` based on `length`. The `chars` string + * is truncated if the number of characters exceeds `length`. + * + * @private + * @param {number} length The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padding for `string`. + */ +function createPadding(length, chars) { + chars = chars === undefined ? ' ' : baseToString(chars); + + var charsLength = chars.length; + if (charsLength < 2) { + return charsLength ? baseRepeat(chars, length) : chars; + } + var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); + return hasUnicode(chars) + ? castSlice(stringToArray(result), 0, length).join('') + : result.slice(0, length); +} + +module.exports = createPadding; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createPartial.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createPartial.js new file mode 100644 index 0000000..e16c248 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createPartial.js @@ -0,0 +1,43 @@ +var apply = require('./_apply'), + createCtor = require('./_createCtor'), + root = require('./_root'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1; + +/** + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. + */ +function createPartial(func, bitmask, thisArg, partials) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return apply(fn, isBind ? thisArg : this, args); + } + return wrapper; +} + +module.exports = createPartial; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRange.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRange.js new file mode 100644 index 0000000..9f52c77 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRange.js @@ -0,0 +1,30 @@ +var baseRange = require('./_baseRange'), + isIterateeCall = require('./_isIterateeCall'), + toFinite = require('./toFinite'); + +/** + * Creates a `_.range` or `_.rangeRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new range function. + */ +function createRange(fromRight) { + return function(start, end, step) { + if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { + end = step = undefined; + } + // Ensure the sign of `-0` is preserved. + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); + return baseRange(start, end, step, fromRight); + }; +} + +module.exports = createRange; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRecurry.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRecurry.js new file mode 100644 index 0000000..eb29fb2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRecurry.js @@ -0,0 +1,56 @@ +var isLaziable = require('./_isLaziable'), + setData = require('./_setData'), + setWrapToString = require('./_setWrapToString'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64; + +/** + * Creates a function that wraps `func` to continue currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {Function} wrapFunc The function to create the `func` wrapper. + * @param {*} placeholder The placeholder value. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ +function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { + var isCurry = bitmask & WRAP_CURRY_FLAG, + newHolders = isCurry ? holders : undefined, + newHoldersRight = isCurry ? undefined : holders, + newPartials = isCurry ? partials : undefined, + newPartialsRight = isCurry ? undefined : partials; + + bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); + + if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { + bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); + } + var newData = [ + func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, + newHoldersRight, argPos, ary, arity + ]; + + var result = wrapFunc.apply(undefined, newData); + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return setWrapToString(result, func, bitmask); +} + +module.exports = createRecurry; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRelationalOperation.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRelationalOperation.js new file mode 100644 index 0000000..a17c6b5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRelationalOperation.js @@ -0,0 +1,20 @@ +var toNumber = require('./toNumber'); + +/** + * Creates a function that performs a relational operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @returns {Function} Returns the new relational operation function. + */ +function createRelationalOperation(operator) { + return function(value, other) { + if (!(typeof value == 'string' && typeof other == 'string')) { + value = toNumber(value); + other = toNumber(other); + } + return operator(value, other); + }; +} + +module.exports = createRelationalOperation; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRound.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRound.js new file mode 100644 index 0000000..88be5df --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createRound.js @@ -0,0 +1,35 @@ +var root = require('./_root'), + toInteger = require('./toInteger'), + toNumber = require('./toNumber'), + toString = require('./toString'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeIsFinite = root.isFinite, + nativeMin = Math.min; + +/** + * Creates a function like `_.round`. + * + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. + */ +function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + number = toNumber(number); + precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); + if (precision && nativeIsFinite(number)) { + // Shift with exponential notation to avoid floating-point issues. + // See [MDN](https://mdn.io/round#Examples) for more details. + var pair = (toString(number) + 'e').split('e'), + value = func(pair[0] + 'e' + (+pair[1] + precision)); + + pair = (toString(value) + 'e').split('e'); + return +(pair[0] + 'e' + (+pair[1] - precision)); + } + return func(number); + }; +} + +module.exports = createRound; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createSet.js new file mode 100644 index 0000000..0f644ee --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createSet.js @@ -0,0 +1,19 @@ +var Set = require('./_Set'), + noop = require('./noop'), + setToArray = require('./_setToArray'); + +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; + +/** + * Creates a set object of `values`. + * + * @private + * @param {Array} values The values to add to the set. + * @returns {Object} Returns the new set. + */ +var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { + return new Set(values); +}; + +module.exports = createSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createToPairs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createToPairs.js new file mode 100644 index 0000000..568417a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createToPairs.js @@ -0,0 +1,30 @@ +var baseToPairs = require('./_baseToPairs'), + getTag = require('./_getTag'), + mapToArray = require('./_mapToArray'), + setToPairs = require('./_setToPairs'); + +/** `Object#toString` result references. */ +var mapTag = '[object Map]', + setTag = '[object Set]'; + +/** + * Creates a `_.toPairs` or `_.toPairsIn` function. + * + * @private + * @param {Function} keysFunc The function to get the keys of a given object. + * @returns {Function} Returns the new pairs function. + */ +function createToPairs(keysFunc) { + return function(object) { + var tag = getTag(object); + if (tag == mapTag) { + return mapToArray(object); + } + if (tag == setTag) { + return setToPairs(object); + } + return baseToPairs(object, keysFunc(object)); + }; +} + +module.exports = createToPairs; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createWrap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createWrap.js new file mode 100644 index 0000000..33f0633 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_createWrap.js @@ -0,0 +1,106 @@ +var baseSetData = require('./_baseSetData'), + createBind = require('./_createBind'), + createCurry = require('./_createCurry'), + createHybrid = require('./_createHybrid'), + createPartial = require('./_createPartial'), + getData = require('./_getData'), + mergeData = require('./_mergeData'), + setData = require('./_setData'), + setWrapToString = require('./_setWrapToString'), + toInteger = require('./toInteger'); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * 512 - `_.flip` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ +function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); + arity = arity === undefined ? arity : toInteger(arity); + length -= holders ? holders.length : 0; + + if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func); + + var newData = [ + func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, + argPos, ary, arity + ]; + + if (data) { + mergeData(newData, data); + } + func = newData[0]; + bitmask = newData[1]; + thisArg = newData[2]; + partials = newData[3]; + holders = newData[4]; + arity = newData[9] = newData[9] === undefined + ? (isBindKey ? 0 : func.length) + : nativeMax(newData[9] - length, 0); + + if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { + bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); + } + if (!bitmask || bitmask == WRAP_BIND_FLAG) { + var result = createBind(func, bitmask, thisArg); + } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { + result = createCurry(func, bitmask, arity); + } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { + result = createPartial(func, bitmask, thisArg, partials); + } else { + result = createHybrid.apply(undefined, newData); + } + var setter = data ? baseSetData : setData; + return setWrapToString(setter(result, newData), func, bitmask); +} + +module.exports = createWrap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customDefaultsAssignIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customDefaultsAssignIn.js new file mode 100644 index 0000000..1f49e6f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customDefaultsAssignIn.js @@ -0,0 +1,29 @@ +var eq = require('./eq'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Used by `_.defaults` to customize its `_.assignIn` use to assign properties + * of source objects to the destination object for all destination properties + * that resolve to `undefined`. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to assign. + * @param {Object} object The parent object of `objValue`. + * @returns {*} Returns the value to assign. + */ +function customDefaultsAssignIn(objValue, srcValue, key, object) { + if (objValue === undefined || + (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { + return srcValue; + } + return objValue; +} + +module.exports = customDefaultsAssignIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customDefaultsMerge.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customDefaultsMerge.js new file mode 100644 index 0000000..4cab317 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customDefaultsMerge.js @@ -0,0 +1,28 @@ +var baseMerge = require('./_baseMerge'), + isObject = require('./isObject'); + +/** + * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source + * objects into destination objects that are passed thru. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to merge. + * @param {Object} object The parent object of `objValue`. + * @param {Object} source The parent object of `srcValue`. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + * @returns {*} Returns the value to assign. + */ +function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { + if (isObject(objValue) && isObject(srcValue)) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, objValue); + baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); + stack['delete'](srcValue); + } + return objValue; +} + +module.exports = customDefaultsMerge; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customOmitClone.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customOmitClone.js new file mode 100644 index 0000000..968db2e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_customOmitClone.js @@ -0,0 +1,16 @@ +var isPlainObject = require('./isPlainObject'); + +/** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ +function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; +} + +module.exports = customOmitClone; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_deburrLetter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_deburrLetter.js new file mode 100644 index 0000000..3e531ed --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_deburrLetter.js @@ -0,0 +1,71 @@ +var basePropertyOf = require('./_basePropertyOf'); + +/** Used to map Latin Unicode letters to basic Latin letters. */ +var deburredLetters = { + // Latin-1 Supplement block. + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss', + // Latin Extended-A block. + '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', + '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', + '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', + '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', + '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', + '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', + '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', + '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', + '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', + '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', + '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', + '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', + '\u0134': 'J', '\u0135': 'j', + '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', + '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', + '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', + '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', + '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', + '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', + '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', + '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', + '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', + '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', + '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', + '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', + '\u0163': 't', '\u0165': 't', '\u0167': 't', + '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', + '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', + '\u0174': 'W', '\u0175': 'w', + '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', + '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', + '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', + '\u0132': 'IJ', '\u0133': 'ij', + '\u0152': 'Oe', '\u0153': 'oe', + '\u0149': "'n", '\u017f': 's' +}; + +/** + * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A + * letters to basic Latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ +var deburrLetter = basePropertyOf(deburredLetters); + +module.exports = deburrLetter; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_defineProperty.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_defineProperty.js new file mode 100644 index 0000000..b6116d9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_defineProperty.js @@ -0,0 +1,11 @@ +var getNative = require('./_getNative'); + +var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} +}()); + +module.exports = defineProperty; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalArrays.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalArrays.js new file mode 100644 index 0000000..824228c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalArrays.js @@ -0,0 +1,84 @@ +var SetCache = require('./_SetCache'), + arraySome = require('./_arraySome'), + cacheHas = require('./_cacheHas'); + +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + +/** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ +function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Check that cyclic values are equal. + var arrStacked = stack.get(array); + var othStacked = stack.get(other); + if (arrStacked && othStacked) { + return arrStacked == other && othStacked == array; + } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; + + stack.set(array, other); + stack.set(other, array); + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + stack['delete'](array); + stack['delete'](other); + return result; +} + +module.exports = equalArrays; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalByTag.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalByTag.js new file mode 100644 index 0000000..71919e8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalByTag.js @@ -0,0 +1,112 @@ +var Symbol = require('./_Symbol'), + Uint8Array = require('./_Uint8Array'), + eq = require('./eq'), + equalArrays = require('./_equalArrays'), + mapToArray = require('./_mapToArray'), + setToArray = require('./_setToArray'); + +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + +/** `Object#toString` result references. */ +var boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + mapTag = '[object Map]', + numberTag = '[object Number]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]'; + +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]'; + +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; + +/** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ +function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; + + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + case mapTag: + var convert = mapToArray; + + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); + + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; + + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; + + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } + } + return false; +} + +module.exports = equalByTag; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalObjects.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalObjects.js new file mode 100644 index 0000000..cdaacd2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_equalObjects.js @@ -0,0 +1,90 @@ +var getAllKeys = require('./_getAllKeys'); + +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1; + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ +function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + // Check that cyclic values are equal. + var objStacked = stack.get(object); + var othStacked = stack.get(other); + if (objStacked && othStacked) { + return objStacked == other && othStacked == object; + } + var result = true; + stack.set(object, other); + stack.set(other, object); + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; +} + +module.exports = equalObjects; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_escapeHtmlChar.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_escapeHtmlChar.js new file mode 100644 index 0000000..7ca68ee --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_escapeHtmlChar.js @@ -0,0 +1,21 @@ +var basePropertyOf = require('./_basePropertyOf'); + +/** Used to map characters to HTML entities. */ +var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' +}; + +/** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ +var escapeHtmlChar = basePropertyOf(htmlEscapes); + +module.exports = escapeHtmlChar; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_escapeStringChar.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_escapeStringChar.js new file mode 100644 index 0000000..44eca96 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_escapeStringChar.js @@ -0,0 +1,22 @@ +/** Used to escape characters for inclusion in compiled string literals. */ +var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' +}; + +/** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ +function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; +} + +module.exports = escapeStringChar; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_flatRest.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_flatRest.js new file mode 100644 index 0000000..94ab6cc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_flatRest.js @@ -0,0 +1,16 @@ +var flatten = require('./flatten'), + overRest = require('./_overRest'), + setToString = require('./_setToString'); + +/** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ +function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); +} + +module.exports = flatRest; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_freeGlobal.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_freeGlobal.js new file mode 100644 index 0000000..bbec998 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_freeGlobal.js @@ -0,0 +1,4 @@ +/** Detect free variable `global` from Node.js. */ +var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; + +module.exports = freeGlobal; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getAllKeys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getAllKeys.js new file mode 100644 index 0000000..a9ce699 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getAllKeys.js @@ -0,0 +1,16 @@ +var baseGetAllKeys = require('./_baseGetAllKeys'), + getSymbols = require('./_getSymbols'), + keys = require('./keys'); + +/** + * Creates an array of own enumerable property names and symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ +function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); +} + +module.exports = getAllKeys; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getAllKeysIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getAllKeysIn.js new file mode 100644 index 0000000..1b46678 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getAllKeysIn.js @@ -0,0 +1,17 @@ +var baseGetAllKeys = require('./_baseGetAllKeys'), + getSymbolsIn = require('./_getSymbolsIn'), + keysIn = require('./keysIn'); + +/** + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ +function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); +} + +module.exports = getAllKeysIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getData.js new file mode 100644 index 0000000..a1fe7b7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getData.js @@ -0,0 +1,15 @@ +var metaMap = require('./_metaMap'), + noop = require('./noop'); + +/** + * Gets metadata for `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ +var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); +}; + +module.exports = getData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getFuncName.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getFuncName.js new file mode 100644 index 0000000..21e15b3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getFuncName.js @@ -0,0 +1,31 @@ +var realNames = require('./_realNames'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ +function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; +} + +module.exports = getFuncName; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getHolder.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getHolder.js new file mode 100644 index 0000000..65e94b5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getHolder.js @@ -0,0 +1,13 @@ +/** + * Gets the argument placeholder value for `func`. + * + * @private + * @param {Function} func The function to inspect. + * @returns {*} Returns the placeholder value. + */ +function getHolder(func) { + var object = func; + return object.placeholder; +} + +module.exports = getHolder; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getMapData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getMapData.js new file mode 100644 index 0000000..17f6303 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getMapData.js @@ -0,0 +1,18 @@ +var isKeyable = require('./_isKeyable'); + +/** + * Gets the data for `map`. + * + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. + */ +function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; +} + +module.exports = getMapData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getMatchData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getMatchData.js new file mode 100644 index 0000000..2cc70f9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getMatchData.js @@ -0,0 +1,24 @@ +var isStrictComparable = require('./_isStrictComparable'), + keys = require('./keys'); + +/** + * Gets the property names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ +function getMatchData(object) { + var result = keys(object), + length = result.length; + + while (length--) { + var key = result[length], + value = object[key]; + + result[length] = [key, value, isStrictComparable(value)]; + } + return result; +} + +module.exports = getMatchData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getNative.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getNative.js new file mode 100644 index 0000000..97a622b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getNative.js @@ -0,0 +1,17 @@ +var baseIsNative = require('./_baseIsNative'), + getValue = require('./_getValue'); + +/** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ +function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; +} + +module.exports = getNative; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getPrototype.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getPrototype.js new file mode 100644 index 0000000..e808612 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getPrototype.js @@ -0,0 +1,6 @@ +var overArg = require('./_overArg'); + +/** Built-in value references. */ +var getPrototype = overArg(Object.getPrototypeOf, Object); + +module.exports = getPrototype; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getRawTag.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getRawTag.js new file mode 100644 index 0000000..49a95c9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getRawTag.js @@ -0,0 +1,46 @@ +var Symbol = require('./_Symbol'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** Built-in value references. */ +var symToStringTag = Symbol ? Symbol.toStringTag : undefined; + +/** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. + */ +function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } + } + return result; +} + +module.exports = getRawTag; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getSymbols.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getSymbols.js new file mode 100644 index 0000000..7d6eafe --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getSymbols.js @@ -0,0 +1,30 @@ +var arrayFilter = require('./_arrayFilter'), + stubArray = require('./stubArray'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Built-in value references. */ +var propertyIsEnumerable = objectProto.propertyIsEnumerable; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeGetSymbols = Object.getOwnPropertySymbols; + +/** + * Creates an array of the own enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ +var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { + return []; + } + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); +}; + +module.exports = getSymbols; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getSymbolsIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getSymbolsIn.js new file mode 100644 index 0000000..cec0855 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getSymbolsIn.js @@ -0,0 +1,25 @@ +var arrayPush = require('./_arrayPush'), + getPrototype = require('./_getPrototype'), + getSymbols = require('./_getSymbols'), + stubArray = require('./stubArray'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeGetSymbols = Object.getOwnPropertySymbols; + +/** + * Creates an array of the own and inherited enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ +var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; +}; + +module.exports = getSymbolsIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getTag.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getTag.js new file mode 100644 index 0000000..deaf89d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getTag.js @@ -0,0 +1,58 @@ +var DataView = require('./_DataView'), + Map = require('./_Map'), + Promise = require('./_Promise'), + Set = require('./_Set'), + WeakMap = require('./_WeakMap'), + baseGetTag = require('./_baseGetTag'), + toSource = require('./_toSource'); + +/** `Object#toString` result references. */ +var mapTag = '[object Map]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + setTag = '[object Set]', + weakMapTag = '[object WeakMap]'; + +var dataViewTag = '[object DataView]'; + +/** Used to detect maps, sets, and weakmaps. */ +var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); + +/** + * Gets the `toStringTag` of `value`. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ +var getTag = baseGetTag; + +// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. +if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; + + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } + } + return result; + }; +} + +module.exports = getTag; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getValue.js new file mode 100644 index 0000000..5f7d773 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getValue.js @@ -0,0 +1,13 @@ +/** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ +function getValue(object, key) { + return object == null ? undefined : object[key]; +} + +module.exports = getValue; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getView.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getView.js new file mode 100644 index 0000000..df1e5d4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getView.js @@ -0,0 +1,33 @@ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max, + nativeMin = Math.min; + +/** + * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. + */ +function getView(start, end, transforms) { + var index = -1, + length = transforms.length; + + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; + } + } + return { 'start': start, 'end': end }; +} + +module.exports = getView; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getWrapDetails.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getWrapDetails.js new file mode 100644 index 0000000..3bcc6e4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_getWrapDetails.js @@ -0,0 +1,17 @@ +/** Used to match wrap detail comments. */ +var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, + reSplitDetails = /,? & /; + +/** + * Extracts wrapper details from the `source` body comment. + * + * @private + * @param {string} source The source to inspect. + * @returns {Array} Returns the wrapper details. + */ +function getWrapDetails(source) { + var match = source.match(reWrapDetails); + return match ? match[1].split(reSplitDetails) : []; +} + +module.exports = getWrapDetails; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasPath.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasPath.js new file mode 100644 index 0000000..93dbde1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasPath.js @@ -0,0 +1,39 @@ +var castPath = require('./_castPath'), + isArguments = require('./isArguments'), + isArray = require('./isArray'), + isIndex = require('./_isIndex'), + isLength = require('./isLength'), + toKey = require('./_toKey'); + +/** + * Checks if `path` exists on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + */ +function hasPath(object, path, hasFunc) { + path = castPath(path, object); + + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; + } + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); +} + +module.exports = hasPath; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasUnicode.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasUnicode.js new file mode 100644 index 0000000..cb6ca15 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasUnicode.js @@ -0,0 +1,26 @@ +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; + +/** Used to compose unicode capture groups. */ +var rsZWJ = '\\u200d'; + +/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ +var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); + +/** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ +function hasUnicode(string) { + return reHasUnicode.test(string); +} + +module.exports = hasUnicode; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasUnicodeWord.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasUnicodeWord.js new file mode 100644 index 0000000..95d52c4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hasUnicodeWord.js @@ -0,0 +1,15 @@ +/** Used to detect strings that need a more robust regexp to match words. */ +var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; + +/** + * Checks if `string` contains a word composed of Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a word is found, else `false`. + */ +function hasUnicodeWord(string) { + return reHasUnicodeWord.test(string); +} + +module.exports = hasUnicodeWord; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashClear.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashClear.js new file mode 100644 index 0000000..5d4b70c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashClear.js @@ -0,0 +1,15 @@ +var nativeCreate = require('./_nativeCreate'); + +/** + * Removes all key-value entries from the hash. + * + * @private + * @name clear + * @memberOf Hash + */ +function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; +} + +module.exports = hashClear; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashDelete.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashDelete.js new file mode 100644 index 0000000..ea9dabf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashDelete.js @@ -0,0 +1,17 @@ +/** + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; +} + +module.exports = hashDelete; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashGet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashGet.js new file mode 100644 index 0000000..1fc2f34 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashGet.js @@ -0,0 +1,30 @@ +var nativeCreate = require('./_nativeCreate'); + +/** Used to stand-in for `undefined` hash values. */ +var HASH_UNDEFINED = '__lodash_hash_undefined__'; + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; + } + return hasOwnProperty.call(data, key) ? data[key] : undefined; +} + +module.exports = hashGet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashHas.js new file mode 100644 index 0000000..281a551 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashHas.js @@ -0,0 +1,23 @@ +var nativeCreate = require('./_nativeCreate'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Checks if a hash value for `key` exists. + * + * @private + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); +} + +module.exports = hashHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashSet.js new file mode 100644 index 0000000..e105528 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_hashSet.js @@ -0,0 +1,23 @@ +var nativeCreate = require('./_nativeCreate'); + +/** Used to stand-in for `undefined` hash values. */ +var HASH_UNDEFINED = '__lodash_hash_undefined__'; + +/** + * Sets the hash `key` to `value`. + * + * @private + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. + */ +function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; +} + +module.exports = hashSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneArray.js new file mode 100644 index 0000000..078c15a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneArray.js @@ -0,0 +1,26 @@ +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ +function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; +} + +module.exports = initCloneArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneByTag.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneByTag.js new file mode 100644 index 0000000..f69a008 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneByTag.js @@ -0,0 +1,77 @@ +var cloneArrayBuffer = require('./_cloneArrayBuffer'), + cloneDataView = require('./_cloneDataView'), + cloneRegExp = require('./_cloneRegExp'), + cloneSymbol = require('./_cloneSymbol'), + cloneTypedArray = require('./_cloneTypedArray'); + +/** `Object#toString` result references. */ +var boolTag = '[object Boolean]', + dateTag = '[object Date]', + mapTag = '[object Map]', + numberTag = '[object Number]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]'; + +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + +/** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ +function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case dataViewTag: + return cloneDataView(object, isDeep); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); + + case mapTag: + return new Ctor; + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + return cloneRegExp(object); + + case setTag: + return new Ctor; + + case symbolTag: + return cloneSymbol(object); + } +} + +module.exports = initCloneByTag; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneObject.js new file mode 100644 index 0000000..5a13e64 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_initCloneObject.js @@ -0,0 +1,18 @@ +var baseCreate = require('./_baseCreate'), + getPrototype = require('./_getPrototype'), + isPrototype = require('./_isPrototype'); + +/** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ +function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; +} + +module.exports = initCloneObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_insertWrapDetails.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_insertWrapDetails.js new file mode 100644 index 0000000..e790808 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_insertWrapDetails.js @@ -0,0 +1,23 @@ +/** Used to match wrap detail comments. */ +var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/; + +/** + * Inserts wrapper `details` in a comment at the top of the `source` body. + * + * @private + * @param {string} source The source to modify. + * @returns {Array} details The details to insert. + * @returns {string} Returns the modified source. + */ +function insertWrapDetails(source, details) { + var length = details.length; + if (!length) { + return source; + } + var lastIndex = length - 1; + details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; + details = details.join(length > 2 ? ', ' : ' '); + return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); +} + +module.exports = insertWrapDetails; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isFlattenable.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isFlattenable.js new file mode 100644 index 0000000..4cc2c24 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isFlattenable.js @@ -0,0 +1,20 @@ +var Symbol = require('./_Symbol'), + isArguments = require('./isArguments'), + isArray = require('./isArray'); + +/** Built-in value references. */ +var spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined; + +/** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ +function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); +} + +module.exports = isFlattenable; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isIndex.js new file mode 100644 index 0000000..061cd39 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isIndex.js @@ -0,0 +1,25 @@ +/** Used as references for various `Number` constants. */ +var MAX_SAFE_INTEGER = 9007199254740991; + +/** Used to detect unsigned integer values. */ +var reIsUint = /^(?:0|[1-9]\d*)$/; + +/** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ +function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); +} + +module.exports = isIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isIterateeCall.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isIterateeCall.js new file mode 100644 index 0000000..a0bb5a9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isIterateeCall.js @@ -0,0 +1,30 @@ +var eq = require('./eq'), + isArrayLike = require('./isArrayLike'), + isIndex = require('./_isIndex'), + isObject = require('./isObject'); + +/** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ +function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; +} + +module.exports = isIterateeCall; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isKey.js new file mode 100644 index 0000000..ff08b06 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isKey.js @@ -0,0 +1,29 @@ +var isArray = require('./isArray'), + isSymbol = require('./isSymbol'); + +/** Used to match property names within property paths. */ +var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/; + +/** + * Checks if `value` is a property name and not a property path. + * + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + */ +function isKey(value, object) { + if (isArray(value)) { + return false; + } + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); +} + +module.exports = isKey; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isKeyable.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isKeyable.js new file mode 100644 index 0000000..39f1828 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isKeyable.js @@ -0,0 +1,15 @@ +/** + * Checks if `value` is suitable for use as unique object key. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + */ +function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); +} + +module.exports = isKeyable; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isLaziable.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isLaziable.js new file mode 100644 index 0000000..a57c4f2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isLaziable.js @@ -0,0 +1,28 @@ +var LazyWrapper = require('./_LazyWrapper'), + getData = require('./_getData'), + getFuncName = require('./_getFuncName'), + lodash = require('./wrapperLodash'); + +/** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. + */ +function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; + + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; +} + +module.exports = isLaziable; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isMaskable.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isMaskable.js new file mode 100644 index 0000000..eb98d09 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isMaskable.js @@ -0,0 +1,14 @@ +var coreJsData = require('./_coreJsData'), + isFunction = require('./isFunction'), + stubFalse = require('./stubFalse'); + +/** + * Checks if `func` is capable of being masked. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `func` is maskable, else `false`. + */ +var isMaskable = coreJsData ? isFunction : stubFalse; + +module.exports = isMaskable; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isMasked.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isMasked.js new file mode 100644 index 0000000..4b0f21b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isMasked.js @@ -0,0 +1,20 @@ +var coreJsData = require('./_coreJsData'); + +/** Used to detect methods masquerading as native. */ +var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; +}()); + +/** + * Checks if `func` has its source masked. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. + */ +function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); +} + +module.exports = isMasked; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isPrototype.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isPrototype.js new file mode 100644 index 0000000..0f29498 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isPrototype.js @@ -0,0 +1,18 @@ +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** + * Checks if `value` is likely a prototype object. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + */ +function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; + + return value === proto; +} + +module.exports = isPrototype; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isStrictComparable.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isStrictComparable.js new file mode 100644 index 0000000..b59f40b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_isStrictComparable.js @@ -0,0 +1,15 @@ +var isObject = require('./isObject'); + +/** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ +function isStrictComparable(value) { + return value === value && !isObject(value); +} + +module.exports = isStrictComparable; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_iteratorToArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_iteratorToArray.js new file mode 100644 index 0000000..4768566 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_iteratorToArray.js @@ -0,0 +1,18 @@ +/** + * Converts `iterator` to an array. + * + * @private + * @param {Object} iterator The iterator to convert. + * @returns {Array} Returns the converted array. + */ +function iteratorToArray(iterator) { + var data, + result = []; + + while (!(data = iterator.next()).done) { + result.push(data.value); + } + return result; +} + +module.exports = iteratorToArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyClone.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyClone.js new file mode 100644 index 0000000..d8a51f8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyClone.js @@ -0,0 +1,23 @@ +var LazyWrapper = require('./_LazyWrapper'), + copyArray = require('./_copyArray'); + +/** + * Creates a clone of the lazy wrapper object. + * + * @private + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. + */ +function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = copyArray(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = copyArray(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = copyArray(this.__views__); + return result; +} + +module.exports = lazyClone; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyReverse.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyReverse.js new file mode 100644 index 0000000..c5b5219 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyReverse.js @@ -0,0 +1,23 @@ +var LazyWrapper = require('./_LazyWrapper'); + +/** + * Reverses the direction of lazy iteration. + * + * @private + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. + */ +function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; +} + +module.exports = lazyReverse; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyValue.js new file mode 100644 index 0000000..371ca8d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_lazyValue.js @@ -0,0 +1,69 @@ +var baseWrapperValue = require('./_baseWrapperValue'), + getView = require('./_getView'), + isArray = require('./isArray'); + +/** Used to indicate the type of lazy iteratees. */ +var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; + +/** + * Extracts the unwrapped value from its lazy wrapper. + * + * @private + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. + */ +function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); + + if (!isArr || (!isRight && arrLength == length && takeCount == length)) { + return baseWrapperValue(array, this.__actions__); + } + var result = []; + + outer: + while (length-- && resIndex < takeCount) { + index += dir; + + var iterIndex = -1, + value = array[index]; + + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } + } + } + result[resIndex++] = value; + } + return result; +} + +module.exports = lazyValue; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheClear.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheClear.js new file mode 100644 index 0000000..acbe39a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheClear.js @@ -0,0 +1,13 @@ +/** + * Removes all key-value entries from the list cache. + * + * @private + * @name clear + * @memberOf ListCache + */ +function listCacheClear() { + this.__data__ = []; + this.size = 0; +} + +module.exports = listCacheClear; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheDelete.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheDelete.js new file mode 100644 index 0000000..b1384ad --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheDelete.js @@ -0,0 +1,35 @@ +var assocIndexOf = require('./_assocIndexOf'); + +/** Used for built-in method references. */ +var arrayProto = Array.prototype; + +/** Built-in value references. */ +var splice = arrayProto.splice; + +/** + * Removes `key` and its value from the list cache. + * + * @private + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + return false; + } + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; +} + +module.exports = listCacheDelete; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheGet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheGet.js new file mode 100644 index 0000000..f8192fc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheGet.js @@ -0,0 +1,19 @@ +var assocIndexOf = require('./_assocIndexOf'); + +/** + * Gets the list cache value for `key`. + * + * @private + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; +} + +module.exports = listCacheGet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheHas.js new file mode 100644 index 0000000..2adf671 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheHas.js @@ -0,0 +1,16 @@ +var assocIndexOf = require('./_assocIndexOf'); + +/** + * Checks if a list cache value for `key` exists. + * + * @private + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; +} + +module.exports = listCacheHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheSet.js new file mode 100644 index 0000000..5855c95 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_listCacheSet.js @@ -0,0 +1,26 @@ +var assocIndexOf = require('./_assocIndexOf'); + +/** + * Sets the list cache `key` to `value`. + * + * @private + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. + */ +function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; +} + +module.exports = listCacheSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheClear.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheClear.js new file mode 100644 index 0000000..bc9ca20 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheClear.js @@ -0,0 +1,21 @@ +var Hash = require('./_Hash'), + ListCache = require('./_ListCache'), + Map = require('./_Map'); + +/** + * Removes all key-value entries from the map. + * + * @private + * @name clear + * @memberOf MapCache + */ +function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; +} + +module.exports = mapCacheClear; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheDelete.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheDelete.js new file mode 100644 index 0000000..946ca3c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheDelete.js @@ -0,0 +1,18 @@ +var getMapData = require('./_getMapData'); + +/** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; + return result; +} + +module.exports = mapCacheDelete; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheGet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheGet.js new file mode 100644 index 0000000..f29f55c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheGet.js @@ -0,0 +1,16 @@ +var getMapData = require('./_getMapData'); + +/** + * Gets the map value for `key`. + * + * @private + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function mapCacheGet(key) { + return getMapData(this, key).get(key); +} + +module.exports = mapCacheGet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheHas.js new file mode 100644 index 0000000..a1214c0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheHas.js @@ -0,0 +1,16 @@ +var getMapData = require('./_getMapData'); + +/** + * Checks if a map value for `key` exists. + * + * @private + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function mapCacheHas(key) { + return getMapData(this, key).has(key); +} + +module.exports = mapCacheHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheSet.js new file mode 100644 index 0000000..7346849 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapCacheSet.js @@ -0,0 +1,22 @@ +var getMapData = require('./_getMapData'); + +/** + * Sets the map `key` to `value`. + * + * @private + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. + */ +function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; + + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; +} + +module.exports = mapCacheSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapToArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapToArray.js new file mode 100644 index 0000000..fe3dd53 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mapToArray.js @@ -0,0 +1,18 @@ +/** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ +function mapToArray(map) { + var index = -1, + result = Array(map.size); + + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; +} + +module.exports = mapToArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_matchesStrictComparable.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_matchesStrictComparable.js new file mode 100644 index 0000000..f608af9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_matchesStrictComparable.js @@ -0,0 +1,20 @@ +/** + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. + * + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ +function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; + } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; +} + +module.exports = matchesStrictComparable; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_memoizeCapped.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_memoizeCapped.js new file mode 100644 index 0000000..7f71c8f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_memoizeCapped.js @@ -0,0 +1,26 @@ +var memoize = require('./memoize'); + +/** Used as the maximum memoize cache size. */ +var MAX_MEMOIZE_SIZE = 500; + +/** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ +function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); + } + return key; + }); + + var cache = result.cache; + return result; +} + +module.exports = memoizeCapped; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mergeData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mergeData.js new file mode 100644 index 0000000..cb570f9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_mergeData.js @@ -0,0 +1,90 @@ +var composeArgs = require('./_composeArgs'), + composeArgsRight = require('./_composeArgsRight'), + replaceHolders = require('./_replaceHolders'); + +/** Used as the internal argument placeholder. */ +var PLACEHOLDER = '__lodash_placeholder__'; + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; + +/** + * Merges the function metadata of `source` into `data`. + * + * Merging metadata reduces the number of wrappers used to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and + * `_.rearg` modify function arguments, making the order in which they are + * executed important, preventing the merging of metadata. However, we make + * an exception for a safe combined case where curried functions have `_.ary` + * and or `_.rearg` applied. + * + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. + */ +function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); + + var isCombo = + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || + ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; + } + // Use source `thisArg` if available. + if (srcBitmask & WRAP_BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; + } + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : value; + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = value; + } + // Use source `ary` if it's smaller. + if (srcBitmask & WRAP_ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; +} + +module.exports = mergeData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_metaMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_metaMap.js new file mode 100644 index 0000000..0157a0b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_metaMap.js @@ -0,0 +1,6 @@ +var WeakMap = require('./_WeakMap'); + +/** Used to store function metadata. */ +var metaMap = WeakMap && new WeakMap; + +module.exports = metaMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeCreate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeCreate.js new file mode 100644 index 0000000..c7aede8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeCreate.js @@ -0,0 +1,6 @@ +var getNative = require('./_getNative'); + +/* Built-in method references that are verified to be native. */ +var nativeCreate = getNative(Object, 'create'); + +module.exports = nativeCreate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeKeys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeKeys.js new file mode 100644 index 0000000..479a104 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeKeys.js @@ -0,0 +1,6 @@ +var overArg = require('./_overArg'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeKeys = overArg(Object.keys, Object); + +module.exports = nativeKeys; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeKeysIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeKeysIn.js new file mode 100644 index 0000000..00ee505 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nativeKeysIn.js @@ -0,0 +1,20 @@ +/** + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ +function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; +} + +module.exports = nativeKeysIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nodeUtil.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nodeUtil.js new file mode 100644 index 0000000..983d78f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_nodeUtil.js @@ -0,0 +1,30 @@ +var freeGlobal = require('./_freeGlobal'); + +/** Detect free variable `exports`. */ +var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + +/** Detect free variable `module`. */ +var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + +/** Detect the popular CommonJS extension `module.exports`. */ +var moduleExports = freeModule && freeModule.exports === freeExports; + +/** Detect free variable `process` from Node.js. */ +var freeProcess = moduleExports && freeGlobal.process; + +/** Used to access faster Node.js helpers. */ +var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; + + if (types) { + return types; + } + + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} +}()); + +module.exports = nodeUtil; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_objectToString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_objectToString.js new file mode 100644 index 0000000..c614ec0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_objectToString.js @@ -0,0 +1,22 @@ +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ +function objectToString(value) { + return nativeObjectToString.call(value); +} + +module.exports = objectToString; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_overArg.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_overArg.js new file mode 100644 index 0000000..651c5c5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_overArg.js @@ -0,0 +1,15 @@ +/** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ +function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; +} + +module.exports = overArg; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_overRest.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_overRest.js new file mode 100644 index 0000000..c7cdef3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_overRest.js @@ -0,0 +1,36 @@ +var apply = require('./_apply'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ +function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; +} + +module.exports = overRest; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_parent.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_parent.js new file mode 100644 index 0000000..f174328 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_parent.js @@ -0,0 +1,16 @@ +var baseGet = require('./_baseGet'), + baseSlice = require('./_baseSlice'); + +/** + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. + */ +function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); +} + +module.exports = parent; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reEscape.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reEscape.js new file mode 100644 index 0000000..7f47eda --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reEscape.js @@ -0,0 +1,4 @@ +/** Used to match template delimiters. */ +var reEscape = /<%-([\s\S]+?)%>/g; + +module.exports = reEscape; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reEvaluate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reEvaluate.js new file mode 100644 index 0000000..6adfc31 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reEvaluate.js @@ -0,0 +1,4 @@ +/** Used to match template delimiters. */ +var reEvaluate = /<%([\s\S]+?)%>/g; + +module.exports = reEvaluate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reInterpolate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reInterpolate.js new file mode 100644 index 0000000..d02ff0b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reInterpolate.js @@ -0,0 +1,4 @@ +/** Used to match template delimiters. */ +var reInterpolate = /<%=([\s\S]+?)%>/g; + +module.exports = reInterpolate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_realNames.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_realNames.js new file mode 100644 index 0000000..aa0d529 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_realNames.js @@ -0,0 +1,4 @@ +/** Used to lookup unminified function names. */ +var realNames = {}; + +module.exports = realNames; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reorder.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reorder.js new file mode 100644 index 0000000..a3502b0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_reorder.js @@ -0,0 +1,29 @@ +var copyArray = require('./_copyArray'), + isIndex = require('./_isIndex'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; + +/** + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. + * + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. + */ +function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = copyArray(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; +} + +module.exports = reorder; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_replaceHolders.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_replaceHolders.js new file mode 100644 index 0000000..74360ec --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_replaceHolders.js @@ -0,0 +1,29 @@ +/** Used as the internal argument placeholder. */ +var PLACEHOLDER = '__lodash_placeholder__'; + +/** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ +function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value === placeholder || value === PLACEHOLDER) { + array[index] = PLACEHOLDER; + result[resIndex++] = index; + } + } + return result; +} + +module.exports = replaceHolders; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_root.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_root.js new file mode 100644 index 0000000..d2852be --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_root.js @@ -0,0 +1,9 @@ +var freeGlobal = require('./_freeGlobal'); + +/** Detect free variable `self`. */ +var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + +/** Used as a reference to the global object. */ +var root = freeGlobal || freeSelf || Function('return this')(); + +module.exports = root; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_safeGet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_safeGet.js new file mode 100644 index 0000000..b070897 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_safeGet.js @@ -0,0 +1,21 @@ +/** + * Gets the value at `key`, unless `key` is "__proto__" or "constructor". + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ +function safeGet(object, key) { + if (key === 'constructor' && typeof object[key] === 'function') { + return; + } + + if (key == '__proto__') { + return; + } + + return object[key]; +} + +module.exports = safeGet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setCacheAdd.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setCacheAdd.js new file mode 100644 index 0000000..1081a74 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setCacheAdd.js @@ -0,0 +1,19 @@ +/** Used to stand-in for `undefined` hash values. */ +var HASH_UNDEFINED = '__lodash_hash_undefined__'; + +/** + * Adds `value` to the array cache. + * + * @private + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. + */ +function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; +} + +module.exports = setCacheAdd; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setCacheHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setCacheHas.js new file mode 100644 index 0000000..9a49255 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setCacheHas.js @@ -0,0 +1,14 @@ +/** + * Checks if `value` is in the array cache. + * + * @private + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. + */ +function setCacheHas(value) { + return this.__data__.has(value); +} + +module.exports = setCacheHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setData.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setData.js new file mode 100644 index 0000000..e5cf3eb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setData.js @@ -0,0 +1,20 @@ +var baseSetData = require('./_baseSetData'), + shortOut = require('./_shortOut'); + +/** + * Sets metadata for `func`. + * + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity + * function to avoid garbage collection pauses in V8. See + * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) + * for more details. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ +var setData = shortOut(baseSetData); + +module.exports = setData; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToArray.js new file mode 100644 index 0000000..b87f074 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToArray.js @@ -0,0 +1,18 @@ +/** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ +function setToArray(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = value; + }); + return result; +} + +module.exports = setToArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToPairs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToPairs.js new file mode 100644 index 0000000..36ad37a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToPairs.js @@ -0,0 +1,18 @@ +/** + * Converts `set` to its value-value pairs. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the value-value pairs. + */ +function setToPairs(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = [value, value]; + }); + return result; +} + +module.exports = setToPairs; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToString.js new file mode 100644 index 0000000..6ca8419 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setToString.js @@ -0,0 +1,14 @@ +var baseSetToString = require('./_baseSetToString'), + shortOut = require('./_shortOut'); + +/** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ +var setToString = shortOut(baseSetToString); + +module.exports = setToString; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setWrapToString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setWrapToString.js new file mode 100644 index 0000000..decdc44 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_setWrapToString.js @@ -0,0 +1,21 @@ +var getWrapDetails = require('./_getWrapDetails'), + insertWrapDetails = require('./_insertWrapDetails'), + setToString = require('./_setToString'), + updateWrapDetails = require('./_updateWrapDetails'); + +/** + * Sets the `toString` method of `wrapper` to mimic the source of `reference` + * with wrapper details in a comment at the top of the source body. + * + * @private + * @param {Function} wrapper The function to modify. + * @param {Function} reference The reference function. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Function} Returns `wrapper`. + */ +function setWrapToString(wrapper, reference, bitmask) { + var source = (reference + ''); + return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); +} + +module.exports = setWrapToString; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_shortOut.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_shortOut.js new file mode 100644 index 0000000..3300a07 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_shortOut.js @@ -0,0 +1,37 @@ +/** Used to detect hot functions by number of calls within a span of milliseconds. */ +var HOT_COUNT = 800, + HOT_SPAN = 16; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeNow = Date.now; + +/** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ +function shortOut(func) { + var count = 0, + lastCalled = 0; + + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; +} + +module.exports = shortOut; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_shuffleSelf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_shuffleSelf.js new file mode 100644 index 0000000..8bcc4f5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_shuffleSelf.js @@ -0,0 +1,28 @@ +var baseRandom = require('./_baseRandom'); + +/** + * A specialized version of `_.shuffle` which mutates and sets the size of `array`. + * + * @private + * @param {Array} array The array to shuffle. + * @param {number} [size=array.length] The size of `array`. + * @returns {Array} Returns `array`. + */ +function shuffleSelf(array, size) { + var index = -1, + length = array.length, + lastIndex = length - 1; + + size = size === undefined ? length : size; + while (++index < size) { + var rand = baseRandom(index, lastIndex), + value = array[rand]; + + array[rand] = array[index]; + array[index] = value; + } + array.length = size; + return array; +} + +module.exports = shuffleSelf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackClear.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackClear.js new file mode 100644 index 0000000..ce8e5a9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackClear.js @@ -0,0 +1,15 @@ +var ListCache = require('./_ListCache'); + +/** + * Removes all key-value entries from the stack. + * + * @private + * @name clear + * @memberOf Stack + */ +function stackClear() { + this.__data__ = new ListCache; + this.size = 0; +} + +module.exports = stackClear; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackDelete.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackDelete.js new file mode 100644 index 0000000..ff9887a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackDelete.js @@ -0,0 +1,18 @@ +/** + * Removes `key` and its value from the stack. + * + * @private + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); + + this.size = data.size; + return result; +} + +module.exports = stackDelete; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackGet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackGet.js new file mode 100644 index 0000000..1cdf004 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackGet.js @@ -0,0 +1,14 @@ +/** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function stackGet(key) { + return this.__data__.get(key); +} + +module.exports = stackGet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackHas.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackHas.js new file mode 100644 index 0000000..16a3ad1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackHas.js @@ -0,0 +1,14 @@ +/** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function stackHas(key) { + return this.__data__.has(key); +} + +module.exports = stackHas; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackSet.js new file mode 100644 index 0000000..b790ac5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stackSet.js @@ -0,0 +1,34 @@ +var ListCache = require('./_ListCache'), + Map = require('./_Map'), + MapCache = require('./_MapCache'); + +/** Used as the size to enable large array optimizations. */ +var LARGE_ARRAY_SIZE = 200; + +/** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ +function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; +} + +module.exports = stackSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_strictIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_strictIndexOf.js new file mode 100644 index 0000000..0486a49 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_strictIndexOf.js @@ -0,0 +1,23 @@ +/** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; +} + +module.exports = strictIndexOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_strictLastIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_strictLastIndexOf.js new file mode 100644 index 0000000..d7310dc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_strictLastIndexOf.js @@ -0,0 +1,21 @@ +/** + * A specialized version of `_.lastIndexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function strictLastIndexOf(array, value, fromIndex) { + var index = fromIndex + 1; + while (index--) { + if (array[index] === value) { + return index; + } + } + return index; +} + +module.exports = strictLastIndexOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringSize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringSize.js new file mode 100644 index 0000000..17ef462 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringSize.js @@ -0,0 +1,18 @@ +var asciiSize = require('./_asciiSize'), + hasUnicode = require('./_hasUnicode'), + unicodeSize = require('./_unicodeSize'); + +/** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ +function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); +} + +module.exports = stringSize; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringToArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringToArray.js new file mode 100644 index 0000000..d161158 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringToArray.js @@ -0,0 +1,18 @@ +var asciiToArray = require('./_asciiToArray'), + hasUnicode = require('./_hasUnicode'), + unicodeToArray = require('./_unicodeToArray'); + +/** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); +} + +module.exports = stringToArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringToPath.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringToPath.js new file mode 100644 index 0000000..8f39f8a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_stringToPath.js @@ -0,0 +1,27 @@ +var memoizeCapped = require('./_memoizeCapped'); + +/** Used to match property names within property paths. */ +var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; + +/** Used to match backslashes in property paths. */ +var reEscapeChar = /\\(\\)?/g; + +/** + * Converts `string` to a property path array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. + */ +var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); + } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; +}); + +module.exports = stringToPath; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_toKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_toKey.js new file mode 100644 index 0000000..c6d645c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_toKey.js @@ -0,0 +1,21 @@ +var isSymbol = require('./isSymbol'); + +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; + +/** + * Converts `value` to a string key if it's not a string or symbol. + * + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. + */ +function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; +} + +module.exports = toKey; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_toSource.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_toSource.js new file mode 100644 index 0000000..a020b38 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_toSource.js @@ -0,0 +1,26 @@ +/** Used for built-in method references. */ +var funcProto = Function.prototype; + +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; + +/** + * Converts `func` to its source code. + * + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. + */ +function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} + } + return ''; +} + +module.exports = toSource; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unescapeHtmlChar.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unescapeHtmlChar.js new file mode 100644 index 0000000..a71fecb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unescapeHtmlChar.js @@ -0,0 +1,21 @@ +var basePropertyOf = require('./_basePropertyOf'); + +/** Used to map HTML entities to characters. */ +var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" +}; + +/** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ +var unescapeHtmlChar = basePropertyOf(htmlUnescapes); + +module.exports = unescapeHtmlChar; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeSize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeSize.js new file mode 100644 index 0000000..68137ec --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeSize.js @@ -0,0 +1,44 @@ +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; + +/** Used to compose unicode capture groups. */ +var rsAstral = '[' + rsAstralRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsZWJ = '\\u200d'; + +/** Used to compose unicode regexes. */ +var reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; + +/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ +var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); + +/** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ +function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; + } + return result; +} + +module.exports = unicodeSize; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeToArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeToArray.js new file mode 100644 index 0000000..2a725c0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeToArray.js @@ -0,0 +1,40 @@ +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; + +/** Used to compose unicode capture groups. */ +var rsAstral = '[' + rsAstralRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsZWJ = '\\u200d'; + +/** Used to compose unicode regexes. */ +var reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; + +/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ +var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); + +/** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function unicodeToArray(string) { + return string.match(reUnicode) || []; +} + +module.exports = unicodeToArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeWords.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeWords.js new file mode 100644 index 0000000..e72e6e0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_unicodeWords.js @@ -0,0 +1,69 @@ +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsDingbatRange = '\\u2700-\\u27bf', + rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', + rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', + rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', + rsPunctuationRange = '\\u2000-\\u206f', + rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', + rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', + rsVarRange = '\\ufe0e\\ufe0f', + rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; + +/** Used to compose unicode capture groups. */ +var rsApos = "['\u2019]", + rsBreak = '[' + rsBreakRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsDigits = '\\d+', + rsDingbat = '[' + rsDingbatRange + ']', + rsLower = '[' + rsLowerRange + ']', + rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsUpper = '[' + rsUpperRange + ']', + rsZWJ = '\\u200d'; + +/** Used to compose unicode regexes. */ +var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', + rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', + rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', + rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', + reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', + rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq; + +/** Used to match complex or compound words. */ +var reUnicodeWord = RegExp([ + rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', + rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', + rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, + rsUpper + '+' + rsOptContrUpper, + rsOrdUpper, + rsOrdLower, + rsDigits, + rsEmoji +].join('|'), 'g'); + +/** + * Splits a Unicode `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ +function unicodeWords(string) { + return string.match(reUnicodeWord) || []; +} + +module.exports = unicodeWords; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_updateWrapDetails.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_updateWrapDetails.js new file mode 100644 index 0000000..8759fbd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_updateWrapDetails.js @@ -0,0 +1,46 @@ +var arrayEach = require('./_arrayEach'), + arrayIncludes = require('./_arrayIncludes'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256, + WRAP_FLIP_FLAG = 512; + +/** Used to associate wrap methods with their bit flags. */ +var wrapFlags = [ + ['ary', WRAP_ARY_FLAG], + ['bind', WRAP_BIND_FLAG], + ['bindKey', WRAP_BIND_KEY_FLAG], + ['curry', WRAP_CURRY_FLAG], + ['curryRight', WRAP_CURRY_RIGHT_FLAG], + ['flip', WRAP_FLIP_FLAG], + ['partial', WRAP_PARTIAL_FLAG], + ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], + ['rearg', WRAP_REARG_FLAG] +]; + +/** + * Updates wrapper `details` based on `bitmask` flags. + * + * @private + * @returns {Array} details The details to modify. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Array} Returns `details`. + */ +function updateWrapDetails(details, bitmask) { + arrayEach(wrapFlags, function(pair) { + var value = '_.' + pair[0]; + if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { + details.push(value); + } + }); + return details.sort(); +} + +module.exports = updateWrapDetails; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_wrapperClone.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_wrapperClone.js new file mode 100644 index 0000000..7bb58a2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/_wrapperClone.js @@ -0,0 +1,23 @@ +var LazyWrapper = require('./_LazyWrapper'), + LodashWrapper = require('./_LodashWrapper'), + copyArray = require('./_copyArray'); + +/** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ +function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); + } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; +} + +module.exports = wrapperClone; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/add.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/add.js new file mode 100644 index 0000000..f069515 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/add.js @@ -0,0 +1,22 @@ +var createMathOperation = require('./_createMathOperation'); + +/** + * Adds two numbers. + * + * @static + * @memberOf _ + * @since 3.4.0 + * @category Math + * @param {number} augend The first number in an addition. + * @param {number} addend The second number in an addition. + * @returns {number} Returns the total. + * @example + * + * _.add(6, 4); + * // => 10 + */ +var add = createMathOperation(function(augend, addend) { + return augend + addend; +}, 0); + +module.exports = add; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/after.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/after.js new file mode 100644 index 0000000..3900c97 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/after.js @@ -0,0 +1,42 @@ +var toInteger = require('./toInteger'); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it's called `n` or more times. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => Logs 'done saving!' after the two async saves have completed. + */ +function after(n, func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; +} + +module.exports = after; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/array.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/array.js new file mode 100644 index 0000000..af688d3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/array.js @@ -0,0 +1,67 @@ +module.exports = { + 'chunk': require('./chunk'), + 'compact': require('./compact'), + 'concat': require('./concat'), + 'difference': require('./difference'), + 'differenceBy': require('./differenceBy'), + 'differenceWith': require('./differenceWith'), + 'drop': require('./drop'), + 'dropRight': require('./dropRight'), + 'dropRightWhile': require('./dropRightWhile'), + 'dropWhile': require('./dropWhile'), + 'fill': require('./fill'), + 'findIndex': require('./findIndex'), + 'findLastIndex': require('./findLastIndex'), + 'first': require('./first'), + 'flatten': require('./flatten'), + 'flattenDeep': require('./flattenDeep'), + 'flattenDepth': require('./flattenDepth'), + 'fromPairs': require('./fromPairs'), + 'head': require('./head'), + 'indexOf': require('./indexOf'), + 'initial': require('./initial'), + 'intersection': require('./intersection'), + 'intersectionBy': require('./intersectionBy'), + 'intersectionWith': require('./intersectionWith'), + 'join': require('./join'), + 'last': require('./last'), + 'lastIndexOf': require('./lastIndexOf'), + 'nth': require('./nth'), + 'pull': require('./pull'), + 'pullAll': require('./pullAll'), + 'pullAllBy': require('./pullAllBy'), + 'pullAllWith': require('./pullAllWith'), + 'pullAt': require('./pullAt'), + 'remove': require('./remove'), + 'reverse': require('./reverse'), + 'slice': require('./slice'), + 'sortedIndex': require('./sortedIndex'), + 'sortedIndexBy': require('./sortedIndexBy'), + 'sortedIndexOf': require('./sortedIndexOf'), + 'sortedLastIndex': require('./sortedLastIndex'), + 'sortedLastIndexBy': require('./sortedLastIndexBy'), + 'sortedLastIndexOf': require('./sortedLastIndexOf'), + 'sortedUniq': require('./sortedUniq'), + 'sortedUniqBy': require('./sortedUniqBy'), + 'tail': require('./tail'), + 'take': require('./take'), + 'takeRight': require('./takeRight'), + 'takeRightWhile': require('./takeRightWhile'), + 'takeWhile': require('./takeWhile'), + 'union': require('./union'), + 'unionBy': require('./unionBy'), + 'unionWith': require('./unionWith'), + 'uniq': require('./uniq'), + 'uniqBy': require('./uniqBy'), + 'uniqWith': require('./uniqWith'), + 'unzip': require('./unzip'), + 'unzipWith': require('./unzipWith'), + 'without': require('./without'), + 'xor': require('./xor'), + 'xorBy': require('./xorBy'), + 'xorWith': require('./xorWith'), + 'zip': require('./zip'), + 'zipObject': require('./zipObject'), + 'zipObjectDeep': require('./zipObjectDeep'), + 'zipWith': require('./zipWith') +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/ary.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/ary.js new file mode 100644 index 0000000..70c87d0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/ary.js @@ -0,0 +1,29 @@ +var createWrap = require('./_createWrap'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_ARY_FLAG = 128; + +/** + * Creates a function that invokes `func`, with up to `n` arguments, + * ignoring any additional arguments. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ +function ary(func, n, guard) { + n = guard ? undefined : n; + n = (func && n == null) ? func.length : n; + return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); +} + +module.exports = ary; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assign.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assign.js new file mode 100644 index 0000000..909db26 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assign.js @@ -0,0 +1,58 @@ +var assignValue = require('./_assignValue'), + copyObject = require('./_copyObject'), + createAssigner = require('./_createAssigner'), + isArrayLike = require('./isArrayLike'), + isPrototype = require('./_isPrototype'), + keys = require('./keys'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ +var assign = createAssigner(function(object, source) { + if (isPrototype(source) || isArrayLike(source)) { + copyObject(source, keys(source), object); + return; + } + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + assignValue(object, key, source[key]); + } + } +}); + +module.exports = assign; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignIn.js new file mode 100644 index 0000000..e663473 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignIn.js @@ -0,0 +1,40 @@ +var copyObject = require('./_copyObject'), + createAssigner = require('./_createAssigner'), + keysIn = require('./keysIn'); + +/** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ +var assignIn = createAssigner(function(object, source) { + copyObject(source, keysIn(source), object); +}); + +module.exports = assignIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignInWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignInWith.js new file mode 100644 index 0000000..68fcc0b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignInWith.js @@ -0,0 +1,38 @@ +var copyObject = require('./_copyObject'), + createAssigner = require('./_createAssigner'), + keysIn = require('./keysIn'); + +/** + * This method is like `_.assignIn` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ +var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keysIn(source), object, customizer); +}); + +module.exports = assignInWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignWith.js new file mode 100644 index 0000000..7dc6c76 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/assignWith.js @@ -0,0 +1,37 @@ +var copyObject = require('./_copyObject'), + createAssigner = require('./_createAssigner'), + keys = require('./keys'); + +/** + * This method is like `_.assign` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignInWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ +var assignWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keys(source), object, customizer); +}); + +module.exports = assignWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/at.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/at.js new file mode 100644 index 0000000..781ee9e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/at.js @@ -0,0 +1,23 @@ +var baseAt = require('./_baseAt'), + flatRest = require('./_flatRest'); + +/** + * Creates an array of values corresponding to `paths` of `object`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Array} Returns the picked values. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _.at(object, ['a[0].b.c', 'a[1]']); + * // => [3, 4] + */ +var at = flatRest(baseAt); + +module.exports = at; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/attempt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/attempt.js new file mode 100644 index 0000000..624d015 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/attempt.js @@ -0,0 +1,35 @@ +var apply = require('./_apply'), + baseRest = require('./_baseRest'), + isError = require('./isError'); + +/** + * Attempts to invoke `func`, returning either the result or the caught error + * object. Any additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {Function} func The function to attempt. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {*} Returns the `func` result or error object. + * @example + * + * // Avoid throwing errors for invalid selectors. + * var elements = _.attempt(function(selector) { + * return document.querySelectorAll(selector); + * }, '>_>'); + * + * if (_.isError(elements)) { + * elements = []; + * } + */ +var attempt = baseRest(function(func, args) { + try { + return apply(func, undefined, args); + } catch (e) { + return isError(e) ? e : new Error(e); + } +}); + +module.exports = attempt; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/before.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/before.js new file mode 100644 index 0000000..a3e0a16 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/before.js @@ -0,0 +1,40 @@ +var toInteger = require('./toInteger'); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ +function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; +} + +module.exports = before; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bind.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bind.js new file mode 100644 index 0000000..b1076e9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bind.js @@ -0,0 +1,57 @@ +var baseRest = require('./_baseRest'), + createWrap = require('./_createWrap'), + getHolder = require('./_getHolder'), + replaceHolders = require('./_replaceHolders'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_PARTIAL_FLAG = 32; + +/** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ +var bind = baseRest(function(func, thisArg, partials) { + var bitmask = WRAP_BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bind)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(func, bitmask, thisArg, partials, holders); +}); + +// Assign default placeholders. +bind.placeholder = {}; + +module.exports = bind; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bindAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bindAll.js new file mode 100644 index 0000000..a35706d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bindAll.js @@ -0,0 +1,41 @@ +var arrayEach = require('./_arrayEach'), + baseAssignValue = require('./_baseAssignValue'), + bind = require('./bind'), + flatRest = require('./_flatRest'), + toKey = require('./_toKey'); + +/** + * Binds methods of an object to the object itself, overwriting the existing + * method. + * + * **Note:** This method doesn't set the "length" property of bound functions. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {Object} object The object to bind and assign the bound methods to. + * @param {...(string|string[])} methodNames The object method names to bind. + * @returns {Object} Returns `object`. + * @example + * + * var view = { + * 'label': 'docs', + * 'click': function() { + * console.log('clicked ' + this.label); + * } + * }; + * + * _.bindAll(view, ['click']); + * jQuery(element).on('click', view.click); + * // => Logs 'clicked docs' when clicked. + */ +var bindAll = flatRest(function(object, methodNames) { + arrayEach(methodNames, function(key) { + key = toKey(key); + baseAssignValue(object, key, bind(object[key], object)); + }); + return object; +}); + +module.exports = bindAll; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bindKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bindKey.js new file mode 100644 index 0000000..f7fd64c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/bindKey.js @@ -0,0 +1,68 @@ +var baseRest = require('./_baseRest'), + createWrap = require('./_createWrap'), + getHolder = require('./_getHolder'), + replaceHolders = require('./_replaceHolders'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_PARTIAL_FLAG = 32; + +/** + * Creates a function that invokes the method at `object[key]` with `partials` + * prepended to the arguments it receives. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. See + * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Function + * @param {Object} object The object to invoke the method on. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // Bound with placeholders. + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ +var bindKey = baseRest(function(object, key, partials) { + var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bindKey)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(key, bitmask, object, partials, holders); +}); + +// Assign default placeholders. +bindKey.placeholder = {}; + +module.exports = bindKey; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/camelCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/camelCase.js new file mode 100644 index 0000000..d7390de --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/camelCase.js @@ -0,0 +1,29 @@ +var capitalize = require('./capitalize'), + createCompounder = require('./_createCompounder'); + +/** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar--'); + * // => 'fooBar' + * + * _.camelCase('__FOO_BAR__'); + * // => 'fooBar' + */ +var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? capitalize(word) : word); +}); + +module.exports = camelCase; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/capitalize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/capitalize.js new file mode 100644 index 0000000..3e1600e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/capitalize.js @@ -0,0 +1,23 @@ +var toString = require('./toString'), + upperFirst = require('./upperFirst'); + +/** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('FRED'); + * // => 'Fred' + */ +function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); +} + +module.exports = capitalize; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/castArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/castArray.js new file mode 100644 index 0000000..e470bdb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/castArray.js @@ -0,0 +1,44 @@ +var isArray = require('./isArray'); + +/** + * Casts `value` as an array if it's not one. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Lang + * @param {*} value The value to inspect. + * @returns {Array} Returns the cast array. + * @example + * + * _.castArray(1); + * // => [1] + * + * _.castArray({ 'a': 1 }); + * // => [{ 'a': 1 }] + * + * _.castArray('abc'); + * // => ['abc'] + * + * _.castArray(null); + * // => [null] + * + * _.castArray(undefined); + * // => [undefined] + * + * _.castArray(); + * // => [] + * + * var array = [1, 2, 3]; + * console.log(_.castArray(array) === array); + * // => true + */ +function castArray() { + if (!arguments.length) { + return []; + } + var value = arguments[0]; + return isArray(value) ? value : [value]; +} + +module.exports = castArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/ceil.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/ceil.js new file mode 100644 index 0000000..56c8722 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/ceil.js @@ -0,0 +1,26 @@ +var createRound = require('./_createRound'); + +/** + * Computes `number` rounded up to `precision`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Math + * @param {number} number The number to round up. + * @param {number} [precision=0] The precision to round up to. + * @returns {number} Returns the rounded up number. + * @example + * + * _.ceil(4.006); + * // => 5 + * + * _.ceil(6.004, 2); + * // => 6.01 + * + * _.ceil(6040, -2); + * // => 6100 + */ +var ceil = createRound('ceil'); + +module.exports = ceil; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/chain.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/chain.js new file mode 100644 index 0000000..f6cd647 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/chain.js @@ -0,0 +1,38 @@ +var lodash = require('./wrapperLodash'); + +/** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' + */ +function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; +} + +module.exports = chain; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/chunk.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/chunk.js new file mode 100644 index 0000000..5b562fe --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/chunk.js @@ -0,0 +1,50 @@ +var baseSlice = require('./_baseSlice'), + isIterateeCall = require('./_isIterateeCall'), + toInteger = require('./toInteger'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeCeil = Math.ceil, + nativeMax = Math.max; + +/** + * Creates an array of elements split into groups the length of `size`. + * If `array` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the new array of chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ +function chunk(array, size, guard) { + if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { + size = 1; + } else { + size = nativeMax(toInteger(size), 0); + } + var length = array == null ? 0 : array.length; + if (!length || size < 1) { + return []; + } + var index = 0, + resIndex = 0, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[resIndex++] = baseSlice(array, index, (index += size)); + } + return result; +} + +module.exports = chunk; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/clamp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/clamp.js new file mode 100644 index 0000000..91a72c9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/clamp.js @@ -0,0 +1,39 @@ +var baseClamp = require('./_baseClamp'), + toNumber = require('./toNumber'); + +/** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ +function clamp(number, lower, upper) { + if (upper === undefined) { + upper = lower; + lower = undefined; + } + if (upper !== undefined) { + upper = toNumber(upper); + upper = upper === upper ? upper : 0; + } + if (lower !== undefined) { + lower = toNumber(lower); + lower = lower === lower ? lower : 0; + } + return baseClamp(toNumber(number), lower, upper); +} + +module.exports = clamp; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/clone.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/clone.js new file mode 100644 index 0000000..dd439d6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/clone.js @@ -0,0 +1,36 @@ +var baseClone = require('./_baseClone'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_SYMBOLS_FLAG = 4; + +/** + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true + */ +function clone(value) { + return baseClone(value, CLONE_SYMBOLS_FLAG); +} + +module.exports = clone; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneDeep.js new file mode 100644 index 0000000..4425fbe --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneDeep.js @@ -0,0 +1,29 @@ +var baseClone = require('./_baseClone'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1, + CLONE_SYMBOLS_FLAG = 4; + +/** + * This method is like `_.clone` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false + */ +function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); +} + +module.exports = cloneDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneDeepWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneDeepWith.js new file mode 100644 index 0000000..fd9c6c0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneDeepWith.js @@ -0,0 +1,40 @@ +var baseClone = require('./_baseClone'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1, + CLONE_SYMBOLS_FLAG = 4; + +/** + * This method is like `_.cloneWith` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the deep cloned value. + * @see _.cloneWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * } + * + * var el = _.cloneDeepWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 20 + */ +function cloneDeepWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); +} + +module.exports = cloneDeepWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneWith.js new file mode 100644 index 0000000..d2f4e75 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cloneWith.js @@ -0,0 +1,42 @@ +var baseClone = require('./_baseClone'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_SYMBOLS_FLAG = 4; + +/** + * This method is like `_.clone` except that it accepts `customizer` which + * is invoked to produce the cloned value. If `customizer` returns `undefined`, + * cloning is handled by the method instead. The `customizer` is invoked with + * up to four arguments; (value [, index|key, object, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the cloned value. + * @see _.cloneDeepWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } + * } + * + * var el = _.cloneWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 0 + */ +function cloneWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); +} + +module.exports = cloneWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/collection.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/collection.js new file mode 100644 index 0000000..77fe837 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/collection.js @@ -0,0 +1,30 @@ +module.exports = { + 'countBy': require('./countBy'), + 'each': require('./each'), + 'eachRight': require('./eachRight'), + 'every': require('./every'), + 'filter': require('./filter'), + 'find': require('./find'), + 'findLast': require('./findLast'), + 'flatMap': require('./flatMap'), + 'flatMapDeep': require('./flatMapDeep'), + 'flatMapDepth': require('./flatMapDepth'), + 'forEach': require('./forEach'), + 'forEachRight': require('./forEachRight'), + 'groupBy': require('./groupBy'), + 'includes': require('./includes'), + 'invokeMap': require('./invokeMap'), + 'keyBy': require('./keyBy'), + 'map': require('./map'), + 'orderBy': require('./orderBy'), + 'partition': require('./partition'), + 'reduce': require('./reduce'), + 'reduceRight': require('./reduceRight'), + 'reject': require('./reject'), + 'sample': require('./sample'), + 'sampleSize': require('./sampleSize'), + 'shuffle': require('./shuffle'), + 'size': require('./size'), + 'some': require('./some'), + 'sortBy': require('./sortBy') +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/commit.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/commit.js new file mode 100644 index 0000000..fe4db71 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/commit.js @@ -0,0 +1,33 @@ +var LodashWrapper = require('./_LodashWrapper'); + +/** + * Executes the chain sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ +function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); +} + +module.exports = wrapperCommit; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/compact.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/compact.js new file mode 100644 index 0000000..031fab4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/compact.js @@ -0,0 +1,31 @@ +/** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ +function compact(array) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[resIndex++] = value; + } + } + return result; +} + +module.exports = compact; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/concat.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/concat.js new file mode 100644 index 0000000..1da48a4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/concat.js @@ -0,0 +1,43 @@ +var arrayPush = require('./_arrayPush'), + baseFlatten = require('./_baseFlatten'), + copyArray = require('./_copyArray'), + isArray = require('./isArray'); + +/** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ +function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); +} + +module.exports = concat; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cond.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cond.js new file mode 100644 index 0000000..6455598 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/cond.js @@ -0,0 +1,60 @@ +var apply = require('./_apply'), + arrayMap = require('./_arrayMap'), + baseIteratee = require('./_baseIteratee'), + baseRest = require('./_baseRest'); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that iterates over `pairs` and invokes the corresponding + * function of the first predicate to return truthy. The predicate-function + * pairs are invoked with the `this` binding and arguments of the created + * function. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {Array} pairs The predicate-function pairs. + * @returns {Function} Returns the new composite function. + * @example + * + * var func = _.cond([ + * [_.matches({ 'a': 1 }), _.constant('matches A')], + * [_.conforms({ 'b': _.isNumber }), _.constant('matches B')], + * [_.stubTrue, _.constant('no match')] + * ]); + * + * func({ 'a': 1, 'b': 2 }); + * // => 'matches A' + * + * func({ 'a': 0, 'b': 1 }); + * // => 'matches B' + * + * func({ 'a': '1', 'b': '2' }); + * // => 'no match' + */ +function cond(pairs) { + var length = pairs == null ? 0 : pairs.length, + toIteratee = baseIteratee; + + pairs = !length ? [] : arrayMap(pairs, function(pair) { + if (typeof pair[1] != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return [toIteratee(pair[0]), pair[1]]; + }); + + return baseRest(function(args) { + var index = -1; + while (++index < length) { + var pair = pairs[index]; + if (apply(pair[0], this, args)) { + return apply(pair[1], this, args); + } + } + }); +} + +module.exports = cond; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/conforms.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/conforms.js new file mode 100644 index 0000000..5501a94 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/conforms.js @@ -0,0 +1,35 @@ +var baseClone = require('./_baseClone'), + baseConforms = require('./_baseConforms'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1; + +/** + * Creates a function that invokes the predicate properties of `source` with + * the corresponding property values of a given object, returning `true` if + * all predicates return truthy, else `false`. + * + * **Note:** The created function is equivalent to `_.conformsTo` with + * `source` partially applied. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + * @example + * + * var objects = [ + * { 'a': 2, 'b': 1 }, + * { 'a': 1, 'b': 2 } + * ]; + * + * _.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } })); + * // => [{ 'a': 1, 'b': 2 }] + */ +function conforms(source) { + return baseConforms(baseClone(source, CLONE_DEEP_FLAG)); +} + +module.exports = conforms; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/conformsTo.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/conformsTo.js new file mode 100644 index 0000000..b8a93eb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/conformsTo.js @@ -0,0 +1,32 @@ +var baseConformsTo = require('./_baseConformsTo'), + keys = require('./keys'); + +/** + * Checks if `object` conforms to `source` by invoking the predicate + * properties of `source` with the corresponding property values of `object`. + * + * **Note:** This method is equivalent to `_.conforms` when `source` is + * partially applied. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); + * // => true + * + * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); + * // => false + */ +function conformsTo(object, source) { + return source == null || baseConformsTo(object, source, keys(source)); +} + +module.exports = conformsTo; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/constant.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/constant.js new file mode 100644 index 0000000..655ece3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/constant.js @@ -0,0 +1,26 @@ +/** + * Creates a function that returns `value`. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Util + * @param {*} value The value to return from the new function. + * @returns {Function} Returns the new constant function. + * @example + * + * var objects = _.times(2, _.constant({ 'a': 1 })); + * + * console.log(objects); + * // => [{ 'a': 1 }, { 'a': 1 }] + * + * console.log(objects[0] === objects[1]); + * // => true + */ +function constant(value) { + return function() { + return value; + }; +} + +module.exports = constant; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/core.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/core.js new file mode 100644 index 0000000..6d70dca --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/core.js @@ -0,0 +1,3877 @@ +/** + * @license + * Lodash (Custom Build) + * Build: `lodash core -o ./dist/lodash.core.js` + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ +;(function() { + + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; + + /** Used as the semantic version number. */ + var VERSION = '4.17.20'; + + /** Error message constants. */ + var FUNC_ERROR_TEXT = 'Expected a function'; + + /** Used to compose bitmasks for value comparisons. */ + var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + + /** Used to compose bitmasks for function metadata. */ + var WRAP_BIND_FLAG = 1, + WRAP_PARTIAL_FLAG = 32; + + /** Used as references for various `Number` constants. */ + var INFINITY = 1 / 0, + MAX_SAFE_INTEGER = 9007199254740991; + + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + asyncTag = '[object AsyncFunction]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + numberTag = '[object Number]', + objectTag = '[object Object]', + proxyTag = '[object Proxy]', + regexpTag = '[object RegExp]', + stringTag = '[object String]'; + + /** Used to match HTML entities and HTML characters. */ + var reUnescapedHtml = /[&<>"']/g, + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** Used to detect unsigned integer values. */ + var reIsUint = /^(?:0|[1-9]\d*)$/; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }; + + /** Detect free variable `global` from Node.js. */ + var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; + + /** Detect free variable `self`. */ + var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + + /** Used as a reference to the global object. */ + var root = freeGlobal || freeSelf || Function('return this')(); + + /** Detect free variable `exports`. */ + var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + + /** Detect free variable `module`. */ + var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + + /*--------------------------------------------------------------------------*/ + + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + array.push.apply(array, values); + return array; + } + + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + return baseMap(props, function(key) { + return object[key]; + }); + } + + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + var escapeHtmlChar = basePropertyOf(htmlEscapes); + + /** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; + } + + /*--------------------------------------------------------------------------*/ + + /** Used for built-in method references. */ + var arrayProto = Array.prototype, + objectProto = Object.prototype; + + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; + + /** Used to generate unique IDs. */ + var idCounter = 0; + + /** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ + var nativeObjectToString = objectProto.toString; + + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Built-in value references. */ + var objectCreate = Object.create, + propertyIsEnumerable = objectProto.propertyIsEnumerable; + + /* Built-in method references for those with the same name as other `lodash` methods. */ + var nativeIsFinite = root.isFinite, + nativeKeys = overArg(Object.keys, Object), + nativeMax = Math.max; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. + * + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. + * + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ + function lodash(value) { + return value instanceof LodashWrapper + ? value + : new LodashWrapper(value); + } + + /** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ + var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; + } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; + }()); + + /** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ + function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + } + + LodashWrapper.prototype = baseCreate(lodash.prototype); + LodashWrapper.prototype.constructor = LodashWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function baseAssignValue(object, key, value) { + object[key] = value; + } + + /** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of `_.forEach` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEach = createBaseEach(baseForOwn); + + /** + * The base implementation of `_.every` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; + } + + /** + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. + */ + function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !false) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; + } + + /** + * The base implementation of `_.filter` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } + + /** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; + } + + /** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseFor = createBaseFor(); + + /** + * The base implementation of `_.forOwn` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); + } + + /** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. + */ + function baseFunctions(object, props) { + return baseFilter(props, function(key) { + return isFunction(object[key]); + }); + } + + /** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + function baseGetTag(value) { + return objectToString(value); + } + + /** + * The base implementation of `_.gt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + */ + function baseGt(value, other) { + return value > other; + } + + /** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ + var baseIsArguments = noop; + + /** + * The base implementation of `_.isDate` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + */ + function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; + } + + /** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ + function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); + } + + /** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : baseGetTag(object), + othTag = othIsArr ? arrayTag : baseGetTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + stack || (stack = []); + var objStack = find(stack, function(entry) { + return entry[0] == object; + }); + var othStack = find(stack, function(entry) { + return entry[0] == other; + }); + if (objStack && othStack) { + return objStack[1] == other; + } + stack.push([object, other]); + stack.push([other, object]); + if (isSameTag && !objIsObj) { + var result = (objIsArr) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + stack.pop(); + return result; + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + var result = equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + stack.pop(); + return result; + } + } + if (!isSameTag) { + return false; + } + var result = equalObjects(object, other, bitmask, customizer, equalFunc, stack); + stack.pop(); + return result; + } + + /** + * The base implementation of `_.isRegExp` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + */ + function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; + } + + /** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ + function baseIteratee(func) { + if (typeof func == 'function') { + return func; + } + if (func == null) { + return identity; + } + return (typeof func == 'object' ? baseMatches : baseProperty)(func); + } + + /** + * The base implementation of `_.lt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + */ + function baseLt(value, other) { + return value < other; + } + + /** + * The base implementation of `_.map` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatches(source) { + var props = nativeKeys(source); + return function(object) { + var length = props.length; + if (object == null) { + return !length; + } + object = Object(object); + while (length--) { + var key = props[length]; + if (!(key in object && + baseIsEqual(source[key], object[key], COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG) + )) { + return false; + } + } + return true; + }; + } + + /** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ + function basePick(object, props) { + object = Object(object); + return reduce(props, function(result, key) { + if (key in object) { + result[key] = object[key]; + } + return result; + }, {}); + } + + /** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ + function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); + } + + /** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; + } + + /** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ + function copyArray(source) { + return baseSlice(source, 0, source.length); + } + + /** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ + function baseWrapperValue(value, actions) { + var result = value; + return reduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); + } + + /** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ + function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = false; + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = false; + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; + } + + /** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ + function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; + } + + /** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ + function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined; + + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; + + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); + } + + /** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; + } + + /** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; + } + + /** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ + function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; + } + + /** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. + */ + function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = baseIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; + } + + /** + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. + */ + function createPartial(func, bitmask, thisArg, partials) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return fn.apply(isBind ? thisArg : this, args); + } + return wrapper; + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ + function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Check that cyclic values are equal. + var arrStacked = stack.get(array); + var othStacked = stack.get(other); + if (arrStacked && othStacked) { + return arrStacked == other && othStacked == array; + } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? [] : undefined; + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + var compared; + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!baseSome(other, function(othValue, othIndex) { + if (!indexOf(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + return result; + } + + /** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + } + return false; + } + + /** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = keys(object), + objLength = objProps.length, + othProps = keys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + // Check that cyclic values are equal. + var objStacked = stack.get(object); + var othStacked = stack.get(other); + if (objStacked && othStacked) { + return objStacked == other && othStacked == object; + } + var result = true; + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + var compared; + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + return result; + } + + /** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); + } + + /** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ + function isFlattenable(value) { + return isArray(value) || isArguments(value); + } + + /** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ + function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); + } + + /** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; + } + + /** + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; + } + + /** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ + function objectToString(value) { + return nativeObjectToString.call(value); + } + + /** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ + function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return func.apply(this, otherArgs); + }; + } + + /** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var setToString = identity; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ + function compact(array) { + return baseFilter(array, Boolean); + } + + /** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + } + + /** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 + * + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 + */ + function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, baseIteratee(predicate, 3), index); + } + + /** + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] + */ + function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; + } + + /** + * Recursively flattens `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] + */ + function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; + } + + /** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined + */ + function head(array) { + return (array && array.length) ? array[0] : undefined; + } + + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ + function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (typeof fromIndex == 'number') { + fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : fromIndex; + } else { + fromIndex = 0; + } + var index = (fromIndex || 0) - 1, + isReflexive = value === value; + + while (++index < length) { + var other = array[index]; + if ((isReflexive ? other === value : other !== other)) { + return index; + } + } + return -1; + } + + /** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ + function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of + * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are + * returned. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function slice(array, start, end) { + var length = array == null ? 0 : array.length; + start = start == null ? 0 : +start; + end = end === undefined ? length : +end; + return length ? baseSlice(array, start, end) : []; + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' + */ + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; + } + + /** + * This method invokes `interceptor` and returns `value`. The interceptor + * is invoked with one argument; (value). The purpose of this method is to + * "tap into" a method chain sequence in order to modify intermediate results. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * // Mutate input array. + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ + function tap(value, interceptor) { + interceptor(value); + return value; + } + + /** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * The purpose of this method is to "pass thru" values replacing intermediate + * results in a method chain sequence. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor) { + return interceptor(value); + } + + /** + * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. + * + * @name chain + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // A sequence without explicit chaining. + * _(users).head(); + * // => { 'user': 'barney', 'age': 36 } + * + * // A sequence with explicit chaining. + * _(users) + * .chain() + * .head() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ + function wrapperChain() { + return chain(this); + } + + /** + * Executes the chain sequence to resolve the unwrapped value. + * + * @name value + * @memberOf _ + * @since 0.1.0 + * @alias toJSON, valueOf + * @category Seq + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ + + /** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false + */ + function every(collection, predicate, guard) { + predicate = guard ? undefined : predicate; + return baseEvery(collection, baseIteratee(predicate)); + } + + /** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + * + * // Combining several predicates using `_.overEvery` or `_.overSome`. + * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); + * // => objects for ['fred', 'barney'] + */ + function filter(collection, predicate) { + return baseFilter(collection, baseIteratee(predicate)); + } + + /** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' + * + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' + */ + var find = createFind(findIndex); + + /** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forEach(collection, iteratee) { + return baseEach(collection, baseIteratee(iteratee)); + } + + /** + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n; + * } + * + * _.map([4, 8], square); + * // => [16, 64] + * + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ + function map(collection, iteratee) { + return baseMap(collection, baseIteratee(iteratee)); + } + + /** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `collection` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, + * and `sortBy` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduceRight + * @example + * + * _.reduce([1, 2], function(sum, n) { + * return sum + n; + * }, 0); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * return result; + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) + */ + function reduce(collection, iteratee, accumulator) { + return baseReduce(collection, baseIteratee(iteratee), accumulator, arguments.length < 3, baseEach); + } + + /** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ + function size(collection) { + if (collection == null) { + return 0; + } + collection = isArrayLike(collection) ? collection : nativeKeys(collection); + return collection.length; + } + + /** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true + */ + function some(collection, predicate, guard) { + predicate = guard ? undefined : predicate; + return baseSome(collection, baseIteratee(predicate)); + } + + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 30 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] + */ + function sortBy(collection, iteratee) { + var index = 0; + iteratee = baseIteratee(iteratee); + + return baseMap(baseMap(collection, function(value, key, collection) { + return { 'value': value, 'index': index++, 'criteria': iteratee(value, key, collection) }; + }).sort(function(object, other) { + return compareAscending(object.criteria, other.criteria) || (object.index - other.index); + }), baseProperty('value')); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ + function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ + var bind = baseRest(function(func, thisArg, partials) { + return createPartial(func, WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG, thisArg, partials); + }); + + /** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ + var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. + */ + var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); + }); + + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + var args = arguments; + return !predicate.apply(this, args); + }; + } + + /** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ + function once(func) { + return before(2, func); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true + */ + function clone(value) { + if (!isObject(value)) { + return value; + } + return isArray(value) ? copyArray(value) : copyObject(value, nativeKeys(value)); + } + + /** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ + function eq(value, other) { + return value === other || (value !== value && other !== other); + } + + /** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ + var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); + }; + + /** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ + var isArray = Array.isArray; + + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ + function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); + } + + /** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); + } + + /** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ + var isDate = baseIsDate; + + /** + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ + function isEmpty(value) { + if (isArrayLike(value) && + (isArray(value) || isString(value) || + isFunction(value.splice) || isArguments(value))) { + return !value.length; + } + return !nativeKeys(value).length; + } + + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ + function isEqual(value, other) { + return baseIsEqual(value, other); + } + + /** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false + */ + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); + } + + /** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ + function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; + } + + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ + function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(_.noop); + * // => true + * + * _.isObject(null); + * // => false + */ + function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); + } + + /** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ + function isObjectLike(value) { + return value != null && typeof value == 'object'; + } + + /** + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; + } + + /** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ + function isNull(value) { + return value === null; + } + + /** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @example + * + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false + */ + function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); + } + + /** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ + var isRegExp = baseIsRegExp; + + /** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ + function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + } + + /** + * Checks if `value` is `undefined`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ + function isUndefined(value) { + return value === undefined; + } + + /** + * Converts `value` to an array. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. + * @example + * + * _.toArray({ 'a': 1, 'b': 2 }); + * // => [1, 2] + * + * _.toArray('abc'); + * // => ['a', 'b', 'c'] + * + * _.toArray(1); + * // => [] + * + * _.toArray(null); + * // => [] + */ + function toArray(value) { + if (!isArrayLike(value)) { + return values(value); + } + return value.length ? copyArray(value) : []; + } + + /** + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 + */ + var toInteger = Number; + + /** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 + */ + var toNumber = Number; + + /** + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + function toString(value) { + if (typeof value == 'string') { + return value; + } + return value == null ? '' : (value + ''); + } + + /*------------------------------------------------------------------------*/ + + /** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ + var assign = createAssigner(function(object, source) { + copyObject(source, nativeKeys(source), object); + }); + + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ + var assignIn = createAssigner(function(object, source) { + copyObject(source, nativeKeysIn(source), object); + }); + + /** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : assign(result, properties); + } + + /** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var defaults = baseRest(function(object, sources) { + object = Object(object); + + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } + + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; + + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; + + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } + } + } + + return object; + }); + + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + function has(object, path) { + return object != null && hasOwnProperty.call(object, path); + } + + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + var keys = nativeKeys; + + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + var keysIn = nativeKeysIn; + + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); + }); + + /** + * This method is like `_.get` except that if the resolved value is a + * function it's invoked with the `this` binding of its parent object and + * its result is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a[0].b.c3', 'default'); + * // => 'default' + * + * _.result(object, 'a[0].b.c3', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + var value = object == null ? undefined : object[path]; + if (value === undefined) { + value = defaultValue; + } + return isFunction(value) ? value.call(object) : value; + } + + /** + * Creates an array of the own enumerable string keyed property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return object == null ? [] : baseValues(object, keys(object)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + + /*------------------------------------------------------------------------*/ + + /** + * This method returns the first argument it receives. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {*} value Any value. + * @returns {*} Returns `value`. + * @example + * + * var object = { 'a': 1 }; + * + * console.log(_.identity(object) === object); + * // => true + */ + function identity(value) { + return value; + } + + /** + * Creates a function that invokes `func` with the arguments of the created + * function. If `func` is a property name, the created function returns the + * property value for a given element. If `func` is an array or object, the + * created function returns `true` for elements that contain the equivalent + * source properties, otherwise it returns `false`. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Util + * @param {*} [func=_.identity] The value to convert to a callback. + * @returns {Function} Returns the callback. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, _.iteratee({ 'user': 'barney', 'active': true })); + * // => [{ 'user': 'barney', 'age': 36, 'active': true }] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, _.iteratee(['user', 'fred'])); + * // => [{ 'user': 'fred', 'age': 40 }] + * + * // The `_.property` iteratee shorthand. + * _.map(users, _.iteratee('user')); + * // => ['barney', 'fred'] + * + * // Create custom iteratee shorthands. + * _.iteratee = _.wrap(_.iteratee, function(iteratee, func) { + * return !_.isRegExp(func) ? iteratee(func) : function(string) { + * return func.test(string); + * }; + * }); + * + * _.filter(['abc', 'def'], /ef/); + * // => ['def'] + */ + var iteratee = baseIteratee; + + /** + * Creates a function that performs a partial deep comparison between a given + * object and `source`, returning `true` if the given object has equivalent + * property values, else `false`. + * + * **Note:** The created function is equivalent to `_.isMatch` with `source` + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * **Note:** Multiple values can be checked by combining several matchers + * using `_.overSome` + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + * @example + * + * var objects = [ + * { 'a': 1, 'b': 2, 'c': 3 }, + * { 'a': 4, 'b': 5, 'c': 6 } + * ]; + * + * _.filter(objects, _.matches({ 'a': 4, 'c': 6 })); + * // => [{ 'a': 4, 'b': 5, 'c': 6 }] + * + * // Checking for several possible values + * _.filter(objects, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })])); + * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }] + */ + function matches(source) { + return baseMatches(assign({}, source)); + } + + /** + * Adds all own enumerable string keyed function properties of a source + * object to the destination object. If `object` is a function, then methods + * are added to its prototype as well. + * + * **Note:** Use `_.runInContext` to create a pristine `lodash` function to + * avoid conflicts caused by modifying the original. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {Function|Object} [object=lodash] The destination object. + * @param {Object} source The object of functions to add. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.chain=true] Specify whether mixins are chainable. + * @returns {Function|Object} Returns `object`. + * @example + * + * function vowels(string) { + * return _.filter(string, function(v) { + * return /[aeiou]/i.test(v); + * }); + * } + * + * _.mixin({ 'vowels': vowels }); + * _.vowels('fred'); + * // => ['e'] + * + * _('fred').vowels().value(); + * // => ['e'] + * + * _.mixin({ 'vowels': vowels }, { 'chain': false }); + * _('fred').vowels(); + * // => ['e'] + */ + function mixin(object, source, options) { + var props = keys(source), + methodNames = baseFunctions(source, props); + + if (options == null && + !(isObject(source) && (methodNames.length || !props.length))) { + options = source; + source = object; + object = this; + methodNames = baseFunctions(source, keys(source)); + } + var chain = !(isObject(options) && 'chain' in options) || !!options.chain, + isFunc = isFunction(object); + + baseEach(methodNames, function(methodName) { + var func = source[methodName]; + object[methodName] = func; + if (isFunc) { + object.prototype[methodName] = function() { + var chainAll = this.__chain__; + if (chain || chainAll) { + var result = object(this.__wrapped__), + actions = result.__actions__ = copyArray(this.__actions__); + + actions.push({ 'func': func, 'args': arguments, 'thisArg': object }); + result.__chain__ = chainAll; + return result; + } + return func.apply(object, arrayPush([this.value()], arguments)); + }; + } + }); + + return object; + } + + /** + * Reverts the `_` variable to its previous value and returns a reference to + * the `lodash` function. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @returns {Function} Returns the `lodash` function. + * @example + * + * var lodash = _.noConflict(); + */ + function noConflict() { + if (root._ === this) { + root._ = oldDash; + } + return this; + } + + /** + * This method returns `undefined`. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Util + * @example + * + * _.times(2, _.noop); + * // => [undefined, undefined] + */ + function noop() { + // No operation performed. + } + + /** + * Generates a unique ID. If `prefix` is given, the ID is appended to it. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {string} [prefix=''] The value to prefix the ID with. + * @returns {string} Returns the unique ID. + * @example + * + * _.uniqueId('contact_'); + * // => 'contact_104' + * + * _.uniqueId(); + * // => '105' + */ + function uniqueId(prefix) { + var id = ++idCounter; + return toString(prefix) + id; + } + + /*------------------------------------------------------------------------*/ + + /** + * Computes the maximum value of `array`. If `array` is empty or falsey, + * `undefined` is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {*} Returns the maximum value. + * @example + * + * _.max([4, 2, 8, 6]); + * // => 8 + * + * _.max([]); + * // => undefined + */ + function max(array) { + return (array && array.length) + ? baseExtremum(array, identity, baseGt) + : undefined; + } + + /** + * Computes the minimum value of `array`. If `array` is empty or falsey, + * `undefined` is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {*} Returns the minimum value. + * @example + * + * _.min([4, 2, 8, 6]); + * // => 2 + * + * _.min([]); + * // => undefined + */ + function min(array) { + return (array && array.length) + ? baseExtremum(array, identity, baseLt) + : undefined; + } + + /*------------------------------------------------------------------------*/ + + // Add methods that return wrapped values in chain sequences. + lodash.assignIn = assignIn; + lodash.before = before; + lodash.bind = bind; + lodash.chain = chain; + lodash.compact = compact; + lodash.concat = concat; + lodash.create = create; + lodash.defaults = defaults; + lodash.defer = defer; + lodash.delay = delay; + lodash.filter = filter; + lodash.flatten = flatten; + lodash.flattenDeep = flattenDeep; + lodash.iteratee = iteratee; + lodash.keys = keys; + lodash.map = map; + lodash.matches = matches; + lodash.mixin = mixin; + lodash.negate = negate; + lodash.once = once; + lodash.pick = pick; + lodash.slice = slice; + lodash.sortBy = sortBy; + lodash.tap = tap; + lodash.thru = thru; + lodash.toArray = toArray; + lodash.values = values; + + // Add aliases. + lodash.extend = assignIn; + + // Add methods to `lodash.prototype`. + mixin(lodash, lodash); + + /*------------------------------------------------------------------------*/ + + // Add methods that return unwrapped values in chain sequences. + lodash.clone = clone; + lodash.escape = escape; + lodash.every = every; + lodash.find = find; + lodash.forEach = forEach; + lodash.has = has; + lodash.head = head; + lodash.identity = identity; + lodash.indexOf = indexOf; + lodash.isArguments = isArguments; + lodash.isArray = isArray; + lodash.isBoolean = isBoolean; + lodash.isDate = isDate; + lodash.isEmpty = isEmpty; + lodash.isEqual = isEqual; + lodash.isFinite = isFinite; + lodash.isFunction = isFunction; + lodash.isNaN = isNaN; + lodash.isNull = isNull; + lodash.isNumber = isNumber; + lodash.isObject = isObject; + lodash.isRegExp = isRegExp; + lodash.isString = isString; + lodash.isUndefined = isUndefined; + lodash.last = last; + lodash.max = max; + lodash.min = min; + lodash.noConflict = noConflict; + lodash.noop = noop; + lodash.reduce = reduce; + lodash.result = result; + lodash.size = size; + lodash.some = some; + lodash.uniqueId = uniqueId; + + // Add aliases. + lodash.each = forEach; + lodash.first = head; + + mixin(lodash, (function() { + var source = {}; + baseForOwn(lodash, function(func, methodName) { + if (!hasOwnProperty.call(lodash.prototype, methodName)) { + source[methodName] = func; + } + }); + return source; + }()), { 'chain': false }); + + /*------------------------------------------------------------------------*/ + + /** + * The semantic version number. + * + * @static + * @memberOf _ + * @type {string} + */ + lodash.VERSION = VERSION; + + // Add `Array` methods to `lodash.prototype`. + baseEach(['pop', 'join', 'replace', 'reverse', 'split', 'push', 'shift', 'sort', 'splice', 'unshift'], function(methodName) { + var func = (/^(?:replace|split)$/.test(methodName) ? String.prototype : arrayProto)[methodName], + chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru', + retUnwrapped = /^(?:pop|join|replace|shift)$/.test(methodName); + + lodash.prototype[methodName] = function() { + var args = arguments; + if (retUnwrapped && !this.__chain__) { + var value = this.value(); + return func.apply(isArray(value) ? value : [], args); + } + return this[chainName](function(value) { + return func.apply(isArray(value) ? value : [], args); + }); + }; + }); + + // Add chain sequence methods to the `lodash` wrapper. + lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue; + + /*--------------------------------------------------------------------------*/ + + // Some AMD build optimizers, like r.js, check for condition patterns like: + if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) { + // Expose Lodash on the global object to prevent errors when Lodash is + // loaded by a script tag in the presence of an AMD loader. + // See http://requirejs.org/docs/errors.html#mismatch for more details. + // Use `_.noConflict` to remove Lodash from the global object. + root._ = lodash; + + // Define as an anonymous module so, through path mapping, it can be + // referenced as the "underscore" module. + define(function() { + return lodash; + }); + } + // Check for `exports` after `define` in case a build optimizer adds it. + else if (freeModule) { + // Export for Node.js. + (freeModule.exports = lodash)._ = lodash; + // Export for CommonJS support. + freeExports._ = lodash; + } + else { + // Export to the global object. + root._ = lodash; + } +}.call(this)); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/core.min.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/core.min.js new file mode 100644 index 0000000..f409525 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/core.min.js @@ -0,0 +1,30 @@ +/** + * @license + * Lodash (Custom Build) lodash.com/license | Underscore.js 1.8.3 underscorejs.org/LICENSE + * Build: `lodash core -o ./dist/lodash.core.js` + */ +;(function(){function n(n,t){return n.push.apply(n,t),n}function t(n,t,r,e){for(var u=n.length,o=r+(e?1:-1);e?o--:++o0&&e(f)?r>1?y(f,r-1,e,u,o):n(o,f):u||(o[o.length]=f)}return o}function g(n,t){return n&&Vt(n,t,cr)}function _(n,t){return v(t,function(t){return Tn(n[t])})}function b(n){return W(n)}function j(n,t){return n>t}function d(n){return In(n)&&b(n)==ht}function m(n,t,r,e,u){return n===t||(null==n||null==t||!In(n)&&!In(t)?n!==n&&t!==t:O(n,t,r,e,m,u))}function O(n,t,r,e,u,o){ +var i=Zt(n),c=Zt(t),f=i?lt:b(n),a=c?lt:b(t);f=f==at?bt:f,a=a==at?bt:a;var l=f==bt,p=a==bt,s=f==a;o||(o=[]);var h=Lt(o,function(t){return t[0]==n}),v=Lt(o,function(n){return n[0]==t});if(h&&v)return h[1]==t;if(o.push([n,t]),o.push([t,n]),s&&!l){var y=i?J(n,t,r,e,u,o):M(n,t,f,r,e,u,o);return o.pop(),y}if(!(r&et)){var g=l&&Rt.call(n,"__wrapped__"),_=p&&Rt.call(t,"__wrapped__");if(g||_){var j=g?n.value():n,d=_?t.value():t,y=u(j,d,r,e,o);return o.pop(),y}}if(!s)return false;var y=U(n,t,r,e,u,o);return o.pop(), +y}function x(n){return In(n)&&b(n)==dt}function w(n){return typeof n=="function"?n:null==n?Hn:(typeof n=="object"?N:r)(n)}function A(n,t){return nu?0:u+t),r=r>u?u:r,r<0&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0;for(var o=Array(u);++et||o&&i&&f&&!c&&!a||e&&i&&f||!r&&f||!u)return 1; +if(!e&&!o&&!a&&n1?r[u-1]:nt;for(o=n.length>3&&typeof o=="function"?(u--,o):nt,t=Object(t);++e-1?u[o?t[i]:i]:nt}}function G(n,t,r,e){function u(){for(var t=-1,c=arguments.length,f=-1,a=e.length,l=Array(a+c),p=this&&this!==kt&&this instanceof u?i:n;++fc))return false;var a=o.get(n),l=o.get(t);if(a&&l)return a==t&&l==n;for(var p=-1,s=true,h=r&ut?[]:nt;++p-1&&n%1==0&&n0&&(r=t.apply(this,arguments)),n<=1&&(t=nt),r}}function mn(n){if(typeof n!="function")throw new TypeError(rt);return function(){return!n.apply(this,arguments)}; +}function On(n){return dn(2,n)}function xn(n){return Bn(n)?Zt(n)?S(n):$(n,Gt(n)):n}function wn(n,t){return n===t||n!==n&&t!==t}function An(n){return null!=n&&Sn(n.length)&&!Tn(n)}function En(n){return n===true||n===false||In(n)&&b(n)==st}function Nn(n){return An(n)&&(Zt(n)||Dn(n)||Tn(n.splice)||Yt(n))?!n.length:!Gt(n).length}function kn(n,t){return m(n,t)}function Fn(n){return typeof n=="number"&&Ct(n)}function Tn(n){if(!Bn(n))return false;var t=b(n);return t==yt||t==gt||t==pt||t==jt}function Sn(n){return typeof n=="number"&&n>-1&&n%1==0&&n<=ft; +}function Bn(n){var t=typeof n;return null!=n&&("object"==t||"function"==t)}function In(n){return null!=n&&typeof n=="object"}function Rn(n){return qn(n)&&n!=+n}function $n(n){return null===n}function qn(n){return typeof n=="number"||In(n)&&b(n)==_t}function Dn(n){return typeof n=="string"||!Zt(n)&&In(n)&&b(n)==mt}function Pn(n){return n===nt}function zn(n){return An(n)?n.length?S(n):[]:Un(n)}function Cn(n){return typeof n=="string"?n:null==n?"":n+""}function Gn(n,t){var r=Mt(n);return null==t?r:ur(r,t); +}function Jn(n,t){return null!=n&&Rt.call(n,t)}function Mn(n,t,r){var e=null==n?nt:n[t];return e===nt&&(e=r),Tn(e)?e.call(n):e}function Un(n){return null==n?[]:o(n,cr(n))}function Vn(n){return n=Cn(n),n&&xt.test(n)?n.replace(Ot,St):n}function Hn(n){return n}function Kn(n){return N(ur({},n))}function Ln(t,r,e){var u=cr(r),o=_(r,u);null!=e||Bn(r)&&(o.length||!u.length)||(e=r,r=t,t=this,o=_(r,cr(r)));var i=!(Bn(e)&&"chain"in e&&!e.chain),c=Tn(t);return Ut(o,function(e){var u=r[e];t[e]=u,c&&(t.prototype[e]=function(){ +var r=this.__chain__;if(i||r){var e=t(this.__wrapped__);return(e.__actions__=S(this.__actions__)).push({func:u,args:arguments,thisArg:t}),e.__chain__=r,e}return u.apply(t,n([this.value()],arguments))})}),t}function Qn(){return kt._===this&&(kt._=Dt),this}function Wn(){}function Xn(n){var t=++$t;return Cn(n)+t}function Yn(n){return n&&n.length?h(n,Hn,j):nt}function Zn(n){return n&&n.length?h(n,Hn,A):nt}var nt,tt="4.17.20",rt="Expected a function",et=1,ut=2,ot=1,it=32,ct=1/0,ft=9007199254740991,at="[object Arguments]",lt="[object Array]",pt="[object AsyncFunction]",st="[object Boolean]",ht="[object Date]",vt="[object Error]",yt="[object Function]",gt="[object GeneratorFunction]",_t="[object Number]",bt="[object Object]",jt="[object Proxy]",dt="[object RegExp]",mt="[object String]",Ot=/[&<>"']/g,xt=RegExp(Ot.source),wt=/^(?:0|[1-9]\d*)$/,At={ +"&":"&","<":"<",">":">",'"':""","'":"'"},Et=typeof global=="object"&&global&&global.Object===Object&&global,Nt=typeof self=="object"&&self&&self.Object===Object&&self,kt=Et||Nt||Function("return this")(),Ft=typeof exports=="object"&&exports&&!exports.nodeType&&exports,Tt=Ft&&typeof module=="object"&&module&&!module.nodeType&&module,St=e(At),Bt=Array.prototype,It=Object.prototype,Rt=It.hasOwnProperty,$t=0,qt=It.toString,Dt=kt._,Pt=Object.create,zt=It.propertyIsEnumerable,Ct=kt.isFinite,Gt=i(Object.keys,Object),Jt=Math.max,Mt=function(){ +function n(){}return function(t){if(!Bn(t))return{};if(Pt)return Pt(t);n.prototype=t;var r=new n;return n.prototype=nt,r}}();f.prototype=Mt(c.prototype),f.prototype.constructor=f;var Ut=D(g),Vt=P(),Ht=Wn,Kt=Hn,Lt=C(nn),Qt=F(function(n,t,r){return G(n,ot|it,t,r)}),Wt=F(function(n,t){return p(n,1,t)}),Xt=F(function(n,t,r){return p(n,er(t)||0,r)}),Yt=Ht(function(){return arguments}())?Ht:function(n){return In(n)&&Rt.call(n,"callee")&&!zt.call(n,"callee")},Zt=Array.isArray,nr=d,tr=x,rr=Number,er=Number,ur=q(function(n,t){ +$(t,Gt(t),n)}),or=q(function(n,t){$(t,Q(t),n)}),ir=F(function(n,t){n=Object(n);var r=-1,e=t.length,u=e>2?t[2]:nt;for(u&&L(t[0],t[1],u)&&(e=1);++r { '4': 1, '6': 2 } + * + * // The `_.property` iteratee shorthand. + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ +var countBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + ++result[key]; + } else { + baseAssignValue(result, key, 1); + } +}); + +module.exports = countBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/create.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/create.js new file mode 100644 index 0000000..919edb8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/create.js @@ -0,0 +1,43 @@ +var baseAssign = require('./_baseAssign'), + baseCreate = require('./_baseCreate'); + +/** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ +function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : baseAssign(result, properties); +} + +module.exports = create; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/curry.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/curry.js new file mode 100644 index 0000000..918db1a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/curry.js @@ -0,0 +1,57 @@ +var createWrap = require('./_createWrap'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_CURRY_FLAG = 8; + +/** + * Creates a function that accepts arguments of `func` and either invokes + * `func` returning its result, if at least `arity` number of arguments have + * been provided, or returns a function that accepts the remaining `func` + * arguments, and so on. The arity of `func` may be specified if `func.length` + * is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ +function curry(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curry.placeholder; + return result; +} + +// Assign default placeholders. +curry.placeholder = {}; + +module.exports = curry; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/curryRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/curryRight.js new file mode 100644 index 0000000..c85b6f3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/curryRight.js @@ -0,0 +1,54 @@ +var createWrap = require('./_createWrap'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_CURRY_RIGHT_FLAG = 16; + +/** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ +function curryRight(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryRight.placeholder; + return result; +} + +// Assign default placeholders. +curryRight.placeholder = {}; + +module.exports = curryRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/date.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/date.js new file mode 100644 index 0000000..cbf5b41 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/date.js @@ -0,0 +1,3 @@ +module.exports = { + 'now': require('./now') +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/debounce.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/debounce.js new file mode 100644 index 0000000..8f751d5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/debounce.js @@ -0,0 +1,191 @@ +var isObject = require('./isObject'), + now = require('./now'), + toNumber = require('./toNumber'); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max, + nativeMin = Math.min; + +/** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed `func` invocations and a `flush` method to immediately invoke them. + * Provide `options` to indicate whether `func` should be invoked on the + * leading and/or trailing edge of the `wait` timeout. The `func` is invoked + * with the last arguments provided to the debounced function. Subsequent + * calls to the debounced function return the result of the last `func` + * invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the debounced function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=false] + * Specify invoking on the leading edge of the timeout. + * @param {number} [options.maxWait] + * The maximum time `func` is allowed to be delayed before it's invoked. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // Avoid costly calculations while the window size is in flux. + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // Invoke `sendMail` when clicked, debouncing subsequent calls. + * jQuery(element).on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // Ensure `batchLog` is invoked once after 1 second of debounced calls. + * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); + * var source = new EventSource('/stream'); + * jQuery(source).on('message', debounced); + * + * // Cancel the trailing debounced invocation. + * jQuery(window).on('popstate', debounced.cancel); + */ +function debounce(func, wait, options) { + var lastArgs, + lastThis, + maxWait, + result, + timerId, + lastCallTime, + lastInvokeTime = 0, + leading = false, + maxing = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = toNumber(wait) || 0; + if (isObject(options)) { + leading = !!options.leading; + maxing = 'maxWait' in options; + maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function invokeFunc(time) { + var args = lastArgs, + thisArg = lastThis; + + lastArgs = lastThis = undefined; + lastInvokeTime = time; + result = func.apply(thisArg, args); + return result; + } + + function leadingEdge(time) { + // Reset any `maxWait` timer. + lastInvokeTime = time; + // Start the timer for the trailing edge. + timerId = setTimeout(timerExpired, wait); + // Invoke the leading edge. + return leading ? invokeFunc(time) : result; + } + + function remainingWait(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime, + timeWaiting = wait - timeSinceLastCall; + + return maxing + ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) + : timeWaiting; + } + + function shouldInvoke(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime; + + // Either this is the first call, activity has stopped and we're at the + // trailing edge, the system time has gone backwards and we're treating + // it as the trailing edge, or we've hit the `maxWait` limit. + return (lastCallTime === undefined || (timeSinceLastCall >= wait) || + (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); + } + + function timerExpired() { + var time = now(); + if (shouldInvoke(time)) { + return trailingEdge(time); + } + // Restart the timer. + timerId = setTimeout(timerExpired, remainingWait(time)); + } + + function trailingEdge(time) { + timerId = undefined; + + // Only invoke if we have `lastArgs` which means `func` has been + // debounced at least once. + if (trailing && lastArgs) { + return invokeFunc(time); + } + lastArgs = lastThis = undefined; + return result; + } + + function cancel() { + if (timerId !== undefined) { + clearTimeout(timerId); + } + lastInvokeTime = 0; + lastArgs = lastCallTime = lastThis = timerId = undefined; + } + + function flush() { + return timerId === undefined ? result : trailingEdge(now()); + } + + function debounced() { + var time = now(), + isInvoking = shouldInvoke(time); + + lastArgs = arguments; + lastThis = this; + lastCallTime = time; + + if (isInvoking) { + if (timerId === undefined) { + return leadingEdge(lastCallTime); + } + if (maxing) { + // Handle invocations in a tight loop. + clearTimeout(timerId); + timerId = setTimeout(timerExpired, wait); + return invokeFunc(lastCallTime); + } + } + if (timerId === undefined) { + timerId = setTimeout(timerExpired, wait); + } + return result; + } + debounced.cancel = cancel; + debounced.flush = flush; + return debounced; +} + +module.exports = debounce; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/deburr.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/deburr.js new file mode 100644 index 0000000..f85e314 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/deburr.js @@ -0,0 +1,45 @@ +var deburrLetter = require('./_deburrLetter'), + toString = require('./toString'); + +/** Used to match Latin Unicode letters (excluding mathematical operators). */ +var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; + +/** Used to compose unicode character classes. */ +var rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange; + +/** Used to compose unicode capture groups. */ +var rsCombo = '[' + rsComboRange + ']'; + +/** + * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and + * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). + */ +var reComboMark = RegExp(rsCombo, 'g'); + +/** + * Deburrs `string` by converting + * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) + * letters to basic Latin letters and removing + * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ +function deburr(string) { + string = toString(string); + return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); +} + +module.exports = deburr; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaultTo.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaultTo.js new file mode 100644 index 0000000..5b33359 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaultTo.js @@ -0,0 +1,25 @@ +/** + * Checks `value` to determine whether a default value should be returned in + * its place. The `defaultValue` is returned if `value` is `NaN`, `null`, + * or `undefined`. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Util + * @param {*} value The value to check. + * @param {*} defaultValue The default value. + * @returns {*} Returns the resolved value. + * @example + * + * _.defaultTo(1, 10); + * // => 1 + * + * _.defaultTo(undefined, 10); + * // => 10 + */ +function defaultTo(value, defaultValue) { + return (value == null || value !== value) ? defaultValue : value; +} + +module.exports = defaultTo; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaults.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaults.js new file mode 100644 index 0000000..c74df04 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaults.js @@ -0,0 +1,64 @@ +var baseRest = require('./_baseRest'), + eq = require('./eq'), + isIterateeCall = require('./_isIterateeCall'), + keysIn = require('./keysIn'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ +var defaults = baseRest(function(object, sources) { + object = Object(object); + + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } + + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; + + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; + + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } + } + } + + return object; +}); + +module.exports = defaults; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaultsDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaultsDeep.js new file mode 100644 index 0000000..9b5fa3e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defaultsDeep.js @@ -0,0 +1,30 @@ +var apply = require('./_apply'), + baseRest = require('./_baseRest'), + customDefaultsMerge = require('./_customDefaultsMerge'), + mergeWith = require('./mergeWith'); + +/** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaults + * @example + * + * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); + * // => { 'a': { 'b': 2, 'c': 3 } } + */ +var defaultsDeep = baseRest(function(args) { + args.push(undefined, customDefaultsMerge); + return apply(mergeWith, undefined, args); +}); + +module.exports = defaultsDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defer.js new file mode 100644 index 0000000..f6d6c6f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/defer.js @@ -0,0 +1,26 @@ +var baseDelay = require('./_baseDelay'), + baseRest = require('./_baseRest'); + +/** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ +var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); +}); + +module.exports = defer; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/delay.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/delay.js new file mode 100644 index 0000000..bd55479 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/delay.js @@ -0,0 +1,28 @@ +var baseDelay = require('./_baseDelay'), + baseRest = require('./_baseRest'), + toNumber = require('./toNumber'); + +/** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. + */ +var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); +}); + +module.exports = delay; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/difference.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/difference.js new file mode 100644 index 0000000..fa28bb3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/difference.js @@ -0,0 +1,33 @@ +var baseDifference = require('./_baseDifference'), + baseFlatten = require('./_baseFlatten'), + baseRest = require('./_baseRest'), + isArrayLikeObject = require('./isArrayLikeObject'); + +/** + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor + * @example + * + * _.difference([2, 1], [2, 3]); + * // => [1] + */ +var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; +}); + +module.exports = difference; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/differenceBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/differenceBy.js new file mode 100644 index 0000000..2cd63e7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/differenceBy.js @@ -0,0 +1,44 @@ +var baseDifference = require('./_baseDifference'), + baseFlatten = require('./_baseFlatten'), + baseIteratee = require('./_baseIteratee'), + baseRest = require('./_baseRest'), + isArrayLikeObject = require('./isArrayLikeObject'), + last = require('./last'); + +/** + * This method is like `_.difference` except that it accepts `iteratee` which + * is invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * **Note:** Unlike `_.pullAllBy`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2] + * + * // The `_.property` iteratee shorthand. + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ +var differenceBy = baseRest(function(array, values) { + var iteratee = last(values); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), baseIteratee(iteratee, 2)) + : []; +}); + +module.exports = differenceBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/differenceWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/differenceWith.js new file mode 100644 index 0000000..c0233f4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/differenceWith.js @@ -0,0 +1,40 @@ +var baseDifference = require('./_baseDifference'), + baseFlatten = require('./_baseFlatten'), + baseRest = require('./_baseRest'), + isArrayLikeObject = require('./isArrayLikeObject'), + last = require('./last'); + +/** + * This method is like `_.difference` except that it accepts `comparator` + * which is invoked to compare elements of `array` to `values`. The order and + * references of result values are determined by the first array. The comparator + * is invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.pullAllWith`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * + * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); + * // => [{ 'x': 2, 'y': 1 }] + */ +var differenceWith = baseRest(function(array, values) { + var comparator = last(values); + if (isArrayLikeObject(comparator)) { + comparator = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) + : []; +}); + +module.exports = differenceWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/divide.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/divide.js new file mode 100644 index 0000000..8cae0cd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/divide.js @@ -0,0 +1,22 @@ +var createMathOperation = require('./_createMathOperation'); + +/** + * Divide two numbers. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Math + * @param {number} dividend The first number in a division. + * @param {number} divisor The second number in a division. + * @returns {number} Returns the quotient. + * @example + * + * _.divide(6, 4); + * // => 1.5 + */ +var divide = createMathOperation(function(dividend, divisor) { + return dividend / divisor; +}, 1); + +module.exports = divide; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/drop.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/drop.js new file mode 100644 index 0000000..d5c3cba --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/drop.js @@ -0,0 +1,38 @@ +var baseSlice = require('./_baseSlice'), + toInteger = require('./toInteger'); + +/** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ +function drop(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, n < 0 ? 0 : n, length); +} + +module.exports = drop; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropRight.js new file mode 100644 index 0000000..441fe99 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropRight.js @@ -0,0 +1,39 @@ +var baseSlice = require('./_baseSlice'), + toInteger = require('./toInteger'); + +/** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ +function dropRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, 0, n < 0 ? 0 : n); +} + +module.exports = dropRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropRightWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropRightWhile.js new file mode 100644 index 0000000..9ad36a0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropRightWhile.js @@ -0,0 +1,45 @@ +var baseIteratee = require('./_baseIteratee'), + baseWhile = require('./_baseWhile'); + +/** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.dropRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney'] + * + * // The `_.matches` iteratee shorthand. + * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropRightWhile(users, ['active', false]); + * // => objects for ['barney'] + * + * // The `_.property` iteratee shorthand. + * _.dropRightWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ +function dropRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, baseIteratee(predicate, 3), true, true) + : []; +} + +module.exports = dropRightWhile; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropWhile.js new file mode 100644 index 0000000..903ef56 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/dropWhile.js @@ -0,0 +1,45 @@ +var baseIteratee = require('./_baseIteratee'), + baseWhile = require('./_baseWhile'); + +/** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.dropWhile(users, function(o) { return !o.active; }); + * // => objects for ['pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.dropWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropWhile(users, ['active', false]); + * // => objects for ['pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.dropWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ +function dropWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, baseIteratee(predicate, 3), true) + : []; +} + +module.exports = dropWhile; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/each.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/each.js new file mode 100644 index 0000000..8800f42 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/each.js @@ -0,0 +1 @@ +module.exports = require('./forEach'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/eachRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/eachRight.js new file mode 100644 index 0000000..3252b2a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/eachRight.js @@ -0,0 +1 @@ +module.exports = require('./forEachRight'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/endsWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/endsWith.js new file mode 100644 index 0000000..76fc866 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/endsWith.js @@ -0,0 +1,43 @@ +var baseClamp = require('./_baseClamp'), + baseToString = require('./_baseToString'), + toInteger = require('./toInteger'), + toString = require('./toString'); + +/** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search up to. + * @returns {boolean} Returns `true` if `string` ends with `target`, + * else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ +function endsWith(string, target, position) { + string = toString(string); + target = baseToString(target); + + var length = string.length; + position = position === undefined + ? length + : baseClamp(toInteger(position), 0, length); + + var end = position; + position -= target.length; + return position >= 0 && string.slice(position, end) == target; +} + +module.exports = endsWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/entries.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/entries.js new file mode 100644 index 0000000..7a88df2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/entries.js @@ -0,0 +1 @@ +module.exports = require('./toPairs'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/entriesIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/entriesIn.js new file mode 100644 index 0000000..f6c6331 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/entriesIn.js @@ -0,0 +1 @@ +module.exports = require('./toPairsIn'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/eq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/eq.js new file mode 100644 index 0000000..a940688 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/eq.js @@ -0,0 +1,37 @@ +/** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ +function eq(value, other) { + return value === other || (value !== value && other !== other); +} + +module.exports = eq; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/escape.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/escape.js new file mode 100644 index 0000000..9247e00 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/escape.js @@ -0,0 +1,43 @@ +var escapeHtmlChar = require('./_escapeHtmlChar'), + toString = require('./toString'); + +/** Used to match HTML entities and HTML characters. */ +var reUnescapedHtml = /[&<>"']/g, + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + +/** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ +function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; +} + +module.exports = escape; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/escapeRegExp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/escapeRegExp.js new file mode 100644 index 0000000..0a58c69 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/escapeRegExp.js @@ -0,0 +1,32 @@ +var toString = require('./toString'); + +/** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ +var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, + reHasRegExpChar = RegExp(reRegExpChar.source); + +/** + * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", + * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https://lodash\.com/\)' + */ +function escapeRegExp(string) { + string = toString(string); + return (string && reHasRegExpChar.test(string)) + ? string.replace(reRegExpChar, '\\$&') + : string; +} + +module.exports = escapeRegExp; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/every.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/every.js new file mode 100644 index 0000000..25080da --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/every.js @@ -0,0 +1,56 @@ +var arrayEvery = require('./_arrayEvery'), + baseEvery = require('./_baseEvery'), + baseIteratee = require('./_baseIteratee'), + isArray = require('./isArray'), + isIterateeCall = require('./_isIterateeCall'); + +/** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false + */ +function every(collection, predicate, guard) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, baseIteratee(predicate, 3)); +} + +module.exports = every; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/extend.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/extend.js new file mode 100644 index 0000000..e00166c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/extend.js @@ -0,0 +1 @@ +module.exports = require('./assignIn'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/extendWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/extendWith.js new file mode 100644 index 0000000..dbdcb3b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/extendWith.js @@ -0,0 +1 @@ +module.exports = require('./assignInWith'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fill.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fill.js new file mode 100644 index 0000000..ae13aa1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fill.js @@ -0,0 +1,45 @@ +var baseFill = require('./_baseFill'), + isIterateeCall = require('./_isIterateeCall'); + +/** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8, 10], '*', 1, 3); + * // => [4, '*', '*', 10] + */ +function fill(array, value, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); +} + +module.exports = fill; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/filter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/filter.js new file mode 100644 index 0000000..89e0c8c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/filter.js @@ -0,0 +1,52 @@ +var arrayFilter = require('./_arrayFilter'), + baseFilter = require('./_baseFilter'), + baseIteratee = require('./_baseIteratee'), + isArray = require('./isArray'); + +/** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + * + * // Combining several predicates using `_.overEvery` or `_.overSome`. + * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); + * // => objects for ['fred', 'barney'] + */ +function filter(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, baseIteratee(predicate, 3)); +} + +module.exports = filter; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/find.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/find.js new file mode 100644 index 0000000..de732cc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/find.js @@ -0,0 +1,42 @@ +var createFind = require('./_createFind'), + findIndex = require('./findIndex'); + +/** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' + * + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' + */ +var find = createFind(findIndex); + +module.exports = find; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findIndex.js new file mode 100644 index 0000000..4689069 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findIndex.js @@ -0,0 +1,55 @@ +var baseFindIndex = require('./_baseFindIndex'), + baseIteratee = require('./_baseIteratee'), + toInteger = require('./toInteger'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 + * + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 + */ +function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, baseIteratee(predicate, 3), index); +} + +module.exports = findIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findKey.js new file mode 100644 index 0000000..cac0248 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findKey.js @@ -0,0 +1,44 @@ +var baseFindKey = require('./_baseFindKey'), + baseForOwn = require('./_baseForOwn'), + baseIteratee = require('./_baseIteratee'); + +/** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(o) { return o.age < 40; }); + * // => 'barney' (iteration order is not guaranteed) + * + * // The `_.matches` iteratee shorthand. + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findKey(users, 'active'); + * // => 'barney' + */ +function findKey(object, predicate) { + return baseFindKey(object, baseIteratee(predicate, 3), baseForOwn); +} + +module.exports = findKey; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLast.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLast.js new file mode 100644 index 0000000..70b4271 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLast.js @@ -0,0 +1,25 @@ +var createFind = require('./_createFind'), + findLastIndex = require('./findLastIndex'); + +/** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=collection.length-1] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ +var findLast = createFind(findLastIndex); + +module.exports = findLast; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLastIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLastIndex.js new file mode 100644 index 0000000..7da3431 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLastIndex.js @@ -0,0 +1,59 @@ +var baseFindIndex = require('./_baseFindIndex'), + baseIteratee = require('./_baseIteratee'), + toInteger = require('./toInteger'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max, + nativeMin = Math.min; + +/** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); + * // => 2 + * + * // The `_.matches` iteratee shorthand. + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastIndex(users, ['active', false]); + * // => 2 + * + * // The `_.property` iteratee shorthand. + * _.findLastIndex(users, 'active'); + * // => 0 + */ +function findLastIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length - 1; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = fromIndex < 0 + ? nativeMax(length + index, 0) + : nativeMin(index, length - 1); + } + return baseFindIndex(array, baseIteratee(predicate, 3), index, true); +} + +module.exports = findLastIndex; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLastKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLastKey.js new file mode 100644 index 0000000..66fb9fb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/findLastKey.js @@ -0,0 +1,44 @@ +var baseFindKey = require('./_baseFindKey'), + baseForOwnRight = require('./_baseForOwnRight'), + baseIteratee = require('./_baseIteratee'); + +/** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(o) { return o.age < 40; }); + * // => returns 'pebbles' assuming `_.findKey` returns 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ +function findLastKey(object, predicate) { + return baseFindKey(object, baseIteratee(predicate, 3), baseForOwnRight); +} + +module.exports = findLastKey; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/first.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/first.js new file mode 100644 index 0000000..53f4ad1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/first.js @@ -0,0 +1 @@ +module.exports = require('./head'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMap.js new file mode 100644 index 0000000..e668506 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMap.js @@ -0,0 +1,29 @@ +var baseFlatten = require('./_baseFlatten'), + map = require('./map'); + +/** + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [n, n]; + * } + * + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ +function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); +} + +module.exports = flatMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMapDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMapDeep.js new file mode 100644 index 0000000..4653d60 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMapDeep.js @@ -0,0 +1,31 @@ +var baseFlatten = require('./_baseFlatten'), + map = require('./map'); + +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; + +/** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDeep([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ +function flatMapDeep(collection, iteratee) { + return baseFlatten(map(collection, iteratee), INFINITY); +} + +module.exports = flatMapDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMapDepth.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMapDepth.js new file mode 100644 index 0000000..6d72005 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatMapDepth.js @@ -0,0 +1,31 @@ +var baseFlatten = require('./_baseFlatten'), + map = require('./map'), + toInteger = require('./toInteger'); + +/** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDepth([1, 2], duplicate, 2); + * // => [[1, 1], [2, 2]] + */ +function flatMapDepth(collection, iteratee, depth) { + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(map(collection, iteratee), depth); +} + +module.exports = flatMapDepth; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatten.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatten.js new file mode 100644 index 0000000..3f09f7f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flatten.js @@ -0,0 +1,22 @@ +var baseFlatten = require('./_baseFlatten'); + +/** + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] + */ +function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; +} + +module.exports = flatten; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flattenDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flattenDeep.js new file mode 100644 index 0000000..8ad585c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flattenDeep.js @@ -0,0 +1,25 @@ +var baseFlatten = require('./_baseFlatten'); + +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; + +/** + * Recursively flattens `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] + */ +function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; +} + +module.exports = flattenDeep; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flattenDepth.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flattenDepth.js new file mode 100644 index 0000000..441fdcc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flattenDepth.js @@ -0,0 +1,33 @@ +var baseFlatten = require('./_baseFlatten'), + toInteger = require('./toInteger'); + +/** + * Recursively flatten `array` up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Array + * @param {Array} array The array to flatten. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * var array = [1, [2, [3, [4]], 5]]; + * + * _.flattenDepth(array, 1); + * // => [1, 2, [3, [4]], 5] + * + * _.flattenDepth(array, 2); + * // => [1, 2, 3, [4], 5] + */ +function flattenDepth(array, depth) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(array, depth); +} + +module.exports = flattenDepth; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flip.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flip.js new file mode 100644 index 0000000..c28dd78 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flip.js @@ -0,0 +1,28 @@ +var createWrap = require('./_createWrap'); + +/** Used to compose bitmasks for function metadata. */ +var WRAP_FLIP_FLAG = 512; + +/** + * Creates a function that invokes `func` with arguments reversed. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new flipped function. + * @example + * + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); + * + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] + */ +function flip(func) { + return createWrap(func, WRAP_FLIP_FLAG); +} + +module.exports = flip; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/floor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/floor.js new file mode 100644 index 0000000..ab6dfa2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/floor.js @@ -0,0 +1,26 @@ +var createRound = require('./_createRound'); + +/** + * Computes `number` rounded down to `precision`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Math + * @param {number} number The number to round down. + * @param {number} [precision=0] The precision to round down to. + * @returns {number} Returns the rounded down number. + * @example + * + * _.floor(4.006); + * // => 4 + * + * _.floor(0.046, 2); + * // => 0.04 + * + * _.floor(4060, -2); + * // => 4000 + */ +var floor = createRound('floor'); + +module.exports = floor; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flow.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flow.js new file mode 100644 index 0000000..74b6b62 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flow.js @@ -0,0 +1,27 @@ +var createFlow = require('./_createFlow'); + +/** + * Creates a function that returns the result of invoking the given functions + * with the `this` binding of the created function, where each successive + * invocation is supplied the return value of the previous. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {...(Function|Function[])} [funcs] The functions to invoke. + * @returns {Function} Returns the new composite function. + * @see _.flowRight + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flow([_.add, square]); + * addSquare(1, 2); + * // => 9 + */ +var flow = createFlow(); + +module.exports = flow; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flowRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flowRight.js new file mode 100644 index 0000000..1146141 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/flowRight.js @@ -0,0 +1,26 @@ +var createFlow = require('./_createFlow'); + +/** + * This method is like `_.flow` except that it creates a function that + * invokes the given functions from right to left. + * + * @static + * @since 3.0.0 + * @memberOf _ + * @category Util + * @param {...(Function|Function[])} [funcs] The functions to invoke. + * @returns {Function} Returns the new composite function. + * @see _.flow + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flowRight([square, _.add]); + * addSquare(1, 2); + * // => 9 + */ +var flowRight = createFlow(true); + +module.exports = flowRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forEach.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forEach.js new file mode 100644 index 0000000..c64eaa7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forEach.js @@ -0,0 +1,41 @@ +var arrayEach = require('./_arrayEach'), + baseEach = require('./_baseEach'), + castFunction = require('./_castFunction'), + isArray = require('./isArray'); + +/** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ +function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, castFunction(iteratee)); +} + +module.exports = forEach; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forEachRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forEachRight.js new file mode 100644 index 0000000..7390eba --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forEachRight.js @@ -0,0 +1,31 @@ +var arrayEachRight = require('./_arrayEachRight'), + baseEachRight = require('./_baseEachRight'), + castFunction = require('./_castFunction'), + isArray = require('./isArray'); + +/** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @alias eachRight + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEach + * @example + * + * _.forEachRight([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `2` then `1`. + */ +function forEachRight(collection, iteratee) { + var func = isArray(collection) ? arrayEachRight : baseEachRight; + return func(collection, castFunction(iteratee)); +} + +module.exports = forEachRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forIn.js new file mode 100644 index 0000000..583a596 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forIn.js @@ -0,0 +1,39 @@ +var baseFor = require('./_baseFor'), + castFunction = require('./_castFunction'), + keysIn = require('./keysIn'); + +/** + * Iterates over own and inherited enumerable string keyed properties of an + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forInRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + */ +function forIn(object, iteratee) { + return object == null + ? object + : baseFor(object, castFunction(iteratee), keysIn); +} + +module.exports = forIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forInRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forInRight.js new file mode 100644 index 0000000..4aedf58 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forInRight.js @@ -0,0 +1,37 @@ +var baseForRight = require('./_baseForRight'), + castFunction = require('./_castFunction'), + keysIn = require('./keysIn'); + +/** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forIn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + */ +function forInRight(object, iteratee) { + return object == null + ? object + : baseForRight(object, castFunction(iteratee), keysIn); +} + +module.exports = forInRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forOwn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forOwn.js new file mode 100644 index 0000000..94eed84 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forOwn.js @@ -0,0 +1,36 @@ +var baseForOwn = require('./_baseForOwn'), + castFunction = require('./_castFunction'); + +/** + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwnRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ +function forOwn(object, iteratee) { + return object && baseForOwn(object, castFunction(iteratee)); +} + +module.exports = forOwn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forOwnRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forOwnRight.js new file mode 100644 index 0000000..86f338f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/forOwnRight.js @@ -0,0 +1,34 @@ +var baseForOwnRight = require('./_baseForOwnRight'), + castFunction = require('./_castFunction'); + +/** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + */ +function forOwnRight(object, iteratee) { + return object && baseForOwnRight(object, castFunction(iteratee)); +} + +module.exports = forOwnRight; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp.js new file mode 100644 index 0000000..e372dbb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp.js @@ -0,0 +1,2 @@ +var _ = require('./lodash.min').runInContext(); +module.exports = require('./fp/_baseConvert')(_, _); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/F.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/F.js new file mode 100644 index 0000000..a05a63a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/F.js @@ -0,0 +1 @@ +module.exports = require('./stubFalse'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/T.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/T.js new file mode 100644 index 0000000..e2ba8ea --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/T.js @@ -0,0 +1 @@ +module.exports = require('./stubTrue'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/__.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/__.js new file mode 100644 index 0000000..4af98de --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/__.js @@ -0,0 +1 @@ +module.exports = require('./placeholder'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_baseConvert.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_baseConvert.js new file mode 100644 index 0000000..9baf8e1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_baseConvert.js @@ -0,0 +1,569 @@ +var mapping = require('./_mapping'), + fallbackHolder = require('./placeholder'); + +/** Built-in value reference. */ +var push = Array.prototype.push; + +/** + * Creates a function, with an arity of `n`, that invokes `func` with the + * arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} n The arity of the new function. + * @returns {Function} Returns the new function. + */ +function baseArity(func, n) { + return n == 2 + ? function(a, b) { return func.apply(undefined, arguments); } + : function(a) { return func.apply(undefined, arguments); }; +} + +/** + * Creates a function that invokes `func`, with up to `n` arguments, ignoring + * any additional arguments. + * + * @private + * @param {Function} func The function to cap arguments for. + * @param {number} n The arity cap. + * @returns {Function} Returns the new function. + */ +function baseAry(func, n) { + return n == 2 + ? function(a, b) { return func(a, b); } + : function(a) { return func(a); }; +} + +/** + * Creates a clone of `array`. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the cloned array. + */ +function cloneArray(array) { + var length = array ? array.length : 0, + result = Array(length); + + while (length--) { + result[length] = array[length]; + } + return result; +} + +/** + * Creates a function that clones a given object using the assignment `func`. + * + * @private + * @param {Function} func The assignment function. + * @returns {Function} Returns the new cloner function. + */ +function createCloner(func) { + return function(object) { + return func({}, object); + }; +} + +/** + * A specialized version of `_.spread` which flattens the spread array into + * the arguments of the invoked `func`. + * + * @private + * @param {Function} func The function to spread arguments over. + * @param {number} start The start position of the spread. + * @returns {Function} Returns the new function. + */ +function flatSpread(func, start) { + return function() { + var length = arguments.length, + lastIndex = length - 1, + args = Array(length); + + while (length--) { + args[length] = arguments[length]; + } + var array = args[start], + otherArgs = args.slice(0, start); + + if (array) { + push.apply(otherArgs, array); + } + if (start != lastIndex) { + push.apply(otherArgs, args.slice(start + 1)); + } + return func.apply(this, otherArgs); + }; +} + +/** + * Creates a function that wraps `func` and uses `cloner` to clone the first + * argument it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} cloner The function to clone arguments. + * @returns {Function} Returns the new immutable function. + */ +function wrapImmutable(func, cloner) { + return function() { + var length = arguments.length; + if (!length) { + return; + } + var args = Array(length); + while (length--) { + args[length] = arguments[length]; + } + var result = args[0] = cloner.apply(undefined, args); + func.apply(undefined, args); + return result; + }; +} + +/** + * The base implementation of `convert` which accepts a `util` object of methods + * required to perform conversions. + * + * @param {Object} util The util object. + * @param {string} name The name of the function to convert. + * @param {Function} func The function to convert. + * @param {Object} [options] The options object. + * @param {boolean} [options.cap=true] Specify capping iteratee arguments. + * @param {boolean} [options.curry=true] Specify currying. + * @param {boolean} [options.fixed=true] Specify fixed arity. + * @param {boolean} [options.immutable=true] Specify immutable operations. + * @param {boolean} [options.rearg=true] Specify rearranging arguments. + * @returns {Function|Object} Returns the converted function or object. + */ +function baseConvert(util, name, func, options) { + var isLib = typeof name == 'function', + isObj = name === Object(name); + + if (isObj) { + options = func; + func = name; + name = undefined; + } + if (func == null) { + throw new TypeError; + } + options || (options = {}); + + var config = { + 'cap': 'cap' in options ? options.cap : true, + 'curry': 'curry' in options ? options.curry : true, + 'fixed': 'fixed' in options ? options.fixed : true, + 'immutable': 'immutable' in options ? options.immutable : true, + 'rearg': 'rearg' in options ? options.rearg : true + }; + + var defaultHolder = isLib ? func : fallbackHolder, + forceCurry = ('curry' in options) && options.curry, + forceFixed = ('fixed' in options) && options.fixed, + forceRearg = ('rearg' in options) && options.rearg, + pristine = isLib ? func.runInContext() : undefined; + + var helpers = isLib ? func : { + 'ary': util.ary, + 'assign': util.assign, + 'clone': util.clone, + 'curry': util.curry, + 'forEach': util.forEach, + 'isArray': util.isArray, + 'isError': util.isError, + 'isFunction': util.isFunction, + 'isWeakMap': util.isWeakMap, + 'iteratee': util.iteratee, + 'keys': util.keys, + 'rearg': util.rearg, + 'toInteger': util.toInteger, + 'toPath': util.toPath + }; + + var ary = helpers.ary, + assign = helpers.assign, + clone = helpers.clone, + curry = helpers.curry, + each = helpers.forEach, + isArray = helpers.isArray, + isError = helpers.isError, + isFunction = helpers.isFunction, + isWeakMap = helpers.isWeakMap, + keys = helpers.keys, + rearg = helpers.rearg, + toInteger = helpers.toInteger, + toPath = helpers.toPath; + + var aryMethodKeys = keys(mapping.aryMethod); + + var wrappers = { + 'castArray': function(castArray) { + return function() { + var value = arguments[0]; + return isArray(value) + ? castArray(cloneArray(value)) + : castArray.apply(undefined, arguments); + }; + }, + 'iteratee': function(iteratee) { + return function() { + var func = arguments[0], + arity = arguments[1], + result = iteratee(func, arity), + length = result.length; + + if (config.cap && typeof arity == 'number') { + arity = arity > 2 ? (arity - 2) : 1; + return (length && length <= arity) ? result : baseAry(result, arity); + } + return result; + }; + }, + 'mixin': function(mixin) { + return function(source) { + var func = this; + if (!isFunction(func)) { + return mixin(func, Object(source)); + } + var pairs = []; + each(keys(source), function(key) { + if (isFunction(source[key])) { + pairs.push([key, func.prototype[key]]); + } + }); + + mixin(func, Object(source)); + + each(pairs, function(pair) { + var value = pair[1]; + if (isFunction(value)) { + func.prototype[pair[0]] = value; + } else { + delete func.prototype[pair[0]]; + } + }); + return func; + }; + }, + 'nthArg': function(nthArg) { + return function(n) { + var arity = n < 0 ? 1 : (toInteger(n) + 1); + return curry(nthArg(n), arity); + }; + }, + 'rearg': function(rearg) { + return function(func, indexes) { + var arity = indexes ? indexes.length : 0; + return curry(rearg(func, indexes), arity); + }; + }, + 'runInContext': function(runInContext) { + return function(context) { + return baseConvert(util, runInContext(context), options); + }; + } + }; + + /*--------------------------------------------------------------------------*/ + + /** + * Casts `func` to a function with an arity capped iteratee if needed. + * + * @private + * @param {string} name The name of the function to inspect. + * @param {Function} func The function to inspect. + * @returns {Function} Returns the cast function. + */ + function castCap(name, func) { + if (config.cap) { + var indexes = mapping.iterateeRearg[name]; + if (indexes) { + return iterateeRearg(func, indexes); + } + var n = !isLib && mapping.iterateeAry[name]; + if (n) { + return iterateeAry(func, n); + } + } + return func; + } + + /** + * Casts `func` to a curried function if needed. + * + * @private + * @param {string} name The name of the function to inspect. + * @param {Function} func The function to inspect. + * @param {number} n The arity of `func`. + * @returns {Function} Returns the cast function. + */ + function castCurry(name, func, n) { + return (forceCurry || (config.curry && n > 1)) + ? curry(func, n) + : func; + } + + /** + * Casts `func` to a fixed arity function if needed. + * + * @private + * @param {string} name The name of the function to inspect. + * @param {Function} func The function to inspect. + * @param {number} n The arity cap. + * @returns {Function} Returns the cast function. + */ + function castFixed(name, func, n) { + if (config.fixed && (forceFixed || !mapping.skipFixed[name])) { + var data = mapping.methodSpread[name], + start = data && data.start; + + return start === undefined ? ary(func, n) : flatSpread(func, start); + } + return func; + } + + /** + * Casts `func` to an rearged function if needed. + * + * @private + * @param {string} name The name of the function to inspect. + * @param {Function} func The function to inspect. + * @param {number} n The arity of `func`. + * @returns {Function} Returns the cast function. + */ + function castRearg(name, func, n) { + return (config.rearg && n > 1 && (forceRearg || !mapping.skipRearg[name])) + ? rearg(func, mapping.methodRearg[name] || mapping.aryRearg[n]) + : func; + } + + /** + * Creates a clone of `object` by `path`. + * + * @private + * @param {Object} object The object to clone. + * @param {Array|string} path The path to clone by. + * @returns {Object} Returns the cloned object. + */ + function cloneByPath(object, path) { + path = toPath(path); + + var index = -1, + length = path.length, + lastIndex = length - 1, + result = clone(Object(object)), + nested = result; + + while (nested != null && ++index < length) { + var key = path[index], + value = nested[key]; + + if (value != null && + !(isFunction(value) || isError(value) || isWeakMap(value))) { + nested[key] = clone(index == lastIndex ? value : Object(value)); + } + nested = nested[key]; + } + return result; + } + + /** + * Converts `lodash` to an immutable auto-curried iteratee-first data-last + * version with conversion `options` applied. + * + * @param {Object} [options] The options object. See `baseConvert` for more details. + * @returns {Function} Returns the converted `lodash`. + */ + function convertLib(options) { + return _.runInContext.convert(options)(undefined); + } + + /** + * Create a converter function for `func` of `name`. + * + * @param {string} name The name of the function to convert. + * @param {Function} func The function to convert. + * @returns {Function} Returns the new converter function. + */ + function createConverter(name, func) { + var realName = mapping.aliasToReal[name] || name, + methodName = mapping.remap[realName] || realName, + oldOptions = options; + + return function(options) { + var newUtil = isLib ? pristine : helpers, + newFunc = isLib ? pristine[methodName] : func, + newOptions = assign(assign({}, oldOptions), options); + + return baseConvert(newUtil, realName, newFunc, newOptions); + }; + } + + /** + * Creates a function that wraps `func` to invoke its iteratee, with up to `n` + * arguments, ignoring any additional arguments. + * + * @private + * @param {Function} func The function to cap iteratee arguments for. + * @param {number} n The arity cap. + * @returns {Function} Returns the new function. + */ + function iterateeAry(func, n) { + return overArg(func, function(func) { + return typeof func == 'function' ? baseAry(func, n) : func; + }); + } + + /** + * Creates a function that wraps `func` to invoke its iteratee with arguments + * arranged according to the specified `indexes` where the argument value at + * the first index is provided as the first argument, the argument value at + * the second index is provided as the second argument, and so on. + * + * @private + * @param {Function} func The function to rearrange iteratee arguments for. + * @param {number[]} indexes The arranged argument indexes. + * @returns {Function} Returns the new function. + */ + function iterateeRearg(func, indexes) { + return overArg(func, function(func) { + var n = indexes.length; + return baseArity(rearg(baseAry(func, n), indexes), n); + }); + } + + /** + * Creates a function that invokes `func` with its first argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function() { + var length = arguments.length; + if (!length) { + return func(); + } + var args = Array(length); + while (length--) { + args[length] = arguments[length]; + } + var index = config.rearg ? 0 : (length - 1); + args[index] = transform(args[index]); + return func.apply(undefined, args); + }; + } + + /** + * Creates a function that wraps `func` and applys the conversions + * rules by `name`. + * + * @private + * @param {string} name The name of the function to wrap. + * @param {Function} func The function to wrap. + * @returns {Function} Returns the converted function. + */ + function wrap(name, func, placeholder) { + var result, + realName = mapping.aliasToReal[name] || name, + wrapped = func, + wrapper = wrappers[realName]; + + if (wrapper) { + wrapped = wrapper(func); + } + else if (config.immutable) { + if (mapping.mutate.array[realName]) { + wrapped = wrapImmutable(func, cloneArray); + } + else if (mapping.mutate.object[realName]) { + wrapped = wrapImmutable(func, createCloner(func)); + } + else if (mapping.mutate.set[realName]) { + wrapped = wrapImmutable(func, cloneByPath); + } + } + each(aryMethodKeys, function(aryKey) { + each(mapping.aryMethod[aryKey], function(otherName) { + if (realName == otherName) { + var data = mapping.methodSpread[realName], + afterRearg = data && data.afterRearg; + + result = afterRearg + ? castFixed(realName, castRearg(realName, wrapped, aryKey), aryKey) + : castRearg(realName, castFixed(realName, wrapped, aryKey), aryKey); + + result = castCap(realName, result); + result = castCurry(realName, result, aryKey); + return false; + } + }); + return !result; + }); + + result || (result = wrapped); + if (result == func) { + result = forceCurry ? curry(result, 1) : function() { + return func.apply(this, arguments); + }; + } + result.convert = createConverter(realName, func); + result.placeholder = func.placeholder = placeholder; + + return result; + } + + /*--------------------------------------------------------------------------*/ + + if (!isObj) { + return wrap(name, func, defaultHolder); + } + var _ = func; + + // Convert methods by ary cap. + var pairs = []; + each(aryMethodKeys, function(aryKey) { + each(mapping.aryMethod[aryKey], function(key) { + var func = _[mapping.remap[key] || key]; + if (func) { + pairs.push([key, wrap(key, func, _)]); + } + }); + }); + + // Convert remaining methods. + each(keys(_), function(key) { + var func = _[key]; + if (typeof func == 'function') { + var length = pairs.length; + while (length--) { + if (pairs[length][0] == key) { + return; + } + } + func.convert = createConverter(key, func); + pairs.push([key, func]); + } + }); + + // Assign to `_` leaving `_.prototype` unchanged to allow chaining. + each(pairs, function(pair) { + _[pair[0]] = pair[1]; + }); + + _.convert = convertLib; + _.placeholder = _; + + // Assign aliases. + each(keys(_), function(key) { + each(mapping.realToAlias[key] || [], function(alias) { + _[alias] = _[key]; + }); + }); + + return _; +} + +module.exports = baseConvert; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_convertBrowser.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_convertBrowser.js new file mode 100644 index 0000000..bde030d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_convertBrowser.js @@ -0,0 +1,18 @@ +var baseConvert = require('./_baseConvert'); + +/** + * Converts `lodash` to an immutable auto-curried iteratee-first data-last + * version with conversion `options` applied. + * + * @param {Function} lodash The lodash function to convert. + * @param {Object} [options] The options object. See `baseConvert` for more details. + * @returns {Function} Returns the converted `lodash`. + */ +function browserConvert(lodash, options) { + return baseConvert(lodash, lodash, options); +} + +if (typeof _ == 'function' && typeof _.runInContext == 'function') { + _ = browserConvert(_.runInContext()); +} +module.exports = browserConvert; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_falseOptions.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_falseOptions.js new file mode 100644 index 0000000..773235e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_falseOptions.js @@ -0,0 +1,7 @@ +module.exports = { + 'cap': false, + 'curry': false, + 'fixed': false, + 'immutable': false, + 'rearg': false +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_mapping.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_mapping.js new file mode 100644 index 0000000..a642ec0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_mapping.js @@ -0,0 +1,358 @@ +/** Used to map aliases to their real names. */ +exports.aliasToReal = { + + // Lodash aliases. + 'each': 'forEach', + 'eachRight': 'forEachRight', + 'entries': 'toPairs', + 'entriesIn': 'toPairsIn', + 'extend': 'assignIn', + 'extendAll': 'assignInAll', + 'extendAllWith': 'assignInAllWith', + 'extendWith': 'assignInWith', + 'first': 'head', + + // Methods that are curried variants of others. + 'conforms': 'conformsTo', + 'matches': 'isMatch', + 'property': 'get', + + // Ramda aliases. + '__': 'placeholder', + 'F': 'stubFalse', + 'T': 'stubTrue', + 'all': 'every', + 'allPass': 'overEvery', + 'always': 'constant', + 'any': 'some', + 'anyPass': 'overSome', + 'apply': 'spread', + 'assoc': 'set', + 'assocPath': 'set', + 'complement': 'negate', + 'compose': 'flowRight', + 'contains': 'includes', + 'dissoc': 'unset', + 'dissocPath': 'unset', + 'dropLast': 'dropRight', + 'dropLastWhile': 'dropRightWhile', + 'equals': 'isEqual', + 'identical': 'eq', + 'indexBy': 'keyBy', + 'init': 'initial', + 'invertObj': 'invert', + 'juxt': 'over', + 'omitAll': 'omit', + 'nAry': 'ary', + 'path': 'get', + 'pathEq': 'matchesProperty', + 'pathOr': 'getOr', + 'paths': 'at', + 'pickAll': 'pick', + 'pipe': 'flow', + 'pluck': 'map', + 'prop': 'get', + 'propEq': 'matchesProperty', + 'propOr': 'getOr', + 'props': 'at', + 'symmetricDifference': 'xor', + 'symmetricDifferenceBy': 'xorBy', + 'symmetricDifferenceWith': 'xorWith', + 'takeLast': 'takeRight', + 'takeLastWhile': 'takeRightWhile', + 'unapply': 'rest', + 'unnest': 'flatten', + 'useWith': 'overArgs', + 'where': 'conformsTo', + 'whereEq': 'isMatch', + 'zipObj': 'zipObject' +}; + +/** Used to map ary to method names. */ +exports.aryMethod = { + '1': [ + 'assignAll', 'assignInAll', 'attempt', 'castArray', 'ceil', 'create', + 'curry', 'curryRight', 'defaultsAll', 'defaultsDeepAll', 'floor', 'flow', + 'flowRight', 'fromPairs', 'invert', 'iteratee', 'memoize', 'method', 'mergeAll', + 'methodOf', 'mixin', 'nthArg', 'over', 'overEvery', 'overSome','rest', 'reverse', + 'round', 'runInContext', 'spread', 'template', 'trim', 'trimEnd', 'trimStart', + 'uniqueId', 'words', 'zipAll' + ], + '2': [ + 'add', 'after', 'ary', 'assign', 'assignAllWith', 'assignIn', 'assignInAllWith', + 'at', 'before', 'bind', 'bindAll', 'bindKey', 'chunk', 'cloneDeepWith', + 'cloneWith', 'concat', 'conformsTo', 'countBy', 'curryN', 'curryRightN', + 'debounce', 'defaults', 'defaultsDeep', 'defaultTo', 'delay', 'difference', + 'divide', 'drop', 'dropRight', 'dropRightWhile', 'dropWhile', 'endsWith', 'eq', + 'every', 'filter', 'find', 'findIndex', 'findKey', 'findLast', 'findLastIndex', + 'findLastKey', 'flatMap', 'flatMapDeep', 'flattenDepth', 'forEach', + 'forEachRight', 'forIn', 'forInRight', 'forOwn', 'forOwnRight', 'get', + 'groupBy', 'gt', 'gte', 'has', 'hasIn', 'includes', 'indexOf', 'intersection', + 'invertBy', 'invoke', 'invokeMap', 'isEqual', 'isMatch', 'join', 'keyBy', + 'lastIndexOf', 'lt', 'lte', 'map', 'mapKeys', 'mapValues', 'matchesProperty', + 'maxBy', 'meanBy', 'merge', 'mergeAllWith', 'minBy', 'multiply', 'nth', 'omit', + 'omitBy', 'overArgs', 'pad', 'padEnd', 'padStart', 'parseInt', 'partial', + 'partialRight', 'partition', 'pick', 'pickBy', 'propertyOf', 'pull', 'pullAll', + 'pullAt', 'random', 'range', 'rangeRight', 'rearg', 'reject', 'remove', + 'repeat', 'restFrom', 'result', 'sampleSize', 'some', 'sortBy', 'sortedIndex', + 'sortedIndexOf', 'sortedLastIndex', 'sortedLastIndexOf', 'sortedUniqBy', + 'split', 'spreadFrom', 'startsWith', 'subtract', 'sumBy', 'take', 'takeRight', + 'takeRightWhile', 'takeWhile', 'tap', 'throttle', 'thru', 'times', 'trimChars', + 'trimCharsEnd', 'trimCharsStart', 'truncate', 'union', 'uniqBy', 'uniqWith', + 'unset', 'unzipWith', 'without', 'wrap', 'xor', 'zip', 'zipObject', + 'zipObjectDeep' + ], + '3': [ + 'assignInWith', 'assignWith', 'clamp', 'differenceBy', 'differenceWith', + 'findFrom', 'findIndexFrom', 'findLastFrom', 'findLastIndexFrom', 'getOr', + 'includesFrom', 'indexOfFrom', 'inRange', 'intersectionBy', 'intersectionWith', + 'invokeArgs', 'invokeArgsMap', 'isEqualWith', 'isMatchWith', 'flatMapDepth', + 'lastIndexOfFrom', 'mergeWith', 'orderBy', 'padChars', 'padCharsEnd', + 'padCharsStart', 'pullAllBy', 'pullAllWith', 'rangeStep', 'rangeStepRight', + 'reduce', 'reduceRight', 'replace', 'set', 'slice', 'sortedIndexBy', + 'sortedLastIndexBy', 'transform', 'unionBy', 'unionWith', 'update', 'xorBy', + 'xorWith', 'zipWith' + ], + '4': [ + 'fill', 'setWith', 'updateWith' + ] +}; + +/** Used to map ary to rearg configs. */ +exports.aryRearg = { + '2': [1, 0], + '3': [2, 0, 1], + '4': [3, 2, 0, 1] +}; + +/** Used to map method names to their iteratee ary. */ +exports.iterateeAry = { + 'dropRightWhile': 1, + 'dropWhile': 1, + 'every': 1, + 'filter': 1, + 'find': 1, + 'findFrom': 1, + 'findIndex': 1, + 'findIndexFrom': 1, + 'findKey': 1, + 'findLast': 1, + 'findLastFrom': 1, + 'findLastIndex': 1, + 'findLastIndexFrom': 1, + 'findLastKey': 1, + 'flatMap': 1, + 'flatMapDeep': 1, + 'flatMapDepth': 1, + 'forEach': 1, + 'forEachRight': 1, + 'forIn': 1, + 'forInRight': 1, + 'forOwn': 1, + 'forOwnRight': 1, + 'map': 1, + 'mapKeys': 1, + 'mapValues': 1, + 'partition': 1, + 'reduce': 2, + 'reduceRight': 2, + 'reject': 1, + 'remove': 1, + 'some': 1, + 'takeRightWhile': 1, + 'takeWhile': 1, + 'times': 1, + 'transform': 2 +}; + +/** Used to map method names to iteratee rearg configs. */ +exports.iterateeRearg = { + 'mapKeys': [1], + 'reduceRight': [1, 0] +}; + +/** Used to map method names to rearg configs. */ +exports.methodRearg = { + 'assignInAllWith': [1, 0], + 'assignInWith': [1, 2, 0], + 'assignAllWith': [1, 0], + 'assignWith': [1, 2, 0], + 'differenceBy': [1, 2, 0], + 'differenceWith': [1, 2, 0], + 'getOr': [2, 1, 0], + 'intersectionBy': [1, 2, 0], + 'intersectionWith': [1, 2, 0], + 'isEqualWith': [1, 2, 0], + 'isMatchWith': [2, 1, 0], + 'mergeAllWith': [1, 0], + 'mergeWith': [1, 2, 0], + 'padChars': [2, 1, 0], + 'padCharsEnd': [2, 1, 0], + 'padCharsStart': [2, 1, 0], + 'pullAllBy': [2, 1, 0], + 'pullAllWith': [2, 1, 0], + 'rangeStep': [1, 2, 0], + 'rangeStepRight': [1, 2, 0], + 'setWith': [3, 1, 2, 0], + 'sortedIndexBy': [2, 1, 0], + 'sortedLastIndexBy': [2, 1, 0], + 'unionBy': [1, 2, 0], + 'unionWith': [1, 2, 0], + 'updateWith': [3, 1, 2, 0], + 'xorBy': [1, 2, 0], + 'xorWith': [1, 2, 0], + 'zipWith': [1, 2, 0] +}; + +/** Used to map method names to spread configs. */ +exports.methodSpread = { + 'assignAll': { 'start': 0 }, + 'assignAllWith': { 'start': 0 }, + 'assignInAll': { 'start': 0 }, + 'assignInAllWith': { 'start': 0 }, + 'defaultsAll': { 'start': 0 }, + 'defaultsDeepAll': { 'start': 0 }, + 'invokeArgs': { 'start': 2 }, + 'invokeArgsMap': { 'start': 2 }, + 'mergeAll': { 'start': 0 }, + 'mergeAllWith': { 'start': 0 }, + 'partial': { 'start': 1 }, + 'partialRight': { 'start': 1 }, + 'without': { 'start': 1 }, + 'zipAll': { 'start': 0 } +}; + +/** Used to identify methods which mutate arrays or objects. */ +exports.mutate = { + 'array': { + 'fill': true, + 'pull': true, + 'pullAll': true, + 'pullAllBy': true, + 'pullAllWith': true, + 'pullAt': true, + 'remove': true, + 'reverse': true + }, + 'object': { + 'assign': true, + 'assignAll': true, + 'assignAllWith': true, + 'assignIn': true, + 'assignInAll': true, + 'assignInAllWith': true, + 'assignInWith': true, + 'assignWith': true, + 'defaults': true, + 'defaultsAll': true, + 'defaultsDeep': true, + 'defaultsDeepAll': true, + 'merge': true, + 'mergeAll': true, + 'mergeAllWith': true, + 'mergeWith': true, + }, + 'set': { + 'set': true, + 'setWith': true, + 'unset': true, + 'update': true, + 'updateWith': true + } +}; + +/** Used to map real names to their aliases. */ +exports.realToAlias = (function() { + var hasOwnProperty = Object.prototype.hasOwnProperty, + object = exports.aliasToReal, + result = {}; + + for (var key in object) { + var value = object[key]; + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + } + return result; +}()); + +/** Used to map method names to other names. */ +exports.remap = { + 'assignAll': 'assign', + 'assignAllWith': 'assignWith', + 'assignInAll': 'assignIn', + 'assignInAllWith': 'assignInWith', + 'curryN': 'curry', + 'curryRightN': 'curryRight', + 'defaultsAll': 'defaults', + 'defaultsDeepAll': 'defaultsDeep', + 'findFrom': 'find', + 'findIndexFrom': 'findIndex', + 'findLastFrom': 'findLast', + 'findLastIndexFrom': 'findLastIndex', + 'getOr': 'get', + 'includesFrom': 'includes', + 'indexOfFrom': 'indexOf', + 'invokeArgs': 'invoke', + 'invokeArgsMap': 'invokeMap', + 'lastIndexOfFrom': 'lastIndexOf', + 'mergeAll': 'merge', + 'mergeAllWith': 'mergeWith', + 'padChars': 'pad', + 'padCharsEnd': 'padEnd', + 'padCharsStart': 'padStart', + 'propertyOf': 'get', + 'rangeStep': 'range', + 'rangeStepRight': 'rangeRight', + 'restFrom': 'rest', + 'spreadFrom': 'spread', + 'trimChars': 'trim', + 'trimCharsEnd': 'trimEnd', + 'trimCharsStart': 'trimStart', + 'zipAll': 'zip' +}; + +/** Used to track methods that skip fixing their arity. */ +exports.skipFixed = { + 'castArray': true, + 'flow': true, + 'flowRight': true, + 'iteratee': true, + 'mixin': true, + 'rearg': true, + 'runInContext': true +}; + +/** Used to track methods that skip rearranging arguments. */ +exports.skipRearg = { + 'add': true, + 'assign': true, + 'assignIn': true, + 'bind': true, + 'bindKey': true, + 'concat': true, + 'difference': true, + 'divide': true, + 'eq': true, + 'gt': true, + 'gte': true, + 'isEqual': true, + 'lt': true, + 'lte': true, + 'matchesProperty': true, + 'merge': true, + 'multiply': true, + 'overArgs': true, + 'partial': true, + 'partialRight': true, + 'propertyOf': true, + 'random': true, + 'range': true, + 'rangeRight': true, + 'subtract': true, + 'zip': true, + 'zipObject': true, + 'zipObjectDeep': true +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_util.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_util.js new file mode 100644 index 0000000..1dbf36f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/_util.js @@ -0,0 +1,16 @@ +module.exports = { + 'ary': require('../ary'), + 'assign': require('../_baseAssign'), + 'clone': require('../clone'), + 'curry': require('../curry'), + 'forEach': require('../_arrayEach'), + 'isArray': require('../isArray'), + 'isError': require('../isError'), + 'isFunction': require('../isFunction'), + 'isWeakMap': require('../isWeakMap'), + 'iteratee': require('../iteratee'), + 'keys': require('../_baseKeys'), + 'rearg': require('../rearg'), + 'toInteger': require('../toInteger'), + 'toPath': require('../toPath') +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/add.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/add.js new file mode 100644 index 0000000..816eeec --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/add.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('add', require('../add')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/after.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/after.js new file mode 100644 index 0000000..21a0167 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/after.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('after', require('../after')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/all.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/all.js new file mode 100644 index 0000000..d0839f7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/all.js @@ -0,0 +1 @@ +module.exports = require('./every'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/allPass.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/allPass.js new file mode 100644 index 0000000..79b73ef --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/allPass.js @@ -0,0 +1 @@ +module.exports = require('./overEvery'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/always.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/always.js new file mode 100644 index 0000000..9887703 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/always.js @@ -0,0 +1 @@ +module.exports = require('./constant'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/any.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/any.js new file mode 100644 index 0000000..900ac25 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/any.js @@ -0,0 +1 @@ +module.exports = require('./some'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/anyPass.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/anyPass.js new file mode 100644 index 0000000..2774ab3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/anyPass.js @@ -0,0 +1 @@ +module.exports = require('./overSome'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/apply.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/apply.js new file mode 100644 index 0000000..2b75712 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/apply.js @@ -0,0 +1 @@ +module.exports = require('./spread'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/array.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/array.js new file mode 100644 index 0000000..fe939c2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/array.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../array')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/ary.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/ary.js new file mode 100644 index 0000000..8edf187 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/ary.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('ary', require('../ary')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assign.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assign.js new file mode 100644 index 0000000..23f47af --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assign.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assign', require('../assign')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignAll.js new file mode 100644 index 0000000..b1d36c7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignAll', require('../assign')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignAllWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignAllWith.js new file mode 100644 index 0000000..21e836e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignAllWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignAllWith', require('../assignWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignIn.js new file mode 100644 index 0000000..6e7c65f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignIn', require('../assignIn')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInAll.js new file mode 100644 index 0000000..7ba75db --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignInAll', require('../assignIn')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInAllWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInAllWith.js new file mode 100644 index 0000000..e766903 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInAllWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignInAllWith', require('../assignInWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInWith.js new file mode 100644 index 0000000..acb5923 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignInWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignInWith', require('../assignInWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignWith.js new file mode 100644 index 0000000..eb92521 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assignWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('assignWith', require('../assignWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assoc.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assoc.js new file mode 100644 index 0000000..7648820 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assoc.js @@ -0,0 +1 @@ +module.exports = require('./set'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assocPath.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assocPath.js new file mode 100644 index 0000000..7648820 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/assocPath.js @@ -0,0 +1 @@ +module.exports = require('./set'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/at.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/at.js new file mode 100644 index 0000000..cc39d25 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/at.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('at', require('../at')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/attempt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/attempt.js new file mode 100644 index 0000000..26ca42e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/attempt.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('attempt', require('../attempt')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/before.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/before.js new file mode 100644 index 0000000..7a2de65 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/before.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('before', require('../before')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bind.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bind.js new file mode 100644 index 0000000..5cbe4f3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bind.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('bind', require('../bind')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bindAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bindAll.js new file mode 100644 index 0000000..6b4a4a0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bindAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('bindAll', require('../bindAll')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bindKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bindKey.js new file mode 100644 index 0000000..6a46c6b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/bindKey.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('bindKey', require('../bindKey')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/camelCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/camelCase.js new file mode 100644 index 0000000..87b77b4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/camelCase.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('camelCase', require('../camelCase'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/capitalize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/capitalize.js new file mode 100644 index 0000000..cac74e1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/capitalize.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('capitalize', require('../capitalize'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/castArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/castArray.js new file mode 100644 index 0000000..8681c09 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/castArray.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('castArray', require('../castArray')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/ceil.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/ceil.js new file mode 100644 index 0000000..f416b72 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/ceil.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('ceil', require('../ceil')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/chain.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/chain.js new file mode 100644 index 0000000..604fe39 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/chain.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('chain', require('../chain'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/chunk.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/chunk.js new file mode 100644 index 0000000..871ab08 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/chunk.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('chunk', require('../chunk')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/clamp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/clamp.js new file mode 100644 index 0000000..3b06c01 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/clamp.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('clamp', require('../clamp')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/clone.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/clone.js new file mode 100644 index 0000000..cadb59c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/clone.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('clone', require('../clone'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneDeep.js new file mode 100644 index 0000000..a6107aa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneDeep.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('cloneDeep', require('../cloneDeep'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneDeepWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneDeepWith.js new file mode 100644 index 0000000..6f01e44 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneDeepWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('cloneDeepWith', require('../cloneDeepWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneWith.js new file mode 100644 index 0000000..aa88578 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cloneWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('cloneWith', require('../cloneWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/collection.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/collection.js new file mode 100644 index 0000000..fc8b328 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/collection.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../collection')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/commit.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/commit.js new file mode 100644 index 0000000..130a894 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/commit.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('commit', require('../commit'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/compact.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/compact.js new file mode 100644 index 0000000..ce8f7a1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/compact.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('compact', require('../compact'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/complement.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/complement.js new file mode 100644 index 0000000..93eb462 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/complement.js @@ -0,0 +1 @@ +module.exports = require('./negate'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/compose.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/compose.js new file mode 100644 index 0000000..1954e94 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/compose.js @@ -0,0 +1 @@ +module.exports = require('./flowRight'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/concat.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/concat.js new file mode 100644 index 0000000..e59346a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/concat.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('concat', require('../concat')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cond.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cond.js new file mode 100644 index 0000000..6a0120e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/cond.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('cond', require('../cond'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/conforms.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/conforms.js new file mode 100644 index 0000000..3247f64 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/conforms.js @@ -0,0 +1 @@ +module.exports = require('./conformsTo'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/conformsTo.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/conformsTo.js new file mode 100644 index 0000000..aa7f41e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/conformsTo.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('conformsTo', require('../conformsTo')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/constant.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/constant.js new file mode 100644 index 0000000..9e406fc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/constant.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('constant', require('../constant'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/contains.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/contains.js new file mode 100644 index 0000000..594722a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/contains.js @@ -0,0 +1 @@ +module.exports = require('./includes'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/convert.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/convert.js new file mode 100644 index 0000000..4795dc4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/convert.js @@ -0,0 +1,18 @@ +var baseConvert = require('./_baseConvert'), + util = require('./_util'); + +/** + * Converts `func` of `name` to an immutable auto-curried iteratee-first data-last + * version with conversion `options` applied. If `name` is an object its methods + * will be converted. + * + * @param {string} name The name of the function to wrap. + * @param {Function} [func] The function to wrap. + * @param {Object} [options] The options object. See `baseConvert` for more details. + * @returns {Function|Object} Returns the converted function or object. + */ +function convert(name, func, options) { + return baseConvert(util, name, func, options); +} + +module.exports = convert; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/countBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/countBy.js new file mode 100644 index 0000000..dfa4643 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/countBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('countBy', require('../countBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/create.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/create.js new file mode 100644 index 0000000..752025f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/create.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('create', require('../create')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curry.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curry.js new file mode 100644 index 0000000..b0b4168 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curry.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('curry', require('../curry')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryN.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryN.js new file mode 100644 index 0000000..2ae7d00 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryN.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('curryN', require('../curry')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryRight.js new file mode 100644 index 0000000..cb619eb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('curryRight', require('../curryRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryRightN.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryRightN.js new file mode 100644 index 0000000..2495afc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/curryRightN.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('curryRightN', require('../curryRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/date.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/date.js new file mode 100644 index 0000000..82cb952 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/date.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../date')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/debounce.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/debounce.js new file mode 100644 index 0000000..2612229 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/debounce.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('debounce', require('../debounce')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/deburr.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/deburr.js new file mode 100644 index 0000000..96463ab --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/deburr.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('deburr', require('../deburr'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultTo.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultTo.js new file mode 100644 index 0000000..d6b52a4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultTo.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('defaultTo', require('../defaultTo')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaults.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaults.js new file mode 100644 index 0000000..e1a8e6e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaults.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('defaults', require('../defaults')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsAll.js new file mode 100644 index 0000000..238fcc3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('defaultsAll', require('../defaults')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsDeep.js new file mode 100644 index 0000000..1f172ff --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsDeep.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('defaultsDeep', require('../defaultsDeep')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsDeepAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsDeepAll.js new file mode 100644 index 0000000..6835f2f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defaultsDeepAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('defaultsDeepAll', require('../defaultsDeep')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defer.js new file mode 100644 index 0000000..ec7990f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/defer.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('defer', require('../defer'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/delay.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/delay.js new file mode 100644 index 0000000..556dbd5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/delay.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('delay', require('../delay')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/difference.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/difference.js new file mode 100644 index 0000000..2d03765 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/difference.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('difference', require('../difference')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/differenceBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/differenceBy.js new file mode 100644 index 0000000..2f91491 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/differenceBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('differenceBy', require('../differenceBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/differenceWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/differenceWith.js new file mode 100644 index 0000000..bcf5ad2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/differenceWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('differenceWith', require('../differenceWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dissoc.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dissoc.js new file mode 100644 index 0000000..7ec7be1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dissoc.js @@ -0,0 +1 @@ +module.exports = require('./unset'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dissocPath.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dissocPath.js new file mode 100644 index 0000000..7ec7be1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dissocPath.js @@ -0,0 +1 @@ +module.exports = require('./unset'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/divide.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/divide.js new file mode 100644 index 0000000..82048c5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/divide.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('divide', require('../divide')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/drop.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/drop.js new file mode 100644 index 0000000..2fa9b4f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/drop.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('drop', require('../drop')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropLast.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropLast.js new file mode 100644 index 0000000..174e525 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropLast.js @@ -0,0 +1 @@ +module.exports = require('./dropRight'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropLastWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropLastWhile.js new file mode 100644 index 0000000..be2a9d2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropLastWhile.js @@ -0,0 +1 @@ +module.exports = require('./dropRightWhile'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropRight.js new file mode 100644 index 0000000..e98881f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('dropRight', require('../dropRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropRightWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropRightWhile.js new file mode 100644 index 0000000..cacaa70 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropRightWhile.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('dropRightWhile', require('../dropRightWhile')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropWhile.js new file mode 100644 index 0000000..285f864 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/dropWhile.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('dropWhile', require('../dropWhile')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/each.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/each.js new file mode 100644 index 0000000..8800f42 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/each.js @@ -0,0 +1 @@ +module.exports = require('./forEach'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/eachRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/eachRight.js new file mode 100644 index 0000000..3252b2a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/eachRight.js @@ -0,0 +1 @@ +module.exports = require('./forEachRight'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/endsWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/endsWith.js new file mode 100644 index 0000000..17dc2a4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/endsWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('endsWith', require('../endsWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/entries.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/entries.js new file mode 100644 index 0000000..7a88df2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/entries.js @@ -0,0 +1 @@ +module.exports = require('./toPairs'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/entriesIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/entriesIn.js new file mode 100644 index 0000000..f6c6331 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/entriesIn.js @@ -0,0 +1 @@ +module.exports = require('./toPairsIn'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/eq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/eq.js new file mode 100644 index 0000000..9a3d21b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/eq.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('eq', require('../eq')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/equals.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/equals.js new file mode 100644 index 0000000..e6a5ce0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/equals.js @@ -0,0 +1 @@ +module.exports = require('./isEqual'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/escape.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/escape.js new file mode 100644 index 0000000..52c1fbb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/escape.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('escape', require('../escape'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/escapeRegExp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/escapeRegExp.js new file mode 100644 index 0000000..369b2ef --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/escapeRegExp.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('escapeRegExp', require('../escapeRegExp'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/every.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/every.js new file mode 100644 index 0000000..95c2776 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/every.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('every', require('../every')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extend.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extend.js new file mode 100644 index 0000000..e00166c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extend.js @@ -0,0 +1 @@ +module.exports = require('./assignIn'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendAll.js new file mode 100644 index 0000000..cc55b64 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendAll.js @@ -0,0 +1 @@ +module.exports = require('./assignInAll'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendAllWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendAllWith.js new file mode 100644 index 0000000..6679d20 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendAllWith.js @@ -0,0 +1 @@ +module.exports = require('./assignInAllWith'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendWith.js new file mode 100644 index 0000000..dbdcb3b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/extendWith.js @@ -0,0 +1 @@ +module.exports = require('./assignInWith'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/fill.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/fill.js new file mode 100644 index 0000000..b2d47e8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/fill.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('fill', require('../fill')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/filter.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/filter.js new file mode 100644 index 0000000..796d501 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/filter.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('filter', require('../filter')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/find.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/find.js new file mode 100644 index 0000000..f805d33 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/find.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('find', require('../find')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findFrom.js new file mode 100644 index 0000000..da8275e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findFrom', require('../find')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findIndex.js new file mode 100644 index 0000000..8c15fd1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findIndex.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findIndex', require('../findIndex')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findIndexFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findIndexFrom.js new file mode 100644 index 0000000..32e98cb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findIndexFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findIndexFrom', require('../findIndex')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findKey.js new file mode 100644 index 0000000..475bcfa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findKey.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findKey', require('../findKey')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLast.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLast.js new file mode 100644 index 0000000..093fe94 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLast.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findLast', require('../findLast')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastFrom.js new file mode 100644 index 0000000..76c38fb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findLastFrom', require('../findLast')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastIndex.js new file mode 100644 index 0000000..36986df --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastIndex.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findLastIndex', require('../findLastIndex')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastIndexFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastIndexFrom.js new file mode 100644 index 0000000..34c8176 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastIndexFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findLastIndexFrom', require('../findLastIndex')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastKey.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastKey.js new file mode 100644 index 0000000..5f81b60 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/findLastKey.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('findLastKey', require('../findLastKey')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/first.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/first.js new file mode 100644 index 0000000..53f4ad1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/first.js @@ -0,0 +1 @@ +module.exports = require('./head'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMap.js new file mode 100644 index 0000000..d01dc4d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flatMap', require('../flatMap')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMapDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMapDeep.js new file mode 100644 index 0000000..569c42e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMapDeep.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flatMapDeep', require('../flatMapDeep')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMapDepth.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMapDepth.js new file mode 100644 index 0000000..6eb68fd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatMapDepth.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flatMapDepth', require('../flatMapDepth')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatten.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatten.js new file mode 100644 index 0000000..30425d8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flatten.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flatten', require('../flatten'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flattenDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flattenDeep.js new file mode 100644 index 0000000..aed5db2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flattenDeep.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flattenDeep', require('../flattenDeep'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flattenDepth.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flattenDepth.js new file mode 100644 index 0000000..ad65e37 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flattenDepth.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flattenDepth', require('../flattenDepth')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flip.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flip.js new file mode 100644 index 0000000..0547e7b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flip.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flip', require('../flip'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/floor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/floor.js new file mode 100644 index 0000000..a6cf335 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/floor.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('floor', require('../floor')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flow.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flow.js new file mode 100644 index 0000000..cd83677 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flow.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flow', require('../flow')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flowRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flowRight.js new file mode 100644 index 0000000..972a5b9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/flowRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('flowRight', require('../flowRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forEach.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forEach.js new file mode 100644 index 0000000..2f49452 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forEach.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('forEach', require('../forEach')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forEachRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forEachRight.js new file mode 100644 index 0000000..3ff9733 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forEachRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('forEachRight', require('../forEachRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forIn.js new file mode 100644 index 0000000..9341749 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('forIn', require('../forIn')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forInRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forInRight.js new file mode 100644 index 0000000..cecf8bb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forInRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('forInRight', require('../forInRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forOwn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forOwn.js new file mode 100644 index 0000000..246449e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forOwn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('forOwn', require('../forOwn')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forOwnRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forOwnRight.js new file mode 100644 index 0000000..c5e826e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/forOwnRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('forOwnRight', require('../forOwnRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/fromPairs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/fromPairs.js new file mode 100644 index 0000000..f8cc596 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/fromPairs.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('fromPairs', require('../fromPairs')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/function.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/function.js new file mode 100644 index 0000000..dfe69b1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/function.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../function')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/functions.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/functions.js new file mode 100644 index 0000000..09d1bb1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/functions.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('functions', require('../functions'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/functionsIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/functionsIn.js new file mode 100644 index 0000000..2cfeb83 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/functionsIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('functionsIn', require('../functionsIn'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/get.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/get.js new file mode 100644 index 0000000..6d3a328 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/get.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('get', require('../get')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/getOr.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/getOr.js new file mode 100644 index 0000000..7dbf771 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/getOr.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('getOr', require('../get')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/groupBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/groupBy.js new file mode 100644 index 0000000..fc0bc78 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/groupBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('groupBy', require('../groupBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/gt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/gt.js new file mode 100644 index 0000000..9e57c80 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/gt.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('gt', require('../gt')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/gte.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/gte.js new file mode 100644 index 0000000..4584786 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/gte.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('gte', require('../gte')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/has.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/has.js new file mode 100644 index 0000000..b901298 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/has.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('has', require('../has')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/hasIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/hasIn.js new file mode 100644 index 0000000..b3c3d1a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/hasIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('hasIn', require('../hasIn')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/head.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/head.js new file mode 100644 index 0000000..2694f0a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/head.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('head', require('../head'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/identical.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/identical.js new file mode 100644 index 0000000..85563f4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/identical.js @@ -0,0 +1 @@ +module.exports = require('./eq'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/identity.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/identity.js new file mode 100644 index 0000000..096415a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/identity.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('identity', require('../identity'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/inRange.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/inRange.js new file mode 100644 index 0000000..202d940 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/inRange.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('inRange', require('../inRange')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/includes.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/includes.js new file mode 100644 index 0000000..1146780 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/includes.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('includes', require('../includes')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/includesFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/includesFrom.js new file mode 100644 index 0000000..683afdb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/includesFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('includesFrom', require('../includes')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexBy.js new file mode 100644 index 0000000..7e64bc0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexBy.js @@ -0,0 +1 @@ +module.exports = require('./keyBy'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexOf.js new file mode 100644 index 0000000..524658e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('indexOf', require('../indexOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexOfFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexOfFrom.js new file mode 100644 index 0000000..d99c822 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/indexOfFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('indexOfFrom', require('../indexOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/init.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/init.js new file mode 100644 index 0000000..2f88d8b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/init.js @@ -0,0 +1 @@ +module.exports = require('./initial'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/initial.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/initial.js new file mode 100644 index 0000000..b732ba0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/initial.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('initial', require('../initial'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersection.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersection.js new file mode 100644 index 0000000..52936d5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersection.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('intersection', require('../intersection')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersectionBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersectionBy.js new file mode 100644 index 0000000..72629f2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersectionBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('intersectionBy', require('../intersectionBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersectionWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersectionWith.js new file mode 100644 index 0000000..e064f40 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/intersectionWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('intersectionWith', require('../intersectionWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invert.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invert.js new file mode 100644 index 0000000..2d5d1f0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invert.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('invert', require('../invert')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invertBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invertBy.js new file mode 100644 index 0000000..63ca97e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invertBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('invertBy', require('../invertBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invertObj.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invertObj.js new file mode 100644 index 0000000..f1d842e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invertObj.js @@ -0,0 +1 @@ +module.exports = require('./invert'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invoke.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invoke.js new file mode 100644 index 0000000..fcf17f0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invoke.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('invoke', require('../invoke')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeArgs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeArgs.js new file mode 100644 index 0000000..d3f2953 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeArgs.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('invokeArgs', require('../invoke')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeArgsMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeArgsMap.js new file mode 100644 index 0000000..eaa9f84 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeArgsMap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('invokeArgsMap', require('../invokeMap')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeMap.js new file mode 100644 index 0000000..6515fd7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/invokeMap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('invokeMap', require('../invokeMap')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArguments.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArguments.js new file mode 100644 index 0000000..1d93c9e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArguments.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isArguments', require('../isArguments'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArray.js new file mode 100644 index 0000000..ba7ade8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArray.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isArray', require('../isArray'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayBuffer.js new file mode 100644 index 0000000..5088513 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayBuffer.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isArrayBuffer', require('../isArrayBuffer'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayLike.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayLike.js new file mode 100644 index 0000000..8f1856b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayLike.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isArrayLike', require('../isArrayLike'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayLikeObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayLikeObject.js new file mode 100644 index 0000000..2108498 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isArrayLikeObject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isArrayLikeObject', require('../isArrayLikeObject'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isBoolean.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isBoolean.js new file mode 100644 index 0000000..9339f75 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isBoolean.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isBoolean', require('../isBoolean'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isBuffer.js new file mode 100644 index 0000000..e60b123 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isBuffer.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isBuffer', require('../isBuffer'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isDate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isDate.js new file mode 100644 index 0000000..dc41d08 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isDate.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isDate', require('../isDate'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isElement.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isElement.js new file mode 100644 index 0000000..18ee039 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isElement.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isElement', require('../isElement'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEmpty.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEmpty.js new file mode 100644 index 0000000..0f4ae84 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEmpty.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isEmpty', require('../isEmpty'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEqual.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEqual.js new file mode 100644 index 0000000..4138386 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEqual.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isEqual', require('../isEqual')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEqualWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEqualWith.js new file mode 100644 index 0000000..029ff5c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isEqualWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isEqualWith', require('../isEqualWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isError.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isError.js new file mode 100644 index 0000000..3dfd81c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isError.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isError', require('../isError'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isFinite.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isFinite.js new file mode 100644 index 0000000..0b647b8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isFinite.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isFinite', require('../isFinite'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isFunction.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isFunction.js new file mode 100644 index 0000000..ff8e5c4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isFunction.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isFunction', require('../isFunction'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isInteger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isInteger.js new file mode 100644 index 0000000..67af4ff --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isInteger.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isInteger', require('../isInteger'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isLength.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isLength.js new file mode 100644 index 0000000..fc101c5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isLength.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isLength', require('../isLength'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMap.js new file mode 100644 index 0000000..a209aa6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isMap', require('../isMap'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMatch.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMatch.js new file mode 100644 index 0000000..6264ca1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMatch.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isMatch', require('../isMatch')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMatchWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMatchWith.js new file mode 100644 index 0000000..d95f319 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isMatchWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isMatchWith', require('../isMatchWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNaN.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNaN.js new file mode 100644 index 0000000..66a978f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNaN.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isNaN', require('../isNaN'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNative.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNative.js new file mode 100644 index 0000000..3d775ba --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNative.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isNative', require('../isNative'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNil.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNil.js new file mode 100644 index 0000000..5952c02 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNil.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isNil', require('../isNil'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNull.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNull.js new file mode 100644 index 0000000..f201a35 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNull.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isNull', require('../isNull'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNumber.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNumber.js new file mode 100644 index 0000000..a2b5fa0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isNumber.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isNumber', require('../isNumber'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isObject.js new file mode 100644 index 0000000..231ace0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isObject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isObject', require('../isObject'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isObjectLike.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isObjectLike.js new file mode 100644 index 0000000..f16082e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isObjectLike.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isObjectLike', require('../isObjectLike'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isPlainObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isPlainObject.js new file mode 100644 index 0000000..b5bea90 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isPlainObject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isPlainObject', require('../isPlainObject'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isRegExp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isRegExp.js new file mode 100644 index 0000000..12a1a3d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isRegExp.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isRegExp', require('../isRegExp'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSafeInteger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSafeInteger.js new file mode 100644 index 0000000..7230f55 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSafeInteger.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isSafeInteger', require('../isSafeInteger'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSet.js new file mode 100644 index 0000000..35c01f6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSet.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isSet', require('../isSet'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isString.js new file mode 100644 index 0000000..1fd0679 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isString.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isString', require('../isString'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSymbol.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSymbol.js new file mode 100644 index 0000000..3867695 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isSymbol.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isSymbol', require('../isSymbol'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isTypedArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isTypedArray.js new file mode 100644 index 0000000..8567953 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isTypedArray.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isTypedArray', require('../isTypedArray'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isUndefined.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isUndefined.js new file mode 100644 index 0000000..ddbca31 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isUndefined.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isUndefined', require('../isUndefined'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isWeakMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isWeakMap.js new file mode 100644 index 0000000..ef60c61 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isWeakMap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isWeakMap', require('../isWeakMap'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isWeakSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isWeakSet.js new file mode 100644 index 0000000..c99bfaa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/isWeakSet.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('isWeakSet', require('../isWeakSet'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/iteratee.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/iteratee.js new file mode 100644 index 0000000..9f0f717 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/iteratee.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('iteratee', require('../iteratee')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/join.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/join.js new file mode 100644 index 0000000..a220e00 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/join.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('join', require('../join')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/juxt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/juxt.js new file mode 100644 index 0000000..f71e04e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/juxt.js @@ -0,0 +1 @@ +module.exports = require('./over'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/kebabCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/kebabCase.js new file mode 100644 index 0000000..60737f1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/kebabCase.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('kebabCase', require('../kebabCase'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keyBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keyBy.js new file mode 100644 index 0000000..9a6a85d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keyBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('keyBy', require('../keyBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keys.js new file mode 100644 index 0000000..e12bb07 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keys.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('keys', require('../keys'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keysIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keysIn.js new file mode 100644 index 0000000..f3eb36a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/keysIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('keysIn', require('../keysIn'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lang.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lang.js new file mode 100644 index 0000000..08cc9c1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lang.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../lang')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/last.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/last.js new file mode 100644 index 0000000..0f71699 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/last.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('last', require('../last'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lastIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lastIndexOf.js new file mode 100644 index 0000000..ddf39c3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lastIndexOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('lastIndexOf', require('../lastIndexOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lastIndexOfFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lastIndexOfFrom.js new file mode 100644 index 0000000..1ff6a0b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lastIndexOfFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('lastIndexOfFrom', require('../lastIndexOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lowerCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lowerCase.js new file mode 100644 index 0000000..ea64bc1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lowerCase.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('lowerCase', require('../lowerCase'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lowerFirst.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lowerFirst.js new file mode 100644 index 0000000..539720a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lowerFirst.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('lowerFirst', require('../lowerFirst'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lt.js new file mode 100644 index 0000000..a31d21e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lt.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('lt', require('../lt')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lte.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lte.js new file mode 100644 index 0000000..d795d10 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/lte.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('lte', require('../lte')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/map.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/map.js new file mode 100644 index 0000000..cf98794 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/map.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('map', require('../map')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mapKeys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mapKeys.js new file mode 100644 index 0000000..1684587 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mapKeys.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mapKeys', require('../mapKeys')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mapValues.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mapValues.js new file mode 100644 index 0000000..4004972 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mapValues.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mapValues', require('../mapValues')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/matches.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/matches.js new file mode 100644 index 0000000..29d1e1e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/matches.js @@ -0,0 +1 @@ +module.exports = require('./isMatch'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/matchesProperty.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/matchesProperty.js new file mode 100644 index 0000000..4575bd2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/matchesProperty.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('matchesProperty', require('../matchesProperty')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/math.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/math.js new file mode 100644 index 0000000..e8f50f7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/math.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../math')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/max.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/max.js new file mode 100644 index 0000000..a66acac --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/max.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('max', require('../max'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/maxBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/maxBy.js new file mode 100644 index 0000000..d083fd6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/maxBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('maxBy', require('../maxBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mean.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mean.js new file mode 100644 index 0000000..3117246 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mean.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mean', require('../mean'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/meanBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/meanBy.js new file mode 100644 index 0000000..556f25e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/meanBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('meanBy', require('../meanBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/memoize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/memoize.js new file mode 100644 index 0000000..638eec6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/memoize.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('memoize', require('../memoize')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/merge.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/merge.js new file mode 100644 index 0000000..ac66add --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/merge.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('merge', require('../merge')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeAll.js new file mode 100644 index 0000000..a3674d6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mergeAll', require('../merge')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeAllWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeAllWith.js new file mode 100644 index 0000000..4bd4206 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeAllWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mergeAllWith', require('../mergeWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeWith.js new file mode 100644 index 0000000..00d44d5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mergeWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mergeWith', require('../mergeWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/method.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/method.js new file mode 100644 index 0000000..f4060c6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/method.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('method', require('../method')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/methodOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/methodOf.js new file mode 100644 index 0000000..6139905 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/methodOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('methodOf', require('../methodOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/min.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/min.js new file mode 100644 index 0000000..d12c6b4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/min.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('min', require('../min'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/minBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/minBy.js new file mode 100644 index 0000000..fdb9e24 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/minBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('minBy', require('../minBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mixin.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mixin.js new file mode 100644 index 0000000..332e6fb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/mixin.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('mixin', require('../mixin')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/multiply.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/multiply.js new file mode 100644 index 0000000..4dcf0b0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/multiply.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('multiply', require('../multiply')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nAry.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nAry.js new file mode 100644 index 0000000..f262a76 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nAry.js @@ -0,0 +1 @@ +module.exports = require('./ary'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/negate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/negate.js new file mode 100644 index 0000000..8b6dc7c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/negate.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('negate', require('../negate'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/next.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/next.js new file mode 100644 index 0000000..140155e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/next.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('next', require('../next'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/noop.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/noop.js new file mode 100644 index 0000000..b9e32cc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/noop.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('noop', require('../noop'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/now.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/now.js new file mode 100644 index 0000000..6de2068 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/now.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('now', require('../now'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nth.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nth.js new file mode 100644 index 0000000..da4fda7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nth.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('nth', require('../nth')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nthArg.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nthArg.js new file mode 100644 index 0000000..fce3165 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/nthArg.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('nthArg', require('../nthArg')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/number.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/number.js new file mode 100644 index 0000000..5c10b88 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/number.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../number')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/object.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/object.js new file mode 100644 index 0000000..ae39a13 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/object.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../object')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omit.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omit.js new file mode 100644 index 0000000..fd68529 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omit.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('omit', require('../omit')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omitAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omitAll.js new file mode 100644 index 0000000..144cf4b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omitAll.js @@ -0,0 +1 @@ +module.exports = require('./omit'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omitBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omitBy.js new file mode 100644 index 0000000..90df738 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/omitBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('omitBy', require('../omitBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/once.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/once.js new file mode 100644 index 0000000..f8f0a5c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/once.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('once', require('../once'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/orderBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/orderBy.js new file mode 100644 index 0000000..848e210 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/orderBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('orderBy', require('../orderBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/over.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/over.js new file mode 100644 index 0000000..01eba7b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/over.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('over', require('../over')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overArgs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overArgs.js new file mode 100644 index 0000000..738556f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overArgs.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('overArgs', require('../overArgs')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overEvery.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overEvery.js new file mode 100644 index 0000000..9f5a032 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overEvery.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('overEvery', require('../overEvery')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overSome.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overSome.js new file mode 100644 index 0000000..15939d5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/overSome.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('overSome', require('../overSome')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pad.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pad.js new file mode 100644 index 0000000..f1dea4a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pad.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pad', require('../pad')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padChars.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padChars.js new file mode 100644 index 0000000..d6e0804 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padChars.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('padChars', require('../pad')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padCharsEnd.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padCharsEnd.js new file mode 100644 index 0000000..d4ab79a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padCharsEnd.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('padCharsEnd', require('../padEnd')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padCharsStart.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padCharsStart.js new file mode 100644 index 0000000..a08a300 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padCharsStart.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('padCharsStart', require('../padStart')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padEnd.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padEnd.js new file mode 100644 index 0000000..a8522ec --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padEnd.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('padEnd', require('../padEnd')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padStart.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padStart.js new file mode 100644 index 0000000..f4ca79d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/padStart.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('padStart', require('../padStart')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/parseInt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/parseInt.js new file mode 100644 index 0000000..27314cc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/parseInt.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('parseInt', require('../parseInt')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partial.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partial.js new file mode 100644 index 0000000..5d46015 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partial.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('partial', require('../partial')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partialRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partialRight.js new file mode 100644 index 0000000..7f05fed --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partialRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('partialRight', require('../partialRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partition.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partition.js new file mode 100644 index 0000000..2ebcacc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/partition.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('partition', require('../partition')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/path.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/path.js new file mode 100644 index 0000000..b29cfb2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/path.js @@ -0,0 +1 @@ +module.exports = require('./get'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pathEq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pathEq.js new file mode 100644 index 0000000..36c027a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pathEq.js @@ -0,0 +1 @@ +module.exports = require('./matchesProperty'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pathOr.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pathOr.js new file mode 100644 index 0000000..4ab5820 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pathOr.js @@ -0,0 +1 @@ +module.exports = require('./getOr'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/paths.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/paths.js new file mode 100644 index 0000000..1eb7950 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/paths.js @@ -0,0 +1 @@ +module.exports = require('./at'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pick.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pick.js new file mode 100644 index 0000000..197393d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pick.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pick', require('../pick')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pickAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pickAll.js new file mode 100644 index 0000000..a8ecd46 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pickAll.js @@ -0,0 +1 @@ +module.exports = require('./pick'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pickBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pickBy.js new file mode 100644 index 0000000..d832d16 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pickBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pickBy', require('../pickBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pipe.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pipe.js new file mode 100644 index 0000000..b2e1e2c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pipe.js @@ -0,0 +1 @@ +module.exports = require('./flow'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/placeholder.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/placeholder.js new file mode 100644 index 0000000..1ce1739 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/placeholder.js @@ -0,0 +1,6 @@ +/** + * The default argument placeholder value for methods. + * + * @type {Object} + */ +module.exports = {}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/plant.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/plant.js new file mode 100644 index 0000000..eca8f32 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/plant.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('plant', require('../plant'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pluck.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pluck.js new file mode 100644 index 0000000..0d1e1ab --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pluck.js @@ -0,0 +1 @@ +module.exports = require('./map'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/prop.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/prop.js new file mode 100644 index 0000000..b29cfb2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/prop.js @@ -0,0 +1 @@ +module.exports = require('./get'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propEq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propEq.js new file mode 100644 index 0000000..36c027a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propEq.js @@ -0,0 +1 @@ +module.exports = require('./matchesProperty'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propOr.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propOr.js new file mode 100644 index 0000000..4ab5820 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propOr.js @@ -0,0 +1 @@ +module.exports = require('./getOr'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/property.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/property.js new file mode 100644 index 0000000..b29cfb2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/property.js @@ -0,0 +1 @@ +module.exports = require('./get'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propertyOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propertyOf.js new file mode 100644 index 0000000..f6273ee --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/propertyOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('propertyOf', require('../get')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/props.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/props.js new file mode 100644 index 0000000..1eb7950 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/props.js @@ -0,0 +1 @@ +module.exports = require('./at'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pull.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pull.js new file mode 100644 index 0000000..8d7084f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pull.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pull', require('../pull')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAll.js new file mode 100644 index 0000000..98d5c9a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pullAll', require('../pullAll')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAllBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAllBy.js new file mode 100644 index 0000000..876bc3b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAllBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pullAllBy', require('../pullAllBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAllWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAllWith.js new file mode 100644 index 0000000..f71ba4d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAllWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pullAllWith', require('../pullAllWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAt.js new file mode 100644 index 0000000..e8b3bb6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/pullAt.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('pullAt', require('../pullAt')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/random.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/random.js new file mode 100644 index 0000000..99d852e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/random.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('random', require('../random')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/range.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/range.js new file mode 100644 index 0000000..a6bb591 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/range.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('range', require('../range')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeRight.js new file mode 100644 index 0000000..fdb712f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('rangeRight', require('../rangeRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeStep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeStep.js new file mode 100644 index 0000000..d72dfc2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeStep.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('rangeStep', require('../range')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeStepRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeStepRight.js new file mode 100644 index 0000000..8b2a67b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rangeStepRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('rangeStepRight', require('../rangeRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rearg.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rearg.js new file mode 100644 index 0000000..678e02a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rearg.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('rearg', require('../rearg')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reduce.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reduce.js new file mode 100644 index 0000000..4cef0a0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reduce.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('reduce', require('../reduce')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reduceRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reduceRight.js new file mode 100644 index 0000000..caf5bb5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reduceRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('reduceRight', require('../reduceRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reject.js new file mode 100644 index 0000000..c163273 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('reject', require('../reject')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/remove.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/remove.js new file mode 100644 index 0000000..e9d1327 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/remove.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('remove', require('../remove')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/repeat.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/repeat.js new file mode 100644 index 0000000..08470f2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/repeat.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('repeat', require('../repeat')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/replace.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/replace.js new file mode 100644 index 0000000..2227db6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/replace.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('replace', require('../replace')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rest.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rest.js new file mode 100644 index 0000000..c1f3d64 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/rest.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('rest', require('../rest')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/restFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/restFrom.js new file mode 100644 index 0000000..714e42b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/restFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('restFrom', require('../rest')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/result.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/result.js new file mode 100644 index 0000000..f86ce07 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/result.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('result', require('../result')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reverse.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reverse.js new file mode 100644 index 0000000..07c9f5e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/reverse.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('reverse', require('../reverse')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/round.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/round.js new file mode 100644 index 0000000..4c0e5c8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/round.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('round', require('../round')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sample.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sample.js new file mode 100644 index 0000000..6bea125 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sample.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sample', require('../sample'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sampleSize.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sampleSize.js new file mode 100644 index 0000000..359ed6f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sampleSize.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sampleSize', require('../sampleSize')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/seq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/seq.js new file mode 100644 index 0000000..d8f42b0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/seq.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../seq')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/set.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/set.js new file mode 100644 index 0000000..0b56a56 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/set.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('set', require('../set')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/setWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/setWith.js new file mode 100644 index 0000000..0b58495 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/setWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('setWith', require('../setWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/shuffle.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/shuffle.js new file mode 100644 index 0000000..aa3a1ca --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/shuffle.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('shuffle', require('../shuffle'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/size.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/size.js new file mode 100644 index 0000000..7490136 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/size.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('size', require('../size'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/slice.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/slice.js new file mode 100644 index 0000000..15945d3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/slice.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('slice', require('../slice')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/snakeCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/snakeCase.js new file mode 100644 index 0000000..a0ff780 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/snakeCase.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('snakeCase', require('../snakeCase'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/some.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/some.js new file mode 100644 index 0000000..a4fa2d0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/some.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('some', require('../some')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortBy.js new file mode 100644 index 0000000..e0790ad --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortBy', require('../sortBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndex.js new file mode 100644 index 0000000..364a054 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndex.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedIndex', require('../sortedIndex')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndexBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndexBy.js new file mode 100644 index 0000000..9593dbd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndexBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedIndexBy', require('../sortedIndexBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndexOf.js new file mode 100644 index 0000000..c9084ca --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedIndexOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedIndexOf', require('../sortedIndexOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndex.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndex.js new file mode 100644 index 0000000..47fe241 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndex.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedLastIndex', require('../sortedLastIndex')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndexBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndexBy.js new file mode 100644 index 0000000..0f9a347 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndexBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedLastIndexBy', require('../sortedLastIndexBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndexOf.js new file mode 100644 index 0000000..0d4d932 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedLastIndexOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedLastIndexOf', require('../sortedLastIndexOf')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedUniq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedUniq.js new file mode 100644 index 0000000..882d283 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedUniq.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedUniq', require('../sortedUniq'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedUniqBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedUniqBy.js new file mode 100644 index 0000000..033db91 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sortedUniqBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sortedUniqBy', require('../sortedUniqBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/split.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/split.js new file mode 100644 index 0000000..14de1a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/split.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('split', require('../split')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/spread.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/spread.js new file mode 100644 index 0000000..2d11b70 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/spread.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('spread', require('../spread')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/spreadFrom.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/spreadFrom.js new file mode 100644 index 0000000..0b630df --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/spreadFrom.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('spreadFrom', require('../spread')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/startCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/startCase.js new file mode 100644 index 0000000..ada98c9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/startCase.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('startCase', require('../startCase'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/startsWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/startsWith.js new file mode 100644 index 0000000..985e2f2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/startsWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('startsWith', require('../startsWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/string.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/string.js new file mode 100644 index 0000000..773b037 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/string.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../string')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubArray.js new file mode 100644 index 0000000..cd604cb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubArray.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('stubArray', require('../stubArray'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubFalse.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubFalse.js new file mode 100644 index 0000000..3296664 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubFalse.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('stubFalse', require('../stubFalse'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubObject.js new file mode 100644 index 0000000..c6c8ec4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubObject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('stubObject', require('../stubObject'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubString.js new file mode 100644 index 0000000..701051e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubString.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('stubString', require('../stubString'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubTrue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubTrue.js new file mode 100644 index 0000000..9249082 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/stubTrue.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('stubTrue', require('../stubTrue'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/subtract.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/subtract.js new file mode 100644 index 0000000..d32b16d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/subtract.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('subtract', require('../subtract')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sum.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sum.js new file mode 100644 index 0000000..5cce12b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sum.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sum', require('../sum'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sumBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sumBy.js new file mode 100644 index 0000000..c882656 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/sumBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('sumBy', require('../sumBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifference.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifference.js new file mode 100644 index 0000000..78c16ad --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifference.js @@ -0,0 +1 @@ +module.exports = require('./xor'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifferenceBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifferenceBy.js new file mode 100644 index 0000000..298fc7f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifferenceBy.js @@ -0,0 +1 @@ +module.exports = require('./xorBy'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifferenceWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifferenceWith.js new file mode 100644 index 0000000..70bc6fa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/symmetricDifferenceWith.js @@ -0,0 +1 @@ +module.exports = require('./xorWith'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/tail.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/tail.js new file mode 100644 index 0000000..f122f0a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/tail.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('tail', require('../tail'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/take.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/take.js new file mode 100644 index 0000000..9af98a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/take.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('take', require('../take')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeLast.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeLast.js new file mode 100644 index 0000000..e98c84a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeLast.js @@ -0,0 +1 @@ +module.exports = require('./takeRight'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeLastWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeLastWhile.js new file mode 100644 index 0000000..5367968 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeLastWhile.js @@ -0,0 +1 @@ +module.exports = require('./takeRightWhile'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeRight.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeRight.js new file mode 100644 index 0000000..b82950a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeRight.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('takeRight', require('../takeRight')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeRightWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeRightWhile.js new file mode 100644 index 0000000..8ffb0a2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeRightWhile.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('takeRightWhile', require('../takeRightWhile')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeWhile.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeWhile.js new file mode 100644 index 0000000..2813664 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/takeWhile.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('takeWhile', require('../takeWhile')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/tap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/tap.js new file mode 100644 index 0000000..d33ad6e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/tap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('tap', require('../tap')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/template.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/template.js new file mode 100644 index 0000000..74857e1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/template.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('template', require('../template')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/templateSettings.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/templateSettings.js new file mode 100644 index 0000000..7bcc0a8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/templateSettings.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('templateSettings', require('../templateSettings'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/throttle.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/throttle.js new file mode 100644 index 0000000..77fff14 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/throttle.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('throttle', require('../throttle')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/thru.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/thru.js new file mode 100644 index 0000000..d42b3b1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/thru.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('thru', require('../thru')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/times.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/times.js new file mode 100644 index 0000000..0dab06d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/times.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('times', require('../times')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toArray.js new file mode 100644 index 0000000..f0c360a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toArray.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toArray', require('../toArray'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toFinite.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toFinite.js new file mode 100644 index 0000000..3a47687 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toFinite.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toFinite', require('../toFinite'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toInteger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toInteger.js new file mode 100644 index 0000000..e0af6a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toInteger.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toInteger', require('../toInteger'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toIterator.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toIterator.js new file mode 100644 index 0000000..65e6baa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toIterator.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toIterator', require('../toIterator'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toJSON.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toJSON.js new file mode 100644 index 0000000..2d718d0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toJSON.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toJSON', require('../toJSON'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toLength.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toLength.js new file mode 100644 index 0000000..b97cdd9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toLength.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toLength', require('../toLength'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toLower.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toLower.js new file mode 100644 index 0000000..616ef36 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toLower.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toLower', require('../toLower'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toNumber.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toNumber.js new file mode 100644 index 0000000..d0c6f4d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toNumber.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toNumber', require('../toNumber'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPairs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPairs.js new file mode 100644 index 0000000..af78378 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPairs.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toPairs', require('../toPairs'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPairsIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPairsIn.js new file mode 100644 index 0000000..66504ab --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPairsIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toPairsIn', require('../toPairsIn'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPath.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPath.js new file mode 100644 index 0000000..b4d5e50 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPath.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toPath', require('../toPath'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPlainObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPlainObject.js new file mode 100644 index 0000000..278bb86 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toPlainObject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toPlainObject', require('../toPlainObject'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toSafeInteger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toSafeInteger.js new file mode 100644 index 0000000..367a26f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toSafeInteger.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toSafeInteger', require('../toSafeInteger'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toString.js new file mode 100644 index 0000000..cec4f8e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toString.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toString', require('../toString'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toUpper.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toUpper.js new file mode 100644 index 0000000..54f9a56 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/toUpper.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('toUpper', require('../toUpper'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/transform.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/transform.js new file mode 100644 index 0000000..759d088 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/transform.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('transform', require('../transform')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trim.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trim.js new file mode 100644 index 0000000..e6319a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trim.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('trim', require('../trim')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimChars.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimChars.js new file mode 100644 index 0000000..c9294de --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimChars.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('trimChars', require('../trim')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimCharsEnd.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimCharsEnd.js new file mode 100644 index 0000000..284bc2f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimCharsEnd.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('trimCharsEnd', require('../trimEnd')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimCharsStart.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimCharsStart.js new file mode 100644 index 0000000..ff0ee65 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimCharsStart.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('trimCharsStart', require('../trimStart')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimEnd.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimEnd.js new file mode 100644 index 0000000..7190880 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimEnd.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('trimEnd', require('../trimEnd')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimStart.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimStart.js new file mode 100644 index 0000000..fda902c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/trimStart.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('trimStart', require('../trimStart')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/truncate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/truncate.js new file mode 100644 index 0000000..d265c1d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/truncate.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('truncate', require('../truncate')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unapply.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unapply.js new file mode 100644 index 0000000..c5dfe77 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unapply.js @@ -0,0 +1 @@ +module.exports = require('./rest'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unary.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unary.js new file mode 100644 index 0000000..286c945 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unary.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unary', require('../unary'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unescape.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unescape.js new file mode 100644 index 0000000..fddcb46 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unescape.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unescape', require('../unescape'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/union.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/union.js new file mode 100644 index 0000000..ef8228d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/union.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('union', require('../union')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unionBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unionBy.js new file mode 100644 index 0000000..603687a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unionBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unionBy', require('../unionBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unionWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unionWith.js new file mode 100644 index 0000000..65bb3a7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unionWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unionWith', require('../unionWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniq.js new file mode 100644 index 0000000..bc18524 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniq.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('uniq', require('../uniq'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqBy.js new file mode 100644 index 0000000..634c6a8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('uniqBy', require('../uniqBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqWith.js new file mode 100644 index 0000000..0ec601a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('uniqWith', require('../uniqWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqueId.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqueId.js new file mode 100644 index 0000000..aa8fc2f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/uniqueId.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('uniqueId', require('../uniqueId')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unnest.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unnest.js new file mode 100644 index 0000000..5d34060 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unnest.js @@ -0,0 +1 @@ +module.exports = require('./flatten'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unset.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unset.js new file mode 100644 index 0000000..ea203a0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unset.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unset', require('../unset')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unzip.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unzip.js new file mode 100644 index 0000000..cc364b3 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unzip.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unzip', require('../unzip'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unzipWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unzipWith.js new file mode 100644 index 0000000..182eaa1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/unzipWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('unzipWith', require('../unzipWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/update.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/update.js new file mode 100644 index 0000000..b8ce2cc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/update.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('update', require('../update')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/updateWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/updateWith.js new file mode 100644 index 0000000..d5e8282 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/updateWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('updateWith', require('../updateWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/upperCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/upperCase.js new file mode 100644 index 0000000..c886f20 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/upperCase.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('upperCase', require('../upperCase'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/upperFirst.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/upperFirst.js new file mode 100644 index 0000000..d8c04df --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/upperFirst.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('upperFirst', require('../upperFirst'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/useWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/useWith.js new file mode 100644 index 0000000..d8b3df5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/useWith.js @@ -0,0 +1 @@ +module.exports = require('./overArgs'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/util.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/util.js new file mode 100644 index 0000000..18c00ba --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/util.js @@ -0,0 +1,2 @@ +var convert = require('./convert'); +module.exports = convert(require('../util')); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/value.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/value.js new file mode 100644 index 0000000..555eec7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/value.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('value', require('../value'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/valueOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/valueOf.js new file mode 100644 index 0000000..f968807 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/valueOf.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('valueOf', require('../valueOf'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/values.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/values.js new file mode 100644 index 0000000..2dfc561 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/values.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('values', require('../values'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/valuesIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/valuesIn.js new file mode 100644 index 0000000..a1b2bb8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/valuesIn.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('valuesIn', require('../valuesIn'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/where.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/where.js new file mode 100644 index 0000000..3247f64 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/where.js @@ -0,0 +1 @@ +module.exports = require('./conformsTo'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/whereEq.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/whereEq.js new file mode 100644 index 0000000..29d1e1e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/whereEq.js @@ -0,0 +1 @@ +module.exports = require('./isMatch'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/without.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/without.js new file mode 100644 index 0000000..bad9e12 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/without.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('without', require('../without')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/words.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/words.js new file mode 100644 index 0000000..4a90141 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/words.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('words', require('../words')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrap.js new file mode 100644 index 0000000..e93bd8a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrap.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('wrap', require('../wrap')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperAt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperAt.js new file mode 100644 index 0000000..8f0a310 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperAt.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('wrapperAt', require('../wrapperAt'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperChain.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperChain.js new file mode 100644 index 0000000..2a48ea2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperChain.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('wrapperChain', require('../wrapperChain'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperLodash.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperLodash.js new file mode 100644 index 0000000..a7162d0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperLodash.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('wrapperLodash', require('../wrapperLodash'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperReverse.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperReverse.js new file mode 100644 index 0000000..e1481aa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperReverse.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('wrapperReverse', require('../wrapperReverse'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperValue.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperValue.js new file mode 100644 index 0000000..8eb9112 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/wrapperValue.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('wrapperValue', require('../wrapperValue'), require('./_falseOptions')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xor.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xor.js new file mode 100644 index 0000000..29e2819 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xor.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('xor', require('../xor')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xorBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xorBy.js new file mode 100644 index 0000000..b355686 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xorBy.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('xorBy', require('../xorBy')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xorWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xorWith.js new file mode 100644 index 0000000..8e05739 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/xorWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('xorWith', require('../xorWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zip.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zip.js new file mode 100644 index 0000000..69e147a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zip.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('zip', require('../zip')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipAll.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipAll.js new file mode 100644 index 0000000..efa8ccb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipAll.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('zipAll', require('../zip')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObj.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObj.js new file mode 100644 index 0000000..f4a3453 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObj.js @@ -0,0 +1 @@ +module.exports = require('./zipObject'); diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObject.js new file mode 100644 index 0000000..462dbb6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObject.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('zipObject', require('../zipObject')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObjectDeep.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObjectDeep.js new file mode 100644 index 0000000..53a5d33 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipObjectDeep.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('zipObjectDeep', require('../zipObjectDeep')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipWith.js new file mode 100644 index 0000000..c5cf9e2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fp/zipWith.js @@ -0,0 +1,5 @@ +var convert = require('./convert'), + func = convert('zipWith', require('../zipWith')); + +func.placeholder = require('./placeholder'); +module.exports = func; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fromPairs.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fromPairs.js new file mode 100644 index 0000000..ee7940d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/fromPairs.js @@ -0,0 +1,28 @@ +/** + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } + */ +function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; +} + +module.exports = fromPairs; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/function.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/function.js new file mode 100644 index 0000000..b0fc6d9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/function.js @@ -0,0 +1,25 @@ +module.exports = { + 'after': require('./after'), + 'ary': require('./ary'), + 'before': require('./before'), + 'bind': require('./bind'), + 'bindKey': require('./bindKey'), + 'curry': require('./curry'), + 'curryRight': require('./curryRight'), + 'debounce': require('./debounce'), + 'defer': require('./defer'), + 'delay': require('./delay'), + 'flip': require('./flip'), + 'memoize': require('./memoize'), + 'negate': require('./negate'), + 'once': require('./once'), + 'overArgs': require('./overArgs'), + 'partial': require('./partial'), + 'partialRight': require('./partialRight'), + 'rearg': require('./rearg'), + 'rest': require('./rest'), + 'spread': require('./spread'), + 'throttle': require('./throttle'), + 'unary': require('./unary'), + 'wrap': require('./wrap') +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/functions.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/functions.js new file mode 100644 index 0000000..9722928 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/functions.js @@ -0,0 +1,31 @@ +var baseFunctions = require('./_baseFunctions'), + keys = require('./keys'); + +/** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functionsIn + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ +function functions(object) { + return object == null ? [] : baseFunctions(object, keys(object)); +} + +module.exports = functions; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/functionsIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/functionsIn.js new file mode 100644 index 0000000..f00345d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/functionsIn.js @@ -0,0 +1,31 @@ +var baseFunctions = require('./_baseFunctions'), + keysIn = require('./keysIn'); + +/** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functions + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ +function functionsIn(object) { + return object == null ? [] : baseFunctions(object, keysIn(object)); +} + +module.exports = functionsIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/get.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/get.js new file mode 100644 index 0000000..8805ff9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/get.js @@ -0,0 +1,33 @@ +var baseGet = require('./_baseGet'); + +/** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ +function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; +} + +module.exports = get; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/groupBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/groupBy.js new file mode 100644 index 0000000..babf4f6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/groupBy.js @@ -0,0 +1,41 @@ +var baseAssignValue = require('./_baseAssignValue'), + createAggregator = require('./_createAggregator'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ +var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } +}); + +module.exports = groupBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/gt.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/gt.js new file mode 100644 index 0000000..3a66282 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/gt.js @@ -0,0 +1,29 @@ +var baseGt = require('./_baseGt'), + createRelationalOperation = require('./_createRelationalOperation'); + +/** + * Checks if `value` is greater than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + * @see _.lt + * @example + * + * _.gt(3, 1); + * // => true + * + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false + */ +var gt = createRelationalOperation(baseGt); + +module.exports = gt; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/gte.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/gte.js new file mode 100644 index 0000000..4180a68 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/gte.js @@ -0,0 +1,30 @@ +var createRelationalOperation = require('./_createRelationalOperation'); + +/** + * Checks if `value` is greater than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to + * `other`, else `false`. + * @see _.lte + * @example + * + * _.gte(3, 1); + * // => true + * + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false + */ +var gte = createRelationalOperation(function(value, other) { + return value >= other; +}); + +module.exports = gte; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/has.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/has.js new file mode 100644 index 0000000..34df55e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/has.js @@ -0,0 +1,35 @@ +var baseHas = require('./_baseHas'), + hasPath = require('./_hasPath'); + +/** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ +function has(object, path) { + return object != null && hasPath(object, path, baseHas); +} + +module.exports = has; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/hasIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/hasIn.js new file mode 100644 index 0000000..06a3686 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/hasIn.js @@ -0,0 +1,34 @@ +var baseHasIn = require('./_baseHasIn'), + hasPath = require('./_hasPath'); + +/** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b'); + * // => true + * + * _.hasIn(object, ['a', 'b']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ +function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); +} + +module.exports = hasIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/head.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/head.js new file mode 100644 index 0000000..dee9d1f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/head.js @@ -0,0 +1,23 @@ +/** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined + */ +function head(array) { + return (array && array.length) ? array[0] : undefined; +} + +module.exports = head; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/identity.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/identity.js new file mode 100644 index 0000000..2d5d963 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/identity.js @@ -0,0 +1,21 @@ +/** + * This method returns the first argument it receives. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {*} value Any value. + * @returns {*} Returns `value`. + * @example + * + * var object = { 'a': 1 }; + * + * console.log(_.identity(object) === object); + * // => true + */ +function identity(value) { + return value; +} + +module.exports = identity; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/inRange.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/inRange.js new file mode 100644 index 0000000..f20728d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/inRange.js @@ -0,0 +1,55 @@ +var baseInRange = require('./_baseInRange'), + toFinite = require('./toFinite'), + toNumber = require('./toNumber'); + +/** + * Checks if `n` is between `start` and up to, but not including, `end`. If + * `end` is not specified, it's set to `start` with `start` then set to `0`. + * If `start` is greater than `end` the params are swapped to support + * negative ranges. + * + * @static + * @memberOf _ + * @since 3.3.0 + * @category Number + * @param {number} number The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + * @see _.range, _.rangeRight + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + * + * _.inRange(-3, -2, -6); + * // => true + */ +function inRange(number, start, end) { + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + number = toNumber(number); + return baseInRange(number, start, end); +} + +module.exports = inRange; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/includes.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/includes.js new file mode 100644 index 0000000..ae0deed --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/includes.js @@ -0,0 +1,53 @@ +var baseIndexOf = require('./_baseIndexOf'), + isArrayLike = require('./isArrayLike'), + isString = require('./isString'), + toInteger = require('./toInteger'), + values = require('./values'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ +function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; + + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); + } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); +} + +module.exports = includes; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/index.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/index.js new file mode 100644 index 0000000..5d063e2 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/index.js @@ -0,0 +1 @@ +module.exports = require('./lodash'); \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/indexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/indexOf.js new file mode 100644 index 0000000..3c644af --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/indexOf.js @@ -0,0 +1,42 @@ +var baseIndexOf = require('./_baseIndexOf'), + toInteger = require('./toInteger'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ +function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseIndexOf(array, value, index); +} + +module.exports = indexOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/initial.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/initial.js new file mode 100644 index 0000000..f47fc50 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/initial.js @@ -0,0 +1,22 @@ +var baseSlice = require('./_baseSlice'); + +/** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ +function initial(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 0, -1) : []; +} + +module.exports = initial; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersection.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersection.js new file mode 100644 index 0000000..a94c135 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersection.js @@ -0,0 +1,30 @@ +var arrayMap = require('./_arrayMap'), + baseIntersection = require('./_baseIntersection'), + baseRest = require('./_baseRest'), + castArrayLikeObject = require('./_castArrayLikeObject'); + +/** + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersection([2, 1], [2, 3]); + * // => [2] + */ +var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; +}); + +module.exports = intersection; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersectionBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersectionBy.js new file mode 100644 index 0000000..31461aa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersectionBy.js @@ -0,0 +1,45 @@ +var arrayMap = require('./_arrayMap'), + baseIntersection = require('./_baseIntersection'), + baseIteratee = require('./_baseIteratee'), + baseRest = require('./_baseRest'), + castArrayLikeObject = require('./_castArrayLikeObject'), + last = require('./last'); + +/** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] + * + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ +var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, baseIteratee(iteratee, 2)) + : []; +}); + +module.exports = intersectionBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersectionWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersectionWith.js new file mode 100644 index 0000000..63cabfa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/intersectionWith.js @@ -0,0 +1,41 @@ +var arrayMap = require('./_arrayMap'), + baseIntersection = require('./_baseIntersection'), + baseRest = require('./_baseRest'), + castArrayLikeObject = require('./_castArrayLikeObject'), + last = require('./last'); + +/** + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The order and references + * of result values are determined by the first array. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] + */ +var intersectionWith = baseRest(function(arrays) { + var comparator = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + comparator = typeof comparator == 'function' ? comparator : undefined; + if (comparator) { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, undefined, comparator) + : []; +}); + +module.exports = intersectionWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invert.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invert.js new file mode 100644 index 0000000..8c47950 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invert.js @@ -0,0 +1,42 @@ +var constant = require('./constant'), + createInverter = require('./_createInverter'), + identity = require('./identity'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite + * property assignments of previous values. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Object + * @param {Object} object The object to invert. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + */ +var invert = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + result[value] = key; +}, constant(identity)); + +module.exports = invert; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invertBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invertBy.js new file mode 100644 index 0000000..3f4f7e5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invertBy.js @@ -0,0 +1,56 @@ +var baseIteratee = require('./_baseIteratee'), + createInverter = require('./_createInverter'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** + * This method is like `_.invert` except that the inverted object is generated + * from the results of running each element of `object` thru `iteratee`. The + * corresponding inverted value of each inverted key is an array of keys + * responsible for generating the inverted value. The iteratee is invoked + * with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Object + * @param {Object} object The object to invert. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invertBy(object); + * // => { '1': ['a', 'c'], '2': ['b'] } + * + * _.invertBy(object, function(value) { + * return 'group' + value; + * }); + * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + */ +var invertBy = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } +}, baseIteratee); + +module.exports = invertBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invoke.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invoke.js new file mode 100644 index 0000000..97d51eb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invoke.js @@ -0,0 +1,24 @@ +var baseInvoke = require('./_baseInvoke'), + baseRest = require('./_baseRest'); + +/** + * Invokes the method at `path` of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + * @example + * + * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * + * _.invoke(object, 'a[0].b.c.slice', 1, 3); + * // => [2, 3] + */ +var invoke = baseRest(baseInvoke); + +module.exports = invoke; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invokeMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invokeMap.js new file mode 100644 index 0000000..8da5126 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/invokeMap.js @@ -0,0 +1,41 @@ +var apply = require('./_apply'), + baseEach = require('./_baseEach'), + baseInvoke = require('./_baseInvoke'), + baseRest = require('./_baseRest'), + isArrayLike = require('./isArrayLike'); + +/** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke each method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invokeMap([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ +var invokeMap = baseRest(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); + }); + return result; +}); + +module.exports = invokeMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArguments.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArguments.js new file mode 100644 index 0000000..8b9ed66 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArguments.js @@ -0,0 +1,36 @@ +var baseIsArguments = require('./_baseIsArguments'), + isObjectLike = require('./isObjectLike'); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** Built-in value references. */ +var propertyIsEnumerable = objectProto.propertyIsEnumerable; + +/** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ +var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); +}; + +module.exports = isArguments; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArray.js new file mode 100644 index 0000000..88ab55f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArray.js @@ -0,0 +1,26 @@ +/** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ +var isArray = Array.isArray; + +module.exports = isArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayBuffer.js new file mode 100644 index 0000000..12904a6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayBuffer.js @@ -0,0 +1,27 @@ +var baseIsArrayBuffer = require('./_baseIsArrayBuffer'), + baseUnary = require('./_baseUnary'), + nodeUtil = require('./_nodeUtil'); + +/* Node.js helper references. */ +var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer; + +/** + * Checks if `value` is classified as an `ArrayBuffer` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + * @example + * + * _.isArrayBuffer(new ArrayBuffer(2)); + * // => true + * + * _.isArrayBuffer(new Array(2)); + * // => false + */ +var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + +module.exports = isArrayBuffer; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayLike.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayLike.js new file mode 100644 index 0000000..0f96680 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayLike.js @@ -0,0 +1,33 @@ +var isFunction = require('./isFunction'), + isLength = require('./isLength'); + +/** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ +function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); +} + +module.exports = isArrayLike; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayLikeObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayLikeObject.js new file mode 100644 index 0000000..6c4812a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isArrayLikeObject.js @@ -0,0 +1,33 @@ +var isArrayLike = require('./isArrayLike'), + isObjectLike = require('./isObjectLike'); + +/** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example + * + * _.isArrayLikeObject([1, 2, 3]); + * // => true + * + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false + */ +function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); +} + +module.exports = isArrayLikeObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isBoolean.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isBoolean.js new file mode 100644 index 0000000..a43ed4b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isBoolean.js @@ -0,0 +1,29 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var boolTag = '[object Boolean]'; + +/** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ +function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); +} + +module.exports = isBoolean; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isBuffer.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isBuffer.js new file mode 100644 index 0000000..c103cc7 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isBuffer.js @@ -0,0 +1,38 @@ +var root = require('./_root'), + stubFalse = require('./stubFalse'); + +/** Detect free variable `exports`. */ +var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + +/** Detect free variable `module`. */ +var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + +/** Detect the popular CommonJS extension `module.exports`. */ +var moduleExports = freeModule && freeModule.exports === freeExports; + +/** Built-in value references. */ +var Buffer = moduleExports ? root.Buffer : undefined; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined; + +/** + * Checks if `value` is a buffer. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true + * + * _.isBuffer(new Uint8Array(2)); + * // => false + */ +var isBuffer = nativeIsBuffer || stubFalse; + +module.exports = isBuffer; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isDate.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isDate.js new file mode 100644 index 0000000..7f0209f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isDate.js @@ -0,0 +1,27 @@ +var baseIsDate = require('./_baseIsDate'), + baseUnary = require('./_baseUnary'), + nodeUtil = require('./_nodeUtil'); + +/* Node.js helper references. */ +var nodeIsDate = nodeUtil && nodeUtil.isDate; + +/** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ +var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; + +module.exports = isDate; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isElement.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isElement.js new file mode 100644 index 0000000..76ae29c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isElement.js @@ -0,0 +1,25 @@ +var isObjectLike = require('./isObjectLike'), + isPlainObject = require('./isPlainObject'); + +/** + * Checks if `value` is likely a DOM element. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @example + * + * _.isElement(document.body); + * // => true + * + * _.isElement(''); + * // => false + */ +function isElement(value) { + return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); +} + +module.exports = isElement; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEmpty.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEmpty.js new file mode 100644 index 0000000..3597294 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEmpty.js @@ -0,0 +1,77 @@ +var baseKeys = require('./_baseKeys'), + getTag = require('./_getTag'), + isArguments = require('./isArguments'), + isArray = require('./isArray'), + isArrayLike = require('./isArrayLike'), + isBuffer = require('./isBuffer'), + isPrototype = require('./_isPrototype'), + isTypedArray = require('./isTypedArray'); + +/** `Object#toString` result references. */ +var mapTag = '[object Map]', + setTag = '[object Set]'; + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ +function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && + (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || + isBuffer(value) || isTypedArray(value) || isArguments(value))) { + return !value.length; + } + var tag = getTag(value); + if (tag == mapTag || tag == setTag) { + return !value.size; + } + if (isPrototype(value)) { + return !baseKeys(value).length; + } + for (var key in value) { + if (hasOwnProperty.call(value, key)) { + return false; + } + } + return true; +} + +module.exports = isEmpty; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEqual.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEqual.js new file mode 100644 index 0000000..5e23e76 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEqual.js @@ -0,0 +1,35 @@ +var baseIsEqual = require('./_baseIsEqual'); + +/** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ +function isEqual(value, other) { + return baseIsEqual(value, other); +} + +module.exports = isEqual; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEqualWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEqualWith.js new file mode 100644 index 0000000..21bdc7f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isEqualWith.js @@ -0,0 +1,41 @@ +var baseIsEqual = require('./_baseIsEqual'); + +/** + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ +function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; +} + +module.exports = isEqualWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isError.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isError.js new file mode 100644 index 0000000..b4f41e0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isError.js @@ -0,0 +1,36 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'), + isPlainObject = require('./isPlainObject'); + +/** `Object#toString` result references. */ +var domExcTag = '[object DOMException]', + errorTag = '[object Error]'; + +/** + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @example + * + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false + */ +function isError(value) { + if (!isObjectLike(value)) { + return false; + } + var tag = baseGetTag(value); + return tag == errorTag || tag == domExcTag || + (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); +} + +module.exports = isError; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isFinite.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isFinite.js new file mode 100644 index 0000000..601842b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isFinite.js @@ -0,0 +1,36 @@ +var root = require('./_root'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeIsFinite = root.isFinite; + +/** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false + */ +function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); +} + +module.exports = isFinite; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isFunction.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isFunction.js new file mode 100644 index 0000000..907a8cd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isFunction.js @@ -0,0 +1,37 @@ +var baseGetTag = require('./_baseGetTag'), + isObject = require('./isObject'); + +/** `Object#toString` result references. */ +var asyncTag = '[object AsyncFunction]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + proxyTag = '[object Proxy]'; + +/** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ +function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; +} + +module.exports = isFunction; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isInteger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isInteger.js new file mode 100644 index 0000000..66aa87d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isInteger.js @@ -0,0 +1,33 @@ +var toInteger = require('./toInteger'); + +/** + * Checks if `value` is an integer. + * + * **Note:** This method is based on + * [`Number.isInteger`](https://mdn.io/Number/isInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @example + * + * _.isInteger(3); + * // => true + * + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false + */ +function isInteger(value) { + return typeof value == 'number' && value == toInteger(value); +} + +module.exports = isInteger; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isLength.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isLength.js new file mode 100644 index 0000000..3a95caa --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isLength.js @@ -0,0 +1,35 @@ +/** Used as references for various `Number` constants. */ +var MAX_SAFE_INTEGER = 9007199254740991; + +/** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ +function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; +} + +module.exports = isLength; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMap.js new file mode 100644 index 0000000..44f8517 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMap.js @@ -0,0 +1,27 @@ +var baseIsMap = require('./_baseIsMap'), + baseUnary = require('./_baseUnary'), + nodeUtil = require('./_nodeUtil'); + +/* Node.js helper references. */ +var nodeIsMap = nodeUtil && nodeUtil.isMap; + +/** + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false + */ +var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; + +module.exports = isMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMatch.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMatch.js new file mode 100644 index 0000000..9773a18 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMatch.js @@ -0,0 +1,36 @@ +var baseIsMatch = require('./_baseIsMatch'), + getMatchData = require('./_getMatchData'); + +/** + * Performs a partial deep comparison between `object` and `source` to + * determine if `object` contains equivalent property values. + * + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.isMatch(object, { 'b': 2 }); + * // => true + * + * _.isMatch(object, { 'b': 1 }); + * // => false + */ +function isMatch(object, source) { + return object === source || baseIsMatch(object, source, getMatchData(source)); +} + +module.exports = isMatch; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMatchWith.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMatchWith.js new file mode 100644 index 0000000..187b6a6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isMatchWith.js @@ -0,0 +1,41 @@ +var baseIsMatch = require('./_baseIsMatch'), + getMatchData = require('./_getMatchData'); + +/** + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with five + * arguments: (objValue, srcValue, index|key, object, source). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } + * + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatchWith(object, source, customizer); + * // => true + */ +function isMatchWith(object, source, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseIsMatch(object, source, getMatchData(source), customizer); +} + +module.exports = isMatchWith; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNaN.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNaN.js new file mode 100644 index 0000000..7d0d783 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNaN.js @@ -0,0 +1,38 @@ +var isNumber = require('./isNumber'); + +/** + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ +function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; +} + +module.exports = isNaN; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNative.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNative.js new file mode 100644 index 0000000..f0cb8d5 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNative.js @@ -0,0 +1,40 @@ +var baseIsNative = require('./_baseIsNative'), + isMaskable = require('./_isMaskable'); + +/** Error message constants. */ +var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.'; + +/** + * Checks if `value` is a pristine native function. + * + * **Note:** This method can't reliably detect native functions in the presence + * of the core-js package because core-js circumvents this kind of detection. + * Despite multiple requests, the core-js maintainer has made it clear: any + * attempt to fix the detection will be obstructed. As a result, we're left + * with little choice but to throw an error. Unfortunately, this also affects + * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), + * which rely on core-js. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + * @example + * + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false + */ +function isNative(value) { + if (isMaskable(value)) { + throw new Error(CORE_ERROR_TEXT); + } + return baseIsNative(value); +} + +module.exports = isNative; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNil.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNil.js new file mode 100644 index 0000000..79f0505 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNil.js @@ -0,0 +1,25 @@ +/** + * Checks if `value` is `null` or `undefined`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @example + * + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false + */ +function isNil(value) { + return value == null; +} + +module.exports = isNil; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNull.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNull.js new file mode 100644 index 0000000..c0a374d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNull.js @@ -0,0 +1,22 @@ +/** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ +function isNull(value) { + return value === null; +} + +module.exports = isNull; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNumber.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNumber.js new file mode 100644 index 0000000..cd34ee4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isNumber.js @@ -0,0 +1,38 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var numberTag = '[object Number]'; + +/** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @example + * + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false + */ +function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); +} + +module.exports = isNumber; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isObject.js new file mode 100644 index 0000000..1dc8939 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isObject.js @@ -0,0 +1,31 @@ +/** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(_.noop); + * // => true + * + * _.isObject(null); + * // => false + */ +function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); +} + +module.exports = isObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isObjectLike.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isObjectLike.js new file mode 100644 index 0000000..301716b --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isObjectLike.js @@ -0,0 +1,29 @@ +/** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ +function isObjectLike(value) { + return value != null && typeof value == 'object'; +} + +module.exports = isObjectLike; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isPlainObject.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isPlainObject.js new file mode 100644 index 0000000..2387373 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isPlainObject.js @@ -0,0 +1,62 @@ +var baseGetTag = require('./_baseGetTag'), + getPrototype = require('./_getPrototype'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var objectTag = '[object Object]'; + +/** Used for built-in method references. */ +var funcProto = Function.prototype, + objectProto = Object.prototype; + +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** Used to infer the `Object` constructor. */ +var objectCtorString = funcToString.call(Object); + +/** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ +function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; +} + +module.exports = isPlainObject; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isRegExp.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isRegExp.js new file mode 100644 index 0000000..76c9b6e --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isRegExp.js @@ -0,0 +1,27 @@ +var baseIsRegExp = require('./_baseIsRegExp'), + baseUnary = require('./_baseUnary'), + nodeUtil = require('./_nodeUtil'); + +/* Node.js helper references. */ +var nodeIsRegExp = nodeUtil && nodeUtil.isRegExp; + +/** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ +var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; + +module.exports = isRegExp; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSafeInteger.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSafeInteger.js new file mode 100644 index 0000000..2a48526 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSafeInteger.js @@ -0,0 +1,37 @@ +var isInteger = require('./isInteger'); + +/** Used as references for various `Number` constants. */ +var MAX_SAFE_INTEGER = 9007199254740991; + +/** + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on + * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @example + * + * _.isSafeInteger(3); + * // => true + * + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false + */ +function isSafeInteger(value) { + return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; +} + +module.exports = isSafeInteger; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSet.js new file mode 100644 index 0000000..ab88bdf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSet.js @@ -0,0 +1,27 @@ +var baseIsSet = require('./_baseIsSet'), + baseUnary = require('./_baseUnary'), + nodeUtil = require('./_nodeUtil'); + +/* Node.js helper references. */ +var nodeIsSet = nodeUtil && nodeUtil.isSet; + +/** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ +var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + +module.exports = isSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isString.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isString.js new file mode 100644 index 0000000..627eb9c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isString.js @@ -0,0 +1,30 @@ +var baseGetTag = require('./_baseGetTag'), + isArray = require('./isArray'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var stringTag = '[object String]'; + +/** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ +function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); +} + +module.exports = isString; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSymbol.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSymbol.js new file mode 100644 index 0000000..dfb60b9 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isSymbol.js @@ -0,0 +1,29 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var symbolTag = '[object Symbol]'; + +/** + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false + */ +function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); +} + +module.exports = isSymbol; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isTypedArray.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isTypedArray.js new file mode 100644 index 0000000..da3f8dd --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isTypedArray.js @@ -0,0 +1,27 @@ +var baseIsTypedArray = require('./_baseIsTypedArray'), + baseUnary = require('./_baseUnary'), + nodeUtil = require('./_nodeUtil'); + +/* Node.js helper references. */ +var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; + +/** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ +var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + +module.exports = isTypedArray; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isUndefined.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isUndefined.js new file mode 100644 index 0000000..377d121 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isUndefined.js @@ -0,0 +1,22 @@ +/** + * Checks if `value` is `undefined`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ +function isUndefined(value) { + return value === undefined; +} + +module.exports = isUndefined; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isWeakMap.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isWeakMap.js new file mode 100644 index 0000000..8d36f66 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isWeakMap.js @@ -0,0 +1,28 @@ +var getTag = require('./_getTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var weakMapTag = '[object WeakMap]'; + +/** + * Checks if `value` is classified as a `WeakMap` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @example + * + * _.isWeakMap(new WeakMap); + * // => true + * + * _.isWeakMap(new Map); + * // => false + */ +function isWeakMap(value) { + return isObjectLike(value) && getTag(value) == weakMapTag; +} + +module.exports = isWeakMap; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isWeakSet.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isWeakSet.js new file mode 100644 index 0000000..e628b26 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/isWeakSet.js @@ -0,0 +1,28 @@ +var baseGetTag = require('./_baseGetTag'), + isObjectLike = require('./isObjectLike'); + +/** `Object#toString` result references. */ +var weakSetTag = '[object WeakSet]'; + +/** + * Checks if `value` is classified as a `WeakSet` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. + * @example + * + * _.isWeakSet(new WeakSet); + * // => true + * + * _.isWeakSet(new Set); + * // => false + */ +function isWeakSet(value) { + return isObjectLike(value) && baseGetTag(value) == weakSetTag; +} + +module.exports = isWeakSet; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/iteratee.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/iteratee.js new file mode 100644 index 0000000..61b73a8 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/iteratee.js @@ -0,0 +1,53 @@ +var baseClone = require('./_baseClone'), + baseIteratee = require('./_baseIteratee'); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1; + +/** + * Creates a function that invokes `func` with the arguments of the created + * function. If `func` is a property name, the created function returns the + * property value for a given element. If `func` is an array or object, the + * created function returns `true` for elements that contain the equivalent + * source properties, otherwise it returns `false`. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Util + * @param {*} [func=_.identity] The value to convert to a callback. + * @returns {Function} Returns the callback. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, _.iteratee({ 'user': 'barney', 'active': true })); + * // => [{ 'user': 'barney', 'age': 36, 'active': true }] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, _.iteratee(['user', 'fred'])); + * // => [{ 'user': 'fred', 'age': 40 }] + * + * // The `_.property` iteratee shorthand. + * _.map(users, _.iteratee('user')); + * // => ['barney', 'fred'] + * + * // Create custom iteratee shorthands. + * _.iteratee = _.wrap(_.iteratee, function(iteratee, func) { + * return !_.isRegExp(func) ? iteratee(func) : function(string) { + * return func.test(string); + * }; + * }); + * + * _.filter(['abc', 'def'], /ef/); + * // => ['def'] + */ +function iteratee(func) { + return baseIteratee(typeof func == 'function' ? func : baseClone(func, CLONE_DEEP_FLAG)); +} + +module.exports = iteratee; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/join.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/join.js new file mode 100644 index 0000000..45de079 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/join.js @@ -0,0 +1,26 @@ +/** Used for built-in method references. */ +var arrayProto = Array.prototype; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeJoin = arrayProto.join; + +/** + * Converts all elements in `array` into a string separated by `separator`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. + * @example + * + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' + */ +function join(array, separator) { + return array == null ? '' : nativeJoin.call(array, separator); +} + +module.exports = join; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/kebabCase.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/kebabCase.js new file mode 100644 index 0000000..8a52be6 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/kebabCase.js @@ -0,0 +1,28 @@ +var createCompounder = require('./_createCompounder'); + +/** + * Converts `string` to + * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__FOO_BAR__'); + * // => 'foo-bar' + */ +var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); +}); + +module.exports = kebabCase; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keyBy.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keyBy.js new file mode 100644 index 0000000..acc007a --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keyBy.js @@ -0,0 +1,36 @@ +var baseAssignValue = require('./_baseAssignValue'), + createAggregator = require('./_createAggregator'); + +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + */ +var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); +}); + +module.exports = keyBy; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keys.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keys.js new file mode 100644 index 0000000..d143c71 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keys.js @@ -0,0 +1,37 @@ +var arrayLikeKeys = require('./_arrayLikeKeys'), + baseKeys = require('./_baseKeys'), + isArrayLike = require('./isArrayLike'); + +/** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ +function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); +} + +module.exports = keys; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keysIn.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keysIn.js new file mode 100644 index 0000000..a62308f --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/keysIn.js @@ -0,0 +1,32 @@ +var arrayLikeKeys = require('./_arrayLikeKeys'), + baseKeysIn = require('./_baseKeysIn'), + isArrayLike = require('./isArrayLike'); + +/** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ +function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); +} + +module.exports = keysIn; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lang.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lang.js new file mode 100644 index 0000000..a396216 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lang.js @@ -0,0 +1,58 @@ +module.exports = { + 'castArray': require('./castArray'), + 'clone': require('./clone'), + 'cloneDeep': require('./cloneDeep'), + 'cloneDeepWith': require('./cloneDeepWith'), + 'cloneWith': require('./cloneWith'), + 'conformsTo': require('./conformsTo'), + 'eq': require('./eq'), + 'gt': require('./gt'), + 'gte': require('./gte'), + 'isArguments': require('./isArguments'), + 'isArray': require('./isArray'), + 'isArrayBuffer': require('./isArrayBuffer'), + 'isArrayLike': require('./isArrayLike'), + 'isArrayLikeObject': require('./isArrayLikeObject'), + 'isBoolean': require('./isBoolean'), + 'isBuffer': require('./isBuffer'), + 'isDate': require('./isDate'), + 'isElement': require('./isElement'), + 'isEmpty': require('./isEmpty'), + 'isEqual': require('./isEqual'), + 'isEqualWith': require('./isEqualWith'), + 'isError': require('./isError'), + 'isFinite': require('./isFinite'), + 'isFunction': require('./isFunction'), + 'isInteger': require('./isInteger'), + 'isLength': require('./isLength'), + 'isMap': require('./isMap'), + 'isMatch': require('./isMatch'), + 'isMatchWith': require('./isMatchWith'), + 'isNaN': require('./isNaN'), + 'isNative': require('./isNative'), + 'isNil': require('./isNil'), + 'isNull': require('./isNull'), + 'isNumber': require('./isNumber'), + 'isObject': require('./isObject'), + 'isObjectLike': require('./isObjectLike'), + 'isPlainObject': require('./isPlainObject'), + 'isRegExp': require('./isRegExp'), + 'isSafeInteger': require('./isSafeInteger'), + 'isSet': require('./isSet'), + 'isString': require('./isString'), + 'isSymbol': require('./isSymbol'), + 'isTypedArray': require('./isTypedArray'), + 'isUndefined': require('./isUndefined'), + 'isWeakMap': require('./isWeakMap'), + 'isWeakSet': require('./isWeakSet'), + 'lt': require('./lt'), + 'lte': require('./lte'), + 'toArray': require('./toArray'), + 'toFinite': require('./toFinite'), + 'toInteger': require('./toInteger'), + 'toLength': require('./toLength'), + 'toNumber': require('./toNumber'), + 'toPlainObject': require('./toPlainObject'), + 'toSafeInteger': require('./toSafeInteger'), + 'toString': require('./toString') +}; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/last.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/last.js new file mode 100644 index 0000000..cad1eaf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/last.js @@ -0,0 +1,20 @@ +/** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ +function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; +} + +module.exports = last; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lastIndexOf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lastIndexOf.js new file mode 100644 index 0000000..dabfb61 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lastIndexOf.js @@ -0,0 +1,46 @@ +var baseFindIndex = require('./_baseFindIndex'), + baseIsNaN = require('./_baseIsNaN'), + strictLastIndexOf = require('./_strictLastIndexOf'), + toInteger = require('./toInteger'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max, + nativeMin = Math.min; + +/** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // Search from the `fromIndex`. + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + */ +function lastIndexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + } + return value === value + ? strictLastIndexOf(array, value, index) + : baseFindIndex(array, baseIsNaN, index, true); +} + +module.exports = lastIndexOf; diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lodash.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lodash.js new file mode 100644 index 0000000..1fd7116 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/node_modules/lodash/lodash.js @@ -0,0 +1,17161 @@ +/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ +;(function() { + + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; + + /** Used as the semantic version number. */ + var VERSION = '4.17.20'; + + /** Used as the size to enable large array optimizations. */ + var LARGE_ARRAY_SIZE = 200; + + /** Error message constants. */ + var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.', + FUNC_ERROR_TEXT = 'Expected a function'; + + /** Used to stand-in for `undefined` hash values. */ + var HASH_UNDEFINED = '__lodash_hash_undefined__'; + + /** Used as the maximum memoize cache size. */ + var MAX_MEMOIZE_SIZE = 500; + + /** Used as the internal argument placeholder. */ + var PLACEHOLDER = '__lodash_placeholder__'; + + /** Used to compose bitmasks for cloning. */ + var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + + /** Used to compose bitmasks for value comparisons. */ + var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + + /** Used to compose bitmasks for function metadata. */ + var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256, + WRAP_FLIP_FLAG = 512; + + /** Used as default options for `_.truncate`. */ + var DEFAULT_TRUNC_LENGTH = 30, + DEFAULT_TRUNC_OMISSION = '...'; + + /** Used to detect hot functions by number of calls within a span of milliseconds. */ + var HOT_COUNT = 800, + HOT_SPAN = 16; + + /** Used to indicate the type of lazy iteratees. */ + var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2, + LAZY_WHILE_FLAG = 3; + + /** Used as references for various `Number` constants. */ + var INFINITY = 1 / 0, + MAX_SAFE_INTEGER = 9007199254740991, + MAX_INTEGER = 1.7976931348623157e+308, + NAN = 0 / 0; + + /** Used as references for the maximum length and index of an array. */ + var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; + + /** Used to associate wrap methods with their bit flags. */ + var wrapFlags = [ + ['ary', WRAP_ARY_FLAG], + ['bind', WRAP_BIND_FLAG], + ['bindKey', WRAP_BIND_KEY_FLAG], + ['curry', WRAP_CURRY_FLAG], + ['curryRight', WRAP_CURRY_RIGHT_FLAG], + ['flip', WRAP_FLIP_FLAG], + ['partial', WRAP_PARTIAL_FLAG], + ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], + ['rearg', WRAP_REARG_FLAG] + ]; + + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + asyncTag = '[object AsyncFunction]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + domExcTag = '[object DOMException]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + nullTag = '[object Null]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + proxyTag = '[object Proxy]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + undefinedTag = '[object Undefined]', + weakMapTag = '[object WeakMap]', + weakSetTag = '[object WeakSet]'; + + var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + + /** Used to match empty string literals in compiled template source. */ + var reEmptyStringLeading = /\b__p \+= '';/g, + reEmptyStringMiddle = /\b(__p \+=) '' \+/g, + reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; + + /** Used to match HTML entities and HTML characters. */ + var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, + reUnescapedHtml = /[&<>"']/g, + reHasEscapedHtml = RegExp(reEscapedHtml.source), + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** Used to match template delimiters. */ + var reEscape = /<%-([\s\S]+?)%>/g, + reEvaluate = /<%([\s\S]+?)%>/g, + reInterpolate = /<%=([\s\S]+?)%>/g; + + /** Used to match property names within property paths. */ + var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/, + rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; + + /** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ + var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, + reHasRegExpChar = RegExp(reRegExpChar.source); + + /** Used to match leading and trailing whitespace. */ + var reTrim = /^\s+|\s+$/g, + reTrimStart = /^\s+/, + reTrimEnd = /\s+$/; + + /** Used to match wrap detail comments. */ + var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, + reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, + reSplitDetails = /,? & /; + + /** Used to match words composed of alphanumeric characters. */ + var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; + + /** Used to match backslashes in property paths. */ + var reEscapeChar = /\\(\\)?/g; + + /** + * Used to match + * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components). + */ + var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; + + /** Used to match `RegExp` flags from their coerced string values. */ + var reFlags = /\w*$/; + + /** Used to detect bad signed hexadecimal string values. */ + var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; + + /** Used to detect binary string values. */ + var reIsBinary = /^0b[01]+$/i; + + /** Used to detect host constructors (Safari). */ + var reIsHostCtor = /^\[object .+?Constructor\]$/; + + /** Used to detect octal string values. */ + var reIsOctal = /^0o[0-7]+$/i; + + /** Used to detect unsigned integer values. */ + var reIsUint = /^(?:0|[1-9]\d*)$/; + + /** Used to match Latin Unicode letters (excluding mathematical operators). */ + var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; + + /** Used to ensure capturing order of template delimiters. */ + var reNoMatch = /($^)/; + + /** Used to match unescaped characters in compiled string literals. */ + var reUnescapedString = /['\n\r\u2028\u2029\\]/g; + + /** Used to compose unicode character classes. */ + var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsDingbatRange = '\\u2700-\\u27bf', + rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', + rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', + rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', + rsPunctuationRange = '\\u2000-\\u206f', + rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', + rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', + rsVarRange = '\\ufe0e\\ufe0f', + rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; + + /** Used to compose unicode capture groups. */ + var rsApos = "['\u2019]", + rsAstral = '[' + rsAstralRange + ']', + rsBreak = '[' + rsBreakRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsDigits = '\\d+', + rsDingbat = '[' + rsDingbatRange + ']', + rsLower = '[' + rsLowerRange + ']', + rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsUpper = '[' + rsUpperRange + ']', + rsZWJ = '\\u200d'; + + /** Used to compose unicode regexes. */ + var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', + rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', + rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', + rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', + reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', + rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; + + /** Used to match apostrophes. */ + var reApos = RegExp(rsApos, 'g'); + + /** + * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and + * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). + */ + var reComboMark = RegExp(rsCombo, 'g'); + + /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ + var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); + + /** Used to match complex or compound words. */ + var reUnicodeWord = RegExp([ + rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', + rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', + rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, + rsUpper + '+' + rsOptContrUpper, + rsOrdUpper, + rsOrdLower, + rsDigits, + rsEmoji + ].join('|'), 'g'); + + /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ + var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); + + /** Used to detect strings that need a more robust regexp to match words. */ + var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; + + /** Used to assign default `context` object properties. */ + var contextProps = [ + 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array', + 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object', + 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array', + 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', + '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout' + ]; + + /** Used to make template sourceURLs easier to identify. */ + var templateCounter = -1; + + /** Used to identify `toStringTag` values of typed arrays. */ + var typedArrayTags = {}; + typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = + typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = + typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = + typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = + typedArrayTags[uint32Tag] = true; + typedArrayTags[argsTag] = typedArrayTags[arrayTag] = + typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = + typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = + typedArrayTags[errorTag] = typedArrayTags[funcTag] = + typedArrayTags[mapTag] = typedArrayTags[numberTag] = + typedArrayTags[objectTag] = typedArrayTags[regexpTag] = + typedArrayTags[setTag] = typedArrayTags[stringTag] = + typedArrayTags[weakMapTag] = false; + + /** Used to identify `toStringTag` values supported by `_.clone`. */ + var cloneableTags = {}; + cloneableTags[argsTag] = cloneableTags[arrayTag] = + cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = + cloneableTags[boolTag] = cloneableTags[dateTag] = + cloneableTags[float32Tag] = cloneableTags[float64Tag] = + cloneableTags[int8Tag] = cloneableTags[int16Tag] = + cloneableTags[int32Tag] = cloneableTags[mapTag] = + cloneableTags[numberTag] = cloneableTags[objectTag] = + cloneableTags[regexpTag] = cloneableTags[setTag] = + cloneableTags[stringTag] = cloneableTags[symbolTag] = + cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = + cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; + cloneableTags[errorTag] = cloneableTags[funcTag] = + cloneableTags[weakMapTag] = false; + + /** Used to map Latin Unicode letters to basic Latin letters. */ + var deburredLetters = { + // Latin-1 Supplement block. + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss', + // Latin Extended-A block. + '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', + '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', + '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', + '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', + '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', + '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', + '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', + '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', + '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', + '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', + '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', + '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', + '\u0134': 'J', '\u0135': 'j', + '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', + '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', + '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', + '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', + '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', + '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', + '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', + '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', + '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', + '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', + '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', + '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', + '\u0163': 't', '\u0165': 't', '\u0167': 't', + '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', + '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', + '\u0174': 'W', '\u0175': 'w', + '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', + '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', + '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', + '\u0132': 'IJ', '\u0133': 'ij', + '\u0152': 'Oe', '\u0153': 'oe', + '\u0149': "'n", '\u017f': 's' + }; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }; + + /** Used to map HTML entities to characters. */ + var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" + }; + + /** Used to escape characters for inclusion in compiled string literals. */ + var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; + + /** Built-in method references without a dependency on `root`. */ + var freeParseFloat = parseFloat, + freeParseInt = parseInt; + + /** Detect free variable `global` from Node.js. */ + var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; + + /** Detect free variable `self`. */ + var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + + /** Used as a reference to the global object. */ + var root = freeGlobal || freeSelf || Function('return this')(); + + /** Detect free variable `exports`. */ + var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + + /** Detect free variable `module`. */ + var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + + /** Detect the popular CommonJS extension `module.exports`. */ + var moduleExports = freeModule && freeModule.exports === freeExports; + + /** Detect free variable `process` from Node.js. */ + var freeProcess = moduleExports && freeGlobal.process; + + /** Used to access faster Node.js helpers. */ + var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; + + if (types) { + return types; + } + + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} + }()); + + /* Node.js helper references. */ + var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, + nodeIsDate = nodeUtil && nodeUtil.isDate, + nodeIsMap = nodeUtil && nodeUtil.isMap, + nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, + nodeIsSet = nodeUtil && nodeUtil.isSet, + nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; + + /*--------------------------------------------------------------------------*/ + + /** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ + function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); + } + return func.apply(thisArg, args); + } + + /** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; + } + + /** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.forEachRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEachRight(array, iteratee) { + var length = array == null ? 0 : array.length; + + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.every` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ + function arrayEvery(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; + } + + /** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * A specialized version of `_.includes` for arrays without support for + * specifying an index to search from. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludes(array, value) { + var length = array == null ? 0 : array.length; + return !!length && baseIndexOf(array, value, 0) > -1; + } + + /** + * This function is like `arrayIncludes` except that it accepts a comparator. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @param {Function} comparator The comparator invoked per element. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludesWith(array, value, comparator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (comparator(value, array[index])) { + return true; + } + } + return false; + } + + /** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; + } + + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; + } + return array; + } + + /** + * A specialized version of `_.reduce` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the first element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduce(array, iteratee, accumulator, initAccum) { + var index = -1, + length = array == null ? 0 : array.length; + + if (initAccum && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; + } + + /** + * A specialized version of `_.reduceRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the last element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduceRight(array, iteratee, accumulator, initAccum) { + var length = array == null ? 0 : array.length; + if (initAccum && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); + } + return accumulator; + } + + /** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } + } + return false; + } + + /** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + var asciiSize = baseProperty('length'); + + /** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function asciiToArray(string) { + return string.split(''); + } + + /** + * Splits an ASCII `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function asciiWords(string) { + return string.match(reAsciiWord) || []; + } + + /** + * The base implementation of methods like `_.findKey` and `_.findLastKey`, + * without support for iteratee shorthands, which iterates over `collection` + * using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the found element or its key, else `undefined`. + */ + function baseFindKey(collection, predicate, eachFunc) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = key; + return false; + } + }); + return result; + } + + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); + } + + /** + * This function is like `baseIndexOf` except that it accepts a comparator. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @param {Function} comparator The comparator invoked per element. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOfWith(array, value, fromIndex, comparator) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (comparator(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ + function baseIsNaN(value) { + return value !== value; + } + + /** + * The base implementation of `_.mean` and `_.meanBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the mean. + */ + function baseMean(array, iteratee) { + var length = array == null ? 0 : array.length; + return length ? (baseSum(array, iteratee) / length) : NAN; + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ + function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; + } + + /** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); + } + } + return result; + } + + /** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ + function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); + + while (++index < n) { + result[index] = iteratee(index); + } + return result; + } + + /** + * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array + * of key-value pairs for `object` corresponding to the property names of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the key-value pairs. + */ + function baseToPairs(object, props) { + return arrayMap(props, function(key) { + return [key, object[key]]; + }); + } + + /** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ + function baseUnary(func) { + return function(value) { + return func(value); + }; + } + + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); + } + + /** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function cacheHas(cache, key) { + return cache.has(key); + } + + /** + * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the first unmatched string symbol. + */ + function charsStartIndex(strSymbols, chrSymbols) { + var index = -1, + length = strSymbols.length; + + while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ + function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; + + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Gets the number of `placeholder` occurrences in `array`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} placeholder The placeholder to search for. + * @returns {number} Returns the placeholder count. + */ + function countHolders(array, placeholder) { + var length = array.length, + result = 0; + + while (length--) { + if (array[length] === placeholder) { + ++result; + } + } + return result; + } + + /** + * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A + * letters to basic Latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ + var deburrLetter = basePropertyOf(deburredLetters); + + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + var escapeHtmlChar = basePropertyOf(htmlEscapes); + + /** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; + } + + /** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function getValue(object, key) { + return object == null ? undefined : object[key]; + } + + /** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ + function hasUnicode(string) { + return reHasUnicode.test(string); + } + + /** + * Checks if `string` contains a word composed of Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a word is found, else `false`. + */ + function hasUnicodeWord(string) { + return reHasUnicodeWord.test(string); + } + + /** + * Converts `iterator` to an array. + * + * @private + * @param {Object} iterator The iterator to convert. + * @returns {Array} Returns the converted array. + */ + function iteratorToArray(iterator) { + var data, + result = []; + + while (!(data = iterator.next()).done) { + result.push(data.value); + } + return result; + } + + /** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ + function mapToArray(map) { + var index = -1, + result = Array(map.size); + + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; + } + + /** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; + } + + /** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ + function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value === placeholder || value === PLACEHOLDER) { + array[index] = PLACEHOLDER; + result[resIndex++] = index; + } + } + return result; + } + + /** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ + function setToArray(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = value; + }); + return result; + } + + /** + * Converts `set` to its value-value pairs. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the value-value pairs. + */ + function setToPairs(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = [value, value]; + }); + return result; + } + + /** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; + } + + /** + * A specialized version of `_.lastIndexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictLastIndexOf(array, value, fromIndex) { + var index = fromIndex + 1; + while (index--) { + if (array[index] === value) { + return index; + } + } + return index; + } + + /** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ + function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); + } + + /** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); + } + + /** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ + var unescapeHtmlChar = basePropertyOf(htmlUnescapes); + + /** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; + } + return result; + } + + /** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function unicodeToArray(string) { + return string.match(reUnicode) || []; + } + + /** + * Splits a Unicode `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function unicodeWords(string) { + return string.match(reUnicodeWord) || []; + } + + /*--------------------------------------------------------------------------*/ + + /** + * Create a new pristine `lodash` function using the `context` object. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Util + * @param {Object} [context=root] The context object. + * @returns {Function} Returns a new `lodash` function. + * @example + * + * _.mixin({ 'foo': _.constant('foo') }); + * + * var lodash = _.runInContext(); + * lodash.mixin({ 'bar': lodash.constant('bar') }); + * + * _.isFunction(_.foo); + * // => true + * _.isFunction(_.bar); + * // => false + * + * lodash.isFunction(lodash.foo); + * // => false + * lodash.isFunction(lodash.bar); + * // => true + * + * // Create a suped-up `defer` in Node.js. + * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; + */ + var runInContext = (function runInContext(context) { + context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps)); + + /** Built-in constructor references. */ + var Array = context.Array, + Date = context.Date, + Error = context.Error, + Function = context.Function, + Math = context.Math, + Object = context.Object, + RegExp = context.RegExp, + String = context.String, + TypeError = context.TypeError; + + /** Used for built-in method references. */ + var arrayProto = Array.prototype, + funcProto = Function.prototype, + objectProto = Object.prototype; + + /** Used to detect overreaching core-js shims. */ + var coreJsData = context['__core-js_shared__']; + + /** Used to resolve the decompiled source of functions. */ + var funcToString = funcProto.toString; + + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; + + /** Used to generate unique IDs. */ + var idCounter = 0; + + /** Used to detect methods masquerading as native. */ + var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; + }()); + + /** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ + var nativeObjectToString = objectProto.toString; + + /** Used to infer the `Object` constructor. */ + var objectCtorString = funcToString.call(Object); + + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Used to detect if a method is native. */ + var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' + ); + + /** Built-in value references. */ + var Buffer = moduleExports ? context.Buffer : undefined, + Symbol = context.Symbol, + Uint8Array = context.Uint8Array, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined, + getPrototype = overArg(Object.getPrototypeOf, Object), + objectCreate = Object.create, + propertyIsEnumerable = objectProto.propertyIsEnumerable, + splice = arrayProto.splice, + spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined, + symIterator = Symbol ? Symbol.iterator : undefined, + symToStringTag = Symbol ? Symbol.toStringTag : undefined; + + var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} + }()); + + /** Mocked built-ins. */ + var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, + ctxNow = Date && Date.now !== root.Date.now && Date.now, + ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout; + + /* Built-in method references for those with the same name as other `lodash` methods. */ + var nativeCeil = Math.ceil, + nativeFloor = Math.floor, + nativeGetSymbols = Object.getOwnPropertySymbols, + nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined, + nativeIsFinite = context.isFinite, + nativeJoin = arrayProto.join, + nativeKeys = overArg(Object.keys, Object), + nativeMax = Math.max, + nativeMin = Math.min, + nativeNow = Date.now, + nativeParseInt = context.parseInt, + nativeRandom = Math.random, + nativeReverse = arrayProto.reverse; + + /* Built-in method references that are verified to be native. */ + var DataView = getNative(context, 'DataView'), + Map = getNative(context, 'Map'), + Promise = getNative(context, 'Promise'), + Set = getNative(context, 'Set'), + WeakMap = getNative(context, 'WeakMap'), + nativeCreate = getNative(Object, 'create'); + + /** Used to store function metadata. */ + var metaMap = WeakMap && new WeakMap; + + /** Used to lookup unminified function names. */ + var realNames = {}; + + /** Used to detect maps, sets, and weakmaps. */ + var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); + + /** Used to convert symbols to primitives and strings. */ + var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. + * + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. + * + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ + function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } + } + return new LodashWrapper(value); + } + + /** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ + var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; + } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; + }()); + + /** + * The function whose prototype chain sequence wrappers inherit from. + * + * @private + */ + function baseLodash() { + // No operation performed. + } + + /** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ + function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; + } + + /** + * By default, the template delimiters used by lodash are like those in + * embedded Ruby (ERB) as well as ES2015 template strings. Change the + * following template settings to use alternative delimiters. + * + * @static + * @memberOf _ + * @type {Object} + */ + lodash.templateSettings = { + + /** + * Used to detect `data` property values to be HTML-escaped. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'escape': reEscape, + + /** + * Used to detect code to be evaluated. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'evaluate': reEvaluate, + + /** + * Used to detect `data` property values to inject. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'interpolate': reInterpolate, + + /** + * Used to reference the data object in the template text. + * + * @memberOf _.templateSettings + * @type {string} + */ + 'variable': '', + + /** + * Used to import variables into the compiled template. + * + * @memberOf _.templateSettings + * @type {Object} + */ + 'imports': { + + /** + * A reference to the `lodash` function. + * + * @memberOf _.templateSettings.imports + * @type {Function} + */ + '_': lodash + } + }; + + // Ensure wrappers are instances of `baseLodash`. + lodash.prototype = baseLodash.prototype; + lodash.prototype.constructor = lodash; + + LodashWrapper.prototype = baseCreate(baseLodash.prototype); + LodashWrapper.prototype.constructor = LodashWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @constructor + * @param {*} value The value to wrap. + */ + function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; + } + + /** + * Creates a clone of the lazy wrapper object. + * + * @private + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. + */ + function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = copyArray(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = copyArray(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = copyArray(this.__views__); + return result; + } + + /** + * Reverses the direction of lazy iteration. + * + * @private + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. + */ + function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; + } + + /** + * Extracts the unwrapped value from its lazy wrapper. + * + * @private + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. + */ + function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); + + if (!isArr || (!isRight && arrLength == length && takeCount == length)) { + return baseWrapperValue(array, this.__actions__); + } + var result = []; + + outer: + while (length-- && resIndex < takeCount) { + index += dir; + + var iterIndex = -1, + value = array[index]; + + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } + } + } + result[resIndex++] = value; + } + return result; + } + + // Ensure `LazyWrapper` is an instance of `baseLodash`. + LazyWrapper.prototype = baseCreate(baseLodash.prototype); + LazyWrapper.prototype.constructor = LazyWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a hash object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the hash. + * + * @private + * @name clear + * @memberOf Hash + */ + function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; + } + + /** + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; + } + return hasOwnProperty.call(data, key) ? data[key] : undefined; + } + + /** + * Checks if a hash value for `key` exists. + * + * @private + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); + } + + /** + * Sets the hash `key` to `value`. + * + * @private + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. + */ + function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; + } + + // Add methods to `Hash`. + Hash.prototype.clear = hashClear; + Hash.prototype['delete'] = hashDelete; + Hash.prototype.get = hashGet; + Hash.prototype.has = hashHas; + Hash.prototype.set = hashSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an list cache object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the list cache. + * + * @private + * @name clear + * @memberOf ListCache + */ + function listCacheClear() { + this.__data__ = []; + this.size = 0; + } + + /** + * Removes `key` and its value from the list cache. + * + * @private + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + return false; + } + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; + } + + /** + * Gets the list cache value for `key`. + * + * @private + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; + } + + /** + * Checks if a list cache value for `key` exists. + * + * @private + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; + } + + /** + * Sets the list cache `key` to `value`. + * + * @private + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. + */ + function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; + } + + // Add methods to `ListCache`. + ListCache.prototype.clear = listCacheClear; + ListCache.prototype['delete'] = listCacheDelete; + ListCache.prototype.get = listCacheGet; + ListCache.prototype.has = listCacheHas; + ListCache.prototype.set = listCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a map cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the map. + * + * @private + * @name clear + * @memberOf MapCache + */ + function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; + } + + /** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the map value for `key`. + * + * @private + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function mapCacheGet(key) { + return getMapData(this, key).get(key); + } + + /** + * Checks if a map value for `key` exists. + * + * @private + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function mapCacheHas(key) { + return getMapData(this, key).has(key); + } + + /** + * Sets the map `key` to `value`. + * + * @private + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. + */ + function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; + + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; + } + + // Add methods to `MapCache`. + MapCache.prototype.clear = mapCacheClear; + MapCache.prototype['delete'] = mapCacheDelete; + MapCache.prototype.get = mapCacheGet; + MapCache.prototype.has = mapCacheHas; + MapCache.prototype.set = mapCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * + * Creates an array cache object to store unique values. + * + * @private + * @constructor + * @param {Array} [values] The values to cache. + */ + function SetCache(values) { + var index = -1, + length = values == null ? 0 : values.length; + + this.__data__ = new MapCache; + while (++index < length) { + this.add(values[index]); + } + } + + /** + * Adds `value` to the array cache. + * + * @private + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. + */ + function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; + } + + /** + * Checks if `value` is in the array cache. + * + * @private + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. + */ + function setCacheHas(value) { + return this.__data__.has(value); + } + + // Add methods to `SetCache`. + SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; + SetCache.prototype.has = setCacheHas; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a stack cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; + } + + /** + * Removes all key-value entries from the stack. + * + * @private + * @name clear + * @memberOf Stack + */ + function stackClear() { + this.__data__ = new ListCache; + this.size = 0; + } + + /** + * Removes `key` and its value from the stack. + * + * @private + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); + + this.size = data.size; + return result; + } + + /** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function stackGet(key) { + return this.__data__.get(key); + } + + /** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function stackHas(key) { + return this.__data__.has(key); + } + + /** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ + function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; + } + + // Add methods to `Stack`. + Stack.prototype.clear = stackClear; + Stack.prototype['delete'] = stackDelete; + Stack.prototype.get = stackGet; + Stack.prototype.has = stackHas; + Stack.prototype.set = stackSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ + function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; + + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); + } + } + return result; + } + + /** + * A specialized version of `_.sample` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @returns {*} Returns the random element. + */ + function arraySample(array) { + var length = array.length; + return length ? array[baseRandom(0, length - 1)] : undefined; + } + + /** + * A specialized version of `_.sampleSize` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function arraySampleSize(array, n) { + return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); + } + + /** + * A specialized version of `_.shuffle` for arrays. + * + * @private + * @param {Array} array The array to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function arrayShuffle(array) { + return shuffleSelf(copyArray(array)); + } + + /** + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Gets the index at which the `key` is found in `array` of key-value pairs. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; + } + + /** + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); + } + + /** + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); + } + + /** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } + } + + /** + * The base implementation of `_.at` without support for individual paths. + * + * @private + * @param {Object} object The object to iterate over. + * @param {string[]} paths The property paths to pick. + * @returns {Array} Returns the picked elements. + */ + function baseAt(object, paths) { + var index = -1, + length = paths.length, + result = Array(length), + skip = object == null; + + while (++index < length) { + result[index] = skip ? undefined : get(object, paths[index]); + } + return result; + } + + /** + * The base implementation of `_.clamp` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + */ + function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; + } + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; + } + + /** + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. + */ + function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); + } + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; + + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + } else if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + return result; + } + + /** + * The base implementation of `_.conforms` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + */ + function baseConforms(source) { + var props = keys(source); + return function(object) { + return baseConformsTo(object, source, props); + }; + } + + /** + * The base implementation of `_.conformsTo` which accepts `props` to check. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + */ + function baseConformsTo(object, source, props) { + var length = props.length; + if (object == null) { + return !length; + } + object = Object(object); + while (length--) { + var key = props[length], + predicate = source[key], + value = object[key]; + + if ((value === undefined && !(key in object)) || !predicate(value)) { + return false; + } + } + return true; + } + + /** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + */ + function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; + + if (!length) { + return result; + } + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); + } + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; + } + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.forEach` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEach = createBaseEach(baseForOwn); + + /** + * The base implementation of `_.forEachRight` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEachRight = createBaseEach(baseForOwnRight, true); + + /** + * The base implementation of `_.every` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; + } + + /** + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. + */ + function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; + } + + /** + * The base implementation of `_.fill` without an iteratee call guard. + * + * @private + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + */ + function baseFill(array, value, start, end) { + var length = array.length; + + start = toInteger(start); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : toInteger(end); + if (end < 0) { + end += length; + } + end = start > end ? 0 : toLength(end); + while (start < end) { + array[start++] = value; + } + return array; + } + + /** + * The base implementation of `_.filter` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } + + /** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; + } + + /** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseFor = createBaseFor(); + + /** + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseForRight = createBaseFor(true); + + /** + * The base implementation of `_.forOwn` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); + } + + /** + * The base implementation of `_.forOwnRight` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwnRight(object, iteratee) { + return object && baseForRight(object, iteratee, keys); + } + + /** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. + */ + function baseFunctions(object, props) { + return arrayFilter(props, function(key) { + return isFunction(object[key]); + }); + } + + /** + * The base implementation of `_.get` without support for default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. + */ + function baseGet(object, path) { + path = castPath(path, object); + + var index = 0, + length = path.length; + + while (object != null && index < length) { + object = object[toKey(path[index++])]; + } + return (index && index == length) ? object : undefined; + } + + /** + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. + */ + function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); + } + + /** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; + } + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); + } + + /** + * The base implementation of `_.gt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + */ + function baseGt(value, other) { + return value > other; + } + + /** + * The base implementation of `_.has` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); + } + + /** + * The base implementation of `_.hasIn` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHasIn(object, key) { + return object != null && key in Object(object); + } + + /** + * The base implementation of `_.inRange` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to check. + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + */ + function baseInRange(number, start, end) { + return number >= nativeMin(start, end) && number < nativeMax(start, end); + } + + /** + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. + */ + function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, + result = []; + + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); + } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; + } + array = arrays[0]; + + var index = -1, + seen = caches[0]; + + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.invert` and `_.invertBy` which inverts + * `object` with values transformed by `iteratee` and set by `setter`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform values. + * @param {Object} accumulator The initial inverted object. + * @returns {Function} Returns `accumulator`. + */ + function baseInverter(object, setter, iteratee, accumulator) { + baseForOwn(object, function(value, key, object) { + setter(accumulator, iteratee(value), key, object); + }); + return accumulator; + } + + /** + * The base implementation of `_.invoke` without support for individual + * method arguments. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + */ + function baseInvoke(object, path, args) { + path = castPath(path, object); + object = parent(object, path); + var func = object == null ? object : object[toKey(last(path))]; + return func == null ? undefined : apply(func, object, args); + } + + /** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ + function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; + } + + /** + * The base implementation of `_.isArrayBuffer` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + */ + function baseIsArrayBuffer(value) { + return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; + } + + /** + * The base implementation of `_.isDate` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + */ + function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; + } + + /** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ + function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); + } + + /** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; + } + objIsArr = true; + objIsObj = false; + } + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + } + } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); + } + + /** + * The base implementation of `_.isMap` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + */ + function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; + } + + /** + * The base implementation of `_.isMatch` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + */ + function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; + } + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } + } + return true; + } + + /** + * The base implementation of `_.isNative` without bad shim checks. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + */ + function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; + } + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); + } + + /** + * The base implementation of `_.isRegExp` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + */ + function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; + } + + /** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ + function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; + } + + /** + * The base implementation of `_.isTypedArray` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ + function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; + } + + /** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ + function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; + } + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); + } + + /** + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); + } + var isProto = isPrototype(object), + result = []; + + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.lt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + */ + function baseLt(value, other) { + return value < other; + } + + /** + * The base implementation of `_.map` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); + } + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; + } + + /** + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; + } + + /** + * The base implementation of `_.merge` without support for multiple sources. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + stack || (stack = new Stack); + if (isObject(srcValue)) { + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; + + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); + } + + /** + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); + + if (stacked) { + assignMergeValue(object, key, stacked); + return; + } + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || isFunction(objValue)) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); + } + + /** + * The base implementation of `_.nth` which doesn't coerce arguments. + * + * @private + * @param {Array} array The array to query. + * @param {number} n The index of the element to return. + * @returns {*} Returns the nth element of `array`. + */ + function baseNth(array, n) { + var length = array.length; + if (!length) { + return; + } + n += n < 0 ? length : 0; + return isIndex(n, length) ? array[n] : undefined; + } + + /** + * The base implementation of `_.orderBy` without param guards. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. + */ + function baseOrderBy(collection, iteratees, orders) { + if (iteratees.length) { + iteratees = arrayMap(iteratees, function(iteratee) { + if (isArray(iteratee)) { + return function(value) { + return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); + } + } + return iteratee; + }); + } else { + iteratees = [identity]; + } + + var index = -1; + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); + } + + /** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ + function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); + } + + /** + * The base implementation of `_.pickBy` without support for iteratee shorthands. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. + */ + function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); + + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } + } + return result; + } + + /** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); + }; + } + + /** + * The base implementation of `_.pullAllBy` without support for iteratee + * shorthands. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + */ + function basePullAll(array, values, iteratee, comparator) { + var indexOf = comparator ? baseIndexOfWith : baseIndexOf, + index = -1, + length = values.length, + seen = array; + + if (array === values) { + values = copyArray(values); + } + if (iteratee) { + seen = arrayMap(array, baseUnary(iteratee)); + } + while (++index < length) { + var fromIndex = 0, + value = values[index], + computed = iteratee ? iteratee(value) : value; + + while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { + if (seen !== array) { + splice.call(seen, fromIndex, 1); + } + splice.call(array, fromIndex, 1); + } + } + return array; + } + + /** + * The base implementation of `_.pullAt` without support for individual + * indexes or capturing the removed elements. + * + * @private + * @param {Array} array The array to modify. + * @param {number[]} indexes The indexes of elements to remove. + * @returns {Array} Returns `array`. + */ + function basePullAt(array, indexes) { + var length = array ? indexes.length : 0, + lastIndex = length - 1; + + while (length--) { + var index = indexes[length]; + if (length == lastIndex || index !== previous) { + var previous = index; + if (isIndex(index)) { + splice.call(array, index, 1); + } else { + baseUnset(array, index); + } + } + } + return array; + } + + /** + * The base implementation of `_.random` without support for returning + * floating-point numbers. + * + * @private + * @param {number} lower The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the random number. + */ + function baseRandom(lower, upper) { + return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); + } + + /** + * The base implementation of `_.range` and `_.rangeRight` which doesn't + * coerce arguments. + * + * @private + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @param {number} step The value to increment or decrement by. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the range of numbers. + */ + function baseRange(start, end, step, fromRight) { + var index = -1, + length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), + result = Array(length); + + while (length--) { + result[fromRight ? length : ++index] = start; + start += step; + } + return result; + } + + /** + * The base implementation of `_.repeat` which doesn't coerce arguments. + * + * @private + * @param {string} string The string to repeat. + * @param {number} n The number of times to repeat the string. + * @returns {string} Returns the repeated string. + */ + function baseRepeat(string, n) { + var result = ''; + if (!string || n < 1 || n > MAX_SAFE_INTEGER) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + if (n) { + string += string; + } + } while (n); + + return result; + } + + /** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ + function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); + } + + /** + * The base implementation of `_.sample`. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + */ + function baseSample(collection) { + return arraySample(values(collection)); + } + + /** + * The base implementation of `_.sampleSize` without param guards. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function baseSampleSize(collection, n) { + var array = values(collection); + return shuffleSelf(array, baseClamp(n, 0, array.length)); + } + + /** + * The base implementation of `_.set`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); + + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; + + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; + + if (key === '__proto__' || key === 'constructor' || key === 'prototype') { + return object; + } + + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } + } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; + } + + /** + * The base implementation of `setData` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; + }; + + /** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); + }; + + /** + * The base implementation of `_.shuffle`. + * + * @private + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function baseShuffle(collection) { + return shuffleSelf(values(collection)); + } + + /** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; + } + + /** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which + * performs a binary search of `array` to determine the index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndex(array, value, retHighest) { + var low = 0, + high = array == null ? low : array.length; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if (computed !== null && !isSymbol(computed) && + (retHighest ? (computed <= value) : (computed < value))) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return baseSortedIndexBy(array, value, identity, retHighest); + } + + /** + * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` + * which invokes `iteratee` for `value` and each element of `array` to compute + * their sort ranking. The iteratee is invoked with one argument; (value). + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} iteratee The iteratee invoked per element. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndexBy(array, value, iteratee, retHighest) { + var low = 0, + high = array == null ? 0 : array.length; + if (high === 0) { + return 0; + } + + value = iteratee(value); + var valIsNaN = value !== value, + valIsNull = value === null, + valIsSymbol = isSymbol(value), + valIsUndefined = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + othIsDefined = computed !== undefined, + othIsNull = computed === null, + othIsReflexive = computed === computed, + othIsSymbol = isSymbol(computed); + + if (valIsNaN) { + var setLow = retHighest || othIsReflexive; + } else if (valIsUndefined) { + setLow = othIsReflexive && (retHighest || othIsDefined); + } else if (valIsNull) { + setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); + } else if (valIsSymbol) { + setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); + } else if (othIsNull || othIsSymbol) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); + } + + /** + * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseSortedUniq(array, iteratee) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + if (!index || !eq(computed, seen)) { + var seen = computed; + result[resIndex++] = value === 0 ? 0 : value; + } + } + return result; + } + + /** + * The base implementation of `_.toNumber` which doesn't ensure correct + * conversions of binary, hexadecimal, or octal string values. + * + * @private + * @param {*} value The value to process. + * @returns {number} Returns the number. + */ + function baseToNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + return +value; + } + + /** + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ + function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; + } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * The base implementation of `_.uniqBy` without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseUniq(array, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + length = array.length, + isCommon = true, + result = [], + seen = result; + + if (comparator) { + isCommon = false; + includes = arrayIncludesWith; + } + else if (length >= LARGE_ARRAY_SIZE) { + var set = iteratee ? null : createSet(array); + if (set) { + return setToArray(set); + } + isCommon = false; + includes = cacheHas; + seen = new SetCache; + } + else { + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (!includes(seen, computed, comparator)) { + if (seen !== result) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ + function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; + } + + /** + * The base implementation of `_.update`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to update. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseUpdate(object, path, updater, customizer) { + return baseSet(object, path, updater(baseGet(object, path)), customizer); + } + + /** + * The base implementation of methods like `_.dropWhile` and `_.takeWhile` + * without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the slice of `array`. + */ + function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && + predicate(array[index], index, array)) {} + + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); + } + + /** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ + function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); + } + return arrayReduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); + } + + /** + * The base implementation of methods like `_.xor`, without support for + * iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. + */ + function baseXor(arrays, iteratee, comparator) { + var length = arrays.length; + if (length < 2) { + return length ? baseUniq(arrays[0]) : []; + } + var index = -1, + result = Array(length); + + while (++index < length) { + var array = arrays[index], + othIndex = -1; + + while (++othIndex < length) { + if (othIndex != index) { + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); + } + } + } + return baseUniq(baseFlatten(result, 1), iteratee, comparator); + } + + /** + * This base implementation of `_.zipObject` which assigns values using `assignFunc`. + * + * @private + * @param {Array} props The property identifiers. + * @param {Array} values The property values. + * @param {Function} assignFunc The function to assign values. + * @returns {Object} Returns the new object. + */ + function baseZipObject(props, values, assignFunc) { + var index = -1, + length = props.length, + valsLength = values.length, + result = {}; + + while (++index < length) { + var value = index < valsLength ? values[index] : undefined; + assignFunc(result, props[index], value); + } + return result; + } + + /** + * Casts `value` to an empty array if it's not an array like object. + * + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. + */ + function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; + } + + /** + * Casts `value` to `identity` if it's not a function. + * + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. + */ + function castFunction(value) { + return typeof value == 'function' ? value : identity; + } + + /** + * Casts `value` to a path array if it's not one. + * + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. + */ + function castPath(value, object) { + if (isArray(value)) { + return value; + } + return isKey(value, object) ? [value] : stringToPath(toString(value)); + } + + /** + * A `baseRest` alias which can be replaced with `identity` by module + * replacement plugins. + * + * @private + * @type {Function} + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + var castRest = baseRest; + + /** + * Casts `array` to a slice if it's needed. + * + * @private + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. + */ + function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); + } + + /** + * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout). + * + * @private + * @param {number|Object} id The timer id or timeout object of the timer to clear. + */ + var clearTimeout = ctxClearTimeout || function(id) { + return root.clearTimeout(id); + }; + + /** + * Creates a clone of `buffer`. + * + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. + */ + function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); + } + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + + buffer.copy(result); + return result; + } + + /** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ + function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; + } + + /** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ + function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); + } + + /** + * Creates a clone of `regexp`. + * + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. + */ + function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; + } + + /** + * Creates a clone of the `symbol` object. + * + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ + function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; + } + + /** + * Creates a clone of `typedArray`. + * + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ + function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); + } + + /** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ + function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; + } + + /** + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ + function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; + } + + /** + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgs(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersLength = holders.length, + leftIndex = -1, + leftLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(leftLength + rangeLength), + isUncurried = !isCurried; + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + } + while (rangeLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; + } + + /** + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgsRight(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersIndex = -1, + holdersLength = holders.length, + rightIndex = -1, + rightLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(rangeLength + rightLength), + isUncurried = !isCurried; + + while (++argsIndex < rangeLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + } + return result; + } + + /** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ + function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; + } + + /** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ + function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; + } + + /** + * Copies own symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); + } + + /** + * Copies own and inherited symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); + } + + /** + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. + */ + function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, getIteratee(iteratee, 2), accumulator); + }; + } + + /** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ + function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; + + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); + } + + /** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; + } + + /** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; + } + + /** + * Creates a function that wraps `func` to invoke it with the optional `this` + * binding of `thisArg`. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createBind(func, bitmask, thisArg) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, arguments); + } + return wrapper; + } + + /** + * Creates a function like `_.lowerFirst`. + * + * @private + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. + */ + function createCaseFirst(methodName) { + return function(string) { + string = toString(string); + + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; + + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); + + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; + } + + /** + * Creates a function like `_.camelCase`. + * + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. + */ + function createCompounder(callback) { + return function(string) { + return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); + }; + } + + /** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ + function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; + } + + /** + * Creates a function that wraps `func` to enable currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {number} arity The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createCurry(func, bitmask, arity) { + var Ctor = createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length, + placeholder = getHolder(wrapper); + + while (index--) { + args[index] = arguments[index]; + } + var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) + ? [] + : replaceHolders(args, placeholder); + + length -= holders.length; + if (length < arity) { + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, undefined, + args, holders, undefined, undefined, arity - length); + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return apply(fn, this, args); + } + return wrapper; + } + + /** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. + */ + function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = getIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; + } + + /** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ + function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; + + if (fromRight) { + funcs.reverse(); + } + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); + } + + /** + * Creates a function that wraps `func` to invoke it with optional `this` + * binding of `thisArg`, partial application, and currying. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided + * to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & WRAP_ARY_FLAG, + isBind = bitmask & WRAP_BIND_FLAG, + isBindKey = bitmask & WRAP_BIND_KEY_FLAG, + isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), + isFlip = bitmask & WRAP_FLIP_FLAG, + Ctor = isBindKey ? undefined : createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length; + + while (index--) { + args[index] = arguments[index]; + } + if (isCurried) { + var placeholder = getHolder(wrapper), + holdersCount = countHolders(args, placeholder); + } + if (partials) { + args = composeArgs(args, partials, holders, isCurried); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight, isCurried); + } + length -= holdersCount; + if (isCurried && length < arity) { + var newHolders = replaceHolders(args, placeholder); + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, thisArg, + args, newHolders, argPos, ary, arity - length + ); + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + length = args.length; + if (argPos) { + args = reorder(args, argPos); + } else if (isFlip && length > 1) { + args.reverse(); + } + if (isAry && ary < length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtor(fn); + } + return fn.apply(thisBinding, args); + } + return wrapper; + } + + /** + * Creates a function like `_.invertBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} toIteratee The function to resolve iteratees. + * @returns {Function} Returns the new inverter function. + */ + function createInverter(setter, toIteratee) { + return function(object, iteratee) { + return baseInverter(object, setter, toIteratee(iteratee), {}); + }; + } + + /** + * Creates a function that performs a mathematical operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @param {number} [defaultValue] The value used for `undefined` arguments. + * @returns {Function} Returns the new mathematical operation function. + */ + function createMathOperation(operator, defaultValue) { + return function(value, other) { + var result; + if (value === undefined && other === undefined) { + return defaultValue; + } + if (value !== undefined) { + result = value; + } + if (other !== undefined) { + if (result === undefined) { + return other; + } + if (typeof value == 'string' || typeof other == 'string') { + value = baseToString(value); + other = baseToString(other); + } else { + value = baseToNumber(value); + other = baseToNumber(other); + } + result = operator(value, other); + } + return result; + }; + } + + /** + * Creates a function like `_.over`. + * + * @private + * @param {Function} arrayFunc The function to iterate over iteratees. + * @returns {Function} Returns the new over function. + */ + function createOver(arrayFunc) { + return flatRest(function(iteratees) { + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + return baseRest(function(args) { + var thisArg = this; + return arrayFunc(iteratees, function(iteratee) { + return apply(iteratee, thisArg, args); + }); + }); + }); + } + + /** + * Creates the padding for `string` based on `length`. The `chars` string + * is truncated if the number of characters exceeds `length`. + * + * @private + * @param {number} length The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padding for `string`. + */ + function createPadding(length, chars) { + chars = chars === undefined ? ' ' : baseToString(chars); + + var charsLength = chars.length; + if (charsLength < 2) { + return charsLength ? baseRepeat(chars, length) : chars; + } + var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); + return hasUnicode(chars) + ? castSlice(stringToArray(result), 0, length).join('') + : result.slice(0, length); + } + + /** + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. + */ + function createPartial(func, bitmask, thisArg, partials) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return apply(fn, isBind ? thisArg : this, args); + } + return wrapper; + } + + /** + * Creates a `_.range` or `_.rangeRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new range function. + */ + function createRange(fromRight) { + return function(start, end, step) { + if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { + end = step = undefined; + } + // Ensure the sign of `-0` is preserved. + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); + return baseRange(start, end, step, fromRight); + }; + } + + /** + * Creates a function that performs a relational operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @returns {Function} Returns the new relational operation function. + */ + function createRelationalOperation(operator) { + return function(value, other) { + if (!(typeof value == 'string' && typeof other == 'string')) { + value = toNumber(value); + other = toNumber(other); + } + return operator(value, other); + }; + } + + /** + * Creates a function that wraps `func` to continue currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {Function} wrapFunc The function to create the `func` wrapper. + * @param {*} placeholder The placeholder value. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { + var isCurry = bitmask & WRAP_CURRY_FLAG, + newHolders = isCurry ? holders : undefined, + newHoldersRight = isCurry ? undefined : holders, + newPartials = isCurry ? partials : undefined, + newPartialsRight = isCurry ? undefined : partials; + + bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); + + if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { + bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); + } + var newData = [ + func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, + newHoldersRight, argPos, ary, arity + ]; + + var result = wrapFunc.apply(undefined, newData); + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return setWrapToString(result, func, bitmask); + } + + /** + * Creates a function like `_.round`. + * + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. + */ + function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + number = toNumber(number); + precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); + if (precision && nativeIsFinite(number)) { + // Shift with exponential notation to avoid floating-point issues. + // See [MDN](https://mdn.io/round#Examples) for more details. + var pair = (toString(number) + 'e').split('e'), + value = func(pair[0] + 'e' + (+pair[1] + precision)); + + pair = (toString(value) + 'e').split('e'); + return +(pair[0] + 'e' + (+pair[1] - precision)); + } + return func(number); + }; + } + + /** + * Creates a set object of `values`. + * + * @private + * @param {Array} values The values to add to the set. + * @returns {Object} Returns the new set. + */ + var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { + return new Set(values); + }; + + /** + * Creates a `_.toPairs` or `_.toPairsIn` function. + * + * @private + * @param {Function} keysFunc The function to get the keys of a given object. + * @returns {Function} Returns the new pairs function. + */ + function createToPairs(keysFunc) { + return function(object) { + var tag = getTag(object); + if (tag == mapTag) { + return mapToArray(object); + } + if (tag == setTag) { + return setToPairs(object); + } + return baseToPairs(object, keysFunc(object)); + }; + } + + /** + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * 512 - `_.flip` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); + arity = arity === undefined ? arity : toInteger(arity); + length -= holders ? holders.length : 0; + + if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func); + + var newData = [ + func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, + argPos, ary, arity + ]; + + if (data) { + mergeData(newData, data); + } + func = newData[0]; + bitmask = newData[1]; + thisArg = newData[2]; + partials = newData[3]; + holders = newData[4]; + arity = newData[9] = newData[9] === undefined + ? (isBindKey ? 0 : func.length) + : nativeMax(newData[9] - length, 0); + + if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { + bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); + } + if (!bitmask || bitmask == WRAP_BIND_FLAG) { + var result = createBind(func, bitmask, thisArg); + } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { + result = createCurry(func, bitmask, arity); + } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { + result = createPartial(func, bitmask, thisArg, partials); + } else { + result = createHybrid.apply(undefined, newData); + } + var setter = data ? baseSetData : setData; + return setWrapToString(setter(result, newData), func, bitmask); + } + + /** + * Used by `_.defaults` to customize its `_.assignIn` use to assign properties + * of source objects to the destination object for all destination properties + * that resolve to `undefined`. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to assign. + * @param {Object} object The parent object of `objValue`. + * @returns {*} Returns the value to assign. + */ + function customDefaultsAssignIn(objValue, srcValue, key, object) { + if (objValue === undefined || + (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { + return srcValue; + } + return objValue; + } + + /** + * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source + * objects into destination objects that are passed thru. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to merge. + * @param {Object} object The parent object of `objValue`. + * @param {Object} source The parent object of `srcValue`. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + * @returns {*} Returns the value to assign. + */ + function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { + if (isObject(objValue) && isObject(srcValue)) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, objValue); + baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); + stack['delete'](srcValue); + } + return objValue; + } + + /** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ + function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ + function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Check that cyclic values are equal. + var arrStacked = stack.get(array); + var othStacked = stack.get(other); + if (arrStacked && othStacked) { + return arrStacked == other && othStacked == array; + } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; + + stack.set(array, other); + stack.set(other, array); + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + stack['delete'](array); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; + + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + case mapTag: + var convert = mapToArray; + + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); + + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; + + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; + + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } + } + return false; + } + + /** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + // Check that cyclic values are equal. + var objStacked = stack.get(object); + var othStacked = stack.get(other); + if (objStacked && othStacked) { + return objStacked == other && othStacked == object; + } + var result = true; + stack.set(object, other); + stack.set(other, object); + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); + } + + /** + * Creates an array of own enumerable property names and symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); + } + + /** + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); + } + + /** + * Gets metadata for `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ + var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); + }; + + /** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ + function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; + } + + /** + * Gets the argument placeholder value for `func`. + * + * @private + * @param {Function} func The function to inspect. + * @returns {*} Returns the placeholder value. + */ + function getHolder(func) { + var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func; + return object.placeholder; + } + + /** + * Gets the appropriate "iteratee" function. If `_.iteratee` is customized, + * this function returns the custom method, otherwise it returns `baseIteratee`. + * If arguments are provided, the chosen function is invoked with them and + * its result is returned. + * + * @private + * @param {*} [value] The value to convert to an iteratee. + * @param {number} [arity] The arity of the created iteratee. + * @returns {Function} Returns the chosen function or its result. + */ + function getIteratee() { + var result = lodash.iteratee || iteratee; + result = result === iteratee ? baseIteratee : result; + return arguments.length ? result(arguments[0], arguments[1]) : result; + } + + /** + * Gets the data for `map`. + * + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. + */ + function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; + } + + /** + * Gets the property names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ + function getMatchData(object) { + var result = keys(object), + length = result.length; + + while (length--) { + var key = result[length], + value = object[key]; + + result[length] = [key, value, isStrictComparable(value)]; + } + return result; + } + + /** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ + function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; + } + + /** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. + */ + function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } + } + return result; + } + + /** + * Creates an array of the own enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { + return []; + } + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); + }; + + /** + * Creates an array of the own and inherited enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; + }; + + /** + * Gets the `toStringTag` of `value`. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + var getTag = baseGetTag; + + // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. + if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; + + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } + } + return result; + }; + } + + /** + * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. + */ + function getView(start, end, transforms) { + var index = -1, + length = transforms.length; + + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; + } + } + return { 'start': start, 'end': end }; + } + + /** + * Extracts wrapper details from the `source` body comment. + * + * @private + * @param {string} source The source to inspect. + * @returns {Array} Returns the wrapper details. + */ + function getWrapDetails(source) { + var match = source.match(reWrapDetails); + return match ? match[1].split(reSplitDetails) : []; + } + + /** + * Checks if `path` exists on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + */ + function hasPath(object, path, hasFunc) { + path = castPath(path, object); + + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; + } + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); + } + + /** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ + function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; + } + + /** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; + } + + /** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case dataViewTag: + return cloneDataView(object, isDeep); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); + + case mapTag: + return new Ctor; + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + return cloneRegExp(object); + + case setTag: + return new Ctor; + + case symbolTag: + return cloneSymbol(object); + } + } + + /** + * Inserts wrapper `details` in a comment at the top of the `source` body. + * + * @private + * @param {string} source The source to modify. + * @returns {Array} details The details to insert. + * @returns {string} Returns the modified source. + */ + function insertWrapDetails(source, details) { + var length = details.length; + if (!length) { + return source; + } + var lastIndex = length - 1; + details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; + details = details.join(length > 2 ? ', ' : ' '); + return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); + } + + /** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ + function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); + } + + /** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ + function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); + } + + /** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; + } + + /** + * Checks if `value` is a property name and not a property path. + * + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + */ + function isKey(value, object) { + if (isArray(value)) { + return false; + } + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); + } + + /** + * Checks if `value` is suitable for use as unique object key. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + */ + function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); + } + + /** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. + */ + function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; + + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; + } + + /** + * Checks if `func` has its source masked. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. + */ + function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); + } + + /** + * Checks if `func` is capable of being masked. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `func` is maskable, else `false`. + */ + var isMaskable = coreJsData ? isFunction : stubFalse; + + /** + * Checks if `value` is likely a prototype object. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + */ + function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; + + return value === proto; + } + + /** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ + function isStrictComparable(value) { + return value === value && !isObject(value); + } + + /** + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. + * + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; + } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; + } + + /** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ + function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); + } + return key; + }); + + var cache = result.cache; + return result; + } + + /** + * Merges the function metadata of `source` into `data`. + * + * Merging metadata reduces the number of wrappers used to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and + * `_.rearg` modify function arguments, making the order in which they are + * executed important, preventing the merging of metadata. However, we make + * an exception for a safe combined case where curried functions have `_.ary` + * and or `_.rearg` applied. + * + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. + */ + function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); + + var isCombo = + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || + ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; + } + // Use source `thisArg` if available. + if (srcBitmask & WRAP_BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; + } + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : value; + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = value; + } + // Use source `ary` if it's smaller. + if (srcBitmask & WRAP_ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; + } + + /** + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; + } + + /** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ + function objectToString(value) { + return nativeObjectToString.call(value); + } + + /** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ + function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; + } + + /** + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. + */ + function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); + } + + /** + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. + * + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. + */ + function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = copyArray(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; + } + + /** + * Gets the value at `key`, unless `key` is "__proto__" or "constructor". + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function safeGet(object, key) { + if (key === 'constructor' && typeof object[key] === 'function') { + return; + } + + if (key == '__proto__') { + return; + } + + return object[key]; + } + + /** + * Sets metadata for `func`. + * + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity + * function to avoid garbage collection pauses in V8. See + * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) + * for more details. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var setData = shortOut(baseSetData); + + /** + * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout). + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @returns {number|Object} Returns the timer id or timeout object. + */ + var setTimeout = ctxSetTimeout || function(func, wait) { + return root.setTimeout(func, wait); + }; + + /** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var setToString = shortOut(baseSetToString); + + /** + * Sets the `toString` method of `wrapper` to mimic the source of `reference` + * with wrapper details in a comment at the top of the source body. + * + * @private + * @param {Function} wrapper The function to modify. + * @param {Function} reference The reference function. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Function} Returns `wrapper`. + */ + function setWrapToString(wrapper, reference, bitmask) { + var source = (reference + ''); + return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); + } + + /** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ + function shortOut(func) { + var count = 0, + lastCalled = 0; + + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; + } + + /** + * A specialized version of `_.shuffle` which mutates and sets the size of `array`. + * + * @private + * @param {Array} array The array to shuffle. + * @param {number} [size=array.length] The size of `array`. + * @returns {Array} Returns `array`. + */ + function shuffleSelf(array, size) { + var index = -1, + length = array.length, + lastIndex = length - 1; + + size = size === undefined ? length : size; + while (++index < size) { + var rand = baseRandom(index, lastIndex), + value = array[rand]; + + array[rand] = array[index]; + array[index] = value; + } + array.length = size; + return array; + } + + /** + * Converts `string` to a property path array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. + */ + var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); + } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; + }); + + /** + * Converts `value` to a string key if it's not a string or symbol. + * + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. + */ + function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * Converts `func` to its source code. + * + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. + */ + function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} + } + return ''; + } + + /** + * Updates wrapper `details` based on `bitmask` flags. + * + * @private + * @returns {Array} details The details to modify. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Array} Returns `details`. + */ + function updateWrapDetails(details, bitmask) { + arrayEach(wrapFlags, function(pair) { + var value = '_.' + pair[0]; + if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { + details.push(value); + } + }); + return details.sort(); + } + + /** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ + function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); + } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of elements split into groups the length of `size`. + * If `array` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the new array of chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ + function chunk(array, size, guard) { + if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { + size = 1; + } else { + size = nativeMax(toInteger(size), 0); + } + var length = array == null ? 0 : array.length; + if (!length || size < 1) { + return []; + } + var index = 0, + resIndex = 0, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[resIndex++] = baseSlice(array, index, (index += size)); + } + return result; + } + + /** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ + function compact(array) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + } + + /** + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor + * @example + * + * _.difference([2, 1], [2, 3]); + * // => [1] + */ + var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `iteratee` which + * is invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * **Note:** Unlike `_.pullAllBy`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2] + * + * // The `_.property` iteratee shorthand. + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var differenceBy = baseRest(function(array, values) { + var iteratee = last(values); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `comparator` + * which is invoked to compare elements of `array` to `values`. The order and + * references of result values are determined by the first array. The comparator + * is invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.pullAllWith`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * + * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); + * // => [{ 'x': 2, 'y': 1 }] + */ + var differenceWith = baseRest(function(array, values) { + var comparator = last(values); + if (isArrayLikeObject(comparator)) { + comparator = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) + : []; + }); + + /** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function drop(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function dropRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.dropRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney'] + * + * // The `_.matches` iteratee shorthand. + * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropRightWhile(users, ['active', false]); + * // => objects for ['barney'] + * + * // The `_.property` iteratee shorthand. + * _.dropRightWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true, true) + : []; + } + + /** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.dropWhile(users, function(o) { return !o.active; }); + * // => objects for ['pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.dropWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropWhile(users, ['active', false]); + * // => objects for ['pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.dropWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true) + : []; + } + + /** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8, 10], '*', 1, 3); + * // => [4, '*', '*', 10] + */ + function fill(array, value, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); + } + + /** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 + * + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 + */ + function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, getIteratee(predicate, 3), index); + } + + /** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); + * // => 2 + * + * // The `_.matches` iteratee shorthand. + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastIndex(users, ['active', false]); + * // => 2 + * + * // The `_.property` iteratee shorthand. + * _.findLastIndex(users, 'active'); + * // => 0 + */ + function findLastIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length - 1; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = fromIndex < 0 + ? nativeMax(length + index, 0) + : nativeMin(index, length - 1); + } + return baseFindIndex(array, getIteratee(predicate, 3), index, true); + } + + /** + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] + */ + function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; + } + + /** + * Recursively flattens `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] + */ + function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; + } + + /** + * Recursively flatten `array` up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Array + * @param {Array} array The array to flatten. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * var array = [1, [2, [3, [4]], 5]]; + * + * _.flattenDepth(array, 1); + * // => [1, 2, [3, [4]], 5] + * + * _.flattenDepth(array, 2); + * // => [1, 2, 3, [4], 5] + */ + function flattenDepth(array, depth) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(array, depth); + } + + /** + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } + */ + function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; + } + + /** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined + */ + function head(array) { + return (array && array.length) ? array[0] : undefined; + } + + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ + function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseIndexOf(array, value, index); + } + + /** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ + function initial(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 0, -1) : []; + } + + /** + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersection([2, 1], [2, 3]); + * // => [2] + */ + var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] + * + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ + var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The order and references + * of result values are determined by the first array. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] + */ + var intersectionWith = baseRest(function(arrays) { + var comparator = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + comparator = typeof comparator == 'function' ? comparator : undefined; + if (comparator) { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, undefined, comparator) + : []; + }); + + /** + * Converts all elements in `array` into a string separated by `separator`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. + * @example + * + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' + */ + function join(array, separator) { + return array == null ? '' : nativeJoin.call(array, separator); + } + + /** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ + function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; + } + + /** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // Search from the `fromIndex`. + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + */ + function lastIndexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + } + return value === value + ? strictLastIndexOf(array, value, index) + : baseFindIndex(array, baseIsNaN, index, true); + } + + /** + * Gets the element at index `n` of `array`. If `n` is negative, the nth + * element from the end is returned. + * + * @static + * @memberOf _ + * @since 4.11.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=0] The index of the element to return. + * @returns {*} Returns the nth element of `array`. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * + * _.nth(array, 1); + * // => 'b' + * + * _.nth(array, -2); + * // => 'c'; + */ + function nth(array, n) { + return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; + } + + /** + * Removes all given values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove` + * to remove elements from an array by predicate. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pull(array, 'a', 'c'); + * console.log(array); + * // => ['b', 'b'] + */ + var pull = baseRest(pullAll); + + /** + * This method is like `_.pull` except that it accepts an array of values to remove. + * + * **Note:** Unlike `_.difference`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pullAll(array, ['a', 'c']); + * console.log(array); + * // => ['b', 'b'] + */ + function pullAll(array, values) { + return (array && array.length && values && values.length) + ? basePullAll(array, values) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] + */ + function pullAllBy(array, values, iteratee) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, getIteratee(iteratee, 2)) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `comparator` which + * is invoked to compare elements of `array` to `values`. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.differenceWith`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }]; + * + * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual); + * console.log(array); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }] + */ + function pullAllWith(array, values, comparator) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, undefined, comparator) + : array; + } + + /** + * Removes elements from `array` corresponding to `indexes` and returns an + * array of removed elements. + * + * **Note:** Unlike `_.at`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * var pulled = _.pullAt(array, [1, 3]); + * + * console.log(array); + * // => ['a', 'c'] + * + * console.log(pulled); + * // => ['b', 'd'] + */ + var pullAt = flatRest(function(array, indexes) { + var length = array == null ? 0 : array.length, + result = baseAt(array, indexes); + + basePullAt(array, arrayMap(indexes, function(index) { + return isIndex(index, length) ? +index : index; + }).sort(compareAscending)); + + return result; + }); + + /** + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is invoked + * with three arguments: (value, index, array). + * + * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull` + * to pull elements from an array by value. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); + * + * console.log(array); + * // => [1, 3] + * + * console.log(evens); + * // => [2, 4] + */ + function remove(array, predicate) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = getIteratee(predicate, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; + } + + /** + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.reverse(array); + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function reverse(array) { + return array == null ? array : nativeReverse.call(array); + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of + * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are + * returned. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function slice(array, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; + } + else { + start = start == null ? 0 : toInteger(start); + end = end === undefined ? length : toInteger(end); + } + return baseSlice(array, start, end); + } + + /** + * Uses a binary search to determine the lowest index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + */ + function sortedIndex(array, value) { + return baseSortedIndex(array, value); + } + + /** + * This method is like `_.sortedIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.sortedIndexBy(objects, { 'x': 4 }, 'x'); + * // => 0 + */ + function sortedIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); + } + + /** + * This method is like `_.indexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedIndexOf([4, 5, 5, 5, 6], 5); + * // => 1 + */ + function sortedIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value); + if (index < length && eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedLastIndex([4, 5, 5, 5, 6], 5); + * // => 4 + */ + function sortedLastIndex(array, value) { + return baseSortedIndex(array, value, true); + } + + /** + * This method is like `_.sortedLastIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 1 + * + * // The `_.property` iteratee shorthand. + * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x'); + * // => 1 + */ + function sortedLastIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true); + } + + /** + * This method is like `_.lastIndexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); + * // => 3 + */ + function sortedLastIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value, true) - 1; + if (eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.uniq` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniq([1, 1, 2]); + * // => [1, 2] + */ + function sortedUniq(array) { + return (array && array.length) + ? baseSortedUniq(array) + : []; + } + + /** + * This method is like `_.uniqBy` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); + * // => [1.1, 2.3] + */ + function sortedUniqBy(array, iteratee) { + return (array && array.length) + ? baseSortedUniq(array, getIteratee(iteratee, 2)) + : []; + } + + /** + * Gets all but the first element of `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.tail([1, 2, 3]); + * // => [2, 3] + */ + function tail(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 1, length) : []; + } + + /** + * Creates a slice of `array` with `n` elements taken from the beginning. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.take([1, 2, 3]); + * // => [1] + * + * _.take([1, 2, 3], 2); + * // => [1, 2] + * + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.take([1, 2, 3], 0); + * // => [] + */ + function take(array, n, guard) { + if (!(array && array.length)) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with `n` elements taken from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRight([1, 2, 3]); + * // => [3] + * + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] + * + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.takeRight([1, 2, 3], 0); + * // => [] + */ + function takeRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.takeRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeRightWhile(users, ['active', false]); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.takeRightWhile(users, 'active'); + * // => [] + */ + function takeRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), false, true) + : []; + } + + /** + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.takeWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matches` iteratee shorthand. + * _.takeWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeWhile(users, ['active', false]); + * // => objects for ['barney', 'fred'] + * + * // The `_.property` iteratee shorthand. + * _.takeWhile(users, 'active'); + * // => [] + */ + function takeWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3)) + : []; + } + + /** + * Creates an array of unique values, in order, from all given arrays using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.union([2], [1, 2]); + * // => [2, 1] + */ + var union = baseRest(function(arrays) { + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true)); + }); + + /** + * This method is like `_.union` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which uniqueness is computed. Result values are chosen from the first + * array in which the value occurs. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.unionBy([2.1], [1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + var unionBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.union` except that it accepts `comparator` which + * is invoked to compare elements of `arrays`. Result values are chosen from + * the first array in which the value occurs. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.unionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var unionWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator); + }); + + /** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurrence of each element + * is kept. The order of result values is determined by the order they occur + * in the array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + */ + function uniq(array) { + return (array && array.length) ? baseUniq(array) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * uniqueness is computed. The order of result values is determined by the + * order they occur in the array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniqBy([2.1, 1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + function uniqBy(array, iteratee) { + return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The order of result values is + * determined by the order they occur in the array.The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + */ + function uniqWith(array, comparator) { + comparator = typeof comparator == 'function' ? comparator : undefined; + return (array && array.length) ? baseUniq(array, undefined, comparator) : []; + } + + /** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @since 1.2.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + * + * _.unzip(zipped); + * // => [['a', 'b'], [1, 2], [true, false]] + */ + function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); + } + + /** + * This method is like `_.unzip` except that it accepts `iteratee` to specify + * how regrouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee=_.identity] The function to combine + * regrouped values. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] + * + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] + */ + function unzipWith(array, iteratee) { + if (!(array && array.length)) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + return arrayMap(result, function(group) { + return apply(iteratee, undefined, group); + }); + } + + /** + * Creates an array excluding all given values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.pull`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.xor + * @example + * + * _.without([2, 1, 2, 3], 1, 2); + * // => [3] + */ + var without = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, values) + : []; + }); + + /** + * Creates an array of unique values that is the + * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.without + * @example + * + * _.xor([2, 1], [2, 3]); + * // => [1, 3] + */ + var xor = baseRest(function(arrays) { + return baseXor(arrayFilter(arrays, isArrayLikeObject)); + }); + + /** + * This method is like `_.xor` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which by which they're compared. The order of result values is determined + * by the order they occur in the arrays. The iteratee is invoked with one + * argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2, 3.4] + * + * // The `_.property` iteratee shorthand. + * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var xorBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.xor` except that it accepts `comparator` which is + * invoked to compare elements of `arrays`. The order of result values is + * determined by the order they occur in the arrays. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.xorWith(objects, others, _.isEqual); + * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var xorWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator); + }); + + /** + * Creates an array of grouped elements, the first of which contains the + * first elements of the given arrays, the second of which contains the + * second elements of the given arrays, and so on. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + */ + var zip = baseRest(unzip); + + /** + * This method is like `_.fromPairs` except that it accepts two arrays, + * one of property identifiers and one of corresponding values. + * + * @static + * @memberOf _ + * @since 0.4.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObject(['a', 'b'], [1, 2]); + * // => { 'a': 1, 'b': 2 } + */ + function zipObject(props, values) { + return baseZipObject(props || [], values || [], assignValue); + } + + /** + * This method is like `_.zipObject` except that it supports property paths. + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); + * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } } + */ + function zipObjectDeep(props, values) { + return baseZipObject(props || [], values || [], baseSet); + } + + /** + * This method is like `_.zip` except that it accepts `iteratee` to specify + * how grouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee=_.identity] The function to combine + * grouped values. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { + * return a + b + c; + * }); + * // => [111, 222] + */ + var zipWith = baseRest(function(arrays) { + var length = arrays.length, + iteratee = length > 1 ? arrays[length - 1] : undefined; + + iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; + return unzipWith(arrays, iteratee); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' + */ + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; + } + + /** + * This method invokes `interceptor` and returns `value`. The interceptor + * is invoked with one argument; (value). The purpose of this method is to + * "tap into" a method chain sequence in order to modify intermediate results. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * // Mutate input array. + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ + function tap(value, interceptor) { + interceptor(value); + return value; + } + + /** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * The purpose of this method is to "pass thru" values replacing intermediate + * results in a method chain sequence. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor) { + return interceptor(value); + } + + /** + * This method is the wrapper version of `_.at`. + * + * @name at + * @memberOf _ + * @since 1.0.0 + * @category Seq + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _(object).at(['a[0].b.c', 'a[1]']).value(); + * // => [3, 4] + */ + var wrapperAt = flatRest(function(paths) { + var length = paths.length, + start = length ? paths[0] : 0, + value = this.__wrapped__, + interceptor = function(object) { return baseAt(object, paths); }; + + if (length > 1 || this.__actions__.length || + !(value instanceof LazyWrapper) || !isIndex(start)) { + return this.thru(interceptor); + } + value = value.slice(start, +start + (length ? 1 : 0)); + value.__actions__.push({ + 'func': thru, + 'args': [interceptor], + 'thisArg': undefined + }); + return new LodashWrapper(value, this.__chain__).thru(function(array) { + if (length && !array.length) { + array.push(undefined); + } + return array; + }); + }); + + /** + * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. + * + * @name chain + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // A sequence without explicit chaining. + * _(users).head(); + * // => { 'user': 'barney', 'age': 36 } + * + * // A sequence with explicit chaining. + * _(users) + * .chain() + * .head() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ + function wrapperChain() { + return chain(this); + } + + /** + * Executes the chain sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ + function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); + } + + /** + * Gets the next value on a wrapped object following the + * [iterator protocol](https://mdn.io/iteration_protocols#iterator). + * + * @name next + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the next iterator value. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped.next(); + * // => { 'done': false, 'value': 1 } + * + * wrapped.next(); + * // => { 'done': false, 'value': 2 } + * + * wrapped.next(); + * // => { 'done': true, 'value': undefined } + */ + function wrapperNext() { + if (this.__values__ === undefined) { + this.__values__ = toArray(this.value()); + } + var done = this.__index__ >= this.__values__.length, + value = done ? undefined : this.__values__[this.__index__++]; + + return { 'done': done, 'value': value }; + } + + /** + * Enables the wrapper to be iterable. + * + * @name Symbol.iterator + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the wrapper object. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped[Symbol.iterator]() === wrapped; + * // => true + * + * Array.from(wrapped); + * // => [1, 2] + */ + function wrapperToIterator() { + return this; + } + + /** + * Creates a clone of the chain sequence planting `value` as the wrapped value. + * + * @name plant + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @param {*} value The value to plant. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2]).map(square); + * var other = wrapped.plant([3, 4]); + * + * other.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] + */ + function wrapperPlant(value) { + var result, + parent = this; + + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + clone.__index__ = 0; + clone.__values__ = undefined; + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; + return result; + } + + /** + * This method is the wrapper version of `_.reverse`. + * + * **Note:** This method mutates the wrapped array. + * + * @name reverse + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2, 3]; + * + * _(array).reverse().value() + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function wrapperReverse() { + var value = this.__wrapped__; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ + 'func': thru, + 'args': [reverse], + 'thisArg': undefined + }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(reverse); + } + + /** + * Executes the chain sequence to resolve the unwrapped value. + * + * @name value + * @memberOf _ + * @since 0.1.0 + * @alias toJSON, valueOf + * @category Seq + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the number of times the key was returned by `iteratee`. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.countBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': 1, '6': 2 } + * + * // The `_.property` iteratee shorthand. + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ + var countBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + ++result[key]; + } else { + baseAssignValue(result, key, 1); + } + }); + + /** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false + */ + function every(collection, predicate, guard) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + * + * // Combining several predicates using `_.overEvery` or `_.overSome`. + * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); + * // => objects for ['fred', 'barney'] + */ + function filter(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' + * + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' + */ + var find = createFind(findIndex); + + /** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=collection.length-1] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ + var findLast = createFind(findLastIndex); + + /** + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [n, n]; + * } + * + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDeep([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMapDeep(collection, iteratee) { + return baseFlatten(map(collection, iteratee), INFINITY); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDepth([1, 2], duplicate, 2); + * // => [[1, 1], [2, 2]] + */ + function flatMapDepth(collection, iteratee, depth) { + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(map(collection, iteratee), depth); + } + + /** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @alias eachRight + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEach + * @example + * + * _.forEachRight([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `2` then `1`. + */ + function forEachRight(collection, iteratee) { + var func = isArray(collection) ? arrayEachRight : baseEachRight; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ + var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } + }); + + /** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ + function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; + + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); + } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); + } + + /** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke each method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invokeMap([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ + var invokeMap = baseRest(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); + }); + return result; + }); + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + */ + var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); + }); + + /** + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n; + * } + * + * _.map([4, 8], square); + * // => [16, 64] + * + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ + function map(collection, iteratee) { + var func = isArray(collection) ? arrayMap : baseMap; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] + * The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // Sort by `user` in ascending order and by `age` in descending order. + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + */ + function orderBy(collection, iteratees, orders, guard) { + if (collection == null) { + return []; + } + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; + } + orders = guard ? undefined : orders; + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; + } + return baseOrderBy(collection, iteratees, orders); + } + + /** + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, the second of which + * contains elements `predicate` returns falsey for. The predicate is + * invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the array of grouped elements. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; + * + * _.partition(users, function(o) { return o.active; }); + * // => objects for [['fred'], ['barney', 'pebbles']] + * + * // The `_.matches` iteratee shorthand. + * _.partition(users, { 'age': 1, 'active': false }); + * // => objects for [['pebbles'], ['barney', 'fred']] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.partition(users, ['active', false]); + * // => objects for [['barney', 'pebbles'], ['fred']] + * + * // The `_.property` iteratee shorthand. + * _.partition(users, 'active'); + * // => objects for [['fred'], ['barney', 'pebbles']] + */ + var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); + }, function() { return [[], []]; }); + + /** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `collection` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, + * and `sortBy` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduceRight + * @example + * + * _.reduce([1, 2], function(sum, n) { + * return sum + n; + * }, 0); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * return result; + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) + */ + function reduce(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduce : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach); + } + + /** + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduce + * @example + * + * var array = [[0, 1], [2, 3], [4, 5]]; + * + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] + */ + function reduceRight(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduceRight : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight); + } + + /** + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.filter + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * _.reject(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.reject(users, { 'age': 40, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.reject(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.reject(users, 'active'); + * // => objects for ['barney'] + */ + function reject(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, negate(getIteratee(predicate, 3))); + } + + /** + * Gets a random element from `collection`. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + * @example + * + * _.sample([1, 2, 3, 4]); + * // => 2 + */ + function sample(collection) { + var func = isArray(collection) ? arraySample : baseSample; + return func(collection); + } + + /** + * Gets `n` random elements at unique keys from `collection` up to the + * size of `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @param {number} [n=1] The number of elements to sample. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the random elements. + * @example + * + * _.sampleSize([1, 2, 3], 2); + * // => [3, 1] + * + * _.sampleSize([1, 2, 3], 4); + * // => [2, 3, 1] + */ + function sampleSize(collection, n, guard) { + if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + var func = isArray(collection) ? arraySampleSize : baseSampleSize; + return func(collection, n); + } + + /** + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + * @example + * + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] + */ + function shuffle(collection) { + var func = isArray(collection) ? arrayShuffle : baseShuffle; + return func(collection); + } + + /** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ + function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; + } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; + } + + /** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true + */ + function some(collection, predicate, guard) { + var func = isArray(collection) ? arraySome : baseSome; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 30 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] + */ + var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Gets the timestamp of the number of milliseconds that have elapsed since + * the Unix epoch (1 January 1970 00:00:00 UTC). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Date + * @returns {number} Returns the timestamp. + * @example + * + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => Logs the number of milliseconds it took for the deferred invocation. + */ + var now = ctxNow || function() { + return root.Date.now(); + }; + + /*------------------------------------------------------------------------*/ + + /** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it's called `n` or more times. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => Logs 'done saving!' after the two async saves have completed. + */ + function after(n, func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; + } + + /** + * Creates a function that invokes `func`, with up to `n` arguments, + * ignoring any additional arguments. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ + function ary(func, n, guard) { + n = guard ? undefined : n; + n = (func && n == null) ? func.length : n; + return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); + } + + /** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ + function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ + var bind = baseRest(function(func, thisArg, partials) { + var bitmask = WRAP_BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bind)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(func, bitmask, thisArg, partials, holders); + }); + + /** + * Creates a function that invokes the method at `object[key]` with `partials` + * prepended to the arguments it receives. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. See + * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Function + * @param {Object} object The object to invoke the method on. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // Bound with placeholders. + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ + var bindKey = baseRest(function(object, key, partials) { + var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bindKey)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(key, bitmask, object, partials, holders); + }); + + /** + * Creates a function that accepts arguments of `func` and either invokes + * `func` returning its result, if at least `arity` number of arguments have + * been provided, or returns a function that accepts the remaining `func` + * arguments, and so on. The arity of `func` may be specified if `func.length` + * is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ + function curry(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curry.placeholder; + return result; + } + + /** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ + function curryRight(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryRight.placeholder; + return result; + } + + /** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed `func` invocations and a `flush` method to immediately invoke them. + * Provide `options` to indicate whether `func` should be invoked on the + * leading and/or trailing edge of the `wait` timeout. The `func` is invoked + * with the last arguments provided to the debounced function. Subsequent + * calls to the debounced function return the result of the last `func` + * invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the debounced function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=false] + * Specify invoking on the leading edge of the timeout. + * @param {number} [options.maxWait] + * The maximum time `func` is allowed to be delayed before it's invoked. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // Avoid costly calculations while the window size is in flux. + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // Invoke `sendMail` when clicked, debouncing subsequent calls. + * jQuery(element).on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // Ensure `batchLog` is invoked once after 1 second of debounced calls. + * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); + * var source = new EventSource('/stream'); + * jQuery(source).on('message', debounced); + * + * // Cancel the trailing debounced invocation. + * jQuery(window).on('popstate', debounced.cancel); + */ + function debounce(func, wait, options) { + var lastArgs, + lastThis, + maxWait, + result, + timerId, + lastCallTime, + lastInvokeTime = 0, + leading = false, + maxing = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = toNumber(wait) || 0; + if (isObject(options)) { + leading = !!options.leading; + maxing = 'maxWait' in options; + maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function invokeFunc(time) { + var args = lastArgs, + thisArg = lastThis; + + lastArgs = lastThis = undefined; + lastInvokeTime = time; + result = func.apply(thisArg, args); + return result; + } + + function leadingEdge(time) { + // Reset any `maxWait` timer. + lastInvokeTime = time; + // Start the timer for the trailing edge. + timerId = setTimeout(timerExpired, wait); + // Invoke the leading edge. + return leading ? invokeFunc(time) : result; + } + + function remainingWait(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime, + timeWaiting = wait - timeSinceLastCall; + + return maxing + ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) + : timeWaiting; + } + + function shouldInvoke(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime; + + // Either this is the first call, activity has stopped and we're at the + // trailing edge, the system time has gone backwards and we're treating + // it as the trailing edge, or we've hit the `maxWait` limit. + return (lastCallTime === undefined || (timeSinceLastCall >= wait) || + (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); + } + + function timerExpired() { + var time = now(); + if (shouldInvoke(time)) { + return trailingEdge(time); + } + // Restart the timer. + timerId = setTimeout(timerExpired, remainingWait(time)); + } + + function trailingEdge(time) { + timerId = undefined; + + // Only invoke if we have `lastArgs` which means `func` has been + // debounced at least once. + if (trailing && lastArgs) { + return invokeFunc(time); + } + lastArgs = lastThis = undefined; + return result; + } + + function cancel() { + if (timerId !== undefined) { + clearTimeout(timerId); + } + lastInvokeTime = 0; + lastArgs = lastCallTime = lastThis = timerId = undefined; + } + + function flush() { + return timerId === undefined ? result : trailingEdge(now()); + } + + function debounced() { + var time = now(), + isInvoking = shouldInvoke(time); + + lastArgs = arguments; + lastThis = this; + lastCallTime = time; + + if (isInvoking) { + if (timerId === undefined) { + return leadingEdge(lastCallTime); + } + if (maxing) { + // Handle invocations in a tight loop. + clearTimeout(timerId); + timerId = setTimeout(timerExpired, wait); + return invokeFunc(lastCallTime); + } + } + if (timerId === undefined) { + timerId = setTimeout(timerExpired, wait); + } + return result; + } + debounced.cancel = cancel; + debounced.flush = flush; + return debounced; + } + + /** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ + var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. + */ + var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); + }); + + /** + * Creates a function that invokes `func` with arguments reversed. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new flipped function. + * @example + * + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); + * + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] + */ + function flip(func) { + return createWrap(func, WRAP_FLIP_FLAG); + } + + /** + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided, it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is used as the map cache key. The `func` + * is invoked with the `this` binding of the memoized function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the + * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) + * method interface of `clear`, `delete`, `get`, `has`, and `set`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoized function. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * var other = { 'c': 3, 'd': 4 }; + * + * var values = _.memoize(_.values); + * values(object); + * // => [1, 2] + * + * values(other); + * // => [3, 4] + * + * object.a = 2; + * values(object); + * // => [1, 2] + * + * // Modify the result cache. + * values.cache.set(object, ['a', 'b']); + * values(object); + * // => ['a', 'b'] + * + * // Replace `_.memoize.Cache`. + * _.memoize.Cache = WeakMap; + */ + function memoize(func, resolver) { + if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; + + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result) || cache; + return result; + }; + memoized.cache = new (memoize.Cache || MapCache); + return memoized; + } + + // Expose `MapCache`. + memoize.Cache = MapCache; + + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + var args = arguments; + switch (args.length) { + case 0: return !predicate.call(this); + case 1: return !predicate.call(this, args[0]); + case 2: return !predicate.call(this, args[0], args[1]); + case 3: return !predicate.call(this, args[0], args[1], args[2]); + } + return !predicate.apply(this, args); + }; + } + + /** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ + function once(func) { + return before(2, func); + } + + /** + * Creates a function that invokes `func` with its arguments transformed. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms=[_.identity]] + * The argument transforms. + * @returns {Function} Returns the new function. + * @example + * + * function doubled(n) { + * return n * 2; + * } + * + * function square(n) { + * return n * n; + * } + * + * var func = _.overArgs(function(x, y) { + * return [x, y]; + * }, [square, doubled]); + * + * func(9, 3); + * // => [81, 6] + * + * func(10, 5); + * // => [100, 10] + */ + var overArgs = castRest(function(func, transforms) { + transforms = (transforms.length == 1 && isArray(transforms[0])) + ? arrayMap(transforms[0], baseUnary(getIteratee())) + : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee())); + + var funcsLength = transforms.length; + return baseRest(function(args) { + var index = -1, + length = nativeMin(args.length, funcsLength); + + while (++index < length) { + args[index] = transforms[index].call(this, args[index]); + } + return apply(func, this, args); + }); + }); + + /** + * Creates a function that invokes `func` with `partials` prepended to the + * arguments it receives. This method is like `_.bind` except it does **not** + * alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 0.2.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' + * + * // Partially applied with placeholders. + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + */ + var partial = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partial)); + return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); + }); + + /** + * This method is like `_.partial` except that partially applied arguments + * are appended to the arguments it receives. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + * + * // Partially applied with placeholders. + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' + */ + var partialRight = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partialRight)); + return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); + }); + + /** + * Creates a function that invokes `func` with arguments arranged according + * to the specified `indexes` where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, [2, 0, 1]); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + */ + var rearg = flatRest(function(func, indexes) { + return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes); + }); + + /** + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as + * an array. + * + * **Note:** This method is based on the + * [rest parameter](https://mdn.io/rest_parameters). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.rest(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); + * + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' + */ + function rest(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start === undefined ? start : toInteger(start); + return baseRest(func, start); + } + + /** + * Creates a function that invokes `func` with the `this` binding of the + * create function and an array of arguments much like + * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply). + * + * **Note:** This method is based on the + * [spread operator](https://mdn.io/spread_operator). + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Function + * @param {Function} func The function to spread arguments over. + * @param {number} [start=0] The start position of the spread. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); + * + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 + */ + function spread(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start == null ? 0 : nativeMax(toInteger(start), 0); + return baseRest(function(args) { + var array = args[start], + otherArgs = castSlice(args, 0, start); + + if (array) { + arrayPush(otherArgs, array); + } + return apply(func, this, otherArgs); + }); + } + + /** + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed `func` invocations and a `flush` method to + * immediately invoke them. Provide `options` to indicate whether `func` + * should be invoked on the leading and/or trailing edge of the `wait` + * timeout. The `func` is invoked with the last arguments provided to the + * throttled function. Subsequent calls to the throttled function return the + * result of the last `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the throttled function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.throttle` and `_.debounce`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=true] + * Specify invoking on the leading edge of the timeout. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new throttled function. + * @example + * + * // Avoid excessively updating the position while scrolling. + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * + * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. + * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); + * jQuery(element).on('click', throttled); + * + * // Cancel the trailing throttled invocation. + * jQuery(window).on('popstate', throttled.cancel); + */ + function throttle(func, wait, options) { + var leading = true, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + return debounce(func, wait, { + 'leading': leading, + 'maxWait': wait, + 'trailing': trailing + }); + } + + /** + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] + */ + function unary(func) { + return ary(func, 1); + } + + /** + * Creates a function that provides `value` to `wrapper` as its first + * argument. Any additional arguments provided to the function are appended + * to those provided to the `wrapper`. The wrapper is invoked with the `this` + * binding of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {*} value The value to wrap. + * @param {Function} [wrapper=identity] The wrapper function. + * @returns {Function} Returns the new function. + * @example + * + * var p = _.wrap(_.escape, function(func, text) { + * return '

' + func(text) + '

'; + * }); + * + * p('fred, barney, & pebbles'); + * // => '

fred, barney, & pebbles

' + */ + function wrap(value, wrapper) { + return partial(castFunction(wrapper), value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Casts `value` as an array if it's not one. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Lang + * @param {*} value The value to inspect. + * @returns {Array} Returns the cast array. + * @example + * + * _.castArray(1); + * // => [1] + * + * _.castArray({ 'a': 1 }); + * // => [{ 'a': 1 }] + * + * _.castArray('abc'); + * // => ['abc'] + * + * _.castArray(null); + * // => [null] + * + * _.castArray(undefined); + * // => [undefined] + * + * _.castArray(); + * // => [] + * + * var array = [1, 2, 3]; + * console.log(_.castArray(array) === array); + * // => true + */ + function castArray() { + if (!arguments.length) { + return []; + } + var value = arguments[0]; + return isArray(value) ? value : [value]; + } + + /** + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true + */ + function clone(value) { + return baseClone(value, CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.clone` except that it accepts `customizer` which + * is invoked to produce the cloned value. If `customizer` returns `undefined`, + * cloning is handled by the method instead. The `customizer` is invoked with + * up to four arguments; (value [, index|key, object, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the cloned value. + * @see _.cloneDeepWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } + * } + * + * var el = _.cloneWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 0 + */ + function cloneWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * This method is like `_.clone` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false + */ + function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); + } + + /** + * This method is like `_.cloneWith` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the deep cloned value. + * @see _.cloneWith + * @example + * + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * } + * + * var el = _.cloneDeepWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 20 + */ + function cloneDeepWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); + } + + /** + * Checks if `object` conforms to `source` by invoking the predicate + * properties of `source` with the corresponding property values of `object`. + * + * **Note:** This method is equivalent to `_.conforms` when `source` is + * partially applied. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); + * // => true + * + * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); + * // => false + */ + function conformsTo(object, source) { + return source == null || baseConformsTo(object, source, keys(source)); + } + + /** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ + function eq(value, other) { + return value === other || (value !== value && other !== other); + } + + /** + * Checks if `value` is greater than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + * @see _.lt + * @example + * + * _.gt(3, 1); + * // => true + * + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false + */ + var gt = createRelationalOperation(baseGt); + + /** + * Checks if `value` is greater than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to + * `other`, else `false`. + * @see _.lte + * @example + * + * _.gte(3, 1); + * // => true + * + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false + */ + var gte = createRelationalOperation(function(value, other) { + return value >= other; + }); + + /** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ + var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); + }; + + /** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ + var isArray = Array.isArray; + + /** + * Checks if `value` is classified as an `ArrayBuffer` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + * @example + * + * _.isArrayBuffer(new ArrayBuffer(2)); + * // => true + * + * _.isArrayBuffer(new Array(2)); + * // => false + */ + var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ + function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); + } + + /** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example + * + * _.isArrayLikeObject([1, 2, 3]); + * // => true + * + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false + */ + function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); + } + + /** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); + } + + /** + * Checks if `value` is a buffer. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true + * + * _.isBuffer(new Uint8Array(2)); + * // => false + */ + var isBuffer = nativeIsBuffer || stubFalse; + + /** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ + var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; + + /** + * Checks if `value` is likely a DOM element. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @example + * + * _.isElement(document.body); + * // => true + * + * _.isElement(''); + * // => false + */ + function isElement(value) { + return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); + } + + /** + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ + function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && + (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || + isBuffer(value) || isTypedArray(value) || isArguments(value))) { + return !value.length; + } + var tag = getTag(value); + if (tag == mapTag || tag == setTag) { + return !value.size; + } + if (isPrototype(value)) { + return !baseKeys(value).length; + } + for (var key in value) { + if (hasOwnProperty.call(value, key)) { + return false; + } + } + return true; + } + + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ + function isEqual(value, other) { + return baseIsEqual(value, other); + } + + /** + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ + function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; + } + + /** + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @example + * + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false + */ + function isError(value) { + if (!isObjectLike(value)) { + return false; + } + var tag = baseGetTag(value); + return tag == errorTag || tag == domExcTag || + (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); + } + + /** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false + */ + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); + } + + /** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ + function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; + } + + /** + * Checks if `value` is an integer. + * + * **Note:** This method is based on + * [`Number.isInteger`](https://mdn.io/Number/isInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @example + * + * _.isInteger(3); + * // => true + * + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false + */ + function isInteger(value) { + return typeof value == 'number' && value == toInteger(value); + } + + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ + function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(_.noop); + * // => true + * + * _.isObject(null); + * // => false + */ + function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); + } + + /** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ + function isObjectLike(value) { + return value != null && typeof value == 'object'; + } + + /** + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false + */ + var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; + + /** + * Performs a partial deep comparison between `object` and `source` to + * determine if `object` contains equivalent property values. + * + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * + * _.isMatch(object, { 'b': 2 }); + * // => true + * + * _.isMatch(object, { 'b': 1 }); + * // => false + */ + function isMatch(object, source) { + return object === source || baseIsMatch(object, source, getMatchData(source)); + } + + /** + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with five + * arguments: (objValue, srcValue, index|key, object, source). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } + * + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatchWith(object, source, customizer); + * // => true + */ + function isMatchWith(object, source, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseIsMatch(object, source, getMatchData(source), customizer); + } + + /** + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; + } + + /** + * Checks if `value` is a pristine native function. + * + * **Note:** This method can't reliably detect native functions in the presence + * of the core-js package because core-js circumvents this kind of detection. + * Despite multiple requests, the core-js maintainer has made it clear: any + * attempt to fix the detection will be obstructed. As a result, we're left + * with little choice but to throw an error. Unfortunately, this also affects + * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), + * which rely on core-js. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + * @example + * + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false + */ + function isNative(value) { + if (isMaskable(value)) { + throw new Error(CORE_ERROR_TEXT); + } + return baseIsNative(value); + } + + /** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ + function isNull(value) { + return value === null; + } + + /** + * Checks if `value` is `null` or `undefined`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @example + * + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false + */ + function isNil(value) { + return value == null; + } + + /** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @example + * + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false + */ + function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); + } + + /** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ + function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; + } + + /** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ + var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; + + /** + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on + * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @example + * + * _.isSafeInteger(3); + * // => true + * + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false + */ + function isSafeInteger(value) { + return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ + var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + + /** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ + function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + } + + /** + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false + */ + function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); + } + + /** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ + var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + + /** + * Checks if `value` is `undefined`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ + function isUndefined(value) { + return value === undefined; + } + + /** + * Checks if `value` is classified as a `WeakMap` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @example + * + * _.isWeakMap(new WeakMap); + * // => true + * + * _.isWeakMap(new Map); + * // => false + */ + function isWeakMap(value) { + return isObjectLike(value) && getTag(value) == weakMapTag; + } + + /** + * Checks if `value` is classified as a `WeakSet` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. + * @example + * + * _.isWeakSet(new WeakSet); + * // => true + * + * _.isWeakSet(new Set); + * // => false + */ + function isWeakSet(value) { + return isObjectLike(value) && baseGetTag(value) == weakSetTag; + } + + /** + * Checks if `value` is less than `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + * @see _.gt + * @example + * + * _.lt(1, 3); + * // => true + * + * _.lt(3, 3); + * // => false + * + * _.lt(3, 1); + * // => false + */ + var lt = createRelationalOperation(baseLt); + + /** + * Checks if `value` is less than or equal to `other`. + * + * @static + * @memberOf _ + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than or equal to + * `other`, else `false`. + * @see _.gte + * @example + * + * _.lte(1, 3); + * // => true + * + * _.lte(3, 3); + * // => true + * + * _.lte(3, 1); + * // => false + */ + var lte = createRelationalOperation(function(value, other) { + return value <= other; + }); + + /** + * Converts `value` to an array. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. + * @example + * + * _.toArray({ 'a': 1, 'b': 2 }); + * // => [1, 2] + * + * _.toArray('abc'); + * // => ['a', 'b', 'c'] + * + * _.toArray(1); + * // => [] + * + * _.toArray(null); + * // => [] + */ + function toArray(value) { + if (!value) { + return []; + } + if (isArrayLike(value)) { + return isString(value) ? stringToArray(value) : copyArray(value); + } + if (symIterator && value[symIterator]) { + return iteratorToArray(value[symIterator]()); + } + var tag = getTag(value), + func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values); + + return func(value); + } + + /** + * Converts `value` to a finite number. + * + * @static + * @memberOf _ + * @since 4.12.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted number. + * @example + * + * _.toFinite(3.2); + * // => 3.2 + * + * _.toFinite(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toFinite(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toFinite('3.2'); + * // => 3.2 + */ + function toFinite(value) { + if (!value) { + return value === 0 ? value : 0; + } + value = toNumber(value); + if (value === INFINITY || value === -INFINITY) { + var sign = (value < 0 ? -1 : 1); + return sign * MAX_INTEGER; + } + return value === value ? value : 0; + } + + /** + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 + */ + function toInteger(value) { + var result = toFinite(value), + remainder = result % 1; + + return result === result ? (remainder ? result - remainder : result) : 0; + } + + /** + * Converts `value` to an integer suitable for use as the length of an + * array-like object. + * + * **Note:** This method is based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toLength(3.2); + * // => 3 + * + * _.toLength(Number.MIN_VALUE); + * // => 0 + * + * _.toLength(Infinity); + * // => 4294967295 + * + * _.toLength('3.2'); + * // => 3 + */ + function toLength(value) { + return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0; + } + + /** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 + */ + function toNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + if (isObject(value)) { + var other = typeof value.valueOf == 'function' ? value.valueOf() : value; + value = isObject(other) ? (other + '') : other; + } + if (typeof value != 'string') { + return value === 0 ? value : +value; + } + value = value.replace(reTrim, ''); + var isBinary = reIsBinary.test(value); + return (isBinary || reIsOctal.test(value)) + ? freeParseInt(value.slice(2), isBinary ? 2 : 8) + : (reIsBadHex.test(value) ? NAN : +value); + } + + /** + * Converts `value` to a plain object flattening inherited enumerable string + * keyed properties of `value` to own properties of the plain object. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } + */ + function toPlainObject(value) { + return copyObject(value, keysIn(value)); + } + + /** + * Converts `value` to a safe integer. A safe integer can be compared and + * represented correctly. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toSafeInteger(3.2); + * // => 3 + * + * _.toSafeInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toSafeInteger(Infinity); + * // => 9007199254740991 + * + * _.toSafeInteger('3.2'); + * // => 3 + */ + function toSafeInteger(value) { + return value + ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) + : (value === 0 ? value : 0); + } + + /** + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + function toString(value) { + return value == null ? '' : baseToString(value); + } + + /*------------------------------------------------------------------------*/ + + /** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ + var assign = createAssigner(function(object, source) { + if (isPrototype(source) || isArrayLike(source)) { + copyObject(source, keys(source), object); + return; + } + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + assignValue(object, key, source[key]); + } + } + }); + + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ + var assignIn = createAssigner(function(object, source) { + copyObject(source, keysIn(source), object); + }); + + /** + * This method is like `_.assignIn` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keysIn(source), object, customizer); + }); + + /** + * This method is like `_.assign` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignInWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keys(source), object, customizer); + }); + + /** + * Creates an array of values corresponding to `paths` of `object`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Array} Returns the picked values. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _.at(object, ['a[0].b.c', 'a[1]']); + * // => [3, 4] + */ + var at = flatRest(baseAt); + + /** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : baseAssign(result, properties); + } + + /** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var defaults = baseRest(function(object, sources) { + object = Object(object); + + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } + + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; + + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; + + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } + } + } + + return object; + }); + + /** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaults + * @example + * + * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); + * // => { 'a': { 'b': 2, 'c': 3 } } + */ + var defaultsDeep = baseRest(function(args) { + args.push(undefined, customDefaultsMerge); + return apply(mergeWith, undefined, args); + }); + + /** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(o) { return o.age < 40; }); + * // => 'barney' (iteration order is not guaranteed) + * + * // The `_.matches` iteratee shorthand. + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findKey(users, 'active'); + * // => 'barney' + */ + function findKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwn); + } + + /** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(o) { return o.age < 40; }); + * // => returns 'pebbles' assuming `_.findKey` returns 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ + function findLastKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight); + } + + /** + * Iterates over own and inherited enumerable string keyed properties of an + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forInRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + */ + function forIn(object, iteratee) { + return object == null + ? object + : baseFor(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forIn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + */ + function forInRight(object, iteratee) { + return object == null + ? object + : baseForRight(object, getIteratee(iteratee, 3), keysIn); + } + + /** + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwnRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forOwn(object, iteratee) { + return object && baseForOwn(object, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + */ + function forOwnRight(object, iteratee) { + return object && baseForOwnRight(object, getIteratee(iteratee, 3)); + } + + /** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functionsIn + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ + function functions(object) { + return object == null ? [] : baseFunctions(object, keys(object)); + } + + /** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functions + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ + function functionsIn(object) { + return object == null ? [] : baseFunctions(object, keysIn(object)); + } + + /** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ + function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; + } + + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + function has(object, path) { + return object != null && hasPath(object, path, baseHas); + } + + /** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b'); + * // => true + * + * _.hasIn(object, ['a', 'b']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ + function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); + } + + /** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite + * property assignments of previous values. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Object + * @param {Object} object The object to invert. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + */ + var invert = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + result[value] = key; + }, constant(identity)); + + /** + * This method is like `_.invert` except that the inverted object is generated + * from the results of running each element of `object` thru `iteratee`. The + * corresponding inverted value of each inverted key is an array of keys + * responsible for generating the inverted value. The iteratee is invoked + * with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Object + * @param {Object} object The object to invert. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invertBy(object); + * // => { '1': ['a', 'c'], '2': ['b'] } + * + * _.invertBy(object, function(value) { + * return 'group' + value; + * }); + * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + */ + var invertBy = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } + + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + }, getIteratee); + + /** + * Invokes the method at `path` of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + * @example + * + * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * + * _.invoke(object, 'a[0].b.c.slice', 1, 3); + * // => [2, 3] + */ + var invoke = baseRest(baseInvoke); + + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); + } + + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); + } + + /** + * The opposite of `_.mapValues`; this method creates an object with the + * same values as `object` and keys generated by running each own enumerable + * string keyed property of `object` thru `iteratee`. The iteratee is invoked + * with three arguments: (value, key, object). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapValues + * @example + * + * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { + * return key + value; + * }); + * // => { 'a1': 1, 'b2': 2 } + */ + function mapKeys(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, iteratee(value, key, object), value); + }); + return result; + } + + /** + * Creates an object with the same keys as `object` and values generated + * by running each own enumerable string keyed property of `object` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, key, object). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapKeys + * @example + * + * var users = { + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } + * }; + * + * _.mapValues(users, function(o) { return o.age; }); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * + * // The `_.property` iteratee shorthand. + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + */ + function mapValues(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, key, iteratee(value, key, object)); + }); + return result; + } + + /** + * This method is like `_.assign` except that it recursively merges own and + * inherited enumerable string keyed properties of source objects into the + * destination object. Source properties that resolve to `undefined` are + * skipped if a destination value exists. Array and plain object properties + * are merged recursively. Other objects and value types are overridden by + * assignment. Source objects are applied from left to right. Subsequent + * sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var object = { + * 'a': [{ 'b': 2 }, { 'd': 4 }] + * }; + * + * var other = { + * 'a': [{ 'c': 3 }, { 'e': 5 }] + * }; + * + * _.merge(object, other); + * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + */ + var merge = createAssigner(function(object, source, srcIndex) { + baseMerge(object, source, srcIndex); + }); + + /** + * This method is like `_.merge` except that it accepts `customizer` which + * is invoked to produce the merged values of the destination and source + * properties. If `customizer` returns `undefined`, merging is handled by the + * method instead. The `customizer` is invoked with six arguments: + * (objValue, srcValue, key, object, source, stack). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * if (_.isArray(objValue)) { + * return objValue.concat(srcValue); + * } + * } + * + * var object = { 'a': [1], 'b': [2] }; + * var other = { 'a': [3], 'b': [4] }; + * + * _.mergeWith(object, other, customizer); + * // => { 'a': [1, 3], 'b': [2, 4] } + */ + var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { + baseMerge(object, source, srcIndex, customizer); + }); + + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ + var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; + } + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; + }); + + /** + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable string keyed properties of `object` that + * `predicate` doesn't return truthy for. The predicate is invoked with two + * arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ + function omitBy(object, predicate) { + return pickBy(object, negate(getIteratee(predicate))); + } + + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); + }); + + /** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ + function pickBy(object, predicate) { + if (object == null) { + return {}; + } + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = getIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); + } + + /** + * This method is like `_.get` except that if the resolved value is a + * function it's invoked with the `this` binding of its parent object and + * its result is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a[0].b.c3', 'default'); + * // => 'default' + * + * _.result(object, 'a[0].b.c3', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + path = castPath(path, object); + + var index = -1, + length = path.length; + + // Ensure the loop is entered when path is empty. + if (!length) { + length = 1; + object = undefined; + } + while (++index < length) { + var value = object == null ? undefined : object[toKey(path[index])]; + if (value === undefined) { + index = length; + value = defaultValue; + } + object = isFunction(value) ? value.call(object) : value; + } + return object; + } + + /** + * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, + * it's created. Arrays are created for missing index properties while objects + * are created for all other missing properties. Use `_.setWith` to customize + * `path` creation. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, ['x', '0', 'y', 'z'], 5); + * console.log(object.x[0].y.z); + * // => 5 + */ + function set(object, path, value) { + return object == null ? object : baseSet(object, path, value); + } + + /** + * This method is like `_.set` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.setWith(object, '[0][1]', 'a', Object); + * // => { '0': { '1': 'a' } } + */ + function setWith(object, path, value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseSet(object, path, value, customizer); + } + + /** + * Creates an array of own enumerable string keyed-value pairs for `object` + * which can be consumed by `_.fromPairs`. If `object` is a map or set, its + * entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entries + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairs(new Foo); + * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + */ + var toPairs = createToPairs(keys); + + /** + * Creates an array of own and inherited enumerable string keyed-value pairs + * for `object` which can be consumed by `_.fromPairs`. If `object` is a map + * or set, its entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entriesIn + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairsIn(new Foo); + * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) + */ + var toPairsIn = createToPairs(keysIn); + + /** + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own + * enumerable string keyed properties thru `iteratee`, with each invocation + * potentially mutating the `accumulator` object. If `accumulator` is not + * provided, a new object with the same `[[Prototype]]` will be used. The + * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @returns {*} Returns the accumulated value. + * @example + * + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }, []); + * // => [4, 9] + * + * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } + */ + function transform(object, iteratee, accumulator) { + var isArr = isArray(object), + isArrLike = isArr || isBuffer(object) || isTypedArray(object); + + iteratee = getIteratee(iteratee, 4); + if (accumulator == null) { + var Ctor = object && object.constructor; + if (isArrLike) { + accumulator = isArr ? new Ctor : []; + } + else if (isObject(object)) { + accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; + } + else { + accumulator = {}; + } + } + (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; + } + + /** + * Removes the property at `path` of `object`. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 7 } }] }; + * _.unset(object, 'a[0].b.c'); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + * + * _.unset(object, ['a', '0', 'b', 'c']); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + */ + function unset(object, path) { + return object == null ? true : baseUnset(object, path); + } + + /** + * This method is like `_.set` except that accepts `updater` to produce the + * value to set. Use `_.updateWith` to customize `path` creation. The `updater` + * is invoked with one argument: (value). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.update(object, 'a[0].b.c', function(n) { return n * n; }); + * console.log(object.a[0].b.c); + * // => 9 + * + * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; }); + * console.log(object.x[0].y.z); + * // => 0 + */ + function update(object, path, updater) { + return object == null ? object : baseUpdate(object, path, castFunction(updater)); + } + + /** + * This method is like `_.update` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.updateWith(object, '[0][1]', _.constant('a'), Object); + * // => { '0': { '1': 'a' } } + */ + function updateWith(object, path, updater, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer); + } + + /** + * Creates an array of the own enumerable string keyed property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return object == null ? [] : baseValues(object, keys(object)); + } + + /** + * Creates an array of the own and inherited enumerable string keyed property + * values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.valuesIn(new Foo); + * // => [1, 2, 3] (iteration order is not guaranteed) + */ + function valuesIn(object) { + return object == null ? [] : baseValues(object, keysIn(object)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ + function clamp(number, lower, upper) { + if (upper === undefined) { + upper = lower; + lower = undefined; + } + if (upper !== undefined) { + upper = toNumber(upper); + upper = upper === upper ? upper : 0; + } + if (lower !== undefined) { + lower = toNumber(lower); + lower = lower === lower ? lower : 0; + } + return baseClamp(toNumber(number), lower, upper); + } + + /** + * Checks if `n` is between `start` and up to, but not including, `end`. If + * `end` is not specified, it's set to `start` with `start` then set to `0`. + * If `start` is greater than `end` the params are swapped to support + * negative ranges. + * + * @static + * @memberOf _ + * @since 3.3.0 + * @category Number + * @param {number} number The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + * @see _.range, _.rangeRight + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + * + * _.inRange(-3, -2, -6); + * // => true + */ + function inRange(number, start, end) { + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + number = toNumber(number); + return baseInRange(number, start, end); + } + + /** + * Produces a random number between the inclusive `lower` and `upper` bounds. + * If only one argument is provided a number between `0` and the given number + * is returned. If `floating` is `true`, or either `lower` or `upper` are + * floats, a floating-point number is returned instead of an integer. + * + * **Note:** JavaScript follows the IEEE-754 standard for resolving + * floating-point values which can produce unexpected results. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Number + * @param {number} [lower=0] The lower bound. + * @param {number} [upper=1] The upper bound. + * @param {boolean} [floating] Specify returning a floating-point number. + * @returns {number} Returns the random number. + * @example + * + * _.random(0, 5); + * // => an integer between 0 and 5 + * + * _.random(5); + * // => also an integer between 0 and 5 + * + * _.random(5, true); + * // => a floating-point number between 0 and 5 + * + * _.random(1.2, 5.2); + * // => a floating-point number between 1.2 and 5.2 + */ + function random(lower, upper, floating) { + if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) { + upper = floating = undefined; + } + if (floating === undefined) { + if (typeof upper == 'boolean') { + floating = upper; + upper = undefined; + } + else if (typeof lower == 'boolean') { + floating = lower; + lower = undefined; + } + } + if (lower === undefined && upper === undefined) { + lower = 0; + upper = 1; + } + else { + lower = toFinite(lower); + if (upper === undefined) { + upper = lower; + lower = 0; + } else { + upper = toFinite(upper); + } + } + if (lower > upper) { + var temp = lower; + lower = upper; + upper = temp; + } + if (floating || lower % 1 || upper % 1) { + var rand = nativeRandom(); + return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper); + } + return baseRandom(lower, upper); + } + + /*------------------------------------------------------------------------*/ + + /** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar--'); + * // => 'fooBar' + * + * _.camelCase('__FOO_BAR__'); + * // => 'fooBar' + */ + var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? capitalize(word) : word); + }); + + /** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('FRED'); + * // => 'Fred' + */ + function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); + } + + /** + * Deburrs `string` by converting + * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) + * letters to basic Latin letters and removing + * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ + function deburr(string) { + string = toString(string); + return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); + } + + /** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search up to. + * @returns {boolean} Returns `true` if `string` ends with `target`, + * else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ + function endsWith(string, target, position) { + string = toString(string); + target = baseToString(target); + + var length = string.length; + position = position === undefined + ? length + : baseClamp(toInteger(position), 0, length); + + var end = position; + position -= target.length; + return position >= 0 && string.slice(position, end) == target; + } + + /** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + + /** + * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", + * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https://lodash\.com/\)' + */ + function escapeRegExp(string) { + string = toString(string); + return (string && reHasRegExpChar.test(string)) + ? string.replace(reRegExpChar, '\\$&') + : string; + } + + /** + * Converts `string` to + * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__FOO_BAR__'); + * // => 'foo-bar' + */ + var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); + }); + + /** + * Converts `string`, as space separated words, to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the lower cased string. + * @example + * + * _.lowerCase('--Foo-Bar--'); + * // => 'foo bar' + * + * _.lowerCase('fooBar'); + * // => 'foo bar' + * + * _.lowerCase('__FOO_BAR__'); + * // => 'foo bar' + */ + var lowerCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + word.toLowerCase(); + }); + + /** + * Converts the first character of `string` to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.lowerFirst('Fred'); + * // => 'fred' + * + * _.lowerFirst('FRED'); + * // => 'fRED' + */ + var lowerFirst = createCaseFirst('toLowerCase'); + + /** + * Pads `string` on the left and right sides if it's shorter than `length`. + * Padding characters are truncated if they can't be evenly divided by `length`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.pad('abc', 8); + * // => ' abc ' + * + * _.pad('abc', 8, '_-'); + * // => '_-abc_-_' + * + * _.pad('abc', 3); + * // => 'abc' + */ + function pad(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + if (!length || strLength >= length) { + return string; + } + var mid = (length - strLength) / 2; + return ( + createPadding(nativeFloor(mid), chars) + + string + + createPadding(nativeCeil(mid), chars) + ); + } + + /** + * Pads `string` on the right side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padEnd('abc', 6); + * // => 'abc ' + * + * _.padEnd('abc', 6, '_-'); + * // => 'abc_-_' + * + * _.padEnd('abc', 3); + * // => 'abc' + */ + function padEnd(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (string + createPadding(length - strLength, chars)) + : string; + } + + /** + * Pads `string` on the left side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padStart('abc', 6); + * // => ' abc' + * + * _.padStart('abc', 6, '_-'); + * // => '_-_abc' + * + * _.padStart('abc', 3); + * // => 'abc' + */ + function padStart(string, length, chars) { + string = toString(string); + length = toInteger(length); + + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (createPadding(length - strLength, chars) + string) + : string; + } + + /** + * Converts `string` to an integer of the specified radix. If `radix` is + * `undefined` or `0`, a `radix` of `10` is used unless `value` is a + * hexadecimal, in which case a `radix` of `16` is used. + * + * **Note:** This method aligns with the + * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category String + * @param {string} string The string to convert. + * @param {number} [radix=10] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {number} Returns the converted integer. + * @example + * + * _.parseInt('08'); + * // => 8 + * + * _.map(['6', '08', '10'], _.parseInt); + * // => [6, 8, 10] + */ + function parseInt(string, radix, guard) { + if (guard || radix == null) { + radix = 0; + } else if (radix) { + radix = +radix; + } + return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0); + } + + /** + * Repeats the given string `n` times. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to repeat. + * @param {number} [n=1] The number of times to repeat the string. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the repeated string. + * @example + * + * _.repeat('*', 3); + * // => '***' + * + * _.repeat('abc', 2); + * // => 'abcabc' + * + * _.repeat('abc', 0); + * // => '' + */ + function repeat(string, n, guard) { + if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + return baseRepeat(toString(string), n); + } + + /** + * Replaces matches for `pattern` in `string` with `replacement`. + * + * **Note:** This method is based on + * [`String#replace`](https://mdn.io/String/replace). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to modify. + * @param {RegExp|string} pattern The pattern to replace. + * @param {Function|string} replacement The match replacement. + * @returns {string} Returns the modified string. + * @example + * + * _.replace('Hi Fred', 'Fred', 'Barney'); + * // => 'Hi Barney' + */ + function replace() { + var args = arguments, + string = toString(args[0]); + + return args.length < 3 ? string : string.replace(args[1], args[2]); + } + + /** + * Converts `string` to + * [snake case](https://en.wikipedia.org/wiki/Snake_case). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the snake cased string. + * @example + * + * _.snakeCase('Foo Bar'); + * // => 'foo_bar' + * + * _.snakeCase('fooBar'); + * // => 'foo_bar' + * + * _.snakeCase('--FOO-BAR--'); + * // => 'foo_bar' + */ + var snakeCase = createCompounder(function(result, word, index) { + return result + (index ? '_' : '') + word.toLowerCase(); + }); + + /** + * Splits `string` by `separator`. + * + * **Note:** This method is based on + * [`String#split`](https://mdn.io/String/split). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to split. + * @param {RegExp|string} separator The separator pattern to split by. + * @param {number} [limit] The length to truncate results to. + * @returns {Array} Returns the string segments. + * @example + * + * _.split('a-b-c', '-', 2); + * // => ['a', 'b'] + */ + function split(string, separator, limit) { + if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) { + separator = limit = undefined; + } + limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0; + if (!limit) { + return []; + } + string = toString(string); + if (string && ( + typeof separator == 'string' || + (separator != null && !isRegExp(separator)) + )) { + separator = baseToString(separator); + if (!separator && hasUnicode(string)) { + return castSlice(stringToArray(string), 0, limit); + } + } + return string.split(separator, limit); + } + + /** + * Converts `string` to + * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * + * @static + * @memberOf _ + * @since 3.1.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the start cased string. + * @example + * + * _.startCase('--foo-bar--'); + * // => 'Foo Bar' + * + * _.startCase('fooBar'); + * // => 'Foo Bar' + * + * _.startCase('__FOO_BAR__'); + * // => 'FOO BAR' + */ + var startCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + upperFirst(word); + }); + + /** + * Checks if `string` starts with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, + * else `false`. + * @example + * + * _.startsWith('abc', 'a'); + * // => true + * + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true + */ + function startsWith(string, target, position) { + string = toString(string); + position = position == null + ? 0 + : baseClamp(toInteger(position), 0, string.length); + + target = baseToString(target); + return string.slice(position, position + target.length) == target; + } + + /** + * Creates a compiled template function that can interpolate data properties + * in "interpolate" delimiters, HTML-escape interpolated data properties in + * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data + * properties may be accessed as free variables in the template. If a setting + * object is given, it takes precedence over `_.templateSettings` values. + * + * **Note:** In the development build `_.template` utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) + * for easier debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The template string. + * @param {Object} [options={}] The options object. + * @param {RegExp} [options.escape=_.templateSettings.escape] + * The HTML "escape" delimiter. + * @param {RegExp} [options.evaluate=_.templateSettings.evaluate] + * The "evaluate" delimiter. + * @param {Object} [options.imports=_.templateSettings.imports] + * An object to import into the template as free variables. + * @param {RegExp} [options.interpolate=_.templateSettings.interpolate] + * The "interpolate" delimiter. + * @param {string} [options.sourceURL='lodash.templateSources[n]'] + * The sourceURL of the compiled template. + * @param {string} [options.variable='obj'] + * The data object variable name. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the compiled template function. + * @example + * + * // Use the "interpolate" delimiter to create a compiled template. + * var compiled = _.template('hello <%= user %>!'); + * compiled({ 'user': 'fred' }); + * // => 'hello fred!' + * + * // Use the HTML "escape" delimiter to escape data property values. + * var compiled = _.template('<%- value %>'); + * compiled({ 'value': ' + \ No newline at end of file diff --git a/extensions/fablabchemnitz/laser_check/laser_check.py b/extensions/fablabchemnitz/laser_check/laser_check.py new file mode 100644 index 0000000..4586cc5 --- /dev/null +++ b/extensions/fablabchemnitz/laser_check/laser_check.py @@ -0,0 +1,957 @@ +#!/usr/bin/env python3 + +import inkex +from inkex.bezier import csplength, csparea +from lxml import etree +import re +import math +import sys +from math import log +import datetime + +class LaserCheck(inkex.EffectExtension): + + ''' + ToDos: + - inx: + - set speed manually or pick machine (epilog) - travel and cut speed are prefilled then + - calculate cut estimation with linear or non-linear (epilog) speeds > select formula or like this + - select material (parameters -> how to???) + - add fields for additional costs like configuring the machine or grabbing parts out of the machine (weeding), etc. + - add mode select: cut, engrave + - Handlungsempfehlungen einbauen + - verweisen auf diverse plugins, die man nutzen kann: + - migrate ungrouper + - pointy paths + - cleaner + - styles to layers + - apply transforms + - epilog bbox adjust + - wege zum Pfade fixen: + - cut slower ( > muss aber auch leistung reduzieren - inb welchem umfang?) + - sort + - chaining with touching neighbours + - remove path + - remove modes/simplify + - find duplicate lines + - visualize results as a nice SVG rendered check list page with + - red/green/grey icons (failed, done, skipped) and calculate some scores + - preview image + - statistics + - export as PDF + - run as script to generate quick results for users + - check for old styles which should be upgraded (cleanup styles tool) + - check for elements which have no style attribute (should be created) -> (cleanup styles tool) + - self-intersecting paths + - number of parts (isles) to weed in total - this is an indicator for manually picking work; if we add bridges we have less work + - number of parts which are smaller than vector grid + - add some inkex.Desc to all elements which were checked and which have some issue. use special syntax to remove old stuff each time the check is applied again + - this code is horrible ugly stuff + - output time/cost estimations per stroke color + ''' + + def add_arguments(self, pars): + pars.add_argument('--tab') + + pars.add_argument('--machine_size', default="812x508") + pars.add_argument('--max_cutting_speed', type=float, default=120.0) + pars.add_argument('--max_travel_speed', type=float, default=450.0) + pars.add_argument('--job_time_offset', type=float, default=0.0) + pars.add_argument('--price_per_minute_gross', type=float, default=2.0) + pars.add_argument('--vector_grid_xy', type=float, default=12.0) #TODO + pars.add_argument('--co2_power', type=float, default=60.0) #TODO + pars.add_argument('--round_times', type=inkex.Boolean, default=True) + + pars.add_argument('--show_issues_only', type=inkex.Boolean, default=False) + pars.add_argument('--checks', default="check_all") + pars.add_argument('--bbox', type=inkex.Boolean, default=False) + pars.add_argument('--bbox_offset', type=float, default=5.000) + pars.add_argument('--cutting_estimation', type=inkex.Boolean, default=False) + pars.add_argument('--cutting_speedfactors', default="100 90 80 70 60 50 40 30 20 10 9 8 7 6 5 4 3 2 1") + pars.add_argument('--elements_outside_canvas', type=inkex.Boolean, default=False) + pars.add_argument('--groups_and_layers', type=inkex.Boolean, default=False) + pars.add_argument('--nest_depth_max', type=int, default=2) + pars.add_argument('--clones', type=inkex.Boolean, default=False) + pars.add_argument('--clippaths', type=inkex.Boolean, default=False) + pars.add_argument('--images', type=inkex.Boolean, default=False) + pars.add_argument('--texts', type=inkex.Boolean, default=False) + pars.add_argument('--filters', type=inkex.Boolean, default=False) + pars.add_argument('--lowlevelstrokes', type=inkex.Boolean, default=False) + pars.add_argument('--style_types', type=inkex.Boolean, default=False) + pars.add_argument('--stroke_colors', type=inkex.Boolean, default=False) + pars.add_argument('--stroke_colors_max', type=int, default=3) + pars.add_argument('--stroke_widths', type=inkex.Boolean, default=False) + pars.add_argument('--stroke_widths_max', type=int, default=1) + pars.add_argument('--stroke_opacities', type=inkex.Boolean, default=False) + pars.add_argument('--cosmestic_dashes', type=inkex.Boolean, default=False) + pars.add_argument('--invisible_shapes', type=inkex.Boolean, default=False) + pars.add_argument('--pointy_paths', type=inkex.Boolean, default=False) + pars.add_argument('--transformations', type=inkex.Boolean, default=False) + pars.add_argument('--short_paths', type=inkex.Boolean, default=False) + pars.add_argument('--short_paths_min', type=float, default=1.000) + pars.add_argument('--non_path_shapes', type=inkex.Boolean, default=False) + pars.add_argument('--nodes_per_path', type=inkex.Boolean, default=False) + pars.add_argument('--nodes_per_path_max', type=int, default=2) + pars.add_argument('--nodes_per_path_interval', type=float, default=10.000) + + def effect(self): + + so = self.options + machineWidth = self.svg.unittouu(so.machine_size.split('x')[0] + "mm") + machineHeight = self.svg.unittouu(so.machine_size.split('x')[1] + "mm") + selected = [] #total list of elements to parse + + + def parseChildren(element): + if element not in selected: + selected.append(element) + children = element.getchildren() + if children is not None: + for child in children: + if child not in selected: + selected.append(child) + parseChildren(child) #go deeper and deeper + + #check if we have selected elements or if we should parse the whole document instead + if len(self.svg.selected) == 0: + for element in self.document.getroot().iter(tag=etree.Element): + if element != self.document.getroot(): + + selected.append(element) + else: + for element in self.svg.selected.values(): + parseChildren(element) + + namedView = self.document.getroot().find(inkex.addNS('namedview', 'sodipodi')) + doc_units = namedView.get(inkex.addNS('document-units', 'inkscape')) + user_units = namedView.get(inkex.addNS('units')) + pagecolor = namedView.get('pagecolor') + inkex.utils.debug("---------- Default checks") + inkex.utils.debug("Document units: {}".format(doc_units)) + inkex.utils.debug("User units: {}".format(user_units)) + + ''' + Check for scalings + > Page size is determined by SVG root 'width' and 'height'. + > 'viewBox' defined in 'user units' with the values: (x offset, y-offset, width, height). + > Document scale is determined by ratio of 'width'/'height' to 'viewBox'. + ''' + docScale = self.svg.scale + docWidth = self.svg.viewport_width + docHeight = self.svg.viewport_height + #inkex.utils.debug("Document scale (x/y)={:0.3f}".format(docScale)) + #inkex.utils.debug("Document width={:0.3f}".format(docWidth)) + vxMin, vyMin, vxMax, vyMax = self.svg.get_viewbox() + vxTotal = vxMax - vxMin + vyTotal = vyMax - vyMin + vScaleX = self.svg.unittouu(str(vxTotal / docWidth) + doc_units) + vScaleXpx = self.svg.unittouu(str(vxTotal / docWidth) + "px") + #vScaleY = vyTotal / docHeight #should/must be the same as vScaleX value + #inkex.utils.debug(vxTotal) + #inkex.utils.debug(vyTotal) + #inkex.utils.debug(vScaleY) + inkex.utils.debug("Document scale (x/y): {:0.5f}{} ({:0.5f}px)".format(vScaleX, doc_units, vScaleXpx)) + if round(vScaleX, 5) != 1.0: + inkex.utils.debug("WARNING: Document scale not 100%!") + scaleX = namedView.get('scale-x') + if scaleX is not None: + inkex.utils.debug("WARNING: Document has scale-x attribute with value={}".format(scaleX)) + + ''' + The SVG format is highly complex and offers a lot of possibilities. Most things of SVG we do not + need for a laser cutter. Usually we need svg:path and maybe svg:image; we can drop a lot of stuff + like svg:defs, svg:desc, gradients, etc. + ''' + nonShapes = [] + shapes = [] #this may contains paths, rectangles, circles, groups and more + for element in selected: + if not isinstance(element, inkex.ShapeElement): + nonShapes.append(element) + else: + shapes.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} shape elements in total".format(len(shapes))) + inkex.utils.debug("{} non-shape elements in total".format(len(nonShapes))) + for nonShape in nonShapes: + inkex.utils.debug("non-shape id={}".format(nonShape.get('id'))) + + + ''' + Nearly each laser job needs a bit of border to place the material inside the laser. Often + we have to fixate on vector grid, pin grid or task plate. Thus we need tapes or pins. So we + leave some borders off the actual part geometries. + ''' + if so.checks == "check_all" or so.bbox is True: + inkex.utils.debug("\n---------- Borders around all elements - minimum offset {} mm from each side".format(so.bbox_offset)) + bbox = inkex.BoundingBox() + for element in self.document.getroot().iter(tag=etree.Element): + if element != self.document.getroot() and isinstance(element, inkex.ShapeElement) and element.tag != inkex.addNS('use','svg') and element.get('inkscape:groupmode') != 'layer': #bbox fails for svg:use elements and layers + transform = inkex.Transform() + parent = element.getparent() + if parent is not None and isinstance(parent, inkex.ShapeElement): + transform = parent.composed_transform() + try: + if isinstance (element, inkex.TextElement) or isinstance (element, inkex.Tspan): + continue + else: + bbox += element.bounding_box(transform) + except Exception: + transform = element.composed_transform() + x1, y1 = transform.apply_to_point([0, 0]) + x2, y2 = transform.apply_to_point([1, 1]) + bbox += inkex.BoundingBox((x1, x2), (y1, y2)) + + if abs(bbox.width) == math.inf or abs(bbox.height) == math.inf: + inkex.utils.debug("bounding box could not be calculated. SVG seems to be empty.") + #else: + # inkex.utils.debug("bounding box is {}".format(bbox)) + inkex.utils.debug("bounding box is {}".format(bbox)) + page_width = self.svg.unittouu(self.document.getroot().attrib['width']) + width_height = self.svg.unittouu(self.document.getroot().attrib['height']) + fmm = self.svg.unittouu(str(so.bbox_offset) + "mm") + bb_left = round(bbox.left, 3) + bb_right = round(bbox.right, 3) + bb_top = round(bbox.top, 3) + bb_bottom = round(bbox.bottom, 3) + bb_width = round(bbox.width, 3) + bb_height = round(bbox.height, 3) + if bb_left >= fmm: + if so.show_issues_only is False: + inkex.utils.debug("left border... ok") + else: + inkex.utils.debug("left border... fail: {:0.3f} mm".format(self.svg.uutounit(bb_left, "mm"))) + + if bb_top >= fmm: + if so.show_issues_only is False: + inkex.utils.debug("top border... ok") + else: + inkex.utils.debug("top border... fail: {:0.3f} mm".format(self.svg.uutounit(bb_top, "mm"))) + + if bb_right + fmm <= page_width: + if so.show_issues_only is False: + inkex.utils.debug("right border... ok") + else: + inkex.utils.debug("right border... fail: {:0.3f} mm".format(self.svg.uutounit(bb_right, "mm"))) + + if bb_bottom + fmm <= width_height: + if so.show_issues_only is False: + inkex.utils.debug("bottom border... ok") + else: + inkex.utils.debug("bottom border... fail: {:0.3f} mm".format(self.svg.uutounit(bb_bottom, "mm"))) + if bb_width <= machineWidth: + if so.show_issues_only is False: + inkex.utils.debug("page width... ok") + else: + inkex.utils.debug("page width... fail: {:0.3f} mm".format(bb_width)) + if bb_height <= machineHeight: + if so.show_issues_only is False: + inkex.utils.debug("page height... ok") + else: + inkex.utils.debug("page height... fail: {:0.3f} mm".format(bb_height)) + + + ''' + We check for possible deep nested groups/layers, empty groups/layers or groups/layers with styles. + ''' + if so.checks == "check_all" or so.groups_and_layers is True: + inkex.utils.debug("\n---------- Groups and layers") + global md + md = 0 + def maxDepth(element, level): + global md + if (level == md): + md += 1 + for child in element: + maxDepth(child, level + 1) + maxDepth(self.document.getroot(), -1) + if so.show_issues_only is False: + inkex.utils.debug("Maximum group depth={}".format(md - 1)) + if md - 1 > so.nest_depth_max: + inkex.utils.debug("Warning: maximum allowed group depth reached: {}".format(so.nest_depth_max)) + groups = [] + layers = [] + for element in selected: + if element.tag == inkex.addNS('g','svg'): + if element.get('inkscape:groupmode') == 'layer': + layers.append(element) + else: + groups.append(element) + + if so.show_issues_only is False: + inkex.utils.debug("{} groups in total".format(len(groups))) + inkex.utils.debug("{} layers in total".format(len(layers))) + + #check for empty groups + for group in groups: + if len(group) == 0: + inkex.utils.debug("id={} is empty group".format(group.get('id'))) + + #check for empty layers + for layer in layers: + if len(layer) == 0: + inkex.utils.debug("id={} is empty layer".format(layer.get('id'))) + + ''' + Style scheme in svg. We can style elements by ... + - "style" attribute for elements like svg:path + - dedicated attributes for elements like svg:path + - "style" attributes or dedicated attributes at group level + - css class together with svg:style elements + For a cleaner file we should avoid to mess up. Best is to define styles + at svg:path level or using properly defined css classes + We can use "Cleanup Styles" and "Styles To Layers" extension to change this behaviour. + ''' + if so.checks == "check_all" or so.style_types is True: + inkex.utils.debug("\n---------- Style types") + groupStyles = [] + svgStyleElements = [] + styleInNonGroupLayerShapes = [] + dedicatedStylesInNonGroupLayerShapes = [] + dedicatedStyleDict = [] + dedicatedStyleDict.extend(['opacity', 'stroke', 'stroke-opacity', 'stroke-width', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'fill', 'fill-opacity']) + + for element in selected: + if element.tag == inkex.addNS('g','svg'): + if element.style is not None and element.style != "": #style may also be just empty (weird, but was validated on 21.12.2021) + groupStyles.append(element) + if element.tag == inkex.addNS('style', 'svg'): + svgStyleElements.append(element) + for element in shapes: + if element.tag != inkex.addNS('g','svg'): + if element.style is not None: + styleInNonGroupLayerShapes.append(element) + for dedicatedStyleItem in dedicatedStyleDict: + if element.attrib.has_key(str(dedicatedStyleItem)): + dedicatedStylesInNonGroupLayerShapes.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} groups/layers with style in total".format(len(groupStyles))) + inkex.utils.debug("{} svg:style elements in total".format(len(svgStyleElements))) + inkex.utils.debug("{} shapes using style attribute in total".format(len(svgStyleElements))) + inkex.utils.debug("{} shapes using dedicated style attributes in total".format(len(dedicatedStylesInNonGroupLayerShapes))) + for groupStyle in groupStyles: + inkex.utils.debug("group id={} has style".format(groupStyle.get('id'))) + for svgStyleElement in svgStyleElements: + inkex.utils.debug("id={} is svg:style element".format(svgStyleElement.get('id'))) + for styleInNonGroupLayerShape in styleInNonGroupLayerShapes: + inkex.utils.debug("id={} has style attribute".format(styleInNonGroupLayerShape.get('id'))) + for dedicatedStylesInNonGroupLayerShape in dedicatedStylesInNonGroupLayerShapes: + inkex.utils.debug("id={} used dedicated style attribute(s)".format(dedicatedStylesInNonGroupLayerShape.get('id'))) + + + ''' + Clones should be unlinked because they cause similar issues like transformations + ''' + if so.checks == "check_all" or so.clones is True: + inkex.utils.debug("\n---------- Clones (svg:use) - maybe unlink") + uses = [] + for element in selected: + if element.tag == inkex.addNS('use','svg'): + uses.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} svg:use clones in total".format(len(uses))) + for use in uses: + inkex.utils.debug("id={}".format(use.get('id'))) + + + ''' + Clip paths are neat to visualize things, but they do not perform a real path cutting. + Please perform real intersections to have an intact target geometry. + ''' + if so.checks == "check_all" or so.clippaths is True: + inkex.utils.debug("\n---------- Clippings (svg:clipPath) - please replace with real cut paths") + clipPaths = [] + for element in selected: + if element.tag == inkex.addNS('clipPath','svg'): + clipPaths.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} svg:clipPath in total".format(len(clipPaths))) + for clipPath in clipPaths: + inkex.utils.debug("id={}".format(clipPath.get('id'))) + + + ''' + Sometimes images look like vector but they are'nt. In case you dont want to perform engraving, either + check to drop or trace to vector paths + ''' + if so.checks == "check_all" or so.images is True: + inkex.utils.debug("\n---------- Images (svg:image) - maybe trace to svg") + images = [] + for element in selected: + if element.tag == inkex.addNS('image','svg'): + images.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} svg:image in total".format(len(images))) + for image in images: + inkex.utils.debug("image id={}".format(image.get('id'))) + + + ''' + Low level strokes cannot be properly edited in Inkscape (no node handles). Converting helps + ''' + if so.checks == "check_all" or so.lowlevelstrokes is True: + inkex.utils.debug("\n---------- Low level strokes (svg:line/polyline/polygon) - maybe convert to path") + lowlevels = [] + for element in selected: + if element.tag in (inkex.addNS('line','svg'), inkex.addNS('polyline','svg'), inkex.addNS('polygon','svg')): + lowlevels.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} low level strokes in total".format(len(lowlevels))) + for lowlevel in lowlevels: + inkex.utils.debug("id={}".format(lowlevel.get('id'))) + + + ''' + Texts cause problems when sharing with other people. You must ensure that everyone has the + font files installed you used. Convert to paths avoids this issue and guarantees same result + everywhere. + ''' + if so.checks == "check_all" or so.texts is True: + inkex.utils.debug("\n---------- Texts (should be converted to paths)") + texts = [] + for element in selected: + if element.tag == inkex.addNS('text','svg'): + texts.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} svg:text in total".format(len(texts))) + for text in texts: + inkex.utils.debug("id={}".format(text.get('id'))) + + + ''' + Filters on elements let Epilog Software Suite always think vectors should get to raster image data. That might be good sometimes, + but not in usual case. + ''' + if so.checks == "check_all" or so.filters is True: + inkex.utils.debug("\n---------- Filters (should be removed to keep vector characterism)") + + filter_elements = [] + for element in selected: + if element.tag == inkex.addNS('filter','svg'): + filter_elements.append(element) + filter_styles = [] + if so.show_issues_only is False: + inkex.utils.debug("{} filters (as svg:filter) in total".format(len(filter_elements))) + for filter_element in filter_elements: + inkex.utils.debug("id={}".format(filter_element.get('id'))) + + for element in selected: + filter_style = [element, element.style.get('filter')] + if filter_style[1] is None or filter_style[1] == "none": + filter_style[1] = "none" + if filter_style[1] != "none" and filter_style not in filter_styles: + filter_styles.append(filter_style) + if so.show_issues_only is False: + inkex.utils.debug("{} filters (in styles) in total".format(len(filter_styles))) + for filter_style in filter_styles: + inkex.utils.debug("id={}, filter={}".format(filter_style[0].get('id'), filter_style[1])) + + + ''' + The more stroke colors the more laser job configuration is required. Reduce the SVG file + to a minimum of stroke colors to be quicker. Note that a None stroke might be same like #000000 but thats not guaranteed + ''' + if so.checks == "check_all" or so.stroke_colors is True: + inkex.utils.debug("\n---------- Stroke colors ({} are allowed)".format(so.stroke_colors_max)) + strokeColors = [] + for element in shapes: + strokeColor = element.style.get('stroke') + if strokeColor not in strokeColors: #we also add None (default value is #000000 then) and "none" values. + strokeColors.append(strokeColor) + if so.show_issues_only is False: + inkex.utils.debug("{} different stroke colors in total".format(len(strokeColors))) + if len(strokeColors) > so.stroke_colors_max: + for strokeColor in strokeColors: + inkex.utils.debug("stroke color {}".format(strokeColor)) + + + ''' + Different stroke widths might behave the same like different stroke colors. Reduce to a minimum set. + Ideally all stroke widths are set to 1 pixel. + ''' + if so.checks == "check_all" or so.stroke_widths is True: + inkex.utils.debug("\n---------- Stroke widths ({} are allowed)".format(so.stroke_widths_max)) + strokeWidths = [] + for element in shapes: + strokeWidth = element.style.get('stroke-width') + if strokeWidth not in strokeWidths: #we also add None and "none" values. Default width for None value seems to be 1px + strokeWidths.append(strokeWidth) + if so.show_issues_only is False: + inkex.utils.debug("{} different stroke widths in total".format(len(strokeWidths))) + if len(strokeWidths) > so.stroke_widths_max: + for strokeWidth in strokeWidths: + if strokeWidth is None: + inkex.utils.debug("stroke width default (system standard value)") + elif strokeWidth == "none": + inkex.utils.debug("stroke width none (invisible)") + else: + swConverted = self.svg.uutounit(float(self.svg.unittouu(strokeWidth))) #possibly w/o units. we unify to some internal float. The value "none" converts to 0.0 + inkex.utils.debug("stroke width {}px ({}mm)".format( + round(self.svg.uutounit(swConverted, "px"),4), + round(self.svg.uutounit(swConverted, "mm"),4), + )) + + + ''' + Cosmetic dashes cause simulation issues and are no real cut paths. It's similar to the thing + with clip paths. Please convert lines to real dash segments if you want to laser them. + ''' + if so.checks == "check_all" or so.cosmestic_dashes is True: + inkex.utils.debug("\n---------- Cosmetic dashes - should be converted to paths") + strokeDasharrays = [] + for element in shapes: + strokeDasharray = element.style.get('stroke-dasharray') + if strokeDasharray is not None and strokeDasharray != 'none' and strokeDasharray not in strokeDasharrays: + strokeDasharrays.append(strokeDasharray) + if so.show_issues_only is False: + inkex.utils.debug("{} different stroke dash arrays in total".format(len(strokeDasharrays))) + for strokeDasharray in strokeDasharrays: + inkex.utils.debug("stroke dash array {}".format(strokeDasharray)) + + + ''' + Shapes/paths with the same color like the background, 0% opacity, etc. lead to strange + laser cutting results, like duplicated edges, enlarged laser times and more. Please double + check for such occurences. + Please transfer styles from layers/groups level to element level! You can use "Cleanup Styles" extension to do that + ''' + if so.checks == "check_all" or so.invisible_shapes is True: + inkex.utils.debug("\n---------- Invisible shapes") + invisibles = [] + for element in shapes: + if element.tag not in (inkex.addNS('tspan','svg')) and element.get('inkscape:groupmode') != 'layer' and not isinstance(element, inkex.Group): + strokeAttr = element.get('stroke') #same information could be in regular attribute instead nested in style attribute + if strokeAttr is None or strokeAttr == "none": + strokeVis = 0 + elif strokeAttr in ('#ffffff', 'white', 'rgb(255,255,255)'): + strokeVis = 0 + else: + strokeVis = 1 + stroke = element.style.get('stroke') + if stroke is not None: + if stroke == "none": + strokeVis = 0 + elif stroke in ('#ffffff', 'white', 'rgb(255,255,255)'): + strokeVis = 0 + else: + strokeVis = 1 + + + strokeWidthAttr = element.get('stroke-width') #same information could be in regular attribute instead nested in style attribute + if strokeWidthAttr == "none": + widthVis = 0 + elif strokeWidthAttr is not None and self.svg.unittouu(strokeWidthAttr) < 0.005: #really thin (0,005pc = 0,080px) + widthVis = 0 + else: + widthVis = 1 + stroke_width = element.style.get('stroke-width') + if stroke_width is not None: + if stroke_width == "none": + widthVis = 0 + elif stroke_width is not None and self.svg.unittouu(stroke_width) < 0.005: #really thin (0,005pc = 0,080px) + widthVis = 0 + else: + widthVis = 1 + + + strokeOpacityAttr = element.get('stroke-opacity') #same information could be in regular attribute instead nested in style attribute + if strokeOpacityAttr == "none": + strokeOpacityVis = 0 + elif strokeOpacityAttr is not None and self.svg.unittouu(strokeOpacityAttr) < 0.05: #nearly invisible (<5% opacity) + strokeOpacityVis = 0 + else: + strokeOpacityVis = 1 + stroke_opacity = element.style.get('stroke-opacity') + if stroke_opacity is not None: + if stroke_opacity == "none": #none means visible! + strokeOpacityVis = 1 + elif stroke_opacity is not None and self.svg.unittouu(stroke_opacity) < 0.05: #nearly invisible (<5% opacity) + strokeOpacityVis = 0 + else: + strokeOpacityVis = 1 + + + if pagecolor == '#ffffff': + invisColors = [pagecolor, 'white', 'rgb(255,255,255)'] + else: + invisColors = [pagecolor] #we could add some parser to convert pagecolor to rgb/hsl/cmyk + fillAttr = element.get('fill') #same information could be in regular attribute instead nested in style attribute + if fillAttr is None or fillAttr == "none": + fillVis = 0 + elif fillAttr in invisColors: + fillVis = 0 + else: + fillVis = 1 + fill = element.style.get('fill') + if fill is not None: + if fill == "none": #none means invisible! (opposite of stroke behaviour) + fillVis = 0 + elif fill in invisColors: + fillVis = 0 + else: + fillVis = 1 + + + fillOpacityAttr = element.get('fill-opacity') #same information could be in regular attribute instead nested in style attribute + if fillOpacityAttr == "none": + fillOpacityVis = 0 + elif strokeOpacityAttr is not None and self.svg.unittouu(fillOpacityAttr) < 0.05: #nearly invisible (<5% opacity) + fillOpacityVis = 0 + else: + fillOpacityVis = 1 + fill_opacity = element.style.get('fill-opacity') + if fill_opacity is not None: + if fill_opacity == "none": + fillOpacityVis = 0 + elif fill_opacity is not None and self.svg.unittouu(fill_opacity) < 0.05: #nearly invisible (<5% opacity) + fillOpacityVis = 0 + else: + fillOpacityVis = 1 + + + display = element.style.get('display') + if display == "none": + displayVis = 0 + else: + displayVis = 1 + displayAttr = element.get('display') #same information could be in regular attribute instead nested in style attribute + if displayAttr == "none": + displayAttrVis = 0 + else: + displayAttrVis = 1 + + + #check for svg:path elements which have consistent slope (straight lines) and no a defined fill and no stroke. such (poly)lines are still not visible + pathVis = 1 + if element.tag == inkex.addNS('path','svg') and fillVis == 1 and strokeVis == 0: + segments = element.path.to_arrays() + chars = set('aAcCqQtTsS') + if not any((c in chars) for c in str(element.path)): #skip beziers (we only check for polylines) + slopes = [] + for i in range(0, len(segments)): + if i > 0: + if segments[i][0].lower() == 'z' or segments[i-1][0].lower() == 'z': + continue #skip closed contours in combined path + x1, y1, x2, y2 = segments[i-1][1][0], segments[i-1][1][1], segments[i][1][0], segments[i][1][1] + if x1 < x2: + p0 = [x1, y1] + p1 = [x2, y2] + else: + p0 = [x2, y2] + p1 = [x1, y1] + dx = p1[0] - p0[0] + if dx == 0: + slope = sys.float_info.max #vertical + else: + slope = (p1[1] - p0[1]) / dx + slope = round(slope, 6) + if slope not in slopes: + slopes.append(slope) + if len(slopes) < 2: + pathVis = 0 + + if element.style is not None: #f if the style attribute is not set at all, the element will be visible with default black color fill and w/o stroke + if (strokeVis == 0 or widthVis == 0 or strokeOpacityVis == 0): + strokeInvis = True + else: + strokeInvis = False + if (fillVis == 0 or fillOpacityVis == 0): + fillInvis = True + else: + fillInvis = False + flags = "id={},strokeVis={},widthVis={},strokeOpacityVis={}=>strokeInvisble:{}|fillVis={},fillOpacityVis={}=>fillInvisble:{}|displayVis={},displayAttrVis=, {}|pathVis={}"\ + .format(element.get('id'), strokeVis, widthVis, strokeOpacityVis, strokeInvis, fillVis, fillOpacityVis, fillInvis, displayVis, displayAttrVis, pathVis) + if strokeInvis is True and fillInvis is True: + if element not in invisibles: + invisibles.append(flags) + if displayVis == 0 or displayAttrVis == 0: + if element not in invisibles: + invisibles.append(flags) + if pathVis == 0: + if element not in invisibles: + invisibles.append(flags) + if so.show_issues_only is False: + inkex.utils.debug("{} invisible shapes in total".format(len(invisibles))) + for invisible in invisibles: + inkex.utils.debug(invisible) + + + ''' + Additionally, stroke opacities less than 1.0 cause problems in most laser softwares. Please + adjust all strokes to use full opacity. + ''' + if so.checks == "check_all" or so.stroke_opacities is True: + inkex.utils.debug("\n---------- Objects with stroke transparencies < 1.0 - should be set to 1.0") + transparencies = [] + for element in shapes: + stroke_opacity = element.style.get('stroke-opacity') + if stroke_opacity is not stroke_opacity and stroke_opacity not in transparencies: + if stroke_opacity != "none": + if float(stroke_opacity) < 1.0: + transparencies.append([element, stroke_opacity]) + if so.show_issues_only is False: + inkex.utils.debug("{} objects with stroke transparencies < 1.0 in total".format(len(transparencies))) + for transparency in transparencies: + inkex.utils.debug("id={}, transparency={}".format(transparency[0].get('id'), transparency[1])) + + + ''' + We look for paths which are just points. Those are useless in case of lasercutting. + Note: this scan only works for paths, not for subpaths. If so, you need to break apart before + ''' + if so.checks == "check_all" or so.pointy_paths is True: + inkex.utils.debug("\n---------- Pointy paths - should be deleted") + pointyPaths = [] + for element in shapes: + if isinstance(element, inkex.PathElement): + p = element.path + commandsCoords = p.to_arrays() + if len(commandsCoords) == 1 or \ + (len(commandsCoords) == 2 and commandsCoords[0][1] == commandsCoords[1][1]) or \ + (len(commandsCoords) == 2 and commandsCoords[-1][0] == 'Z') or \ + (len(commandsCoords) == 3 and commandsCoords[0][1] == commandsCoords[1][1] and commandsCoords[2][1] == 'Z'): + pointyPaths.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} pointy paths in total".format(len(pointyPaths))) + for pointyPath in pointyPaths: + inkex.utils.debug("id={}".format(pointyPath.get('id'))) + + + ''' + Transformations often lead to wrong stroke widths or mis-rendering in end software. The best we + can do with a final SVG is to remove all relative translations, rotations and scalings. We should + apply absolute coordinates only. + ''' + if so.checks == "check_all" or so.transformations is True: + inkex.utils.debug("\n---------- Transformations - should be applied to absolute") + transformations = [] + for element in shapes: + if element.get('transform') is not None: + transformations.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} transformation in total".format(len(transformations))) + for transformation in transformations: + inkex.utils.debug("transformation in id={}".format(transformation.get('id'))) + + ''' + Really short paths can cause issues with laser cutter mechanics and should be avoided to + have healthier stepper motor belts, etc. + ''' + if so.checks == "check_all" or so.short_paths is True: + inkex.utils.debug("\n---------- Short paths (< {} mm)".format(so.short_paths_min)) + shortPaths = [] + totalLength = 0 + totalDropLength = 0 + for element in shapes: + if isinstance(element, inkex.PathElement): + slengths, stotal = csplength(element.path.transform(element.composed_transform()).to_superpath()) + totalLength += stotal + if stotal < self.svg.unittouu(str(so.short_paths_min) + "mm"): + shortPaths.append([element, stotal]) + totalDropLength += stotal + if so.show_issues_only is False: + inkex.utils.debug("{} short paths in total".format(len(shortPaths))) + if totalDropLength > 0: + inkex.utils.debug("{:0.2f}% of total ({:0.2f} mm /{:0.2f} mm)".format(totalDropLength / totalLength, self.svg.uutounit(str(totalDropLength), "mm"), self.svg.uutounit(str(totalLength), "mm"))) + for shortPath in shortPaths: + inkex.utils.debug("id={}, length={}mm".format(shortPath[0].get('id'), round(self.svg.uutounit(str(shortPath[1]), "mm"), 3))) + + ''' + Really short paths can cause issues with laser cutter mechanics and should be avoided to + have healthier stepper motor belts, etc. + + Peck Sidara from Epilog: + "Most of the acceleration of speed occurs from the 1-20% range, there is a difference between say 30% and 90%speed + but due to the many variables (length of nodes, shape and contour of nodes), you may not see a noticable difference in time. + Additional variables include acceleration, deceleration and how our laser handles/translates the vector data." + ''' + if so.checks == "check_all" or so.cutting_estimation is True: + inkex.utils.debug("\n---------- Cutting time estimation (Epilog Lasers)") + totalCuttingLength = 0 + totalTravelLength = 0 + cuttingPathCount = 0 + travelPathCount = 0 + + for element in shapes: + if isinstance(element, inkex.PathElement): + slengths, stotal = csplength(element.path.transform(element.composed_transform()).to_superpath()) + if "-travelLine" in element.get('id'): #we use that id scheme together with the extension "Draw Directions / Travel Moves" + totalTravelLength += stotal + travelPathCount += 1 + elif "markerId-" in element.get('id'): + pass #we skip the path "markerId-", possibly generated by the extension "Draw Directions / Travel Moves + else: + totalCuttingLength += stotal + cuttingPathCount += 1 + totalLength = totalCuttingLength + totalTravelLength + v_travel = so.max_travel_speed #this is always at maximum + inkex.utils.debug("total cutting paths={}".format(cuttingPathCount)) + inkex.utils.debug("total travel paths={}".format(travelPathCount)) + inkex.utils.debug("(measured) cutting length (mm) = {:0.2f} mm".format(self.svg.uutounit(str(totalCuttingLength), "mm"), self.svg.uutounit(str(totalCuttingLength), "mm"))) + inkex.utils.debug("(measured) travel length (mm) = {:0.2f} mm".format(self.svg.uutounit(str(totalTravelLength), "mm"), self.svg.uutounit(str(totalTravelLength), "mm"))) + inkex.utils.debug("(measured) total length (mm) = {:0.2f} mm".format(self.svg.uutounit(str(totalLength), "mm"), self.svg.uutounit(str(totalLength), "mm"))) + inkex.utils.debug("travel speed={:06.2f}mm/s".format(v_travel)) + ''' from https://www.epiloglaser.com/assets/downloads/fusion-material-settings.pdf + "Speed Settings: The speed setting scale of 1% to 100% is not linear – + i.e. 100% speed will not be twice as fast as 50% speed. This non-linear + scale is very useful in compensating for the different factors that affect engraving time." + ''' + speedFactors = [] + try: + for speed in re.findall(r"[+]?\d*\.\d+|\d+", self.options.cutting_speedfactors): #allow only positive values + if float(speed) > 0: + speedFactors.append(float(speed)) + speedFactors = sorted(speedFactors)[::-1] + except: + inkex.utils.debug("Error parsing cutting estimation speeds. Please try again!") + exit(1) + for speedFactor in speedFactors: + speedFactorR = speedFactor / 100.0 + adjusted_speed = 480.0 / so.max_cutting_speed #empiric - found out by trying for hours ... + empiric_scale = 1 + (speedFactorR**2) / 15.25 #empiric - found out by trying for hours ... + v_cut = so.max_cutting_speed * speedFactorR + tsec_cut = (self.svg.uutounit(str(totalCuttingLength)) / (adjusted_speed * so.max_cutting_speed * speedFactorR)) * empiric_scale + tsec_travel = self.svg.uutounit(str(totalTravelLength)) / v_travel + tsec_total = so.job_time_offset + tsec_cut + tsec_travel + minutes, seconds = divmod(tsec_total, 60) # split the seconds to minutes and seconds + seconds_for_price = seconds + #round seconds up to 30 or 60 + if so.round_times is True: + if seconds_for_price < 30: + seconds_for_price = 30 + if seconds_for_price > 30 and seconds_for_price != 60: + seconds_for_price = 60 + + partial_minutes = round(seconds_for_price/60 * 2) / 2 + costs = so.price_per_minute_gross * (minutes + partial_minutes) + if "{:02.0f}".format(seconds) == "60": #for formatting reasons + seconds = 0 + minutes += 1 + inkex.utils.debug("@{:05.1f}% (cut={:06.2f}mm/s > {:03.0f}min {:02.0f}sec | cost={:02.0f}€".format(speedFactor, v_cut, minutes, seconds, costs)) + + + ''' Measurements from Epilog Software Suite + We are using a huge SVG graphic with 100 meters (=100.000 mm) of lines. + The following speeds are getting precalculated (travel moves = 0mm): + @ 100% = 13:45 = 825s -> 121,21mm/s + @ 090% = 15:12 = 912s -> 109,65mm/s + @ 080% = 17:01 = 1021s -> 97,94mm/s + @ 070% = 19:21 = 1161s -> 86,13mm/s + @ 060% = 22:28 = 1348s -> 74,18mm/s + @ 050% = 26:49 = 1609s -> 62,15mm/s + @ 040% = 33:21 = 2001s -> 49,98mm/s + @ 030% = 44:13 = 2653s -> 37,69mm/s + @ 020% = 65:51 = 3951s -> 25,31mm/s + @ 010% = 130:52 = 7852s -> 12,74mm/s + @ 009% = 145:21 = 8721s -> 11,47mm/s + @ 008% = 163:27 = 9807s -> 10,20mm/s + @ 007% = 186:44 = 11204s -> 8,93mm/s + @ 006% = 217:48 = 13068s -> 7,65mm/s + @ 005% = 261:18 = 15678s -> 6,38mm/s + @ 004% = 326:34 = 19594s -> 5,10mm/s + @ 003% = 435:21 = 26121s -> 3,83mm/s + @ 002% = 652:57 = 39177s -> 2,55mm/s + @ 001% = 1305:49 = 78349s -> 1,28mm/s + + It does not matter how slow we configure the laser, the job time estimation always has the same amount of travel time + (if we have some travel moves to perform), so the travel speed is always constant. The max. travel speed of Fusion Pro 32 + is between 425mm/s and 460mm/s (measured by Mario by hand at different laser jobs). + If the laser is in X=0 Y=0 the jobs needs ~2 seconds to start moving and firing the laser. We use this as constant offset + ''' + + ''' + Paths with a high amount of nodes will cause issues because each node means slowing down/speeding up the laser mechanics + ''' + if so.checks == "check_all" or so.nodes_per_path is True: + inkex.utils.debug("\n---------- Heavy node-loaded paths (allowed: {} node(s) per {} mm) - should be simplified".format(so.nodes_per_path_max, round(so.nodes_per_path_interval, 3))) + heavyPaths = [] + for element in shapes: + if isinstance(element, inkex.PathElement): + slengths, stotal = csplength(element.path.transform(element.composed_transform()).to_superpath()) + nodes = len(element.path) + if stotal > 0: #ignore pointy paths, which might generate zero length paths. Use the pointy path check to find them! + if nodes / stotal > so.nodes_per_path_max / self.svg.unittouu(str(so.nodes_per_path_interval) + "mm"): + heavyPaths.append([element, nodes, stotal]) + if so.show_issues_only is False: + inkex.utils.debug("{} Heavy node-loaded paths in total".format(len(heavyPaths))) + for heavyPath in heavyPaths: + inkex.utils.debug("id={}, nodes={}, length={}mm, density={}nodes/mm".format( + heavyPath[0].get('id'), + heavyPath[1], + round(self.svg.uutounit(str(heavyPath[2]), "mm"), 3), + round(heavyPath[1] / self.svg.uutounit(str(heavyPath[2]), "mm"), 3) + ) + ) + + ''' + Elements outside canvas or touching the border. These are critical because they won't be lasered or not correctly lasered + ''' + if so.checks == "check_all" or so.elements_outside_canvas is True: + inkex.utils.debug("\n---------- Elements outside canvas or touching the border") + elementsOutside = [] + for element in shapes: + if element.tag != inkex.addNS('g', 'svg'): + ebbox = element.bounding_box(element.composed_transform()) + if ebbox is not None: #pointy paths for example could generate non-bbox shapes. So we ignore them here + precision = 3 + #inkex.utils.debug("{} | bbox: left = {:0.3f} right = {:0.3f} top = {:0.3f} bottom = {:0.3f}".format(element.get('id'), ebbox.left, ebbox.right, ebbox.top, ebbox.bottom)) + #pagew = round(self.svg.unittouu(self.svg.get('width')), precision) + #pageh = round(self.svg.unittouu(self.svg.get('height')), precision) + vxMin, vyMin, vxMax, vyMax = self.svg.get_viewbox() + pagew = round(vxMax - vxMin, precision) + pageh = round(vyMax - vyMin, precision) + + if round(ebbox.right, precision) == 0 or \ + round(ebbox.left, precision) == pagew or \ + round(ebbox.top, precision) == 0 or \ + round(ebbox.bottom, precision) == pageh: + elementsOutside.append([element, "touching"]) + elif \ + round(ebbox.right, precision) < 0 or \ + round(ebbox.left, precision) > pagew or \ + round(ebbox.top, precision) < 0 or \ + round(ebbox.bottom, precision) > pageh: + elementsOutside.append([element, "fully outside"]) + else: #fully inside or partially inside/outside. we check if one or more corners is outside the canvas + rightOutside = False + leftOutside = False + topOutside = False + bottomOutside = False + if round(ebbox.right, precision) < 0 or round(ebbox.right, precision) > pagew: + rightOutside = True + if round(ebbox.left, precision) < 0 or round(ebbox.left, precision) > pagew: + leftOutside = True + if round(ebbox.top, precision) < 0 or round(ebbox.top, precision) > pageh: + topOutside = True + if round(ebbox.bottom, precision) < 0 or round(ebbox.bottom, precision) > pageh: + bottomOutside = True + if rightOutside is True or leftOutside is True or topOutside is True or bottomOutside is True: + elementsOutside.append([element, "partially outside"]) + if so.show_issues_only is False: + inkex.utils.debug("{} Elements outside canvas or touching the border in total".format(len(elementsOutside))) + for elementOutside in elementsOutside: + inkex.utils.debug("id={}, status={}".format( + elementOutside[0].get('id'), + elementOutside[1] + ) + ) + + + ''' + Shapes like rectangles, ellipses, arcs, spirals should be converted to svg:path to have more + convenience in the file + ''' + if so.checks == "check_all" or so.non_path_shapes is True: + inkex.utils.debug("\n---------- Non-path shapes - should be converted to paths") + nonPathShapes = [] + for element in shapes: + if not isinstance(element, inkex.PathElement) and not isinstance(element, inkex.Group): + nonPathShapes.append(element) + if so.show_issues_only is False: + inkex.utils.debug("{} non-path shapes in total".format(len(nonPathShapes))) + for nonPathShape in nonPathShapes: + inkex.utils.debug("id={}".format(nonPathShape.get('id'))) + + exit(0) + +if __name__ == '__main__': + LaserCheck().run() \ No newline at end of file diff --git a/extensions/fablabchemnitz/laser_check/meta.json b/extensions/fablabchemnitz/laser_check/meta.json new file mode 100644 index 0000000..0255886 --- /dev/null +++ b/extensions/fablabchemnitz/laser_check/meta.json @@ -0,0 +1,20 @@ +[ + { + "name": "Laser Check", + "id": "fablabchemnitz.de.laser_check", + "path": "laser_check", + "dependent_extensions": null, + "original_name": "Laser Check", + "original_id": "fablabchemnitz.de.laser_check", + "license": "GNU GPL v3", + "license_url": "", + "comment": "", + "source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/laser_check", + "fork_url": null, + "documentation_url": "https://stadtfabrikanten.org/display/IFM/Laser+Check", + "inkscape_gallery_url": null, + "main_authors": [ + "github.com/vmario89" + ] + } +] \ No newline at end of file diff --git a/extensions/fablabchemnitz/stroke_font_creator/edit_stroke_font.inx b/extensions/fablabchemnitz/stroke_font_creator/edit_stroke_font.inx new file mode 100644 index 0000000..787e54a --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/edit_stroke_font.inx @@ -0,0 +1,54 @@ + + + Custom Stroke Font - Edit Stroke Font + fablabchemnitz.de.stroke_font_creator.edit_stroke_font + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + 1000 + + + + + + + + path + + + + + + + + \ No newline at end of file diff --git a/extensions/fablabchemnitz/stroke_font_creator/edit_stroke_font.py b/extensions/fablabchemnitz/stroke_font_creator/edit_stroke_font.py new file mode 100644 index 0000000..a920da4 --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/edit_stroke_font.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python3 + +''' +Inkscape extension to edit a stroke font +Dependencies: stroke_font_common.py and stroke_font_manager.py + +Copyright (C) 2019 Shrinivas Kulkarni + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +''' + +import inkex +from inkex import Effect, addNS +import sys, os + +sys.path.append(os.path.dirname(os.path.abspath(__file__))) +from stroke_font_common import CommonDefs, InkscapeCharDataFactory, createTempl, getAddFnTypes +from stroke_font_common import getTranslatedPath, formatStyle, getEtree, runEffect +from stroke_font_manager import FontData, xPath, xGlyphName + +class EditStrokeFont(Effect): + + def __init__(self): + Effect.__init__(self) + + addFn, typeFloat, typeInt, typeString, typeBool = getAddFnTypes(self) + + addFn( "--fontName", action = "store", type = typeString, dest = "fontName", \ + default = 'Script', help = "The custom font to edit") + + addFn('--rowCnt', action = 'store', type = typeInt, dest = 'rowCnt', \ + default = '5', help = 'Number of rows (horizontal guides) in the template') + + addFn('--fontSize', action = 'store', type = typeInt, dest = 'fontSize', \ + default = '100', help = 'Size of the source glyphs to be rendered') + + addFn("--tab", action = "store", type = typeString, dest = "tab", \ + default = "sampling", help = "Tab") + + def addElem(self, templLayer, editLayer, glyphIdx, posX, posY): + char = self.fontChars[glyphIdx] + charData = self.strokeFontData.glyphMap[char] + + d = getTranslatedPath(charData.pathStr, posX, posY) + + attribs = {'id':char, 'style':formatStyle(self.charStyle), \ + xPath:d, xGlyphName: charData.glyphName} + getEtree().SubElement(editLayer, addNS('path','svg'), attribs) + + return charData.rOffset + + + def effect(self): + rowCnt = self.options.rowCnt + fontName = self.options.fontName + fontSize = self.options.fontSize + + lineT = CommonDefs.lineT * fontSize + strokeWidth = 0.02 * fontSize + self.charStyle = { 'stroke': '#000000', 'fill': 'none', \ + 'stroke-width':strokeWidth, 'stroke-linecap':'round', \ + 'stroke-linejoin':'round'} + + vgScaleFact = CommonDefs.vgScaleFact + + extPath = os.path.dirname(os.path.abspath(__file__)) + self.strokeFontData = FontData(extPath, fontName, fontSize, \ + InkscapeCharDataFactory()) + + self.fontChars = sorted(self.strokeFontData.glyphMap.keys()) + + glyphCnt = len(self.fontChars) + + createTempl(self.addElem, self, self.strokeFontData.extraInfo, rowCnt, \ + glyphCnt, vgScaleFact, True, lineT) + +runEffect(EditStrokeFont()) diff --git a/extensions/fablabchemnitz/stroke_font_creator/gen_stroke_font_data.inx b/extensions/fablabchemnitz/stroke_font_creator/gen_stroke_font_data.inx new file mode 100644 index 0000000..9bfa6ad --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/gen_stroke_font_data.inx @@ -0,0 +1,40 @@ + + + Custom Stroke Font - Generate Font Data + fablabchemnitz.de.stroke_font_creator.stroke_font_templ + + + + + + + + + 0 + + + + + + + path + + + + + + + + \ No newline at end of file diff --git a/extensions/fablabchemnitz/stroke_font_creator/gen_stroke_font_data.py b/extensions/fablabchemnitz/stroke_font_creator/gen_stroke_font_data.py new file mode 100644 index 0000000..1fbaf0a --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/gen_stroke_font_data.py @@ -0,0 +1,268 @@ +#!/usr/bin/env python3 + +''' +Inkscape extension to generate the data for the stroke font glyphs +designed in the current SVG. The current SVG must be generated with the +'Create Font Design Template' extension + +The data generated by this effect is used by the 'Render Text' extension, +to render text with the selected stroke font. + +Copyright (C) 2019 Shrinivas Kulkarni + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +''' + +import inkex, sys, os, re, math +from bezmisc import bezierlengthSimpson + +sys.path.append(os.path.dirname(os.path.abspath(__file__))) +from stroke_font_common import InkscapeCharData, CommonDefs, runEffect, getCubicSuperPath, \ + InkscapeCharDataFactory, syncFontList, getAddFnTypes, getParsedPath, getTransformMat, \ + applyTransform, getCubicBoundingBox, formatSuperPath, getCubicLength, getCubicSuperPath +from stroke_font_manager import FontData, xGlyphName, xAscent, \ + xDescent, xCapHeight, xXHeight, xSpaceROff, xFontId, xSize, getDefaultExtraInfo + + +def getNearestGuide(guides, minVal, coIdx, hSeq = None): + if(guides == None or len(guides) == 0): + return None, None + + if(hSeq != None): + guides = [g for g in guides if int(g[0].get(CommonDefs.idAttribName).split('_')[1]) == hSeq] + + if(len(guides) == 1): + return guides[0] + + for i, guide in enumerate(guides): + pp = guide[1] + #pp format [['M',[x1,y1]],['L',[x2,y2]]] + diff = abs(pp[0][1][coIdx] - minVal) + + if(i > 0 and diff > minDiff): + return guides[i-1] + + minDiff = diff + + return guides[-1] + +def getFontSizeFromGuide(pp, vgScaleFact): + #pp format [['M',[x1,y1]],['L',[x2,y2]]] + lHeight = abs(float(pp[1][1][1]) - pp[0][1][1]) + return round(lHeight / vgScaleFact, 2) + +#Apply transform attribute (only straight lines, no arcs etc.) +def transformedParsedPath(elem): + pp = getParsedPath(elem.get('d')) + return pp + + # Following bloc takes care of the special condition where guides are transformed + # TODO: Make it working for 1.0 + + # ~ try: + # ~ transf = elem.get('transform') + # ~ mat = parseTransform(transf) + + # ~ #pp format [['M',[x1,y1]],['L',[x2,y2]]] + # ~ for dElem in pp: + # ~ for i in range(1, len(dElem)): + # ~ param = dElem[i] + # ~ t1 = [[param[x], param[x+1]] for x in range(0, len(param), 2)] + # ~ for t1Elem in t1: + # ~ simpletransform.applyTransformToPoint(mat, t1Elem) + # ~ dElem[i] = [x for l in t1 for x in l] + # ~ elem.set('d', simplepath.formatPath(pp)) + # ~ except: + # ~ #Don't break + # ~ pass + + # ~ return pp + +def updateFontData(strokeFontData, glyphPathElems, hGuides, lvGuides, rvGuides, rightOffsetType): + for elem in glyphPathElems: + char = elem.get(CommonDefs.idAttribName) + path = getCubicSuperPath(elem.get('d')) + + glyphName = elem.get(xGlyphName) + if(glyphName == None): glyphName = char + + #Just in case... + transf = elem.get('transform') + mat = getTransformMat(transf) + applyTransform(mat, path) + + xmin, xmax, ymin, ymax = getCubicBoundingBox(path) + + #Nearest to the bottom (ymax) + hg = getNearestGuide(hGuides, ymax, 1) + hseq = int(hg[0].get(CommonDefs.idAttribName).split('_')[1]) + hgp = hg[1] + #hgp format: [['M',[x1,y1]],['H',[x2,y2]]] + hgY = hgp[0][1][1] + + #Nearest to the left edge (xmin) + lvg = getNearestGuide(lvGuides, xmin, 0, hseq) + lvgp = lvg[1] + #lvgp format: [['M',[x1,y1]],['V',[x2,y2]]] + lvgX = lvgp[0][1][0] + + rvgX = None + if(rvGuides != None and len(rvGuides) > 0): + #Nearest to the right edge (xmax) + rvg = getNearestGuide(rvGuides, xmax, 0, hseq) + rvgp = rvg[1] + #rvgp format: [['M',[x1,y1]],['V',[x2,y2]]] + rvgX = rvgp[0][1][0] + + npath = getCubicSuperPath() + + maxLenSp = None + maxSpLen = 0 + + for subpath in path: + nsub = [] + spLen = 0 + for seg in subpath: + nseg = [] + for pt in seg: + x = round(pt[0] - lvgX, 2) + y = round(pt[1] - hgY, 2) + nseg.append([round(x, 4), round(y, 4)]) + nsub.append(nseg) + npath.append(nsub) + + #Calculate length only if needed + if(rightOffsetType == 'lastNode'): + spLen = getCubicLength(npath) + if(spLen > maxSpLen): + maxSpLen = spLen + maxLenSp = subpath + + if(rightOffsetType == 'lastNode'): + lastNode = maxLenSp[-1][-1] + rOffset = lastNode[0] - lvgX + elif(rvgX != None): + rOffset = rvgX - lvgX + else: + rOffset = xmax - lvgX + + rOffset = round(rOffset, 2) + + pathStr = formatSuperPath(npath) + strokeFontData.updateGlyph(char, rOffset, pathStr, glyphName) + +class GenStrokeFontData(inkex.Effect): + + def __init__(self): + inkex.Effect.__init__(self) + + addFn, typeFloat, typeInt, typeString, typeBool = getAddFnTypes(self) + + addFn('--fontName', action = 'store', type = typeString, dest = 'fontName', \ + help = 'Name of the font to be created') + + addFn('--rightOffsetType', action = 'store', type = typeString, \ + dest = 'rightOffsetType', help = 'Calculation of the right offset of the glyph') + + addFn('--spaceWidth', action = 'store', type = typeFloat, dest = 'spaceWidth', \ + help = 'Space width (enter only if changed') + + addFn('--crInfo', action = 'store', type = typeString, dest = 'crInfo', \ + help = 'Copyright and license details') + + addFn("--tab", action = "store", type = typeString, dest = "tab", \ + default = "sampling", help = "Tab") + + def getGuides(self, idName, idVal): + return [(pn, transformedParsedPath(pn)) for pn in self.document.xpath('//svg:path', \ + namespaces = inkex.NSS) if pn.get(idName) != None and \ + pn.get(idName).startswith(idVal)] + + def getFontExtraInfo(self): + info = {} + nodes = [node for node in self.document.xpath('//svg:' + CommonDefs.fontOtherInfo, \ + namespaces = inkex.NSS)] + if(len(nodes) > 0): + try: + node = nodes[0] + info[xAscent] = float(node.get(xAscent)) + info[xDescent] = float(node.get(xDescent)) + info[xCapHeight] = float(node.get(xCapHeight)) + info[xXHeight] = float(node.get(xXHeight)) + info[xSpaceROff] = float(node.get(xSpaceROff)) + info[xSize] = float(node.get(xSize)) + info[xFontId] = node.get(xFontId) + return info + except: + pass + return None + + def effect(self): + fontName = self.options.fontName + rightOffsetType = self.options.rightOffsetType + crInfo = self.options.crInfo + spaceWidth = self.options.spaceWidth + + #Guide is a tuple of xml elem and parsed path + hGuides = self.getGuides(CommonDefs.idAttribName, CommonDefs.hGuideIDPrefix) + + hGuides = sorted(hGuides, + key = lambda p: int(p[0].get(CommonDefs.idAttribName).split('_')[1])) + + lvGuides = self.getGuides(CommonDefs.idAttribName, CommonDefs.lvGuideIDPrefix) + lvGuides = sorted(lvGuides, key = lambda p: (p[0].get(CommonDefs.idAttribName))) + + rvGuides = self.getGuides(CommonDefs.idAttribName, CommonDefs.rvGuideIDPrefix) + rvGuides = sorted(rvGuides, key = lambda p: (p[0].get(CommonDefs.idAttribName))) + + if(len(lvGuides) == 0 or len(hGuides) == 0): + inkex.errormsg("Missing guides. Please use the Create Font Design " + \ + "Template extension to design the font.") + return + + extraInfo = self.getFontExtraInfo() + if(extraInfo == None): + fontSize = getFontSizeFromGuide(lvGuides[0][1], CommonDefs.vgScaleFact) + extraInfo = getDefaultExtraInfo(fontName, fontSize) + + fontSize = extraInfo[xSize] + + if(round(spaceWidth, 1) == 0): + spaceWidth = extraInfo[xSpaceROff] + if(round(spaceWidth, 1) == 0): spaceWidth = fontSize / 2 + + extraInfo[xSpaceROff] = spaceWidth + + extPath = os.path.dirname(os.path.abspath(__file__)) + strokeFontData = FontData(extPath, fontName, fontSize, InkscapeCharDataFactory()) + + strokeFontData.setCRInfo(crInfo) + strokeFontData.setExtraInfo(extraInfo) + + glyphPaths = [p for p in self.document.xpath('//svg:path', namespaces=inkex.NSS) \ + if (len(p.get(CommonDefs.idAttribName)) == 1)] + + updateFontData(strokeFontData, glyphPaths, hGuides, lvGuides, rvGuides, rightOffsetType) + + strokeFontData.updateFontXML() + + syncFontList(extPath) + +try: + runEffect(GenStrokeFontData()) +except: + inkex.errormsg('The data was not generated due to an error. ' + \ + 'If you are creating non-english glyphs then save the document, re-open and' + \ + 'try generating the font data once again.') diff --git a/extensions/fablabchemnitz/stroke_font_creator/meta.json b/extensions/fablabchemnitz/stroke_font_creator/meta.json new file mode 100644 index 0000000..0368b2b --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/meta.json @@ -0,0 +1,21 @@ +[ + { + "name": "Custom Stroke Font - ", + "id": "fablabchemnitz.de.stroke_font_creator.", + "path": "stroke_font_creator", + "dependent_extensions": null, + "original_name": "", + "original_id": "khema.stroke.fnt.gen.", + "license": "GNU GPL v2", + "license_url": "https://github.com/Shriinivas/inkscapestrokefont/blob/master/LICENSE", + "comment": "", + "source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/stroke_font_creator", + "fork_url": "https://github.com/Shriinivas/inkscapestrokefont", + "documentation_url": "https://stadtfabrikanten.org/display/IFM/Stroke+Font+Creator", + "inkscape_gallery_url": null, + "main_authors": [ + "github.com/Shriinivas", + "github.com/vmario89" + ] + } +] \ No newline at end of file diff --git a/extensions/fablabchemnitz/stroke_font_creator/render_stroke_font_text.inx b/extensions/fablabchemnitz/stroke_font_creator/render_stroke_font_text.inx new file mode 100644 index 0000000..8940d0d --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/render_stroke_font_text.inx @@ -0,0 +1,97 @@ + + + Custom Stroke Font - Render Text + fablabchemnitz.de.stroke_font_creator.render_text + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 20 + 1 + 1 + 1.5 + true + 5 + + + + + + + + + + + + + + + + + + 1 + + + + + + + all + + + + + + + + \ No newline at end of file diff --git a/extensions/fablabchemnitz/stroke_font_creator/render_stroke_font_text.py b/extensions/fablabchemnitz/stroke_font_creator/render_stroke_font_text.py new file mode 100644 index 0000000..4c6dca5 --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/render_stroke_font_text.py @@ -0,0 +1,247 @@ +#!/usr/bin/env python3 + +""" +Inkscape extension to render text with the stroke fonts. + +The path data used to render the text is generated by the +'Generate Font Data' extension + +The original concept is from Hershey Text extension (Copyright 2011, Windell H. Oskay), +that comes bundled with Inkscape + +This tool extends it with a number of rendering options like flow in boxes, +text alignment and char & line spacing + +Copyright 2019 Shrinivas Kulkarni + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +""" + +from inkex import addNS, NSS, Effect, errormsg +import os, sys +from simplepath import parsePath, translatePath, formatPath + +sys.path.append(os.path.dirname(os.path.abspath(__file__))) + +from stroke_font_common import CommonDefs, InkscapeCharDataFactory, getEtree, getAddFnTypes +from stroke_font_common import computePtInNode, getDecodedChars +from stroke_font_common import getViewCenter, runEffect, getSelectedElements +from stroke_font_common import formatStyle, getCharStyle, getTranslatedPath, getCurrentLayer + +from stroke_font_manager import DrawContext + +class InkscapeFontRenderer: + def __init__(self, layer, vc, strokeWidth): + self.layer = layer + self.g = None + self.currG = None + self.vc = computePtInNode(vc, layer) + + self.strokeWidth = strokeWidth + self.box = None + + def renderChar(self, charData, x, y, naChar): + d = charData.pathStr + style = getCharStyle(self.strokeWidth, naChar) + + d = getTranslatedPath(d, x, y) + + attribs = {'style':formatStyle(style), 'd':d} + getEtree().SubElement(self.currG, addNS('path','svg'), attribs) + + def beforeRender(self): + self.g = getEtree().SubElement(self.layer, 'g') + self.currG = self.g + + def newBoxToBeRendered(self, box, addPlane): + boxG = getEtree().SubElement(self.layer, 'g') + + if('transform' in box.attrib): + boxG.set('transform', box.get('transform')) + + box.getparent().remove(box) + + # order important! + self.g.append(box) + self.g.append(boxG) + self.currG = boxG + self.box = box + + def moveBoxInYDir(self, moveBy): + t = 'translate(' + str(0) + ',' + str(moveBy) + ')' + self.currG.set('transform', t) + + def centerInView(self, width, height): + t = 'translate(' + str(self.vc[0] - width) + ',' + str(self.vc[1] - height) + ')' + self.g.set('transform', t) + + def renderPlainText(self, text, size, x = None, y = None, objName = None): + textStyle = {'fill':'#000000', 'fill-opacity':'1'} + textStyle['font-size'] = str(size) + attribs = {'style':formatStyle(textStyle)} + if(x != None and y != None): + attribs['transform'] = 'translate(' + str(x) + ', '+ str(y)+')' + + textElem = getEtree().SubElement(self.g, addNS('text','svg'), attribs) + textElem.text = text + + def getBoxLeftTopRightBottom(self, box): + x1 = float(box.get('x')) + y1 = float(box.get('y')) + w = float(box.get('width')) + h = float(box.get('height')) + + x2 = w + x1 + y2 = h + y1 + + return x1, y1, x2, y2 + + def getBoxFromCoords(self, x1, y1, x2, y2): + attribs = {'x':str(x1), 'y':str(y1), 'width':str(x2-x1), 'height':str(y2-y1)} + attribs['style'] = self.box.get('style') + self.box = getEtree().SubElement(self.layer, addNS('rect','svg'), attribs) + return self.box + + def getDefaultStartLocation(self): + return 0, 0 + +class RenderStrokeFontText(Effect): + def __init__( self ): + Effect.__init__( self ) + + addFn, typeFloat, typeInt, typeString, typeBool = getAddFnTypes(self) + + addFn( '--tab', action = 'store', type = typeString, dest = 'tab', \ + default = 'splash', help = 'The active tab when Apply was pressed') + + addFn( '--action', action = 'store', type = typeString, dest = 'action', \ + default = 'render', help = 'The active option when Apply was pressed' ) + + addFn( '--text', action = 'store', type = typeString, dest = 'text', \ + default = 'Hello World', help = 'The input text to render') + + addFn( '--filePath', action = 'store', type = typeString, dest = 'filePath', \ + default = '', help = 'Complete path of the text file') + + addFn( '--fontName', action = 'store', type = typeString, dest = 'fontName', \ + default = 'Script', help = 'The custom font to be used for rendering') + + addFn('--fontSize', action = 'store', type = typeFloat, dest = 'fontSize', \ + default = '100', help = 'Size of the font') + + addFn('--charSpacing', action = 'store', type = typeFloat, dest = 'charSpacing', \ + default = '1', help = 'Spacing between characters') + + addFn('--wordSpacing', action = 'store', type = typeFloat, dest = 'wordSpacing', \ + default = '1', help = 'Spacing between words') + + addFn('--lineSpacing', action = 'store', type = typeFloat, dest = 'lineSpacing', \ + default = '1.5', help = 'Spacing between the lines') + + addFn('--flowInBox', action = 'store', type = typeBool, dest = 'flowInBox', \ + default = False, help = 'Fit the text in the selected rectangle objects') + + addFn('--margin', action = 'store', type = typeFloat, dest = 'margin', default = '.1', \ + help = 'Inside margin of text within the box') + + addFn( '--hAlignment', action='store', type = typeString, dest = 'hAlignment', \ + default = 'left', help='Horizontal text alignment within the box') + + addFn( '--vAlignment', action='store', type = typeString, dest = 'vAlignment', \ + default = 'none', help='Vertical text alignment within the box') + + addFn( '--expandDir', action='store', type = typeString, dest = 'expandDir', \ + default = 'x', help='Create new rectangles if text doesn\'t fit the selected ones') + + addFn('--expandDist', action = 'store', type = typeFloat, dest = 'expandDist', \ + default = True, help = 'Offset distance between the newly created rectangles') + + def effect(self): + fontName = self.options.fontName + fontSize = self.options.fontSize + filePath = self.options.filePath + action = self.options.action + + if(action == "renderTable"): + charSpacing = 1 + wordSpacing = 1 + lineSpacing = 2 + else: + charSpacing = self.options.charSpacing + wordSpacing = self.options.wordSpacing + lineSpacing = self.options.lineSpacing + + flowInBox = self.options.flowInBox + margin = self.options.margin + hAlignment = self.options.hAlignment + vAlignment = self.options.vAlignment + expandDir = self.options.expandDir + expandDist = self.options.expandDist + + if(expandDir == 'none'): + expandDir = None + expandDist = None + + extPath = os.path.dirname(os.path.abspath(__file__)) + + strokeWidth = 0.02 * fontSize + + layer = getCurrentLayer(self) + renderer = InkscapeFontRenderer(layer, getViewCenter(self), strokeWidth) + + context = DrawContext(extPath, fontName, fontSize, \ + charSpacing, wordSpacing, lineSpacing, InkscapeCharDataFactory(), renderer) + + if(not context.fontHasGlyphs()): + errormsg('No font data; please select a font and ' + \ + 'ensure that the list is synchronized') + return + + if(action == "renderTable"): + context.renderGlyphTable() + return + + if(action == "renderText"): + text = self.options.text + text = text.replace('\\n','\n').replace('\\\n','\\n') + text = getDecodedChars(text) + + elif(action == "renderFile"): + try: + readmode = 'rU' if CommonDefs.pyVer == 2 else 'r' + with open(filePath, readmode) as f: + text = f.read() + if(CommonDefs.pyVer == 2): text = unicode(text, 'utf-8') + except Exception as e: + errormsg("Error reading the file specified in Text File input box."+ str(e)) + return + + if(text[0] == u'\ufeff'): + text = text[1:] + + if(flowInBox == True): + selElems = getSelectedElements(self) + selIds = [selElems[key].get('id') for key in selElems.keys()] + rectNodes = [r for r in self.document.xpath('//svg:rect', \ + namespaces=NSS) if r.get('id') in selIds] + if(len(rectNodes) == 0): + errormsg(_("No rectangle objects selected.")) + return + context.renderCharsInSelBoxes(text, rectNodes, margin, hAlignment, vAlignment, \ + False, expandDir, expandDist) + else: + context.renderCharsWithoutBox(text) + +runEffect(RenderStrokeFontText()) diff --git a/extensions/fablabchemnitz/stroke_font_creator/stroke_font_common.py b/extensions/fablabchemnitz/stroke_font_creator/stroke_font_common.py new file mode 100644 index 0000000..9cd251f --- /dev/null +++ b/extensions/fablabchemnitz/stroke_font_creator/stroke_font_common.py @@ -0,0 +1,428 @@ +#!/usr/bin/env python3 + +''' +Defintion of Common functions and variables used by stroke font extensions + +Copyright (C) 2019 Shrinivas Kulkarni + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +''' + +import sys, os, fileinput, re, locale +from inkex import errormsg, addNS, NSS +from xml.dom.minidom import parse, Document +from math import ceil + +# TODO: Find inkscape version +try: + from lxml import etree + from inkex import Style, Boolean + from inkex.paths import Path, CubicSuperPath, Transform + from inkex import bezier + ver = 1.0 +except: + from inkex import etree + import simplestyle, cubicsuperpath, simplepath, simpletransform + from cubicsuperpath import CubicSuperPath + ver = 0.92 + try: + from simpletransform import computePointInNode + oldVersion = False + except: + oldVersion = True # older than 0.92 + +# sys path already includes the module folder +from stroke_font_manager import CharData, getFontNames, xAscent, \ + xDescent, xCapHeight, xXHeight, xSpaceROff, xFontId, xSize + +class CommonDefs: + inkVer = ver + pyVer = sys.version_info.major + + # inx filed that have the font list to be synchronized + inxFilesWithDynFont = ['render_stroke_font_text.inx', 'edit_stroke_font.inx'] + + vgScaleFact = 2. + lineT = .005 + + idAttribName = 'id' + hGuideIDPrefix = 'h_' + lvGuideIDPrefix = 'lv_' + rvGuideIDPrefix = 'rv_' + + fontOtherInfo = 'otherInfo' + + encoding = sys.stdin.encoding + if(encoding == 'cp0' or encoding is None): + encoding = locale.getpreferredencoding() + + +######### Function variants for 1.0 and 0.92 - Start ########## + +# Used only in 0.92 +def getPartsFromCubicSuper(csp): + parts = [] + for subpath in csp: + part = [] + prevBezPt = None + for i, bezierPt in enumerate(subpath): + if(prevBezPt != None): + seg = [prevBezPt[1], prevBezPt[2], bezierPt[0], bezierPt[1]] + part.append(seg) + prevBezPt = bezierPt + parts.append(part) + return parts + +def formatStyle(styleStr): + if(CommonDefs.inkVer == 1.0): + return str(Style(styleStr)) + else: + return simplestyle.formatStyle(styleStr) + +def getCubicSuperPath(d = None): + if(CommonDefs.inkVer == 1.0): + if(d == None): return CubicSuperPath([]) + return CubicSuperPath(Path(d).to_superpath()) + else: + if(d == None): return [] + return CubicSuperPath(simplepath.parsePath(d)) + +def getCubicLength(csp): + if(CommonDefs.inkVer == 1.0): + return bezier.csplength(csp)[1] + else: + parts = getPartsFromCubicSuper(cspath) + curveLen = 0 + for i, part in enumerate(parts): + for j, seg in enumerate(part): + curveLen += bezmisc.bezierlengthSimpson((seg[0], seg[1], seg[2], seg[3]), \ + tolerance = tolerance) + return curveLen + +def getCubicBoundingBox(csp): + if(CommonDefs.inkVer == 1.0): + bbox = csp.to_path().bounding_box() + return bbox.left, bbox.right, bbox.top, bbox.bottom + else: + return simpletransform.refinedBBox(csp) + +def formatSuperPath(csp): + if(CommonDefs.inkVer == 1.0): + return csp.__str__() + else: + return cubicsuperpath.formatPath(csp) + +def getParsedPath(d): + if(CommonDefs.inkVer == 1.0): + # Copied from Path.to_arrays for compatibility + return [[seg.letter, list(seg.args)] for seg in Path(d).to_absolute()] + else: + return simplepath.parsePath(d) + +def applyTransform(mat, csp): + if(CommonDefs.inkVer == 1.0): + csp.transform(mat) + else: + simpletransform.applyTransformToPath(mat, csp) + +def getTranslatedPath(d, posX, posY): + if(CommonDefs.inkVer == 1.0): + path = Path(d) + path.translate(posX, posY, inplace = True) + return path.to_superpath().__str__() + else: + path = simplepath.parsePath(d) + simplepath.translatePath(path, posX, posY) + return simplepath.formatPath(path) + +def getTransformMat(matAttr): + if(CommonDefs.inkVer == 1.0): + return Transform(matAttr) + else: + return simpletransform.parseTransform(matAttr) + +def getCurrentLayer(effect): + if(CommonDefs.inkVer == 1.0): + return effect.svg.get_current_layer() + else: + return effect.current_layer + +def getViewCenter(effect): + if(CommonDefs.inkVer == 1.0): + return effect.svg.namedview.center + else: + return effect.view_center + +def computePtInNode(vc, layer): + if(CommonDefs.inkVer == 1.0): + # ~ return (-Transform(layer.transform * mat)).apply_to_point(vc) + return (-layer.transform).apply_to_point(vc) + else: + if(oldVersion): + return list(vc) + else: + return computePointInNode(list(vc), layer) + +def getSelectedElements(effect): + if(CommonDefs.inkVer == 1.0): + return effect.svg.selected + else: + return effect.selected + +def getEtree(): + return etree + +def getAddFnTypes(effect): + if(CommonDefs.inkVer == 1.0): + addFn = effect.arg_parser.add_argument + typeFloat = float + typeInt = int + typeString = str + typeBool = Boolean + else: + addFn = effect.OptionParser.add_option + typeFloat = 'float' + typeInt = 'int' + typeString = 'string' + typeBool = 'inkbool' + + return addFn, typeFloat, typeInt, typeString, typeBool + +def runEffect(effect): + if(CommonDefs.inkVer == 1.0): effect.run() + else: effect.affect() + +######### Function variants for 1.0 and 0.92 - End ########## + +def getDecodedChars(chars): + if(CommonDefs.pyVer == 2): + return chars.decode(CommonDefs.encoding) + else: #if? + return chars + +def indentStr(cnt): + ostr = '' + for i in range(0, cnt): + ostr += ' ' + return ostr + +def getXMLItemsStr(sectMarkerLine, sectMarker, fontNames): + lSpaces = sectMarkerLine.find(sectMarker) + outStr = indentStr(lSpaces) + sectMarker + ' [start] -->\n' + for fName in fontNames: + outStr += indentStr(lSpaces + 4) + '' + fName + '\n' + outStr += indentStr(lSpaces) + sectMarker + ' [end] -->\n' + return outStr + +def syncFontList(extPath): + sectMarker = '', + cdataStart: '', + textStart: '', + textEnd: '', + indent: ' ', + regEntities: /[&'"<>]/g, + regValEntities: /[&"<>]/g, + encodeEntity: encodeEntity, + pretty: false +}; + +var entities = { + '&': '&', + '\'': ''', + '"': '"', + '>': '>', + '<': '<', + }; + +/** + * Convert SVG-as-JS object to SVG (XML) string. + * + * @param {Object} data input data + * @param {Object} config config + * + * @return {Object} output data + */ +module.exports = function(data, config) { + + return new JS2SVG(config).convert(data); + +}; + +function JS2SVG(config) { + + if (config) { + this.config = EXTEND(true, {}, defaults, config); + } else { + this.config = defaults; + } + + if (this.config.pretty) { + this.config.doctypeEnd += '\n'; + this.config.procInstEnd += '\n'; + this.config.commentEnd += '\n'; + this.config.cdataEnd += '\n'; + this.config.tagShortEnd += '\n'; + this.config.tagOpenEnd += '\n'; + this.config.tagCloseEnd += '\n'; + this.config.textEnd += '\n'; + } + + this.indentLevel = 0; + this.textContext = null; + +} + +function encodeEntity(char) { + return entities[char]; +} + +/** + * Start conversion. + * + * @param {Object} data input data + * + * @return {String} + */ +JS2SVG.prototype.convert = function(data) { + + var svg = ''; + + if (data.content) { + + this.indentLevel++; + + data.content.forEach(function(item) { + + if (item.elem) { + svg += this.createElem(item); + } else if (item.text) { + svg += this.createText(item.text); + } else if (item.doctype) { + svg += this.createDoctype(item.doctype); + } else if (item.processinginstruction) { + svg += this.createProcInst(item.processinginstruction); + } else if (item.comment) { + svg += this.createComment(item.comment); + } else if (item.cdata) { + svg += this.createCDATA(item.cdata); + } + + }, this); + + } + + this.indentLevel--; + + return { + data: svg, + info: { + width: this.width, + height: this.height + } + }; + +}; + +/** + * Create indent string in accordance with the current node level. + * + * @return {String} + */ +JS2SVG.prototype.createIndent = function() { + + var indent = ''; + + if (this.config.pretty && !this.textContext) { + for (var i = 1; i < this.indentLevel; i++) { + indent += this.config.indent; + } + } + + return indent; + +}; + +/** + * Create doctype tag. + * + * @param {String} doctype doctype body string + * + * @return {String} + */ +JS2SVG.prototype.createDoctype = function(doctype) { + + return this.config.doctypeStart + + doctype + + this.config.doctypeEnd; + +}; + +/** + * Create XML Processing Instruction tag. + * + * @param {Object} instruction instruction object + * + * @return {String} + */ +JS2SVG.prototype.createProcInst = function(instruction) { + + return this.config.procInstStart + + instruction.name + + ' ' + + instruction.body + + this.config.procInstEnd; + +}; + +/** + * Create comment tag. + * + * @param {String} comment comment body + * + * @return {String} + */ +JS2SVG.prototype.createComment = function(comment) { + + return this.config.commentStart + + comment + + this.config.commentEnd; + +}; + +/** + * Create CDATA section. + * + * @param {String} cdata CDATA body + * + * @return {String} + */ +JS2SVG.prototype.createCDATA = function(cdata) { + + return this.config.cdataStart + + cdata + + this.config.cdataEnd; + +}; + +/** + * Create element tag. + * + * @param {Object} data element object + * + * @return {String} + */ +JS2SVG.prototype.createElem = function(data) { + + // beautiful injection for obtaining SVG information :) + if ( + data.isElem('svg') && + data.hasAttr('width') && + data.hasAttr('height') + ) { + this.width = data.attr('width').value; + this.height = data.attr('height').value; + } + + // empty element and short tag + if (data.isEmpty()) { + + return this.createIndent() + + this.config.tagShortStart + + data.elem + + this.createAttrs(data) + + this.config.tagShortEnd; + + // non-empty element + } else { + var tagOpenStart = this.config.tagOpenStart, + tagOpenEnd = this.config.tagOpenEnd, + tagCloseStart = this.config.tagCloseStart, + tagCloseEnd = this.config.tagCloseEnd, + openIndent = this.createIndent(), + textIndent = '', + processedData = '', + dataEnd = ''; + + if (this.textContext) { + tagOpenStart = defaults.tagOpenStart; + tagOpenEnd = defaults.tagOpenEnd; + tagCloseStart = defaults.tagCloseStart; + tagCloseEnd = defaults.tagCloseEnd; + openIndent = ''; + } else if (data.isElem(textElem)) { + if (this.config.pretty) { + textIndent += openIndent + this.config.indent; + } + this.textContext = data; + } + + processedData += this.convert(data).data; + + if (this.textContext == data) { + this.textContext = null; + if (this.config.pretty) dataEnd = '\n'; + } + + return openIndent + + tagOpenStart + + data.elem + + this.createAttrs(data) + + tagOpenEnd + + textIndent + + processedData + + dataEnd + + this.createIndent() + + tagCloseStart + + data.elem + + tagCloseEnd; + + } + +}; + +/** + * Create element attributes. + * + * @param {Object} elem attributes object + * + * @return {String} + */ +JS2SVG.prototype.createAttrs = function(elem) { + + var attrs = ''; + + elem.eachAttr(function(attr) { + + attrs += ' ' + + attr.name + + this.config.attrStart + + String(attr.value).replace(this.config.regValEntities, this.config.encodeEntity) + + this.config.attrEnd; + + }, this); + + return attrs; + +}; + +/** + * Create text node. + * + * @param {String} text text + * + * @return {String} + */ +JS2SVG.prototype.createText = function(text) { + + return this.createIndent() + + this.config.textStart + + text.replace(this.config.regEntities, this.config.encodeEntity) + + (this.textContext ? '' : this.config.textEnd); + +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/jsAPI.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/jsAPI.js new file mode 100644 index 0000000..6355b90 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/jsAPI.js @@ -0,0 +1,256 @@ +'use strict'; + +var EXTEND = require('whet.extend'); + +var JSAPI = module.exports = function(data, parentNode) { + EXTEND(this, data); + if (parentNode) { + Object.defineProperty(this, 'parentNode', { + writable: true, + value: parentNode + }); + } +}; + +/** + * Perform a deep clone of this node. + * + * @return {Object} element + */ +JSAPI.prototype.clone = function() { + var node = this; + var nodeData = {}; + + Object.keys(node).forEach(function(key) { + if (key != 'content') { + nodeData[key] = node[key]; + } + }); + + // Deep-clone node data + // This is still faster than using EXTEND(true…) + nodeData = JSON.parse(JSON.stringify(nodeData)); + + // parentNode gets set to a proper object by the parent clone, + // but it needs to be true/false now to do the right thing + // in the constructor. + var clonedNode = new JSAPI(nodeData, !!node.parentNode); + + if (node.content) { + clonedNode.content = node.content.map(function(childNode) { + var clonedChild = childNode.clone(); + clonedChild.parentNode = clonedNode; + return clonedChild; + }); + } + + return clonedNode; +}; + +/** + * Determine if item is an element + * (any, with a specific name or in a names array). + * + * @param {String|Array} [param] element name or names arrays + * @return {Boolean} + */ +JSAPI.prototype.isElem = function(param) { + + if (!param) return !!this.elem; + + if (Array.isArray(param)) return !!this.elem && (param.indexOf(this.elem) > -1); + + return !!this.elem && this.elem === param; + +}; + +/** + * Renames an element + * + * @param {String} name new element name + * @return {Object} element + */ +JSAPI.prototype.renameElem = function(name) { + + if (typeof name == 'string' && name != '') + this.elem = this.local = name; + + return this; + +}; + +/** + * Determine if element is empty. + * + * @return {Boolean} + */ + JSAPI.prototype.isEmpty = function() { + + return !this.content || !this.content.length; + +}; + +/** + * Changes content by removing elements and/or adding new elements. + * + * @param {Number} start Index at which to start changing the content. + * @param {Number} n Number of elements to remove. + * @param {Array|Object} [insertion] Elements to add to the content. + * @return {Array} Removed elements. + */ + JSAPI.prototype.spliceContent = function(start, n, insertion) { + + if (arguments.length < 2) return []; + + if (!Array.isArray(insertion)) + insertion = Array.apply(null, arguments).slice(2); + + insertion.forEach(function(inner) { inner.parentNode = this }, this); + + return this.content.splice.apply(this.content, [start, n].concat(insertion)); + + +}; + +/** + * Determine if element has an attribute + * (any, or by name or by name + value). + * + * @param {String} [name] attribute name + * @param {String} [val] attribute value (will be toString()'ed) + * @return {Boolean} + */ + JSAPI.prototype.hasAttr = function(name, val) { + + if (!this.attrs || !Object.keys(this.attrs).length) return false; + + if (!arguments.length) return !!this.attrs; + + if (val !== undefined) return !!this.attrs[name] && this.attrs[name].value === val.toString(); + + return !!this.attrs[name]; + +}; + +/** + * Get a specific attribute from an element + * (by name or name + value). + * + * @param {String} name attribute name + * @param {String} [val] attribute value (will be toString()'ed) + * @return {Object|Undefined} + */ + JSAPI.prototype.attr = function(name, val) { + + if (!this.hasAttr() || !arguments.length) return undefined; + + if (val !== undefined) return this.hasAttr(name, val) ? this.attrs[name] : undefined; + + return this.attrs[name]; + +}; + +/** + * Get computed attribute value from an element + * + * @param {String} name attribute name + * @return {Object|Undefined} + */ + JSAPI.prototype.computedAttr = function(name, val) { + /* jshint eqnull: true */ + if (!arguments.length) return; + + for (var elem = this; elem && (!elem.hasAttr(name) || !elem.attr(name).value); elem = elem.parentNode); + + if (val != null) { + return elem ? elem.hasAttr(name, val) : false; + } else if (elem && elem.hasAttr(name)) { + return elem.attrs[name].value; + } + +}; + +/** + * Remove a specific attribute. + * + * @param {String|Array} name attribute name + * @param {String} [val] attribute value + * @return {Boolean} + */ + JSAPI.prototype.removeAttr = function(name, val, recursive) { + + if (!arguments.length) return false; + + if (Array.isArray(name)) name.forEach(this.removeAttr, this); + + if (!this.hasAttr(name)) return false; + + if (!recursive && val && this.attrs[name].value !== val) return false; + + delete this.attrs[name]; + + if (!Object.keys(this.attrs).length) delete this.attrs; + + return true; + +}; + +/** + * Add attribute. + * + * @param {Object} attr attribute object + * @return {Object} created attribute + */ + JSAPI.prototype.addAttr = function(attr) { + + if (!attr || + (attr && attr.name === undefined) || + (attr && attr.value === undefined) || + (attr && attr.prefix === undefined) || + (attr && attr.local === undefined) + ) return false; + + this.attrs = this.attrs || {}; + this.attrs[attr.name] = attr; + + return this.attrs[attr.name]; + +}; + +/** + * Iterates over all attributes. + * + * @param {Function} callback callback + * @param {Object} [context] callback context + * @return {Boolean} false if there are no any attributes + */ + JSAPI.prototype.eachAttr = function(callback, context) { + + if (!this.hasAttr()) return false; + + for (var name in this.attrs) { + callback.call(context, this.attrs[name]); + } + + return true; + +}; + +/** + * Tests whether some attribute passes the test. + * + * @param {Function} callback callback + * @param {Object} [context] callback context + * @return {Boolean} false if there are no any attributes + */ + JSAPI.prototype.someAttr = function(callback, context) { + + if (!this.hasAttr()) return false; + + for (var name in this.attrs) { + if (callback.call(context, this.attrs[name])) return true; + } + + return false; + +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/plugins.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/plugins.js new file mode 100644 index 0000000..dad3ace --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/plugins.js @@ -0,0 +1,98 @@ +'use strict'; + +/** + * Plugins engine. + * + * @module plugins + * + * @param {Object} data input data + * @param {Object} plugins plugins object from config + * @return {Object} output data + */ +module.exports = function(data, plugins) { + + plugins.forEach(function(group) { + + switch(group[0].type) { + case 'perItem': + data = perItem(data, group); + break; + case 'perItemReverse': + data = perItem(data, group, true); + break; + case 'full': + data = full(data, group); + break; + } + + }); + + return data; + +}; + +/** + * Direct or reverse per-item loop. + * + * @param {Object} data input data + * @param {Array} plugins plugins list to process + * @param {Boolean} [reverse] reverse pass? + * @return {Object} output data + */ +function perItem(data, plugins, reverse) { + + function monkeys(items) { + + items.content = items.content.filter(function(item) { + + // reverse pass + if (reverse && item.content && item.elem != 'foreignObject') { + monkeys(item); + } + + // main filter + var filter = true; + + for (var i = 0; filter && i < plugins.length; i++) { + var plugin = plugins[i]; + + if (plugin.active && plugin.fn(item, plugin.params) === false) { + filter = false; + } + } + + // direct pass + if (!reverse && item.content && item.elem != 'foreignObject') { + monkeys(item); + } + + return filter; + + }); + + return items; + + } + + return monkeys(data); + +} + +/** + * "Full" plugins. + * + * @param {Object} data input data + * @param {Array} plugins plugins list to process + * @return {Object} output data + */ +function full(data, plugins) { + + plugins.forEach(function(plugin) { + if (plugin.active) { + data = plugin.fn(data, plugin.params); + } + }); + + return data; + +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/svg2js.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/svg2js.js new file mode 100644 index 0000000..b9709a0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/svg2js.js @@ -0,0 +1,162 @@ +'use strict'; + +var SAX = require('sax'), + JSAPI = require('./jsAPI'); + +var config = { + strict: true, + trim: false, + normalize: true, + lowercase: true, + xmlns: true, + position: false +}; + +/** + * Convert SVG (XML) string to SVG-as-JS object. + * + * @param {String} data input data + * @param {Function} callback + */ +module.exports = function(data, callback) { + + var sax = SAX.parser(config.strict, config), + root = new JSAPI({ elem: '#document' }), + current = root, + stack = [root], + textContext = null; + + function pushToContent(content) { + + content = new JSAPI(content, current); + + (current.content = current.content || []).push(content); + + return content; + + } + + sax.ondoctype = function(doctype) { + + pushToContent({ + doctype: doctype + }); + + }; + + sax.onprocessinginstruction = function(data) { + + pushToContent({ + processinginstruction: data + }); + + }; + + sax.oncomment = function(comment) { + + pushToContent({ + comment: comment.trim() + }); + + }; + + sax.oncdata = function(cdata) { + + pushToContent({ + cdata: cdata + }); + + }; + + sax.onopentag = function(data) { + + var elem = { + elem: data.name, + prefix: data.prefix, + local: data.local + }; + + if (Object.keys(data.attributes).length) { + elem.attrs = {}; + + for (var name in data.attributes) { + elem.attrs[name] = { + name: name, + value: data.attributes[name].value, + prefix: data.attributes[name].prefix, + local: data.attributes[name].local + }; + } + } + + elem = pushToContent(elem); + current = elem; + + // Save info about tag to prevent trimming of meaningful whitespace + if (data.name == 'text' && !data.prefix) { + textContext = current; + } + + stack.push(elem); + + }; + + sax.ontext = function(text) { + + if (/\S/.test(text) || textContext) { + + if (!textContext) + text = text.trim(); + + pushToContent({ + text: text + }); + + } + + }; + + sax.onclosetag = function() { + + var last = stack.pop(); + + // Trim text inside tag. + if (last == textContext) { + trim(textContext); + textContext = null; + } + current = stack[stack.length - 1]; + + }; + + sax.onerror = function(e) { + + callback({ error: 'Error in parsing: ' + e.message }); + + }; + + sax.onend = function() { + + if (!this.error) callback(root); + + }; + + sax.write(data).close(); + + function trim(elem) { + if (!elem.content) return elem; + + var start = elem.content[0], + end = elem.content[elem.content.length - 1]; + + while (start && start.content && !start.text) start = start.content[0]; + if (start && start.text) start.text = start.text.replace(/^\s+/, ''); + + while (end && end.content && !end.text) end = end.content[end.content.length - 1]; + if (end && end.text) end.text = end.text.replace(/\s+$/, ''); + + return elem; + + } + +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/tools.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/tools.js new file mode 100644 index 0000000..3f215bf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/lib/svgo/tools.js @@ -0,0 +1,142 @@ +'use strict'; + +/** + * Encode plain SVG data string into Data URI string. + * + * @param {String} str input string + * @param {String} type Data URI type + * @return {String} output string + */ +exports.encodeSVGDatauri = function(str, type) { + + var prefix = 'data:image/svg+xml'; + + // base64 + if (!type || type === 'base64') { + + prefix += ';base64,'; + + str = prefix + new Buffer(str).toString('base64'); + + // URI encoded + } else if (type === 'enc') { + + str = prefix + ',' + encodeURIComponent(str); + + // unencoded + } else if (type === 'unenc') { + + str = prefix + ',' + str; + + } + + return str; + +}; + +/** + * Decode SVG Data URI string into plain SVG string. + * + * @param {string} str input string + * @return {String} output string + */ +exports.decodeSVGDatauri = function(str) { + + var prefix = 'data:image/svg+xml'; + + // base64 + if (str.substring(0, 26) === (prefix + ';base64,')) { + + str = new Buffer(str.substring(26), 'base64').toString('utf8'); + + // URI encoded + } else if (str.substring(0, 20) === (prefix + ',%')) { + + str = decodeURIComponent(str.substring(19)); + + // unencoded + } else if (str.substring(0, 20) === (prefix + ',<')) { + + str = str.substring(19); + + } + + return str; + +}; + +exports.intersectArrays = function(a, b) { + return a.filter(function(n) { + return b.indexOf(n) > -1; + }); +}; + +exports.cleanupOutData = function(data, params) { + + var str = '', + delimiter, + prev; + + data.forEach(function(item, i) { + + // space delimiter by default + delimiter = ' '; + + // no extra space in front of first number + if (i === 0) { + delimiter = ''; + } + + // no extra space in front of negative number or + // in front of a floating number if a previous number is floating too + if ( + params.negativeExtraSpace && + (item < 0 || + (item > 0 && item < 1 && prev % 1 !== 0) + ) + ) { + delimiter = ''; + } + + // save prev item value + prev = item; + + // remove floating-point numbers leading zeros + // 0.5 → .5 + // -0.5 → -.5 + if (params.leadingZero) { + item = removeLeadingZero(item); + } + + str += delimiter + item; + + }); + + return str; + +}; + +/** + * Remove floating-point numbers leading zero. + * + * @example + * 0.5 → .5 + * + * @example + * -0.5 → -.5 + * + * @param {Float} num input number + * + * @return {String} output number as string + */ +var removeLeadingZero = exports.removeLeadingZero = function(num) { + + if (num > 0 && num < 1) { + num = ('' + num).slice(1); + } else if (num < 0 && num > -1) { + num = '-' + ('' + num).slice(2); + } + + return num; + +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/.bin/js-yaml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/.bin/js-yaml new file mode 100644 index 0000000..233e552 Binary files /dev/null and b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/.bin/js-yaml differ diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/.bin/mkdirp b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/.bin/mkdirp new file mode 100644 index 0000000..2da13ce Binary files /dev/null and b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/.bin/mkdirp differ diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/.npmignore b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/.npmignore new file mode 100644 index 0000000..7d47fc0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/.npmignore @@ -0,0 +1,6 @@ +.idea +*.iml +node_modules/ +!node_modules/coa*.js +lib-cov/ +html-report/ diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/.travis.yml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/.travis.yml new file mode 100644 index 0000000..51b4fe6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/.travis.yml @@ -0,0 +1,9 @@ +language: node_js + +node_js: + - "0.10" + - "0.11" + +matrix: + allow_failures: + - node_js: 0.11 diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/GNUmakefile b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/GNUmakefile new file mode 100644 index 0000000..51db7b6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/GNUmakefile @@ -0,0 +1,34 @@ +BIN = ./node_modules/.bin + +.PHONY: all +all: lib + +lib: $(foreach s,$(wildcard src/*.coffee),$(patsubst src/%.coffee,lib/%.js,$s)) + +lib-cov: clean-coverage lib + $(BIN)/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib + +lib/%.js: src/%.coffee + $(BIN)/coffee -cb -o $(@D) $< + +.PHONY: test +test: lib + $(BIN)/mocha + +.PHONY: coverage +coverage: lib-cov + COVER=1 $(BIN)/mocha --reporter mocha-istanbul + @echo + @echo Open html-report/index.html file in your browser + +.PHONY: watch +watch: + $(BIN)/coffee --watch --bare --output lib src/*.coffee + +.PHONY: clean +clean: clean-coverage + +.PHONY: clean-coverage +clean-coverage: + -rm -rf lib-cov + -rm -rf html-report diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/README.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/README.md new file mode 100644 index 0000000..fc1b0a9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/README.md @@ -0,0 +1,322 @@ +# Command-Option-Argument +[![build status](https://secure.travis-ci.org/veged/coa.png)](http://travis-ci.org/veged/coa) + +## What is it? + +COA is a parser for command line options that aim to get maximum profit from formalization your program API. +Once you write definition in terms of commands, options and arguments you automaticaly get: + +* Command line help text +* Program API for use COA-based programs as modules +* Shell completion + +### Other features + +* Rich types for options and arguments, such as arrays, boolean flags and required +* Commands can be async throught using promising (powered by [Q](https://github.com/kriskowal/q)) +* Easy submoduling some existing commands to new top-level one +* Combined validation and complex parsing of values + +### TODO + +* Localization +* Shell-mode +* Configs + * Aliases + * Defaults + +## Examples + +````javascript +require('coa').Cmd() // main (top level) command declaration + .name(process.argv[1]) // set top level command name from program name + .title('My awesome command line util') // title for use in text messages + .helpful() // make command "helpful", i.e. options -h --help with usage message + .opt() // add some option + .name('version') // name for use in API + .title('Version') // title for use in text messages + .short('v') // short key: -v + .long('version') // long key: --version + .flag() // for options without value + .act(function(opts) { // add action for option + // return message as result of action + return JSON.parse(require('fs').readFileSync(__dirname + '/package.json')) + .version; + }) + .end() // end option chain and return to main command + .cmd().name('subcommand').apply(require('./subcommand').COA).end() // load subcommand from module + .cmd() // inplace subcommand declaration + .name('othercommand').title('Awesome other subcommand').helpful() + .opt() + .name('input').title('input file, required') + .short('i').long('input') + .val(function(v) { // validator function, also for translate simple values + return require('fs').createReadStream(v) }) + .req() // make option required + .end() // end option chain and return to command + .end() // end subcommand chain and return to parent command + .run(process.argv.slice(2)); // parse and run on process.argv +```` + +````javascript +// subcommand.js +exports.COA = function() { + this + .title('Awesome subcommand').helpful() + .opt() + .name('output').title('output file') + .short('o').long('output') + .output() // use default preset for "output" option declaration + .end() +}; +```` + +## API reference + +### Cmd +Command is a top level entity. Commands may have options and arguments. + +#### Cmd.api +Returns object containing all its subcommands as methods to use from other programs.
+**@returns** *{Object}* + +#### Cmd.name +Set a canonical command identifier to be used anywhere in the API.
+**@param** *String* `_name` command name
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.title +Set a long description for command to be used anywhere in text messages.
+**@param** *String* `_title` command title
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.cmd +Create new or add existing subcommand for current command.
+**@param** *COA.Cmd* `[cmd]` existing command instance
+**@returns** *COA.Cmd* new or added subcommand instance + +#### Cmd.opt +Create option for current command.
+**@returns** *COA.Opt* `new` option instance + +#### Cmd.arg +Create argument for current command.
+**@returns** *COA.Opt* `new` argument instance + +#### Cmd.act +Add (or set) action for current command.
+**@param** *Function* `act` action function, + invoked in the context of command instance + and has the parameters:
+ - *Object* `opts` parsed options
+ - *Array* `args` parsed arguments
+ - *Object* `res` actions result accumulator
+ It can return rejected promise by Cmd.reject (in case of error) + or any other value treated as result.
+**@param** *{Boolean}* [force=false] flag for set action instead add to existings
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.apply +Apply function with arguments in context of command instance.
+**@param** *Function* `fn`
+**@param** *Array* `args`
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.comp +Set custom additional completion for current command.
+**@param** *Function* `fn` completion generation function, + invoked in the context of command instance. + Accepts parameters:
+ - *Object* `opts` completion options
+ It can return promise or any other value treated as result.
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.helpful +Make command "helpful", i.e. add -h --help flags for print usage.
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.completable +Adds shell completion to command, adds "completion" subcommand, that makes all the magic.
+Must be called only on root command.
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.usage +Build full usage text for current command instance.
+**@returns** *String* `usage` text + +#### Cmd.run +Parse arguments from simple format like NodeJS process.argv +and run ahead current program, i.e. call process.exit when all actions done.
+**@param** *Array* `argv`
+**@returns** *COA.Cmd* `this` instance (for chainability) + +#### Cmd.invoke +Invoke specified (or current) command using provided options and arguments.
+**@param** *String|Array* `cmds` subcommand to invoke (optional)
+**@param** *Object* `opts` command options (optional)
+**@param** *Object* `args` command arguments (optional)
+**@returns** *Q.Promise* + +#### Cmd.reject +Return reject of actions results promise.
+Use in .act() for return with error.
+**@param** *Object* `reason` reject reason
+ You can customize toString() method and exitCode property + of reason object.
+**@returns** *Q.promise* rejected promise + +#### Cmd.end +Finish chain for current subcommand and return parent command instance.
+**@returns** *COA.Cmd* `parent` command + +### Opt +Option is a named entity. Options may have short and long keys for use from command line.
+**@namespace**
+**@class** Presents option + +#### Opt.name +Set a canonical option identifier to be used anywhere in the API.
+**@param** *String* `_name` option name
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.title +Set a long description for option to be used anywhere in text messages.
+**@param** *String* `_title` option title
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.short +Set a short key for option to be used with one hyphen from command line.
+**@param** *String* `_short`
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.long +Set a short key for option to be used with double hyphens from command line.
+**@param** *String* `_long`
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.flag +Make an option boolean, i.e. option without value.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.arr +Makes an option accepts multiple values.
+Otherwise, the value will be used by the latter passed.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.req +Makes an option req.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.only +Makes an option to act as a command, +i.e. program will exit just after option action.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.val +Set a validation (or value) function for argument.
+Value from command line passes through before becoming available from API.
+Using for validation and convertion simple types to any values.
+**@param** *Function* `_val` validating function, + invoked in the context of option instance + and has one parameter with value from command line
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.def +Set a default value for option. +Default value passed through validation function as ordinary value.
+**@param** *Object* `_def`
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.input +Make option value inputting stream. +It's add useful validation and shortcut for STDIN. +**@returns** *{COA.Opt}* `this` instance (for chainability) + +#### Opt.output +Make option value outputing stream.
+It's add useful validation and shortcut for STDOUT.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.act +Add action for current option command. +This action is performed if the current option +is present in parsed options (with any value).
+**@param** *Function* `act` action function, + invoked in the context of command instance + and has the parameters:
+ - *Object* `opts` parsed options
+ - *Array* `args` parsed arguments
+ - *Object* `res` actions result accumulator
+ It can return rejected promise by Cmd.reject (in case of error) + or any other value treated as result.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.comp +Set custom additional completion for current option.
+**@param** *Function* `fn` completion generation function, + invoked in the context of command instance. + Accepts parameters:
+ - *Object* `opts` completion options
+ It can return promise or any other value treated as result.
+**@returns** *COA.Opt* `this` instance (for chainability) + +#### Opt.end +Finish chain for current option and return parent command instance.
+**@returns** *COA.Cmd* `parent` command + + +### Arg +Argument is a unnamed entity.
+From command line arguments passed as list of unnamed values. + +#### Arg.name +Set a canonical argument identifier to be used anywhere in text messages.
+**@param** *String* `_name` argument name
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.title +Set a long description for argument to be used anywhere in text messages.
+**@param** *String* `_title` argument title
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.arr +Makes an argument accepts multiple values.
+Otherwise, the value will be used by the latter passed.
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.req +Makes an argument req.
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.val +Set a validation (or value) function for argument.
+Value from command line passes through before becoming available from API.
+Using for validation and convertion simple types to any values.
+**@param** *Function* `_val` validating function, + invoked in the context of argument instance + and has one parameter with value from command line
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.def +Set a default value for argument. +Default value passed through validation function as ordinary value.
+**@param** *Object* `_def`
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.output +Make argument value outputing stream.
+It's add useful validation and shortcut for STDOUT.
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.comp +Set custom additional completion for current argument.
+**@param** *Function* `fn` completion generation function, + invoked in the context of command instance. + Accepts parameters:
+ - *Object* `opts` completion options
+ It can return promise or any other value treated as result.
+**@returns** *COA.Arg* `this` instance (for chainability) + +#### Arg.end +Finish chain for current option and return parent command instance.
+**@returns** *COA.Cmd* `parent` command diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/README.ru.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/README.ru.md new file mode 100644 index 0000000..54a8baf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/README.ru.md @@ -0,0 +1,316 @@ +# Command-Option-Argument +[![build status](https://secure.travis-ci.org/veged/coa.png)](http://travis-ci.org/veged/coa) + +## Что это? + +COA — парсер параметров командной строки, позволяющий извлечь максимум пользы от формального API вашей программы. +Как только вы опишете определение в терминах команд, параметров и аргументов, вы автоматически получите: + +* Справку для командной строки +* API для использования программы как модуля в COA-совместимых программах +* Автодополнение для командной строки + +### Прочие возможности + +* Широкий выбор настроек для параметров и аргументов, включая множественные значения, логические значения и обязательность параметров +* Возможность асинхронного исполнения команд, используя промисы (используется библиотека [Q](https://github.com/kriskowal/q)) +* Простота использования существующих команд как подмодулей для новых команд +* Комбинированная валидация и анализ сложных значений + +## Примеры + +````javascript +require('coa').Cmd() // декларация команды верхнего уровня + .name(process.argv[1]) // имя команды верхнего уровня, берем из имени программы + .title('Жутко полезная утилита для командной строки') // название для использования в справке и сообщениях + .helpful() // добавляем поддержку справки командной строки (-h, --help) + .opt() // добавляем параметр + .name('version') // имя параметра для использования в API + .title('Version') // текст для вывода в сообщениях + .short('v') // короткое имя параметра: -v + .long('version') // длинное имя параметра: --version + .flag() // параметр не требует ввода значения + .act(function(opts) { // действия при вызове аргумента + // результатом является вывод текстового сообщения + return JSON.parse(require('fs').readFileSync(__dirname + '/package.json')) + .version; + }) + .end() // завершаем определение параметра и возвращаемся к определению верхнего уровня + .cmd().name('subcommand').apply(require('./subcommand').COA).end() // загрузка подкоманды из модуля + .cmd() // добавляем еще одну подкоманду + .name('othercommand').title('Еще одна полезная подпрограмма').helpful() + .opt() + .name('input').title('input file, required') + .short('i').long('input') + .val(function(v) { // функция-валидатор, также может использоваться для трансформации значений параметров + return require('fs').createReadStream(v) }) + .req() // параметр является обязательным + .end() // завершаем определение параметра и возвращаемся к определению команды + .end() // завершаем определение подкоманды и возвращаемся к определению команды верхнего уровня + .run(process.argv.slice(2)); // разбираем process.argv и запускаем +```` + +````javascript +// subcommand.js +exports.COA = function() { + this + .title('Полезная подпрограмма').helpful() + .opt() + .name('output').title('output file') + .short('o').long('output') + .output() // использовать стандартную настройку для параметра вывода + .end() +}; +```` + +## API + +### Cmd +Команда — сущность верхнего уровня. У команды могут быть определены параметры и аргументы. + +#### Cmd.api +Возвращает объект, который можно использовать в других программах. Подкоманды являются методами этого объекта.
+**@returns** *{Object}* + +#### Cmd.name +Определяет канонический идентификатор команды, используемый в вызовах API.
+**@param** *String* `_name` имя команды
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.title +Определяет название команды, используемый в текстовых сообщениях.
+**@param** *String* `_title` название команды
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.cmd +Создает новую подкоманду или добавляет ранее определенную подкоманду к текущей команде.
+**@param** *COA.Cmd* `[cmd]` экземпляр ранее определенной подкоманды
+**@returns** *COA.Cmd* экземпляр новой или ранее определенной подкоманды + +#### Cmd.opt +Создает параметр для текущей команды.
+**@returns** *COA.Opt* `new` экземпляр параметра + +#### Cmd.arg +Создает аргумент для текущей команды.
+**@returns** *COA.Opt* `new` экземпляр аргумента + +#### Cmd.act +Добавляет (или создает) действие для текущей команды.
+**@param** *Function* `act` функция, + выполняемая в контексте экземпляра текущей команды + и принимающая следующие параметры:
+ - *Object* `opts` параметры команды
+ - *Array* `args` аргументы команды
+ - *Object* `res` объект-аккумулятор результатов
+ Функция может вернуть проваленный промис из Cmd.reject (в случае ошибки) + или любое другое значение, рассматриваемое как результат.
+**@param** *{Boolean}* [force=false] флаг, назначающий немедленное исполнение вместо добавления к списку существующих действий
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.apply +Исполняет функцию с переданными аргументами в контексте экземпляра текущей команды.
+**@param** *Function* `fn`
+**@param** *Array* `args`
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.comp +Назначает кастомную функцию автодополнения для текущей команды.
+**@param** *Function* `fn` функция-генератор автодополнения, + исполняемая в контексте текущей команды. + Принимает параметры:
+ - *Object* `opts` параметры
+ Может возвращать промис или любое другое значение, рассматриваемое как результат исполнения команды.
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.helpful +Ставит флаг поддержки справки командной строки, т.е. вызов команды с параметрами -h --help выводит справку по работе с командой.
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.completable +Добавляет поддержку автодополнения командной строки. Добавляется подкоманда "completion", которая выполняет все необходимые действия.
+Может быть добавлен только для главной команды.
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.usage +Возвращает текст справки по использованию команды для текущего экземпляра.
+**@returns** *String* `usage` Текст справки по использованию + +#### Cmd.run +Разбирает аргументы из значения, возвращаемого NodeJS process.argv, +и запускает текущую программу, т.е. вызывает process.exit после завершения +всех действий.
+**@param** *Array* `argv`
+**@returns** *COA.Cmd* `this` экземпляр команды (для поддержки цепочки методов) + +#### Cmd.invoke +Исполняет переданную (или текущую) команду с указанными параметрами и аргументами.
+**@param** *String|Array* `cmds` подкоманда для исполнения (необязательно)
+**@param** *Object* `opts` параметры, передаваемые команде (необязательно)
+**@param** *Object* `args` аргументы, передаваемые команде (необязательно)
+**@returns** *Q.Promise* + +#### Cmd.reject +Проваливает промисы, возращенные в действиях.
+Используется в .act() для возврата с ошибкой.
+**@param** *Object* `reason` причина провала
+ Вы можете определить метод toString() и свойство toString() + объекта причины провала.
+**@returns** *Q.promise* проваленный промис + +#### Cmd.end +Завершает цепочку методов текущей подкоманды и возвращает экземпляр родительской команды.
+**@returns** *COA.Cmd* `parent` родительская команда + +### Opt +Параметр — именованная сущность. У параметра может быть определено короткое или длинное имя для использования из командной строки.
+**@namespace**
+**@class** Переданный параметр + +#### Opt.name +Определяет канонический идентификатор параметра, используемый в вызовах API.
+**@param** *String* `_name` имя параметра
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.title +Определяет описание для параметра, используемое в текстовых сообщениях.
+**@param** *String* `_title` название параметра
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.short +Назначает ключ для короткого имени параметра, передаваемого из командной строки с одинарным дефисом (например, `-v`).
+**@param** *String* `_short`
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.long +Назначает ключ для длинного имени параметра, передаваемого из командной строки с двойным дефисом (например, `--version`).
+**@param** *String* `_long`
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.flag +Помечает параметр как логический, т.е. параметр не имеющий значения.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.arr +Помечает параметр как принимающий множественные значения.
+Иначе будет использовано последнее переданное значение параметра.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.req +Помечает параметр как обязательный.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.only +Интерпретирует параметр как команду, +т.е. программа будет завершена сразу после выполнения параметра.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.val +Назначает функцию валидации (или трансформации значения) для значения параметра.
+Значение, полученное из командной строки, передается в функцию-валидатор прежде чем оно станет доступно из API.
+Используется для валидации и трансформации введенных данных.
+**@param** *Function* `_val` функция валидации, + исполняемая в контексте экземпляра параметра + и принимающая в качестве единственного параметра значение, полученное + из командной строки
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.def +Назначает значение параметра по умолчанию. Это значение также передается +в функцию валидации как обычное значение.
+**@param** *Object* `_def`
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.input +Помечает параметр как принимающий ввод пользователя.
+Позволяет использовать валидацию для STDIN.
+**@returns** *{COA.Opt}* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.output +Помечает параметр как вывод.
+Позволяет использовать валидацию для STDOUT.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.act +Добавляет (или создает) действие для текущего параметра команды. +Это действие будет выполнено, если текущий параметр есть +в списке полученных параметров (с любым значением).
+**@param** *Function* `act` функция, выполняемая в контексте + экземпляра текущей команды и принимающая следующие параметры:
+ - *Object* `opts` параметры команды
+ - *Array* `args` аргументы команды
+ - *Object* `res` объект-аккумулятор результатов
+ Функция может вернуть проваленный промис из Cmd.reject (в случае ошибки) + или любое другое значение, рассматриваемое как результат.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.comp +Назначает кастомную функцию автодополнения для текущей команды.
+**@param** *Function* `fn` функция-генератор автодоплнения, исполняемая в + контексте экземпляра команды. + Принимает параметры:
+ - *Object* `opts` параметры автодополнения
+ Может возвращать промис или любое другое значение, рассматриваемое как результат исполнения команды.
+**@returns** *COA.Opt* `this` экземпляр параметра (для поддержки цепочки методов) + +#### Opt.end +Завершает цепочку методов текущего параметра и возвращает экземпляр родительской команды.
+**@returns** *COA.Cmd* `parent` родительская команда + + +### Arg +Аргумент — неименованная сущность.
+Аргументы передаются из командной строки как список неименованных значений. + +#### Arg.name +Определяет канонический идентификатор аргумента, используемый в вызовах API.
+**@param** *String* `_name` имя аргумента
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.title +Определяет описание для аргумента, используемое в текстовых сообщениях.
+**@param** *String* `_title` описание аргумента
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.arr +Помечает аргумент как принимающий множественные значения.
+Иначе будет использовано последнее переданное значение аргумента.
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.req +Помечает аргумент как обязательный.
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.val +Назначает функцию валидации (или трансформации значения) для аргумента.
+Значение, полученное из командной строки, передается в функцию-валидатор прежде чем оно станет доступно из API.
+Используется для валидации и трансформации введенных данных.
+**@param** *Function* `_val` функция валидации, + исполняемая в контексте экземпляра аргумента + и принимающая в качестве единственного параметра значение, полученное + из командной строки
+**@returns** *COA.Opt* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.def +Назначает дефолтное значение для аргумента. Дефолтное значение передается +в функцию валидации как обычное значение.
+**@param** *Object* `_def`
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.output +Помечает параметр как вывод.
+Позволяет назначить валидацию для STDOUT.
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.comp +Назначает кастомную функцию автодополнения для текущего аргумента.
+**@param** *Function* `fn` функция-генератор автодоплнения, + исполняемая в контексте текущей команды. + Принимает параметры:
+ - *Object* `opts` параметры +Может возвращать промис или любое другое значение, рассматриваемое как результат исполнения команды.
+**@returns** *COA.Arg* `this` экземпляр аргумента (для поддержки цепочки методов) + +#### Arg.end +Завершает цепочку методов текущего аргумента и возвращает экземпляр родительской команды.
+**@returns** *COA.Cmd* `parent` родительская команда diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/index.js new file mode 100644 index 0000000..76c1c3a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/index.js @@ -0,0 +1 @@ +module.exports = require(process.env.COVER? './lib-cov' : './lib'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/arg.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/arg.js new file mode 100644 index 0000000..4444a8a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/arg.js @@ -0,0 +1,175 @@ +// Generated by CoffeeScript 1.6.3 +var Arg, Cmd, Color, Opt; + +Color = require('./color').Color; + +Cmd = require('./cmd').Cmd; + +Opt = require('./opt').Opt; + +/** +Argument + +Unnamed entity. From command line arguments passed as list of unnamed values. +@namespace +@class Presents argument +*/ + + +exports.Arg = Arg = (function() { + /** + @constructs + @param {COA.Cmd} cmd parent command + */ + + function Arg(_cmd) { + this._cmd = _cmd; + this._cmd._args.push(this); + } + + /** + Set a canonical argument identifier to be used anywhere in text messages. + @param {String} _name argument name + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.name = Opt.prototype.name; + + /** + Set a long description for argument to be used anywhere in text messages. + @param {String} _title argument title + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.title = Cmd.prototype.title; + + /** + Makes an argument accepts multiple values. + Otherwise, the value will be used by the latter passed. + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.arr = Opt.prototype.arr; + + /** + Makes an argument required. + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.req = Opt.prototype.req; + + /** + Set a validation (or value) function for argument. + Value from command line passes through before becoming available from API. + Using for validation and convertion simple types to any values. + @param {Function} _val validating function, + invoked in the context of argument instance + and has one parameter with value from command line + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.val = Opt.prototype.val; + + /** + Set a default value for argument. + Default value passed through validation function as ordinary value. + @param {Object} _def + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.def = Opt.prototype.def; + + /** + Set custom additional completion for current argument. + @param {Function} completion generation function, + invoked in the context of argument instance. + Accepts parameters: + - {Object} opts completion options + It can return promise or any other value treated as result. + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.comp = Cmd.prototype.comp; + + /** + Make argument value inputting stream. + It's add useful validation and shortcut for STDIN. + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.input = Opt.prototype.input; + + /** + Make argument value outputing stream. + It's add useful validation and shortcut for STDOUT. + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.output = Opt.prototype.output; + + Arg.prototype._parse = function(arg, args) { + return this._saveVal(args, arg); + }; + + Arg.prototype._saveVal = Opt.prototype._saveVal; + + Arg.prototype._checkParsed = function(opts, args) { + return !args.hasOwnProperty(this._name); + }; + + Arg.prototype._usage = function() { + var res; + res = []; + res.push(Color('lpurple', this._name.toUpperCase()), ' : ', this._title); + if (this._req) { + res.push(' ', Color('lred', '(required)')); + } + return res.join(''); + }; + + Arg.prototype._requiredText = function() { + return 'Missing required argument:\n ' + this._usage(); + }; + + /** + Return rejected promise with error code. + Use in .val() for return with error. + @param {Object} reject reason + You can customize toString() method and exitCode property + of reason object. + @returns {Q.promise} rejected promise + */ + + + Arg.prototype.reject = Cmd.prototype.reject; + + /** + Finish chain for current option and return parent command instance. + @returns {COA.Cmd} parent command + */ + + + Arg.prototype.end = Cmd.prototype.end; + + /** + Apply function with arguments in context of arg instance. + @param {Function} fn + @param {Array} args + @returns {COA.Arg} this instance (for chainability) + */ + + + Arg.prototype.apply = Cmd.prototype.apply; + + return Arg; + +})(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/cmd.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/cmd.js new file mode 100644 index 0000000..b53c254 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/cmd.js @@ -0,0 +1,605 @@ +// Generated by CoffeeScript 1.6.3 +var Cmd, Color, PATH, Q, UTIL, + __slice = [].slice; + +UTIL = require('util'); + +PATH = require('path'); + +Color = require('./color').Color; + +Q = require('q'); + +/** +Command + +Top level entity. Commands may have options and arguments. +@namespace +@class Presents command +*/ + + +exports.Cmd = Cmd = (function() { + /** + @constructs + @param {COA.Cmd} [cmd] parent command + */ + + function Cmd(cmd) { + if (!(this instanceof Cmd)) { + return new Cmd(cmd); + } + this._parent(cmd); + this._cmds = []; + this._cmdsByName = {}; + this._opts = []; + this._optsByKey = {}; + this._args = []; + this._ext = false; + } + + Cmd.get = function(propertyName, func) { + return Object.defineProperty(this.prototype, propertyName, { + configurable: true, + enumerable: true, + get: func + }); + }; + + /** + Returns object containing all its subcommands as methods + to use from other programs. + @returns {Object} + */ + + + Cmd.get('api', function() { + var c, _fn, + _this = this; + if (!this._api) { + this._api = function() { + return _this.invoke.apply(_this, arguments); + }; + } + _fn = function(c) { + return _this._api[c] = _this._cmdsByName[c].api; + }; + for (c in this._cmdsByName) { + _fn(c); + } + return this._api; + }); + + Cmd.prototype._parent = function(cmd) { + this._cmd = cmd || this; + if (cmd) { + cmd._cmds.push(this); + if (this._name) { + this._cmd._cmdsByName[this._name] = this; + } + } + return this; + }; + + /** + Set a canonical command identifier to be used anywhere in the API. + @param {String} _name command name + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.name = function(_name) { + this._name = _name; + if (this._cmd !== this) { + this._cmd._cmdsByName[_name] = this; + } + return this; + }; + + /** + Set a long description for command to be used anywhere in text messages. + @param {String} _title command title + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.title = function(_title) { + this._title = _title; + return this; + }; + + /** + Create new or add existing subcommand for current command. + @param {COA.Cmd} [cmd] existing command instance + @returns {COA.Cmd} new subcommand instance + */ + + + Cmd.prototype.cmd = function(cmd) { + if (cmd) { + return cmd._parent(this); + } else { + return new Cmd(this); + } + }; + + /** + Create option for current command. + @returns {COA.Opt} new option instance + */ + + + Cmd.prototype.opt = function() { + return new (require('./opt').Opt)(this); + }; + + /** + Create argument for current command. + @returns {COA.Opt} new argument instance + */ + + + Cmd.prototype.arg = function() { + return new (require('./arg').Arg)(this); + }; + + /** + Add (or set) action for current command. + @param {Function} act action function, + invoked in the context of command instance + and has the parameters: + - {Object} opts parsed options + - {Array} args parsed arguments + - {Object} res actions result accumulator + It can return rejected promise by Cmd.reject (in case of error) + or any other value treated as result. + @param {Boolean} [force=false] flag for set action instead add to existings + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.act = function(act, force) { + if (!act) { + return this; + } + if (!force && this._act) { + this._act.push(act); + } else { + this._act = [act]; + } + return this; + }; + + /** + Set custom additional completion for current command. + @param {Function} completion generation function, + invoked in the context of command instance. + Accepts parameters: + - {Object} opts completion options + It can return promise or any other value treated as result. + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.comp = function(_comp) { + this._comp = _comp; + return this; + }; + + /** + Apply function with arguments in context of command instance. + @param {Function} fn + @param {Array} args + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.apply = function() { + var args, fn; + fn = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : []; + fn.apply(this, args); + return this; + }; + + /** + Make command "helpful", i.e. add -h --help flags for print usage. + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.helpful = function() { + return this.opt().name('help').title('Help').short('h').long('help').flag().only().act(function() { + return this.usage(); + }).end(); + }; + + /** + Adds shell completion to command, adds "completion" subcommand, + that makes all the magic. + Must be called only on root command. + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.completable = function() { + return this.cmd().name('completion').apply(require('./completion')).end(); + }; + + /** + Allow command to be extendable by external node.js modules. + @param {String} [pattern] Pattern of node.js module to find subcommands at. + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.extendable = function(pattern) { + this._ext = pattern || true; + return this; + }; + + Cmd.prototype._exit = function(msg, code) { + return process.once('exit', function() { + if (msg) { + console.error(msg); + } + return process.exit(code || 0); + }); + }; + + /** + Build full usage text for current command instance. + @returns {String} usage text + */ + + + Cmd.prototype.usage = function() { + var res; + res = []; + if (this._title) { + res.push(this._fullTitle()); + } + res.push('', 'Usage:'); + if (this._cmds.length) { + res.push(['', '', Color('lred', this._fullName()), Color('lblue', 'COMMAND'), Color('lgreen', '[OPTIONS]'), Color('lpurple', '[ARGS]')].join(' ')); + } + if (this._opts.length + this._args.length) { + res.push(['', '', Color('lred', this._fullName()), Color('lgreen', '[OPTIONS]'), Color('lpurple', '[ARGS]')].join(' ')); + } + res.push(this._usages(this._cmds, 'Commands'), this._usages(this._opts, 'Options'), this._usages(this._args, 'Arguments')); + return res.join('\n'); + }; + + Cmd.prototype._usage = function() { + return Color('lblue', this._name) + ' : ' + this._title; + }; + + Cmd.prototype._usages = function(os, title) { + var o, res, _i, _len; + if (!os.length) { + return; + } + res = ['', title + ':']; + for (_i = 0, _len = os.length; _i < _len; _i++) { + o = os[_i]; + res.push(' ' + o._usage()); + } + return res.join('\n'); + }; + + Cmd.prototype._fullTitle = function() { + return (this._cmd === this ? '' : this._cmd._fullTitle() + '\n') + this._title; + }; + + Cmd.prototype._fullName = function() { + return (this._cmd === this ? '' : this._cmd._fullName() + ' ') + PATH.basename(this._name); + }; + + Cmd.prototype._ejectOpt = function(opts, opt) { + var pos; + if ((pos = opts.indexOf(opt)) >= 0) { + if (opts[pos]._arr) { + return opts[pos]; + } else { + return opts.splice(pos, 1)[0]; + } + } + }; + + Cmd.prototype._checkRequired = function(opts, args) { + var all, i; + if (!(this._opts.filter(function(o) { + return o._only && o._name in opts; + })).length) { + all = this._opts.concat(this._args); + while (i = all.shift()) { + if (i._req && i._checkParsed(opts, args)) { + return this.reject(i._requiredText()); + } + } + } + }; + + Cmd.prototype._parseCmd = function(argv, unparsed) { + var c, cmd, cmdDesc, e, i, optSeen, pkg; + if (unparsed == null) { + unparsed = []; + } + argv = argv.concat(); + optSeen = false; + while (i = argv.shift()) { + if (!i.indexOf('-')) { + optSeen = true; + } + if (!optSeen && /^\w[\w-_]*$/.test(i)) { + cmd = this._cmdsByName[i]; + if (!cmd && this._ext) { + if (typeof this._ext === 'string') { + if (~this._ext.indexOf('%s')) { + pkg = UTIL.format(this._ext, i); + } else { + pkg = this._ext + i; + } + } else if (this._ext === true) { + pkg = i; + c = this; + while (true) { + pkg = c._name + '-' + pkg; + if (c._cmd === c) { + break; + } + c = c._cmd; + } + } + try { + cmdDesc = require(pkg); + } catch (_error) { + e = _error; + } + if (cmdDesc) { + if (typeof cmdDesc === 'function') { + this.cmd().name(i).apply(cmdDesc).end(); + } else if (typeof cmdDesc === 'object') { + this.cmd(cmdDesc); + cmdDesc.name(i); + } else { + throw new Error('Error: Unsupported command declaration type, ' + 'should be function or COA.Cmd() object'); + } + cmd = this._cmdsByName[i]; + } + } + if (cmd) { + return cmd._parseCmd(argv, unparsed); + } + } + unparsed.push(i); + } + return { + cmd: this, + argv: unparsed + }; + }; + + Cmd.prototype._parseOptsAndArgs = function(argv) { + var a, arg, args, i, m, nonParsedArgs, nonParsedOpts, opt, opts, res; + opts = {}; + args = {}; + nonParsedOpts = this._opts.concat(); + nonParsedArgs = this._args.concat(); + while (i = argv.shift()) { + if (i !== '--' && !i.indexOf('-')) { + if (m = i.match(/^(--\w[\w-_]*)=(.*)$/)) { + i = m[1]; + if (!this._optsByKey[i]._flag) { + argv.unshift(m[2]); + } + } + if (opt = this._ejectOpt(nonParsedOpts, this._optsByKey[i])) { + if (Q.isRejected(res = opt._parse(argv, opts))) { + return res; + } + } else { + return this.reject("Unknown option: " + i); + } + } else { + if (i === '--') { + i = argv.splice(0); + } + i = Array.isArray(i) ? i : [i]; + while (a = i.shift()) { + if (arg = nonParsedArgs.shift()) { + if (arg._arr) { + nonParsedArgs.unshift(arg); + } + if (Q.isRejected(res = arg._parse(a, args))) { + return res; + } + } else { + return this.reject("Unknown argument: " + a); + } + } + } + } + return { + opts: this._setDefaults(opts, nonParsedOpts), + args: this._setDefaults(args, nonParsedArgs) + }; + }; + + Cmd.prototype._setDefaults = function(params, desc) { + var i, _i, _len; + for (_i = 0, _len = desc.length; _i < _len; _i++) { + i = desc[_i]; + if (!(i._name in params) && '_def' in i) { + i._saveVal(params, i._def); + } + } + return params; + }; + + Cmd.prototype._processParams = function(params, desc) { + var i, n, notExists, res, v, vals, _i, _j, _len, _len1; + notExists = []; + for (_i = 0, _len = desc.length; _i < _len; _i++) { + i = desc[_i]; + n = i._name; + if (!(n in params)) { + notExists.push(i); + continue; + } + vals = params[n]; + delete params[n]; + if (!Array.isArray(vals)) { + vals = [vals]; + } + for (_j = 0, _len1 = vals.length; _j < _len1; _j++) { + v = vals[_j]; + if (Q.isRejected(res = i._saveVal(params, v))) { + return res; + } + } + } + return this._setDefaults(params, notExists); + }; + + Cmd.prototype._parseArr = function(argv) { + return Q.when(this._parseCmd(argv), function(p) { + return Q.when(p.cmd._parseOptsAndArgs(p.argv), function(r) { + return { + cmd: p.cmd, + opts: r.opts, + args: r.args + }; + }); + }); + }; + + Cmd.prototype._do = function(input) { + var _this = this; + return Q.when(input, function(input) { + var cmd; + cmd = input.cmd; + return [_this._checkRequired].concat(cmd._act || []).reduce(function(res, act) { + return Q.when(res, function(res) { + return act.call(cmd, input.opts, input.args, res); + }); + }, void 0); + }); + }; + + /** + Parse arguments from simple format like NodeJS process.argv + and run ahead current program, i.e. call process.exit when all actions done. + @param {Array} argv + @returns {COA.Cmd} this instance (for chainability) + */ + + + Cmd.prototype.run = function(argv) { + var cb, + _this = this; + if (argv == null) { + argv = process.argv.slice(2); + } + cb = function(code) { + return function(res) { + var _ref, _ref1; + if (res) { + return _this._exit((_ref = res.stack) != null ? _ref : res.toString(), (_ref1 = res.exitCode) != null ? _ref1 : code); + } else { + return _this._exit(); + } + }; + }; + Q.when(this["do"](argv), cb(0), cb(1)).done(); + return this; + }; + + /** + Convenient function to run command from tests. + @param {Array} argv + @returns {Q.Promise} + */ + + + Cmd.prototype["do"] = function(argv) { + return this._do(this._parseArr(argv || [])); + }; + + /** + Invoke specified (or current) command using provided + options and arguments. + @param {String|Array} cmds subcommand to invoke (optional) + @param {Object} opts command options (optional) + @param {Object} args command arguments (optional) + @returns {Q.Promise} + */ + + + Cmd.prototype.invoke = function(cmds, opts, args) { + var _this = this; + if (cmds == null) { + cmds = []; + } + if (opts == null) { + opts = {}; + } + if (args == null) { + args = {}; + } + if (typeof cmds === 'string') { + cmds = cmds.split(' '); + } + if (arguments.length < 3) { + if (!Array.isArray(cmds)) { + args = opts; + opts = cmds; + cmds = []; + } + } + return Q.when(this._parseCmd(cmds), function(p) { + if (p.argv.length) { + return _this.reject("Unknown command: " + cmds.join(' ')); + } + return Q.all([_this._processParams(opts, _this._opts), _this._processParams(args, _this._args)]).spread(function(opts, args) { + return _this._do({ + cmd: p.cmd, + opts: opts, + args: args + }).fail(function(res) { + if (res && res.exitCode === 0) { + return res.toString(); + } else { + return _this.reject(res); + } + }); + }); + }); + }; + + /** + Return reject of actions results promise with error code. + Use in .act() for return with error. + @param {Object} reject reason + You can customize toString() method and exitCode property + of reason object. + @returns {Q.promise} rejected promise + */ + + + Cmd.prototype.reject = function(reason) { + return Q.reject(reason); + }; + + /** + Finish chain for current subcommand and return parent command instance. + @returns {COA.Cmd} parent command + */ + + + Cmd.prototype.end = function() { + return this._cmd; + }; + + return Cmd; + +})(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/color.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/color.js new file mode 100644 index 0000000..7271c8c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/color.js @@ -0,0 +1,25 @@ +// Generated by CoffeeScript 1.6.3 +var colors; + +colors = { + black: '30', + dgray: '1;30', + red: '31', + lred: '1;31', + green: '32', + lgreen: '1;32', + brown: '33', + yellow: '1;33', + blue: '34', + lblue: '1;34', + purple: '35', + lpurple: '1;35', + cyan: '36', + lcyan: '1;36', + lgray: '37', + white: '1;37' +}; + +exports.Color = function(c, str) { + return ['\x1B[', colors[c], 'm', str, '\x1B[m'].join(''); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/completion.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/completion.js new file mode 100644 index 0000000..a4b1edc --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/completion.js @@ -0,0 +1,134 @@ +// Generated by CoffeeScript 1.6.3 +/** +Most of the code adopted from the npm package shell completion code. +See https://github.com/isaacs/npm/blob/master/lib/completion.js +*/ + +var Q, complete, dumpScript, escape, getOpts, unescape; + +Q = require('q'); + +escape = require('./shell').escape; + +unescape = require('./shell').unescape; + +module.exports = function() { + return this.title('Shell completion').helpful().arg().name('raw').title('Completion words').arr().end().act(function(opts, args) { + var argv, cmd, e, _ref; + if (process.platform === 'win32') { + e = new Error('shell completion not supported on windows'); + e.code = 'ENOTSUP'; + e.errno = require('constants').ENOTSUP; + return this.reject(e); + } + if ((process.env.COMP_CWORD == null) || (process.env.COMP_LINE == null) || (process.env.COMP_POINT == null)) { + return dumpScript(this._cmd._name); + } + console.error('COMP_LINE: %s', process.env.COMP_LINE); + console.error('COMP_CWORD: %s', process.env.COMP_CWORD); + console.error('COMP_POINT: %s', process.env.COMP_POINT); + console.error('args: %j', args.raw); + opts = getOpts(args.raw); + _ref = this._cmd._parseCmd(opts.partialWords), cmd = _ref.cmd, argv = _ref.argv; + return Q.when(complete(cmd, opts), function(compls) { + console.error('filtered: %j', compls); + return console.log(compls.map(escape).join('\n')); + }); + }); +}; + +dumpScript = function(name) { + var defer, fs, path; + fs = require('fs'); + path = require('path'); + defer = Q.defer(); + fs.readFile(path.resolve(__dirname, 'completion.sh'), 'utf8', function(err, d) { + var onError; + if (err) { + return defer.reject(err); + } + d = d.replace(/{{cmd}}/g, path.basename(name)).replace(/^\#\!.*?\n/, ''); + onError = function(err) { + if (err.errno === require('constants').EPIPE) { + process.stdout.removeListener('error', onError); + return defer.resolve(); + } else { + return defer.reject(err); + } + }; + process.stdout.on('error', onError); + return process.stdout.write(d, function() { + return defer.resolve(); + }); + }); + return defer.promise; +}; + +getOpts = function(argv) { + var i, line, partialLine, partialWord, partialWords, point, w, word, words; + line = process.env.COMP_LINE; + w = +process.env.COMP_CWORD; + point = +process.env.COMP_POINT; + words = argv.map(unescape); + word = words[w]; + partialLine = line.substr(0, point); + partialWords = words.slice(0, w); + partialWord = argv[w] || ''; + i = partialWord.length; + while (partialWord.substr(0, i) !== partialLine.substr(-1 * i) && i > 0) { + i--; + } + partialWord = unescape(partialWord.substr(0, i)); + if (partialWord) { + partialWords.push(partialWord); + } + return { + line: line, + w: w, + point: point, + words: words, + word: word, + partialLine: partialLine, + partialWords: partialWords, + partialWord: partialWord + }; +}; + +complete = function(cmd, opts) { + var compls, m, o, opt, optPrefix, optWord; + compls = []; + if (opts.partialWord.indexOf('-')) { + compls = Object.keys(cmd._cmdsByName); + } else { + if (m = opts.partialWord.match(/^(--\w[\w-_]*)=(.*)$/)) { + optWord = m[1]; + optPrefix = optWord + '='; + } else { + compls = Object.keys(cmd._optsByKey); + } + } + if (!(o = opts.partialWords[opts.w - 1]).indexOf('-')) { + optWord = o; + } + if (optWord && (opt = cmd._optsByKey[optWord])) { + if (!opt._flag && opt._comp) { + compls = Q.join(compls, Q.when(opt._comp(opts), function(c, o) { + return c.concat(o.map(function(v) { + return (optPrefix || '') + v; + })); + })); + } + } + if (cmd._comp) { + compls = Q.join(compls, Q.when(cmd._comp(opts)), function(c, o) { + return c.concat(o); + }); + } + return Q.when(compls, function(compls) { + console.error('partialWord: %s', opts.partialWord); + console.error('compls: %j', compls); + return compls.filter(function(c) { + return c.indexOf(opts.partialWord) === 0; + }); + }); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/completion.sh b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/completion.sh new file mode 100644 index 0000000..6d15c87 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/completion.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash +###-begin-{{cmd}}-completion-### +# +# {{cmd}} command completion script +# +# Installation: {{cmd}} completion >> ~/.bashrc (or ~/.zshrc) +# Or, maybe: {{cmd}} completion > /usr/local/etc/bash_completion.d/{{cmd}} +# + +COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} +COMP_WORDBREAKS=${COMP_WORDBREAKS/@/} +export COMP_WORDBREAKS + +if complete &>/dev/null; then + _{{cmd}}_completion () { + local si="$IFS" + IFS=$'\n' COMPREPLY=($(COMP_CWORD="$COMP_CWORD" \ + COMP_LINE="$COMP_LINE" \ + COMP_POINT="$COMP_POINT" \ + {{cmd}} completion -- "${COMP_WORDS[@]}" \ + 2>/dev/null)) || return $? + IFS="$si" + } + complete -F _{{cmd}}_completion {{cmd}} +elif compctl &>/dev/null; then + _{{cmd}}_completion () { + local cword line point words si + read -Ac words + read -cn cword + let cword-=1 + read -l line + read -ln point + si="$IFS" + IFS=$'\n' reply=($(COMP_CWORD="$cword" \ + COMP_LINE="$line" \ + COMP_POINT="$point" \ + {{cmd}} completion -- "${words[@]}" \ + 2>/dev/null)) || return $? + IFS="$si" + } + compctl -K _{{cmd}}_completion {{cmd}} +fi +###-end-{{cmd}}-completion-### diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/index.js new file mode 100644 index 0000000..05b8922 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/index.js @@ -0,0 +1,10 @@ +// Generated by CoffeeScript 1.6.3 +exports.Cmd = require('./cmd').Cmd; + +exports.Opt = require('./cmd').Opt; + +exports.Arg = require('./cmd').Arg; + +exports.shell = require('./shell'); + +exports.require = require; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/opt.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/opt.js new file mode 100644 index 0000000..9aaca54 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/opt.js @@ -0,0 +1,338 @@ +// Generated by CoffeeScript 1.6.3 +var Cmd, Color, Opt, Q, fs; + +fs = require('fs'); + +Q = require('q'); + +Color = require('./color').Color; + +Cmd = require('./cmd').Cmd; + +/** +Option + +Named entity. Options may have short and long keys for use from command line. +@namespace +@class Presents option +*/ + + +exports.Opt = Opt = (function() { + /** + @constructs + @param {COA.Cmd} cmd parent command + */ + + function Opt(_cmd) { + this._cmd = _cmd; + this._cmd._opts.push(this); + } + + /** + Set a canonical option identifier to be used anywhere in the API. + @param {String} _name option name + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.name = function(_name) { + this._name = _name; + return this; + }; + + /** + Set a long description for option to be used anywhere in text messages. + @param {String} _title option title + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.title = Cmd.prototype.title; + + /** + Set a short key for option to be used with one hyphen from command line. + @param {String} _short + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.short = function(_short) { + this._short = _short; + return this._cmd._optsByKey['-' + _short] = this; + }; + + /** + Set a short key for option to be used with double hyphens from command line. + @param {String} _long + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.long = function(_long) { + this._long = _long; + return this._cmd._optsByKey['--' + _long] = this; + }; + + /** + Make an option boolean, i.e. option without value. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.flag = function() { + this._flag = true; + return this; + }; + + /** + Makes an option accepts multiple values. + Otherwise, the value will be used by the latter passed. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.arr = function() { + this._arr = true; + return this; + }; + + /** + Makes an option required. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.req = function() { + this._req = true; + return this; + }; + + /** + Makes an option to act as a command, + i.e. program will exit just after option action. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.only = function() { + this._only = true; + return this; + }; + + /** + Set a validation (or value) function for option. + Value from command line passes through before becoming available from API. + Using for validation and convertion simple types to any values. + @param {Function} _val validating function, + invoked in the context of option instance + and has one parameter with value from command line + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.val = function(_val) { + this._val = _val; + return this; + }; + + /** + Set a default value for option. + Default value passed through validation function as ordinary value. + @param {Object} _def + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.def = function(_def) { + this._def = _def; + return this; + }; + + /** + Make option value inputting stream. + It's add useful validation and shortcut for STDIN. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.input = function() { + process.stdin.pause(); + return this.def(process.stdin).val(function(v) { + var s; + if (typeof v === 'string') { + if (v === '-') { + return process.stdin; + } else { + s = fs.createReadStream(v, { + encoding: 'utf8' + }); + s.pause(); + return s; + } + } else { + return v; + } + }); + }; + + /** + Make option value outputing stream. + It's add useful validation and shortcut for STDOUT. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.output = function() { + return this.def(process.stdout).val(function(v) { + if (typeof v === 'string') { + if (v === '-') { + return process.stdout; + } else { + return fs.createWriteStream(v, { + encoding: 'utf8' + }); + } + } else { + return v; + } + }); + }; + + /** + Add action for current option command. + This action is performed if the current option + is present in parsed options (with any value). + @param {Function} act action function, + invoked in the context of command instance + and has the parameters: + - {Object} opts parsed options + - {Array} args parsed arguments + - {Object} res actions result accumulator + It can return rejected promise by Cmd.reject (in case of error) + or any other value treated as result. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.act = function(act) { + var name, opt; + opt = this; + name = this._name; + this._cmd.act(function(opts) { + var res, + _this = this; + if (name in opts) { + res = act.apply(this, arguments); + if (opt._only) { + return Q.when(res, function(res) { + return _this.reject({ + toString: function() { + return res.toString(); + }, + exitCode: 0 + }); + }); + } else { + return res; + } + } + }); + return this; + }; + + /** + Set custom additional completion for current option. + @param {Function} completion generation function, + invoked in the context of option instance. + Accepts parameters: + - {Object} opts completion options + It can return promise or any other value treated as result. + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.comp = Cmd.prototype.comp; + + Opt.prototype._saveVal = function(opts, val) { + var _name; + if (this._val) { + val = this._val(val); + } + if (this._arr) { + (opts[_name = this._name] || (opts[_name] = [])).push(val); + } else { + opts[this._name] = val; + } + return val; + }; + + Opt.prototype._parse = function(argv, opts) { + return this._saveVal(opts, this._flag ? true : argv.shift()); + }; + + Opt.prototype._checkParsed = function(opts, args) { + return !opts.hasOwnProperty(this._name); + }; + + Opt.prototype._usage = function() { + var nameStr, res; + res = []; + nameStr = this._name.toUpperCase(); + if (this._short) { + res.push('-', Color('lgreen', this._short)); + if (!this._flag) { + res.push(' ' + nameStr); + } + res.push(', '); + } + if (this._long) { + res.push('--', Color('green', this._long)); + if (!this._flag) { + res.push('=' + nameStr); + } + } + res.push(' : ', this._title); + if (this._req) { + res.push(' ', Color('lred', '(required)')); + } + return res.join(''); + }; + + Opt.prototype._requiredText = function() { + return 'Missing required option:\n ' + this._usage(); + }; + + /** + Return rejected promise with error code. + Use in .val() for return with error. + @param {Object} reject reason + You can customize toString() method and exitCode property + of reason object. + @returns {Q.promise} rejected promise + */ + + + Opt.prototype.reject = Cmd.prototype.reject; + + /** + Finish chain for current option and return parent command instance. + @returns {COA.Cmd} parent command + */ + + + Opt.prototype.end = Cmd.prototype.end; + + /** + Apply function with arguments in context of option instance. + @param {Function} fn + @param {Array} args + @returns {COA.Opt} this instance (for chainability) + */ + + + Opt.prototype.apply = Cmd.prototype.apply; + + return Opt; + +})(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/shell.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/shell.js new file mode 100644 index 0000000..f3d4966 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/lib/shell.js @@ -0,0 +1,14 @@ +// Generated by CoffeeScript 1.6.3 +exports.unescape = function(w) { + w = w.charAt(0) === '"' ? w.replace(/^"|([^\\])"$/g, '$1') : w.replace(/\\ /g, ' '); + return w.replace(/\\("|'|\$|`|\\)/g, '$1'); +}; + +exports.escape = function(w) { + w = w.replace(/(["'$`\\])/g, '\\$1'); + if (w.match(/\s+/)) { + return '"' + w + '"'; + } else { + return w; + } +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/node_modules/q/CHANGES.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/node_modules/q/CHANGES.md new file mode 100644 index 0000000..cd351fd --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/coa/node_modules/q/CHANGES.md @@ -0,0 +1,786 @@ + +## 1.4.1 + + - Address an issue that prevented Q from being used as a ` + + +``` + +Browser support was done mostly for online demo. If you find any errors - feel +free to send pull requests with fixes. Also note, that IE and other old browsers +needs [es5-shims](https://github.com/kriskowal/es5-shim) to operate. + +Notes: + +1. We have no resourses to support browserified version. Don't expect it to be + well tested. Don't expect fast fixes if something goes wrong there. +2. `!!js/function` in browser bundle will not work by default. If you really need + it - load `esprima` parser first (via amd or directly). +3. `!!bin` in browser will return `Array`, because browsers do not support + node.js `Buffer` and adding Buffer shims is completely useless on practice. + + +API +--- + +Here we cover the most 'useful' methods. If you need advanced details (creating +your own tags), see [wiki](https://github.com/nodeca/js-yaml/wiki) and +[examples](https://github.com/nodeca/js-yaml/tree/master/examples) for more +info. + +``` javascript +yaml = require('js-yaml'); +fs = require('fs'); + +// Get document, or throw exception on error +try { + var doc = yaml.safeLoad(fs.readFileSync('/home/ixti/example.yml', 'utf8')); + console.log(doc); +} catch (e) { + console.log(e); +} +``` + + +### safeLoad (string [ , options ]) + +**Recommended loading way.** Parses `string` as single YAML document. Returns a JavaScript +object or throws `YAMLException` on error. By default, does not support regexps, +functions and undefined. This method is safe for untrusted data. + +options: + +- `filename` _(default: null)_ - string to be used as a file path in + error/warning messages. +- `onWarning` _(default: null)_ - function to call on warning messages. + Loader will throw on warnings if this function is not provided. +- `schema` _(default: `DEFAULT_SAFE_SCHEMA`)_ - specifies a schema to use. + - `FAILSAFE_SCHEMA` - only strings, arrays and plain objects: + http://www.yaml.org/spec/1.2/spec.html#id2802346 + - `JSON_SCHEMA` - all JSON-supported types: + http://www.yaml.org/spec/1.2/spec.html#id2803231 + - `CORE_SCHEMA` - same as `JSON_SCHEMA`: + http://www.yaml.org/spec/1.2/spec.html#id2804923 + - `DEFAULT_SAFE_SCHEMA` - all supported YAML types, without unsafe ones + (`!!js/undefined`, `!!js/regexp` and `!!js/function`): + http://yaml.org/type/ + - `DEFAULT_FULL_SCHEMA` - all supported YAML types. + +NOTE: This function **does not** understand multi-document sources, it throws +exception on those. + +NOTE: JS-YAML **does not** support schema-specific tag resolution restrictions. +So, JSON schema is not as strict as defined in the YAML specification. +It allows numbers in any notaion, use `Null` and `NULL` as `null`, etc. +Core schema also has no such restrictions. It allows binary notation for integers. + + +### load (string [ , options ]) + +**Use with care with untrusted sources**. The same as `safeLoad()` but uses +`DEFAULT_FULL_SCHEMA` by default - adds some JavaScript-specific types: +`!!js/function`, `!!js/regexp` and `!!js/undefined`. For untrusted sources you +must additionally validate object structure, to avoid injections: + +``` javascript +var untrusted_code = '"toString": ! "function (){very_evil_thing();}"'; + +// I'm just converting that string, what could possibly go wrong? +require('js-yaml').load(untrusted_code) + '' +``` + + +### safeLoadAll (string, iterator [ , options ]) + +Same as `safeLoad()`, but understands multi-document sources and apply +`iterator` to each document. + +``` javascript +var yaml = require('js-yaml'); + +yaml.safeLoadAll(data, function (doc) { + console.log(doc); +}); +``` + + +### loadAll (string, iterator [ , options ]) + +Same as `safeLoadAll()` but uses `DEFAULT_FULL_SCHEMA` by default. + + +### safeDump (object [ , options ]) + +Serializes `object` as YAML document. Uses `DEFAULT_SAFE_SCHEMA`, so it will +throw exception if you try to dump regexps or functions. However, you can +disable exceptions by `skipInvalid` option. + +options: + +- `indent` _(default: 2)_ - indentation width to use (in spaces). +- `skipInvalid` _(default: false)_ - do not throw on invalid types (like function + in the safe schema) and skip pairs and single values with such types. +- `flowLevel` (default: -1) - specifies level of nesting, when to switch from + block to flow style for collections. -1 means block style everwhere +- `styles` - "tag" => "style" map. Each tag may have own set of styles. +- `schema` _(default: `DEFAULT_SAFE_SCHEMA`)_ specifies a schema to use. +- `sortKeys` _(default: `false`)_ - if `true`, sort keys when dumping YAML. If a + function, use the function to sort the keys. + +styles: + +``` none +!!null + "canonical" => "~" + +!!int + "binary" => "0b1", "0b101010", "0b1110001111010" + "octal" => "01", "052", "016172" + "decimal" => "1", "42", "7290" + "hexadecimal" => "0x1", "0x2A", "0x1C7A" + +!!null, !!bool, !!float + "lowercase" => "null", "true", "false", ".nan", '.inf' + "uppercase" => "NULL", "TRUE", "FALSE", ".NAN", '.INF' + "camelcase" => "Null", "True", "False", ".NaN", '.Inf' +``` + +By default, !!int uses `decimal`, and !!null, !!bool, !!float use `lowercase`. + + + +### dump (object [ , options ]) + +Same as `safeDump()` but without limits (uses `DEFAULT_FULL_SCHEMA` by default). + + +Supported YAML types +-------------------- + +The list of standard YAML tags and corresponding JavaScipt types. See also +[YAML tag discussion](http://pyyaml.org/wiki/YAMLTagDiscussion) and +[YAML types repository](http://yaml.org/type/). + +``` +!!null '' # null +!!bool 'yes' # bool +!!int '3...' # number +!!float '3.14...' # number +!!binary '...base64...' # buffer +!!timestamp 'YYYY-...' # date +!!omap [ ... ] # array of key-value pairs +!!pairs [ ... ] # array or array pairs +!!set { ... } # array of objects with given keys and null values +!!str '...' # string +!!seq [ ... ] # array +!!map { ... } # object +``` + +**JavaScript-specific tags** + +``` +!!js/regexp /pattern/gim # RegExp +!!js/undefined '' # Undefined +!!js/function 'function () {...}' # Function +``` + +Caveats +------- + +Note, that you use arrays or objects as key in JS-YAML. JS do not allows objects +or array as keys, and stringifies (by calling .toString method) them at the +moment of adding them. + +``` yaml +--- +? [ foo, bar ] +: - baz +? { foo: bar } +: - baz + - baz +``` + +``` javascript +{ "foo,bar": ["baz"], "[object Object]": ["baz", "baz"] } +``` + +Also, reading of properties on implicit block mapping keys is not supported yet. +So, the following YAML document cannot be loaded. + +``` yaml +&anchor foo: + foo: bar + *anchor: duplicate key + baz: bat + *anchor: duplicate key +``` + + +Breaking changes in 2.x.x -> 3.x.x +---------------------------------- + +If your have not used __custom__ tags or loader classes and not loaded yaml +files via `require()` - no changes needed. Just upgrade library. + +In other case, you should: + +1. Replace all occurences of `require('xxxx.yml')` by `fs.readFileSync()` + + `yaml.safeLoad()`. +2. rewrite your custom tags constructors and custom loader + classes, to conform new API. See + [examples](https://github.com/nodeca/js-yaml/tree/master/examples) and + [wiki](https://github.com/nodeca/js-yaml/wiki) for details. + + +License +------- + +View the [LICENSE](https://github.com/nodeca/js-yaml/blob/master/LICENSE) file +(MIT). diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/bin/js-yaml.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/bin/js-yaml.js new file mode 100644 index 0000000..e6029d6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/bin/js-yaml.js @@ -0,0 +1,142 @@ +#!/usr/bin/env node + + +'use strict'; + +/*eslint-disable no-console*/ + + +// stdlib +var fs = require('fs'); + + +// 3rd-party +var argparse = require('argparse'); + + +// internal +var yaml = require('..'); + + +//////////////////////////////////////////////////////////////////////////////// + + +var cli = new argparse.ArgumentParser({ + prog: 'js-yaml', + version: require('../package.json').version, + addHelp: true +}); + + +cli.addArgument([ '-c', '--compact' ], { + help: 'Display errors in compact mode', + action: 'storeTrue' +}); + + +// deprecated (not needed after we removed output colors) +// option suppressed, but not completely removed for compatibility +cli.addArgument([ '-j', '--to-json' ], { + help: argparse.Const.SUPPRESS, + dest: 'json', + action: 'storeTrue' +}); + + +cli.addArgument([ '-t', '--trace' ], { + help: 'Show stack trace on error', + action: 'storeTrue' +}); + +cli.addArgument([ 'file' ], { + help: 'File to read, utf-8 encoded without BOM', + nargs: '?', + defaultValue: '-' +}); + + +//////////////////////////////////////////////////////////////////////////////// + + +var options = cli.parseArgs(); + + +//////////////////////////////////////////////////////////////////////////////// + +function readFile(filename, encoding, callback) { + if (options.file === '-') { + // read from stdin + + var chunks = []; + + process.stdin.on('data', function (chunk) { + chunks.push(chunk); + }); + + process.stdin.on('end', function () { + return callback(null, Buffer.concat(chunks).toString(encoding)); + }); + } else { + fs.readFile(filename, encoding, callback); + } +} + +readFile(options.file, 'utf8', function (error, input) { + var output, isYaml; + + if (error) { + if (error.code === 'ENOENT') { + console.error('File not found: ' + options.file); + process.exit(2); + } + + console.error( + options.trace && error.stack || + error.message || + String(error)); + + process.exit(1); + } + + try { + output = JSON.parse(input); + isYaml = false; + } catch (error) { + if (error instanceof SyntaxError) { + try { + output = []; + yaml.loadAll(input, function (doc) { output.push(doc); }, {}); + isYaml = true; + + if (0 === output.length) { + output = null; + } else if (1 === output.length) { + output = output[0]; + } + } catch (error) { + if (options.trace && error.stack) { + console.error(error.stack); + } else { + console.error(error.toString(options.compact)); + } + + process.exit(1); + } + } else { + console.error( + options.trace && error.stack || + error.message || + String(error)); + + process.exit(1); + } + } + + if (isYaml) { + console.log(JSON.stringify(output, null, ' ')); + } else { + console.log(yaml.dump(output)); + } + + process.exit(0); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/bower.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/bower.json new file mode 100644 index 0000000..010912f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/bower.json @@ -0,0 +1,23 @@ + +{ + "name": "js-yaml", + "main": "dist/js-yaml.js", + "homepage": "https://github.com/nodeca/js-yaml", + "authors": [ "Dervus Grim ", + "Vitaly Puzrin ", + "Aleksey V Zapparov ", + "Martin Grenfell " ], + "description": "YAML 1.2 parser and serializer", + "keywords": ["yaml", "parser", "serializer", "pyyaml"], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "benchmark", + "bower_components", + "test", + "Makefile", + "index*", + "package.json" + ] +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/dist/js-yaml.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/dist/js-yaml.js new file mode 100644 index 0000000..21ce73c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/dist/js-yaml.js @@ -0,0 +1,3960 @@ +/* js-yaml 3.3.1 https://github.com/nodeca/js-yaml */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.jsyaml = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o */ +var CHAR_QUESTION = 0x3F; /* ? */ +var CHAR_COMMERCIAL_AT = 0x40; /* @ */ +var CHAR_LEFT_SQUARE_BRACKET = 0x5B; /* [ */ +var CHAR_RIGHT_SQUARE_BRACKET = 0x5D; /* ] */ +var CHAR_GRAVE_ACCENT = 0x60; /* ` */ +var CHAR_LEFT_CURLY_BRACKET = 0x7B; /* { */ +var CHAR_VERTICAL_LINE = 0x7C; /* | */ +var CHAR_RIGHT_CURLY_BRACKET = 0x7D; /* } */ + +var ESCAPE_SEQUENCES = {}; + +ESCAPE_SEQUENCES[0x00] = '\\0'; +ESCAPE_SEQUENCES[0x07] = '\\a'; +ESCAPE_SEQUENCES[0x08] = '\\b'; +ESCAPE_SEQUENCES[0x09] = '\\t'; +ESCAPE_SEQUENCES[0x0A] = '\\n'; +ESCAPE_SEQUENCES[0x0B] = '\\v'; +ESCAPE_SEQUENCES[0x0C] = '\\f'; +ESCAPE_SEQUENCES[0x0D] = '\\r'; +ESCAPE_SEQUENCES[0x1B] = '\\e'; +ESCAPE_SEQUENCES[0x22] = '\\"'; +ESCAPE_SEQUENCES[0x5C] = '\\\\'; +ESCAPE_SEQUENCES[0x85] = '\\N'; +ESCAPE_SEQUENCES[0xA0] = '\\_'; +ESCAPE_SEQUENCES[0x2028] = '\\L'; +ESCAPE_SEQUENCES[0x2029] = '\\P'; + +var DEPRECATED_BOOLEANS_SYNTAX = [ + 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON', + 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF' +]; + +function compileStyleMap(schema, map) { + var result, keys, index, length, tag, style, type; + + if (null === map) { + return {}; + } + + result = {}; + keys = Object.keys(map); + + for (index = 0, length = keys.length; index < length; index += 1) { + tag = keys[index]; + style = String(map[tag]); + + if ('!!' === tag.slice(0, 2)) { + tag = 'tag:yaml.org,2002:' + tag.slice(2); + } + + type = schema.compiledTypeMap[tag]; + + if (type && _hasOwnProperty.call(type.styleAliases, style)) { + style = type.styleAliases[style]; + } + + result[tag] = style; + } + + return result; +} + +function encodeHex(character) { + var string, handle, length; + + string = character.toString(16).toUpperCase(); + + if (character <= 0xFF) { + handle = 'x'; + length = 2; + } else if (character <= 0xFFFF) { + handle = 'u'; + length = 4; + } else if (character <= 0xFFFFFFFF) { + handle = 'U'; + length = 8; + } else { + throw new YAMLException('code point within a string may not be greater than 0xFFFFFFFF'); + } + + return '\\' + handle + common.repeat('0', length - string.length) + string; +} + +function State(options) { + this.schema = options['schema'] || DEFAULT_FULL_SCHEMA; + this.indent = Math.max(1, (options['indent'] || 2)); + this.skipInvalid = options['skipInvalid'] || false; + this.flowLevel = (common.isNothing(options['flowLevel']) ? -1 : options['flowLevel']); + this.styleMap = compileStyleMap(this.schema, options['styles'] || null); + this.sortKeys = options['sortKeys'] || false; + + this.implicitTypes = this.schema.compiledImplicit; + this.explicitTypes = this.schema.compiledExplicit; + + this.tag = null; + this.result = ''; + + this.duplicates = []; + this.usedDuplicates = null; +} + +function indentString(string, spaces) { + var ind = common.repeat(' ', spaces), + position = 0, + next = -1, + result = '', + line, + length = string.length; + + while (position < length) { + next = string.indexOf('\n', position); + if (next === -1) { + line = string.slice(position); + position = length; + } else { + line = string.slice(position, next + 1); + position = next + 1; + } + if (line.length && line !== '\n') { + result += ind; + } + result += line; + } + + return result; +} + +function generateNextLine(state, level) { + return '\n' + common.repeat(' ', state.indent * level); +} + +function testImplicitResolving(state, str) { + var index, length, type; + + for (index = 0, length = state.implicitTypes.length; index < length; index += 1) { + type = state.implicitTypes[index]; + + if (type.resolve(str)) { + return true; + } + } + + return false; +} + +function StringBuilder(source) { + this.source = source; + this.result = ''; + this.checkpoint = 0; +} + +StringBuilder.prototype.takeUpTo = function (position) { + var er; + + if (position < this.checkpoint) { + er = new Error('position should be > checkpoint'); + er.position = position; + er.checkpoint = this.checkpoint; + throw er; + } + + this.result += this.source.slice(this.checkpoint, position); + this.checkpoint = position; + return this; +}; + +StringBuilder.prototype.escapeChar = function () { + var character, esc; + + character = this.source.charCodeAt(this.checkpoint); + esc = ESCAPE_SEQUENCES[character] || encodeHex(character); + this.result += esc; + this.checkpoint += 1; + + return this; +}; + +StringBuilder.prototype.finish = function () { + if (this.source.length > this.checkpoint) { + this.takeUpTo(this.source.length); + } +}; + +function writeScalar(state, object, level) { + var simple, first, spaceWrap, folded, literal, single, double, + sawLineFeed, linePosition, longestLine, indent, max, character, + position, escapeSeq, hexEsc, previous, lineLength, modifier, + trailingLineBreaks, result; + + if (0 === object.length) { + state.dump = "''"; + return; + } + + if (-1 !== DEPRECATED_BOOLEANS_SYNTAX.indexOf(object)) { + state.dump = "'" + object + "'"; + return; + } + + simple = true; + first = object.length ? object.charCodeAt(0) : 0; + spaceWrap = (CHAR_SPACE === first || + CHAR_SPACE === object.charCodeAt(object.length - 1)); + + // Simplified check for restricted first characters + // http://www.yaml.org/spec/1.2/spec.html#ns-plain-first%28c%29 + if (CHAR_MINUS === first || + CHAR_QUESTION === first || + CHAR_COMMERCIAL_AT === first || + CHAR_GRAVE_ACCENT === first) { + simple = false; + } + + // can only use > and | if not wrapped in spaces. + if (spaceWrap) { + simple = false; + folded = false; + literal = false; + } else { + folded = true; + literal = true; + } + + single = true; + double = new StringBuilder(object); + + sawLineFeed = false; + linePosition = 0; + longestLine = 0; + + indent = state.indent * level; + max = 80; + if (indent < 40) { + max -= indent; + } else { + max = 40; + } + + for (position = 0; position < object.length; position++) { + character = object.charCodeAt(position); + if (simple) { + // Characters that can never appear in the simple scalar + if (!simpleChar(character)) { + simple = false; + } else { + // Still simple. If we make it all the way through like + // this, then we can just dump the string as-is. + continue; + } + } + + if (single && character === CHAR_SINGLE_QUOTE) { + single = false; + } + + escapeSeq = ESCAPE_SEQUENCES[character]; + hexEsc = needsHexEscape(character); + + if (!escapeSeq && !hexEsc) { + continue; + } + + if (character !== CHAR_LINE_FEED && + character !== CHAR_DOUBLE_QUOTE && + character !== CHAR_SINGLE_QUOTE) { + folded = false; + literal = false; + } else if (character === CHAR_LINE_FEED) { + sawLineFeed = true; + single = false; + if (position > 0) { + previous = object.charCodeAt(position - 1); + if (previous === CHAR_SPACE) { + literal = false; + folded = false; + } + } + if (folded) { + lineLength = position - linePosition; + linePosition = position; + if (lineLength > longestLine) { + longestLine = lineLength; + } + } + } + + if (character !== CHAR_DOUBLE_QUOTE) { + single = false; + } + + double.takeUpTo(position); + double.escapeChar(); + } + + if (simple && testImplicitResolving(state, object)) { + simple = false; + } + + modifier = ''; + if (folded || literal) { + trailingLineBreaks = 0; + if (object.charCodeAt(object.length - 1) === CHAR_LINE_FEED) { + trailingLineBreaks += 1; + if (object.charCodeAt(object.length - 2) === CHAR_LINE_FEED) { + trailingLineBreaks += 1; + } + } + + if (trailingLineBreaks === 0) { + modifier = '-'; + } else if (trailingLineBreaks === 2) { + modifier = '+'; + } + } + + if (literal && longestLine < max) { + folded = false; + } + + // If it's literally one line, then don't bother with the literal. + // We may still want to do a fold, though, if it's a super long line. + if (!sawLineFeed) { + literal = false; + } + + if (simple) { + state.dump = object; + } else if (single) { + state.dump = '\'' + object + '\''; + } else if (folded) { + result = fold(object, max); + state.dump = '>' + modifier + '\n' + indentString(result, indent); + } else if (literal) { + if (!modifier) { + object = object.replace(/\n$/, ''); + } + state.dump = '|' + modifier + '\n' + indentString(object, indent); + } else if (double) { + double.finish(); + state.dump = '"' + double.result + '"'; + } else { + throw new Error('Failed to dump scalar value'); + } + + return; +} + +// The `trailing` var is a regexp match of any trailing `\n` characters. +// +// There are three cases we care about: +// +// 1. One trailing `\n` on the string. Just use `|` or `>`. +// This is the assumed default. (trailing = null) +// 2. No trailing `\n` on the string. Use `|-` or `>-` to "chomp" the end. +// 3. More than one trailing `\n` on the string. Use `|+` or `>+`. +// +// In the case of `>+`, these line breaks are *not* doubled (like the line +// breaks within the string), so it's important to only end with the exact +// same number as we started. +function fold(object, max) { + var result = '', + position = 0, + length = object.length, + trailing = /\n+$/.exec(object), + newLine; + + if (trailing) { + length = trailing.index + 1; + } + + while (position < length) { + newLine = object.indexOf('\n', position); + if (newLine > length || newLine === -1) { + if (result) { + result += '\n\n'; + } + result += foldLine(object.slice(position, length), max); + position = length; + } else { + if (result) { + result += '\n\n'; + } + result += foldLine(object.slice(position, newLine), max); + position = newLine + 1; + } + } + if (trailing && trailing[0] !== '\n') { + result += trailing[0]; + } + + return result; +} + +function foldLine(line, max) { + if (line === '') { + return line; + } + + var foldRe = /[^\s] [^\s]/g, + result = '', + prevMatch = 0, + foldStart = 0, + match = foldRe.exec(line), + index, + foldEnd, + folded; + + while (match) { + index = match.index; + + // when we cross the max len, if the previous match would've + // been ok, use that one, and carry on. If there was no previous + // match on this fold section, then just have a long line. + if (index - foldStart > max) { + if (prevMatch !== foldStart) { + foldEnd = prevMatch; + } else { + foldEnd = index; + } + + if (result) { + result += '\n'; + } + folded = line.slice(foldStart, foldEnd); + result += folded; + foldStart = foldEnd + 1; + } + prevMatch = index + 1; + match = foldRe.exec(line); + } + + if (result) { + result += '\n'; + } + + // if we end up with one last word at the end, then the last bit might + // be slightly bigger than we wanted, because we exited out of the loop. + if (foldStart !== prevMatch && line.length - foldStart > max) { + result += line.slice(foldStart, prevMatch) + '\n' + + line.slice(prevMatch + 1); + } else { + result += line.slice(foldStart); + } + + return result; +} + +// Returns true if character can be found in a simple scalar +function simpleChar(character) { + return CHAR_TAB !== character && + CHAR_LINE_FEED !== character && + CHAR_CARRIAGE_RETURN !== character && + CHAR_COMMA !== character && + CHAR_LEFT_SQUARE_BRACKET !== character && + CHAR_RIGHT_SQUARE_BRACKET !== character && + CHAR_LEFT_CURLY_BRACKET !== character && + CHAR_RIGHT_CURLY_BRACKET !== character && + CHAR_SHARP !== character && + CHAR_AMPERSAND !== character && + CHAR_ASTERISK !== character && + CHAR_EXCLAMATION !== character && + CHAR_VERTICAL_LINE !== character && + CHAR_GREATER_THAN !== character && + CHAR_SINGLE_QUOTE !== character && + CHAR_DOUBLE_QUOTE !== character && + CHAR_PERCENT !== character && + CHAR_COLON !== character && + !ESCAPE_SEQUENCES[character] && + !needsHexEscape(character); +} + +// Returns true if the character code needs to be escaped. +function needsHexEscape(character) { + return !((0x00020 <= character && character <= 0x00007E) || + (0x00085 === character) || + (0x000A0 <= character && character <= 0x00D7FF) || + (0x0E000 <= character && character <= 0x00FFFD) || + (0x10000 <= character && character <= 0x10FFFF)); +} + +function writeFlowSequence(state, level, object) { + var _result = '', + _tag = state.tag, + index, + length; + + for (index = 0, length = object.length; index < length; index += 1) { + // Write only valid elements. + if (writeNode(state, level, object[index], false, false)) { + if (0 !== index) { + _result += ', '; + } + _result += state.dump; + } + } + + state.tag = _tag; + state.dump = '[' + _result + ']'; +} + +function writeBlockSequence(state, level, object, compact) { + var _result = '', + _tag = state.tag, + index, + length; + + for (index = 0, length = object.length; index < length; index += 1) { + // Write only valid elements. + if (writeNode(state, level + 1, object[index], true, true)) { + if (!compact || 0 !== index) { + _result += generateNextLine(state, level); + } + _result += '- ' + state.dump; + } + } + + state.tag = _tag; + state.dump = _result || '[]'; // Empty sequence if no valid values. +} + +function writeFlowMapping(state, level, object) { + var _result = '', + _tag = state.tag, + objectKeyList = Object.keys(object), + index, + length, + objectKey, + objectValue, + pairBuffer; + + for (index = 0, length = objectKeyList.length; index < length; index += 1) { + pairBuffer = ''; + + if (0 !== index) { + pairBuffer += ', '; + } + + objectKey = objectKeyList[index]; + objectValue = object[objectKey]; + + if (!writeNode(state, level, objectKey, false, false)) { + continue; // Skip this pair because of invalid key; + } + + if (state.dump.length > 1024) { + pairBuffer += '? '; + } + + pairBuffer += state.dump + ': '; + + if (!writeNode(state, level, objectValue, false, false)) { + continue; // Skip this pair because of invalid value. + } + + pairBuffer += state.dump; + + // Both key and value are valid. + _result += pairBuffer; + } + + state.tag = _tag; + state.dump = '{' + _result + '}'; +} + +function writeBlockMapping(state, level, object, compact) { + var _result = '', + _tag = state.tag, + objectKeyList = Object.keys(object), + index, + length, + objectKey, + objectValue, + explicitPair, + pairBuffer; + + // Allow sorting keys so that the output file is deterministic + if (state.sortKeys === true) { + // Default sorting + objectKeyList.sort(); + } else if (typeof state.sortKeys === 'function') { + // Custom sort function + objectKeyList.sort(state.sortKeys); + } else if (state.sortKeys) { + // Something is wrong + throw new YAMLException('sortKeys must be a boolean or a function'); + } + + for (index = 0, length = objectKeyList.length; index < length; index += 1) { + pairBuffer = ''; + + if (!compact || 0 !== index) { + pairBuffer += generateNextLine(state, level); + } + + objectKey = objectKeyList[index]; + objectValue = object[objectKey]; + + if (!writeNode(state, level + 1, objectKey, true, true)) { + continue; // Skip this pair because of invalid key. + } + + explicitPair = (null !== state.tag && '?' !== state.tag) || + (state.dump && state.dump.length > 1024); + + if (explicitPair) { + if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { + pairBuffer += '?'; + } else { + pairBuffer += '? '; + } + } + + pairBuffer += state.dump; + + if (explicitPair) { + pairBuffer += generateNextLine(state, level); + } + + if (!writeNode(state, level + 1, objectValue, true, explicitPair)) { + continue; // Skip this pair because of invalid value. + } + + if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { + pairBuffer += ':'; + } else { + pairBuffer += ': '; + } + + pairBuffer += state.dump; + + // Both key and value are valid. + _result += pairBuffer; + } + + state.tag = _tag; + state.dump = _result || '{}'; // Empty mapping if no valid pairs. +} + +function detectType(state, object, explicit) { + var _result, typeList, index, length, type, style; + + typeList = explicit ? state.explicitTypes : state.implicitTypes; + + for (index = 0, length = typeList.length; index < length; index += 1) { + type = typeList[index]; + + if ((type.instanceOf || type.predicate) && + (!type.instanceOf || (('object' === typeof object) && (object instanceof type.instanceOf))) && + (!type.predicate || type.predicate(object))) { + + state.tag = explicit ? type.tag : '?'; + + if (type.represent) { + style = state.styleMap[type.tag] || type.defaultStyle; + + if ('[object Function]' === _toString.call(type.represent)) { + _result = type.represent(object, style); + } else if (_hasOwnProperty.call(type.represent, style)) { + _result = type.represent[style](object, style); + } else { + throw new YAMLException('!<' + type.tag + '> tag resolver accepts not "' + style + '" style'); + } + + state.dump = _result; + } + + return true; + } + } + + return false; +} + +// Serializes `object` and writes it to global `result`. +// Returns true on success, or false on invalid object. +// +function writeNode(state, level, object, block, compact) { + state.tag = null; + state.dump = object; + + if (!detectType(state, object, false)) { + detectType(state, object, true); + } + + var type = _toString.call(state.dump); + + if (block) { + block = (0 > state.flowLevel || state.flowLevel > level); + } + + if ((null !== state.tag && '?' !== state.tag) || (2 !== state.indent && level > 0)) { + compact = false; + } + + var objectOrArray = '[object Object]' === type || '[object Array]' === type, + duplicateIndex, + duplicate; + + if (objectOrArray) { + duplicateIndex = state.duplicates.indexOf(object); + duplicate = duplicateIndex !== -1; + } + + if (duplicate && state.usedDuplicates[duplicateIndex]) { + state.dump = '*ref_' + duplicateIndex; + } else { + if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) { + state.usedDuplicates[duplicateIndex] = true; + } + if ('[object Object]' === type) { + if (block && (0 !== Object.keys(state.dump).length)) { + writeBlockMapping(state, level, state.dump, compact); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + (0 === level ? '\n' : '') + state.dump; + } + } else { + writeFlowMapping(state, level, state.dump); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + ' ' + state.dump; + } + } + } else if ('[object Array]' === type) { + if (block && (0 !== state.dump.length)) { + writeBlockSequence(state, level, state.dump, compact); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + (0 === level ? '\n' : '') + state.dump; + } + } else { + writeFlowSequence(state, level, state.dump); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + ' ' + state.dump; + } + } + } else if ('[object String]' === type) { + if ('?' !== state.tag) { + writeScalar(state, state.dump, level); + } + } else { + if (state.skipInvalid) { + return false; + } + throw new YAMLException('unacceptable kind of an object to dump ' + type); + } + + if (null !== state.tag && '?' !== state.tag) { + state.dump = '!<' + state.tag + '> ' + state.dump; + } + } + + return true; +} + +function getDuplicateReferences(object, state) { + var objects = [], + duplicatesIndexes = [], + index, + length; + + inspectNode(object, objects, duplicatesIndexes); + + for (index = 0, length = duplicatesIndexes.length; index < length; index += 1) { + state.duplicates.push(objects[duplicatesIndexes[index]]); + } + state.usedDuplicates = new Array(length); +} + +function inspectNode(object, objects, duplicatesIndexes) { + var type = _toString.call(object), + objectKeyList, + index, + length; + + if (null !== object && 'object' === typeof object) { + index = objects.indexOf(object); + if (-1 !== index) { + if (-1 === duplicatesIndexes.indexOf(index)) { + duplicatesIndexes.push(index); + } + } else { + objects.push(object); + + if (Array.isArray(object)) { + for (index = 0, length = object.length; index < length; index += 1) { + inspectNode(object[index], objects, duplicatesIndexes); + } + } else { + objectKeyList = Object.keys(object); + + for (index = 0, length = objectKeyList.length; index < length; index += 1) { + inspectNode(object[objectKeyList[index]], objects, duplicatesIndexes); + } + } + } + } +} + +function dump(input, options) { + options = options || {}; + + var state = new State(options); + + getDuplicateReferences(input, state); + + if (writeNode(state, 0, input, true, true)) { + return state.dump + '\n'; + } + return ''; +} + +function safeDump(input, options) { + return dump(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options)); +} + +module.exports.dump = dump; +module.exports.safeDump = safeDump; + +},{"./common":2,"./exception":4,"./schema/default_full":9,"./schema/default_safe":10}],4:[function(require,module,exports){ +'use strict'; + + +function YAMLException(reason, mark) { + this.name = 'YAMLException'; + this.reason = reason; + this.mark = mark; + this.message = this.toString(false); +} + + +YAMLException.prototype.toString = function toString(compact) { + var result; + + result = 'JS-YAML: ' + (this.reason || '(unknown reason)'); + + if (!compact && this.mark) { + result += ' ' + this.mark.toString(); + } + + return result; +}; + + +module.exports = YAMLException; + +},{}],5:[function(require,module,exports){ +'use strict'; + +/*eslint-disable max-len,no-use-before-define*/ + +var common = require('./common'); +var YAMLException = require('./exception'); +var Mark = require('./mark'); +var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe'); +var DEFAULT_FULL_SCHEMA = require('./schema/default_full'); + + +var _hasOwnProperty = Object.prototype.hasOwnProperty; + + +var CONTEXT_FLOW_IN = 1; +var CONTEXT_FLOW_OUT = 2; +var CONTEXT_BLOCK_IN = 3; +var CONTEXT_BLOCK_OUT = 4; + + +var CHOMPING_CLIP = 1; +var CHOMPING_STRIP = 2; +var CHOMPING_KEEP = 3; + + +var PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/; +var PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/; +var PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/; +var PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i; +var PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i; + + +function is_EOL(c) { + return (c === 0x0A/* LF */) || (c === 0x0D/* CR */); +} + +function is_WHITE_SPACE(c) { + return (c === 0x09/* Tab */) || (c === 0x20/* Space */); +} + +function is_WS_OR_EOL(c) { + return (c === 0x09/* Tab */) || + (c === 0x20/* Space */) || + (c === 0x0A/* LF */) || + (c === 0x0D/* CR */); +} + +function is_FLOW_INDICATOR(c) { + return 0x2C/* , */ === c || + 0x5B/* [ */ === c || + 0x5D/* ] */ === c || + 0x7B/* { */ === c || + 0x7D/* } */ === c; +} + +function fromHexCode(c) { + var lc; + + if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) { + return c - 0x30; + } + + /*eslint-disable no-bitwise*/ + lc = c | 0x20; + + if ((0x61/* a */ <= lc) && (lc <= 0x66/* f */)) { + return lc - 0x61 + 10; + } + + return -1; +} + +function escapedHexLen(c) { + if (c === 0x78/* x */) { return 2; } + if (c === 0x75/* u */) { return 4; } + if (c === 0x55/* U */) { return 8; } + return 0; +} + +function fromDecimalCode(c) { + if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) { + return c - 0x30; + } + + return -1; +} + +function simpleEscapeSequence(c) { + return (c === 0x30/* 0 */) ? '\x00' : + (c === 0x61/* a */) ? '\x07' : + (c === 0x62/* b */) ? '\x08' : + (c === 0x74/* t */) ? '\x09' : + (c === 0x09/* Tab */) ? '\x09' : + (c === 0x6E/* n */) ? '\x0A' : + (c === 0x76/* v */) ? '\x0B' : + (c === 0x66/* f */) ? '\x0C' : + (c === 0x72/* r */) ? '\x0D' : + (c === 0x65/* e */) ? '\x1B' : + (c === 0x20/* Space */) ? ' ' : + (c === 0x22/* " */) ? '\x22' : + (c === 0x2F/* / */) ? '/' : + (c === 0x5C/* \ */) ? '\x5C' : + (c === 0x4E/* N */) ? '\x85' : + (c === 0x5F/* _ */) ? '\xA0' : + (c === 0x4C/* L */) ? '\u2028' : + (c === 0x50/* P */) ? '\u2029' : ''; +} + +function charFromCodepoint(c) { + if (c <= 0xFFFF) { + return String.fromCharCode(c); + } + // Encode UTF-16 surrogate pair + // https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF + return String.fromCharCode(((c - 0x010000) >> 10) + 0xD800, + ((c - 0x010000) & 0x03FF) + 0xDC00); +} + +var simpleEscapeCheck = new Array(256); // integer, for fast access +var simpleEscapeMap = new Array(256); +for (var i = 0; i < 256; i++) { + simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0; + simpleEscapeMap[i] = simpleEscapeSequence(i); +} + + +function State(input, options) { + this.input = input; + + this.filename = options['filename'] || null; + this.schema = options['schema'] || DEFAULT_FULL_SCHEMA; + this.onWarning = options['onWarning'] || null; + this.legacy = options['legacy'] || false; + + this.implicitTypes = this.schema.compiledImplicit; + this.typeMap = this.schema.compiledTypeMap; + + this.length = input.length; + this.position = 0; + this.line = 0; + this.lineStart = 0; + this.lineIndent = 0; + + this.documents = []; + + /* + this.version; + this.checkLineBreaks; + this.tagMap; + this.anchorMap; + this.tag; + this.anchor; + this.kind; + this.result;*/ + +} + + +function generateError(state, message) { + return new YAMLException( + message, + new Mark(state.filename, state.input, state.position, state.line, (state.position - state.lineStart))); +} + +function throwError(state, message) { + throw generateError(state, message); +} + +function throwWarning(state, message) { + var error = generateError(state, message); + + if (state.onWarning) { + state.onWarning.call(null, error); + } else { + throw error; + } +} + + +var directiveHandlers = { + + YAML: function handleYamlDirective(state, name, args) { + + var match, major, minor; + + if (null !== state.version) { + throwError(state, 'duplication of %YAML directive'); + } + + if (1 !== args.length) { + throwError(state, 'YAML directive accepts exactly one argument'); + } + + match = /^([0-9]+)\.([0-9]+)$/.exec(args[0]); + + if (null === match) { + throwError(state, 'ill-formed argument of the YAML directive'); + } + + major = parseInt(match[1], 10); + minor = parseInt(match[2], 10); + + if (1 !== major) { + throwError(state, 'unacceptable YAML version of the document'); + } + + state.version = args[0]; + state.checkLineBreaks = (minor < 2); + + if (1 !== minor && 2 !== minor) { + throwWarning(state, 'unsupported YAML version of the document'); + } + }, + + TAG: function handleTagDirective(state, name, args) { + + var handle, prefix; + + if (2 !== args.length) { + throwError(state, 'TAG directive accepts exactly two arguments'); + } + + handle = args[0]; + prefix = args[1]; + + if (!PATTERN_TAG_HANDLE.test(handle)) { + throwError(state, 'ill-formed tag handle (first argument) of the TAG directive'); + } + + if (_hasOwnProperty.call(state.tagMap, handle)) { + throwError(state, 'there is a previously declared suffix for "' + handle + '" tag handle'); + } + + if (!PATTERN_TAG_URI.test(prefix)) { + throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive'); + } + + state.tagMap[handle] = prefix; + } +}; + + +function captureSegment(state, start, end, checkJson) { + var _position, _length, _character, _result; + + if (start < end) { + _result = state.input.slice(start, end); + + if (checkJson) { + for (_position = 0, _length = _result.length; + _position < _length; + _position += 1) { + _character = _result.charCodeAt(_position); + if (!(0x09 === _character || + 0x20 <= _character && _character <= 0x10FFFF)) { + throwError(state, 'expected valid JSON character'); + } + } + } + + state.result += _result; + } +} + +function mergeMappings(state, destination, source) { + var sourceKeys, key, index, quantity; + + if (!common.isObject(source)) { + throwError(state, 'cannot merge mappings; the provided source object is unacceptable'); + } + + sourceKeys = Object.keys(source); + + for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) { + key = sourceKeys[index]; + + if (!_hasOwnProperty.call(destination, key)) { + destination[key] = source[key]; + } + } +} + +function storeMappingPair(state, _result, keyTag, keyNode, valueNode) { + var index, quantity; + + keyNode = String(keyNode); + + if (null === _result) { + _result = {}; + } + + if ('tag:yaml.org,2002:merge' === keyTag) { + if (Array.isArray(valueNode)) { + for (index = 0, quantity = valueNode.length; index < quantity; index += 1) { + mergeMappings(state, _result, valueNode[index]); + } + } else { + mergeMappings(state, _result, valueNode); + } + } else { + _result[keyNode] = valueNode; + } + + return _result; +} + +function readLineBreak(state) { + var ch; + + ch = state.input.charCodeAt(state.position); + + if (0x0A/* LF */ === ch) { + state.position++; + } else if (0x0D/* CR */ === ch) { + state.position++; + if (0x0A/* LF */ === state.input.charCodeAt(state.position)) { + state.position++; + } + } else { + throwError(state, 'a line break is expected'); + } + + state.line += 1; + state.lineStart = state.position; +} + +function skipSeparationSpace(state, allowComments, checkIndent) { + var lineBreaks = 0, + ch = state.input.charCodeAt(state.position); + + while (0 !== ch) { + while (is_WHITE_SPACE(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (allowComments && 0x23/* # */ === ch) { + do { + ch = state.input.charCodeAt(++state.position); + } while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && 0 !== ch); + } + + if (is_EOL(ch)) { + readLineBreak(state); + + ch = state.input.charCodeAt(state.position); + lineBreaks++; + state.lineIndent = 0; + + while (0x20/* Space */ === ch) { + state.lineIndent++; + ch = state.input.charCodeAt(++state.position); + } + } else { + break; + } + } + + if (-1 !== checkIndent && 0 !== lineBreaks && state.lineIndent < checkIndent) { + throwWarning(state, 'deficient indentation'); + } + + return lineBreaks; +} + +function testDocumentSeparator(state) { + var _position = state.position, + ch; + + ch = state.input.charCodeAt(_position); + + // Condition state.position === state.lineStart is tested + // in parent on each call, for efficiency. No needs to test here again. + if ((0x2D/* - */ === ch || 0x2E/* . */ === ch) && + state.input.charCodeAt(_position + 1) === ch && + state.input.charCodeAt(_position + 2) === ch) { + + _position += 3; + + ch = state.input.charCodeAt(_position); + + if (ch === 0 || is_WS_OR_EOL(ch)) { + return true; + } + } + + return false; +} + +function writeFoldedLines(state, count) { + if (1 === count) { + state.result += ' '; + } else if (count > 1) { + state.result += common.repeat('\n', count - 1); + } +} + + +function readPlainScalar(state, nodeIndent, withinFlowCollection) { + var preceding, + following, + captureStart, + captureEnd, + hasPendingContent, + _line, + _lineStart, + _lineIndent, + _kind = state.kind, + _result = state.result, + ch; + + ch = state.input.charCodeAt(state.position); + + if (is_WS_OR_EOL(ch) || + is_FLOW_INDICATOR(ch) || + 0x23/* # */ === ch || + 0x26/* & */ === ch || + 0x2A/* * */ === ch || + 0x21/* ! */ === ch || + 0x7C/* | */ === ch || + 0x3E/* > */ === ch || + 0x27/* ' */ === ch || + 0x22/* " */ === ch || + 0x25/* % */ === ch || + 0x40/* @ */ === ch || + 0x60/* ` */ === ch) { + return false; + } + + if (0x3F/* ? */ === ch || 0x2D/* - */ === ch) { + following = state.input.charCodeAt(state.position + 1); + + if (is_WS_OR_EOL(following) || + withinFlowCollection && is_FLOW_INDICATOR(following)) { + return false; + } + } + + state.kind = 'scalar'; + state.result = ''; + captureStart = captureEnd = state.position; + hasPendingContent = false; + + while (0 !== ch) { + if (0x3A/* : */ === ch) { + following = state.input.charCodeAt(state.position + 1); + + if (is_WS_OR_EOL(following) || + withinFlowCollection && is_FLOW_INDICATOR(following)) { + break; + } + + } else if (0x23/* # */ === ch) { + preceding = state.input.charCodeAt(state.position - 1); + + if (is_WS_OR_EOL(preceding)) { + break; + } + + } else if ((state.position === state.lineStart && testDocumentSeparator(state)) || + withinFlowCollection && is_FLOW_INDICATOR(ch)) { + break; + + } else if (is_EOL(ch)) { + _line = state.line; + _lineStart = state.lineStart; + _lineIndent = state.lineIndent; + skipSeparationSpace(state, false, -1); + + if (state.lineIndent >= nodeIndent) { + hasPendingContent = true; + ch = state.input.charCodeAt(state.position); + continue; + } else { + state.position = captureEnd; + state.line = _line; + state.lineStart = _lineStart; + state.lineIndent = _lineIndent; + break; + } + } + + if (hasPendingContent) { + captureSegment(state, captureStart, captureEnd, false); + writeFoldedLines(state, state.line - _line); + captureStart = captureEnd = state.position; + hasPendingContent = false; + } + + if (!is_WHITE_SPACE(ch)) { + captureEnd = state.position + 1; + } + + ch = state.input.charCodeAt(++state.position); + } + + captureSegment(state, captureStart, captureEnd, false); + + if (state.result) { + return true; + } + + state.kind = _kind; + state.result = _result; + return false; +} + +function readSingleQuotedScalar(state, nodeIndent) { + var ch, + captureStart, captureEnd; + + ch = state.input.charCodeAt(state.position); + + if (0x27/* ' */ !== ch) { + return false; + } + + state.kind = 'scalar'; + state.result = ''; + state.position++; + captureStart = captureEnd = state.position; + + while (0 !== (ch = state.input.charCodeAt(state.position))) { + if (0x27/* ' */ === ch) { + captureSegment(state, captureStart, state.position, true); + ch = state.input.charCodeAt(++state.position); + + if (0x27/* ' */ === ch) { + captureStart = captureEnd = state.position; + state.position++; + } else { + return true; + } + + } else if (is_EOL(ch)) { + captureSegment(state, captureStart, captureEnd, true); + writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent)); + captureStart = captureEnd = state.position; + + } else if (state.position === state.lineStart && testDocumentSeparator(state)) { + throwError(state, 'unexpected end of the document within a single quoted scalar'); + + } else { + state.position++; + captureEnd = state.position; + } + } + + throwError(state, 'unexpected end of the stream within a single quoted scalar'); +} + +function readDoubleQuotedScalar(state, nodeIndent) { + var captureStart, + captureEnd, + hexLength, + hexResult, + tmp, tmpEsc, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x22/* " */ !== ch) { + return false; + } + + state.kind = 'scalar'; + state.result = ''; + state.position++; + captureStart = captureEnd = state.position; + + while (0 !== (ch = state.input.charCodeAt(state.position))) { + if (0x22/* " */ === ch) { + captureSegment(state, captureStart, state.position, true); + state.position++; + return true; + + } else if (0x5C/* \ */ === ch) { + captureSegment(state, captureStart, state.position, true); + ch = state.input.charCodeAt(++state.position); + + if (is_EOL(ch)) { + skipSeparationSpace(state, false, nodeIndent); + + // TODO: rework to inline fn with no type cast? + } else if (ch < 256 && simpleEscapeCheck[ch]) { + state.result += simpleEscapeMap[ch]; + state.position++; + + } else if ((tmp = escapedHexLen(ch)) > 0) { + hexLength = tmp; + hexResult = 0; + + for (; hexLength > 0; hexLength--) { + ch = state.input.charCodeAt(++state.position); + + if ((tmp = fromHexCode(ch)) >= 0) { + hexResult = (hexResult << 4) + tmp; + + } else { + throwError(state, 'expected hexadecimal character'); + } + } + + state.result += charFromCodepoint(hexResult); + + state.position++; + + } else { + throwError(state, 'unknown escape sequence'); + } + + captureStart = captureEnd = state.position; + + } else if (is_EOL(ch)) { + captureSegment(state, captureStart, captureEnd, true); + writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent)); + captureStart = captureEnd = state.position; + + } else if (state.position === state.lineStart && testDocumentSeparator(state)) { + throwError(state, 'unexpected end of the document within a double quoted scalar'); + + } else { + state.position++; + captureEnd = state.position; + } + } + + throwError(state, 'unexpected end of the stream within a double quoted scalar'); +} + +function readFlowCollection(state, nodeIndent) { + var readNext = true, + _line, + _tag = state.tag, + _result, + _anchor = state.anchor, + following, + terminator, + isPair, + isExplicitPair, + isMapping, + keyNode, + keyTag, + valueNode, + ch; + + ch = state.input.charCodeAt(state.position); + + if (ch === 0x5B/* [ */) { + terminator = 0x5D;/* ] */ + isMapping = false; + _result = []; + } else if (ch === 0x7B/* { */) { + terminator = 0x7D;/* } */ + isMapping = true; + _result = {}; + } else { + return false; + } + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = _result; + } + + ch = state.input.charCodeAt(++state.position); + + while (0 !== ch) { + skipSeparationSpace(state, true, nodeIndent); + + ch = state.input.charCodeAt(state.position); + + if (ch === terminator) { + state.position++; + state.tag = _tag; + state.anchor = _anchor; + state.kind = isMapping ? 'mapping' : 'sequence'; + state.result = _result; + return true; + } else if (!readNext) { + throwError(state, 'missed comma between flow collection entries'); + } + + keyTag = keyNode = valueNode = null; + isPair = isExplicitPair = false; + + if (0x3F/* ? */ === ch) { + following = state.input.charCodeAt(state.position + 1); + + if (is_WS_OR_EOL(following)) { + isPair = isExplicitPair = true; + state.position++; + skipSeparationSpace(state, true, nodeIndent); + } + } + + _line = state.line; + composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true); + keyTag = state.tag; + keyNode = state.result; + skipSeparationSpace(state, true, nodeIndent); + + ch = state.input.charCodeAt(state.position); + + if ((isExplicitPair || state.line === _line) && 0x3A/* : */ === ch) { + isPair = true; + ch = state.input.charCodeAt(++state.position); + skipSeparationSpace(state, true, nodeIndent); + composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true); + valueNode = state.result; + } + + if (isMapping) { + storeMappingPair(state, _result, keyTag, keyNode, valueNode); + } else if (isPair) { + _result.push(storeMappingPair(state, null, keyTag, keyNode, valueNode)); + } else { + _result.push(keyNode); + } + + skipSeparationSpace(state, true, nodeIndent); + + ch = state.input.charCodeAt(state.position); + + if (0x2C/* , */ === ch) { + readNext = true; + ch = state.input.charCodeAt(++state.position); + } else { + readNext = false; + } + } + + throwError(state, 'unexpected end of the stream within a flow collection'); +} + +function readBlockScalar(state, nodeIndent) { + var captureStart, + folding, + chomping = CHOMPING_CLIP, + detectedIndent = false, + textIndent = nodeIndent, + emptyLines = 0, + atMoreIndented = false, + tmp, + ch; + + ch = state.input.charCodeAt(state.position); + + if (ch === 0x7C/* | */) { + folding = false; + } else if (ch === 0x3E/* > */) { + folding = true; + } else { + return false; + } + + state.kind = 'scalar'; + state.result = ''; + + while (0 !== ch) { + ch = state.input.charCodeAt(++state.position); + + if (0x2B/* + */ === ch || 0x2D/* - */ === ch) { + if (CHOMPING_CLIP === chomping) { + chomping = (0x2B/* + */ === ch) ? CHOMPING_KEEP : CHOMPING_STRIP; + } else { + throwError(state, 'repeat of a chomping mode identifier'); + } + + } else if ((tmp = fromDecimalCode(ch)) >= 0) { + if (tmp === 0) { + throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one'); + } else if (!detectedIndent) { + textIndent = nodeIndent + tmp - 1; + detectedIndent = true; + } else { + throwError(state, 'repeat of an indentation width identifier'); + } + + } else { + break; + } + } + + if (is_WHITE_SPACE(ch)) { + do { ch = state.input.charCodeAt(++state.position); } + while (is_WHITE_SPACE(ch)); + + if (0x23/* # */ === ch) { + do { ch = state.input.charCodeAt(++state.position); } + while (!is_EOL(ch) && (0 !== ch)); + } + } + + while (0 !== ch) { + readLineBreak(state); + state.lineIndent = 0; + + ch = state.input.charCodeAt(state.position); + + while ((!detectedIndent || state.lineIndent < textIndent) && + (0x20/* Space */ === ch)) { + state.lineIndent++; + ch = state.input.charCodeAt(++state.position); + } + + if (!detectedIndent && state.lineIndent > textIndent) { + textIndent = state.lineIndent; + } + + if (is_EOL(ch)) { + emptyLines++; + continue; + } + + // End of the scalar. + if (state.lineIndent < textIndent) { + + // Perform the chomping. + if (chomping === CHOMPING_KEEP) { + state.result += common.repeat('\n', emptyLines); + } else if (chomping === CHOMPING_CLIP) { + if (detectedIndent) { // i.e. only if the scalar is not empty. + state.result += '\n'; + } + } + + // Break this `while` cycle and go to the funciton's epilogue. + break; + } + + // Folded style: use fancy rules to handle line breaks. + if (folding) { + + // Lines starting with white space characters (more-indented lines) are not folded. + if (is_WHITE_SPACE(ch)) { + atMoreIndented = true; + state.result += common.repeat('\n', emptyLines + 1); + + // End of more-indented block. + } else if (atMoreIndented) { + atMoreIndented = false; + state.result += common.repeat('\n', emptyLines + 1); + + // Just one line break - perceive as the same line. + } else if (0 === emptyLines) { + if (detectedIndent) { // i.e. only if we have already read some scalar content. + state.result += ' '; + } + + // Several line breaks - perceive as different lines. + } else { + state.result += common.repeat('\n', emptyLines); + } + + // Literal style: just add exact number of line breaks between content lines. + } else if (detectedIndent) { + // If current line isn't the first one - count line break from the last content line. + state.result += common.repeat('\n', emptyLines + 1); + } else { + // In case of the first content line - count only empty lines. + } + + detectedIndent = true; + emptyLines = 0; + captureStart = state.position; + + while (!is_EOL(ch) && (0 !== ch)) { + ch = state.input.charCodeAt(++state.position); + } + + captureSegment(state, captureStart, state.position, false); + } + + return true; +} + +function readBlockSequence(state, nodeIndent) { + var _line, + _tag = state.tag, + _anchor = state.anchor, + _result = [], + following, + detected = false, + ch; + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = _result; + } + + ch = state.input.charCodeAt(state.position); + + while (0 !== ch) { + + if (0x2D/* - */ !== ch) { + break; + } + + following = state.input.charCodeAt(state.position + 1); + + if (!is_WS_OR_EOL(following)) { + break; + } + + detected = true; + state.position++; + + if (skipSeparationSpace(state, true, -1)) { + if (state.lineIndent <= nodeIndent) { + _result.push(null); + ch = state.input.charCodeAt(state.position); + continue; + } + } + + _line = state.line; + composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true); + _result.push(state.result); + skipSeparationSpace(state, true, -1); + + ch = state.input.charCodeAt(state.position); + + if ((state.line === _line || state.lineIndent > nodeIndent) && (0 !== ch)) { + throwError(state, 'bad indentation of a sequence entry'); + } else if (state.lineIndent < nodeIndent) { + break; + } + } + + if (detected) { + state.tag = _tag; + state.anchor = _anchor; + state.kind = 'sequence'; + state.result = _result; + return true; + } + return false; +} + +function readBlockMapping(state, nodeIndent, flowIndent) { + var following, + allowCompact, + _line, + _tag = state.tag, + _anchor = state.anchor, + _result = {}, + keyTag = null, + keyNode = null, + valueNode = null, + atExplicitKey = false, + detected = false, + ch; + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = _result; + } + + ch = state.input.charCodeAt(state.position); + + while (0 !== ch) { + following = state.input.charCodeAt(state.position + 1); + _line = state.line; // Save the current line. + + // + // Explicit notation case. There are two separate blocks: + // first for the key (denoted by "?") and second for the value (denoted by ":") + // + if ((0x3F/* ? */ === ch || 0x3A/* : */ === ch) && is_WS_OR_EOL(following)) { + + if (0x3F/* ? */ === ch) { + if (atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, null); + keyTag = keyNode = valueNode = null; + } + + detected = true; + atExplicitKey = true; + allowCompact = true; + + } else if (atExplicitKey) { + // i.e. 0x3A/* : */ === character after the explicit key. + atExplicitKey = false; + allowCompact = true; + + } else { + throwError(state, 'incomplete explicit mapping pair; a key node is missed'); + } + + state.position += 1; + ch = following; + + // + // Implicit notation case. Flow-style node as the key first, then ":", and the value. + // + } else if (composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) { + + if (state.line === _line) { + ch = state.input.charCodeAt(state.position); + + while (is_WHITE_SPACE(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (0x3A/* : */ === ch) { + ch = state.input.charCodeAt(++state.position); + + if (!is_WS_OR_EOL(ch)) { + throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping'); + } + + if (atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, null); + keyTag = keyNode = valueNode = null; + } + + detected = true; + atExplicitKey = false; + allowCompact = false; + keyTag = state.tag; + keyNode = state.result; + + } else if (detected) { + throwError(state, 'can not read an implicit mapping pair; a colon is missed'); + + } else { + state.tag = _tag; + state.anchor = _anchor; + return true; // Keep the result of `composeNode`. + } + + } else if (detected) { + throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key'); + + } else { + state.tag = _tag; + state.anchor = _anchor; + return true; // Keep the result of `composeNode`. + } + + } else { + break; // Reading is done. Go to the epilogue. + } + + // + // Common reading code for both explicit and implicit notations. + // + if (state.line === _line || state.lineIndent > nodeIndent) { + if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) { + if (atExplicitKey) { + keyNode = state.result; + } else { + valueNode = state.result; + } + } + + if (!atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, valueNode); + keyTag = keyNode = valueNode = null; + } + + skipSeparationSpace(state, true, -1); + ch = state.input.charCodeAt(state.position); + } + + if (state.lineIndent > nodeIndent && (0 !== ch)) { + throwError(state, 'bad indentation of a mapping entry'); + } else if (state.lineIndent < nodeIndent) { + break; + } + } + + // + // Epilogue. + // + + // Special case: last mapping's node contains only the key in explicit notation. + if (atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, null); + } + + // Expose the resulting mapping. + if (detected) { + state.tag = _tag; + state.anchor = _anchor; + state.kind = 'mapping'; + state.result = _result; + } + + return detected; +} + +function readTagProperty(state) { + var _position, + isVerbatim = false, + isNamed = false, + tagHandle, + tagName, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x21/* ! */ !== ch) { + return false; + } + + if (null !== state.tag) { + throwError(state, 'duplication of a tag property'); + } + + ch = state.input.charCodeAt(++state.position); + + if (0x3C/* < */ === ch) { + isVerbatim = true; + ch = state.input.charCodeAt(++state.position); + + } else if (0x21/* ! */ === ch) { + isNamed = true; + tagHandle = '!!'; + ch = state.input.charCodeAt(++state.position); + + } else { + tagHandle = '!'; + } + + _position = state.position; + + if (isVerbatim) { + do { ch = state.input.charCodeAt(++state.position); } + while (0 !== ch && 0x3E/* > */ !== ch); + + if (state.position < state.length) { + tagName = state.input.slice(_position, state.position); + ch = state.input.charCodeAt(++state.position); + } else { + throwError(state, 'unexpected end of the stream within a verbatim tag'); + } + } else { + while (0 !== ch && !is_WS_OR_EOL(ch)) { + + if (0x21/* ! */ === ch) { + if (!isNamed) { + tagHandle = state.input.slice(_position - 1, state.position + 1); + + if (!PATTERN_TAG_HANDLE.test(tagHandle)) { + throwError(state, 'named tag handle cannot contain such characters'); + } + + isNamed = true; + _position = state.position + 1; + } else { + throwError(state, 'tag suffix cannot contain exclamation marks'); + } + } + + ch = state.input.charCodeAt(++state.position); + } + + tagName = state.input.slice(_position, state.position); + + if (PATTERN_FLOW_INDICATORS.test(tagName)) { + throwError(state, 'tag suffix cannot contain flow indicator characters'); + } + } + + if (tagName && !PATTERN_TAG_URI.test(tagName)) { + throwError(state, 'tag name cannot contain such characters: ' + tagName); + } + + if (isVerbatim) { + state.tag = tagName; + + } else if (_hasOwnProperty.call(state.tagMap, tagHandle)) { + state.tag = state.tagMap[tagHandle] + tagName; + + } else if ('!' === tagHandle) { + state.tag = '!' + tagName; + + } else if ('!!' === tagHandle) { + state.tag = 'tag:yaml.org,2002:' + tagName; + + } else { + throwError(state, 'undeclared tag handle "' + tagHandle + '"'); + } + + return true; +} + +function readAnchorProperty(state) { + var _position, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x26/* & */ !== ch) { + return false; + } + + if (null !== state.anchor) { + throwError(state, 'duplication of an anchor property'); + } + + ch = state.input.charCodeAt(++state.position); + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (state.position === _position) { + throwError(state, 'name of an anchor node must contain at least one character'); + } + + state.anchor = state.input.slice(_position, state.position); + return true; +} + +function readAlias(state) { + var _position, alias, + len = state.length, + input = state.input, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x2A/* * */ !== ch) { + return false; + } + + ch = state.input.charCodeAt(++state.position); + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (state.position === _position) { + throwError(state, 'name of an alias node must contain at least one character'); + } + + alias = state.input.slice(_position, state.position); + + if (!state.anchorMap.hasOwnProperty(alias)) { + throwError(state, 'unidentified alias "' + alias + '"'); + } + + state.result = state.anchorMap[alias]; + skipSeparationSpace(state, true, -1); + return true; +} + +function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact) { + var allowBlockStyles, + allowBlockScalars, + allowBlockCollections, + indentStatus = 1, // 1: this>parent, 0: this=parent, -1: this parentIndent) { + indentStatus = 1; + } else if (state.lineIndent === parentIndent) { + indentStatus = 0; + } else if (state.lineIndent < parentIndent) { + indentStatus = -1; + } + } + } + + if (1 === indentStatus) { + while (readTagProperty(state) || readAnchorProperty(state)) { + if (skipSeparationSpace(state, true, -1)) { + atNewLine = true; + allowBlockCollections = allowBlockStyles; + + if (state.lineIndent > parentIndent) { + indentStatus = 1; + } else if (state.lineIndent === parentIndent) { + indentStatus = 0; + } else if (state.lineIndent < parentIndent) { + indentStatus = -1; + } + } else { + allowBlockCollections = false; + } + } + } + + if (allowBlockCollections) { + allowBlockCollections = atNewLine || allowCompact; + } + + if (1 === indentStatus || CONTEXT_BLOCK_OUT === nodeContext) { + if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) { + flowIndent = parentIndent; + } else { + flowIndent = parentIndent + 1; + } + + blockIndent = state.position - state.lineStart; + + if (1 === indentStatus) { + if (allowBlockCollections && + (readBlockSequence(state, blockIndent) || + readBlockMapping(state, blockIndent, flowIndent)) || + readFlowCollection(state, flowIndent)) { + hasContent = true; + } else { + if ((allowBlockScalars && readBlockScalar(state, flowIndent)) || + readSingleQuotedScalar(state, flowIndent) || + readDoubleQuotedScalar(state, flowIndent)) { + hasContent = true; + + } else if (readAlias(state)) { + hasContent = true; + + if (null !== state.tag || null !== state.anchor) { + throwError(state, 'alias node should not have any properties'); + } + + } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) { + hasContent = true; + + if (null === state.tag) { + state.tag = '?'; + } + } + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = state.result; + } + } + } else if (0 === indentStatus) { + // Special case: block sequences are allowed to have same indentation level as the parent. + // http://www.yaml.org/spec/1.2/spec.html#id2799784 + hasContent = allowBlockCollections && readBlockSequence(state, blockIndent); + } + } + + if (null !== state.tag && '!' !== state.tag) { + if ('?' === state.tag) { + for (typeIndex = 0, typeQuantity = state.implicitTypes.length; + typeIndex < typeQuantity; + typeIndex += 1) { + type = state.implicitTypes[typeIndex]; + + // Implicit resolving is not allowed for non-scalar types, and '?' + // non-specific tag is only assigned to plain scalars. So, it isn't + // needed to check for 'kind' conformity. + + if (type.resolve(state.result)) { // `state.result` updated in resolver if matched + state.result = type.construct(state.result); + state.tag = type.tag; + if (null !== state.anchor) { + state.anchorMap[state.anchor] = state.result; + } + break; + } + } + } else if (_hasOwnProperty.call(state.typeMap, state.tag)) { + type = state.typeMap[state.tag]; + + if (null !== state.result && type.kind !== state.kind) { + throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be "' + type.kind + '", not "' + state.kind + '"'); + } + + if (!type.resolve(state.result)) { // `state.result` updated in resolver if matched + throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag'); + } else { + state.result = type.construct(state.result); + if (null !== state.anchor) { + state.anchorMap[state.anchor] = state.result; + } + } + } else { + throwWarning(state, 'unknown tag !<' + state.tag + '>'); + } + } + + return null !== state.tag || null !== state.anchor || hasContent; +} + +function readDocument(state) { + var documentStart = state.position, + _position, + directiveName, + directiveArgs, + hasDirectives = false, + ch; + + state.version = null; + state.checkLineBreaks = state.legacy; + state.tagMap = {}; + state.anchorMap = {}; + + while (0 !== (ch = state.input.charCodeAt(state.position))) { + skipSeparationSpace(state, true, -1); + + ch = state.input.charCodeAt(state.position); + + if (state.lineIndent > 0 || 0x25/* % */ !== ch) { + break; + } + + hasDirectives = true; + ch = state.input.charCodeAt(++state.position); + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + directiveName = state.input.slice(_position, state.position); + directiveArgs = []; + + if (directiveName.length < 1) { + throwError(state, 'directive name must not be less than one character in length'); + } + + while (0 !== ch) { + while (is_WHITE_SPACE(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (0x23/* # */ === ch) { + do { ch = state.input.charCodeAt(++state.position); } + while (0 !== ch && !is_EOL(ch)); + break; + } + + if (is_EOL(ch)) { + break; + } + + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + directiveArgs.push(state.input.slice(_position, state.position)); + } + + if (0 !== ch) { + readLineBreak(state); + } + + if (_hasOwnProperty.call(directiveHandlers, directiveName)) { + directiveHandlers[directiveName](state, directiveName, directiveArgs); + } else { + throwWarning(state, 'unknown document directive "' + directiveName + '"'); + } + } + + skipSeparationSpace(state, true, -1); + + if (0 === state.lineIndent && + 0x2D/* - */ === state.input.charCodeAt(state.position) && + 0x2D/* - */ === state.input.charCodeAt(state.position + 1) && + 0x2D/* - */ === state.input.charCodeAt(state.position + 2)) { + state.position += 3; + skipSeparationSpace(state, true, -1); + + } else if (hasDirectives) { + throwError(state, 'directives end mark is expected'); + } + + composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true); + skipSeparationSpace(state, true, -1); + + if (state.checkLineBreaks && + PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) { + throwWarning(state, 'non-ASCII line breaks are interpreted as content'); + } + + state.documents.push(state.result); + + if (state.position === state.lineStart && testDocumentSeparator(state)) { + + if (0x2E/* . */ === state.input.charCodeAt(state.position)) { + state.position += 3; + skipSeparationSpace(state, true, -1); + } + return; + } + + if (state.position < (state.length - 1)) { + throwError(state, 'end of the stream or a document separator is expected'); + } else { + return; + } +} + + +function loadDocuments(input, options) { + input = String(input); + options = options || {}; + + if (input.length !== 0) { + + // Add tailing `\n` if not exists + if (0x0A/* LF */ !== input.charCodeAt(input.length - 1) && + 0x0D/* CR */ !== input.charCodeAt(input.length - 1)) { + input += '\n'; + } + + // Strip BOM + if (input.charCodeAt(0) === 0xFEFF) { + input = input.slice(1); + } + } + + var state = new State(input, options); + + if (PATTERN_NON_PRINTABLE.test(state.input)) { + throwError(state, 'the stream contains non-printable characters'); + } + + // Use 0 as string terminator. That significantly simplifies bounds check. + state.input += '\0'; + + while (0x20/* Space */ === state.input.charCodeAt(state.position)) { + state.lineIndent += 1; + state.position += 1; + } + + while (state.position < (state.length - 1)) { + readDocument(state); + } + + return state.documents; +} + + +function loadAll(input, iterator, options) { + var documents = loadDocuments(input, options), index, length; + + for (index = 0, length = documents.length; index < length; index += 1) { + iterator(documents[index]); + } +} + + +function load(input, options) { + var documents = loadDocuments(input, options), index, length; + + if (0 === documents.length) { + /*eslint-disable no-undefined*/ + return undefined; + } else if (1 === documents.length) { + return documents[0]; + } + throw new YAMLException('expected a single document in the stream, but found more'); +} + + +function safeLoadAll(input, output, options) { + loadAll(input, output, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options)); +} + + +function safeLoad(input, options) { + return load(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options)); +} + + +module.exports.loadAll = loadAll; +module.exports.load = load; +module.exports.safeLoadAll = safeLoadAll; +module.exports.safeLoad = safeLoad; + +},{"./common":2,"./exception":4,"./mark":6,"./schema/default_full":9,"./schema/default_safe":10}],6:[function(require,module,exports){ +'use strict'; + + +var common = require('./common'); + + +function Mark(name, buffer, position, line, column) { + this.name = name; + this.buffer = buffer; + this.position = position; + this.line = line; + this.column = column; +} + + +Mark.prototype.getSnippet = function getSnippet(indent, maxLength) { + var head, start, tail, end, snippet; + + if (!this.buffer) { + return null; + } + + indent = indent || 4; + maxLength = maxLength || 75; + + head = ''; + start = this.position; + + while (start > 0 && -1 === '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(start - 1))) { + start -= 1; + if (this.position - start > (maxLength / 2 - 1)) { + head = ' ... '; + start += 5; + break; + } + } + + tail = ''; + end = this.position; + + while (end < this.buffer.length && -1 === '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(end))) { + end += 1; + if (end - this.position > (maxLength / 2 - 1)) { + tail = ' ... '; + end -= 5; + break; + } + } + + snippet = this.buffer.slice(start, end); + + return common.repeat(' ', indent) + head + snippet + tail + '\n' + + common.repeat(' ', indent + this.position - start + head.length) + '^'; +}; + + +Mark.prototype.toString = function toString(compact) { + var snippet, where = ''; + + if (this.name) { + where += 'in "' + this.name + '" '; + } + + where += 'at line ' + (this.line + 1) + ', column ' + (this.column + 1); + + if (!compact) { + snippet = this.getSnippet(); + + if (snippet) { + where += ':\n' + snippet; + } + } + + return where; +}; + + +module.exports = Mark; + +},{"./common":2}],7:[function(require,module,exports){ +'use strict'; + +/*eslint-disable max-len*/ + +var common = require('./common'); +var YAMLException = require('./exception'); +var Type = require('./type'); + + +function compileList(schema, name, result) { + var exclude = []; + + schema.include.forEach(function (includedSchema) { + result = compileList(includedSchema, name, result); + }); + + schema[name].forEach(function (currentType) { + result.forEach(function (previousType, previousIndex) { + if (previousType.tag === currentType.tag) { + exclude.push(previousIndex); + } + }); + + result.push(currentType); + }); + + return result.filter(function (type, index) { + return -1 === exclude.indexOf(index); + }); +} + + +function compileMap(/* lists... */) { + var result = {}, index, length; + + function collectType(type) { + result[type.tag] = type; + } + + for (index = 0, length = arguments.length; index < length; index += 1) { + arguments[index].forEach(collectType); + } + + return result; +} + + +function Schema(definition) { + this.include = definition.include || []; + this.implicit = definition.implicit || []; + this.explicit = definition.explicit || []; + + this.implicit.forEach(function (type) { + if (type.loadKind && 'scalar' !== type.loadKind) { + throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.'); + } + }); + + this.compiledImplicit = compileList(this, 'implicit', []); + this.compiledExplicit = compileList(this, 'explicit', []); + this.compiledTypeMap = compileMap(this.compiledImplicit, this.compiledExplicit); +} + + +Schema.DEFAULT = null; + + +Schema.create = function createSchema() { + var schemas, types; + + switch (arguments.length) { + case 1: + schemas = Schema.DEFAULT; + types = arguments[0]; + break; + + case 2: + schemas = arguments[0]; + types = arguments[1]; + break; + + default: + throw new YAMLException('Wrong number of arguments for Schema.create function'); + } + + schemas = common.toArray(schemas); + types = common.toArray(types); + + if (!schemas.every(function (schema) { return schema instanceof Schema; })) { + throw new YAMLException('Specified list of super schemas (or a single Schema object) contains a non-Schema object.'); + } + + if (!types.every(function (type) { return type instanceof Type; })) { + throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.'); + } + + return new Schema({ + include: schemas, + explicit: types + }); +}; + + +module.exports = Schema; + +},{"./common":2,"./exception":4,"./type":13}],8:[function(require,module,exports){ +// Standard YAML's Core schema. +// http://www.yaml.org/spec/1.2/spec.html#id2804923 +// +// NOTE: JS-YAML does not support schema-specific tag resolution restrictions. +// So, Core schema has no distinctions from JSON schema is JS-YAML. + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + include: [ + require('./json') + ] +}); + +},{"../schema":7,"./json":12}],9:[function(require,module,exports){ +// JS-YAML's default schema for `load` function. +// It is not described in the YAML specification. +// +// This schema is based on JS-YAML's default safe schema and includes +// JavaScript-specific types: !!js/undefined, !!js/regexp and !!js/function. +// +// Also this schema is used as default base schema at `Schema.create` function. + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = Schema.DEFAULT = new Schema({ + include: [ + require('./default_safe') + ], + explicit: [ + require('../type/js/undefined'), + require('../type/js/regexp'), + require('../type/js/function') + ] +}); + +},{"../schema":7,"../type/js/function":18,"../type/js/regexp":19,"../type/js/undefined":20,"./default_safe":10}],10:[function(require,module,exports){ +// JS-YAML's default schema for `safeLoad` function. +// It is not described in the YAML specification. +// +// This schema is based on standard YAML's Core schema and includes most of +// extra types described at YAML tag repository. (http://yaml.org/type/) + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + include: [ + require('./core') + ], + implicit: [ + require('../type/timestamp'), + require('../type/merge') + ], + explicit: [ + require('../type/binary'), + require('../type/omap'), + require('../type/pairs'), + require('../type/set') + ] +}); + +},{"../schema":7,"../type/binary":14,"../type/merge":22,"../type/omap":24,"../type/pairs":25,"../type/set":27,"../type/timestamp":29,"./core":8}],11:[function(require,module,exports){ +// Standard YAML's Failsafe schema. +// http://www.yaml.org/spec/1.2/spec.html#id2802346 + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + explicit: [ + require('../type/str'), + require('../type/seq'), + require('../type/map') + ] +}); + +},{"../schema":7,"../type/map":21,"../type/seq":26,"../type/str":28}],12:[function(require,module,exports){ +// Standard YAML's JSON schema. +// http://www.yaml.org/spec/1.2/spec.html#id2803231 +// +// NOTE: JS-YAML does not support schema-specific tag resolution restrictions. +// So, this schema is not such strict as defined in the YAML specification. +// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc. + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + include: [ + require('./failsafe') + ], + implicit: [ + require('../type/null'), + require('../type/bool'), + require('../type/int'), + require('../type/float') + ] +}); + +},{"../schema":7,"../type/bool":15,"../type/float":16,"../type/int":17,"../type/null":23,"./failsafe":11}],13:[function(require,module,exports){ +'use strict'; + +var YAMLException = require('./exception'); + +var TYPE_CONSTRUCTOR_OPTIONS = [ + 'kind', + 'resolve', + 'construct', + 'instanceOf', + 'predicate', + 'represent', + 'defaultStyle', + 'styleAliases' +]; + +var YAML_NODE_KINDS = [ + 'scalar', + 'sequence', + 'mapping' +]; + +function compileStyleAliases(map) { + var result = {}; + + if (null !== map) { + Object.keys(map).forEach(function (style) { + map[style].forEach(function (alias) { + result[String(alias)] = style; + }); + }); + } + + return result; +} + +function Type(tag, options) { + options = options || {}; + + Object.keys(options).forEach(function (name) { + if (-1 === TYPE_CONSTRUCTOR_OPTIONS.indexOf(name)) { + throw new YAMLException('Unknown option "' + name + '" is met in definition of "' + tag + '" YAML type.'); + } + }); + + // TODO: Add tag format check. + this.tag = tag; + this.kind = options['kind'] || null; + this.resolve = options['resolve'] || function () { return true; }; + this.construct = options['construct'] || function (data) { return data; }; + this.instanceOf = options['instanceOf'] || null; + this.predicate = options['predicate'] || null; + this.represent = options['represent'] || null; + this.defaultStyle = options['defaultStyle'] || null; + this.styleAliases = compileStyleAliases(options['styleAliases'] || null); + + if (-1 === YAML_NODE_KINDS.indexOf(this.kind)) { + throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.'); + } +} + +module.exports = Type; + +},{"./exception":4}],14:[function(require,module,exports){ +'use strict'; + +/*eslint-disable no-bitwise*/ + +// A trick for browserified version. +// Since we make browserifier to ignore `buffer` module, NodeBuffer will be undefined +var NodeBuffer = require('buffer').Buffer; +var Type = require('../type'); + + +// [ 64, 65, 66 ] -> [ padding, CR, LF ] +var BASE64_MAP = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r'; + + +function resolveYamlBinary(data) { + if (null === data) { + return false; + } + + var code, idx, bitlen = 0, len = 0, max = data.length, map = BASE64_MAP; + + // Convert one by one. + for (idx = 0; idx < max; idx++) { + code = map.indexOf(data.charAt(idx)); + + // Skip CR/LF + if (code > 64) { continue; } + + // Fail on illegal characters + if (code < 0) { return false; } + + bitlen += 6; + } + + // If there are any bits left, source was corrupted + return (bitlen % 8) === 0; +} + +function constructYamlBinary(data) { + var code, idx, tailbits, + input = data.replace(/[\r\n=]/g, ''), // remove CR/LF & padding to simplify scan + max = input.length, + map = BASE64_MAP, + bits = 0, + result = []; + + // Collect by 6*4 bits (3 bytes) + + for (idx = 0; idx < max; idx++) { + if ((idx % 4 === 0) && idx) { + result.push((bits >> 16) & 0xFF); + result.push((bits >> 8) & 0xFF); + result.push(bits & 0xFF); + } + + bits = (bits << 6) | map.indexOf(input.charAt(idx)); + } + + // Dump tail + + tailbits = (max % 4) * 6; + + if (tailbits === 0) { + result.push((bits >> 16) & 0xFF); + result.push((bits >> 8) & 0xFF); + result.push(bits & 0xFF); + } else if (tailbits === 18) { + result.push((bits >> 10) & 0xFF); + result.push((bits >> 2) & 0xFF); + } else if (tailbits === 12) { + result.push((bits >> 4) & 0xFF); + } + + // Wrap into Buffer for NodeJS and leave Array for browser + if (NodeBuffer) { + return new NodeBuffer(result); + } + + return result; +} + +function representYamlBinary(object /*, style*/) { + var result = '', bits = 0, idx, tail, + max = object.length, + map = BASE64_MAP; + + // Convert every three bytes to 4 ASCII characters. + + for (idx = 0; idx < max; idx++) { + if ((idx % 3 === 0) && idx) { + result += map[(bits >> 18) & 0x3F]; + result += map[(bits >> 12) & 0x3F]; + result += map[(bits >> 6) & 0x3F]; + result += map[bits & 0x3F]; + } + + bits = (bits << 8) + object[idx]; + } + + // Dump tail + + tail = max % 3; + + if (tail === 0) { + result += map[(bits >> 18) & 0x3F]; + result += map[(bits >> 12) & 0x3F]; + result += map[(bits >> 6) & 0x3F]; + result += map[bits & 0x3F]; + } else if (tail === 2) { + result += map[(bits >> 10) & 0x3F]; + result += map[(bits >> 4) & 0x3F]; + result += map[(bits << 2) & 0x3F]; + result += map[64]; + } else if (tail === 1) { + result += map[(bits >> 2) & 0x3F]; + result += map[(bits << 4) & 0x3F]; + result += map[64]; + result += map[64]; + } + + return result; +} + +function isBinary(object) { + return NodeBuffer && NodeBuffer.isBuffer(object); +} + +module.exports = new Type('tag:yaml.org,2002:binary', { + kind: 'scalar', + resolve: resolveYamlBinary, + construct: constructYamlBinary, + predicate: isBinary, + represent: representYamlBinary +}); + +},{"../type":13,"buffer":30}],15:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +function resolveYamlBoolean(data) { + if (null === data) { + return false; + } + + var max = data.length; + + return (max === 4 && (data === 'true' || data === 'True' || data === 'TRUE')) || + (max === 5 && (data === 'false' || data === 'False' || data === 'FALSE')); +} + +function constructYamlBoolean(data) { + return data === 'true' || + data === 'True' || + data === 'TRUE'; +} + +function isBoolean(object) { + return '[object Boolean]' === Object.prototype.toString.call(object); +} + +module.exports = new Type('tag:yaml.org,2002:bool', { + kind: 'scalar', + resolve: resolveYamlBoolean, + construct: constructYamlBoolean, + predicate: isBoolean, + represent: { + lowercase: function (object) { return object ? 'true' : 'false'; }, + uppercase: function (object) { return object ? 'TRUE' : 'FALSE'; }, + camelcase: function (object) { return object ? 'True' : 'False'; } + }, + defaultStyle: 'lowercase' +}); + +},{"../type":13}],16:[function(require,module,exports){ +'use strict'; + +var common = require('../common'); +var Type = require('../type'); + +var YAML_FLOAT_PATTERN = new RegExp( + '^(?:[-+]?(?:[0-9][0-9_]*)\\.[0-9_]*(?:[eE][-+][0-9]+)?' + + '|\\.[0-9_]+(?:[eE][-+][0-9]+)?' + + '|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*' + + '|[-+]?\\.(?:inf|Inf|INF)' + + '|\\.(?:nan|NaN|NAN))$'); + +function resolveYamlFloat(data) { + if (null === data) { + return false; + } + + var value, sign, base, digits; + + if (!YAML_FLOAT_PATTERN.test(data)) { + return false; + } + return true; +} + +function constructYamlFloat(data) { + var value, sign, base, digits; + + value = data.replace(/_/g, '').toLowerCase(); + sign = '-' === value[0] ? -1 : 1; + digits = []; + + if (0 <= '+-'.indexOf(value[0])) { + value = value.slice(1); + } + + if ('.inf' === value) { + return (1 === sign) ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY; + + } else if ('.nan' === value) { + return NaN; + + } else if (0 <= value.indexOf(':')) { + value.split(':').forEach(function (v) { + digits.unshift(parseFloat(v, 10)); + }); + + value = 0.0; + base = 1; + + digits.forEach(function (d) { + value += d * base; + base *= 60; + }); + + return sign * value; + + } + return sign * parseFloat(value, 10); +} + +function representYamlFloat(object, style) { + if (isNaN(object)) { + switch (style) { + case 'lowercase': + return '.nan'; + case 'uppercase': + return '.NAN'; + case 'camelcase': + return '.NaN'; + } + } else if (Number.POSITIVE_INFINITY === object) { + switch (style) { + case 'lowercase': + return '.inf'; + case 'uppercase': + return '.INF'; + case 'camelcase': + return '.Inf'; + } + } else if (Number.NEGATIVE_INFINITY === object) { + switch (style) { + case 'lowercase': + return '-.inf'; + case 'uppercase': + return '-.INF'; + case 'camelcase': + return '-.Inf'; + } + } else if (common.isNegativeZero(object)) { + return '-0.0'; + } + return object.toString(10); +} + +function isFloat(object) { + return ('[object Number]' === Object.prototype.toString.call(object)) && + (0 !== object % 1 || common.isNegativeZero(object)); +} + +module.exports = new Type('tag:yaml.org,2002:float', { + kind: 'scalar', + resolve: resolveYamlFloat, + construct: constructYamlFloat, + predicate: isFloat, + represent: representYamlFloat, + defaultStyle: 'lowercase' +}); + +},{"../common":2,"../type":13}],17:[function(require,module,exports){ +'use strict'; + +var common = require('../common'); +var Type = require('../type'); + +function isHexCode(c) { + return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) || + ((0x41/* A */ <= c) && (c <= 0x46/* F */)) || + ((0x61/* a */ <= c) && (c <= 0x66/* f */)); +} + +function isOctCode(c) { + return ((0x30/* 0 */ <= c) && (c <= 0x37/* 7 */)); +} + +function isDecCode(c) { + return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)); +} + +function resolveYamlInteger(data) { + if (null === data) { + return false; + } + + var max = data.length, + index = 0, + hasDigits = false, + ch; + + if (!max) { return false; } + + ch = data[index]; + + // sign + if (ch === '-' || ch === '+') { + ch = data[++index]; + } + + if (ch === '0') { + // 0 + if (index + 1 === max) { return true; } + ch = data[++index]; + + // base 2, base 8, base 16 + + if (ch === 'b') { + // base 2 + index++; + + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (ch !== '0' && ch !== '1') { + return false; + } + hasDigits = true; + } + return hasDigits; + } + + + if (ch === 'x') { + // base 16 + index++; + + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (!isHexCode(data.charCodeAt(index))) { + return false; + } + hasDigits = true; + } + return hasDigits; + } + + // base 8 + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (!isOctCode(data.charCodeAt(index))) { + return false; + } + hasDigits = true; + } + return hasDigits; + } + + // base 10 (except 0) or base 60 + + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (ch === ':') { break; } + if (!isDecCode(data.charCodeAt(index))) { + return false; + } + hasDigits = true; + } + + if (!hasDigits) { return false; } + + // if !base60 - done; + if (ch !== ':') { return true; } + + // base60 almost not used, no needs to optimize + return /^(:[0-5]?[0-9])+$/.test(data.slice(index)); +} + +function constructYamlInteger(data) { + var value = data, sign = 1, ch, base, digits = []; + + if (value.indexOf('_') !== -1) { + value = value.replace(/_/g, ''); + } + + ch = value[0]; + + if (ch === '-' || ch === '+') { + if (ch === '-') { sign = -1; } + value = value.slice(1); + ch = value[0]; + } + + if ('0' === value) { + return 0; + } + + if (ch === '0') { + if (value[1] === 'b') { + return sign * parseInt(value.slice(2), 2); + } + if (value[1] === 'x') { + return sign * parseInt(value, 16); + } + return sign * parseInt(value, 8); + + } + + if (value.indexOf(':') !== -1) { + value.split(':').forEach(function (v) { + digits.unshift(parseInt(v, 10)); + }); + + value = 0; + base = 1; + + digits.forEach(function (d) { + value += (d * base); + base *= 60; + }); + + return sign * value; + + } + + return sign * parseInt(value, 10); +} + +function isInteger(object) { + return ('[object Number]' === Object.prototype.toString.call(object)) && + (0 === object % 1 && !common.isNegativeZero(object)); +} + +module.exports = new Type('tag:yaml.org,2002:int', { + kind: 'scalar', + resolve: resolveYamlInteger, + construct: constructYamlInteger, + predicate: isInteger, + represent: { + binary: function (object) { return '0b' + object.toString(2); }, + octal: function (object) { return '0' + object.toString(8); }, + decimal: function (object) { return object.toString(10); }, + hexadecimal: function (object) { return '0x' + object.toString(16).toUpperCase(); } + }, + defaultStyle: 'decimal', + styleAliases: { + binary: [ 2, 'bin' ], + octal: [ 8, 'oct' ], + decimal: [ 10, 'dec' ], + hexadecimal: [ 16, 'hex' ] + } +}); + +},{"../common":2,"../type":13}],18:[function(require,module,exports){ +'use strict'; + +var esprima; + +// Browserified version does not have esprima +// +// 1. For node.js just require module as deps +// 2. For browser try to require mudule via external AMD system. +// If not found - try to fallback to window.esprima. If not +// found too - then fail to parse. +// +try { + esprima = require('esprima'); +} catch (_) { + /*global window */ + if (typeof window !== 'undefined') { esprima = window.esprima; } +} + +var Type = require('../../type'); + +function resolveJavascriptFunction(data) { + if (null === data) { + return false; + } + + try { + var source = '(' + data + ')', + ast = esprima.parse(source, { range: true }), + params = [], + body; + + if ('Program' !== ast.type || + 1 !== ast.body.length || + 'ExpressionStatement' !== ast.body[0].type || + 'FunctionExpression' !== ast.body[0].expression.type) { + return false; + } + + return true; + } catch (err) { + return false; + } +} + +function constructJavascriptFunction(data) { + /*jslint evil:true*/ + + var source = '(' + data + ')', + ast = esprima.parse(source, { range: true }), + params = [], + body; + + if ('Program' !== ast.type || + 1 !== ast.body.length || + 'ExpressionStatement' !== ast.body[0].type || + 'FunctionExpression' !== ast.body[0].expression.type) { + throw new Error('Failed to resolve function'); + } + + ast.body[0].expression.params.forEach(function (param) { + params.push(param.name); + }); + + body = ast.body[0].expression.body.range; + + // Esprima's ranges include the first '{' and the last '}' characters on + // function expressions. So cut them out. + /*eslint-disable no-new-func*/ + return new Function(params, source.slice(body[0] + 1, body[1] - 1)); +} + +function representJavascriptFunction(object /*, style*/) { + return object.toString(); +} + +function isFunction(object) { + return '[object Function]' === Object.prototype.toString.call(object); +} + +module.exports = new Type('tag:yaml.org,2002:js/function', { + kind: 'scalar', + resolve: resolveJavascriptFunction, + construct: constructJavascriptFunction, + predicate: isFunction, + represent: representJavascriptFunction +}); + +},{"../../type":13,"esprima":"esprima"}],19:[function(require,module,exports){ +'use strict'; + +var Type = require('../../type'); + +function resolveJavascriptRegExp(data) { + if (null === data) { + return false; + } + + if (0 === data.length) { + return false; + } + + var regexp = data, + tail = /\/([gim]*)$/.exec(data), + modifiers = ''; + + // if regexp starts with '/' it can have modifiers and must be properly closed + // `/foo/gim` - modifiers tail can be maximum 3 chars + if ('/' === regexp[0]) { + if (tail) { + modifiers = tail[1]; + } + + if (modifiers.length > 3) { return false; } + // if expression starts with /, is should be properly terminated + if (regexp[regexp.length - modifiers.length - 1] !== '/') { return false; } + + regexp = regexp.slice(1, regexp.length - modifiers.length - 1); + } + + try { + var dummy = new RegExp(regexp, modifiers); + return true; + } catch (error) { + return false; + } +} + +function constructJavascriptRegExp(data) { + var regexp = data, + tail = /\/([gim]*)$/.exec(data), + modifiers = ''; + + // `/foo/gim` - tail can be maximum 4 chars + if ('/' === regexp[0]) { + if (tail) { + modifiers = tail[1]; + } + regexp = regexp.slice(1, regexp.length - modifiers.length - 1); + } + + return new RegExp(regexp, modifiers); +} + +function representJavascriptRegExp(object /*, style*/) { + var result = '/' + object.source + '/'; + + if (object.global) { + result += 'g'; + } + + if (object.multiline) { + result += 'm'; + } + + if (object.ignoreCase) { + result += 'i'; + } + + return result; +} + +function isRegExp(object) { + return '[object RegExp]' === Object.prototype.toString.call(object); +} + +module.exports = new Type('tag:yaml.org,2002:js/regexp', { + kind: 'scalar', + resolve: resolveJavascriptRegExp, + construct: constructJavascriptRegExp, + predicate: isRegExp, + represent: representJavascriptRegExp +}); + +},{"../../type":13}],20:[function(require,module,exports){ +'use strict'; + +var Type = require('../../type'); + +function resolveJavascriptUndefined() { + return true; +} + +function constructJavascriptUndefined() { + /*eslint-disable no-undefined*/ + return undefined; +} + +function representJavascriptUndefined() { + return ''; +} + +function isUndefined(object) { + return 'undefined' === typeof object; +} + +module.exports = new Type('tag:yaml.org,2002:js/undefined', { + kind: 'scalar', + resolve: resolveJavascriptUndefined, + construct: constructJavascriptUndefined, + predicate: isUndefined, + represent: representJavascriptUndefined +}); + +},{"../../type":13}],21:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +module.exports = new Type('tag:yaml.org,2002:map', { + kind: 'mapping', + construct: function (data) { return null !== data ? data : {}; } +}); + +},{"../type":13}],22:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +function resolveYamlMerge(data) { + return '<<' === data || null === data; +} + +module.exports = new Type('tag:yaml.org,2002:merge', { + kind: 'scalar', + resolve: resolveYamlMerge +}); + +},{"../type":13}],23:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +function resolveYamlNull(data) { + if (null === data) { + return true; + } + + var max = data.length; + + return (max === 1 && data === '~') || + (max === 4 && (data === 'null' || data === 'Null' || data === 'NULL')); +} + +function constructYamlNull() { + return null; +} + +function isNull(object) { + return null === object; +} + +module.exports = new Type('tag:yaml.org,2002:null', { + kind: 'scalar', + resolve: resolveYamlNull, + construct: constructYamlNull, + predicate: isNull, + represent: { + canonical: function () { return '~'; }, + lowercase: function () { return 'null'; }, + uppercase: function () { return 'NULL'; }, + camelcase: function () { return 'Null'; } + }, + defaultStyle: 'lowercase' +}); + +},{"../type":13}],24:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +var _hasOwnProperty = Object.prototype.hasOwnProperty; +var _toString = Object.prototype.toString; + +function resolveYamlOmap(data) { + if (null === data) { + return true; + } + + var objectKeys = [], index, length, pair, pairKey, pairHasKey, + object = data; + + for (index = 0, length = object.length; index < length; index += 1) { + pair = object[index]; + pairHasKey = false; + + if ('[object Object]' !== _toString.call(pair)) { + return false; + } + + for (pairKey in pair) { + if (_hasOwnProperty.call(pair, pairKey)) { + if (!pairHasKey) { + pairHasKey = true; + } else { + return false; + } + } + } + + if (!pairHasKey) { + return false; + } + + if (-1 === objectKeys.indexOf(pairKey)) { + objectKeys.push(pairKey); + } else { + return false; + } + } + + return true; +} + +function constructYamlOmap(data) { + return null !== data ? data : []; +} + +module.exports = new Type('tag:yaml.org,2002:omap', { + kind: 'sequence', + resolve: resolveYamlOmap, + construct: constructYamlOmap +}); + +},{"../type":13}],25:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +var _toString = Object.prototype.toString; + +function resolveYamlPairs(data) { + if (null === data) { + return true; + } + + var index, length, pair, keys, result, + object = data; + + result = new Array(object.length); + + for (index = 0, length = object.length; index < length; index += 1) { + pair = object[index]; + + if ('[object Object]' !== _toString.call(pair)) { + return false; + } + + keys = Object.keys(pair); + + if (1 !== keys.length) { + return false; + } + + result[index] = [ keys[0], pair[keys[0]] ]; + } + + return true; +} + +function constructYamlPairs(data) { + if (null === data) { + return []; + } + + var index, length, pair, keys, result, + object = data; + + result = new Array(object.length); + + for (index = 0, length = object.length; index < length; index += 1) { + pair = object[index]; + + keys = Object.keys(pair); + + result[index] = [ keys[0], pair[keys[0]] ]; + } + + return result; +} + +module.exports = new Type('tag:yaml.org,2002:pairs', { + kind: 'sequence', + resolve: resolveYamlPairs, + construct: constructYamlPairs +}); + +},{"../type":13}],26:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +module.exports = new Type('tag:yaml.org,2002:seq', { + kind: 'sequence', + construct: function (data) { return null !== data ? data : []; } +}); + +},{"../type":13}],27:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +var _hasOwnProperty = Object.prototype.hasOwnProperty; + +function resolveYamlSet(data) { + if (null === data) { + return true; + } + + var key, object = data; + + for (key in object) { + if (_hasOwnProperty.call(object, key)) { + if (null !== object[key]) { + return false; + } + } + } + + return true; +} + +function constructYamlSet(data) { + return null !== data ? data : {}; +} + +module.exports = new Type('tag:yaml.org,2002:set', { + kind: 'mapping', + resolve: resolveYamlSet, + construct: constructYamlSet +}); + +},{"../type":13}],28:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +module.exports = new Type('tag:yaml.org,2002:str', { + kind: 'scalar', + construct: function (data) { return null !== data ? data : ''; } +}); + +},{"../type":13}],29:[function(require,module,exports){ +'use strict'; + +var Type = require('../type'); + +var YAML_TIMESTAMP_REGEXP = new RegExp( + '^([0-9][0-9][0-9][0-9])' + // [1] year + '-([0-9][0-9]?)' + // [2] month + '-([0-9][0-9]?)' + // [3] day + '(?:(?:[Tt]|[ \\t]+)' + // ... + '([0-9][0-9]?)' + // [4] hour + ':([0-9][0-9])' + // [5] minute + ':([0-9][0-9])' + // [6] second + '(?:\\.([0-9]*))?' + // [7] fraction + '(?:[ \\t]*(Z|([-+])([0-9][0-9]?)' + // [8] tz [9] tz_sign [10] tz_hour + '(?::([0-9][0-9]))?))?)?$'); // [11] tz_minute + +function resolveYamlTimestamp(data) { + if (null === data) { + return false; + } + + var match, year, month, day, hour, minute, second, fraction = 0, + delta = null, tz_hour, tz_minute, date; + + match = YAML_TIMESTAMP_REGEXP.exec(data); + + if (null === match) { + return false; + } + + return true; +} + +function constructYamlTimestamp(data) { + var match, year, month, day, hour, minute, second, fraction = 0, + delta = null, tz_hour, tz_minute, date; + + match = YAML_TIMESTAMP_REGEXP.exec(data); + + if (null === match) { + throw new Error('Date resolve error'); + } + + // match: [1] year [2] month [3] day + + year = +(match[1]); + month = +(match[2]) - 1; // JS month starts with 0 + day = +(match[3]); + + if (!match[4]) { // no hour + return new Date(Date.UTC(year, month, day)); + } + + // match: [4] hour [5] minute [6] second [7] fraction + + hour = +(match[4]); + minute = +(match[5]); + second = +(match[6]); + + if (match[7]) { + fraction = match[7].slice(0, 3); + while (fraction.length < 3) { // milli-seconds + fraction += '0'; + } + fraction = +fraction; + } + + // match: [8] tz [9] tz_sign [10] tz_hour [11] tz_minute + + if (match[9]) { + tz_hour = +(match[10]); + tz_minute = +(match[11] || 0); + delta = (tz_hour * 60 + tz_minute) * 60000; // delta in mili-seconds + if ('-' === match[9]) { + delta = -delta; + } + } + + date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction)); + + if (delta) { + date.setTime(date.getTime() - delta); + } + + return date; +} + +function representYamlTimestamp(object /*, style*/) { + return object.toISOString(); +} + +module.exports = new Type('tag:yaml.org,2002:timestamp', { + kind: 'scalar', + resolve: resolveYamlTimestamp, + construct: constructYamlTimestamp, + instanceOf: Date, + represent: representYamlTimestamp +}); + +},{"../type":13}],30:[function(require,module,exports){ + +},{}],"/":[function(require,module,exports){ +'use strict'; + + +var yaml = require('./lib/js-yaml.js'); + + +module.exports = yaml; + +},{"./lib/js-yaml.js":1}]},{},[])("/") +}); \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/custom_types.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/custom_types.js new file mode 100644 index 0000000..b5c7b9f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/custom_types.js @@ -0,0 +1,103 @@ +'use strict'; + +/*eslint-disable no-console*/ + +var fs = require('fs'); +var path = require('path'); +var util = require('util'); +var yaml = require('../lib/js-yaml'); + + +// Let's define a couple of classes. + +function Point(x, y, z) { + this.klass = 'Point'; + this.x = x; + this.y = y; + this.z = z; +} + + +function Space(height, width, points) { + if (points) { + if (!points.every(function (point) { return point instanceof Point; })) { + throw new Error('A non-Point inside a points array!'); + } + } + + this.klass = 'Space'; + this.height = height; + this.width = width; + this.points = points; +} + + +// Then define YAML types to load and dump our Point/Space objects. + +var PointYamlType = new yaml.Type('!point', { + // Loader must parse sequence nodes only for this type (i.e. arrays in JS terminology). + // Other available kinds are 'scalar' (string) and 'mapping' (object). + // http://www.yaml.org/spec/1.2/spec.html#kind// + kind: 'sequence', + + // Loader must check if the input object is suitable for this type. + resolve: function (data) { + // `data` may be either: + // - Null in case of an "empty node" (http://www.yaml.org/spec/1.2/spec.html#id2786563) + // - Array since we specified `kind` to 'sequence' + return data !== null && data.length === 3; + }, + + // If a node is resolved, use it to create a Point instance. + construct: function (data) { + return new Point(data[0], data[1], data[2]); + }, + + // Dumper must process instances of Point by rules of this YAML type. + instanceOf: Point, + + // Dumper must represent Point objects as three-element sequence in YAML. + represent: function (point) { + return [ point.x, point.y, point.z ]; + } +}); + + +var SpaceYamlType = new yaml.Type('!space', { + kind: 'mapping', + construct: function (data) { + data = data || {}; // in case of empty node + return new Space(data.height || 0, data.width || 0, data.points || []); + }, + instanceOf: Space + // `represent` is omitted here. So, Space objects will be dumped as is. + // That is regular mapping with three key-value pairs but with !space tag. +}); + + +// After our types are defined, it's time to join them into a schema. + +var SPACE_SCHEMA = yaml.Schema.create([ SpaceYamlType, PointYamlType ]); + +// do not execute the following if file is required (http://stackoverflow.com/a/6398335) +if (require.main === module) { + + // And read a document using that schema. + fs.readFile(path.join(__dirname, 'custom_types.yml'), 'utf8', function (error, data) { + var loaded; + + if (!error) { + loaded = yaml.load(data, { schema: SPACE_SCHEMA }); + console.log(util.inspect(loaded, false, 20, true)); + } else { + console.error(error.stack || error.message || String(error)); + } + }); +} + +// There are some exports to play with this example interactively. +module.exports.Point = Point; +module.exports.Space = Space; +module.exports.PointYamlType = PointYamlType; +module.exports.SpaceYamlType = SpaceYamlType; +module.exports.SPACE_SCHEMA = SPACE_SCHEMA; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/custom_types.yml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/custom_types.yml new file mode 100644 index 0000000..f10d4e2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/custom_types.yml @@ -0,0 +1,18 @@ +subject: Custom types in JS-YAML +spaces: +- !space + height: 1000 + width: 1000 + points: + - !point [ 10, 43, 23 ] + - !point [ 165, 0, 50 ] + - !point [ 100, 100, 100 ] + +- !space + height: 64 + width: 128 + points: + - !point [ 12, 43, 0 ] + - !point [ 1, 4, 90 ] + +- !space # An empty space diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/dumper.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/dumper.js new file mode 100644 index 0000000..d237949 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/dumper.js @@ -0,0 +1,32 @@ +'use strict'; + +/*eslint-disable no-console*/ + +var yaml = require('../lib/js-yaml'); +var object = require('./dumper.json'); + + +console.log(yaml.dump(object, { + flowLevel: 3, + styles: { + '!!int' : 'hexadecimal', + '!!null' : 'camelcase' + } +})); + + +// Output: +//============================================================================== +// name: Wizzard +// level: 0x11 +// sanity: Null +// inventory: +// - name: Hat +// features: [magic, pointed] +// traits: {} +// - name: Staff +// features: [] +// traits: {damage: 0xA} +// - name: Cloak +// features: [old] +// traits: {defence: 0x0, comfort: 0x3} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/dumper.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/dumper.json new file mode 100644 index 0000000..9f54c05 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/dumper.json @@ -0,0 +1,22 @@ +{ + "name" : "Wizzard", + "level" : 17, + "sanity" : null, + "inventory" : [ + { + "name" : "Hat", + "features" : [ "magic", "pointed" ], + "traits" : {} + }, + { + "name" : "Staff", + "features" : [], + "traits" : { "damage" : 10 } + }, + { + "name" : "Cloak", + "features" : [ "old" ], + "traits" : { "defence" : 0, "comfort" : 3 } + } + ] +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/sample_document.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/sample_document.js new file mode 100644 index 0000000..3204fa5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/sample_document.js @@ -0,0 +1,19 @@ +'use strict'; + +/*eslint-disable no-console*/ + +var fs = require('fs'); +var path = require('path'); +var util = require('util'); +var yaml = require('../lib/js-yaml'); + + +try { + var filename = path.join(__dirname, 'sample_document.yml'), + contents = fs.readFileSync(filename, 'utf8'), + data = yaml.load(contents); + + console.log(util.inspect(data, false, 10, true)); +} catch (err) { + console.log(err.stack || String(err)); +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/sample_document.yml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/sample_document.yml new file mode 100644 index 0000000..4479ee9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/examples/sample_document.yml @@ -0,0 +1,197 @@ +--- +# Collection Types ############################################################# +################################################################################ + +# http://yaml.org/type/map.html -----------------------------------------------# + +map: + # Unordered set of key: value pairs. + Block style: !!map + Clark : Evans + Ingy : döt Net + Oren : Ben-Kiki + Flow style: !!map { Clark: Evans, Ingy: döt Net, Oren: Ben-Kiki } + +# http://yaml.org/type/omap.html ----------------------------------------------# + +omap: + # Explicitly typed ordered map (dictionary). + Bestiary: !!omap + - aardvark: African pig-like ant eater. Ugly. + - anteater: South-American ant eater. Two species. + - anaconda: South-American constrictor snake. Scaly. + # Etc. + # Flow style + Numbers: !!omap [ one: 1, two: 2, three : 3 ] + +# http://yaml.org/type/pairs.html ---------------------------------------------# + +pairs: + # Explicitly typed pairs. + Block tasks: !!pairs + - meeting: with team. + - meeting: with boss. + - break: lunch. + - meeting: with client. + Flow tasks: !!pairs [ meeting: with team, meeting: with boss ] + +# http://yaml.org/type/set.html -----------------------------------------------# + +set: + # Explicitly typed set. + baseball players: !!set + ? Mark McGwire + ? Sammy Sosa + ? Ken Griffey + # Flow style + baseball teams: !!set { Boston Red Sox, Detroit Tigers, New York Yankees } + +# http://yaml.org/type/seq.html -----------------------------------------------# + +seq: + # Ordered sequence of nodes + Block style: !!seq + - Mercury # Rotates - no light/dark sides. + - Venus # Deadliest. Aptly named. + - Earth # Mostly dirt. + - Mars # Seems empty. + - Jupiter # The king. + - Saturn # Pretty. + - Uranus # Where the sun hardly shines. + - Neptune # Boring. No rings. + - Pluto # You call this a planet? + Flow style: !!seq [ Mercury, Venus, Earth, Mars, # Rocks + Jupiter, Saturn, Uranus, Neptune, # Gas + Pluto ] # Overrated + + +# Scalar Types ################################################################# +################################################################################ + +# http://yaml.org/type/binary.html --------------------------------------------# + +binary: + canonical: !!binary "\ + R0lGODlhDAAMAIQAAP//9/X17unp5WZmZgAAAOfn515eXvPz7Y6OjuDg4J+fn5\ + OTk6enp56enmlpaWNjY6Ojo4SEhP/++f/++f/++f/++f/++f/++f/++f/++f/+\ + +f/++f/++f/++f/++f/++SH+Dk1hZGUgd2l0aCBHSU1QACwAAAAADAAMAAAFLC\ + AgjoEwnuNAFOhpEMTRiggcz4BNJHrv/zCFcLiwMWYNG84BwwEeECcgggoBADs=" + generic: !!binary | + R0lGODlhDAAMAIQAAP//9/X17unp5WZmZgAAAOfn515eXvPz7Y6OjuDg4J+fn5 + OTk6enp56enmlpaWNjY6Ojo4SEhP/++f/++f/++f/++f/++f/++f/++f/++f/+ + +f/++f/++f/++f/++f/++SH+Dk1hZGUgd2l0aCBHSU1QACwAAAAADAAMAAAFLC + AgjoEwnuNAFOhpEMTRiggcz4BNJHrv/zCFcLiwMWYNG84BwwEeECcgggoBADs= + description: + The binary value above is a tiny arrow encoded as a gif image. + +# http://yaml.org/type/bool.html ----------------------------------------------# + +bool: + - true + - True + - TRUE + - false + - False + - FALSE + +# http://yaml.org/type/float.html ---------------------------------------------# + +float: + canonical: 6.8523015e+5 + exponentioal: 685.230_15e+03 + fixed: 685_230.15 + sexagesimal: 190:20:30.15 + negative infinity: -.inf + not a number: .NaN + +# http://yaml.org/type/int.html -----------------------------------------------# + +int: + canonical: 685230 + decimal: +685_230 + octal: 02472256 + hexadecimal: 0x_0A_74_AE + binary: 0b1010_0111_0100_1010_1110 + sexagesimal: 190:20:30 + +# http://yaml.org/type/merge.html ---------------------------------------------# + +merge: + - &CENTER { x: 1, y: 2 } + - &LEFT { x: 0, y: 2 } + - &BIG { r: 10 } + - &SMALL { r: 1 } + + # All the following maps are equal: + + - # Explicit keys + x: 1 + y: 2 + r: 10 + label: nothing + + - # Merge one map + << : *CENTER + r: 10 + label: center + + - # Merge multiple maps + << : [ *CENTER, *BIG ] + label: center/big + + - # Override + << : [ *BIG, *LEFT, *SMALL ] + x: 1 + label: big/left/small + +# http://yaml.org/type/null.html ----------------------------------------------# + +null: + # This mapping has four keys, + # one has a value. + empty: + canonical: ~ + english: null + ~: null key + # This sequence has five + # entries, two have values. + sparse: + - ~ + - 2nd entry + - + - 4th entry + - Null + +# http://yaml.org/type/str.html -----------------------------------------------# + +string: abcd + +# http://yaml.org/type/timestamp.html -----------------------------------------# + +timestamp: + canonical: 2001-12-15T02:59:43.1Z + valid iso8601: 2001-12-14t21:59:43.10-05:00 + space separated: 2001-12-14 21:59:43.10 -5 + no time zone (Z): 2001-12-15 2:59:43.10 + date (00:00:00Z): 2002-12-14 + + +# JavaScript Specific Types #################################################### +################################################################################ + +# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/RegExp + +regexp: + simple: !!js/regexp foobar + modifiers: !!js/regexp /foobar/mi + +# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/undefined + +undefined: !!js/undefined ~ + +# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function + +function: !!js/function > + function foobar() { + return 'Wow! JS-YAML Rocks!'; + } diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/index.js new file mode 100644 index 0000000..1374435 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/index.js @@ -0,0 +1,7 @@ +'use strict'; + + +var yaml = require('./lib/js-yaml.js'); + + +module.exports = yaml; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml.js new file mode 100644 index 0000000..842104e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml.js @@ -0,0 +1,39 @@ +'use strict'; + + +var loader = require('./js-yaml/loader'); +var dumper = require('./js-yaml/dumper'); + + +function deprecated(name) { + return function () { + throw new Error('Function ' + name + ' is deprecated and cannot be used.'); + }; +} + + +module.exports.Type = require('./js-yaml/type'); +module.exports.Schema = require('./js-yaml/schema'); +module.exports.FAILSAFE_SCHEMA = require('./js-yaml/schema/failsafe'); +module.exports.JSON_SCHEMA = require('./js-yaml/schema/json'); +module.exports.CORE_SCHEMA = require('./js-yaml/schema/core'); +module.exports.DEFAULT_SAFE_SCHEMA = require('./js-yaml/schema/default_safe'); +module.exports.DEFAULT_FULL_SCHEMA = require('./js-yaml/schema/default_full'); +module.exports.load = loader.load; +module.exports.loadAll = loader.loadAll; +module.exports.safeLoad = loader.safeLoad; +module.exports.safeLoadAll = loader.safeLoadAll; +module.exports.dump = dumper.dump; +module.exports.safeDump = dumper.safeDump; +module.exports.YAMLException = require('./js-yaml/exception'); + +// Deprecared schema names from JS-YAML 2.0.x +module.exports.MINIMAL_SCHEMA = require('./js-yaml/schema/failsafe'); +module.exports.SAFE_SCHEMA = require('./js-yaml/schema/default_safe'); +module.exports.DEFAULT_SCHEMA = require('./js-yaml/schema/default_full'); + +// Deprecated functions from JS-YAML 1.x.x +module.exports.scan = deprecated('scan'); +module.exports.parse = deprecated('parse'); +module.exports.compose = deprecated('compose'); +module.exports.addConstructor = deprecated('addConstructor'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/common.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/common.js new file mode 100644 index 0000000..197eb24 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/common.js @@ -0,0 +1,61 @@ +'use strict'; + + +function isNothing(subject) { + return (typeof subject === 'undefined') || (null === subject); +} + + +function isObject(subject) { + return (typeof subject === 'object') && (null !== subject); +} + + +function toArray(sequence) { + if (Array.isArray(sequence)) { + return sequence; + } else if (isNothing(sequence)) { + return []; + } + return [ sequence ]; +} + + +function extend(target, source) { + var index, length, key, sourceKeys; + + if (source) { + sourceKeys = Object.keys(source); + + for (index = 0, length = sourceKeys.length; index < length; index += 1) { + key = sourceKeys[index]; + target[key] = source[key]; + } + } + + return target; +} + + +function repeat(string, count) { + var result = '', cycle; + + for (cycle = 0; cycle < count; cycle += 1) { + result += string; + } + + return result; +} + + +function isNegativeZero(number) { + return (0 === number) && (Number.NEGATIVE_INFINITY === 1 / number); +} + + +module.exports.isNothing = isNothing; +module.exports.isObject = isObject; +module.exports.toArray = toArray; +module.exports.repeat = repeat; +module.exports.isNegativeZero = isNegativeZero; +module.exports.extend = extend; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/dumper.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/dumper.js new file mode 100644 index 0000000..fabc0c3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/dumper.js @@ -0,0 +1,842 @@ +'use strict'; + +/*eslint-disable no-use-before-define*/ + +var common = require('./common'); +var YAMLException = require('./exception'); +var DEFAULT_FULL_SCHEMA = require('./schema/default_full'); +var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe'); + +var _toString = Object.prototype.toString; +var _hasOwnProperty = Object.prototype.hasOwnProperty; + +var CHAR_TAB = 0x09; /* Tab */ +var CHAR_LINE_FEED = 0x0A; /* LF */ +var CHAR_CARRIAGE_RETURN = 0x0D; /* CR */ +var CHAR_SPACE = 0x20; /* Space */ +var CHAR_EXCLAMATION = 0x21; /* ! */ +var CHAR_DOUBLE_QUOTE = 0x22; /* " */ +var CHAR_SHARP = 0x23; /* # */ +var CHAR_PERCENT = 0x25; /* % */ +var CHAR_AMPERSAND = 0x26; /* & */ +var CHAR_SINGLE_QUOTE = 0x27; /* ' */ +var CHAR_ASTERISK = 0x2A; /* * */ +var CHAR_COMMA = 0x2C; /* , */ +var CHAR_MINUS = 0x2D; /* - */ +var CHAR_COLON = 0x3A; /* : */ +var CHAR_GREATER_THAN = 0x3E; /* > */ +var CHAR_QUESTION = 0x3F; /* ? */ +var CHAR_COMMERCIAL_AT = 0x40; /* @ */ +var CHAR_LEFT_SQUARE_BRACKET = 0x5B; /* [ */ +var CHAR_RIGHT_SQUARE_BRACKET = 0x5D; /* ] */ +var CHAR_GRAVE_ACCENT = 0x60; /* ` */ +var CHAR_LEFT_CURLY_BRACKET = 0x7B; /* { */ +var CHAR_VERTICAL_LINE = 0x7C; /* | */ +var CHAR_RIGHT_CURLY_BRACKET = 0x7D; /* } */ + +var ESCAPE_SEQUENCES = {}; + +ESCAPE_SEQUENCES[0x00] = '\\0'; +ESCAPE_SEQUENCES[0x07] = '\\a'; +ESCAPE_SEQUENCES[0x08] = '\\b'; +ESCAPE_SEQUENCES[0x09] = '\\t'; +ESCAPE_SEQUENCES[0x0A] = '\\n'; +ESCAPE_SEQUENCES[0x0B] = '\\v'; +ESCAPE_SEQUENCES[0x0C] = '\\f'; +ESCAPE_SEQUENCES[0x0D] = '\\r'; +ESCAPE_SEQUENCES[0x1B] = '\\e'; +ESCAPE_SEQUENCES[0x22] = '\\"'; +ESCAPE_SEQUENCES[0x5C] = '\\\\'; +ESCAPE_SEQUENCES[0x85] = '\\N'; +ESCAPE_SEQUENCES[0xA0] = '\\_'; +ESCAPE_SEQUENCES[0x2028] = '\\L'; +ESCAPE_SEQUENCES[0x2029] = '\\P'; + +var DEPRECATED_BOOLEANS_SYNTAX = [ + 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON', + 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF' +]; + +function compileStyleMap(schema, map) { + var result, keys, index, length, tag, style, type; + + if (null === map) { + return {}; + } + + result = {}; + keys = Object.keys(map); + + for (index = 0, length = keys.length; index < length; index += 1) { + tag = keys[index]; + style = String(map[tag]); + + if ('!!' === tag.slice(0, 2)) { + tag = 'tag:yaml.org,2002:' + tag.slice(2); + } + + type = schema.compiledTypeMap[tag]; + + if (type && _hasOwnProperty.call(type.styleAliases, style)) { + style = type.styleAliases[style]; + } + + result[tag] = style; + } + + return result; +} + +function encodeHex(character) { + var string, handle, length; + + string = character.toString(16).toUpperCase(); + + if (character <= 0xFF) { + handle = 'x'; + length = 2; + } else if (character <= 0xFFFF) { + handle = 'u'; + length = 4; + } else if (character <= 0xFFFFFFFF) { + handle = 'U'; + length = 8; + } else { + throw new YAMLException('code point within a string may not be greater than 0xFFFFFFFF'); + } + + return '\\' + handle + common.repeat('0', length - string.length) + string; +} + +function State(options) { + this.schema = options['schema'] || DEFAULT_FULL_SCHEMA; + this.indent = Math.max(1, (options['indent'] || 2)); + this.skipInvalid = options['skipInvalid'] || false; + this.flowLevel = (common.isNothing(options['flowLevel']) ? -1 : options['flowLevel']); + this.styleMap = compileStyleMap(this.schema, options['styles'] || null); + this.sortKeys = options['sortKeys'] || false; + + this.implicitTypes = this.schema.compiledImplicit; + this.explicitTypes = this.schema.compiledExplicit; + + this.tag = null; + this.result = ''; + + this.duplicates = []; + this.usedDuplicates = null; +} + +function indentString(string, spaces) { + var ind = common.repeat(' ', spaces), + position = 0, + next = -1, + result = '', + line, + length = string.length; + + while (position < length) { + next = string.indexOf('\n', position); + if (next === -1) { + line = string.slice(position); + position = length; + } else { + line = string.slice(position, next + 1); + position = next + 1; + } + if (line.length && line !== '\n') { + result += ind; + } + result += line; + } + + return result; +} + +function generateNextLine(state, level) { + return '\n' + common.repeat(' ', state.indent * level); +} + +function testImplicitResolving(state, str) { + var index, length, type; + + for (index = 0, length = state.implicitTypes.length; index < length; index += 1) { + type = state.implicitTypes[index]; + + if (type.resolve(str)) { + return true; + } + } + + return false; +} + +function StringBuilder(source) { + this.source = source; + this.result = ''; + this.checkpoint = 0; +} + +StringBuilder.prototype.takeUpTo = function (position) { + var er; + + if (position < this.checkpoint) { + er = new Error('position should be > checkpoint'); + er.position = position; + er.checkpoint = this.checkpoint; + throw er; + } + + this.result += this.source.slice(this.checkpoint, position); + this.checkpoint = position; + return this; +}; + +StringBuilder.prototype.escapeChar = function () { + var character, esc; + + character = this.source.charCodeAt(this.checkpoint); + esc = ESCAPE_SEQUENCES[character] || encodeHex(character); + this.result += esc; + this.checkpoint += 1; + + return this; +}; + +StringBuilder.prototype.finish = function () { + if (this.source.length > this.checkpoint) { + this.takeUpTo(this.source.length); + } +}; + +function writeScalar(state, object, level) { + var simple, first, spaceWrap, folded, literal, single, double, + sawLineFeed, linePosition, longestLine, indent, max, character, + position, escapeSeq, hexEsc, previous, lineLength, modifier, + trailingLineBreaks, result; + + if (0 === object.length) { + state.dump = "''"; + return; + } + + if (-1 !== DEPRECATED_BOOLEANS_SYNTAX.indexOf(object)) { + state.dump = "'" + object + "'"; + return; + } + + simple = true; + first = object.length ? object.charCodeAt(0) : 0; + spaceWrap = (CHAR_SPACE === first || + CHAR_SPACE === object.charCodeAt(object.length - 1)); + + // Simplified check for restricted first characters + // http://www.yaml.org/spec/1.2/spec.html#ns-plain-first%28c%29 + if (CHAR_MINUS === first || + CHAR_QUESTION === first || + CHAR_COMMERCIAL_AT === first || + CHAR_GRAVE_ACCENT === first) { + simple = false; + } + + // can only use > and | if not wrapped in spaces. + if (spaceWrap) { + simple = false; + folded = false; + literal = false; + } else { + folded = true; + literal = true; + } + + single = true; + double = new StringBuilder(object); + + sawLineFeed = false; + linePosition = 0; + longestLine = 0; + + indent = state.indent * level; + max = 80; + if (indent < 40) { + max -= indent; + } else { + max = 40; + } + + for (position = 0; position < object.length; position++) { + character = object.charCodeAt(position); + if (simple) { + // Characters that can never appear in the simple scalar + if (!simpleChar(character)) { + simple = false; + } else { + // Still simple. If we make it all the way through like + // this, then we can just dump the string as-is. + continue; + } + } + + if (single && character === CHAR_SINGLE_QUOTE) { + single = false; + } + + escapeSeq = ESCAPE_SEQUENCES[character]; + hexEsc = needsHexEscape(character); + + if (!escapeSeq && !hexEsc) { + continue; + } + + if (character !== CHAR_LINE_FEED && + character !== CHAR_DOUBLE_QUOTE && + character !== CHAR_SINGLE_QUOTE) { + folded = false; + literal = false; + } else if (character === CHAR_LINE_FEED) { + sawLineFeed = true; + single = false; + if (position > 0) { + previous = object.charCodeAt(position - 1); + if (previous === CHAR_SPACE) { + literal = false; + folded = false; + } + } + if (folded) { + lineLength = position - linePosition; + linePosition = position; + if (lineLength > longestLine) { + longestLine = lineLength; + } + } + } + + if (character !== CHAR_DOUBLE_QUOTE) { + single = false; + } + + double.takeUpTo(position); + double.escapeChar(); + } + + if (simple && testImplicitResolving(state, object)) { + simple = false; + } + + modifier = ''; + if (folded || literal) { + trailingLineBreaks = 0; + if (object.charCodeAt(object.length - 1) === CHAR_LINE_FEED) { + trailingLineBreaks += 1; + if (object.charCodeAt(object.length - 2) === CHAR_LINE_FEED) { + trailingLineBreaks += 1; + } + } + + if (trailingLineBreaks === 0) { + modifier = '-'; + } else if (trailingLineBreaks === 2) { + modifier = '+'; + } + } + + if (literal && longestLine < max) { + folded = false; + } + + // If it's literally one line, then don't bother with the literal. + // We may still want to do a fold, though, if it's a super long line. + if (!sawLineFeed) { + literal = false; + } + + if (simple) { + state.dump = object; + } else if (single) { + state.dump = '\'' + object + '\''; + } else if (folded) { + result = fold(object, max); + state.dump = '>' + modifier + '\n' + indentString(result, indent); + } else if (literal) { + if (!modifier) { + object = object.replace(/\n$/, ''); + } + state.dump = '|' + modifier + '\n' + indentString(object, indent); + } else if (double) { + double.finish(); + state.dump = '"' + double.result + '"'; + } else { + throw new Error('Failed to dump scalar value'); + } + + return; +} + +// The `trailing` var is a regexp match of any trailing `\n` characters. +// +// There are three cases we care about: +// +// 1. One trailing `\n` on the string. Just use `|` or `>`. +// This is the assumed default. (trailing = null) +// 2. No trailing `\n` on the string. Use `|-` or `>-` to "chomp" the end. +// 3. More than one trailing `\n` on the string. Use `|+` or `>+`. +// +// In the case of `>+`, these line breaks are *not* doubled (like the line +// breaks within the string), so it's important to only end with the exact +// same number as we started. +function fold(object, max) { + var result = '', + position = 0, + length = object.length, + trailing = /\n+$/.exec(object), + newLine; + + if (trailing) { + length = trailing.index + 1; + } + + while (position < length) { + newLine = object.indexOf('\n', position); + if (newLine > length || newLine === -1) { + if (result) { + result += '\n\n'; + } + result += foldLine(object.slice(position, length), max); + position = length; + } else { + if (result) { + result += '\n\n'; + } + result += foldLine(object.slice(position, newLine), max); + position = newLine + 1; + } + } + if (trailing && trailing[0] !== '\n') { + result += trailing[0]; + } + + return result; +} + +function foldLine(line, max) { + if (line === '') { + return line; + } + + var foldRe = /[^\s] [^\s]/g, + result = '', + prevMatch = 0, + foldStart = 0, + match = foldRe.exec(line), + index, + foldEnd, + folded; + + while (match) { + index = match.index; + + // when we cross the max len, if the previous match would've + // been ok, use that one, and carry on. If there was no previous + // match on this fold section, then just have a long line. + if (index - foldStart > max) { + if (prevMatch !== foldStart) { + foldEnd = prevMatch; + } else { + foldEnd = index; + } + + if (result) { + result += '\n'; + } + folded = line.slice(foldStart, foldEnd); + result += folded; + foldStart = foldEnd + 1; + } + prevMatch = index + 1; + match = foldRe.exec(line); + } + + if (result) { + result += '\n'; + } + + // if we end up with one last word at the end, then the last bit might + // be slightly bigger than we wanted, because we exited out of the loop. + if (foldStart !== prevMatch && line.length - foldStart > max) { + result += line.slice(foldStart, prevMatch) + '\n' + + line.slice(prevMatch + 1); + } else { + result += line.slice(foldStart); + } + + return result; +} + +// Returns true if character can be found in a simple scalar +function simpleChar(character) { + return CHAR_TAB !== character && + CHAR_LINE_FEED !== character && + CHAR_CARRIAGE_RETURN !== character && + CHAR_COMMA !== character && + CHAR_LEFT_SQUARE_BRACKET !== character && + CHAR_RIGHT_SQUARE_BRACKET !== character && + CHAR_LEFT_CURLY_BRACKET !== character && + CHAR_RIGHT_CURLY_BRACKET !== character && + CHAR_SHARP !== character && + CHAR_AMPERSAND !== character && + CHAR_ASTERISK !== character && + CHAR_EXCLAMATION !== character && + CHAR_VERTICAL_LINE !== character && + CHAR_GREATER_THAN !== character && + CHAR_SINGLE_QUOTE !== character && + CHAR_DOUBLE_QUOTE !== character && + CHAR_PERCENT !== character && + CHAR_COLON !== character && + !ESCAPE_SEQUENCES[character] && + !needsHexEscape(character); +} + +// Returns true if the character code needs to be escaped. +function needsHexEscape(character) { + return !((0x00020 <= character && character <= 0x00007E) || + (0x00085 === character) || + (0x000A0 <= character && character <= 0x00D7FF) || + (0x0E000 <= character && character <= 0x00FFFD) || + (0x10000 <= character && character <= 0x10FFFF)); +} + +function writeFlowSequence(state, level, object) { + var _result = '', + _tag = state.tag, + index, + length; + + for (index = 0, length = object.length; index < length; index += 1) { + // Write only valid elements. + if (writeNode(state, level, object[index], false, false)) { + if (0 !== index) { + _result += ', '; + } + _result += state.dump; + } + } + + state.tag = _tag; + state.dump = '[' + _result + ']'; +} + +function writeBlockSequence(state, level, object, compact) { + var _result = '', + _tag = state.tag, + index, + length; + + for (index = 0, length = object.length; index < length; index += 1) { + // Write only valid elements. + if (writeNode(state, level + 1, object[index], true, true)) { + if (!compact || 0 !== index) { + _result += generateNextLine(state, level); + } + _result += '- ' + state.dump; + } + } + + state.tag = _tag; + state.dump = _result || '[]'; // Empty sequence if no valid values. +} + +function writeFlowMapping(state, level, object) { + var _result = '', + _tag = state.tag, + objectKeyList = Object.keys(object), + index, + length, + objectKey, + objectValue, + pairBuffer; + + for (index = 0, length = objectKeyList.length; index < length; index += 1) { + pairBuffer = ''; + + if (0 !== index) { + pairBuffer += ', '; + } + + objectKey = objectKeyList[index]; + objectValue = object[objectKey]; + + if (!writeNode(state, level, objectKey, false, false)) { + continue; // Skip this pair because of invalid key; + } + + if (state.dump.length > 1024) { + pairBuffer += '? '; + } + + pairBuffer += state.dump + ': '; + + if (!writeNode(state, level, objectValue, false, false)) { + continue; // Skip this pair because of invalid value. + } + + pairBuffer += state.dump; + + // Both key and value are valid. + _result += pairBuffer; + } + + state.tag = _tag; + state.dump = '{' + _result + '}'; +} + +function writeBlockMapping(state, level, object, compact) { + var _result = '', + _tag = state.tag, + objectKeyList = Object.keys(object), + index, + length, + objectKey, + objectValue, + explicitPair, + pairBuffer; + + // Allow sorting keys so that the output file is deterministic + if (state.sortKeys === true) { + // Default sorting + objectKeyList.sort(); + } else if (typeof state.sortKeys === 'function') { + // Custom sort function + objectKeyList.sort(state.sortKeys); + } else if (state.sortKeys) { + // Something is wrong + throw new YAMLException('sortKeys must be a boolean or a function'); + } + + for (index = 0, length = objectKeyList.length; index < length; index += 1) { + pairBuffer = ''; + + if (!compact || 0 !== index) { + pairBuffer += generateNextLine(state, level); + } + + objectKey = objectKeyList[index]; + objectValue = object[objectKey]; + + if (!writeNode(state, level + 1, objectKey, true, true)) { + continue; // Skip this pair because of invalid key. + } + + explicitPair = (null !== state.tag && '?' !== state.tag) || + (state.dump && state.dump.length > 1024); + + if (explicitPair) { + if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { + pairBuffer += '?'; + } else { + pairBuffer += '? '; + } + } + + pairBuffer += state.dump; + + if (explicitPair) { + pairBuffer += generateNextLine(state, level); + } + + if (!writeNode(state, level + 1, objectValue, true, explicitPair)) { + continue; // Skip this pair because of invalid value. + } + + if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) { + pairBuffer += ':'; + } else { + pairBuffer += ': '; + } + + pairBuffer += state.dump; + + // Both key and value are valid. + _result += pairBuffer; + } + + state.tag = _tag; + state.dump = _result || '{}'; // Empty mapping if no valid pairs. +} + +function detectType(state, object, explicit) { + var _result, typeList, index, length, type, style; + + typeList = explicit ? state.explicitTypes : state.implicitTypes; + + for (index = 0, length = typeList.length; index < length; index += 1) { + type = typeList[index]; + + if ((type.instanceOf || type.predicate) && + (!type.instanceOf || (('object' === typeof object) && (object instanceof type.instanceOf))) && + (!type.predicate || type.predicate(object))) { + + state.tag = explicit ? type.tag : '?'; + + if (type.represent) { + style = state.styleMap[type.tag] || type.defaultStyle; + + if ('[object Function]' === _toString.call(type.represent)) { + _result = type.represent(object, style); + } else if (_hasOwnProperty.call(type.represent, style)) { + _result = type.represent[style](object, style); + } else { + throw new YAMLException('!<' + type.tag + '> tag resolver accepts not "' + style + '" style'); + } + + state.dump = _result; + } + + return true; + } + } + + return false; +} + +// Serializes `object` and writes it to global `result`. +// Returns true on success, or false on invalid object. +// +function writeNode(state, level, object, block, compact) { + state.tag = null; + state.dump = object; + + if (!detectType(state, object, false)) { + detectType(state, object, true); + } + + var type = _toString.call(state.dump); + + if (block) { + block = (0 > state.flowLevel || state.flowLevel > level); + } + + if ((null !== state.tag && '?' !== state.tag) || (2 !== state.indent && level > 0)) { + compact = false; + } + + var objectOrArray = '[object Object]' === type || '[object Array]' === type, + duplicateIndex, + duplicate; + + if (objectOrArray) { + duplicateIndex = state.duplicates.indexOf(object); + duplicate = duplicateIndex !== -1; + } + + if (duplicate && state.usedDuplicates[duplicateIndex]) { + state.dump = '*ref_' + duplicateIndex; + } else { + if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) { + state.usedDuplicates[duplicateIndex] = true; + } + if ('[object Object]' === type) { + if (block && (0 !== Object.keys(state.dump).length)) { + writeBlockMapping(state, level, state.dump, compact); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + (0 === level ? '\n' : '') + state.dump; + } + } else { + writeFlowMapping(state, level, state.dump); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + ' ' + state.dump; + } + } + } else if ('[object Array]' === type) { + if (block && (0 !== state.dump.length)) { + writeBlockSequence(state, level, state.dump, compact); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + (0 === level ? '\n' : '') + state.dump; + } + } else { + writeFlowSequence(state, level, state.dump); + if (duplicate) { + state.dump = '&ref_' + duplicateIndex + ' ' + state.dump; + } + } + } else if ('[object String]' === type) { + if ('?' !== state.tag) { + writeScalar(state, state.dump, level); + } + } else { + if (state.skipInvalid) { + return false; + } + throw new YAMLException('unacceptable kind of an object to dump ' + type); + } + + if (null !== state.tag && '?' !== state.tag) { + state.dump = '!<' + state.tag + '> ' + state.dump; + } + } + + return true; +} + +function getDuplicateReferences(object, state) { + var objects = [], + duplicatesIndexes = [], + index, + length; + + inspectNode(object, objects, duplicatesIndexes); + + for (index = 0, length = duplicatesIndexes.length; index < length; index += 1) { + state.duplicates.push(objects[duplicatesIndexes[index]]); + } + state.usedDuplicates = new Array(length); +} + +function inspectNode(object, objects, duplicatesIndexes) { + var type = _toString.call(object), + objectKeyList, + index, + length; + + if (null !== object && 'object' === typeof object) { + index = objects.indexOf(object); + if (-1 !== index) { + if (-1 === duplicatesIndexes.indexOf(index)) { + duplicatesIndexes.push(index); + } + } else { + objects.push(object); + + if (Array.isArray(object)) { + for (index = 0, length = object.length; index < length; index += 1) { + inspectNode(object[index], objects, duplicatesIndexes); + } + } else { + objectKeyList = Object.keys(object); + + for (index = 0, length = objectKeyList.length; index < length; index += 1) { + inspectNode(object[objectKeyList[index]], objects, duplicatesIndexes); + } + } + } + } +} + +function dump(input, options) { + options = options || {}; + + var state = new State(options); + + getDuplicateReferences(input, state); + + if (writeNode(state, 0, input, true, true)) { + return state.dump + '\n'; + } + return ''; +} + +function safeDump(input, options) { + return dump(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options)); +} + +module.exports.dump = dump; +module.exports.safeDump = safeDump; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/exception.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/exception.js new file mode 100644 index 0000000..479ba88 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/exception.js @@ -0,0 +1,25 @@ +'use strict'; + + +function YAMLException(reason, mark) { + this.name = 'YAMLException'; + this.reason = reason; + this.mark = mark; + this.message = this.toString(false); +} + + +YAMLException.prototype.toString = function toString(compact) { + var result; + + result = 'JS-YAML: ' + (this.reason || '(unknown reason)'); + + if (!compact && this.mark) { + result += ' ' + this.mark.toString(); + } + + return result; +}; + + +module.exports = YAMLException; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/loader.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/loader.js new file mode 100644 index 0000000..1012ff5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/loader.js @@ -0,0 +1,1586 @@ +'use strict'; + +/*eslint-disable max-len,no-use-before-define*/ + +var common = require('./common'); +var YAMLException = require('./exception'); +var Mark = require('./mark'); +var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe'); +var DEFAULT_FULL_SCHEMA = require('./schema/default_full'); + + +var _hasOwnProperty = Object.prototype.hasOwnProperty; + + +var CONTEXT_FLOW_IN = 1; +var CONTEXT_FLOW_OUT = 2; +var CONTEXT_BLOCK_IN = 3; +var CONTEXT_BLOCK_OUT = 4; + + +var CHOMPING_CLIP = 1; +var CHOMPING_STRIP = 2; +var CHOMPING_KEEP = 3; + + +var PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/; +var PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/; +var PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/; +var PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i; +var PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i; + + +function is_EOL(c) { + return (c === 0x0A/* LF */) || (c === 0x0D/* CR */); +} + +function is_WHITE_SPACE(c) { + return (c === 0x09/* Tab */) || (c === 0x20/* Space */); +} + +function is_WS_OR_EOL(c) { + return (c === 0x09/* Tab */) || + (c === 0x20/* Space */) || + (c === 0x0A/* LF */) || + (c === 0x0D/* CR */); +} + +function is_FLOW_INDICATOR(c) { + return 0x2C/* , */ === c || + 0x5B/* [ */ === c || + 0x5D/* ] */ === c || + 0x7B/* { */ === c || + 0x7D/* } */ === c; +} + +function fromHexCode(c) { + var lc; + + if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) { + return c - 0x30; + } + + /*eslint-disable no-bitwise*/ + lc = c | 0x20; + + if ((0x61/* a */ <= lc) && (lc <= 0x66/* f */)) { + return lc - 0x61 + 10; + } + + return -1; +} + +function escapedHexLen(c) { + if (c === 0x78/* x */) { return 2; } + if (c === 0x75/* u */) { return 4; } + if (c === 0x55/* U */) { return 8; } + return 0; +} + +function fromDecimalCode(c) { + if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) { + return c - 0x30; + } + + return -1; +} + +function simpleEscapeSequence(c) { + return (c === 0x30/* 0 */) ? '\x00' : + (c === 0x61/* a */) ? '\x07' : + (c === 0x62/* b */) ? '\x08' : + (c === 0x74/* t */) ? '\x09' : + (c === 0x09/* Tab */) ? '\x09' : + (c === 0x6E/* n */) ? '\x0A' : + (c === 0x76/* v */) ? '\x0B' : + (c === 0x66/* f */) ? '\x0C' : + (c === 0x72/* r */) ? '\x0D' : + (c === 0x65/* e */) ? '\x1B' : + (c === 0x20/* Space */) ? ' ' : + (c === 0x22/* " */) ? '\x22' : + (c === 0x2F/* / */) ? '/' : + (c === 0x5C/* \ */) ? '\x5C' : + (c === 0x4E/* N */) ? '\x85' : + (c === 0x5F/* _ */) ? '\xA0' : + (c === 0x4C/* L */) ? '\u2028' : + (c === 0x50/* P */) ? '\u2029' : ''; +} + +function charFromCodepoint(c) { + if (c <= 0xFFFF) { + return String.fromCharCode(c); + } + // Encode UTF-16 surrogate pair + // https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF + return String.fromCharCode(((c - 0x010000) >> 10) + 0xD800, + ((c - 0x010000) & 0x03FF) + 0xDC00); +} + +var simpleEscapeCheck = new Array(256); // integer, for fast access +var simpleEscapeMap = new Array(256); +for (var i = 0; i < 256; i++) { + simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0; + simpleEscapeMap[i] = simpleEscapeSequence(i); +} + + +function State(input, options) { + this.input = input; + + this.filename = options['filename'] || null; + this.schema = options['schema'] || DEFAULT_FULL_SCHEMA; + this.onWarning = options['onWarning'] || null; + this.legacy = options['legacy'] || false; + + this.implicitTypes = this.schema.compiledImplicit; + this.typeMap = this.schema.compiledTypeMap; + + this.length = input.length; + this.position = 0; + this.line = 0; + this.lineStart = 0; + this.lineIndent = 0; + + this.documents = []; + + /* + this.version; + this.checkLineBreaks; + this.tagMap; + this.anchorMap; + this.tag; + this.anchor; + this.kind; + this.result;*/ + +} + + +function generateError(state, message) { + return new YAMLException( + message, + new Mark(state.filename, state.input, state.position, state.line, (state.position - state.lineStart))); +} + +function throwError(state, message) { + throw generateError(state, message); +} + +function throwWarning(state, message) { + var error = generateError(state, message); + + if (state.onWarning) { + state.onWarning.call(null, error); + } else { + throw error; + } +} + + +var directiveHandlers = { + + YAML: function handleYamlDirective(state, name, args) { + + var match, major, minor; + + if (null !== state.version) { + throwError(state, 'duplication of %YAML directive'); + } + + if (1 !== args.length) { + throwError(state, 'YAML directive accepts exactly one argument'); + } + + match = /^([0-9]+)\.([0-9]+)$/.exec(args[0]); + + if (null === match) { + throwError(state, 'ill-formed argument of the YAML directive'); + } + + major = parseInt(match[1], 10); + minor = parseInt(match[2], 10); + + if (1 !== major) { + throwError(state, 'unacceptable YAML version of the document'); + } + + state.version = args[0]; + state.checkLineBreaks = (minor < 2); + + if (1 !== minor && 2 !== minor) { + throwWarning(state, 'unsupported YAML version of the document'); + } + }, + + TAG: function handleTagDirective(state, name, args) { + + var handle, prefix; + + if (2 !== args.length) { + throwError(state, 'TAG directive accepts exactly two arguments'); + } + + handle = args[0]; + prefix = args[1]; + + if (!PATTERN_TAG_HANDLE.test(handle)) { + throwError(state, 'ill-formed tag handle (first argument) of the TAG directive'); + } + + if (_hasOwnProperty.call(state.tagMap, handle)) { + throwError(state, 'there is a previously declared suffix for "' + handle + '" tag handle'); + } + + if (!PATTERN_TAG_URI.test(prefix)) { + throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive'); + } + + state.tagMap[handle] = prefix; + } +}; + + +function captureSegment(state, start, end, checkJson) { + var _position, _length, _character, _result; + + if (start < end) { + _result = state.input.slice(start, end); + + if (checkJson) { + for (_position = 0, _length = _result.length; + _position < _length; + _position += 1) { + _character = _result.charCodeAt(_position); + if (!(0x09 === _character || + 0x20 <= _character && _character <= 0x10FFFF)) { + throwError(state, 'expected valid JSON character'); + } + } + } + + state.result += _result; + } +} + +function mergeMappings(state, destination, source) { + var sourceKeys, key, index, quantity; + + if (!common.isObject(source)) { + throwError(state, 'cannot merge mappings; the provided source object is unacceptable'); + } + + sourceKeys = Object.keys(source); + + for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) { + key = sourceKeys[index]; + + if (!_hasOwnProperty.call(destination, key)) { + destination[key] = source[key]; + } + } +} + +function storeMappingPair(state, _result, keyTag, keyNode, valueNode) { + var index, quantity; + + keyNode = String(keyNode); + + if (null === _result) { + _result = {}; + } + + if ('tag:yaml.org,2002:merge' === keyTag) { + if (Array.isArray(valueNode)) { + for (index = 0, quantity = valueNode.length; index < quantity; index += 1) { + mergeMappings(state, _result, valueNode[index]); + } + } else { + mergeMappings(state, _result, valueNode); + } + } else { + _result[keyNode] = valueNode; + } + + return _result; +} + +function readLineBreak(state) { + var ch; + + ch = state.input.charCodeAt(state.position); + + if (0x0A/* LF */ === ch) { + state.position++; + } else if (0x0D/* CR */ === ch) { + state.position++; + if (0x0A/* LF */ === state.input.charCodeAt(state.position)) { + state.position++; + } + } else { + throwError(state, 'a line break is expected'); + } + + state.line += 1; + state.lineStart = state.position; +} + +function skipSeparationSpace(state, allowComments, checkIndent) { + var lineBreaks = 0, + ch = state.input.charCodeAt(state.position); + + while (0 !== ch) { + while (is_WHITE_SPACE(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (allowComments && 0x23/* # */ === ch) { + do { + ch = state.input.charCodeAt(++state.position); + } while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && 0 !== ch); + } + + if (is_EOL(ch)) { + readLineBreak(state); + + ch = state.input.charCodeAt(state.position); + lineBreaks++; + state.lineIndent = 0; + + while (0x20/* Space */ === ch) { + state.lineIndent++; + ch = state.input.charCodeAt(++state.position); + } + } else { + break; + } + } + + if (-1 !== checkIndent && 0 !== lineBreaks && state.lineIndent < checkIndent) { + throwWarning(state, 'deficient indentation'); + } + + return lineBreaks; +} + +function testDocumentSeparator(state) { + var _position = state.position, + ch; + + ch = state.input.charCodeAt(_position); + + // Condition state.position === state.lineStart is tested + // in parent on each call, for efficiency. No needs to test here again. + if ((0x2D/* - */ === ch || 0x2E/* . */ === ch) && + state.input.charCodeAt(_position + 1) === ch && + state.input.charCodeAt(_position + 2) === ch) { + + _position += 3; + + ch = state.input.charCodeAt(_position); + + if (ch === 0 || is_WS_OR_EOL(ch)) { + return true; + } + } + + return false; +} + +function writeFoldedLines(state, count) { + if (1 === count) { + state.result += ' '; + } else if (count > 1) { + state.result += common.repeat('\n', count - 1); + } +} + + +function readPlainScalar(state, nodeIndent, withinFlowCollection) { + var preceding, + following, + captureStart, + captureEnd, + hasPendingContent, + _line, + _lineStart, + _lineIndent, + _kind = state.kind, + _result = state.result, + ch; + + ch = state.input.charCodeAt(state.position); + + if (is_WS_OR_EOL(ch) || + is_FLOW_INDICATOR(ch) || + 0x23/* # */ === ch || + 0x26/* & */ === ch || + 0x2A/* * */ === ch || + 0x21/* ! */ === ch || + 0x7C/* | */ === ch || + 0x3E/* > */ === ch || + 0x27/* ' */ === ch || + 0x22/* " */ === ch || + 0x25/* % */ === ch || + 0x40/* @ */ === ch || + 0x60/* ` */ === ch) { + return false; + } + + if (0x3F/* ? */ === ch || 0x2D/* - */ === ch) { + following = state.input.charCodeAt(state.position + 1); + + if (is_WS_OR_EOL(following) || + withinFlowCollection && is_FLOW_INDICATOR(following)) { + return false; + } + } + + state.kind = 'scalar'; + state.result = ''; + captureStart = captureEnd = state.position; + hasPendingContent = false; + + while (0 !== ch) { + if (0x3A/* : */ === ch) { + following = state.input.charCodeAt(state.position + 1); + + if (is_WS_OR_EOL(following) || + withinFlowCollection && is_FLOW_INDICATOR(following)) { + break; + } + + } else if (0x23/* # */ === ch) { + preceding = state.input.charCodeAt(state.position - 1); + + if (is_WS_OR_EOL(preceding)) { + break; + } + + } else if ((state.position === state.lineStart && testDocumentSeparator(state)) || + withinFlowCollection && is_FLOW_INDICATOR(ch)) { + break; + + } else if (is_EOL(ch)) { + _line = state.line; + _lineStart = state.lineStart; + _lineIndent = state.lineIndent; + skipSeparationSpace(state, false, -1); + + if (state.lineIndent >= nodeIndent) { + hasPendingContent = true; + ch = state.input.charCodeAt(state.position); + continue; + } else { + state.position = captureEnd; + state.line = _line; + state.lineStart = _lineStart; + state.lineIndent = _lineIndent; + break; + } + } + + if (hasPendingContent) { + captureSegment(state, captureStart, captureEnd, false); + writeFoldedLines(state, state.line - _line); + captureStart = captureEnd = state.position; + hasPendingContent = false; + } + + if (!is_WHITE_SPACE(ch)) { + captureEnd = state.position + 1; + } + + ch = state.input.charCodeAt(++state.position); + } + + captureSegment(state, captureStart, captureEnd, false); + + if (state.result) { + return true; + } + + state.kind = _kind; + state.result = _result; + return false; +} + +function readSingleQuotedScalar(state, nodeIndent) { + var ch, + captureStart, captureEnd; + + ch = state.input.charCodeAt(state.position); + + if (0x27/* ' */ !== ch) { + return false; + } + + state.kind = 'scalar'; + state.result = ''; + state.position++; + captureStart = captureEnd = state.position; + + while (0 !== (ch = state.input.charCodeAt(state.position))) { + if (0x27/* ' */ === ch) { + captureSegment(state, captureStart, state.position, true); + ch = state.input.charCodeAt(++state.position); + + if (0x27/* ' */ === ch) { + captureStart = captureEnd = state.position; + state.position++; + } else { + return true; + } + + } else if (is_EOL(ch)) { + captureSegment(state, captureStart, captureEnd, true); + writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent)); + captureStart = captureEnd = state.position; + + } else if (state.position === state.lineStart && testDocumentSeparator(state)) { + throwError(state, 'unexpected end of the document within a single quoted scalar'); + + } else { + state.position++; + captureEnd = state.position; + } + } + + throwError(state, 'unexpected end of the stream within a single quoted scalar'); +} + +function readDoubleQuotedScalar(state, nodeIndent) { + var captureStart, + captureEnd, + hexLength, + hexResult, + tmp, tmpEsc, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x22/* " */ !== ch) { + return false; + } + + state.kind = 'scalar'; + state.result = ''; + state.position++; + captureStart = captureEnd = state.position; + + while (0 !== (ch = state.input.charCodeAt(state.position))) { + if (0x22/* " */ === ch) { + captureSegment(state, captureStart, state.position, true); + state.position++; + return true; + + } else if (0x5C/* \ */ === ch) { + captureSegment(state, captureStart, state.position, true); + ch = state.input.charCodeAt(++state.position); + + if (is_EOL(ch)) { + skipSeparationSpace(state, false, nodeIndent); + + // TODO: rework to inline fn with no type cast? + } else if (ch < 256 && simpleEscapeCheck[ch]) { + state.result += simpleEscapeMap[ch]; + state.position++; + + } else if ((tmp = escapedHexLen(ch)) > 0) { + hexLength = tmp; + hexResult = 0; + + for (; hexLength > 0; hexLength--) { + ch = state.input.charCodeAt(++state.position); + + if ((tmp = fromHexCode(ch)) >= 0) { + hexResult = (hexResult << 4) + tmp; + + } else { + throwError(state, 'expected hexadecimal character'); + } + } + + state.result += charFromCodepoint(hexResult); + + state.position++; + + } else { + throwError(state, 'unknown escape sequence'); + } + + captureStart = captureEnd = state.position; + + } else if (is_EOL(ch)) { + captureSegment(state, captureStart, captureEnd, true); + writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent)); + captureStart = captureEnd = state.position; + + } else if (state.position === state.lineStart && testDocumentSeparator(state)) { + throwError(state, 'unexpected end of the document within a double quoted scalar'); + + } else { + state.position++; + captureEnd = state.position; + } + } + + throwError(state, 'unexpected end of the stream within a double quoted scalar'); +} + +function readFlowCollection(state, nodeIndent) { + var readNext = true, + _line, + _tag = state.tag, + _result, + _anchor = state.anchor, + following, + terminator, + isPair, + isExplicitPair, + isMapping, + keyNode, + keyTag, + valueNode, + ch; + + ch = state.input.charCodeAt(state.position); + + if (ch === 0x5B/* [ */) { + terminator = 0x5D;/* ] */ + isMapping = false; + _result = []; + } else if (ch === 0x7B/* { */) { + terminator = 0x7D;/* } */ + isMapping = true; + _result = {}; + } else { + return false; + } + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = _result; + } + + ch = state.input.charCodeAt(++state.position); + + while (0 !== ch) { + skipSeparationSpace(state, true, nodeIndent); + + ch = state.input.charCodeAt(state.position); + + if (ch === terminator) { + state.position++; + state.tag = _tag; + state.anchor = _anchor; + state.kind = isMapping ? 'mapping' : 'sequence'; + state.result = _result; + return true; + } else if (!readNext) { + throwError(state, 'missed comma between flow collection entries'); + } + + keyTag = keyNode = valueNode = null; + isPair = isExplicitPair = false; + + if (0x3F/* ? */ === ch) { + following = state.input.charCodeAt(state.position + 1); + + if (is_WS_OR_EOL(following)) { + isPair = isExplicitPair = true; + state.position++; + skipSeparationSpace(state, true, nodeIndent); + } + } + + _line = state.line; + composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true); + keyTag = state.tag; + keyNode = state.result; + skipSeparationSpace(state, true, nodeIndent); + + ch = state.input.charCodeAt(state.position); + + if ((isExplicitPair || state.line === _line) && 0x3A/* : */ === ch) { + isPair = true; + ch = state.input.charCodeAt(++state.position); + skipSeparationSpace(state, true, nodeIndent); + composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true); + valueNode = state.result; + } + + if (isMapping) { + storeMappingPair(state, _result, keyTag, keyNode, valueNode); + } else if (isPair) { + _result.push(storeMappingPair(state, null, keyTag, keyNode, valueNode)); + } else { + _result.push(keyNode); + } + + skipSeparationSpace(state, true, nodeIndent); + + ch = state.input.charCodeAt(state.position); + + if (0x2C/* , */ === ch) { + readNext = true; + ch = state.input.charCodeAt(++state.position); + } else { + readNext = false; + } + } + + throwError(state, 'unexpected end of the stream within a flow collection'); +} + +function readBlockScalar(state, nodeIndent) { + var captureStart, + folding, + chomping = CHOMPING_CLIP, + detectedIndent = false, + textIndent = nodeIndent, + emptyLines = 0, + atMoreIndented = false, + tmp, + ch; + + ch = state.input.charCodeAt(state.position); + + if (ch === 0x7C/* | */) { + folding = false; + } else if (ch === 0x3E/* > */) { + folding = true; + } else { + return false; + } + + state.kind = 'scalar'; + state.result = ''; + + while (0 !== ch) { + ch = state.input.charCodeAt(++state.position); + + if (0x2B/* + */ === ch || 0x2D/* - */ === ch) { + if (CHOMPING_CLIP === chomping) { + chomping = (0x2B/* + */ === ch) ? CHOMPING_KEEP : CHOMPING_STRIP; + } else { + throwError(state, 'repeat of a chomping mode identifier'); + } + + } else if ((tmp = fromDecimalCode(ch)) >= 0) { + if (tmp === 0) { + throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one'); + } else if (!detectedIndent) { + textIndent = nodeIndent + tmp - 1; + detectedIndent = true; + } else { + throwError(state, 'repeat of an indentation width identifier'); + } + + } else { + break; + } + } + + if (is_WHITE_SPACE(ch)) { + do { ch = state.input.charCodeAt(++state.position); } + while (is_WHITE_SPACE(ch)); + + if (0x23/* # */ === ch) { + do { ch = state.input.charCodeAt(++state.position); } + while (!is_EOL(ch) && (0 !== ch)); + } + } + + while (0 !== ch) { + readLineBreak(state); + state.lineIndent = 0; + + ch = state.input.charCodeAt(state.position); + + while ((!detectedIndent || state.lineIndent < textIndent) && + (0x20/* Space */ === ch)) { + state.lineIndent++; + ch = state.input.charCodeAt(++state.position); + } + + if (!detectedIndent && state.lineIndent > textIndent) { + textIndent = state.lineIndent; + } + + if (is_EOL(ch)) { + emptyLines++; + continue; + } + + // End of the scalar. + if (state.lineIndent < textIndent) { + + // Perform the chomping. + if (chomping === CHOMPING_KEEP) { + state.result += common.repeat('\n', emptyLines); + } else if (chomping === CHOMPING_CLIP) { + if (detectedIndent) { // i.e. only if the scalar is not empty. + state.result += '\n'; + } + } + + // Break this `while` cycle and go to the funciton's epilogue. + break; + } + + // Folded style: use fancy rules to handle line breaks. + if (folding) { + + // Lines starting with white space characters (more-indented lines) are not folded. + if (is_WHITE_SPACE(ch)) { + atMoreIndented = true; + state.result += common.repeat('\n', emptyLines + 1); + + // End of more-indented block. + } else if (atMoreIndented) { + atMoreIndented = false; + state.result += common.repeat('\n', emptyLines + 1); + + // Just one line break - perceive as the same line. + } else if (0 === emptyLines) { + if (detectedIndent) { // i.e. only if we have already read some scalar content. + state.result += ' '; + } + + // Several line breaks - perceive as different lines. + } else { + state.result += common.repeat('\n', emptyLines); + } + + // Literal style: just add exact number of line breaks between content lines. + } else if (detectedIndent) { + // If current line isn't the first one - count line break from the last content line. + state.result += common.repeat('\n', emptyLines + 1); + } else { + // In case of the first content line - count only empty lines. + } + + detectedIndent = true; + emptyLines = 0; + captureStart = state.position; + + while (!is_EOL(ch) && (0 !== ch)) { + ch = state.input.charCodeAt(++state.position); + } + + captureSegment(state, captureStart, state.position, false); + } + + return true; +} + +function readBlockSequence(state, nodeIndent) { + var _line, + _tag = state.tag, + _anchor = state.anchor, + _result = [], + following, + detected = false, + ch; + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = _result; + } + + ch = state.input.charCodeAt(state.position); + + while (0 !== ch) { + + if (0x2D/* - */ !== ch) { + break; + } + + following = state.input.charCodeAt(state.position + 1); + + if (!is_WS_OR_EOL(following)) { + break; + } + + detected = true; + state.position++; + + if (skipSeparationSpace(state, true, -1)) { + if (state.lineIndent <= nodeIndent) { + _result.push(null); + ch = state.input.charCodeAt(state.position); + continue; + } + } + + _line = state.line; + composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true); + _result.push(state.result); + skipSeparationSpace(state, true, -1); + + ch = state.input.charCodeAt(state.position); + + if ((state.line === _line || state.lineIndent > nodeIndent) && (0 !== ch)) { + throwError(state, 'bad indentation of a sequence entry'); + } else if (state.lineIndent < nodeIndent) { + break; + } + } + + if (detected) { + state.tag = _tag; + state.anchor = _anchor; + state.kind = 'sequence'; + state.result = _result; + return true; + } + return false; +} + +function readBlockMapping(state, nodeIndent, flowIndent) { + var following, + allowCompact, + _line, + _tag = state.tag, + _anchor = state.anchor, + _result = {}, + keyTag = null, + keyNode = null, + valueNode = null, + atExplicitKey = false, + detected = false, + ch; + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = _result; + } + + ch = state.input.charCodeAt(state.position); + + while (0 !== ch) { + following = state.input.charCodeAt(state.position + 1); + _line = state.line; // Save the current line. + + // + // Explicit notation case. There are two separate blocks: + // first for the key (denoted by "?") and second for the value (denoted by ":") + // + if ((0x3F/* ? */ === ch || 0x3A/* : */ === ch) && is_WS_OR_EOL(following)) { + + if (0x3F/* ? */ === ch) { + if (atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, null); + keyTag = keyNode = valueNode = null; + } + + detected = true; + atExplicitKey = true; + allowCompact = true; + + } else if (atExplicitKey) { + // i.e. 0x3A/* : */ === character after the explicit key. + atExplicitKey = false; + allowCompact = true; + + } else { + throwError(state, 'incomplete explicit mapping pair; a key node is missed'); + } + + state.position += 1; + ch = following; + + // + // Implicit notation case. Flow-style node as the key first, then ":", and the value. + // + } else if (composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) { + + if (state.line === _line) { + ch = state.input.charCodeAt(state.position); + + while (is_WHITE_SPACE(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (0x3A/* : */ === ch) { + ch = state.input.charCodeAt(++state.position); + + if (!is_WS_OR_EOL(ch)) { + throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping'); + } + + if (atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, null); + keyTag = keyNode = valueNode = null; + } + + detected = true; + atExplicitKey = false; + allowCompact = false; + keyTag = state.tag; + keyNode = state.result; + + } else if (detected) { + throwError(state, 'can not read an implicit mapping pair; a colon is missed'); + + } else { + state.tag = _tag; + state.anchor = _anchor; + return true; // Keep the result of `composeNode`. + } + + } else if (detected) { + throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key'); + + } else { + state.tag = _tag; + state.anchor = _anchor; + return true; // Keep the result of `composeNode`. + } + + } else { + break; // Reading is done. Go to the epilogue. + } + + // + // Common reading code for both explicit and implicit notations. + // + if (state.line === _line || state.lineIndent > nodeIndent) { + if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) { + if (atExplicitKey) { + keyNode = state.result; + } else { + valueNode = state.result; + } + } + + if (!atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, valueNode); + keyTag = keyNode = valueNode = null; + } + + skipSeparationSpace(state, true, -1); + ch = state.input.charCodeAt(state.position); + } + + if (state.lineIndent > nodeIndent && (0 !== ch)) { + throwError(state, 'bad indentation of a mapping entry'); + } else if (state.lineIndent < nodeIndent) { + break; + } + } + + // + // Epilogue. + // + + // Special case: last mapping's node contains only the key in explicit notation. + if (atExplicitKey) { + storeMappingPair(state, _result, keyTag, keyNode, null); + } + + // Expose the resulting mapping. + if (detected) { + state.tag = _tag; + state.anchor = _anchor; + state.kind = 'mapping'; + state.result = _result; + } + + return detected; +} + +function readTagProperty(state) { + var _position, + isVerbatim = false, + isNamed = false, + tagHandle, + tagName, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x21/* ! */ !== ch) { + return false; + } + + if (null !== state.tag) { + throwError(state, 'duplication of a tag property'); + } + + ch = state.input.charCodeAt(++state.position); + + if (0x3C/* < */ === ch) { + isVerbatim = true; + ch = state.input.charCodeAt(++state.position); + + } else if (0x21/* ! */ === ch) { + isNamed = true; + tagHandle = '!!'; + ch = state.input.charCodeAt(++state.position); + + } else { + tagHandle = '!'; + } + + _position = state.position; + + if (isVerbatim) { + do { ch = state.input.charCodeAt(++state.position); } + while (0 !== ch && 0x3E/* > */ !== ch); + + if (state.position < state.length) { + tagName = state.input.slice(_position, state.position); + ch = state.input.charCodeAt(++state.position); + } else { + throwError(state, 'unexpected end of the stream within a verbatim tag'); + } + } else { + while (0 !== ch && !is_WS_OR_EOL(ch)) { + + if (0x21/* ! */ === ch) { + if (!isNamed) { + tagHandle = state.input.slice(_position - 1, state.position + 1); + + if (!PATTERN_TAG_HANDLE.test(tagHandle)) { + throwError(state, 'named tag handle cannot contain such characters'); + } + + isNamed = true; + _position = state.position + 1; + } else { + throwError(state, 'tag suffix cannot contain exclamation marks'); + } + } + + ch = state.input.charCodeAt(++state.position); + } + + tagName = state.input.slice(_position, state.position); + + if (PATTERN_FLOW_INDICATORS.test(tagName)) { + throwError(state, 'tag suffix cannot contain flow indicator characters'); + } + } + + if (tagName && !PATTERN_TAG_URI.test(tagName)) { + throwError(state, 'tag name cannot contain such characters: ' + tagName); + } + + if (isVerbatim) { + state.tag = tagName; + + } else if (_hasOwnProperty.call(state.tagMap, tagHandle)) { + state.tag = state.tagMap[tagHandle] + tagName; + + } else if ('!' === tagHandle) { + state.tag = '!' + tagName; + + } else if ('!!' === tagHandle) { + state.tag = 'tag:yaml.org,2002:' + tagName; + + } else { + throwError(state, 'undeclared tag handle "' + tagHandle + '"'); + } + + return true; +} + +function readAnchorProperty(state) { + var _position, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x26/* & */ !== ch) { + return false; + } + + if (null !== state.anchor) { + throwError(state, 'duplication of an anchor property'); + } + + ch = state.input.charCodeAt(++state.position); + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (state.position === _position) { + throwError(state, 'name of an anchor node must contain at least one character'); + } + + state.anchor = state.input.slice(_position, state.position); + return true; +} + +function readAlias(state) { + var _position, alias, + len = state.length, + input = state.input, + ch; + + ch = state.input.charCodeAt(state.position); + + if (0x2A/* * */ !== ch) { + return false; + } + + ch = state.input.charCodeAt(++state.position); + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (state.position === _position) { + throwError(state, 'name of an alias node must contain at least one character'); + } + + alias = state.input.slice(_position, state.position); + + if (!state.anchorMap.hasOwnProperty(alias)) { + throwError(state, 'unidentified alias "' + alias + '"'); + } + + state.result = state.anchorMap[alias]; + skipSeparationSpace(state, true, -1); + return true; +} + +function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact) { + var allowBlockStyles, + allowBlockScalars, + allowBlockCollections, + indentStatus = 1, // 1: this>parent, 0: this=parent, -1: this parentIndent) { + indentStatus = 1; + } else if (state.lineIndent === parentIndent) { + indentStatus = 0; + } else if (state.lineIndent < parentIndent) { + indentStatus = -1; + } + } + } + + if (1 === indentStatus) { + while (readTagProperty(state) || readAnchorProperty(state)) { + if (skipSeparationSpace(state, true, -1)) { + atNewLine = true; + allowBlockCollections = allowBlockStyles; + + if (state.lineIndent > parentIndent) { + indentStatus = 1; + } else if (state.lineIndent === parentIndent) { + indentStatus = 0; + } else if (state.lineIndent < parentIndent) { + indentStatus = -1; + } + } else { + allowBlockCollections = false; + } + } + } + + if (allowBlockCollections) { + allowBlockCollections = atNewLine || allowCompact; + } + + if (1 === indentStatus || CONTEXT_BLOCK_OUT === nodeContext) { + if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) { + flowIndent = parentIndent; + } else { + flowIndent = parentIndent + 1; + } + + blockIndent = state.position - state.lineStart; + + if (1 === indentStatus) { + if (allowBlockCollections && + (readBlockSequence(state, blockIndent) || + readBlockMapping(state, blockIndent, flowIndent)) || + readFlowCollection(state, flowIndent)) { + hasContent = true; + } else { + if ((allowBlockScalars && readBlockScalar(state, flowIndent)) || + readSingleQuotedScalar(state, flowIndent) || + readDoubleQuotedScalar(state, flowIndent)) { + hasContent = true; + + } else if (readAlias(state)) { + hasContent = true; + + if (null !== state.tag || null !== state.anchor) { + throwError(state, 'alias node should not have any properties'); + } + + } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) { + hasContent = true; + + if (null === state.tag) { + state.tag = '?'; + } + } + + if (null !== state.anchor) { + state.anchorMap[state.anchor] = state.result; + } + } + } else if (0 === indentStatus) { + // Special case: block sequences are allowed to have same indentation level as the parent. + // http://www.yaml.org/spec/1.2/spec.html#id2799784 + hasContent = allowBlockCollections && readBlockSequence(state, blockIndent); + } + } + + if (null !== state.tag && '!' !== state.tag) { + if ('?' === state.tag) { + for (typeIndex = 0, typeQuantity = state.implicitTypes.length; + typeIndex < typeQuantity; + typeIndex += 1) { + type = state.implicitTypes[typeIndex]; + + // Implicit resolving is not allowed for non-scalar types, and '?' + // non-specific tag is only assigned to plain scalars. So, it isn't + // needed to check for 'kind' conformity. + + if (type.resolve(state.result)) { // `state.result` updated in resolver if matched + state.result = type.construct(state.result); + state.tag = type.tag; + if (null !== state.anchor) { + state.anchorMap[state.anchor] = state.result; + } + break; + } + } + } else if (_hasOwnProperty.call(state.typeMap, state.tag)) { + type = state.typeMap[state.tag]; + + if (null !== state.result && type.kind !== state.kind) { + throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be "' + type.kind + '", not "' + state.kind + '"'); + } + + if (!type.resolve(state.result)) { // `state.result` updated in resolver if matched + throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag'); + } else { + state.result = type.construct(state.result); + if (null !== state.anchor) { + state.anchorMap[state.anchor] = state.result; + } + } + } else { + throwWarning(state, 'unknown tag !<' + state.tag + '>'); + } + } + + return null !== state.tag || null !== state.anchor || hasContent; +} + +function readDocument(state) { + var documentStart = state.position, + _position, + directiveName, + directiveArgs, + hasDirectives = false, + ch; + + state.version = null; + state.checkLineBreaks = state.legacy; + state.tagMap = {}; + state.anchorMap = {}; + + while (0 !== (ch = state.input.charCodeAt(state.position))) { + skipSeparationSpace(state, true, -1); + + ch = state.input.charCodeAt(state.position); + + if (state.lineIndent > 0 || 0x25/* % */ !== ch) { + break; + } + + hasDirectives = true; + ch = state.input.charCodeAt(++state.position); + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + directiveName = state.input.slice(_position, state.position); + directiveArgs = []; + + if (directiveName.length < 1) { + throwError(state, 'directive name must not be less than one character in length'); + } + + while (0 !== ch) { + while (is_WHITE_SPACE(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + if (0x23/* # */ === ch) { + do { ch = state.input.charCodeAt(++state.position); } + while (0 !== ch && !is_EOL(ch)); + break; + } + + if (is_EOL(ch)) { + break; + } + + _position = state.position; + + while (0 !== ch && !is_WS_OR_EOL(ch)) { + ch = state.input.charCodeAt(++state.position); + } + + directiveArgs.push(state.input.slice(_position, state.position)); + } + + if (0 !== ch) { + readLineBreak(state); + } + + if (_hasOwnProperty.call(directiveHandlers, directiveName)) { + directiveHandlers[directiveName](state, directiveName, directiveArgs); + } else { + throwWarning(state, 'unknown document directive "' + directiveName + '"'); + } + } + + skipSeparationSpace(state, true, -1); + + if (0 === state.lineIndent && + 0x2D/* - */ === state.input.charCodeAt(state.position) && + 0x2D/* - */ === state.input.charCodeAt(state.position + 1) && + 0x2D/* - */ === state.input.charCodeAt(state.position + 2)) { + state.position += 3; + skipSeparationSpace(state, true, -1); + + } else if (hasDirectives) { + throwError(state, 'directives end mark is expected'); + } + + composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true); + skipSeparationSpace(state, true, -1); + + if (state.checkLineBreaks && + PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) { + throwWarning(state, 'non-ASCII line breaks are interpreted as content'); + } + + state.documents.push(state.result); + + if (state.position === state.lineStart && testDocumentSeparator(state)) { + + if (0x2E/* . */ === state.input.charCodeAt(state.position)) { + state.position += 3; + skipSeparationSpace(state, true, -1); + } + return; + } + + if (state.position < (state.length - 1)) { + throwError(state, 'end of the stream or a document separator is expected'); + } else { + return; + } +} + + +function loadDocuments(input, options) { + input = String(input); + options = options || {}; + + if (input.length !== 0) { + + // Add tailing `\n` if not exists + if (0x0A/* LF */ !== input.charCodeAt(input.length - 1) && + 0x0D/* CR */ !== input.charCodeAt(input.length - 1)) { + input += '\n'; + } + + // Strip BOM + if (input.charCodeAt(0) === 0xFEFF) { + input = input.slice(1); + } + } + + var state = new State(input, options); + + if (PATTERN_NON_PRINTABLE.test(state.input)) { + throwError(state, 'the stream contains non-printable characters'); + } + + // Use 0 as string terminator. That significantly simplifies bounds check. + state.input += '\0'; + + while (0x20/* Space */ === state.input.charCodeAt(state.position)) { + state.lineIndent += 1; + state.position += 1; + } + + while (state.position < (state.length - 1)) { + readDocument(state); + } + + return state.documents; +} + + +function loadAll(input, iterator, options) { + var documents = loadDocuments(input, options), index, length; + + for (index = 0, length = documents.length; index < length; index += 1) { + iterator(documents[index]); + } +} + + +function load(input, options) { + var documents = loadDocuments(input, options), index, length; + + if (0 === documents.length) { + /*eslint-disable no-undefined*/ + return undefined; + } else if (1 === documents.length) { + return documents[0]; + } + throw new YAMLException('expected a single document in the stream, but found more'); +} + + +function safeLoadAll(input, output, options) { + loadAll(input, output, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options)); +} + + +function safeLoad(input, options) { + return load(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options)); +} + + +module.exports.loadAll = loadAll; +module.exports.load = load; +module.exports.safeLoadAll = safeLoadAll; +module.exports.safeLoad = safeLoad; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/mark.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/mark.js new file mode 100644 index 0000000..bfe279b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/mark.js @@ -0,0 +1,78 @@ +'use strict'; + + +var common = require('./common'); + + +function Mark(name, buffer, position, line, column) { + this.name = name; + this.buffer = buffer; + this.position = position; + this.line = line; + this.column = column; +} + + +Mark.prototype.getSnippet = function getSnippet(indent, maxLength) { + var head, start, tail, end, snippet; + + if (!this.buffer) { + return null; + } + + indent = indent || 4; + maxLength = maxLength || 75; + + head = ''; + start = this.position; + + while (start > 0 && -1 === '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(start - 1))) { + start -= 1; + if (this.position - start > (maxLength / 2 - 1)) { + head = ' ... '; + start += 5; + break; + } + } + + tail = ''; + end = this.position; + + while (end < this.buffer.length && -1 === '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(end))) { + end += 1; + if (end - this.position > (maxLength / 2 - 1)) { + tail = ' ... '; + end -= 5; + break; + } + } + + snippet = this.buffer.slice(start, end); + + return common.repeat(' ', indent) + head + snippet + tail + '\n' + + common.repeat(' ', indent + this.position - start + head.length) + '^'; +}; + + +Mark.prototype.toString = function toString(compact) { + var snippet, where = ''; + + if (this.name) { + where += 'in "' + this.name + '" '; + } + + where += 'at line ' + (this.line + 1) + ', column ' + (this.column + 1); + + if (!compact) { + snippet = this.getSnippet(); + + if (snippet) { + where += ':\n' + snippet; + } + } + + return where; +}; + + +module.exports = Mark; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema.js new file mode 100644 index 0000000..984e290 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema.js @@ -0,0 +1,104 @@ +'use strict'; + +/*eslint-disable max-len*/ + +var common = require('./common'); +var YAMLException = require('./exception'); +var Type = require('./type'); + + +function compileList(schema, name, result) { + var exclude = []; + + schema.include.forEach(function (includedSchema) { + result = compileList(includedSchema, name, result); + }); + + schema[name].forEach(function (currentType) { + result.forEach(function (previousType, previousIndex) { + if (previousType.tag === currentType.tag) { + exclude.push(previousIndex); + } + }); + + result.push(currentType); + }); + + return result.filter(function (type, index) { + return -1 === exclude.indexOf(index); + }); +} + + +function compileMap(/* lists... */) { + var result = {}, index, length; + + function collectType(type) { + result[type.tag] = type; + } + + for (index = 0, length = arguments.length; index < length; index += 1) { + arguments[index].forEach(collectType); + } + + return result; +} + + +function Schema(definition) { + this.include = definition.include || []; + this.implicit = definition.implicit || []; + this.explicit = definition.explicit || []; + + this.implicit.forEach(function (type) { + if (type.loadKind && 'scalar' !== type.loadKind) { + throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.'); + } + }); + + this.compiledImplicit = compileList(this, 'implicit', []); + this.compiledExplicit = compileList(this, 'explicit', []); + this.compiledTypeMap = compileMap(this.compiledImplicit, this.compiledExplicit); +} + + +Schema.DEFAULT = null; + + +Schema.create = function createSchema() { + var schemas, types; + + switch (arguments.length) { + case 1: + schemas = Schema.DEFAULT; + types = arguments[0]; + break; + + case 2: + schemas = arguments[0]; + types = arguments[1]; + break; + + default: + throw new YAMLException('Wrong number of arguments for Schema.create function'); + } + + schemas = common.toArray(schemas); + types = common.toArray(types); + + if (!schemas.every(function (schema) { return schema instanceof Schema; })) { + throw new YAMLException('Specified list of super schemas (or a single Schema object) contains a non-Schema object.'); + } + + if (!types.every(function (type) { return type instanceof Type; })) { + throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.'); + } + + return new Schema({ + include: schemas, + explicit: types + }); +}; + + +module.exports = Schema; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/core.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/core.js new file mode 100644 index 0000000..206daab --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/core.js @@ -0,0 +1,18 @@ +// Standard YAML's Core schema. +// http://www.yaml.org/spec/1.2/spec.html#id2804923 +// +// NOTE: JS-YAML does not support schema-specific tag resolution restrictions. +// So, Core schema has no distinctions from JSON schema is JS-YAML. + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + include: [ + require('./json') + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/default_full.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/default_full.js new file mode 100644 index 0000000..a55ef42 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/default_full.js @@ -0,0 +1,25 @@ +// JS-YAML's default schema for `load` function. +// It is not described in the YAML specification. +// +// This schema is based on JS-YAML's default safe schema and includes +// JavaScript-specific types: !!js/undefined, !!js/regexp and !!js/function. +// +// Also this schema is used as default base schema at `Schema.create` function. + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = Schema.DEFAULT = new Schema({ + include: [ + require('./default_safe') + ], + explicit: [ + require('../type/js/undefined'), + require('../type/js/regexp'), + require('../type/js/function') + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js new file mode 100644 index 0000000..11d89bb --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js @@ -0,0 +1,28 @@ +// JS-YAML's default schema for `safeLoad` function. +// It is not described in the YAML specification. +// +// This schema is based on standard YAML's Core schema and includes most of +// extra types described at YAML tag repository. (http://yaml.org/type/) + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + include: [ + require('./core') + ], + implicit: [ + require('../type/timestamp'), + require('../type/merge') + ], + explicit: [ + require('../type/binary'), + require('../type/omap'), + require('../type/pairs'), + require('../type/set') + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js new file mode 100644 index 0000000..b7a33eb --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js @@ -0,0 +1,17 @@ +// Standard YAML's Failsafe schema. +// http://www.yaml.org/spec/1.2/spec.html#id2802346 + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + explicit: [ + require('../type/str'), + require('../type/seq'), + require('../type/map') + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/json.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/json.js new file mode 100644 index 0000000..5be3dbf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/schema/json.js @@ -0,0 +1,25 @@ +// Standard YAML's JSON schema. +// http://www.yaml.org/spec/1.2/spec.html#id2803231 +// +// NOTE: JS-YAML does not support schema-specific tag resolution restrictions. +// So, this schema is not such strict as defined in the YAML specification. +// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc. + + +'use strict'; + + +var Schema = require('../schema'); + + +module.exports = new Schema({ + include: [ + require('./failsafe') + ], + implicit: [ + require('../type/null'), + require('../type/bool'), + require('../type/int'), + require('../type/float') + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type.js new file mode 100644 index 0000000..5e3176c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type.js @@ -0,0 +1,61 @@ +'use strict'; + +var YAMLException = require('./exception'); + +var TYPE_CONSTRUCTOR_OPTIONS = [ + 'kind', + 'resolve', + 'construct', + 'instanceOf', + 'predicate', + 'represent', + 'defaultStyle', + 'styleAliases' +]; + +var YAML_NODE_KINDS = [ + 'scalar', + 'sequence', + 'mapping' +]; + +function compileStyleAliases(map) { + var result = {}; + + if (null !== map) { + Object.keys(map).forEach(function (style) { + map[style].forEach(function (alias) { + result[String(alias)] = style; + }); + }); + } + + return result; +} + +function Type(tag, options) { + options = options || {}; + + Object.keys(options).forEach(function (name) { + if (-1 === TYPE_CONSTRUCTOR_OPTIONS.indexOf(name)) { + throw new YAMLException('Unknown option "' + name + '" is met in definition of "' + tag + '" YAML type.'); + } + }); + + // TODO: Add tag format check. + this.tag = tag; + this.kind = options['kind'] || null; + this.resolve = options['resolve'] || function () { return true; }; + this.construct = options['construct'] || function (data) { return data; }; + this.instanceOf = options['instanceOf'] || null; + this.predicate = options['predicate'] || null; + this.represent = options['represent'] || null; + this.defaultStyle = options['defaultStyle'] || null; + this.styleAliases = compileStyleAliases(options['styleAliases'] || null); + + if (-1 === YAML_NODE_KINDS.indexOf(this.kind)) { + throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.'); + } +} + +module.exports = Type; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/binary.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/binary.js new file mode 100644 index 0000000..122155c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/binary.js @@ -0,0 +1,134 @@ +'use strict'; + +/*eslint-disable no-bitwise*/ + +// A trick for browserified version. +// Since we make browserifier to ignore `buffer` module, NodeBuffer will be undefined +var NodeBuffer = require('buffer').Buffer; +var Type = require('../type'); + + +// [ 64, 65, 66 ] -> [ padding, CR, LF ] +var BASE64_MAP = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r'; + + +function resolveYamlBinary(data) { + if (null === data) { + return false; + } + + var code, idx, bitlen = 0, len = 0, max = data.length, map = BASE64_MAP; + + // Convert one by one. + for (idx = 0; idx < max; idx++) { + code = map.indexOf(data.charAt(idx)); + + // Skip CR/LF + if (code > 64) { continue; } + + // Fail on illegal characters + if (code < 0) { return false; } + + bitlen += 6; + } + + // If there are any bits left, source was corrupted + return (bitlen % 8) === 0; +} + +function constructYamlBinary(data) { + var code, idx, tailbits, + input = data.replace(/[\r\n=]/g, ''), // remove CR/LF & padding to simplify scan + max = input.length, + map = BASE64_MAP, + bits = 0, + result = []; + + // Collect by 6*4 bits (3 bytes) + + for (idx = 0; idx < max; idx++) { + if ((idx % 4 === 0) && idx) { + result.push((bits >> 16) & 0xFF); + result.push((bits >> 8) & 0xFF); + result.push(bits & 0xFF); + } + + bits = (bits << 6) | map.indexOf(input.charAt(idx)); + } + + // Dump tail + + tailbits = (max % 4) * 6; + + if (tailbits === 0) { + result.push((bits >> 16) & 0xFF); + result.push((bits >> 8) & 0xFF); + result.push(bits & 0xFF); + } else if (tailbits === 18) { + result.push((bits >> 10) & 0xFF); + result.push((bits >> 2) & 0xFF); + } else if (tailbits === 12) { + result.push((bits >> 4) & 0xFF); + } + + // Wrap into Buffer for NodeJS and leave Array for browser + if (NodeBuffer) { + return new NodeBuffer(result); + } + + return result; +} + +function representYamlBinary(object /*, style*/) { + var result = '', bits = 0, idx, tail, + max = object.length, + map = BASE64_MAP; + + // Convert every three bytes to 4 ASCII characters. + + for (idx = 0; idx < max; idx++) { + if ((idx % 3 === 0) && idx) { + result += map[(bits >> 18) & 0x3F]; + result += map[(bits >> 12) & 0x3F]; + result += map[(bits >> 6) & 0x3F]; + result += map[bits & 0x3F]; + } + + bits = (bits << 8) + object[idx]; + } + + // Dump tail + + tail = max % 3; + + if (tail === 0) { + result += map[(bits >> 18) & 0x3F]; + result += map[(bits >> 12) & 0x3F]; + result += map[(bits >> 6) & 0x3F]; + result += map[bits & 0x3F]; + } else if (tail === 2) { + result += map[(bits >> 10) & 0x3F]; + result += map[(bits >> 4) & 0x3F]; + result += map[(bits << 2) & 0x3F]; + result += map[64]; + } else if (tail === 1) { + result += map[(bits >> 2) & 0x3F]; + result += map[(bits << 4) & 0x3F]; + result += map[64]; + result += map[64]; + } + + return result; +} + +function isBinary(object) { + return NodeBuffer && NodeBuffer.isBuffer(object); +} + +module.exports = new Type('tag:yaml.org,2002:binary', { + kind: 'scalar', + resolve: resolveYamlBinary, + construct: constructYamlBinary, + predicate: isBinary, + represent: representYamlBinary +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/bool.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/bool.js new file mode 100644 index 0000000..5c2a304 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/bool.js @@ -0,0 +1,37 @@ +'use strict'; + +var Type = require('../type'); + +function resolveYamlBoolean(data) { + if (null === data) { + return false; + } + + var max = data.length; + + return (max === 4 && (data === 'true' || data === 'True' || data === 'TRUE')) || + (max === 5 && (data === 'false' || data === 'False' || data === 'FALSE')); +} + +function constructYamlBoolean(data) { + return data === 'true' || + data === 'True' || + data === 'TRUE'; +} + +function isBoolean(object) { + return '[object Boolean]' === Object.prototype.toString.call(object); +} + +module.exports = new Type('tag:yaml.org,2002:bool', { + kind: 'scalar', + resolve: resolveYamlBoolean, + construct: constructYamlBoolean, + predicate: isBoolean, + represent: { + lowercase: function (object) { return object ? 'true' : 'false'; }, + uppercase: function (object) { return object ? 'TRUE' : 'FALSE'; }, + camelcase: function (object) { return object ? 'True' : 'False'; } + }, + defaultStyle: 'lowercase' +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/float.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/float.js new file mode 100644 index 0000000..67c9c21 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/float.js @@ -0,0 +1,108 @@ +'use strict'; + +var common = require('../common'); +var Type = require('../type'); + +var YAML_FLOAT_PATTERN = new RegExp( + '^(?:[-+]?(?:[0-9][0-9_]*)\\.[0-9_]*(?:[eE][-+][0-9]+)?' + + '|\\.[0-9_]+(?:[eE][-+][0-9]+)?' + + '|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*' + + '|[-+]?\\.(?:inf|Inf|INF)' + + '|\\.(?:nan|NaN|NAN))$'); + +function resolveYamlFloat(data) { + if (null === data) { + return false; + } + + var value, sign, base, digits; + + if (!YAML_FLOAT_PATTERN.test(data)) { + return false; + } + return true; +} + +function constructYamlFloat(data) { + var value, sign, base, digits; + + value = data.replace(/_/g, '').toLowerCase(); + sign = '-' === value[0] ? -1 : 1; + digits = []; + + if (0 <= '+-'.indexOf(value[0])) { + value = value.slice(1); + } + + if ('.inf' === value) { + return (1 === sign) ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY; + + } else if ('.nan' === value) { + return NaN; + + } else if (0 <= value.indexOf(':')) { + value.split(':').forEach(function (v) { + digits.unshift(parseFloat(v, 10)); + }); + + value = 0.0; + base = 1; + + digits.forEach(function (d) { + value += d * base; + base *= 60; + }); + + return sign * value; + + } + return sign * parseFloat(value, 10); +} + +function representYamlFloat(object, style) { + if (isNaN(object)) { + switch (style) { + case 'lowercase': + return '.nan'; + case 'uppercase': + return '.NAN'; + case 'camelcase': + return '.NaN'; + } + } else if (Number.POSITIVE_INFINITY === object) { + switch (style) { + case 'lowercase': + return '.inf'; + case 'uppercase': + return '.INF'; + case 'camelcase': + return '.Inf'; + } + } else if (Number.NEGATIVE_INFINITY === object) { + switch (style) { + case 'lowercase': + return '-.inf'; + case 'uppercase': + return '-.INF'; + case 'camelcase': + return '-.Inf'; + } + } else if (common.isNegativeZero(object)) { + return '-0.0'; + } + return object.toString(10); +} + +function isFloat(object) { + return ('[object Number]' === Object.prototype.toString.call(object)) && + (0 !== object % 1 || common.isNegativeZero(object)); +} + +module.exports = new Type('tag:yaml.org,2002:float', { + kind: 'scalar', + resolve: resolveYamlFloat, + construct: constructYamlFloat, + predicate: isFloat, + represent: representYamlFloat, + defaultStyle: 'lowercase' +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/int.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/int.js new file mode 100644 index 0000000..800f106 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/int.js @@ -0,0 +1,183 @@ +'use strict'; + +var common = require('../common'); +var Type = require('../type'); + +function isHexCode(c) { + return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) || + ((0x41/* A */ <= c) && (c <= 0x46/* F */)) || + ((0x61/* a */ <= c) && (c <= 0x66/* f */)); +} + +function isOctCode(c) { + return ((0x30/* 0 */ <= c) && (c <= 0x37/* 7 */)); +} + +function isDecCode(c) { + return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)); +} + +function resolveYamlInteger(data) { + if (null === data) { + return false; + } + + var max = data.length, + index = 0, + hasDigits = false, + ch; + + if (!max) { return false; } + + ch = data[index]; + + // sign + if (ch === '-' || ch === '+') { + ch = data[++index]; + } + + if (ch === '0') { + // 0 + if (index + 1 === max) { return true; } + ch = data[++index]; + + // base 2, base 8, base 16 + + if (ch === 'b') { + // base 2 + index++; + + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (ch !== '0' && ch !== '1') { + return false; + } + hasDigits = true; + } + return hasDigits; + } + + + if (ch === 'x') { + // base 16 + index++; + + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (!isHexCode(data.charCodeAt(index))) { + return false; + } + hasDigits = true; + } + return hasDigits; + } + + // base 8 + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (!isOctCode(data.charCodeAt(index))) { + return false; + } + hasDigits = true; + } + return hasDigits; + } + + // base 10 (except 0) or base 60 + + for (; index < max; index++) { + ch = data[index]; + if (ch === '_') { continue; } + if (ch === ':') { break; } + if (!isDecCode(data.charCodeAt(index))) { + return false; + } + hasDigits = true; + } + + if (!hasDigits) { return false; } + + // if !base60 - done; + if (ch !== ':') { return true; } + + // base60 almost not used, no needs to optimize + return /^(:[0-5]?[0-9])+$/.test(data.slice(index)); +} + +function constructYamlInteger(data) { + var value = data, sign = 1, ch, base, digits = []; + + if (value.indexOf('_') !== -1) { + value = value.replace(/_/g, ''); + } + + ch = value[0]; + + if (ch === '-' || ch === '+') { + if (ch === '-') { sign = -1; } + value = value.slice(1); + ch = value[0]; + } + + if ('0' === value) { + return 0; + } + + if (ch === '0') { + if (value[1] === 'b') { + return sign * parseInt(value.slice(2), 2); + } + if (value[1] === 'x') { + return sign * parseInt(value, 16); + } + return sign * parseInt(value, 8); + + } + + if (value.indexOf(':') !== -1) { + value.split(':').forEach(function (v) { + digits.unshift(parseInt(v, 10)); + }); + + value = 0; + base = 1; + + digits.forEach(function (d) { + value += (d * base); + base *= 60; + }); + + return sign * value; + + } + + return sign * parseInt(value, 10); +} + +function isInteger(object) { + return ('[object Number]' === Object.prototype.toString.call(object)) && + (0 === object % 1 && !common.isNegativeZero(object)); +} + +module.exports = new Type('tag:yaml.org,2002:int', { + kind: 'scalar', + resolve: resolveYamlInteger, + construct: constructYamlInteger, + predicate: isInteger, + represent: { + binary: function (object) { return '0b' + object.toString(2); }, + octal: function (object) { return '0' + object.toString(8); }, + decimal: function (object) { return object.toString(10); }, + hexadecimal: function (object) { return '0x' + object.toString(16).toUpperCase(); } + }, + defaultStyle: 'decimal', + styleAliases: { + binary: [ 2, 'bin' ], + octal: [ 8, 'oct' ], + decimal: [ 10, 'dec' ], + hexadecimal: [ 16, 'hex' ] + } +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/function.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/function.js new file mode 100644 index 0000000..4061c43 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/function.js @@ -0,0 +1,86 @@ +'use strict'; + +var esprima; + +// Browserified version does not have esprima +// +// 1. For node.js just require module as deps +// 2. For browser try to require mudule via external AMD system. +// If not found - try to fallback to window.esprima. If not +// found too - then fail to parse. +// +try { + esprima = require('esprima'); +} catch (_) { + /*global window */ + if (typeof window !== 'undefined') { esprima = window.esprima; } +} + +var Type = require('../../type'); + +function resolveJavascriptFunction(data) { + if (null === data) { + return false; + } + + try { + var source = '(' + data + ')', + ast = esprima.parse(source, { range: true }), + params = [], + body; + + if ('Program' !== ast.type || + 1 !== ast.body.length || + 'ExpressionStatement' !== ast.body[0].type || + 'FunctionExpression' !== ast.body[0].expression.type) { + return false; + } + + return true; + } catch (err) { + return false; + } +} + +function constructJavascriptFunction(data) { + /*jslint evil:true*/ + + var source = '(' + data + ')', + ast = esprima.parse(source, { range: true }), + params = [], + body; + + if ('Program' !== ast.type || + 1 !== ast.body.length || + 'ExpressionStatement' !== ast.body[0].type || + 'FunctionExpression' !== ast.body[0].expression.type) { + throw new Error('Failed to resolve function'); + } + + ast.body[0].expression.params.forEach(function (param) { + params.push(param.name); + }); + + body = ast.body[0].expression.body.range; + + // Esprima's ranges include the first '{' and the last '}' characters on + // function expressions. So cut them out. + /*eslint-disable no-new-func*/ + return new Function(params, source.slice(body[0] + 1, body[1] - 1)); +} + +function representJavascriptFunction(object /*, style*/) { + return object.toString(); +} + +function isFunction(object) { + return '[object Function]' === Object.prototype.toString.call(object); +} + +module.exports = new Type('tag:yaml.org,2002:js/function', { + kind: 'scalar', + resolve: resolveJavascriptFunction, + construct: constructJavascriptFunction, + predicate: isFunction, + represent: representJavascriptFunction +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js new file mode 100644 index 0000000..07ef521 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js @@ -0,0 +1,84 @@ +'use strict'; + +var Type = require('../../type'); + +function resolveJavascriptRegExp(data) { + if (null === data) { + return false; + } + + if (0 === data.length) { + return false; + } + + var regexp = data, + tail = /\/([gim]*)$/.exec(data), + modifiers = ''; + + // if regexp starts with '/' it can have modifiers and must be properly closed + // `/foo/gim` - modifiers tail can be maximum 3 chars + if ('/' === regexp[0]) { + if (tail) { + modifiers = tail[1]; + } + + if (modifiers.length > 3) { return false; } + // if expression starts with /, is should be properly terminated + if (regexp[regexp.length - modifiers.length - 1] !== '/') { return false; } + + regexp = regexp.slice(1, regexp.length - modifiers.length - 1); + } + + try { + var dummy = new RegExp(regexp, modifiers); + return true; + } catch (error) { + return false; + } +} + +function constructJavascriptRegExp(data) { + var regexp = data, + tail = /\/([gim]*)$/.exec(data), + modifiers = ''; + + // `/foo/gim` - tail can be maximum 4 chars + if ('/' === regexp[0]) { + if (tail) { + modifiers = tail[1]; + } + regexp = regexp.slice(1, regexp.length - modifiers.length - 1); + } + + return new RegExp(regexp, modifiers); +} + +function representJavascriptRegExp(object /*, style*/) { + var result = '/' + object.source + '/'; + + if (object.global) { + result += 'g'; + } + + if (object.multiline) { + result += 'm'; + } + + if (object.ignoreCase) { + result += 'i'; + } + + return result; +} + +function isRegExp(object) { + return '[object RegExp]' === Object.prototype.toString.call(object); +} + +module.exports = new Type('tag:yaml.org,2002:js/regexp', { + kind: 'scalar', + resolve: resolveJavascriptRegExp, + construct: constructJavascriptRegExp, + predicate: isRegExp, + represent: representJavascriptRegExp +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js new file mode 100644 index 0000000..562753c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js @@ -0,0 +1,28 @@ +'use strict'; + +var Type = require('../../type'); + +function resolveJavascriptUndefined() { + return true; +} + +function constructJavascriptUndefined() { + /*eslint-disable no-undefined*/ + return undefined; +} + +function representJavascriptUndefined() { + return ''; +} + +function isUndefined(object) { + return 'undefined' === typeof object; +} + +module.exports = new Type('tag:yaml.org,2002:js/undefined', { + kind: 'scalar', + resolve: resolveJavascriptUndefined, + construct: constructJavascriptUndefined, + predicate: isUndefined, + represent: representJavascriptUndefined +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/map.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/map.js new file mode 100644 index 0000000..dab9838 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/map.js @@ -0,0 +1,8 @@ +'use strict'; + +var Type = require('../type'); + +module.exports = new Type('tag:yaml.org,2002:map', { + kind: 'mapping', + construct: function (data) { return null !== data ? data : {}; } +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/merge.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/merge.js new file mode 100644 index 0000000..29fa382 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/merge.js @@ -0,0 +1,12 @@ +'use strict'; + +var Type = require('../type'); + +function resolveYamlMerge(data) { + return '<<' === data || null === data; +} + +module.exports = new Type('tag:yaml.org,2002:merge', { + kind: 'scalar', + resolve: resolveYamlMerge +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/null.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/null.js new file mode 100644 index 0000000..3474055 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/null.js @@ -0,0 +1,36 @@ +'use strict'; + +var Type = require('../type'); + +function resolveYamlNull(data) { + if (null === data) { + return true; + } + + var max = data.length; + + return (max === 1 && data === '~') || + (max === 4 && (data === 'null' || data === 'Null' || data === 'NULL')); +} + +function constructYamlNull() { + return null; +} + +function isNull(object) { + return null === object; +} + +module.exports = new Type('tag:yaml.org,2002:null', { + kind: 'scalar', + resolve: resolveYamlNull, + construct: constructYamlNull, + predicate: isNull, + represent: { + canonical: function () { return '~'; }, + lowercase: function () { return 'null'; }, + uppercase: function () { return 'NULL'; }, + camelcase: function () { return 'Null'; } + }, + defaultStyle: 'lowercase' +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/omap.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/omap.js new file mode 100644 index 0000000..f956459 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/omap.js @@ -0,0 +1,56 @@ +'use strict'; + +var Type = require('../type'); + +var _hasOwnProperty = Object.prototype.hasOwnProperty; +var _toString = Object.prototype.toString; + +function resolveYamlOmap(data) { + if (null === data) { + return true; + } + + var objectKeys = [], index, length, pair, pairKey, pairHasKey, + object = data; + + for (index = 0, length = object.length; index < length; index += 1) { + pair = object[index]; + pairHasKey = false; + + if ('[object Object]' !== _toString.call(pair)) { + return false; + } + + for (pairKey in pair) { + if (_hasOwnProperty.call(pair, pairKey)) { + if (!pairHasKey) { + pairHasKey = true; + } else { + return false; + } + } + } + + if (!pairHasKey) { + return false; + } + + if (-1 === objectKeys.indexOf(pairKey)) { + objectKeys.push(pairKey); + } else { + return false; + } + } + + return true; +} + +function constructYamlOmap(data) { + return null !== data ? data : []; +} + +module.exports = new Type('tag:yaml.org,2002:omap', { + kind: 'sequence', + resolve: resolveYamlOmap, + construct: constructYamlOmap +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/pairs.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/pairs.js new file mode 100644 index 0000000..02a0af6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/pairs.js @@ -0,0 +1,61 @@ +'use strict'; + +var Type = require('../type'); + +var _toString = Object.prototype.toString; + +function resolveYamlPairs(data) { + if (null === data) { + return true; + } + + var index, length, pair, keys, result, + object = data; + + result = new Array(object.length); + + for (index = 0, length = object.length; index < length; index += 1) { + pair = object[index]; + + if ('[object Object]' !== _toString.call(pair)) { + return false; + } + + keys = Object.keys(pair); + + if (1 !== keys.length) { + return false; + } + + result[index] = [ keys[0], pair[keys[0]] ]; + } + + return true; +} + +function constructYamlPairs(data) { + if (null === data) { + return []; + } + + var index, length, pair, keys, result, + object = data; + + result = new Array(object.length); + + for (index = 0, length = object.length; index < length; index += 1) { + pair = object[index]; + + keys = Object.keys(pair); + + result[index] = [ keys[0], pair[keys[0]] ]; + } + + return result; +} + +module.exports = new Type('tag:yaml.org,2002:pairs', { + kind: 'sequence', + resolve: resolveYamlPairs, + construct: constructYamlPairs +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/seq.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/seq.js new file mode 100644 index 0000000..5b860a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/seq.js @@ -0,0 +1,8 @@ +'use strict'; + +var Type = require('../type'); + +module.exports = new Type('tag:yaml.org,2002:seq', { + kind: 'sequence', + construct: function (data) { return null !== data ? data : []; } +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/set.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/set.js new file mode 100644 index 0000000..64d29e9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/set.js @@ -0,0 +1,33 @@ +'use strict'; + +var Type = require('../type'); + +var _hasOwnProperty = Object.prototype.hasOwnProperty; + +function resolveYamlSet(data) { + if (null === data) { + return true; + } + + var key, object = data; + + for (key in object) { + if (_hasOwnProperty.call(object, key)) { + if (null !== object[key]) { + return false; + } + } + } + + return true; +} + +function constructYamlSet(data) { + return null !== data ? data : {}; +} + +module.exports = new Type('tag:yaml.org,2002:set', { + kind: 'mapping', + resolve: resolveYamlSet, + construct: constructYamlSet +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/str.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/str.js new file mode 100644 index 0000000..8b5284f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/str.js @@ -0,0 +1,8 @@ +'use strict'; + +var Type = require('../type'); + +module.exports = new Type('tag:yaml.org,2002:str', { + kind: 'scalar', + construct: function (data) { return null !== data ? data : ''; } +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/timestamp.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/timestamp.js new file mode 100644 index 0000000..dc8cf15 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/lib/js-yaml/type/timestamp.js @@ -0,0 +1,98 @@ +'use strict'; + +var Type = require('../type'); + +var YAML_TIMESTAMP_REGEXP = new RegExp( + '^([0-9][0-9][0-9][0-9])' + // [1] year + '-([0-9][0-9]?)' + // [2] month + '-([0-9][0-9]?)' + // [3] day + '(?:(?:[Tt]|[ \\t]+)' + // ... + '([0-9][0-9]?)' + // [4] hour + ':([0-9][0-9])' + // [5] minute + ':([0-9][0-9])' + // [6] second + '(?:\\.([0-9]*))?' + // [7] fraction + '(?:[ \\t]*(Z|([-+])([0-9][0-9]?)' + // [8] tz [9] tz_sign [10] tz_hour + '(?::([0-9][0-9]))?))?)?$'); // [11] tz_minute + +function resolveYamlTimestamp(data) { + if (null === data) { + return false; + } + + var match, year, month, day, hour, minute, second, fraction = 0, + delta = null, tz_hour, tz_minute, date; + + match = YAML_TIMESTAMP_REGEXP.exec(data); + + if (null === match) { + return false; + } + + return true; +} + +function constructYamlTimestamp(data) { + var match, year, month, day, hour, minute, second, fraction = 0, + delta = null, tz_hour, tz_minute, date; + + match = YAML_TIMESTAMP_REGEXP.exec(data); + + if (null === match) { + throw new Error('Date resolve error'); + } + + // match: [1] year [2] month [3] day + + year = +(match[1]); + month = +(match[2]) - 1; // JS month starts with 0 + day = +(match[3]); + + if (!match[4]) { // no hour + return new Date(Date.UTC(year, month, day)); + } + + // match: [4] hour [5] minute [6] second [7] fraction + + hour = +(match[4]); + minute = +(match[5]); + second = +(match[6]); + + if (match[7]) { + fraction = match[7].slice(0, 3); + while (fraction.length < 3) { // milli-seconds + fraction += '0'; + } + fraction = +fraction; + } + + // match: [8] tz [9] tz_sign [10] tz_hour [11] tz_minute + + if (match[9]) { + tz_hour = +(match[10]); + tz_minute = +(match[11] || 0); + delta = (tz_hour * 60 + tz_minute) * 60000; // delta in mili-seconds + if ('-' === match[9]) { + delta = -delta; + } + } + + date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction)); + + if (delta) { + date.setTime(date.getTime() - delta); + } + + return date; +} + +function representYamlTimestamp(object /*, style*/) { + return object.toISOString(); +} + +module.exports = new Type('tag:yaml.org,2002:timestamp', { + kind: 'scalar', + resolve: resolveYamlTimestamp, + construct: constructYamlTimestamp, + instanceOf: Date, + represent: representYamlTimestamp +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/.bin/esparse b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/.bin/esparse new file mode 100644 index 0000000..efad1e9 Binary files /dev/null and b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/.bin/esparse differ diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/.bin/esvalidate b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/.bin/esvalidate new file mode 100644 index 0000000..a485acc Binary files /dev/null and b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/.bin/esvalidate differ diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/CHANGELOG.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/CHANGELOG.md new file mode 100644 index 0000000..661e75d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/CHANGELOG.md @@ -0,0 +1,136 @@ +1.0.2 / 2015-03-22 +------------------ + +* Relaxed lodash version dependency. + + +1.0.1 / 2015-02-20 +------------------ + +* Changed dependencies to be compatible with ancient nodejs. + + +1.0.0 / 2015-02-19 +------------------ + +* Maintenance release. +* Replaced `underscore` with `lodash`. +* Bumped version to 1.0.0 to better reflect semver meaning. +* HISTORY.md -> CHANGELOG.md + + +0.1.16 / 2013-12-01 +------------------- + +* Maintenance release. Updated dependencies and docs. + + +0.1.15 / 2013-05-13 +------------------- + +* Fixed #55, @trebor89 + + +0.1.14 / 2013-05-12 +------------------- + +* Fixed #62, @maxtaco + + +0.1.13 / 2013-04-08 +------------------- + +* Added `.npmignore` to reduce package size + + +0.1.12 / 2013-02-10 +------------------- + +* Fixed conflictHandler (#46), @hpaulj + + +0.1.11 / 2013-02-07 +------------------- + +* Multiple bugfixes, @hpaulj +* Added 70+ tests (ported from python), @hpaulj +* Added conflictHandler, @applepicke +* Added fromfilePrefixChar, @hpaulj + + +0.1.10 / 2012-12-30 +------------------- + +* Added [mutual exclusion](http://docs.python.org/dev/library/argparse.html#mutual-exclusion) + support, thanks to @hpaulj +* Fixed options check for `storeConst` & `appendConst` actions, thanks to @hpaulj + + +0.1.9 / 2012-12-27 +------------------ + +* Fixed option dest interferens with other options (issue #23), thanks to @hpaulj +* Fixed default value behavior with `*` positionals, thanks to @hpaulj +* Improve `getDefault()` behavior, thanks to @hpaulj +* Imrove negative argument parsing, thanks to @hpaulj + + +0.1.8 / 2012-12-01 +------------------ + +* Fixed parser parents (issue #19), thanks to @hpaulj +* Fixed negative argument parse (issue #20), thanks to @hpaulj + + +0.1.7 / 2012-10-14 +------------------ + +* Fixed 'choices' argument parse (issue #16) +* Fixed stderr output (issue #15) + + +0.1.6 / 2012-09-09 +------------------ + +* Fixed check for conflict of options (thanks to @tomxtobin) + + +0.1.5 / 2012-09-03 +------------------ + +* Fix parser #setDefaults method (thanks to @tomxtobin) + + +0.1.4 / 2012-07-30 +------------------ + +* Fixed pseudo-argument support (thanks to @CGamesPlay) +* Fixed addHelp default (should be true), if not set (thanks to @benblank) + + +0.1.3 / 2012-06-27 +------------------ + +* Fixed formatter api name: Formatter -> HelpFormatter + + +0.1.2 / 2012-05-29 +------------------ + +* Added basic tests +* Removed excess whitespace in help +* Fixed error reporting, when parcer with subcommands + called with empty arguments + + +0.1.1 / 2012-05-23 +------------------ + +* Fixed line wrapping in help formatter +* Added better error reporting on invalid arguments + + +0.1.0 / 2012-05-16 +------------------ + +* First release. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/LICENSE b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/LICENSE new file mode 100644 index 0000000..1afdae5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/LICENSE @@ -0,0 +1,21 @@ +(The MIT License) + +Copyright (C) 2012 by Vitaly Puzrin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/README.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/README.md new file mode 100644 index 0000000..72e4261 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/README.md @@ -0,0 +1,243 @@ +argparse +======== + +[![Build Status](https://secure.travis-ci.org/nodeca/argparse.png?branch=master)](http://travis-ci.org/nodeca/argparse) +[![NPM version](https://img.shields.io/npm/v/argparse.svg)](https://www.npmjs.org/package/argparse) + +CLI arguments parser for node.js. Javascript port of python's +[argparse](http://docs.python.org/dev/library/argparse.html) module +(original version 3.2). That's a full port, except some very rare options, +recorded in issue tracker. + +**NB. Difference with original.** + +- Method names changed to camelCase. See [generated docs](http://nodeca.github.com/argparse/). +- Use `defaultValue` instead of `default`. + + +Example +======= + +test.js file: + +```javascript +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp:true, + description: 'Argparse example' +}); +parser.addArgument( + [ '-f', '--foo' ], + { + help: 'foo bar' + } +); +parser.addArgument( + [ '-b', '--bar' ], + { + help: 'bar foo' + } +); +var args = parser.parseArgs(); +console.dir(args); +``` + +Display help: + +``` +$ ./test.js -h +usage: example.js [-h] [-v] [-f FOO] [-b BAR] + +Argparse example + +Optional arguments: + -h, --help Show this help message and exit. + -v, --version Show program's version number and exit. + -f FOO, --foo FOO foo bar + -b BAR, --bar BAR bar foo +``` + +Parse arguments: + +``` +$ ./test.js -f=3 --bar=4 +{ foo: '3', bar: '4' } +``` + +More [examples](https://github.com/nodeca/argparse/tree/master/examples). + + +ArgumentParser objects +====================== + +``` +new ArgumentParser({paramters hash}); +``` + +Creates a new ArgumentParser object. + +**Supported params:** + +- ```description``` - Text to display before the argument help. +- ```epilog``` - Text to display after the argument help. +- ```addHelp``` - Add a -h/–help option to the parser. (default: true) +- ```argumentDefault``` - Set the global default value for arguments. (default: null) +- ```parents``` - A list of ArgumentParser objects whose arguments should also be included. +- ```prefixChars``` - The set of characters that prefix optional arguments. (default: ‘-‘) +- ```formatterClass``` - A class for customizing the help output. +- ```prog``` - The name of the program (default: `path.basename(process.argv[1])`) +- ```usage``` - The string describing the program usage (default: generated) +- ```conflictHandler``` - Usually unnecessary, defines strategy for resolving conflicting optionals. + +**Not supportied yet** + +- ```fromfilePrefixChars``` - The set of characters that prefix files from which additional arguments should be read. + + +Details in [original ArgumentParser guide](http://docs.python.org/dev/library/argparse.html#argumentparser-objects) + + +addArgument() method +==================== + +``` +ArgumentParser.addArgument([names or flags], {options}) +``` + +Defines how a single command-line argument should be parsed. + +- ```name or flags``` - Either a name or a list of option strings, e.g. foo or -f, --foo. + +Options: + +- ```action``` - The basic type of action to be taken when this argument is encountered at the command line. +- ```nargs```- The number of command-line arguments that should be consumed. +- ```constant``` - A constant value required by some action and nargs selections. +- ```defaultValue``` - The value produced if the argument is absent from the command line. +- ```type``` - The type to which the command-line argument should be converted. +- ```choices``` - A container of the allowable values for the argument. +- ```required``` - Whether or not the command-line option may be omitted (optionals only). +- ```help``` - A brief description of what the argument does. +- ```metavar``` - A name for the argument in usage messages. +- ```dest``` - The name of the attribute to be added to the object returned by parseArgs(). + +Details in [original add_argument guide](http://docs.python.org/dev/library/argparse.html#the-add-argument-method) + + +Action (some details) +================ + +ArgumentParser objects associate command-line arguments with actions. +These actions can do just about anything with the command-line arguments associated +with them, though most actions simply add an attribute to the object returned by +parseArgs(). The action keyword argument specifies how the command-line arguments +should be handled. The supported actions are: + +- ```store``` - Just stores the argument’s value. This is the default action. +- ```storeConst``` - Stores value, specified by the const keyword argument. + (Note that the const keyword argument defaults to the rather unhelpful None.) + The 'storeConst' action is most commonly used with optional arguments, that + specify some sort of flag. +- ```storeTrue``` and ```storeFalse``` - Stores values True and False + respectively. These are special cases of 'storeConst'. +- ```append``` - Stores a list, and appends each argument value to the list. + This is useful to allow an option to be specified multiple times. +- ```appendConst``` - Stores a list, and appends value, specified by the + const keyword argument to the list. (Note, that the const keyword argument defaults + is None.) The 'appendConst' action is typically used when multiple arguments need + to store constants to the same list. +- ```count``` - Counts the number of times a keyword argument occurs. For example, + used for increasing verbosity levels. +- ```help``` - Prints a complete help message for all the options in the current + parser and then exits. By default a help action is automatically added to the parser. + See ArgumentParser for details of how the output is created. +- ```version``` - Prints version information and exit. Expects a `version=` + keyword argument in the addArgument() call. + +Details in [original action guide](http://docs.python.org/dev/library/argparse.html#action) + + +Sub-commands +============ + +ArgumentParser.addSubparsers() + +Many programs split their functionality into a number of sub-commands, for +example, the svn program can invoke sub-commands like `svn checkout`, `svn update`, +and `svn commit`. Splitting up functionality this way can be a particularly good +idea when a program performs several different functions which require different +kinds of command-line arguments. `ArgumentParser` supports creation of such +sub-commands with `addSubparsers()` method. The `addSubparsers()` method is +normally called with no arguments and returns an special action object. +This object has a single method `addParser()`, which takes a command name and +any `ArgumentParser` constructor arguments, and returns an `ArgumentParser` object +that can be modified as usual. + +Example: + +sub_commands.js +```javascript +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp:true, + description: 'Argparse examples: sub-commands', +}); + +var subparsers = parser.addSubparsers({ + title:'subcommands', + dest:"subcommand_name" +}); + +var bar = subparsers.addParser('c1', {addHelp:true}); +bar.addArgument( + [ '-f', '--foo' ], + { + action: 'store', + help: 'foo3 bar3' + } +); +var bar = subparsers.addParser( + 'c2', + {aliases:['co'], addHelp:true} +); +bar.addArgument( + [ '-b', '--bar' ], + { + action: 'store', + type: 'int', + help: 'foo3 bar3' + } +); + +var args = parser.parseArgs(); +console.dir(args); + +``` + +Details in [original sub-commands guide](http://docs.python.org/dev/library/argparse.html#sub-commands) + + +Contributors +============ + +- [Eugene Shkuropat](https://github.com/shkuropat) +- [Paul Jacobson](https://github.com/hpaulj) + +[others](https://github.com/nodeca/argparse/graphs/contributors) + +License +======= + +Copyright (c) 2012 [Vitaly Puzrin](https://github.com/puzrin). +Released under the MIT license. See +[LICENSE](https://github.com/nodeca/argparse/blob/master/LICENSE) for details. + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/arguments.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/arguments.js new file mode 100644 index 0000000..5b090fa --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/arguments.js @@ -0,0 +1,36 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: arguments' +}); +parser.addArgument( + [ '-f', '--foo' ], + { + help: 'foo bar' + } +); +parser.addArgument( + [ '-b', '--bar' ], + { + help: 'bar foo' + } +); + + +parser.printHelp(); +console.log('-----------'); + +var args; +args = parser.parseArgs('-f 1 -b2'.split(' ')); +console.dir(args); +console.log('-----------'); +args = parser.parseArgs('-f=3 --bar=4'.split(' ')); +console.dir(args); +console.log('-----------'); +args = parser.parseArgs('--foo 5 --bar 6'.split(' ')); +console.dir(args); +console.log('-----------'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/choice.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/choice.js new file mode 100644 index 0000000..2616fa4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/choice.js @@ -0,0 +1,22 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: choice' +}); + +parser.addArgument(['foo'], {choices: 'abc'}); + +parser.printHelp(); +console.log('-----------'); + +var args; +args = parser.parseArgs(['c']); +console.dir(args); +console.log('-----------'); +parser.parseArgs(['X']); +console.dir(args); + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/constants.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/constants.js new file mode 100644 index 0000000..172a4f3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/constants.js @@ -0,0 +1,59 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: constant' +}); + +parser.addArgument( + [ '-a'], + { + action: 'storeConst', + dest: 'answer', + help: 'store constant', + constant: 42 + } +); +parser.addArgument( + [ '--str' ], + { + action: 'appendConst', + dest: 'types', + help: 'append constant "str" to types', + constant: 'str' + } +); +parser.addArgument( + [ '--int' ], + { + action: 'appendConst', + dest: 'types', + help: 'append constant "int" to types', + constant: 'int' + } +); + +parser.addArgument( + [ '--true' ], + { + action: 'storeTrue', + help: 'store true constant' + } +); +parser.addArgument( + [ '--false' ], + { + action: 'storeFalse', + help: 'store false constant' + } +); + +parser.printHelp(); +console.log('-----------'); + +var args; +args = parser.parseArgs('-a --str --int --true'.split(' ')); +console.dir(args); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/help.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/help.js new file mode 100644 index 0000000..7eb9555 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/help.js @@ -0,0 +1,13 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: help', + epilog: 'help epilog', + prog: 'help_example_prog', + usage: 'Usage %(prog)s ' +}); +parser.printHelp(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/nargs.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/nargs.js new file mode 100644 index 0000000..74f376b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/nargs.js @@ -0,0 +1,33 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: nargs' +}); +parser.addArgument( + [ '-f', '--foo' ], + { + help: 'foo bar', + nargs: 1 + } +); +parser.addArgument( + [ '-b', '--bar' ], + { + help: 'bar foo', + nargs: '*' + } +); + +parser.printHelp(); +console.log('-----------'); + +var args; +args = parser.parseArgs('--foo a --bar c d'.split(' ')); +console.dir(args); +console.log('-----------'); +args = parser.parseArgs('--bar b c f --foo a'.split(' ')); +console.dir(args); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/parents.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/parents.js new file mode 100644 index 0000000..dfe8968 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/parents.js @@ -0,0 +1,28 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; + +var args; +var parent_parser = new ArgumentParser({ addHelp: false }); +// note addHelp:false to prevent duplication of the -h option +parent_parser.addArgument( + ['--parent'], + { type: 'int', description: 'parent' } +); + +var foo_parser = new ArgumentParser({ + parents: [ parent_parser ], + description: 'child1' +}); +foo_parser.addArgument(['foo']); +args = foo_parser.parseArgs(['--parent', '2', 'XXX']); +console.log(args); + +var bar_parser = new ArgumentParser({ + parents: [ parent_parser ], + description: 'child2' +}); +bar_parser.addArgument(['--bar']); +args = bar_parser.parseArgs(['--bar', 'YYY']); +console.log(args); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js new file mode 100644 index 0000000..430d5e1 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js @@ -0,0 +1,23 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: prefix_chars', + prefixChars: '-+' +}); +parser.addArgument(['+f', '++foo']); +parser.addArgument(['++bar'], {action: 'storeTrue'}); + +parser.printHelp(); +console.log('-----------'); + +var args; +args = parser.parseArgs(['+f', '1']); +console.dir(args); +args = parser.parseArgs(['++bar']); +console.dir(args); +args = parser.parseArgs(['++foo', '2', '++bar']); +console.dir(args); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js new file mode 100644 index 0000000..df9c494 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js @@ -0,0 +1,49 @@ +#!/usr/bin/env node +'use strict'; + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ + version: '0.0.1', + addHelp: true, + description: 'Argparse examples: sub-commands' +}); + +var subparsers = parser.addSubparsers({ + title: 'subcommands', + dest: "subcommand_name" +}); + +var bar = subparsers.addParser('c1', {addHelp: true, help: 'c1 help'}); +bar.addArgument( + [ '-f', '--foo' ], + { + action: 'store', + help: 'foo3 bar3' + } +); +var bar = subparsers.addParser( + 'c2', + {aliases: ['co'], addHelp: true, help: 'c2 help'} +); +bar.addArgument( + [ '-b', '--bar' ], + { + action: 'store', + type: 'int', + help: 'foo3 bar3' + } +); +parser.printHelp(); +console.log('-----------'); + +var args; +args = parser.parseArgs('c1 -f 2'.split(' ')); +console.dir(args); +console.log('-----------'); +args = parser.parseArgs('c2 -b 1'.split(' ')); +console.dir(args); +console.log('-----------'); +args = parser.parseArgs('co -b 1'.split(' ')); +console.dir(args); +console.log('-----------'); +parser.parseArgs(['c1', '-h']); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/sum.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/sum.js new file mode 100644 index 0000000..4532800 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/sum.js @@ -0,0 +1,35 @@ +#!/usr/bin/env node + +'use strict'; + + +var ArgumentParser = require('../lib/argparse').ArgumentParser; +var parser = new ArgumentParser({ description: 'Process some integers.' }); + + +function sum(arr) { + return arr.reduce(function (a, b) { + return a + b; + }, 0); +} +function max(arr) { + return Math.max.apply(Math, arr); +} + + +parser.addArgument(['integers'], { + metavar: 'N', + type: 'int', + nargs: '+', + help: 'an integer for the accumulator' +}); +parser.addArgument(['--sum'], { + dest: 'accumulate', + action: 'storeConst', + constant: sum, + defaultValue: max, + help: 'sum the integers (default: find the max)' +}); + +var args = parser.parseArgs('--sum 1 2 -1'.split(' ')); +console.log(args.accumulate(args.integers)); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js new file mode 100644 index 0000000..1c03cdc --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js @@ -0,0 +1,270 @@ +'use strict'; + +var a, group, parser, helptext; + +var assert = require('assert'); + + +var print = function () { + return console.log.apply(console, arguments); + }; +// print = function () {}; + +var argparse = require('argparse'); + +print("TEST argparse.ArgumentDefaultsHelpFormatter"); + +parser = new argparse.ArgumentParser({ + debug: true, + formatterClass: argparse.ArgumentDefaultsHelpFormatter, + description: 'description' +}); + +parser.addArgument(['--foo'], { + help: 'foo help - oh and by the way, %(defaultValue)s' +}); + +parser.addArgument(['--bar'], { + action: 'storeTrue', + help: 'bar help' +}); + +parser.addArgument(['spam'], { + help: 'spam help' +}); + +parser.addArgument(['badger'], { + nargs: '?', + defaultValue: 'wooden', + help: 'badger help' +}); + +group = parser.addArgumentGroup({ + title: 'title', + description: 'group description' +}); + +group.addArgument(['--baz'], { + type: 'int', + defaultValue: 42, + help: 'baz help' +}); + +helptext = parser.formatHelp(); +print(helptext); +// test selected clips +assert(helptext.match(/badger help \(default: wooden\)/)); +assert(helptext.match(/foo help - oh and by the way, null/)); +assert(helptext.match(/bar help \(default: false\)/)); +assert(helptext.match(/title:\n {2}group description/)); // test indent +assert(helptext.match(/baz help \(default: 42\)/im)); + +/* +usage: PROG [-h] [--foo FOO] [--bar] [--baz BAZ] spam [badger] + +description + +positional arguments: + spam spam help + badger badger help (default: wooden) + +optional arguments: + -h, --help show this help message and exit + --foo FOO foo help - oh and by the way, null + --bar bar help (default: false) + +title: + group description + + --baz BAZ baz help (default: 42) +*/ + +print("TEST argparse.RawDescriptionHelpFormatter"); + +parser = new argparse.ArgumentParser({ + debug: true, + prog: 'PROG', + formatterClass: argparse.RawDescriptionHelpFormatter, + description: 'Keep the formatting\n' + + ' exactly as it is written\n' + + '\n' + + 'here\n' +}); + +a = parser.addArgument(['--foo'], { + help: ' foo help should not\n' + + ' retain this odd formatting' +}); + +parser.addArgument(['spam'], { + 'help': 'spam help' +}); + +group = parser.addArgumentGroup({ + title: 'title', + description: ' This text\n' + + ' should be indented\n' + + ' exactly like it is here\n' +}); + +group.addArgument(['--bar'], { + help: 'bar help' +}); + +helptext = parser.formatHelp(); +print(helptext); +// test selected clips +assert(helptext.match(parser.description)); +assert.equal(helptext.match(a.help), null); +assert(helptext.match(/foo help should not retain this odd formatting/)); + +/* +class TestHelpRawDescription(HelpTestCase): + """Test the RawTextHelpFormatter""" +.... + +usage: PROG [-h] [--foo FOO] [--bar BAR] spam + +Keep the formatting + exactly as it is written + +here + +positional arguments: + spam spam help + +optional arguments: + -h, --help show this help message and exit + --foo FOO foo help should not retain this odd formatting + +title: + This text + should be indented + exactly like it is here + + --bar BAR bar help +*/ + + +print("TEST argparse.RawTextHelpFormatter"); + +parser = new argparse.ArgumentParser({ + debug: true, + prog: 'PROG', + formatterClass: argparse.RawTextHelpFormatter, + description: 'Keep the formatting\n' + + ' exactly as it is written\n' + + '\n' + + 'here\n' +}); + +parser.addArgument(['--baz'], { + help: ' baz help should also\n' + + 'appear as given here' +}); + +a = parser.addArgument(['--foo'], { + help: ' foo help should also\n' + + 'appear as given here' +}); + +parser.addArgument(['spam'], { + 'help': 'spam help' +}); + +group = parser.addArgumentGroup({ + title: 'title', + description: ' This text\n' + + ' should be indented\n' + + ' exactly like it is here\n' +}); + +group.addArgument(['--bar'], { + help: 'bar help' +}); + +helptext = parser.formatHelp(); +print(helptext); +// test selected clips +assert(helptext.match(parser.description)); +assert(helptext.match(/( {14})appear as given here/gm)); + +/* +class TestHelpRawText(HelpTestCase): + """Test the RawTextHelpFormatter""" + +usage: PROG [-h] [--foo FOO] [--bar BAR] spam + +Keep the formatting + exactly as it is written + +here + +positional arguments: + spam spam help + +optional arguments: + -h, --help show this help message and exit + --foo FOO foo help should also + appear as given here + +title: + This text + should be indented + exactly like it is here + + --bar BAR bar help +*/ + + +print("TEST metavar as a tuple"); + +parser = new argparse.ArgumentParser({ + prog: 'PROG' +}); + +parser.addArgument(['-w'], { + help: 'w', + nargs: '+', + metavar: ['W1', 'W2'] +}); + +parser.addArgument(['-x'], { + help: 'x', + nargs: '*', + metavar: ['X1', 'X2'] +}); + +parser.addArgument(['-y'], { + help: 'y', + nargs: 3, + metavar: ['Y1', 'Y2', 'Y3'] +}); + +parser.addArgument(['-z'], { + help: 'z', + nargs: '?', + metavar: ['Z1'] +}); + +helptext = parser.formatHelp(); +print(helptext); +var ustring = 'PROG [-h] [-w W1 [W2 ...]] [-x [X1 [X2 ...]]] [-y Y1 Y2 Y3] [-z [Z1]]'; +ustring = ustring.replace(/\[/g, '\\[').replace(/\]/g, '\\]'); +// print(ustring) +assert(helptext.match(new RegExp(ustring))); + +/* +class TestHelpTupleMetavar(HelpTestCase): + """Test specifying metavar as a tuple""" + +usage: PROG [-h] [-w W1 [W2 ...]] [-x [X1 [X2 ...]]] [-y Y1 Y2 Y3] [-z [Z1]] + +optional arguments: + -h, --help show this help message and exit + -w W1 [W2 ...] w + -x [X1 [X2 ...]] x + -y Y1 Y2 Y3 y + -z [Z1] z +*/ + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/index.js new file mode 100644 index 0000000..3b6eea0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/index.js @@ -0,0 +1 @@ +module.exports = require('./lib/argparse'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action.js new file mode 100644 index 0000000..6f7e9a5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action.js @@ -0,0 +1,146 @@ +/** + * class Action + * + * Base class for all actions + * Do not call in your code, use this class only for inherits your own action + * + * Information about how to convert command line strings to Javascript objects. + * Action objects are used by an ArgumentParser to represent the information + * needed to parse a single argument from one or more strings from the command + * line. The keyword arguments to the Action constructor are also all attributes + * of Action instances. + * + * #####Alowed keywords: + * + * - `store` + * - `storeConstant` + * - `storeTrue` + * - `storeFalse` + * - `append` + * - `appendConstant` + * - `count` + * - `help` + * - `version` + * + * Information about action options see [[Action.new]] + * + * See also [original guide](http://docs.python.org/dev/library/argparse.html#action) + * + **/ + +'use strict'; + + +// Constants +var $$ = require('./const'); + + +/** + * new Action(options) + * + * Base class for all actions. Used only for inherits + * + * + * ##### Options: + * + * - `optionStrings` A list of command-line option strings for the action. + * - `dest` Attribute to hold the created object(s) + * - `nargs` The number of command-line arguments that should be consumed. + * By default, one argument will be consumed and a single value will be + * produced. + * - `constant` Default value for an action with no value. + * - `defaultValue` The value to be produced if the option is not specified. + * - `type` Cast to 'string'|'int'|'float'|'complex'|function (string). If + * None, 'string'. + * - `choices` The choices available. + * - `required` True if the action must always be specified at the command + * line. + * - `help` The help describing the argument. + * - `metavar` The name to be used for the option's argument with the help + * string. If None, the 'dest' value will be used as the name. + * + * ##### nargs supported values: + * + * - `N` (an integer) consumes N arguments (and produces a list) + * - `?` consumes zero or one arguments + * - `*` consumes zero or more arguments (and produces a list) + * - `+` consumes one or more arguments (and produces a list) + * + * Note: that the difference between the default and nargs=1 is that with the + * default, a single value will be produced, while with nargs=1, a list + * containing a single value will be produced. + **/ +var Action = module.exports = function Action(options) { + options = options || {}; + this.optionStrings = options.optionStrings || []; + this.dest = options.dest; + this.nargs = options.nargs !== undefined ? options.nargs : null; + this.constant = options.constant !== undefined ? options.constant : null; + this.defaultValue = options.defaultValue; + this.type = options.type !== undefined ? options.type : null; + this.choices = options.choices !== undefined ? options.choices : null; + this.required = options.required !== undefined ? options.required: false; + this.help = options.help !== undefined ? options.help : null; + this.metavar = options.metavar !== undefined ? options.metavar : null; + + if (!(this.optionStrings instanceof Array)) { + throw new Error('optionStrings should be an array'); + } + if (this.required !== undefined && typeof(this.required) !== 'boolean') { + throw new Error('required should be a boolean'); + } +}; + +/** + * Action#getName -> String + * + * Tells action name + **/ +Action.prototype.getName = function () { + if (this.optionStrings.length > 0) { + return this.optionStrings.join('/'); + } else if (this.metavar !== null && this.metavar !== $$.SUPPRESS) { + return this.metavar; + } else if (this.dest !== undefined && this.dest !== $$.SUPPRESS) { + return this.dest; + } + return null; +}; + +/** + * Action#isOptional -> Boolean + * + * Return true if optional + **/ +Action.prototype.isOptional = function () { + return !this.isPositional(); +}; + +/** + * Action#isPositional -> Boolean + * + * Return true if positional + **/ +Action.prototype.isPositional = function () { + return (this.optionStrings.length === 0); +}; + +/** + * Action#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Should be implemented in inherited classes + * + * ##### Example + * + * ActionCount.prototype.call = function (parser, namespace, values, optionString) { + * namespace.set(this.dest, (namespace[this.dest] || 0) + 1); + * }; + * + **/ +Action.prototype.call = function () { + throw new Error('.call() not defined');// Not Implemented error +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/append.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/append.js new file mode 100644 index 0000000..48c6dbe --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/append.js @@ -0,0 +1,55 @@ +/*:nodoc:* + * class ActionAppend + * + * This action stores a list, and appends each argument value to the list. + * This is useful to allow an option to be specified multiple times. + * This class inherided from [[Action]] + * + **/ + +'use strict'; + +var util = require('util'); + +var Action = require('../action'); + +// Constants +var $$ = require('../const'); + +/*:nodoc:* + * new ActionAppend(options) + * - options (object): options hash see [[Action.new]] + * + * Note: options.nargs should be optional for constants + * and more then zero for other + **/ +var ActionAppend = module.exports = function ActionAppend(options) { + options = options || {}; + if (this.nargs <= 0) { + throw new Error('nargs for append actions must be > 0; if arg ' + + 'strings are not supplying the value to append, ' + + 'the append const action may be more appropriate'); + } + if (!!this.constant && this.nargs !== $$.OPTIONAL) { + throw new Error('nargs must be OPTIONAL to supply const'); + } + Action.call(this, options); +}; +util.inherits(ActionAppend, Action); + +/*:nodoc:* + * ActionAppend#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Save result in namespace object + **/ +ActionAppend.prototype.call = function (parser, namespace, values) { + var items = [].concat(namespace[this.dest] || []); // or _.clone + items.push(values); + namespace.set(this.dest, items); +}; + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js new file mode 100644 index 0000000..90747ab --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js @@ -0,0 +1,47 @@ +/*:nodoc:* + * class ActionAppendConstant + * + * This stores a list, and appends the value specified by + * the const keyword argument to the list. + * (Note that the const keyword argument defaults to null.) + * The 'appendConst' action is typically useful when multiple + * arguments need to store constants to the same list. + * + * This class inherited from [[Action]] + **/ + +'use strict'; + +var util = require('util'); + +var Action = require('../../action'); + +/*:nodoc:* + * new ActionAppendConstant(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionAppendConstant = module.exports = function ActionAppendConstant(options) { + options = options || {}; + options.nargs = 0; + if (options.constant === undefined) { + throw new Error('constant option is required for appendAction'); + } + Action.call(this, options); +}; +util.inherits(ActionAppendConstant, Action); + +/*:nodoc:* + * ActionAppendConstant#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Save result in namespace object + **/ +ActionAppendConstant.prototype.call = function (parser, namespace) { + var items = [].concat(namespace[this.dest] || []); + items.push(this.constant); + namespace.set(this.dest, items); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/count.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/count.js new file mode 100644 index 0000000..d6a5899 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/count.js @@ -0,0 +1,40 @@ +/*:nodoc:* + * class ActionCount + * + * This counts the number of times a keyword argument occurs. + * For example, this is useful for increasing verbosity levels + * + * This class inherided from [[Action]] + * + **/ +'use strict'; + +var util = require('util'); + +var Action = require('../action'); + +/*:nodoc:* + * new ActionCount(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionCount = module.exports = function ActionCount(options) { + options = options || {}; + options.nargs = 0; + + Action.call(this, options); +}; +util.inherits(ActionCount, Action); + +/*:nodoc:* + * ActionCount#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Save result in namespace object + **/ +ActionCount.prototype.call = function (parser, namespace) { + namespace.set(this.dest, (namespace[this.dest] || 0) + 1); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/help.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/help.js new file mode 100644 index 0000000..7f7b4e2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/help.js @@ -0,0 +1,48 @@ +/*:nodoc:* + * class ActionHelp + * + * Support action for printing help + * This class inherided from [[Action]] + **/ +'use strict'; + +var util = require('util'); + +var Action = require('../action'); + +// Constants +var $$ = require('../const'); + +/*:nodoc:* + * new ActionHelp(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionHelp = module.exports = function ActionHelp(options) { + options = options || {}; + if (options.defaultValue !== null) { + options.defaultValue = options.defaultValue; + } + else { + options.defaultValue = $$.SUPPRESS; + } + options.dest = (options.dest !== null ? options.dest: $$.SUPPRESS); + options.nargs = 0; + Action.call(this, options); + +}; +util.inherits(ActionHelp, Action); + +/*:nodoc:* + * ActionHelp#call(parser, namespace, values, optionString) + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Print help and exit + **/ +ActionHelp.prototype.call = function (parser) { + parser.printHelp(); + parser.exit(); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store.js new file mode 100644 index 0000000..8ebc974 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store.js @@ -0,0 +1,50 @@ +/*:nodoc:* + * class ActionStore + * + * This action just stores the argument’s value. This is the default action. + * + * This class inherited from [[Action]] + * + **/ +'use strict'; + +var util = require('util'); + +var Action = require('../action'); + +// Constants +var $$ = require('../const'); + + +/*:nodoc:* + * new ActionStore(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionStore = module.exports = function ActionStore(options) { + options = options || {}; + if (this.nargs <= 0) { + throw new Error('nargs for store actions must be > 0; if you ' + + 'have nothing to store, actions such as store ' + + 'true or store const may be more appropriate'); + + } + if (this.constant !== undefined && this.nargs !== $$.OPTIONAL) { + throw new Error('nargs must be OPTIONAL to supply const'); + } + Action.call(this, options); +}; +util.inherits(ActionStore, Action); + +/*:nodoc:* + * ActionStore#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Save result in namespace object + **/ +ActionStore.prototype.call = function (parser, namespace, values) { + namespace.set(this.dest, values); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js new file mode 100644 index 0000000..8410fcf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js @@ -0,0 +1,43 @@ +/*:nodoc:* + * class ActionStoreConstant + * + * This action stores the value specified by the const keyword argument. + * (Note that the const keyword argument defaults to the rather unhelpful null.) + * The 'store_const' action is most commonly used with optional + * arguments that specify some sort of flag. + * + * This class inherited from [[Action]] + **/ +'use strict'; + +var util = require('util'); + +var Action = require('../../action'); + +/*:nodoc:* + * new ActionStoreConstant(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionStoreConstant = module.exports = function ActionStoreConstant(options) { + options = options || {}; + options.nargs = 0; + if (options.constant === undefined) { + throw new Error('constant option is required for storeAction'); + } + Action.call(this, options); +}; +util.inherits(ActionStoreConstant, Action); + +/*:nodoc:* + * ActionStoreConstant#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Save result in namespace object + **/ +ActionStoreConstant.prototype.call = function (parser, namespace) { + namespace.set(this.dest, this.constant); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js new file mode 100644 index 0000000..66417bf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js @@ -0,0 +1,27 @@ +/*:nodoc:* + * class ActionStoreFalse + * + * This action store the values False respectively. + * This is special cases of 'storeConst' + * + * This class inherited from [[Action]] + **/ + +'use strict'; + +var util = require('util'); + +var ActionStoreConstant = require('./constant'); + +/*:nodoc:* + * new ActionStoreFalse(options) + * - options (object): hash of options see [[Action.new]] + * + **/ +var ActionStoreFalse = module.exports = function ActionStoreFalse(options) { + options = options || {}; + options.constant = false; + options.defaultValue = options.defaultValue !== null ? options.defaultValue: true; + ActionStoreConstant.call(this, options); +}; +util.inherits(ActionStoreFalse, ActionStoreConstant); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js new file mode 100644 index 0000000..43ec708 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js @@ -0,0 +1,26 @@ +/*:nodoc:* + * class ActionStoreTrue + * + * This action store the values True respectively. + * This isspecial cases of 'storeConst' + * + * This class inherited from [[Action]] + **/ +'use strict'; + +var util = require('util'); + +var ActionStoreConstant = require('./constant'); + +/*:nodoc:* + * new ActionStoreTrue(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionStoreTrue = module.exports = function ActionStoreTrue(options) { + options = options || {}; + options.constant = true; + options.defaultValue = options.defaultValue !== null ? options.defaultValue: false; + ActionStoreConstant.call(this, options); +}; +util.inherits(ActionStoreTrue, ActionStoreConstant); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js new file mode 100644 index 0000000..257714d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js @@ -0,0 +1,148 @@ +/** internal + * class ActionSubparsers + * + * Support the creation of such sub-commands with the addSubparsers() + * + * This class inherited from [[Action]] + **/ +'use strict'; + +var util = require('util'); +var format = require('util').format; +var _ = require('lodash'); + + +var Action = require('../action'); + +// Constants +var $$ = require('../const'); + +// Errors +var argumentErrorHelper = require('../argument/error'); + + +/*:nodoc:* + * new ChoicesPseudoAction(name, help) + * + * Create pseudo action for correct help text + * + **/ +var ChoicesPseudoAction = function (name, help) { + var options = { + optionStrings: [], + dest: name, + help: help + }; + + Action.call(this, options); +}; +util.inherits(ChoicesPseudoAction, Action); + +/** + * new ActionSubparsers(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionSubparsers = module.exports = function ActionSubparsers(options) { + options = options || {}; + options.dest = options.dest || $$.SUPPRESS; + options.nargs = $$.PARSER; + + this.debug = (options.debug === true); + + this._progPrefix = options.prog; + this._parserClass = options.parserClass; + this._nameParserMap = {}; + this._choicesActions = []; + + options.choices = this._nameParserMap; + Action.call(this, options); +}; +util.inherits(ActionSubparsers, Action); + +/*:nodoc:* + * ActionSubparsers#addParser(name, options) -> ArgumentParser + * - name (string): sub-command name + * - options (object): see [[ArgumentParser.new]] + * + * Note: + * addParser supports an additional aliases option, + * which allows multiple strings to refer to the same subparser. + * This example, like svn, aliases co as a shorthand for checkout + * + **/ +ActionSubparsers.prototype.addParser = function (name, options) { + var parser; + + var self = this; + + options = options || {}; + + options.debug = (this.debug === true); + + // set program from the existing prefix + if (!options.prog) { + options.prog = this._progPrefix + ' ' + name; + } + + var aliases = options.aliases || []; + + // create a pseudo-action to hold the choice help + if (!!options.help || _.isString(options.help)) { + var help = options.help; + delete options.help; + + var choiceAction = new ChoicesPseudoAction(name, help); + this._choicesActions.push(choiceAction); + } + + // create the parser and add it to the map + parser = new this._parserClass(options); + this._nameParserMap[name] = parser; + + // make parser available under aliases also + aliases.forEach(function (alias) { + self._nameParserMap[alias] = parser; + }); + + return parser; +}; + +ActionSubparsers.prototype._getSubactions = function () { + return this._choicesActions; +}; + +/*:nodoc:* + * ActionSubparsers#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Call the action. Parse input aguments + **/ +ActionSubparsers.prototype.call = function (parser, namespace, values) { + var parserName = values[0]; + var argStrings = values.slice(1); + + // set the parser name if requested + if (this.dest !== $$.SUPPRESS) { + namespace[this.dest] = parserName; + } + + // select the parser + if (!!this._nameParserMap[parserName]) { + parser = this._nameParserMap[parserName]; + } else { + throw argumentErrorHelper(format( + 'Unknown parser "%s" (choices: [%s]).', + parserName, + _.keys(this._nameParserMap).join(', ') + )); + } + + // parse all the remaining options into the namespace + parser.parseArgs(argStrings, namespace); +}; + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/version.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/version.js new file mode 100644 index 0000000..a17877c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action/version.js @@ -0,0 +1,50 @@ +/*:nodoc:* + * class ActionVersion + * + * Support action for printing program version + * This class inherited from [[Action]] + **/ +'use strict'; + +var util = require('util'); + +var Action = require('../action'); + +// +// Constants +// +var $$ = require('../const'); + +/*:nodoc:* + * new ActionVersion(options) + * - options (object): options hash see [[Action.new]] + * + **/ +var ActionVersion = module.exports = function ActionVersion(options) { + options = options || {}; + options.defaultValue = (!!options.defaultValue ? options.defaultValue: $$.SUPPRESS); + options.dest = (options.dest || $$.SUPPRESS); + options.nargs = 0; + this.version = options.version; + Action.call(this, options); +}; +util.inherits(ActionVersion, Action); + +/*:nodoc:* + * ActionVersion#call(parser, namespace, values, optionString) -> Void + * - parser (ArgumentParser): current parser + * - namespace (Namespace): namespace for output data + * - values (Array): parsed values + * - optionString (Array): input option string(not parsed) + * + * Print version and exit + **/ +ActionVersion.prototype.call = function (parser) { + var version = this.version || parser.version; + var formatter = parser._getFormatter(); + formatter.addText(version); + parser.exit(0, formatter.formatHelp()); +}; + + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action_container.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action_container.js new file mode 100644 index 0000000..043ead4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/action_container.js @@ -0,0 +1,479 @@ +/** internal + * class ActionContainer + * + * Action container. Parent for [[ArgumentParser]] and [[ArgumentGroup]] + **/ + +'use strict'; + +var format = require('util').format; +var _ = require('lodash'); + +// Constants +var $$ = require('./const'); + +//Actions +var ActionHelp = require('./action/help'); +var ActionAppend = require('./action/append'); +var ActionAppendConstant = require('./action/append/constant'); +var ActionCount = require('./action/count'); +var ActionStore = require('./action/store'); +var ActionStoreConstant = require('./action/store/constant'); +var ActionStoreTrue = require('./action/store/true'); +var ActionStoreFalse = require('./action/store/false'); +var ActionVersion = require('./action/version'); +var ActionSubparsers = require('./action/subparsers'); + +// Errors +var argumentErrorHelper = require('./argument/error'); + + + +/** + * new ActionContainer(options) + * + * Action container. Parent for [[ArgumentParser]] and [[ArgumentGroup]] + * + * ##### Options: + * + * - `description` -- A description of what the program does + * - `prefixChars` -- Characters that prefix optional arguments + * - `argumentDefault` -- The default value for all arguments + * - `conflictHandler` -- The conflict handler to use for duplicate arguments + **/ +var ActionContainer = module.exports = function ActionContainer(options) { + options = options || {}; + + this.description = options.description; + this.argumentDefault = options.argumentDefault; + this.prefixChars = options.prefixChars || ''; + this.conflictHandler = options.conflictHandler; + + // set up registries + this._registries = {}; + + // register actions + this.register('action', null, ActionStore); + this.register('action', 'store', ActionStore); + this.register('action', 'storeConst', ActionStoreConstant); + this.register('action', 'storeTrue', ActionStoreTrue); + this.register('action', 'storeFalse', ActionStoreFalse); + this.register('action', 'append', ActionAppend); + this.register('action', 'appendConst', ActionAppendConstant); + this.register('action', 'count', ActionCount); + this.register('action', 'help', ActionHelp); + this.register('action', 'version', ActionVersion); + this.register('action', 'parsers', ActionSubparsers); + + // raise an exception if the conflict handler is invalid + this._getHandler(); + + // action storage + this._actions = []; + this._optionStringActions = {}; + + // groups + this._actionGroups = []; + this._mutuallyExclusiveGroups = []; + + // defaults storage + this._defaults = {}; + + // determines whether an "option" looks like a negative number + // -1, -1.5 -5e+4 + this._regexpNegativeNumber = new RegExp('^[-]?[0-9]*\\.?[0-9]+([eE][-+]?[0-9]+)?$'); + + // whether or not there are any optionals that look like negative + // numbers -- uses a list so it can be shared and edited + this._hasNegativeNumberOptionals = []; +}; + +// Groups must be required, then ActionContainer already defined +var ArgumentGroup = require('./argument/group'); +var MutuallyExclusiveGroup = require('./argument/exclusive'); + +// +// Registration methods +// + +/** + * ActionContainer#register(registryName, value, object) -> Void + * - registryName (String) : object type action|type + * - value (string) : keyword + * - object (Object|Function) : handler + * + * Register handlers + **/ +ActionContainer.prototype.register = function (registryName, value, object) { + this._registries[registryName] = this._registries[registryName] || {}; + this._registries[registryName][value] = object; +}; + +ActionContainer.prototype._registryGet = function (registryName, value, defaultValue) { + if (3 > arguments.length) { + defaultValue = null; + } + return this._registries[registryName][value] || defaultValue; +}; + +// +// Namespace default accessor methods +// + +/** + * ActionContainer#setDefaults(options) -> Void + * - options (object):hash of options see [[Action.new]] + * + * Set defaults + **/ +ActionContainer.prototype.setDefaults = function (options) { + options = options || {}; + for (var property in options) { + this._defaults[property] = options[property]; + } + + // if these defaults match any existing arguments, replace the previous + // default on the object with the new one + this._actions.forEach(function (action) { + if (action.dest in options) { + action.defaultValue = options[action.dest]; + } + }); +}; + +/** + * ActionContainer#getDefault(dest) -> Mixed + * - dest (string): action destination + * + * Return action default value + **/ +ActionContainer.prototype.getDefault = function (dest) { + var result = (_.has(this._defaults, dest)) ? this._defaults[dest] : null; + + this._actions.forEach(function (action) { + if (action.dest === dest && _.has(action, 'defaultValue')) { + result = action.defaultValue; + } + }); + + return result; +}; +// +// Adding argument actions +// + +/** + * ActionContainer#addArgument(args, options) -> Object + * - args (Array): array of argument keys + * - options (Object): action objects see [[Action.new]] + * + * #### Examples + * - addArgument([-f, --foo], {action:'store', defaultValue=1, ...}) + * - addArgument(['bar'], action: 'store', nargs:1, ...}) + **/ +ActionContainer.prototype.addArgument = function (args, options) { + args = args; + options = options || {}; + + if (!_.isArray(args)) { + throw new TypeError('addArgument first argument should be an array'); + } + if (!_.isObject(options) || _.isArray(options)) { + throw new TypeError('addArgument second argument should be a hash'); + } + + // if no positional args are supplied or only one is supplied and + // it doesn't look like an option string, parse a positional argument + if (!args || args.length === 1 && this.prefixChars.indexOf(args[0][0]) < 0) { + if (args && !!options.dest) { + throw new Error('dest supplied twice for positional argument'); + } + options = this._getPositional(args, options); + + // otherwise, we're adding an optional argument + } else { + options = this._getOptional(args, options); + } + + // if no default was supplied, use the parser-level default + if (_.isUndefined(options.defaultValue)) { + var dest = options.dest; + if (_.has(this._defaults, dest)) { + options.defaultValue = this._defaults[dest]; + } else if (!_.isUndefined(this.argumentDefault)) { + options.defaultValue = this.argumentDefault; + } + } + + // create the action object, and add it to the parser + var ActionClass = this._popActionClass(options); + if (! _.isFunction(ActionClass)) { + throw new Error(format('Unknown action "%s".', ActionClass)); + } + var action = new ActionClass(options); + + // throw an error if the action type is not callable + var typeFunction = this._registryGet('type', action.type, action.type); + if (!_.isFunction(typeFunction)) { + throw new Error(format('"%s" is not callable', typeFunction)); + } + + return this._addAction(action); +}; + +/** + * ActionContainer#addArgumentGroup(options) -> ArgumentGroup + * - options (Object): hash of options see [[ArgumentGroup.new]] + * + * Create new arguments groups + **/ +ActionContainer.prototype.addArgumentGroup = function (options) { + var group = new ArgumentGroup(this, options); + this._actionGroups.push(group); + return group; +}; + +/** + * ActionContainer#addMutuallyExclusiveGroup(options) -> ArgumentGroup + * - options (Object): {required: false} + * + * Create new mutual exclusive groups + **/ +ActionContainer.prototype.addMutuallyExclusiveGroup = function (options) { + var group = new MutuallyExclusiveGroup(this, options); + this._mutuallyExclusiveGroups.push(group); + return group; +}; + +ActionContainer.prototype._addAction = function (action) { + var self = this; + + // resolve any conflicts + this._checkConflict(action); + + // add to actions list + this._actions.push(action); + action.container = this; + + // index the action by any option strings it has + action.optionStrings.forEach(function (optionString) { + self._optionStringActions[optionString] = action; + }); + + // set the flag if any option strings look like negative numbers + action.optionStrings.forEach(function (optionString) { + if (optionString.match(self._regexpNegativeNumber)) { + if (!_.any(self._hasNegativeNumberOptionals)) { + self._hasNegativeNumberOptionals.push(true); + } + } + }); + + // return the created action + return action; +}; + +ActionContainer.prototype._removeAction = function (action) { + var actionIndex = this._actions.indexOf(action); + if (actionIndex >= 0) { + this._actions.splice(actionIndex, 1); + } +}; + +ActionContainer.prototype._addContainerActions = function (container) { + // collect groups by titles + var titleGroupMap = {}; + this._actionGroups.forEach(function (group) { + if (titleGroupMap[group.title]) { + throw new Error(format('Cannot merge actions - two groups are named "%s".', group.title)); + } + titleGroupMap[group.title] = group; + }); + + // map each action to its group + var groupMap = {}; + function actionHash(action) { + // unique (hopefully?) string suitable as dictionary key + return action.getName(); + } + container._actionGroups.forEach(function (group) { + // if a group with the title exists, use that, otherwise + // create a new group matching the container's group + if (!titleGroupMap[group.title]) { + titleGroupMap[group.title] = this.addArgumentGroup({ + title: group.title, + description: group.description + }); + } + + // map the actions to their new group + group._groupActions.forEach(function (action) { + groupMap[actionHash(action)] = titleGroupMap[group.title]; + }); + }, this); + + // add container's mutually exclusive groups + // NOTE: if add_mutually_exclusive_group ever gains title= and + // description= then this code will need to be expanded as above + var mutexGroup; + container._mutuallyExclusiveGroups.forEach(function (group) { + mutexGroup = this.addMutuallyExclusiveGroup({ + required: group.required + }); + // map the actions to their new mutex group + group._groupActions.forEach(function (action) { + groupMap[actionHash(action)] = mutexGroup; + }); + }, this); // forEach takes a 'this' argument + + // add all actions to this container or their group + container._actions.forEach(function (action) { + var key = actionHash(action); + if (!!groupMap[key]) { + groupMap[key]._addAction(action); + } + else + { + this._addAction(action); + } + }); +}; + +ActionContainer.prototype._getPositional = function (dest, options) { + if (_.isArray(dest)) { + dest = _.first(dest); + } + // make sure required is not specified + if (options.required) { + throw new Error('"required" is an invalid argument for positionals.'); + } + + // mark positional arguments as required if at least one is + // always required + if (options.nargs !== $$.OPTIONAL && options.nargs !== $$.ZERO_OR_MORE) { + options.required = true; + } + if (options.nargs === $$.ZERO_OR_MORE && options.defaultValue === undefined) { + options.required = true; + } + + // return the keyword arguments with no option strings + options.dest = dest; + options.optionStrings = []; + return options; +}; + +ActionContainer.prototype._getOptional = function (args, options) { + var prefixChars = this.prefixChars; + var optionStrings = []; + var optionStringsLong = []; + + // determine short and long option strings + args.forEach(function (optionString) { + // error on strings that don't start with an appropriate prefix + if (prefixChars.indexOf(optionString[0]) < 0) { + throw new Error(format('Invalid option string "%s": must start with a "%s".', + optionString, + prefixChars + )); + } + + // strings starting with two prefix characters are long options + optionStrings.push(optionString); + if (optionString.length > 1 && prefixChars.indexOf(optionString[1]) >= 0) { + optionStringsLong.push(optionString); + } + }); + + // infer dest, '--foo-bar' -> 'foo_bar' and '-x' -> 'x' + var dest = options.dest || null; + delete options.dest; + + if (!dest) { + var optionStringDest = optionStringsLong.length ? optionStringsLong[0] :optionStrings[0]; + dest = _.trim(optionStringDest, this.prefixChars); + + if (dest.length === 0) { + throw new Error( + format('dest= is required for options like "%s"', optionStrings.join(', ')) + ); + } + dest = dest.replace(/-/g, '_'); + } + + // return the updated keyword arguments + options.dest = dest; + options.optionStrings = optionStrings; + + return options; +}; + +ActionContainer.prototype._popActionClass = function (options, defaultValue) { + defaultValue = defaultValue || null; + + var action = (options.action || defaultValue); + delete options.action; + + var actionClass = this._registryGet('action', action, action); + return actionClass; +}; + +ActionContainer.prototype._getHandler = function () { + var handlerString = this.conflictHandler; + var handlerFuncName = "_handleConflict" + _.capitalize(handlerString); + var func = this[handlerFuncName]; + if (typeof func === 'undefined') { + var msg = "invalid conflict resolution value: " + handlerString; + throw new Error(msg); + } else { + return func; + } +}; + +ActionContainer.prototype._checkConflict = function (action) { + var optionStringActions = this._optionStringActions; + var conflictOptionals = []; + + // find all options that conflict with this option + // collect pairs, the string, and an existing action that it conflicts with + action.optionStrings.forEach(function (optionString) { + var conflOptional = optionStringActions[optionString]; + if (typeof conflOptional !== 'undefined') { + conflictOptionals.push([optionString, conflOptional]); + } + }); + + if (conflictOptionals.length > 0) { + var conflictHandler = this._getHandler(); + conflictHandler.call(this, action, conflictOptionals); + } +}; + +ActionContainer.prototype._handleConflictError = function (action, conflOptionals) { + var conflicts = _.map(conflOptionals, function (pair) {return pair[0]; }); + conflicts = conflicts.join(', '); + throw argumentErrorHelper( + action, + format('Conflicting option string(s): %s', conflicts) + ); +}; + +ActionContainer.prototype._handleConflictResolve = function (action, conflOptionals) { + // remove all conflicting options + var self = this; + conflOptionals.forEach(function (pair) { + var optionString = pair[0]; + var conflictingAction = pair[1]; + // remove the conflicting option string + var i = conflictingAction.optionStrings.indexOf(optionString); + if (i >= 0) { + conflictingAction.optionStrings.splice(i, 1); + } + delete self._optionStringActions[optionString]; + // if the option now has no option string, remove it from the + // container holding it + if (conflictingAction.optionStrings.length === 0) { + conflictingAction.container._removeAction(conflictingAction); + } + }); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argparse.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argparse.js new file mode 100644 index 0000000..f2a2c51 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argparse.js @@ -0,0 +1,14 @@ +'use strict'; + +module.exports.ArgumentParser = require('./argument_parser.js'); +module.exports.Namespace = require('./namespace'); +module.exports.Action = require('./action'); +module.exports.HelpFormatter = require('./help/formatter.js'); +module.exports.Const = require('./const.js'); + +module.exports.ArgumentDefaultsHelpFormatter = + require('./help/added_formatters.js').ArgumentDefaultsHelpFormatter; +module.exports.RawDescriptionHelpFormatter = + require('./help/added_formatters.js').RawDescriptionHelpFormatter; +module.exports.RawTextHelpFormatter = + require('./help/added_formatters.js').RawTextHelpFormatter; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js new file mode 100644 index 0000000..c8a02a0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js @@ -0,0 +1,50 @@ +'use strict'; + + +var format = require('util').format; + + +var ERR_CODE = 'ARGError'; + +/*:nodoc:* + * argumentError(argument, message) -> TypeError + * - argument (Object): action with broken argument + * - message (String): error message + * + * Error format helper. An error from creating or using an argument + * (optional or positional). The string value of this exception + * is the message, augmented with information + * about the argument that caused it. + * + * #####Example + * + * var argumentErrorHelper = require('./argument/error'); + * if (conflictOptionals.length > 0) { + * throw argumentErrorHelper( + * action, + * format('Conflicting option string(s): %s', conflictOptionals.join(', ')) + * ); + * } + * + **/ +module.exports = function (argument, message) { + var argumentName = null; + var errMessage; + var err; + + if (argument.getName) { + argumentName = argument.getName(); + } else { + argumentName = '' + argument; + } + + if (!argumentName) { + errMessage = message; + } else { + errMessage = format('argument "%s": %s', argumentName, message); + } + + err = new TypeError(errMessage); + err.code = ERR_CODE; + return err; +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js new file mode 100644 index 0000000..8287e00 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js @@ -0,0 +1,54 @@ +/** internal + * class MutuallyExclusiveGroup + * + * Group arguments. + * By default, ArgumentParser groups command-line arguments + * into “positional arguments” and “optional arguments” + * when displaying help messages. When there is a better + * conceptual grouping of arguments than this default one, + * appropriate groups can be created using the addArgumentGroup() method + * + * This class inherited from [[ArgumentContainer]] + **/ +'use strict'; + +var util = require('util'); + +var ArgumentGroup = require('./group'); + +/** + * new MutuallyExclusiveGroup(container, options) + * - container (object): main container + * - options (object): options.required -> true/false + * + * `required` could be an argument itself, but making it a property of + * the options argument is more consistent with the JS adaptation of the Python) + **/ +var MutuallyExclusiveGroup = module.exports = function MutuallyExclusiveGroup(container, options) { + var required; + options = options || {}; + required = options.required || false; + ArgumentGroup.call(this, container); + this.required = required; + +}; +util.inherits(MutuallyExclusiveGroup, ArgumentGroup); + + +MutuallyExclusiveGroup.prototype._addAction = function (action) { + var msg; + if (action.required) { + msg = 'mutually exclusive arguments must be optional'; + throw new Error(msg); + } + action = this._container._addAction(action); + this._groupActions.push(action); + return action; +}; + + +MutuallyExclusiveGroup.prototype._removeAction = function (action) { + this._container._removeAction(action); + this._groupActions.remove(action); +}; + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js new file mode 100644 index 0000000..58b271f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js @@ -0,0 +1,75 @@ +/** internal + * class ArgumentGroup + * + * Group arguments. + * By default, ArgumentParser groups command-line arguments + * into “positional arguments” and “optional arguments” + * when displaying help messages. When there is a better + * conceptual grouping of arguments than this default one, + * appropriate groups can be created using the addArgumentGroup() method + * + * This class inherited from [[ArgumentContainer]] + **/ +'use strict'; + +var util = require('util'); + +var ActionContainer = require('../action_container'); + + +/** + * new ArgumentGroup(container, options) + * - container (object): main container + * - options (object): hash of group options + * + * #### options + * - **prefixChars** group name prefix + * - **argumentDefault** default argument value + * - **title** group title + * - **description** group description + * + **/ +var ArgumentGroup = module.exports = function ArgumentGroup(container, options) { + + options = options || {}; + + // add any missing keyword arguments by checking the container + options.conflictHandler = (options.conflictHandler || container.conflictHandler); + options.prefixChars = (options.prefixChars || container.prefixChars); + options.argumentDefault = (options.argumentDefault || container.argumentDefault); + + ActionContainer.call(this, options); + + // group attributes + this.title = options.title; + this._groupActions = []; + + // share most attributes with the container + this._container = container; + this._registries = container._registries; + this._actions = container._actions; + this._optionStringActions = container._optionStringActions; + this._defaults = container._defaults; + this._hasNegativeNumberOptionals = container._hasNegativeNumberOptionals; + this._mutuallyExclusiveGroups = container._mutuallyExclusiveGroups; +}; +util.inherits(ArgumentGroup, ActionContainer); + + +ArgumentGroup.prototype._addAction = function (action) { + // Parent add action + action = ActionContainer.prototype._addAction.call(this, action); + this._groupActions.push(action); + return action; +}; + + +ArgumentGroup.prototype._removeAction = function (action) { + // Parent remove action + ActionContainer.prototype._removeAction.call(this, action); + var actionIndex = this._groupActions.indexOf(action); + if (actionIndex >= 0) { + this._groupActions.splice(actionIndex, 1); + } +}; + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js new file mode 100644 index 0000000..2b4cee3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js @@ -0,0 +1,1168 @@ +/** + * class ArgumentParser + * + * Object for parsing command line strings into js objects. + * + * Inherited from [[ActionContainer]] + **/ +'use strict'; + +var util = require('util'); +var format = require('util').format; +var Path = require('path'); + +var _ = require('lodash'); +var sprintf = require('sprintf-js').sprintf; + +// Constants +var $$ = require('./const'); + +var ActionContainer = require('./action_container'); + +// Errors +var argumentErrorHelper = require('./argument/error'); + +var HelpFormatter = require('./help/formatter'); + +var Namespace = require('./namespace'); + + +/** + * new ArgumentParser(options) + * + * Create a new ArgumentParser object. + * + * ##### Options: + * - `prog` The name of the program (default: Path.basename(process.argv[1])) + * - `usage` A usage message (default: auto-generated from arguments) + * - `description` A description of what the program does + * - `epilog` Text following the argument descriptions + * - `parents` Parsers whose arguments should be copied into this one + * - `formatterClass` HelpFormatter class for printing help messages + * - `prefixChars` Characters that prefix optional arguments + * - `fromfilePrefixChars` Characters that prefix files containing additional arguments + * - `argumentDefault` The default value for all arguments + * - `addHelp` Add a -h/-help option + * - `conflictHandler` Specifies how to handle conflicting argument names + * - `debug` Enable debug mode. Argument errors throw exception in + * debug mode and process.exit in normal. Used for development and + * testing (default: false) + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#argumentparser-objects + **/ +var ArgumentParser = module.exports = function ArgumentParser(options) { + var self = this; + options = options || {}; + + options.description = (options.description || null); + options.argumentDefault = (options.argumentDefault || null); + options.prefixChars = (options.prefixChars || '-'); + options.conflictHandler = (options.conflictHandler || 'error'); + ActionContainer.call(this, options); + + options.addHelp = (options.addHelp === undefined || !!options.addHelp); + options.parents = (options.parents || []); + // default program name + options.prog = (options.prog || Path.basename(process.argv[1])); + this.prog = options.prog; + this.usage = options.usage; + this.epilog = options.epilog; + this.version = options.version; + + this.debug = (options.debug === true); + + this.formatterClass = (options.formatterClass || HelpFormatter); + this.fromfilePrefixChars = options.fromfilePrefixChars || null; + this._positionals = this.addArgumentGroup({title: 'Positional arguments'}); + this._optionals = this.addArgumentGroup({title: 'Optional arguments'}); + this._subparsers = null; + + // register types + var FUNCTION_IDENTITY = function (o) { + return o; + }; + this.register('type', 'auto', FUNCTION_IDENTITY); + this.register('type', null, FUNCTION_IDENTITY); + this.register('type', 'int', function (x) { + var result = parseInt(x, 10); + if (isNaN(result)) { + throw new Error(x + ' is not a valid integer.'); + } + return result; + }); + this.register('type', 'float', function (x) { + var result = parseFloat(x); + if (isNaN(result)) { + throw new Error(x + ' is not a valid float.'); + } + return result; + }); + this.register('type', 'string', function (x) { + return '' + x; + }); + + // add help and version arguments if necessary + var defaultPrefix = (this.prefixChars.indexOf('-') > -1) ? '-' : this.prefixChars[0]; + if (options.addHelp) { + this.addArgument( + [defaultPrefix + 'h', defaultPrefix + defaultPrefix + 'help'], + { + action: 'help', + defaultValue: $$.SUPPRESS, + help: 'Show this help message and exit.' + } + ); + } + if (this.version !== undefined) { + this.addArgument( + [defaultPrefix + 'v', defaultPrefix + defaultPrefix + 'version'], + { + action: 'version', + version: this.version, + defaultValue: $$.SUPPRESS, + help: "Show program's version number and exit." + } + ); + } + + // add parent arguments and defaults + options.parents.forEach(function (parent) { + self._addContainerActions(parent); + if (parent._defaults !== undefined) { + for (var defaultKey in parent._defaults) { + if (parent._defaults.hasOwnProperty(defaultKey)) { + self._defaults[defaultKey] = parent._defaults[defaultKey]; + } + } + } + }); + +}; +util.inherits(ArgumentParser, ActionContainer); + +/** + * ArgumentParser#addSubparsers(options) -> [[ActionSubparsers]] + * - options (object): hash of options see [[ActionSubparsers.new]] + * + * See also [subcommands][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#sub-commands + **/ +ArgumentParser.prototype.addSubparsers = function (options) { + if (!!this._subparsers) { + this.error('Cannot have multiple subparser arguments.'); + } + + options = options || {}; + options.debug = (this.debug === true); + options.optionStrings = []; + options.parserClass = (options.parserClass || ArgumentParser); + + + if (!!options.title || !!options.description) { + + this._subparsers = this.addArgumentGroup({ + title: (options.title || 'subcommands'), + description: options.description + }); + delete options.title; + delete options.description; + + } else { + this._subparsers = this._positionals; + } + + // prog defaults to the usage message of this parser, skipping + // optional arguments and with no "usage:" prefix + if (!options.prog) { + var formatter = this._getFormatter(); + var positionals = this._getPositionalActions(); + var groups = this._mutuallyExclusiveGroups; + formatter.addUsage(this.usage, positionals, groups, ''); + options.prog = _.trim(formatter.formatHelp()); + } + + // create the parsers action and add it to the positionals list + var ParsersClass = this._popActionClass(options, 'parsers'); + var action = new ParsersClass(options); + this._subparsers._addAction(action); + + // return the created parsers action + return action; +}; + +ArgumentParser.prototype._addAction = function (action) { + if (action.isOptional()) { + this._optionals._addAction(action); + } else { + this._positionals._addAction(action); + } + return action; +}; + +ArgumentParser.prototype._getOptionalActions = function () { + return this._actions.filter(function (action) { + return action.isOptional(); + }); +}; + +ArgumentParser.prototype._getPositionalActions = function () { + return this._actions.filter(function (action) { + return action.isPositional(); + }); +}; + + +/** + * ArgumentParser#parseArgs(args, namespace) -> Namespace|Object + * - args (array): input elements + * - namespace (Namespace|Object): result object + * + * Parsed args and throws error if some arguments are not recognized + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#the-parse-args-method + **/ +ArgumentParser.prototype.parseArgs = function (args, namespace) { + var argv; + var result = this.parseKnownArgs(args, namespace); + + args = result[0]; + argv = result[1]; + if (argv && argv.length > 0) { + this.error( + format('Unrecognized arguments: %s.', argv.join(' ')) + ); + } + return args; +}; + +/** + * ArgumentParser#parseKnownArgs(args, namespace) -> array + * - args (array): input options + * - namespace (Namespace|Object): result object + * + * Parse known arguments and return tuple of result object + * and unknown args + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#partial-parsing + **/ +ArgumentParser.prototype.parseKnownArgs = function (args, namespace) { + var self = this; + + // args default to the system args + args = args || process.argv.slice(2); + + // default Namespace built from parser defaults + namespace = namespace || new Namespace(); + + self._actions.forEach(function (action) { + if (action.dest !== $$.SUPPRESS) { + if (!_.has(namespace, action.dest)) { + if (action.defaultValue !== $$.SUPPRESS) { + var defaultValue = action.defaultValue; + if (_.isString(action.defaultValue)) { + defaultValue = self._getValue(action, defaultValue); + } + namespace[action.dest] = defaultValue; + } + } + } + }); + + _.keys(self._defaults).forEach(function (dest) { + namespace[dest] = self._defaults[dest]; + }); + + // parse the arguments and exit if there are any errors + try { + var res = this._parseKnownArgs(args, namespace); + + namespace = res[0]; + args = res[1]; + if (_.has(namespace, $$._UNRECOGNIZED_ARGS_ATTR)) { + args = _.union(args, namespace[$$._UNRECOGNIZED_ARGS_ATTR]); + delete namespace[$$._UNRECOGNIZED_ARGS_ATTR]; + } + return [namespace, args]; + } catch (e) { + this.error(e); + } +}; + +ArgumentParser.prototype._parseKnownArgs = function (argStrings, namespace) { + var self = this; + + var extras = []; + + // replace arg strings that are file references + if (this.fromfilePrefixChars !== null) { + argStrings = this._readArgsFromFiles(argStrings); + } + // map all mutually exclusive arguments to the other arguments + // they can't occur with + // Python has 'conflicts = action_conflicts.setdefault(mutex_action, [])' + // though I can't conceive of a way in which an action could be a member + // of two different mutually exclusive groups. + + function actionHash(action) { + // some sort of hashable key for this action + // action itself cannot be a key in actionConflicts + // I think getName() (join of optionStrings) is unique enough + return action.getName(); + } + + var conflicts, key; + var actionConflicts = {}; + + this._mutuallyExclusiveGroups.forEach(function (mutexGroup) { + mutexGroup._groupActions.forEach(function (mutexAction, i, groupActions) { + key = actionHash(mutexAction); + if (!_.has(actionConflicts, key)) { + actionConflicts[key] = []; + } + conflicts = actionConflicts[key]; + conflicts.push.apply(conflicts, groupActions.slice(0, i)); + conflicts.push.apply(conflicts, groupActions.slice(i + 1)); + }); + }); + + // find all option indices, and determine the arg_string_pattern + // which has an 'O' if there is an option at an index, + // an 'A' if there is an argument, or a '-' if there is a '--' + var optionStringIndices = {}; + + var argStringPatternParts = []; + + argStrings.forEach(function (argString, argStringIndex) { + if (argString === '--') { + argStringPatternParts.push('-'); + while (argStringIndex < argStrings.length) { + argStringPatternParts.push('A'); + argStringIndex++; + } + } + // otherwise, add the arg to the arg strings + // and note the index if it was an option + else { + var pattern; + var optionTuple = self._parseOptional(argString); + if (!optionTuple) { + pattern = 'A'; + } + else { + optionStringIndices[argStringIndex] = optionTuple; + pattern = 'O'; + } + argStringPatternParts.push(pattern); + } + }); + var argStringsPattern = argStringPatternParts.join(''); + + var seenActions = []; + var seenNonDefaultActions = []; + + + function takeAction(action, argumentStrings, optionString) { + seenActions.push(action); + var argumentValues = self._getValues(action, argumentStrings); + + // error if this argument is not allowed with other previously + // seen arguments, assuming that actions that use the default + // value don't really count as "present" + if (argumentValues !== action.defaultValue) { + seenNonDefaultActions.push(action); + if (!!actionConflicts[actionHash(action)]) { + actionConflicts[actionHash(action)].forEach(function (actionConflict) { + if (seenNonDefaultActions.indexOf(actionConflict) >= 0) { + throw argumentErrorHelper( + action, + format('Not allowed with argument "%s".', actionConflict.getName()) + ); + } + }); + } + } + + if (argumentValues !== $$.SUPPRESS) { + action.call(self, namespace, argumentValues, optionString); + } + } + + function consumeOptional(startIndex) { + // get the optional identified at this index + var optionTuple = optionStringIndices[startIndex]; + var action = optionTuple[0]; + var optionString = optionTuple[1]; + var explicitArg = optionTuple[2]; + + // identify additional optionals in the same arg string + // (e.g. -xyz is the same as -x -y -z if no args are required) + var actionTuples = []; + + var args, argCount, start, stop; + + while (true) { + if (!action) { + extras.push(argStrings[startIndex]); + return startIndex + 1; + } + if (!!explicitArg) { + argCount = self._matchArgument(action, 'A'); + + // if the action is a single-dash option and takes no + // arguments, try to parse more single-dash options out + // of the tail of the option string + var chars = self.prefixChars; + if (argCount === 0 && chars.indexOf(optionString[1]) < 0) { + actionTuples.push([action, [], optionString]); + optionString = optionString[0] + explicitArg[0]; + var newExplicitArg = explicitArg.slice(1) || null; + var optionalsMap = self._optionStringActions; + + if (_.keys(optionalsMap).indexOf(optionString) >= 0) { + action = optionalsMap[optionString]; + explicitArg = newExplicitArg; + } + else { + var msg = 'ignored explicit argument %r'; + throw argumentErrorHelper(action, msg); + } + } + // if the action expect exactly one argument, we've + // successfully matched the option; exit the loop + else if (argCount === 1) { + stop = startIndex + 1; + args = [explicitArg]; + actionTuples.push([action, args, optionString]); + break; + } + // error if a double-dash option did not use the + // explicit argument + else { + var message = 'ignored explicit argument %r'; + throw argumentErrorHelper(action, sprintf(message, explicitArg)); + } + } + // if there is no explicit argument, try to match the + // optional's string arguments with the following strings + // if successful, exit the loop + else { + + start = startIndex + 1; + var selectedPatterns = argStringsPattern.substr(start); + + argCount = self._matchArgument(action, selectedPatterns); + stop = start + argCount; + + + args = argStrings.slice(start, stop); + + actionTuples.push([action, args, optionString]); + break; + } + + } + + // add the Optional to the list and return the index at which + // the Optional's string args stopped + if (actionTuples.length < 1) { + throw new Error('length should be > 0'); + } + for (var i = 0; i < actionTuples.length; i++) { + takeAction.apply(self, actionTuples[i]); + } + return stop; + } + + // the list of Positionals left to be parsed; this is modified + // by consume_positionals() + var positionals = self._getPositionalActions(); + + function consumePositionals(startIndex) { + // match as many Positionals as possible + var selectedPattern = argStringsPattern.substr(startIndex); + var argCounts = self._matchArgumentsPartial(positionals, selectedPattern); + + // slice off the appropriate arg strings for each Positional + // and add the Positional and its args to the list + _.zip(positionals, argCounts).forEach(function (item) { + var action = item[0]; + var argCount = item[1]; + if (argCount === undefined) { + return; + } + var args = argStrings.slice(startIndex, startIndex + argCount); + + startIndex += argCount; + takeAction(action, args); + }); + + // slice off the Positionals that we just parsed and return the + // index at which the Positionals' string args stopped + positionals = positionals.slice(argCounts.length); + return startIndex; + } + + // consume Positionals and Optionals alternately, until we have + // passed the last option string + var startIndex = 0; + var position; + + var maxOptionStringIndex = -1; + + Object.keys(optionStringIndices).forEach(function (position) { + maxOptionStringIndex = Math.max(maxOptionStringIndex, parseInt(position, 10)); + }); + + var positionalsEndIndex, nextOptionStringIndex; + + while (startIndex <= maxOptionStringIndex) { + // consume any Positionals preceding the next option + nextOptionStringIndex = null; + for (position in optionStringIndices) { + if (!optionStringIndices.hasOwnProperty(position)) { continue; } + + position = parseInt(position, 10); + if (position >= startIndex) { + if (nextOptionStringIndex !== null) { + nextOptionStringIndex = Math.min(nextOptionStringIndex, position); + } + else { + nextOptionStringIndex = position; + } + } + } + + if (startIndex !== nextOptionStringIndex) { + positionalsEndIndex = consumePositionals(startIndex); + // only try to parse the next optional if we didn't consume + // the option string during the positionals parsing + if (positionalsEndIndex > startIndex) { + startIndex = positionalsEndIndex; + continue; + } + else { + startIndex = positionalsEndIndex; + } + } + + // if we consumed all the positionals we could and we're not + // at the index of an option string, there were extra arguments + if (!optionStringIndices[startIndex]) { + var strings = argStrings.slice(startIndex, nextOptionStringIndex); + extras = extras.concat(strings); + startIndex = nextOptionStringIndex; + } + // consume the next optional and any arguments for it + startIndex = consumeOptional(startIndex); + } + + // consume any positionals following the last Optional + var stopIndex = consumePositionals(startIndex); + + // if we didn't consume all the argument strings, there were extras + extras = extras.concat(argStrings.slice(stopIndex)); + + // if we didn't use all the Positional objects, there were too few + // arg strings supplied. + if (positionals.length > 0) { + self.error('too few arguments'); + } + + // make sure all required actions were present + self._actions.forEach(function (action) { + if (action.required) { + if (_.indexOf(seenActions, action) < 0) { + self.error(format('Argument "%s" is required', action.getName())); + } + } + }); + + // make sure all required groups have one option present + var actionUsed = false; + self._mutuallyExclusiveGroups.forEach(function (group) { + if (group.required) { + actionUsed = _.any(group._groupActions, function (action) { + return _.contains(seenNonDefaultActions, action); + }); + + // if no actions were used, report the error + if (!actionUsed) { + var names = []; + group._groupActions.forEach(function (action) { + if (action.help !== $$.SUPPRESS) { + names.push(action.getName()); + } + }); + names = names.join(' '); + var msg = 'one of the arguments ' + names + ' is required'; + self.error(msg); + } + } + }); + + // return the updated namespace and the extra arguments + return [namespace, extras]; +}; + +ArgumentParser.prototype._readArgsFromFiles = function (argStrings) { + // expand arguments referencing files + var _this = this; + var fs = require('fs'); + var newArgStrings = []; + argStrings.forEach(function (argString) { + if (_this.fromfilePrefixChars.indexOf(argString[0]) < 0) { + // for regular arguments, just add them back into the list + newArgStrings.push(argString); + } else { + // replace arguments referencing files with the file content + try { + var argstrs = []; + var filename = argString.slice(1); + var content = fs.readFileSync(filename, 'utf8'); + content = content.trim().split('\n'); + content.forEach(function (argLine) { + _this.convertArgLineToArgs(argLine).forEach(function (arg) { + argstrs.push(arg); + }); + argstrs = _this._readArgsFromFiles(argstrs); + }); + newArgStrings.push.apply(newArgStrings, argstrs); + } catch (error) { + return _this.error(error.message); + } + } + }); + return newArgStrings; +}; + +ArgumentParser.prototype.convertArgLineToArgs = function (argLine) { + return [argLine]; +}; + +ArgumentParser.prototype._matchArgument = function (action, regexpArgStrings) { + + // match the pattern for this action to the arg strings + var regexpNargs = new RegExp('^' + this._getNargsPattern(action)); + var matches = regexpArgStrings.match(regexpNargs); + var message; + + // throw an exception if we weren't able to find a match + if (!matches) { + switch (action.nargs) { + case undefined: + case null: + message = 'Expected one argument.'; + break; + case $$.OPTIONAL: + message = 'Expected at most one argument.'; + break; + case $$.ONE_OR_MORE: + message = 'Expected at least one argument.'; + break; + default: + message = 'Expected %s argument(s)'; + } + + throw argumentErrorHelper( + action, + format(message, action.nargs) + ); + } + // return the number of arguments matched + return matches[1].length; +}; + +ArgumentParser.prototype._matchArgumentsPartial = function (actions, regexpArgStrings) { + // progressively shorten the actions list by slicing off the + // final actions until we find a match + var self = this; + var result = []; + var actionSlice, pattern, matches; + var i, j; + + var getLength = function (string) { + return string.length; + }; + + for (i = actions.length; i > 0; i--) { + pattern = ''; + actionSlice = actions.slice(0, i); + for (j = 0; j < actionSlice.length; j++) { + pattern += self._getNargsPattern(actionSlice[j]); + } + + pattern = new RegExp('^' + pattern); + matches = regexpArgStrings.match(pattern); + + if (matches && matches.length > 0) { + // need only groups + matches = matches.splice(1); + result = result.concat(matches.map(getLength)); + break; + } + } + + // return the list of arg string counts + return result; +}; + +ArgumentParser.prototype._parseOptional = function (argString) { + var action, optionString, argExplicit, optionTuples; + + // if it's an empty string, it was meant to be a positional + if (!argString) { + return null; + } + + // if it doesn't start with a prefix, it was meant to be positional + if (this.prefixChars.indexOf(argString[0]) < 0) { + return null; + } + + // if the option string is present in the parser, return the action + if (!!this._optionStringActions[argString]) { + return [this._optionStringActions[argString], argString, null]; + } + + // if it's just a single character, it was meant to be positional + if (argString.length === 1) { + return null; + } + + // if the option string before the "=" is present, return the action + if (argString.indexOf('=') >= 0) { + var argStringSplit = argString.split('='); + optionString = argStringSplit[0]; + argExplicit = argStringSplit[1]; + + if (!!this._optionStringActions[optionString]) { + action = this._optionStringActions[optionString]; + return [action, optionString, argExplicit]; + } + } + + // search through all possible prefixes of the option string + // and all actions in the parser for possible interpretations + optionTuples = this._getOptionTuples(argString); + + // if multiple actions match, the option string was ambiguous + if (optionTuples.length > 1) { + var optionStrings = optionTuples.map(function (optionTuple) { + return optionTuple[1]; + }); + this.error(format( + 'Ambiguous option: "%s" could match %s.', + argString, optionStrings.join(', ') + )); + // if exactly one action matched, this segmentation is good, + // so return the parsed action + } else if (optionTuples.length === 1) { + return optionTuples[0]; + } + + // if it was not found as an option, but it looks like a negative + // number, it was meant to be positional + // unless there are negative-number-like options + if (argString.match(this._regexpNegativeNumber)) { + if (!_.any(this._hasNegativeNumberOptionals)) { + return null; + } + } + // if it contains a space, it was meant to be a positional + if (argString.search(' ') >= 0) { + return null; + } + + // it was meant to be an optional but there is no such option + // in this parser (though it might be a valid option in a subparser) + return [null, argString, null]; +}; + +ArgumentParser.prototype._getOptionTuples = function (optionString) { + var result = []; + var chars = this.prefixChars; + var optionPrefix; + var argExplicit; + var action; + var actionOptionString; + + // option strings starting with two prefix characters are only split at + // the '=' + if (chars.indexOf(optionString[0]) >= 0 && chars.indexOf(optionString[1]) >= 0) { + if (optionString.indexOf('=') >= 0) { + var optionStringSplit = optionString.split('=', 1); + + optionPrefix = optionStringSplit[0]; + argExplicit = optionStringSplit[1]; + } else { + optionPrefix = optionString; + argExplicit = null; + } + + for (actionOptionString in this._optionStringActions) { + if (actionOptionString.substr(0, optionPrefix.length) === optionPrefix) { + action = this._optionStringActions[actionOptionString]; + result.push([action, actionOptionString, argExplicit]); + } + } + + // single character options can be concatenated with their arguments + // but multiple character options always have to have their argument + // separate + } else if (chars.indexOf(optionString[0]) >= 0 && chars.indexOf(optionString[1]) < 0) { + optionPrefix = optionString; + argExplicit = null; + var optionPrefixShort = optionString.substr(0, 2); + var argExplicitShort = optionString.substr(2); + + for (actionOptionString in this._optionStringActions) { + action = this._optionStringActions[actionOptionString]; + if (actionOptionString === optionPrefixShort) { + result.push([action, actionOptionString, argExplicitShort]); + } else if (actionOptionString.substr(0, optionPrefix.length) === optionPrefix) { + result.push([action, actionOptionString, argExplicit]); + } + } + + // shouldn't ever get here + } else { + throw new Error(format('Unexpected option string: %s.', optionString)); + } + // return the collected option tuples + return result; +}; + +ArgumentParser.prototype._getNargsPattern = function (action) { + // in all examples below, we have to allow for '--' args + // which are represented as '-' in the pattern + var regexpNargs; + + switch (action.nargs) { + // the default (null) is assumed to be a single argument + case undefined: + case null: + regexpNargs = '(-*A-*)'; + break; + // allow zero or more arguments + case $$.OPTIONAL: + regexpNargs = '(-*A?-*)'; + break; + // allow zero or more arguments + case $$.ZERO_OR_MORE: + regexpNargs = '(-*[A-]*)'; + break; + // allow one or more arguments + case $$.ONE_OR_MORE: + regexpNargs = '(-*A[A-]*)'; + break; + // allow any number of options or arguments + case $$.REMAINDER: + regexpNargs = '([-AO]*)'; + break; + // allow one argument followed by any number of options or arguments + case $$.PARSER: + regexpNargs = '(-*A[-AO]*)'; + break; + // all others should be integers + default: + regexpNargs = '(-*' + _.repeat('-*A', action.nargs) + '-*)'; + } + + // if this is an optional action, -- is not allowed + if (action.isOptional()) { + regexpNargs = regexpNargs.replace(/-\*/g, ''); + regexpNargs = regexpNargs.replace(/-/g, ''); + } + + // return the pattern + return regexpNargs; +}; + +// +// Value conversion methods +// + +ArgumentParser.prototype._getValues = function (action, argStrings) { + var self = this; + + // for everything but PARSER args, strip out '--' + if (action.nargs !== $$.PARSER && action.nargs !== $$.REMAINDER) { + argStrings = argStrings.filter(function (arrayElement) { + return arrayElement !== '--'; + }); + } + + var value, argString; + + // optional argument produces a default when not present + if (argStrings.length === 0 && action.nargs === $$.OPTIONAL) { + + value = (action.isOptional()) ? action.constant: action.defaultValue; + + if (typeof(value) === 'string') { + value = this._getValue(action, value); + this._checkValue(action, value); + } + + // when nargs='*' on a positional, if there were no command-line + // args, use the default if it is anything other than None + } else if (argStrings.length === 0 && action.nargs === $$.ZERO_OR_MORE && + action.optionStrings.length === 0) { + + value = (action.defaultValue || argStrings); + this._checkValue(action, value); + + // single argument or optional argument produces a single value + } else if (argStrings.length === 1 && + (!action.nargs || action.nargs === $$.OPTIONAL)) { + + argString = argStrings[0]; + value = this._getValue(action, argString); + this._checkValue(action, value); + + // REMAINDER arguments convert all values, checking none + } else if (action.nargs === $$.REMAINDER) { + value = argStrings.map(function (v) { + return self._getValue(action, v); + }); + + // PARSER arguments convert all values, but check only the first + } else if (action.nargs === $$.PARSER) { + value = argStrings.map(function (v) { + return self._getValue(action, v); + }); + this._checkValue(action, value[0]); + + // all other types of nargs produce a list + } else { + value = argStrings.map(function (v) { + return self._getValue(action, v); + }); + value.forEach(function (v) { + self._checkValue(action, v); + }); + } + + // return the converted value + return value; +}; + +ArgumentParser.prototype._getValue = function (action, argString) { + var result; + + var typeFunction = this._registryGet('type', action.type, action.type); + if (!_.isFunction(typeFunction)) { + var message = format('%s is not callable', typeFunction); + throw argumentErrorHelper(action, message); + } + + // convert the value to the appropriate type + try { + result = typeFunction(argString); + + // ArgumentTypeErrors indicate errors + // If action.type is not a registered string, it is a function + // Try to deduce its name for inclusion in the error message + // Failing that, include the error message it raised. + } catch (e) { + var name = null; + if (_.isString(action.type)) { + name = action.type; + } else { + name = action.type.name || action.type.displayName || ''; + } + var msg = format('Invalid %s value: %s', name, argString); + if (name === '') {msg += '\n' + e.message; } + throw argumentErrorHelper(action, msg); + } + // return the converted value + return result; +}; + +ArgumentParser.prototype._checkValue = function (action, value) { + // converted value must be one of the choices (if specified) + var choices = action.choices; + if (!!choices) { + // choise for argument can by array or string + if ((_.isString(choices) || _.isArray(choices)) && + choices.indexOf(value) !== -1) { + return; + } + // choise for subparsers can by only hash + if (_.isObject(choices) && !_.isArray(choices) && choices[value]) { + return; + } + + if (_.isString(choices)) { + choices = choices.split('').join(', '); + } + else if (_.isArray(choices)) { + choices = choices.join(', '); + } + else { + choices = _.keys(choices).join(', '); + } + var message = format('Invalid choice: %s (choose from [%s])', value, choices); + throw argumentErrorHelper(action, message); + } +}; + +// +// Help formatting methods +// + +/** + * ArgumentParser#formatUsage -> string + * + * Return usage string + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#printing-help + **/ +ArgumentParser.prototype.formatUsage = function () { + var formatter = this._getFormatter(); + formatter.addUsage(this.usage, this._actions, this._mutuallyExclusiveGroups); + return formatter.formatHelp(); +}; + +/** + * ArgumentParser#formatHelp -> string + * + * Return help + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#printing-help + **/ +ArgumentParser.prototype.formatHelp = function () { + var formatter = this._getFormatter(); + + // usage + formatter.addUsage(this.usage, this._actions, this._mutuallyExclusiveGroups); + + // description + formatter.addText(this.description); + + // positionals, optionals and user-defined groups + this._actionGroups.forEach(function (actionGroup) { + formatter.startSection(actionGroup.title); + formatter.addText(actionGroup.description); + formatter.addArguments(actionGroup._groupActions); + formatter.endSection(); + }); + + // epilog + formatter.addText(this.epilog); + + // determine help from format above + return formatter.formatHelp(); +}; + +ArgumentParser.prototype._getFormatter = function () { + var FormatterClass = this.formatterClass; + var formatter = new FormatterClass({prog: this.prog}); + return formatter; +}; + +// +// Print functions +// + +/** + * ArgumentParser#printUsage() -> Void + * + * Print usage + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#printing-help + **/ +ArgumentParser.prototype.printUsage = function () { + this._printMessage(this.formatUsage()); +}; + +/** + * ArgumentParser#printHelp() -> Void + * + * Print help + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#printing-help + **/ +ArgumentParser.prototype.printHelp = function () { + this._printMessage(this.formatHelp()); +}; + +ArgumentParser.prototype._printMessage = function (message, stream) { + if (!stream) { + stream = process.stdout; + } + if (message) { + stream.write('' + message); + } +}; + +// +// Exit functions +// + +/** + * ArgumentParser#exit(status=0, message) -> Void + * - status (int): exit status + * - message (string): message + * + * Print message in stderr/stdout and exit program + **/ +ArgumentParser.prototype.exit = function (status, message) { + if (!!message) { + if (status === 0) { + this._printMessage(message); + } + else { + this._printMessage(message, process.stderr); + } + } + + process.exit(status); +}; + +/** + * ArgumentParser#error(message) -> Void + * - err (Error|string): message + * + * Error method Prints a usage message incorporating the message to stderr and + * exits. If you override this in a subclass, + * it should not return -- it should + * either exit or throw an exception. + * + **/ +ArgumentParser.prototype.error = function (err) { + var message; + if (err instanceof Error) { + if (this.debug === true) { + throw err; + } + message = err.message; + } + else { + message = err; + } + var msg = format('%s: error: %s', this.prog, message) + $$.EOL; + + if (this.debug === true) { + throw new Error(msg); + } + + this.printUsage(process.stderr); + + return this.exit(2, msg); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/const.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/const.js new file mode 100644 index 0000000..de831ba --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/const.js @@ -0,0 +1,18 @@ +// +// Constants +// +module.exports.EOL = '\n'; + +module.exports.SUPPRESS = '==SUPPRESS=='; + +module.exports.OPTIONAL = '?'; + +module.exports.ZERO_OR_MORE = '*'; + +module.exports.ONE_OR_MORE = '+'; + +module.exports.PARSER = 'A...'; + +module.exports.REMAINDER = '...'; + +module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js new file mode 100644 index 0000000..3c99c4a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js @@ -0,0 +1,88 @@ +'use strict'; + +var util = require('util'); +var _ = require('lodash'); + + +// Constants +var $$ = require('../const'); + +var HelpFormatter = require('./formatter.js'); + +/** + * new RawDescriptionHelpFormatter(options) + * new ArgumentParser({formatterClass: argparse.RawDescriptionHelpFormatter, ...}) + * + * Help message formatter which adds default values to argument help. + * + * Only the name of this class is considered a public API. All the methods + * provided by the class are considered an implementation detail. + **/ + +var ArgumentDefaultsHelpFormatter = function ArgumentDefaultsHelpFormatter(options) { + HelpFormatter.call(this, options); +}; + +util.inherits(ArgumentDefaultsHelpFormatter, HelpFormatter); + +ArgumentDefaultsHelpFormatter.prototype._getHelpString = function (action) { + var help = action.help; + if (action.help.indexOf('%(defaultValue)s') === -1) { + if (action.defaultValue !== $$.SUPPRESS) { + var defaulting_nargs = [$$.OPTIONAL, $$.ZERO_OR_MORE]; + if (action.isOptional() || (defaulting_nargs.indexOf(action.nargs) >= 0)) { + help += ' (default: %(defaultValue)s)'; + } + } + } + return help; +}; + +module.exports.ArgumentDefaultsHelpFormatter = ArgumentDefaultsHelpFormatter; + +/** + * new RawDescriptionHelpFormatter(options) + * new ArgumentParser({formatterClass: argparse.RawDescriptionHelpFormatter, ...}) + * + * Help message formatter which retains any formatting in descriptions. + * + * Only the name of this class is considered a public API. All the methods + * provided by the class are considered an implementation detail. + **/ + +var RawDescriptionHelpFormatter = function RawDescriptionHelpFormatter(options) { + HelpFormatter.call(this, options); +}; + +util.inherits(RawDescriptionHelpFormatter, HelpFormatter); + +RawDescriptionHelpFormatter.prototype._fillText = function (text, width, indent) { + var lines = text.split('\n'); + lines = lines.map(function (line) { + return _.trimRight(indent + line); + }); + return lines.join('\n'); +}; +module.exports.RawDescriptionHelpFormatter = RawDescriptionHelpFormatter; + +/** + * new RawTextHelpFormatter(options) + * new ArgumentParser({formatterClass: argparse.RawTextHelpFormatter, ...}) + * + * Help message formatter which retains formatting of all help text. + * + * Only the name of this class is considered a public API. All the methods + * provided by the class are considered an implementation detail. + **/ + +var RawTextHelpFormatter = function RawTextHelpFormatter(options) { + RawDescriptionHelpFormatter.call(this, options); +}; + +util.inherits(RawTextHelpFormatter, RawDescriptionHelpFormatter); + +RawTextHelpFormatter.prototype._splitLines = function (text) { + return text.split('\n'); +}; + +module.exports.RawTextHelpFormatter = RawTextHelpFormatter; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js new file mode 100644 index 0000000..e050728 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js @@ -0,0 +1,798 @@ +/** + * class HelpFormatter + * + * Formatter for generating usage messages and argument help strings. Only the + * name of this class is considered a public API. All the methods provided by + * the class are considered an implementation detail. + * + * Do not call in your code, use this class only for inherits your own forvatter + * + * ToDo add [additonal formatters][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#formatter-class + **/ +'use strict'; + +var _ = require('lodash'); +var sprintf = require('sprintf-js').sprintf; + +// Constants +var $$ = require('../const'); + + +/*:nodoc:* internal + * new Support(parent, heding) + * - parent (object): parent section + * - heading (string): header string + * + **/ +function Section(parent, heading) { + this._parent = parent; + this._heading = heading; + this._items = []; +} + +/*:nodoc:* internal + * Section#addItem(callback) -> Void + * - callback (array): tuple with function and args + * + * Add function for single element + **/ +Section.prototype.addItem = function (callback) { + this._items.push(callback); +}; + +/*:nodoc:* internal + * Section#formatHelp(formatter) -> string + * - formatter (HelpFormatter): current formatter + * + * Form help section string + * + **/ +Section.prototype.formatHelp = function (formatter) { + var itemHelp, heading; + + // format the indented section + if (!!this._parent) { + formatter._indent(); + } + + itemHelp = this._items.map(function (item) { + var obj, func, args; + + obj = formatter; + func = item[0]; + args = item[1]; + return func.apply(obj, args); + }); + itemHelp = formatter._joinParts(itemHelp); + + if (!!this._parent) { + formatter._dedent(); + } + + // return nothing if the section was empty + if (!itemHelp) { + return ''; + } + + // add the heading if the section was non-empty + heading = ''; + if (!!this._heading && this._heading !== $$.SUPPRESS) { + var currentIndent = formatter.currentIndent; + heading = _.repeat(' ', currentIndent) + this._heading + ':' + $$.EOL; + } + + // join the section-initialize newline, the heading and the help + return formatter._joinParts([$$.EOL, heading, itemHelp, $$.EOL]); +}; + +/** + * new HelpFormatter(options) + * + * #### Options: + * - `prog`: program name + * - `indentIncriment`: indent step, default value 2 + * - `maxHelpPosition`: max help position, default value = 24 + * - `width`: line width + * + **/ +var HelpFormatter = module.exports = function HelpFormatter(options) { + options = options || {}; + + this._prog = options.prog; + + this._maxHelpPosition = options.maxHelpPosition || 24; + this._width = (options.width || ((process.env.COLUMNS || 80) - 2)); + + this._currentIndent = 0; + this._indentIncriment = options.indentIncriment || 2; + this._level = 0; + this._actionMaxLength = 0; + + this._rootSection = new Section(null); + this._currentSection = this._rootSection; + + this._whitespaceMatcher = new RegExp('\\s+', 'g'); + this._longBreakMatcher = new RegExp($$.EOL + $$.EOL + $$.EOL + '+', 'g'); +}; + +HelpFormatter.prototype._indent = function () { + this._currentIndent += this._indentIncriment; + this._level += 1; +}; + +HelpFormatter.prototype._dedent = function () { + this._currentIndent -= this._indentIncriment; + this._level -= 1; + if (this._currentIndent < 0) { + throw new Error('Indent decreased below 0.'); + } +}; + +HelpFormatter.prototype._addItem = function (func, args) { + this._currentSection.addItem([func, args]); +}; + +// +// Message building methods +// + +/** + * HelpFormatter#startSection(heading) -> Void + * - heading (string): header string + * + * Start new help section + * + * See alse [code example][1] + * + * ##### Example + * + * formatter.startSection(actionGroup.title); + * formatter.addText(actionGroup.description); + * formatter.addArguments(actionGroup._groupActions); + * formatter.endSection(); + * + **/ +HelpFormatter.prototype.startSection = function (heading) { + this._indent(); + var section = new Section(this._currentSection, heading); + var func = section.formatHelp.bind(section); + this._addItem(func, [this]); + this._currentSection = section; +}; + +/** + * HelpFormatter#endSection -> Void + * + * End help section + * + * ##### Example + * + * formatter.startSection(actionGroup.title); + * formatter.addText(actionGroup.description); + * formatter.addArguments(actionGroup._groupActions); + * formatter.endSection(); + **/ +HelpFormatter.prototype.endSection = function () { + this._currentSection = this._currentSection._parent; + this._dedent(); +}; + +/** + * HelpFormatter#addText(text) -> Void + * - text (string): plain text + * + * Add plain text into current section + * + * ##### Example + * + * formatter.startSection(actionGroup.title); + * formatter.addText(actionGroup.description); + * formatter.addArguments(actionGroup._groupActions); + * formatter.endSection(); + * + **/ +HelpFormatter.prototype.addText = function (text) { + if (!!text && text !== $$.SUPPRESS) { + this._addItem(this._formatText, [text]); + } +}; + +/** + * HelpFormatter#addUsage(usage, actions, groups, prefix) -> Void + * - usage (string): usage text + * - actions (array): actions list + * - groups (array): groups list + * - prefix (string): usage prefix + * + * Add usage data into current section + * + * ##### Example + * + * formatter.addUsage(this.usage, this._actions, []); + * return formatter.formatHelp(); + * + **/ +HelpFormatter.prototype.addUsage = function (usage, actions, groups, prefix) { + if (usage !== $$.SUPPRESS) { + this._addItem(this._formatUsage, [usage, actions, groups, prefix]); + } +}; + +/** + * HelpFormatter#addArgument(action) -> Void + * - action (object): action + * + * Add argument into current section + * + * Single variant of [[HelpFormatter#addArguments]] + **/ +HelpFormatter.prototype.addArgument = function (action) { + if (action.help !== $$.SUPPRESS) { + var self = this; + + // find all invocations + var invocations = [this._formatActionInvocation(action)]; + var invocationLength = invocations[0].length; + + var actionLength; + + if (!!action._getSubactions) { + this._indent(); + action._getSubactions().forEach(function (subaction) { + + var invocationNew = self._formatActionInvocation(subaction); + invocations.push(invocationNew); + invocationLength = Math.max(invocationLength, invocationNew.length); + + }); + this._dedent(); + } + + // update the maximum item length + actionLength = invocationLength + this._currentIndent; + this._actionMaxLength = Math.max(this._actionMaxLength, actionLength); + + // add the item to the list + this._addItem(this._formatAction, [action]); + } +}; + +/** + * HelpFormatter#addArguments(actions) -> Void + * - actions (array): actions list + * + * Mass add arguments into current section + * + * ##### Example + * + * formatter.startSection(actionGroup.title); + * formatter.addText(actionGroup.description); + * formatter.addArguments(actionGroup._groupActions); + * formatter.endSection(); + * + **/ +HelpFormatter.prototype.addArguments = function (actions) { + var self = this; + actions.forEach(function (action) { + self.addArgument(action); + }); +}; + +// +// Help-formatting methods +// + +/** + * HelpFormatter#formatHelp -> string + * + * Format help + * + * ##### Example + * + * formatter.addText(this.epilog); + * return formatter.formatHelp(); + * + **/ +HelpFormatter.prototype.formatHelp = function () { + var help = this._rootSection.formatHelp(this); + if (help) { + help = help.replace(this._longBreakMatcher, $$.EOL + $$.EOL); + help = _.trim(help, $$.EOL) + $$.EOL; + } + return help; +}; + +HelpFormatter.prototype._joinParts = function (partStrings) { + return partStrings.filter(function (part) { + return (!!part && part !== $$.SUPPRESS); + }).join(''); +}; + +HelpFormatter.prototype._formatUsage = function (usage, actions, groups, prefix) { + if (!prefix && !_.isString(prefix)) { + prefix = 'usage: '; + } + + actions = actions || []; + groups = groups || []; + + + // if usage is specified, use that + if (usage) { + usage = sprintf(usage, {prog: this._prog}); + + // if no optionals or positionals are available, usage is just prog + } else if (!usage && actions.length === 0) { + usage = this._prog; + + // if optionals and positionals are available, calculate usage + } else if (!usage) { + var prog = this._prog; + var optionals = []; + var positionals = []; + var actionUsage; + var textWidth; + + // split optionals from positionals + actions.forEach(function (action) { + if (action.isOptional()) { + optionals.push(action); + } else { + positionals.push(action); + } + }); + + // build full usage string + actionUsage = this._formatActionsUsage([].concat(optionals, positionals), groups); + usage = [prog, actionUsage].join(' '); + + // wrap the usage parts if it's too long + textWidth = this._width - this._currentIndent; + if ((prefix.length + usage.length) > textWidth) { + + // break usage into wrappable parts + var regexpPart = new RegExp('\\(.*?\\)+|\\[.*?\\]+|\\S+', 'g'); + var optionalUsage = this._formatActionsUsage(optionals, groups); + var positionalUsage = this._formatActionsUsage(positionals, groups); + + + var optionalParts = optionalUsage.match(regexpPart); + var positionalParts = positionalUsage.match(regexpPart) || []; + + if (optionalParts.join(' ') !== optionalUsage) { + throw new Error('assert "optionalParts.join(\' \') === optionalUsage"'); + } + if (positionalParts.join(' ') !== positionalUsage) { + throw new Error('assert "positionalParts.join(\' \') === positionalUsage"'); + } + + // helper for wrapping lines + var _getLines = function (parts, indent, prefix) { + var lines = []; + var line = []; + + var lineLength = !!prefix ? prefix.length - 1: indent.length - 1; + + parts.forEach(function (part) { + if (lineLength + 1 + part.length > textWidth) { + lines.push(indent + line.join(' ')); + line = []; + lineLength = indent.length - 1; + } + line.push(part); + lineLength += part.length + 1; + }); + + if (line) { + lines.push(indent + line.join(' ')); + } + if (prefix) { + lines[0] = lines[0].substr(indent.length); + } + return lines; + }; + + var lines, indent, parts; + // if prog is short, follow it with optionals or positionals + if (prefix.length + prog.length <= 0.75 * textWidth) { + indent = _.repeat(' ', (prefix.length + prog.length + 1)); + if (optionalParts) { + lines = [].concat( + _getLines([prog].concat(optionalParts), indent, prefix), + _getLines(positionalParts, indent) + ); + } else if (positionalParts) { + lines = _getLines([prog].concat(positionalParts), indent, prefix); + } else { + lines = [prog]; + } + + // if prog is long, put it on its own line + } else { + indent = _.repeat(' ', prefix.length); + parts = optionalParts + positionalParts; + lines = _getLines(parts, indent); + if (lines.length > 1) { + lines = [].concat( + _getLines(optionalParts, indent), + _getLines(positionalParts, indent) + ); + } + lines = [prog] + lines; + } + // join lines into usage + usage = lines.join($$.EOL); + } + } + + // prefix with 'usage:' + return prefix + usage + $$.EOL + $$.EOL; +}; + +HelpFormatter.prototype._formatActionsUsage = function (actions, groups) { + // find group indices and identify actions in groups + var groupActions = []; + var inserts = []; + var self = this; + + groups.forEach(function (group) { + var end; + var i; + + var start = actions.indexOf(group._groupActions[0]); + if (start >= 0) { + end = start + group._groupActions.length; + + //if (actions.slice(start, end) === group._groupActions) { + if (_.isEqual(actions.slice(start, end), group._groupActions)) { + group._groupActions.forEach(function (action) { + groupActions.push(action); + }); + + if (!group.required) { + if (!!inserts[start]) { + inserts[start] += ' ['; + } + else { + inserts[start] = '['; + } + inserts[end] = ']'; + } else { + if (!!inserts[start]) { + inserts[start] += ' ('; + } + else { + inserts[start] = '('; + } + inserts[end] = ')'; + } + for (i = start + 1; i < end; i += 1) { + inserts[i] = '|'; + } + } + } + }); + + // collect all actions format strings + var parts = []; + + actions.forEach(function (action, actionIndex) { + var part; + var optionString; + var argsDefault; + var argsString; + + // suppressed arguments are marked with None + // remove | separators for suppressed arguments + if (action.help === $$.SUPPRESS) { + parts.push(null); + if (inserts[actionIndex] === '|') { + inserts.splice(actionIndex, actionIndex); + } else if (inserts[actionIndex + 1] === '|') { + inserts.splice(actionIndex + 1, actionIndex + 1); + } + + // produce all arg strings + } else if (!action.isOptional()) { + part = self._formatArgs(action, action.dest); + + // if it's in a group, strip the outer [] + if (groupActions.indexOf(action) >= 0) { + if (part[0] === '[' && part[part.length - 1] === ']') { + part = part.slice(1, -1); + } + } + // add the action string to the list + parts.push(part); + + // produce the first way to invoke the option in brackets + } else { + optionString = action.optionStrings[0]; + + // if the Optional doesn't take a value, format is: -s or --long + if (action.nargs === 0) { + part = '' + optionString; + + // if the Optional takes a value, format is: -s ARGS or --long ARGS + } else { + argsDefault = action.dest.toUpperCase(); + argsString = self._formatArgs(action, argsDefault); + part = optionString + ' ' + argsString; + } + // make it look optional if it's not required or in a group + if (!action.required && groupActions.indexOf(action) < 0) { + part = '[' + part + ']'; + } + // add the action string to the list + parts.push(part); + } + }); + + // insert things at the necessary indices + for (var i = inserts.length - 1; i >= 0; --i) { + if (inserts[i] !== null) { + parts.splice(i, 0, inserts[i]); + } + } + + // join all the action items with spaces + var text = parts.filter(function (part) { + return !!part; + }).join(' '); + + // clean up separators for mutually exclusive groups + text = text.replace(/([\[(]) /g, '$1'); // remove spaces + text = text.replace(/ ([\])])/g, '$1'); + text = text.replace(/\[ *\]/g, ''); // remove empty groups + text = text.replace(/\( *\)/g, ''); + text = text.replace(/\(([^|]*)\)/g, '$1'); // remove () from single action groups + + text = _.trim(text); + + // return the text + return text; +}; + +HelpFormatter.prototype._formatText = function (text) { + text = sprintf(text, {prog: this._prog}); + var textWidth = this._width - this._currentIndent; + var indentIncriment = _.repeat(' ', this._currentIndent); + return this._fillText(text, textWidth, indentIncriment) + $$.EOL + $$.EOL; +}; + +HelpFormatter.prototype._formatAction = function (action) { + var self = this; + + var helpText; + var helpLines; + var parts; + var indentFirst; + + // determine the required width and the entry label + var helpPosition = Math.min(this._actionMaxLength + 2, this._maxHelpPosition); + var helpWidth = this._width - helpPosition; + var actionWidth = helpPosition - this._currentIndent - 2; + var actionHeader = this._formatActionInvocation(action); + + // no help; start on same line and add a final newline + if (!action.help) { + actionHeader = _.repeat(' ', this._currentIndent) + actionHeader + $$.EOL; + + // short action name; start on the same line and pad two spaces + } else if (actionHeader.length <= actionWidth) { + actionHeader = _.repeat(' ', this._currentIndent) + + actionHeader + + ' ' + + _.repeat(' ', actionWidth - actionHeader.length); + indentFirst = 0; + + // long action name; start on the next line + } else { + actionHeader = _.repeat(' ', this._currentIndent) + actionHeader + $$.EOL; + indentFirst = helpPosition; + } + + // collect the pieces of the action help + parts = [actionHeader]; + + // if there was help for the action, add lines of help text + if (!!action.help) { + helpText = this._expandHelp(action); + helpLines = this._splitLines(helpText, helpWidth); + parts.push(_.repeat(' ', indentFirst) + helpLines[0] + $$.EOL); + helpLines.slice(1).forEach(function (line) { + parts.push(_.repeat(' ', helpPosition) + line + $$.EOL); + }); + + // or add a newline if the description doesn't end with one + } else if (actionHeader.charAt(actionHeader.length - 1) !== $$.EOL) { + parts.push($$.EOL); + } + // if there are any sub-actions, add their help as well + if (!!action._getSubactions) { + this._indent(); + action._getSubactions().forEach(function (subaction) { + parts.push(self._formatAction(subaction)); + }); + this._dedent(); + } + // return a single string + return this._joinParts(parts); +}; + +HelpFormatter.prototype._formatActionInvocation = function (action) { + if (!action.isOptional()) { + var format_func = this._metavarFormatter(action, action.dest); + var metavars = format_func(1); + return metavars[0]; + } else { + var parts = []; + var argsDefault; + var argsString; + + // if the Optional doesn't take a value, format is: -s, --long + if (action.nargs === 0) { + parts = parts.concat(action.optionStrings); + + // if the Optional takes a value, format is: -s ARGS, --long ARGS + } else { + argsDefault = action.dest.toUpperCase(); + argsString = this._formatArgs(action, argsDefault); + action.optionStrings.forEach(function (optionString) { + parts.push(optionString + ' ' + argsString); + }); + } + return parts.join(', '); + } +}; + +HelpFormatter.prototype._metavarFormatter = function (action, metavarDefault) { + var result; + + if (!!action.metavar || action.metavar === '') { + result = action.metavar; + } else if (!!action.choices) { + var choices = action.choices; + + if (_.isString(choices)) { + choices = choices.split('').join(', '); + } else if (_.isArray(choices)) { + choices = choices.join(','); + } + else + { + choices = _.keys(choices).join(','); + } + result = '{' + choices + '}'; + } else { + result = metavarDefault; + } + + return function (size) { + if (Array.isArray(result)) { + return result; + } else { + var metavars = []; + for (var i = 0; i < size; i += 1) { + metavars.push(result); + } + return metavars; + } + }; +}; + +HelpFormatter.prototype._formatArgs = function (action, metavarDefault) { + var result; + var metavars; + + var buildMetavar = this._metavarFormatter(action, metavarDefault); + + switch (action.nargs) { + case undefined: + case null: + metavars = buildMetavar(1); + result = '' + metavars[0]; + break; + case $$.OPTIONAL: + metavars = buildMetavar(1); + result = '[' + metavars[0] + ']'; + break; + case $$.ZERO_OR_MORE: + metavars = buildMetavar(2); + result = '[' + metavars[0] + ' [' + metavars[1] + ' ...]]'; + break; + case $$.ONE_OR_MORE: + metavars = buildMetavar(2); + result = '' + metavars[0] + ' [' + metavars[1] + ' ...]'; + break; + case $$.REMAINDER: + result = '...'; + break; + case $$.PARSER: + metavars = buildMetavar(1); + result = metavars[0] + ' ...'; + break; + default: + metavars = buildMetavar(action.nargs); + result = metavars.join(' '); + } + return result; +}; + +HelpFormatter.prototype._expandHelp = function (action) { + var params = { prog: this._prog }; + + Object.keys(action).forEach(function (actionProperty) { + var actionValue = action[actionProperty]; + + if (actionValue !== $$.SUPPRESS) { + params[actionProperty] = actionValue; + } + }); + + if (!!params.choices) { + if (_.isString(params.choices)) { + params.choices = params.choices.split('').join(', '); + } + else if (_.isArray(params.choices)) { + params.choices = params.choices.join(', '); + } + else { + params.choices = _.keys(params.choices).join(', '); + } + } + + return sprintf(this._getHelpString(action), params); +}; + +HelpFormatter.prototype._splitLines = function (text, width) { + var lines = []; + var delimiters = [" ", ".", ",", "!", "?"]; + var re = new RegExp('[' + delimiters.join('') + '][^' + delimiters.join('') + ']*$'); + + text = text.replace(/[\n\|\t]/g, ' '); + + text = _.trim(text); + text = text.replace(this._whitespaceMatcher, ' '); + + // Wraps the single paragraph in text (a string) so every line + // is at most width characters long. + text.split($$.EOL).forEach(function (line) { + if (width >= line.length) { + lines.push(line); + return; + } + + var wrapStart = 0; + var wrapEnd = width; + var delimiterIndex = 0; + while (wrapEnd <= line.length) { + if (wrapEnd !== line.length && delimiters.indexOf(line[wrapEnd] < -1)) { + delimiterIndex = (re.exec(line.substring(wrapStart, wrapEnd)) || {}).index; + wrapEnd = wrapStart + delimiterIndex + 1; + } + lines.push(line.substring(wrapStart, wrapEnd)); + wrapStart = wrapEnd; + wrapEnd += width; + } + if (wrapStart < line.length) { + lines.push(line.substring(wrapStart, wrapEnd)); + } + }); + + return lines; +}; + +HelpFormatter.prototype._fillText = function (text, width, indent) { + var lines = this._splitLines(text, width); + lines = lines.map(function (line) { + return indent + line; + }); + return lines.join($$.EOL); +}; + +HelpFormatter.prototype._getHelpString = function (action) { + return action.help; +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/namespace.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/namespace.js new file mode 100644 index 0000000..2f1f8f4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/lib/namespace.js @@ -0,0 +1,77 @@ +/** + * class Namespace + * + * Simple object for storing attributes. Implements equality by attribute names + * and values, and provides a simple string representation. + * + * See also [original guide][1] + * + * [1]:http://docs.python.org/dev/library/argparse.html#the-namespace-object + **/ +'use strict'; + +var _ = require('lodash'); + +/** + * new Namespace(options) + * - options(object): predefined propertis for result object + * + **/ +var Namespace = module.exports = function Namespace(options) { + _.extend(this, options); +}; + +/** + * Namespace#isset(key) -> Boolean + * - key (string|number): property name + * + * Tells whenever `namespace` contains given `key` or not. + **/ +Namespace.prototype.isset = function (key) { + return _.has(this, key); +}; + +/** + * Namespace#set(key, value) -> self + * -key (string|number|object): propery name + * -value (mixed): new property value + * + * Set the property named key with value. + * If key object then set all key properties to namespace object + **/ +Namespace.prototype.set = function (key, value) { + if (typeof (key) === 'object') { + _.extend(this, key); + } else { + this[key] = value; + } + return this; +}; + +/** + * Namespace#get(key, defaultValue) -> mixed + * - key (string|number): property name + * - defaultValue (mixed): default value + * + * Return the property key or defaulValue if not set + **/ +Namespace.prototype.get = function (key, defaultValue) { + return !this[key] ? defaultValue: this[key]; +}; + +/** + * Namespace#unset(key, defaultValue) -> mixed + * - key (string|number): property name + * - defaultValue (mixed): default value + * + * Return data[key](and delete it) or defaultValue + **/ +Namespace.prototype.unset = function (key, defaultValue) { + var value = this[key]; + if (value !== null) { + delete this[key]; + return value; + } else { + return defaultValue; + } +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/LICENSE b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/LICENSE new file mode 100644 index 0000000..9cd87e5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/LICENSE @@ -0,0 +1,22 @@ +Copyright 2012-2015 The Dojo Foundation +Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/README.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/README.md new file mode 100644 index 0000000..189265e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/README.md @@ -0,0 +1,121 @@ +# lodash v3.10.0 + +The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) modules. + +Generated using [lodash-cli](https://www.npmjs.com/package/lodash-cli): +```bash +$ lodash modularize modern exports=node -o ./ +$ lodash modern -d -o ./index.js +``` + +## Installation + +Using npm: + +```bash +$ {sudo -H} npm i -g npm +$ npm i --save lodash +``` + +In Node.js/io.js: + +```js +// load the modern build +var _ = require('lodash'); +// or a method category +var array = require('lodash/array'); +// or a method (great for smaller builds with browserify/webpack) +var chunk = require('lodash/array/chunk'); +``` + +See the [package source](https://github.com/lodash/lodash/tree/3.10.0-npm) for more details. + +**Note:**
+Don’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.
+Install [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash by default. + +## Module formats + +lodash is also available in a variety of other builds & module formats. + + * npm packages for [modern](https://www.npmjs.com/package/lodash), [compatibility](https://www.npmjs.com/package/lodash-compat), & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) builds + * AMD modules for [modern](https://github.com/lodash/lodash/tree/3.10.0-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.10.0-amd) builds + * ES modules for the [modern](https://github.com/lodash/lodash/tree/3.10.0-es) build + +## Further Reading + + * [API Documentation](https://lodash.com/docs) + * [Build Differences](https://github.com/lodash/lodash/wiki/Build-Differences) + * [Changelog](https://github.com/lodash/lodash/wiki/Changelog) + * [Roadmap](https://github.com/lodash/lodash/wiki/Roadmap) + * [More Resources](https://github.com/lodash/lodash/wiki/Resources) + +## Features + + * ~100% [code coverage](https://coveralls.io/r/lodash) + * Follows [semantic versioning](http://semver.org/) for releases + * [Lazily evaluated](http://filimanjaro.com/blog/2014/introducing-lazy-evaluation/) chaining + * [_(…)](https://lodash.com/docs#_) supports implicit chaining + * [_.ary](https://lodash.com/docs#ary) & [_.rearg](https://lodash.com/docs#rearg) to change function argument limits & order + * [_.at](https://lodash.com/docs#at) for cherry-picking collection values + * [_.attempt](https://lodash.com/docs#attempt) to execute functions which may error without a try-catch + * [_.before](https://lodash.com/docs#before) to complement [_.after](https://lodash.com/docs#after) + * [_.bindKey](https://lodash.com/docs#bindKey) for binding [*“lazy”*](http://michaux.ca/articles/lazy-function-definition-pattern) defined methods + * [_.chunk](https://lodash.com/docs#chunk) for splitting an array into chunks of a given size + * [_.clone](https://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects + * [_.cloneDeep](https://lodash.com/docs#cloneDeep) for deep cloning arrays & objects + * [_.curry](https://lodash.com/docs#curry) & [_.curryRight](https://lodash.com/docs#curryRight) for creating [curried](http://hughfdjackson.com/javascript/why-curry-helps/) functions + * [_.debounce](https://lodash.com/docs#debounce) & [_.throttle](https://lodash.com/docs#throttle) are cancelable & accept options for more control + * [_.defaultsDeep](https://lodash.com/docs#defaultsDeep) for recursively assigning default properties + * [_.fill](https://lodash.com/docs#fill) to fill arrays with values + * [_.findKey](https://lodash.com/docs#findKey) for finding keys + * [_.flow](https://lodash.com/docs#flow) to complement [_.flowRight](https://lodash.com/docs#flowRight) (a.k.a `_.compose`) + * [_.forEach](https://lodash.com/docs#forEach) supports exiting early + * [_.forIn](https://lodash.com/docs#forIn) for iterating all enumerable properties + * [_.forOwn](https://lodash.com/docs#forOwn) for iterating own properties + * [_.get](https://lodash.com/docs#get) & [_.set](https://lodash.com/docs#set) for deep property getting & setting + * [_.gt](https://lodash.com/docs#gt), [_.gte](https://lodash.com/docs#gte), [_.lt](https://lodash.com/docs#lt), & [_.lte](https://lodash.com/docs#lte) relational methods + * [_.inRange](https://lodash.com/docs#inRange) for checking whether a number is within a given range + * [_.isNative](https://lodash.com/docs#isNative) to check for native functions + * [_.isPlainObject](https://lodash.com/docs#isPlainObject) & [_.toPlainObject](https://lodash.com/docs#toPlainObject) to check for & convert to `Object` objects + * [_.isTypedArray](https://lodash.com/docs#isTypedArray) to check for typed arrays + * [_.mapKeys](https://lodash.com/docs#mapKeys) for mapping keys to an object + * [_.matches](https://lodash.com/docs#matches) supports deep object comparisons + * [_.matchesProperty](https://lodash.com/docs#matchesProperty) to complement [_.matches](https://lodash.com/docs#matches) & [_.property](https://lodash.com/docs#property) + * [_.merge](https://lodash.com/docs#merge) for a deep [_.extend](https://lodash.com/docs#extend) + * [_.method](https://lodash.com/docs#method) & [_.methodOf](https://lodash.com/docs#methodOf) to create functions that invoke methods + * [_.modArgs](https://lodash.com/docs#modArgs) for more advanced functional composition + * [_.parseInt](https://lodash.com/docs#parseInt) for consistent cross-environment behavior + * [_.pull](https://lodash.com/docs#pull), [_.pullAt](https://lodash.com/docs#pullAt), & [_.remove](https://lodash.com/docs#remove) for mutating arrays + * [_.random](https://lodash.com/docs#random) supports returning floating-point numbers + * [_.restParam](https://lodash.com/docs#restParam) & [_.spread](https://lodash.com/docs#spread) for applying rest parameters & spreading arguments to functions + * [_.runInContext](https://lodash.com/docs#runInContext) for collisionless mixins & easier mocking + * [_.slice](https://lodash.com/docs#slice) for creating subsets of array-like values + * [_.sortByAll](https://lodash.com/docs#sortByAll) & [_.sortByOrder](https://lodash.com/docs#sortByOrder) for sorting by multiple properties & orders + * [_.support](https://lodash.com/docs#support) for flagging environment features + * [_.template](https://lodash.com/docs#template) supports [*“imports”*](https://lodash.com/docs#templateSettings-imports) options & [ES template delimiters](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literal-lexical-components) + * [_.transform](https://lodash.com/docs#transform) as a powerful alternative to [_.reduce](https://lodash.com/docs#reduce) for transforming objects + * [_.unzipWith](https://lodash.com/docs#unzipWith) & [_.zipWith](https://lodash.com/docs#zipWith) to specify how grouped values should be combined + * [_.valuesIn](https://lodash.com/docs#valuesIn) for getting values of all enumerable properties + * [_.xor](https://lodash.com/docs#xor) to complement [_.difference](https://lodash.com/docs#difference), [_.intersection](https://lodash.com/docs#intersection), & [_.union](https://lodash.com/docs#union) + * [_.add](https://lodash.com/docs#add), [_.round](https://lodash.com/docs#round), [_.sum](https://lodash.com/docs#sum), & + [more](https://lodash.com/docs "_.ceil & _.floor") math methods + * [_.bind](https://lodash.com/docs#bind), [_.curry](https://lodash.com/docs#curry), [_.partial](https://lodash.com/docs#partial), & + [more](https://lodash.com/docs "_.bindKey, _.curryRight, _.partialRight") support customizable argument placeholders + * [_.capitalize](https://lodash.com/docs#capitalize), [_.trim](https://lodash.com/docs#trim), & + [more](https://lodash.com/docs "_.camelCase, _.deburr, _.endsWith, _.escapeRegExp, _.kebabCase, _.pad, _.padLeft, _.padRight, _.repeat, _.snakeCase, _.startCase, _.startsWith, _.trimLeft, _.trimRight, _.trunc, _.words") string methods + * [_.clone](https://lodash.com/docs#clone), [_.isEqual](https://lodash.com/docs#isEqual), & + [more](https://lodash.com/docs "_.assign, _.cloneDeep, _.merge") accept customizer callbacks + * [_.dropWhile](https://lodash.com/docs#dropWhile), [_.takeWhile](https://lodash.com/docs#takeWhile), & + [more](https://lodash.com/docs "_.drop, _.dropRight, _.dropRightWhile, _.take, _.takeRight, _.takeRightWhile") to complement [_.first](https://lodash.com/docs#first), [_.initial](https://lodash.com/docs#initial), [_.last](https://lodash.com/docs#last), & [_.rest](https://lodash.com/docs#rest) + * [_.findLast](https://lodash.com/docs#findLast), [_.findLastKey](https://lodash.com/docs#findLastKey), & + [more](https://lodash.com/docs "_.curryRight, _.dropRight, _.dropRightWhile, _.flowRight, _.forEachRight, _.forInRight, _.forOwnRight, _.padRight, partialRight, _.takeRight, _.trimRight, _.takeRightWhile") right-associative methods + * [_.includes](https://lodash.com/docs#includes), [_.toArray](https://lodash.com/docs#toArray), & + [more](https://lodash.com/docs "_.at, _.countBy, _.every, _.filter, _.find, _.findLast, _.findWhere, _.forEach, _.forEachRight, _.groupBy, _.indexBy, _.invoke, _.map, _.max, _.min, _.partition, _.pluck, _.reduce, _.reduceRight, _.reject, _.shuffle, _.size, _.some, _.sortBy, _.sortByAll, _.sortByOrder, _.sum, _.where") accept strings + * [_#commit](https://lodash.com/docs#prototype-commit) & [_#plant](https://lodash.com/docs#prototype-plant) for working with chain sequences + * [_#thru](https://lodash.com/docs#thru) to pass values thru a chain sequence + +## Support + +Tested in Chrome 42-43, Firefox 37-38, IE 6-11, MS Edge, Opera 28-29, Safari 5-8, ChakraNode 0.12.2, io.js 2.3.1, Node.js 0.8.28, 0.10.38, & 0.12.5, PhantomJS 1.9.8, RingoJS 0.11, & Rhino 1.7.6. +Automated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available. Special thanks to [Sauce Labs](https://saucelabs.com/) for providing automated browser testing. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array.js new file mode 100644 index 0000000..e5121fa --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array.js @@ -0,0 +1,44 @@ +module.exports = { + 'chunk': require('./array/chunk'), + 'compact': require('./array/compact'), + 'difference': require('./array/difference'), + 'drop': require('./array/drop'), + 'dropRight': require('./array/dropRight'), + 'dropRightWhile': require('./array/dropRightWhile'), + 'dropWhile': require('./array/dropWhile'), + 'fill': require('./array/fill'), + 'findIndex': require('./array/findIndex'), + 'findLastIndex': require('./array/findLastIndex'), + 'first': require('./array/first'), + 'flatten': require('./array/flatten'), + 'flattenDeep': require('./array/flattenDeep'), + 'head': require('./array/head'), + 'indexOf': require('./array/indexOf'), + 'initial': require('./array/initial'), + 'intersection': require('./array/intersection'), + 'last': require('./array/last'), + 'lastIndexOf': require('./array/lastIndexOf'), + 'object': require('./array/object'), + 'pull': require('./array/pull'), + 'pullAt': require('./array/pullAt'), + 'remove': require('./array/remove'), + 'rest': require('./array/rest'), + 'slice': require('./array/slice'), + 'sortedIndex': require('./array/sortedIndex'), + 'sortedLastIndex': require('./array/sortedLastIndex'), + 'tail': require('./array/tail'), + 'take': require('./array/take'), + 'takeRight': require('./array/takeRight'), + 'takeRightWhile': require('./array/takeRightWhile'), + 'takeWhile': require('./array/takeWhile'), + 'union': require('./array/union'), + 'uniq': require('./array/uniq'), + 'unique': require('./array/unique'), + 'unzip': require('./array/unzip'), + 'unzipWith': require('./array/unzipWith'), + 'without': require('./array/without'), + 'xor': require('./array/xor'), + 'zip': require('./array/zip'), + 'zipObject': require('./array/zipObject'), + 'zipWith': require('./array/zipWith') +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/chunk.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/chunk.js new file mode 100644 index 0000000..c8be1fb --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/chunk.js @@ -0,0 +1,46 @@ +var baseSlice = require('../internal/baseSlice'), + isIterateeCall = require('../internal/isIterateeCall'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeCeil = Math.ceil, + nativeFloor = Math.floor, + nativeMax = Math.max; + +/** + * Creates an array of elements split into groups the length of `size`. + * If `collection` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the new array containing chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ +function chunk(array, size, guard) { + if (guard ? isIterateeCall(array, size, guard) : size == null) { + size = 1; + } else { + size = nativeMax(nativeFloor(size) || 1, 1); + } + var index = 0, + length = array ? array.length : 0, + resIndex = -1, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[++resIndex] = baseSlice(array, index, (index += size)); + } + return result; +} + +module.exports = chunk; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/compact.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/compact.js new file mode 100644 index 0000000..1dc1c55 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/compact.js @@ -0,0 +1,30 @@ +/** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ +function compact(array) { + var index = -1, + length = array ? array.length : 0, + resIndex = -1, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[++resIndex] = value; + } + } + return result; +} + +module.exports = compact; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/difference.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/difference.js new file mode 100644 index 0000000..128932a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/difference.js @@ -0,0 +1,29 @@ +var baseDifference = require('../internal/baseDifference'), + baseFlatten = require('../internal/baseFlatten'), + isArrayLike = require('../internal/isArrayLike'), + isObjectLike = require('../internal/isObjectLike'), + restParam = require('../function/restParam'); + +/** + * Creates an array of unique `array` values not included in the other + * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The arrays of values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.difference([1, 2, 3], [4, 2]); + * // => [1, 3] + */ +var difference = restParam(function(array, values) { + return (isObjectLike(array) && isArrayLike(array)) + ? baseDifference(array, baseFlatten(values, false, true)) + : []; +}); + +module.exports = difference; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/drop.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/drop.js new file mode 100644 index 0000000..039a0b5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/drop.js @@ -0,0 +1,39 @@ +var baseSlice = require('../internal/baseSlice'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ +function drop(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + return baseSlice(array, n < 0 ? 0 : n); +} + +module.exports = drop; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropRight.js new file mode 100644 index 0000000..14b5eb6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropRight.js @@ -0,0 +1,40 @@ +var baseSlice = require('../internal/baseSlice'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ +function dropRight(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + n = length - (+n || 0); + return baseSlice(array, 0, n < 0 ? 0 : n); +} + +module.exports = dropRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropRightWhile.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropRightWhile.js new file mode 100644 index 0000000..be158bd --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropRightWhile.js @@ -0,0 +1,59 @@ +var baseCallback = require('../internal/baseCallback'), + baseWhile = require('../internal/baseWhile'); + +/** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * bound to `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that match the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRightWhile([1, 2, 3], function(n) { + * return n > 1; + * }); + * // => [1] + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.dropRightWhile(users, { 'user': 'pebbles', 'active': false }), 'user'); + * // => ['barney', 'fred'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.dropRightWhile(users, 'active', false), 'user'); + * // => ['barney'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.dropRightWhile(users, 'active'), 'user'); + * // => ['barney', 'fred', 'pebbles'] + */ +function dropRightWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, baseCallback(predicate, thisArg, 3), true, true) + : []; +} + +module.exports = dropRightWhile; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropWhile.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropWhile.js new file mode 100644 index 0000000..d9eabae --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/dropWhile.js @@ -0,0 +1,59 @@ +var baseCallback = require('../internal/baseCallback'), + baseWhile = require('../internal/baseWhile'); + +/** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * bound to `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropWhile([1, 2, 3], function(n) { + * return n < 3; + * }); + * // => [3] + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.dropWhile(users, { 'user': 'barney', 'active': false }), 'user'); + * // => ['fred', 'pebbles'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.dropWhile(users, 'active', false), 'user'); + * // => ['pebbles'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.dropWhile(users, 'active'), 'user'); + * // => ['barney', 'fred', 'pebbles'] + */ +function dropWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, baseCallback(predicate, thisArg, 3), true) + : []; +} + +module.exports = dropWhile; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/fill.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/fill.js new file mode 100644 index 0000000..2c8f6da --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/fill.js @@ -0,0 +1,44 @@ +var baseFill = require('../internal/baseFill'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8], '*', 1, 2); + * // => [4, '*', 8] + */ +function fill(array, value, start, end) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); +} + +module.exports = fill; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/findIndex.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/findIndex.js new file mode 100644 index 0000000..2a6b8e1 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/findIndex.js @@ -0,0 +1,53 @@ +var createFindIndex = require('../internal/createFindIndex'); + +/** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(chr) { + * return chr.user == 'barney'; + * }); + * // => 0 + * + * // using the `_.matches` callback shorthand + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // using the `_.matchesProperty` callback shorthand + * _.findIndex(users, 'active', false); + * // => 0 + * + * // using the `_.property` callback shorthand + * _.findIndex(users, 'active'); + * // => 2 + */ +var findIndex = createFindIndex(); + +module.exports = findIndex; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/findLastIndex.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/findLastIndex.js new file mode 100644 index 0000000..d6d8eca --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/findLastIndex.js @@ -0,0 +1,53 @@ +var createFindIndex = require('../internal/createFindIndex'); + +/** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(chr) { + * return chr.user == 'pebbles'; + * }); + * // => 2 + * + * // using the `_.matches` callback shorthand + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // using the `_.matchesProperty` callback shorthand + * _.findLastIndex(users, 'active', false); + * // => 2 + * + * // using the `_.property` callback shorthand + * _.findLastIndex(users, 'active'); + * // => 0 + */ +var findLastIndex = createFindIndex(true); + +module.exports = findLastIndex; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/first.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/first.js new file mode 100644 index 0000000..b3b9c79 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/first.js @@ -0,0 +1,22 @@ +/** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @alias head + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.first([1, 2, 3]); + * // => 1 + * + * _.first([]); + * // => undefined + */ +function first(array) { + return array ? array[0] : undefined; +} + +module.exports = first; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/flatten.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/flatten.js new file mode 100644 index 0000000..65bbeef --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/flatten.js @@ -0,0 +1,32 @@ +var baseFlatten = require('../internal/baseFlatten'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Flattens a nested array. If `isDeep` is `true` the array is recursively + * flattened, otherwise it is only flattened a single level. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to flatten. + * @param {boolean} [isDeep] Specify a deep flatten. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, 3, [4]]]); + * // => [1, 2, 3, [4]] + * + * // using `isDeep` + * _.flatten([1, [2, 3, [4]]], true); + * // => [1, 2, 3, 4] + */ +function flatten(array, isDeep, guard) { + var length = array ? array.length : 0; + if (guard && isIterateeCall(array, isDeep, guard)) { + isDeep = false; + } + return length ? baseFlatten(array, isDeep) : []; +} + +module.exports = flatten; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/flattenDeep.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/flattenDeep.js new file mode 100644 index 0000000..9f775fe --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/flattenDeep.js @@ -0,0 +1,21 @@ +var baseFlatten = require('../internal/baseFlatten'); + +/** + * Recursively flattens a nested array. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to recursively flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, 3, [4]]]); + * // => [1, 2, 3, 4] + */ +function flattenDeep(array) { + var length = array ? array.length : 0; + return length ? baseFlatten(array, true) : []; +} + +module.exports = flattenDeep; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/head.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/head.js new file mode 100644 index 0000000..1961b08 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/head.js @@ -0,0 +1 @@ +module.exports = require('./first'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/indexOf.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/indexOf.js new file mode 100644 index 0000000..bad3107 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/indexOf.js @@ -0,0 +1,53 @@ +var baseIndexOf = require('../internal/baseIndexOf'), + binaryIndex = require('../internal/binaryIndex'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it is used as the offset + * from the end of `array`. If `array` is sorted providing `true` for `fromIndex` + * performs a faster binary search. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @param {boolean|number} [fromIndex=0] The index to search from or `true` + * to perform a binary search on a sorted array. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // using `fromIndex` + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + * + * // performing a binary search + * _.indexOf([1, 1, 2, 2], 2, true); + * // => 2 + */ +function indexOf(array, value, fromIndex) { + var length = array ? array.length : 0; + if (!length) { + return -1; + } + if (typeof fromIndex == 'number') { + fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : fromIndex; + } else if (fromIndex) { + var index = binaryIndex(array, value); + if (index < length && + (value === value ? (value === array[index]) : (array[index] !== array[index]))) { + return index; + } + return -1; + } + return baseIndexOf(array, value, fromIndex || 0); +} + +module.exports = indexOf; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/initial.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/initial.js new file mode 100644 index 0000000..59b7a7d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/initial.js @@ -0,0 +1,20 @@ +var dropRight = require('./dropRight'); + +/** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ +function initial(array) { + return dropRight(array, 1); +} + +module.exports = initial; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/intersection.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/intersection.js new file mode 100644 index 0000000..f218432 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/intersection.js @@ -0,0 +1,58 @@ +var baseIndexOf = require('../internal/baseIndexOf'), + cacheIndexOf = require('../internal/cacheIndexOf'), + createCache = require('../internal/createCache'), + isArrayLike = require('../internal/isArrayLike'), + restParam = require('../function/restParam'); + +/** + * Creates an array of unique values that are included in all of the provided + * arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of shared values. + * @example + * _.intersection([1, 2], [4, 2], [2, 1]); + * // => [2] + */ +var intersection = restParam(function(arrays) { + var othLength = arrays.length, + othIndex = othLength, + caches = Array(length), + indexOf = baseIndexOf, + isCommon = true, + result = []; + + while (othIndex--) { + var value = arrays[othIndex] = isArrayLike(value = arrays[othIndex]) ? value : []; + caches[othIndex] = (isCommon && value.length >= 120) ? createCache(othIndex && value) : null; + } + var array = arrays[0], + index = -1, + length = array ? array.length : 0, + seen = caches[0]; + + outer: + while (++index < length) { + value = array[index]; + if ((seen ? cacheIndexOf(seen, value) : indexOf(result, value, 0)) < 0) { + var othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if ((cache ? cacheIndexOf(cache, value) : indexOf(arrays[othIndex], value, 0)) < 0) { + continue outer; + } + } + if (seen) { + seen.push(value); + } + result.push(value); + } + } + return result; +}); + +module.exports = intersection; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/last.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/last.js new file mode 100644 index 0000000..299af31 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/last.js @@ -0,0 +1,19 @@ +/** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ +function last(array) { + var length = array ? array.length : 0; + return length ? array[length - 1] : undefined; +} + +module.exports = last; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js new file mode 100644 index 0000000..02b8062 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js @@ -0,0 +1,60 @@ +var binaryIndex = require('../internal/binaryIndex'), + indexOfNaN = require('../internal/indexOfNaN'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max, + nativeMin = Math.min; + +/** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @param {boolean|number} [fromIndex=array.length-1] The index to search from + * or `true` to perform a binary search on a sorted array. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // using `fromIndex` + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + * + * // performing a binary search + * _.lastIndexOf([1, 1, 2, 2], 2, true); + * // => 3 + */ +function lastIndexOf(array, value, fromIndex) { + var length = array ? array.length : 0; + if (!length) { + return -1; + } + var index = length; + if (typeof fromIndex == 'number') { + index = (fromIndex < 0 ? nativeMax(length + fromIndex, 0) : nativeMin(fromIndex || 0, length - 1)) + 1; + } else if (fromIndex) { + index = binaryIndex(array, value, true) - 1; + var other = array[index]; + if (value === value ? (value === other) : (other !== other)) { + return index; + } + return -1; + } + if (value !== value) { + return indexOfNaN(array, index, true); + } + while (index--) { + if (array[index] === value) { + return index; + } + } + return -1; +} + +module.exports = lastIndexOf; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/object.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/object.js new file mode 100644 index 0000000..f4a3453 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/object.js @@ -0,0 +1 @@ +module.exports = require('./zipObject'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/pull.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/pull.js new file mode 100644 index 0000000..7bcbb4a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/pull.js @@ -0,0 +1,52 @@ +var baseIndexOf = require('../internal/baseIndexOf'); + +/** Used for native method references. */ +var arrayProto = Array.prototype; + +/** Native method references. */ +var splice = arrayProto.splice; + +/** + * Removes all provided values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3, 1, 2, 3]; + * + * _.pull(array, 2, 3); + * console.log(array); + * // => [1, 1] + */ +function pull() { + var args = arguments, + array = args[0]; + + if (!(array && array.length)) { + return array; + } + var index = 0, + indexOf = baseIndexOf, + length = args.length; + + while (++index < length) { + var fromIndex = 0, + value = args[index]; + + while ((fromIndex = indexOf(array, value, fromIndex)) > -1) { + splice.call(array, fromIndex, 1); + } + } + return array; +} + +module.exports = pull; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/pullAt.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/pullAt.js new file mode 100644 index 0000000..4ca2476 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/pullAt.js @@ -0,0 +1,40 @@ +var baseAt = require('../internal/baseAt'), + baseCompareAscending = require('../internal/baseCompareAscending'), + baseFlatten = require('../internal/baseFlatten'), + basePullAt = require('../internal/basePullAt'), + restParam = require('../function/restParam'); + +/** + * Removes elements from `array` corresponding to the given indexes and returns + * an array of the removed elements. Indexes may be specified as an array of + * indexes or as individual arguments. + * + * **Note:** Unlike `_.at`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove, + * specified as individual indexes or arrays of indexes. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [5, 10, 15, 20]; + * var evens = _.pullAt(array, 1, 3); + * + * console.log(array); + * // => [5, 15] + * + * console.log(evens); + * // => [10, 20] + */ +var pullAt = restParam(function(array, indexes) { + indexes = baseFlatten(indexes); + + var result = baseAt(array, indexes); + basePullAt(array, indexes.sort(baseCompareAscending)); + return result; +}); + +module.exports = pullAt; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/remove.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/remove.js new file mode 100644 index 0000000..0cf979b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/remove.js @@ -0,0 +1,64 @@ +var baseCallback = require('../internal/baseCallback'), + basePullAt = require('../internal/basePullAt'); + +/** + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is bound to + * `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * **Note:** Unlike `_.filter`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); + * + * console.log(array); + * // => [1, 3] + * + * console.log(evens); + * // => [2, 4] + */ +function remove(array, predicate, thisArg) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = baseCallback(predicate, thisArg, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; +} + +module.exports = remove; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/rest.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/rest.js new file mode 100644 index 0000000..9bfb734 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/rest.js @@ -0,0 +1,21 @@ +var drop = require('./drop'); + +/** + * Gets all but the first element of `array`. + * + * @static + * @memberOf _ + * @alias tail + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.rest([1, 2, 3]); + * // => [2, 3] + */ +function rest(array) { + return drop(array, 1); +} + +module.exports = rest; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/slice.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/slice.js new file mode 100644 index 0000000..48ef1a1 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/slice.js @@ -0,0 +1,30 @@ +var baseSlice = require('../internal/baseSlice'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of `Array#slice` to support node + * lists in IE < 9 and to ensure dense arrays are returned. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ +function slice(array, start, end) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; + } + return baseSlice(array, start, end); +} + +module.exports = slice; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/sortedIndex.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/sortedIndex.js new file mode 100644 index 0000000..51d150e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/sortedIndex.js @@ -0,0 +1,53 @@ +var createSortedIndex = require('../internal/createSortedIndex'); + +/** + * Uses a binary search to determine the lowest index at which `value` should + * be inserted into `array` in order to maintain its sort order. If an iteratee + * function is provided it is invoked for `value` and each element of `array` + * to compute their sort ranking. The iteratee is bound to `thisArg` and + * invoked with one argument; (value). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + * + * _.sortedIndex([4, 4, 5, 5], 5); + * // => 2 + * + * var dict = { 'data': { 'thirty': 30, 'forty': 40, 'fifty': 50 } }; + * + * // using an iteratee function + * _.sortedIndex(['thirty', 'fifty'], 'forty', function(word) { + * return this.data[word]; + * }, dict); + * // => 1 + * + * // using the `_.property` callback shorthand + * _.sortedIndex([{ 'x': 30 }, { 'x': 50 }], { 'x': 40 }, 'x'); + * // => 1 + */ +var sortedIndex = createSortedIndex(); + +module.exports = sortedIndex; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/sortedLastIndex.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/sortedLastIndex.js new file mode 100644 index 0000000..81a4a86 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/sortedLastIndex.js @@ -0,0 +1,25 @@ +var createSortedIndex = require('../internal/createSortedIndex'); + +/** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedLastIndex([4, 4, 5, 5], 5); + * // => 4 + */ +var sortedLastIndex = createSortedIndex(true); + +module.exports = sortedLastIndex; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/tail.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/tail.js new file mode 100644 index 0000000..c5dfe77 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/tail.js @@ -0,0 +1 @@ +module.exports = require('./rest'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/take.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/take.js new file mode 100644 index 0000000..875917a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/take.js @@ -0,0 +1,39 @@ +var baseSlice = require('../internal/baseSlice'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Creates a slice of `array` with `n` elements taken from the beginning. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.take([1, 2, 3]); + * // => [1] + * + * _.take([1, 2, 3], 2); + * // => [1, 2] + * + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.take([1, 2, 3], 0); + * // => [] + */ +function take(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + return baseSlice(array, 0, n < 0 ? 0 : n); +} + +module.exports = take; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeRight.js new file mode 100644 index 0000000..6e89c87 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeRight.js @@ -0,0 +1,40 @@ +var baseSlice = require('../internal/baseSlice'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Creates a slice of `array` with `n` elements taken from the end. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRight([1, 2, 3]); + * // => [3] + * + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] + * + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.takeRight([1, 2, 3], 0); + * // => [] + */ +function takeRight(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + n = length - (+n || 0); + return baseSlice(array, n < 0 ? 0 : n); +} + +module.exports = takeRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeRightWhile.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeRightWhile.js new file mode 100644 index 0000000..5464d13 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeRightWhile.js @@ -0,0 +1,59 @@ +var baseCallback = require('../internal/baseCallback'), + baseWhile = require('../internal/baseWhile'); + +/** + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is bound to `thisArg` + * and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRightWhile([1, 2, 3], function(n) { + * return n > 1; + * }); + * // => [2, 3] + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.takeRightWhile(users, { 'user': 'pebbles', 'active': false }), 'user'); + * // => ['pebbles'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.takeRightWhile(users, 'active', false), 'user'); + * // => ['fred', 'pebbles'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.takeRightWhile(users, 'active'), 'user'); + * // => [] + */ +function takeRightWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, baseCallback(predicate, thisArg, 3), false, true) + : []; +} + +module.exports = takeRightWhile; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeWhile.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeWhile.js new file mode 100644 index 0000000..f7e28a1 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/takeWhile.js @@ -0,0 +1,59 @@ +var baseCallback = require('../internal/baseCallback'), + baseWhile = require('../internal/baseWhile'); + +/** + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is bound to + * `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeWhile([1, 2, 3], function(n) { + * return n < 3; + * }); + * // => [1, 2] + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false}, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.takeWhile(users, { 'user': 'barney', 'active': false }), 'user'); + * // => ['barney'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.takeWhile(users, 'active', false), 'user'); + * // => ['barney', 'fred'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.takeWhile(users, 'active'), 'user'); + * // => [] + */ +function takeWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, baseCallback(predicate, thisArg, 3)) + : []; +} + +module.exports = takeWhile; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/union.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/union.js new file mode 100644 index 0000000..53cefe4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/union.js @@ -0,0 +1,24 @@ +var baseFlatten = require('../internal/baseFlatten'), + baseUniq = require('../internal/baseUniq'), + restParam = require('../function/restParam'); + +/** + * Creates an array of unique values, in order, from all of the provided arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.union([1, 2], [4, 2], [2, 1]); + * // => [1, 2, 4] + */ +var union = restParam(function(arrays) { + return baseUniq(baseFlatten(arrays, false, true)); +}); + +module.exports = union; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/uniq.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/uniq.js new file mode 100644 index 0000000..f81a2b9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/uniq.js @@ -0,0 +1,71 @@ +var baseCallback = require('../internal/baseCallback'), + baseUniq = require('../internal/baseUniq'), + isIterateeCall = require('../internal/isIterateeCall'), + sortedUniq = require('../internal/sortedUniq'); + +/** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurence of each element + * is kept. Providing `true` for `isSorted` performs a faster search algorithm + * for sorted arrays. If an iteratee function is provided it is invoked for + * each element in the array to generate the criterion by which uniqueness + * is computed. The `iteratee` is bound to `thisArg` and invoked with three + * arguments: (value, index, array). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias unique + * @category Array + * @param {Array} array The array to inspect. + * @param {boolean} [isSorted] Specify the array is sorted. + * @param {Function|Object|string} [iteratee] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new duplicate-value-free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + * + * // using `isSorted` + * _.uniq([1, 1, 2], true); + * // => [1, 2] + * + * // using an iteratee function + * _.uniq([1, 2.5, 1.5, 2], function(n) { + * return this.floor(n); + * }, Math); + * // => [1, 2.5] + * + * // using the `_.property` callback shorthand + * _.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ +function uniq(array, isSorted, iteratee, thisArg) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (isSorted != null && typeof isSorted != 'boolean') { + thisArg = iteratee; + iteratee = isIterateeCall(array, isSorted, thisArg) ? undefined : isSorted; + isSorted = false; + } + iteratee = iteratee == null ? iteratee : baseCallback(iteratee, thisArg, 3); + return (isSorted) + ? sortedUniq(array, iteratee) + : baseUniq(array, iteratee); +} + +module.exports = uniq; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unique.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unique.js new file mode 100644 index 0000000..396de1b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unique.js @@ -0,0 +1 @@ +module.exports = require('./uniq'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unzip.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unzip.js new file mode 100644 index 0000000..0a539fa --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unzip.js @@ -0,0 +1,47 @@ +var arrayFilter = require('../internal/arrayFilter'), + arrayMap = require('../internal/arrayMap'), + baseProperty = require('../internal/baseProperty'), + isArrayLike = require('../internal/isArrayLike'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['fred', 'barney'], [30, 40], [true, false]); + * // => [['fred', 30, true], ['barney', 40, false]] + * + * _.unzip(zipped); + * // => [['fred', 'barney'], [30, 40], [true, false]] + */ +function unzip(array) { + if (!(array && array.length)) { + return []; + } + var index = -1, + length = 0; + + array = arrayFilter(array, function(group) { + if (isArrayLike(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + var result = Array(length); + while (++index < length) { + result[index] = arrayMap(array, baseProperty(index)); + } + return result; +} + +module.exports = unzip; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unzipWith.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unzipWith.js new file mode 100644 index 0000000..324a2b1 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/unzipWith.js @@ -0,0 +1,41 @@ +var arrayMap = require('../internal/arrayMap'), + arrayReduce = require('../internal/arrayReduce'), + bindCallback = require('../internal/bindCallback'), + unzip = require('./unzip'); + +/** + * This method is like `_.unzip` except that it accepts an iteratee to specify + * how regrouped values should be combined. The `iteratee` is bound to `thisArg` + * and invoked with four arguments: (accumulator, value, index, group). + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee] The function to combine regrouped values. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] + * + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] + */ +function unzipWith(array, iteratee, thisArg) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + iteratee = bindCallback(iteratee, thisArg, 4); + return arrayMap(result, function(group) { + return arrayReduce(group, iteratee, undefined, true); + }); +} + +module.exports = unzipWith; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/without.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/without.js new file mode 100644 index 0000000..2ac3d11 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/without.js @@ -0,0 +1,27 @@ +var baseDifference = require('../internal/baseDifference'), + isArrayLike = require('../internal/isArrayLike'), + restParam = require('../function/restParam'); + +/** + * Creates an array excluding all provided values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to filter. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.without([1, 2, 1, 3], 1, 2); + * // => [3] + */ +var without = restParam(function(array, values) { + return isArrayLike(array) + ? baseDifference(array, values) + : []; +}); + +module.exports = without; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/xor.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/xor.js new file mode 100644 index 0000000..04ef32a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/xor.js @@ -0,0 +1,35 @@ +var arrayPush = require('../internal/arrayPush'), + baseDifference = require('../internal/baseDifference'), + baseUniq = require('../internal/baseUniq'), + isArrayLike = require('../internal/isArrayLike'); + +/** + * Creates an array of unique values that is the [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the provided arrays. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of values. + * @example + * + * _.xor([1, 2], [4, 2]); + * // => [1, 4] + */ +function xor() { + var index = -1, + length = arguments.length; + + while (++index < length) { + var array = arguments[index]; + if (isArrayLike(array)) { + var result = result + ? arrayPush(baseDifference(result, array), baseDifference(array, result)) + : array; + } + } + return result ? baseUniq(result) : []; +} + +module.exports = xor; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zip.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zip.js new file mode 100644 index 0000000..53a6f69 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zip.js @@ -0,0 +1,21 @@ +var restParam = require('../function/restParam'), + unzip = require('./unzip'); + +/** + * Creates an array of grouped elements, the first of which contains the first + * elements of the given arrays, the second of which contains the second elements + * of the given arrays, and so on. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['fred', 'barney'], [30, 40], [true, false]); + * // => [['fred', 30, true], ['barney', 40, false]] + */ +var zip = restParam(unzip); + +module.exports = zip; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zipObject.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zipObject.js new file mode 100644 index 0000000..dec7a21 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zipObject.js @@ -0,0 +1,43 @@ +var isArray = require('../lang/isArray'); + +/** + * The inverse of `_.pairs`; this method returns an object composed from arrays + * of property names and values. Provide either a single two dimensional array, + * e.g. `[[key1, value1], [key2, value2]]` or two arrays, one of property names + * and one of corresponding values. + * + * @static + * @memberOf _ + * @alias object + * @category Array + * @param {Array} props The property names. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObject([['fred', 30], ['barney', 40]]); + * // => { 'fred': 30, 'barney': 40 } + * + * _.zipObject(['fred', 'barney'], [30, 40]); + * // => { 'fred': 30, 'barney': 40 } + */ +function zipObject(props, values) { + var index = -1, + length = props ? props.length : 0, + result = {}; + + if (length && !values && !isArray(props[0])) { + values = []; + } + while (++index < length) { + var key = props[index]; + if (values) { + result[key] = values[index]; + } else if (key) { + result[key[0]] = key[1]; + } + } + return result; +} + +module.exports = zipObject; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zipWith.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zipWith.js new file mode 100644 index 0000000..ad10374 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/zipWith.js @@ -0,0 +1,36 @@ +var restParam = require('../function/restParam'), + unzipWith = require('./unzipWith'); + +/** + * This method is like `_.zip` except that it accepts an iteratee to specify + * how grouped values should be combined. The `iteratee` is bound to `thisArg` + * and invoked with four arguments: (accumulator, value, index, group). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee] The function to combine grouped values. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zipWith([1, 2], [10, 20], [100, 200], _.add); + * // => [111, 222] + */ +var zipWith = restParam(function(arrays) { + var length = arrays.length, + iteratee = length > 2 ? arrays[length - 2] : undefined, + thisArg = length > 1 ? arrays[length - 1] : undefined; + + if (length > 2 && typeof iteratee == 'function') { + length -= 2; + } else { + iteratee = (length > 1 && typeof thisArg == 'function') ? (--length, thisArg) : undefined; + thisArg = undefined; + } + arrays.length = length; + return unzipWith(arrays, iteratee, thisArg); +}); + +module.exports = zipWith; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain.js new file mode 100644 index 0000000..6439627 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain.js @@ -0,0 +1,16 @@ +module.exports = { + 'chain': require('./chain/chain'), + 'commit': require('./chain/commit'), + 'concat': require('./chain/concat'), + 'lodash': require('./chain/lodash'), + 'plant': require('./chain/plant'), + 'reverse': require('./chain/reverse'), + 'run': require('./chain/run'), + 'tap': require('./chain/tap'), + 'thru': require('./chain/thru'), + 'toJSON': require('./chain/toJSON'), + 'toString': require('./chain/toString'), + 'value': require('./chain/value'), + 'valueOf': require('./chain/valueOf'), + 'wrapperChain': require('./chain/wrapperChain') +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/chain.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/chain.js new file mode 100644 index 0000000..453ba1e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/chain.js @@ -0,0 +1,35 @@ +var lodash = require('./lodash'); + +/** + * Creates a `lodash` object that wraps `value` with explicit method + * chaining enabled. + * + * @static + * @memberOf _ + * @category Chain + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _.chain(users) + * .sortBy('age') + * .map(function(chr) { + * return chr.user + ' is ' + chr.age; + * }) + * .first() + * .value(); + * // => 'pebbles is 1' + */ +function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; +} + +module.exports = chain; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/commit.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/commit.js new file mode 100644 index 0000000..c732d1b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/commit.js @@ -0,0 +1 @@ +module.exports = require('./wrapperCommit'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/concat.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/concat.js new file mode 100644 index 0000000..90607d1 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/concat.js @@ -0,0 +1 @@ +module.exports = require('./wrapperConcat'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/lodash.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/lodash.js new file mode 100644 index 0000000..1c3467e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/lodash.js @@ -0,0 +1,125 @@ +var LazyWrapper = require('../internal/LazyWrapper'), + LodashWrapper = require('../internal/LodashWrapper'), + baseLodash = require('../internal/baseLodash'), + isArray = require('../lang/isArray'), + isObjectLike = require('../internal/isObjectLike'), + wrapperClone = require('../internal/wrapperClone'); + +/** Used for native method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Creates a `lodash` object which wraps `value` to enable implicit chaining. + * Methods that operate on and return arrays, collections, and functions can + * be chained together. Methods that retrieve a single value or may return a + * primitive value will automatically end the chain returning the unwrapped + * value. Explicit chaining may be enabled using `_.chain`. The execution of + * chained methods is lazy, that is, execution is deferred until `_#value` + * is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. Shortcut + * fusion is an optimization strategy which merge iteratee calls; this can help + * to avoid the creation of intermediate data structures and greatly reduce the + * number of iteratee executions. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`, + * `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `compact`, `drop`, `dropRight`, `dropRightWhile`, `dropWhile`, `filter`, + * `first`, `initial`, `last`, `map`, `pluck`, `reject`, `rest`, `reverse`, + * `slice`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, `toArray`, + * and `where` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `at`, `before`, `bind`, `bindAll`, `bindKey`, + * `callback`, `chain`, `chunk`, `commit`, `compact`, `concat`, `constant`, + * `countBy`, `create`, `curry`, `debounce`, `defaults`, `defaultsDeep`, + * `defer`, `delay`, `difference`, `drop`, `dropRight`, `dropRightWhile`, + * `dropWhile`, `fill`, `filter`, `flatten`, `flattenDeep`, `flow`, `flowRight`, + * `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`, `forOwnRight`, + * `functions`, `groupBy`, `indexBy`, `initial`, `intersection`, `invert`, + * `invoke`, `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, + * `matchesProperty`, `memoize`, `merge`, `method`, `methodOf`, `mixin`, + * `modArgs`, `negate`, `omit`, `once`, `pairs`, `partial`, `partialRight`, + * `partition`, `pick`, `plant`, `pluck`, `property`, `propertyOf`, `pull`, + * `pullAt`, `push`, `range`, `rearg`, `reject`, `remove`, `rest`, `restParam`, + * `reverse`, `set`, `shuffle`, `slice`, `sort`, `sortBy`, `sortByAll`, + * `sortByOrder`, `splice`, `spread`, `take`, `takeRight`, `takeRightWhile`, + * `takeWhile`, `tap`, `throttle`, `thru`, `times`, `toArray`, `toPlainObject`, + * `transform`, `union`, `uniq`, `unshift`, `unzip`, `unzipWith`, `values`, + * `valuesIn`, `where`, `without`, `wrap`, `xor`, `zip`, `zipObject`, `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clone`, `cloneDeep`, + * `deburr`, `endsWith`, `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, + * `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `findWhere`, `first`, + * `floor`, `get`, `gt`, `gte`, `has`, `identity`, `includes`, `indexOf`, + * `inRange`, `isArguments`, `isArray`, `isBoolean`, `isDate`, `isElement`, + * `isEmpty`, `isEqual`, `isError`, `isFinite` `isFunction`, `isMatch`, + * `isNative`, `isNaN`, `isNull`, `isNumber`, `isObject`, `isPlainObject`, + * `isRegExp`, `isString`, `isUndefined`, `isTypedArray`, `join`, `kebabCase`, + * `last`, `lastIndexOf`, `lt`, `lte`, `max`, `min`, `noConflict`, `noop`, + * `now`, `pad`, `padLeft`, `padRight`, `parseInt`, `pop`, `random`, `reduce`, + * `reduceRight`, `repeat`, `result`, `round`, `runInContext`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedLastIndex`, `startCase`, + * `startsWith`, `sum`, `template`, `trim`, `trimLeft`, `trimRight`, `trunc`, + * `unescape`, `uniqueId`, `value`, and `words` + * + * The wrapper method `sample` will return a wrapped value when `n` is provided, + * otherwise an unwrapped value is returned. + * + * @name _ + * @constructor + * @category Chain + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var wrapped = _([1, 2, 3]); + * + * // returns an unwrapped value + * wrapped.reduce(function(total, n) { + * return total + n; + * }); + * // => 6 + * + * // returns a wrapped value + * var squares = wrapped.map(function(n) { + * return n * n; + * }); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ +function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__chain__') && hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } + } + return new LodashWrapper(value); +} + +// Ensure wrappers are instances of `baseLodash`. +lodash.prototype = baseLodash.prototype; + +module.exports = lodash; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/plant.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/plant.js new file mode 100644 index 0000000..04099f2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/plant.js @@ -0,0 +1 @@ +module.exports = require('./wrapperPlant'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/reverse.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/reverse.js new file mode 100644 index 0000000..f72a64a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/reverse.js @@ -0,0 +1 @@ +module.exports = require('./wrapperReverse'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/run.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/run.js new file mode 100644 index 0000000..5e751a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/run.js @@ -0,0 +1 @@ +module.exports = require('./wrapperValue'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/tap.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/tap.js new file mode 100644 index 0000000..3d0257e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/tap.js @@ -0,0 +1,29 @@ +/** + * This method invokes `interceptor` and returns `value`. The interceptor is + * bound to `thisArg` and invoked with one argument; (value). The purpose of + * this method is to "tap into" a method chain in order to perform operations + * on intermediate results within the chain. + * + * @static + * @memberOf _ + * @category Chain + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @param {*} [thisArg] The `this` binding of `interceptor`. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ +function tap(value, interceptor, thisArg) { + interceptor.call(thisArg, value); + return value; +} + +module.exports = tap; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js new file mode 100644 index 0000000..a715780 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/thru.js @@ -0,0 +1,26 @@ +/** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * + * @static + * @memberOf _ + * @category Chain + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @param {*} [thisArg] The `this` binding of `interceptor`. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ +function thru(value, interceptor, thisArg) { + return interceptor.call(thisArg, value); +} + +module.exports = thru; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/toJSON.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/toJSON.js new file mode 100644 index 0000000..5e751a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/toJSON.js @@ -0,0 +1 @@ +module.exports = require('./wrapperValue'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/toString.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/toString.js new file mode 100644 index 0000000..c7bcbf9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/toString.js @@ -0,0 +1 @@ +module.exports = require('./wrapperToString'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/value.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/value.js new file mode 100644 index 0000000..5e751a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/value.js @@ -0,0 +1 @@ +module.exports = require('./wrapperValue'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/valueOf.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/valueOf.js new file mode 100644 index 0000000..5e751a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/valueOf.js @@ -0,0 +1 @@ +module.exports = require('./wrapperValue'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperChain.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperChain.js new file mode 100644 index 0000000..3823481 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperChain.js @@ -0,0 +1,32 @@ +var chain = require('./chain'); + +/** + * Enables explicit method chaining on the wrapper object. + * + * @name chain + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // without explicit chaining + * _(users).first(); + * // => { 'user': 'barney', 'age': 36 } + * + * // with explicit chaining + * _(users).chain() + * .first() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ +function wrapperChain() { + return chain(this); +} + +module.exports = wrapperChain; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperCommit.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperCommit.js new file mode 100644 index 0000000..c3d2898 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperCommit.js @@ -0,0 +1,32 @@ +var LodashWrapper = require('../internal/LodashWrapper'); + +/** + * Executes the chained sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ +function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); +} + +module.exports = wrapperCommit; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperConcat.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperConcat.js new file mode 100644 index 0000000..799156c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperConcat.js @@ -0,0 +1,34 @@ +var arrayConcat = require('../internal/arrayConcat'), + baseFlatten = require('../internal/baseFlatten'), + isArray = require('../lang/isArray'), + restParam = require('../function/restParam'), + toObject = require('../internal/toObject'); + +/** + * Creates a new array joining a wrapped array with any additional arrays + * and/or values. + * + * @name concat + * @memberOf _ + * @category Chain + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var wrapped = _(array).concat(2, [3], [[4]]); + * + * console.log(wrapped.value()); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ +var wrapperConcat = restParam(function(values) { + values = baseFlatten(values); + return this.thru(function(array) { + return arrayConcat(isArray(array) ? array : [toObject(array)], values); + }); +}); + +module.exports = wrapperConcat; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperPlant.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperPlant.js new file mode 100644 index 0000000..234fe41 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperPlant.js @@ -0,0 +1,45 @@ +var baseLodash = require('../internal/baseLodash'), + wrapperClone = require('../internal/wrapperClone'); + +/** + * Creates a clone of the chained sequence planting `value` as the wrapped value. + * + * @name plant + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).map(function(value) { + * return Math.pow(value, 2); + * }); + * + * var other = [3, 4]; + * var otherWrapped = wrapped.plant(other); + * + * otherWrapped.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] + */ +function wrapperPlant(value) { + var result, + parent = this; + + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; + return result; +} + +module.exports = wrapperPlant; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperReverse.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperReverse.js new file mode 100644 index 0000000..f2b3d19 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperReverse.js @@ -0,0 +1,43 @@ +var LazyWrapper = require('../internal/LazyWrapper'), + LodashWrapper = require('../internal/LodashWrapper'), + thru = require('./thru'); + +/** + * Reverses the wrapped array so the first element becomes the last, the + * second element becomes the second to last, and so on. + * + * **Note:** This method mutates the wrapped array. + * + * @name reverse + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new reversed `lodash` wrapper instance. + * @example + * + * var array = [1, 2, 3]; + * + * _(array).reverse().value() + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ +function wrapperReverse() { + var value = this.__wrapped__; + + var interceptor = function(value) { + return (wrapped && wrapped.__dir__ < 0) ? value : value.reverse(); + }; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(interceptor); +} + +module.exports = wrapperReverse; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperToString.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperToString.js new file mode 100644 index 0000000..db975a5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperToString.js @@ -0,0 +1,17 @@ +/** + * Produces the result of coercing the unwrapped value to a string. + * + * @name toString + * @memberOf _ + * @category Chain + * @returns {string} Returns the coerced string value. + * @example + * + * _([1, 2, 3]).toString(); + * // => '1,2,3' + */ +function wrapperToString() { + return (this.value() + ''); +} + +module.exports = wrapperToString; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperValue.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperValue.js new file mode 100644 index 0000000..2734e41 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperValue.js @@ -0,0 +1,20 @@ +var baseWrapperValue = require('../internal/baseWrapperValue'); + +/** + * Executes the chained sequence to extract the unwrapped value. + * + * @name value + * @memberOf _ + * @alias run, toJSON, valueOf + * @category Chain + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ +function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); +} + +module.exports = wrapperValue; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection.js new file mode 100644 index 0000000..0338857 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection.js @@ -0,0 +1,44 @@ +module.exports = { + 'all': require('./collection/all'), + 'any': require('./collection/any'), + 'at': require('./collection/at'), + 'collect': require('./collection/collect'), + 'contains': require('./collection/contains'), + 'countBy': require('./collection/countBy'), + 'detect': require('./collection/detect'), + 'each': require('./collection/each'), + 'eachRight': require('./collection/eachRight'), + 'every': require('./collection/every'), + 'filter': require('./collection/filter'), + 'find': require('./collection/find'), + 'findLast': require('./collection/findLast'), + 'findWhere': require('./collection/findWhere'), + 'foldl': require('./collection/foldl'), + 'foldr': require('./collection/foldr'), + 'forEach': require('./collection/forEach'), + 'forEachRight': require('./collection/forEachRight'), + 'groupBy': require('./collection/groupBy'), + 'include': require('./collection/include'), + 'includes': require('./collection/includes'), + 'indexBy': require('./collection/indexBy'), + 'inject': require('./collection/inject'), + 'invoke': require('./collection/invoke'), + 'map': require('./collection/map'), + 'max': require('./math/max'), + 'min': require('./math/min'), + 'partition': require('./collection/partition'), + 'pluck': require('./collection/pluck'), + 'reduce': require('./collection/reduce'), + 'reduceRight': require('./collection/reduceRight'), + 'reject': require('./collection/reject'), + 'sample': require('./collection/sample'), + 'select': require('./collection/select'), + 'shuffle': require('./collection/shuffle'), + 'size': require('./collection/size'), + 'some': require('./collection/some'), + 'sortBy': require('./collection/sortBy'), + 'sortByAll': require('./collection/sortByAll'), + 'sortByOrder': require('./collection/sortByOrder'), + 'sum': require('./math/sum'), + 'where': require('./collection/where') +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/all.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/all.js new file mode 100644 index 0000000..d0839f7 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/all.js @@ -0,0 +1 @@ +module.exports = require('./every'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/any.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/any.js new file mode 100644 index 0000000..900ac25 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/any.js @@ -0,0 +1 @@ +module.exports = require('./some'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/at.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/at.js new file mode 100644 index 0000000..29236e5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/at.js @@ -0,0 +1,29 @@ +var baseAt = require('../internal/baseAt'), + baseFlatten = require('../internal/baseFlatten'), + restParam = require('../function/restParam'); + +/** + * Creates an array of elements corresponding to the given keys, or indexes, + * of `collection`. Keys may be specified as individual arguments or as arrays + * of keys. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {...(number|number[]|string|string[])} [props] The property names + * or indexes of elements to pick, specified individually or in arrays. + * @returns {Array} Returns the new array of picked elements. + * @example + * + * _.at(['a', 'b', 'c'], [0, 2]); + * // => ['a', 'c'] + * + * _.at(['barney', 'fred', 'pebbles'], 0, 2); + * // => ['barney', 'pebbles'] + */ +var at = restParam(function(collection, props) { + return baseAt(collection, baseFlatten(props)); +}); + +module.exports = at; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/collect.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/collect.js new file mode 100644 index 0000000..0d1e1ab --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/collect.js @@ -0,0 +1 @@ +module.exports = require('./map'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/contains.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/contains.js new file mode 100644 index 0000000..594722a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/contains.js @@ -0,0 +1 @@ +module.exports = require('./includes'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/countBy.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/countBy.js new file mode 100644 index 0000000..e97dbb7 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/countBy.js @@ -0,0 +1,54 @@ +var createAggregator = require('../internal/createAggregator'); + +/** Used for native method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` through `iteratee`. The corresponding value + * of each key is the number of times the key was returned by `iteratee`. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.countBy([4.3, 6.1, 6.4], function(n) { + * return Math.floor(n); + * }); + * // => { '4': 1, '6': 2 } + * + * _.countBy([4.3, 6.1, 6.4], function(n) { + * return this.floor(n); + * }, Math); + * // => { '4': 1, '6': 2 } + * + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ +var countBy = createAggregator(function(result, value, key) { + hasOwnProperty.call(result, key) ? ++result[key] : (result[key] = 1); +}); + +module.exports = countBy; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/detect.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/detect.js new file mode 100644 index 0000000..2fb6303 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/detect.js @@ -0,0 +1 @@ +module.exports = require('./find'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/each.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/each.js new file mode 100644 index 0000000..8800f42 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/each.js @@ -0,0 +1 @@ +module.exports = require('./forEach'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/eachRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/eachRight.js new file mode 100644 index 0000000..3252b2a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/eachRight.js @@ -0,0 +1 @@ +module.exports = require('./forEachRight'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/every.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/every.js new file mode 100644 index 0000000..5a2d0f5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/every.js @@ -0,0 +1,66 @@ +var arrayEvery = require('../internal/arrayEvery'), + baseCallback = require('../internal/baseCallback'), + baseEvery = require('../internal/baseEvery'), + isArray = require('../lang/isArray'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * The predicate is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias all + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // using the `_.matchesProperty` callback shorthand + * _.every(users, 'active', false); + * // => true + * + * // using the `_.property` callback shorthand + * _.every(users, 'active'); + * // => false + */ +function every(collection, predicate, thisArg) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (thisArg && isIterateeCall(collection, predicate, thisArg)) { + predicate = undefined; + } + if (typeof predicate != 'function' || thisArg !== undefined) { + predicate = baseCallback(predicate, thisArg, 3); + } + return func(collection, predicate); +} + +module.exports = every; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/filter.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/filter.js new file mode 100644 index 0000000..7620aa7 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/filter.js @@ -0,0 +1,61 @@ +var arrayFilter = require('../internal/arrayFilter'), + baseCallback = require('../internal/baseCallback'), + baseFilter = require('../internal/baseFilter'), + isArray = require('../lang/isArray'); + +/** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is bound to `thisArg` and + * invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias select + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the new filtered array. + * @example + * + * _.filter([4, 5, 6], function(n) { + * return n % 2 == 0; + * }); + * // => [4, 6] + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.filter(users, { 'age': 36, 'active': true }), 'user'); + * // => ['barney'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.filter(users, 'active', false), 'user'); + * // => ['fred'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.filter(users, 'active'), 'user'); + * // => ['barney'] + */ +function filter(collection, predicate, thisArg) { + var func = isArray(collection) ? arrayFilter : baseFilter; + predicate = baseCallback(predicate, thisArg, 3); + return func(collection, predicate); +} + +module.exports = filter; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/find.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/find.js new file mode 100644 index 0000000..7358cfe --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/find.js @@ -0,0 +1,56 @@ +var baseEach = require('../internal/baseEach'), + createFind = require('../internal/createFind'); + +/** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is bound to `thisArg` and + * invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias detect + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.result(_.find(users, function(chr) { + * return chr.age < 40; + * }), 'user'); + * // => 'barney' + * + * // using the `_.matches` callback shorthand + * _.result(_.find(users, { 'age': 1, 'active': true }), 'user'); + * // => 'pebbles' + * + * // using the `_.matchesProperty` callback shorthand + * _.result(_.find(users, 'active', false), 'user'); + * // => 'fred' + * + * // using the `_.property` callback shorthand + * _.result(_.find(users, 'active'), 'user'); + * // => 'barney' + */ +var find = createFind(baseEach); + +module.exports = find; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/findLast.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/findLast.js new file mode 100644 index 0000000..75dbadc --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/findLast.js @@ -0,0 +1,25 @@ +var baseEachRight = require('../internal/baseEachRight'), + createFind = require('../internal/createFind'); + +/** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ +var findLast = createFind(baseEachRight, true); + +module.exports = findLast; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/findWhere.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/findWhere.js new file mode 100644 index 0000000..2d62065 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/findWhere.js @@ -0,0 +1,37 @@ +var baseMatches = require('../internal/baseMatches'), + find = require('./find'); + +/** + * Performs a deep comparison between each element in `collection` and the + * source object, returning the first element that has equivalent property + * values. + * + * **Note:** This method supports comparing arrays, booleans, `Date` objects, + * numbers, `Object` objects, regexes, and strings. Objects are compared by + * their own, not inherited, enumerable properties. For comparing a single + * own or inherited property value see `_.matchesProperty`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Object} source The object of property values to match. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.result(_.findWhere(users, { 'age': 36, 'active': true }), 'user'); + * // => 'barney' + * + * _.result(_.findWhere(users, { 'age': 40, 'active': false }), 'user'); + * // => 'fred' + */ +function findWhere(collection, source) { + return find(collection, baseMatches(source)); +} + +module.exports = findWhere; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/foldl.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/foldl.js new file mode 100644 index 0000000..26f53cf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/foldl.js @@ -0,0 +1 @@ +module.exports = require('./reduce'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/foldr.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/foldr.js new file mode 100644 index 0000000..8fb199e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/foldr.js @@ -0,0 +1 @@ +module.exports = require('./reduceRight'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/forEach.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/forEach.js new file mode 100644 index 0000000..05a8e21 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/forEach.js @@ -0,0 +1,37 @@ +var arrayEach = require('../internal/arrayEach'), + baseEach = require('../internal/baseEach'), + createForEach = require('../internal/createForEach'); + +/** + * Iterates over elements of `collection` invoking `iteratee` for each element. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). Iteratee functions may exit iteration early + * by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" property + * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn` + * may be used for object iteration. + * + * @static + * @memberOf _ + * @alias each + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array|Object|string} Returns `collection`. + * @example + * + * _([1, 2]).forEach(function(n) { + * console.log(n); + * }).value(); + * // => logs each value from left to right and returns the array + * + * _.forEach({ 'a': 1, 'b': 2 }, function(n, key) { + * console.log(n, key); + * }); + * // => logs each value-key pair and returns the object (iteration order is not guaranteed) + */ +var forEach = createForEach(arrayEach, baseEach); + +module.exports = forEach; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/forEachRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/forEachRight.js new file mode 100644 index 0000000..3499711 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/forEachRight.js @@ -0,0 +1,26 @@ +var arrayEachRight = require('../internal/arrayEachRight'), + baseEachRight = require('../internal/baseEachRight'), + createForEach = require('../internal/createForEach'); + +/** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @alias eachRight + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array|Object|string} Returns `collection`. + * @example + * + * _([1, 2]).forEachRight(function(n) { + * console.log(n); + * }).value(); + * // => logs each value from right to left and returns the array + */ +var forEachRight = createForEach(arrayEachRight, baseEachRight); + +module.exports = forEachRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/groupBy.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/groupBy.js new file mode 100644 index 0000000..a925c89 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/groupBy.js @@ -0,0 +1,59 @@ +var createAggregator = require('../internal/createAggregator'); + +/** Used for native method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` through `iteratee`. The corresponding value + * of each key is an array of the elements responsible for generating the key. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([4.2, 6.1, 6.4], function(n) { + * return Math.floor(n); + * }); + * // => { '4': [4.2], '6': [6.1, 6.4] } + * + * _.groupBy([4.2, 6.1, 6.4], function(n) { + * return this.floor(n); + * }, Math); + * // => { '4': [4.2], '6': [6.1, 6.4] } + * + * // using the `_.property` callback shorthand + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ +var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + result[key] = [value]; + } +}); + +module.exports = groupBy; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/include.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/include.js new file mode 100644 index 0000000..594722a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/include.js @@ -0,0 +1 @@ +module.exports = require('./includes'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/includes.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/includes.js new file mode 100644 index 0000000..482e42d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/includes.js @@ -0,0 +1,57 @@ +var baseIndexOf = require('../internal/baseIndexOf'), + getLength = require('../internal/getLength'), + isArray = require('../lang/isArray'), + isIterateeCall = require('../internal/isIterateeCall'), + isLength = require('../internal/isLength'), + isString = require('../lang/isString'), + values = require('../object/values'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Checks if `value` is in `collection` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it is used as the offset + * from the end of `collection`. + * + * @static + * @memberOf _ + * @alias contains, include + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {*} target The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as a callback for functions like `_.reduce`. + * @returns {boolean} Returns `true` if a matching element is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'user': 'fred', 'age': 40 }, 'fred'); + * // => true + * + * _.includes('pebbles', 'eb'); + * // => true + */ +function includes(collection, target, fromIndex, guard) { + var length = collection ? getLength(collection) : 0; + if (!isLength(length)) { + collection = values(collection); + length = collection.length; + } + if (typeof fromIndex != 'number' || (guard && isIterateeCall(target, fromIndex, guard))) { + fromIndex = 0; + } else { + fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : (fromIndex || 0); + } + return (typeof collection == 'string' || !isArray(collection) && isString(collection)) + ? (fromIndex <= length && collection.indexOf(target, fromIndex) > -1) + : (!!length && baseIndexOf(collection, target, fromIndex) > -1); +} + +module.exports = includes; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/indexBy.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/indexBy.js new file mode 100644 index 0000000..34a941e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/indexBy.js @@ -0,0 +1,53 @@ +var createAggregator = require('../internal/createAggregator'); + +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` through `iteratee`. The corresponding value + * of each key is the last element responsible for generating the key. The + * iteratee function is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var keyData = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.indexBy(keyData, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + * + * _.indexBy(keyData, function(object) { + * return String.fromCharCode(object.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.indexBy(keyData, function(object) { + * return this.fromCharCode(object.code); + * }, String); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + */ +var indexBy = createAggregator(function(result, value, key) { + result[key] = value; +}); + +module.exports = indexBy; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/inject.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/inject.js new file mode 100644 index 0000000..26f53cf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/inject.js @@ -0,0 +1 @@ +module.exports = require('./reduce'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/invoke.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/invoke.js new file mode 100644 index 0000000..a1f8a20 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/invoke.js @@ -0,0 +1,42 @@ +var baseEach = require('../internal/baseEach'), + invokePath = require('../internal/invokePath'), + isArrayLike = require('../internal/isArrayLike'), + isKey = require('../internal/isKey'), + restParam = require('../function/restParam'); + +/** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `methodName` is a function it is + * invoked for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invoke([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invoke([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ +var invoke = restParam(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + isProp = isKey(path), + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + var func = isFunc ? path : ((isProp && value != null) ? value[path] : undefined); + result[++index] = func ? func.apply(value, args) : invokePath(value, path, args); + }); + return result; +}); + +module.exports = invoke; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/map.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/map.js new file mode 100644 index 0000000..5381110 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/map.js @@ -0,0 +1,68 @@ +var arrayMap = require('../internal/arrayMap'), + baseCallback = require('../internal/baseCallback'), + baseMap = require('../internal/baseMap'), + isArray = require('../lang/isArray'); + +/** + * Creates an array of values by running each element in `collection` through + * `iteratee`. The `iteratee` is bound to `thisArg` and invoked with three + * arguments: (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `callback`, `chunk`, `clone`, `create`, `curry`, `curryRight`, + * `drop`, `dropRight`, `every`, `fill`, `flatten`, `invert`, `max`, `min`, + * `parseInt`, `slice`, `sortBy`, `take`, `takeRight`, `template`, `trim`, + * `trimLeft`, `trimRight`, `trunc`, `random`, `range`, `sample`, `some`, + * `sum`, `uniq`, and `words` + * + * @static + * @memberOf _ + * @alias collect + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new mapped array. + * @example + * + * function timesThree(n) { + * return n * 3; + * } + * + * _.map([1, 2], timesThree); + * // => [3, 6] + * + * _.map({ 'a': 1, 'b': 2 }, timesThree); + * // => [3, 6] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // using the `_.property` callback shorthand + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ +function map(collection, iteratee, thisArg) { + var func = isArray(collection) ? arrayMap : baseMap; + iteratee = baseCallback(iteratee, thisArg, 3); + return func(collection, iteratee); +} + +module.exports = map; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/max.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/max.js new file mode 100644 index 0000000..bb1d213 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/max.js @@ -0,0 +1 @@ +module.exports = require('../math/max'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/min.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/min.js new file mode 100644 index 0000000..eef13d0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/min.js @@ -0,0 +1 @@ +module.exports = require('../math/min'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/partition.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/partition.js new file mode 100644 index 0000000..ee35f27 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/partition.js @@ -0,0 +1,66 @@ +var createAggregator = require('../internal/createAggregator'); + +/** + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, while the second of which + * contains elements `predicate` returns falsey for. The predicate is bound + * to `thisArg` and invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the array of grouped elements. + * @example + * + * _.partition([1, 2, 3], function(n) { + * return n % 2; + * }); + * // => [[1, 3], [2]] + * + * _.partition([1.2, 2.3, 3.4], function(n) { + * return this.floor(n) % 2; + * }, Math); + * // => [[1.2, 3.4], [2.3]] + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; + * + * var mapper = function(array) { + * return _.pluck(array, 'user'); + * }; + * + * // using the `_.matches` callback shorthand + * _.map(_.partition(users, { 'age': 1, 'active': false }), mapper); + * // => [['pebbles'], ['barney', 'fred']] + * + * // using the `_.matchesProperty` callback shorthand + * _.map(_.partition(users, 'active', false), mapper); + * // => [['barney', 'pebbles'], ['fred']] + * + * // using the `_.property` callback shorthand + * _.map(_.partition(users, 'active'), mapper); + * // => [['fred'], ['barney', 'pebbles']] + */ +var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); +}, function() { return [[], []]; }); + +module.exports = partition; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/pluck.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/pluck.js new file mode 100644 index 0000000..5ee1ec8 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/pluck.js @@ -0,0 +1,31 @@ +var map = require('./map'), + property = require('../utility/property'); + +/** + * Gets the property value of `path` from all elements in `collection`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Array|string} path The path of the property to pluck. + * @returns {Array} Returns the property values. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * _.pluck(users, 'user'); + * // => ['barney', 'fred'] + * + * var userIndex = _.indexBy(users, 'user'); + * _.pluck(userIndex, 'age'); + * // => [36, 40] (iteration order is not guaranteed) + */ +function pluck(collection, path) { + return map(collection, property(path)); +} + +module.exports = pluck; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reduce.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reduce.js new file mode 100644 index 0000000..5d5e8c9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reduce.js @@ -0,0 +1,44 @@ +var arrayReduce = require('../internal/arrayReduce'), + baseEach = require('../internal/baseEach'), + createReduce = require('../internal/createReduce'); + +/** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` through `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not provided the first element of `collection` is used as the initial + * value. The `iteratee` is bound to `thisArg` and invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `sortByAll`, + * and `sortByOrder` + * + * @static + * @memberOf _ + * @alias foldl, inject + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {*} Returns the accumulated value. + * @example + * + * _.reduce([1, 2], function(total, n) { + * return total + n; + * }); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2 }, function(result, n, key) { + * result[key] = n * 3; + * return result; + * }, {}); + * // => { 'a': 3, 'b': 6 } (iteration order is not guaranteed) + */ +var reduce = createReduce(arrayReduce, baseEach); + +module.exports = reduce; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reduceRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reduceRight.js new file mode 100644 index 0000000..5a5753b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reduceRight.js @@ -0,0 +1,29 @@ +var arrayReduceRight = require('../internal/arrayReduceRight'), + baseEachRight = require('../internal/baseEachRight'), + createReduce = require('../internal/createReduce'); + +/** + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @alias foldr + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {*} Returns the accumulated value. + * @example + * + * var array = [[0, 1], [2, 3], [4, 5]]; + * + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] + */ +var reduceRight = createReduce(arrayReduceRight, baseEachRight); + +module.exports = reduceRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reject.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reject.js new file mode 100644 index 0000000..5592453 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/reject.js @@ -0,0 +1,50 @@ +var arrayFilter = require('../internal/arrayFilter'), + baseCallback = require('../internal/baseCallback'), + baseFilter = require('../internal/baseFilter'), + isArray = require('../lang/isArray'); + +/** + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the new filtered array. + * @example + * + * _.reject([1, 2, 3, 4], function(n) { + * return n % 2 == 0; + * }); + * // => [1, 3] + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.reject(users, { 'age': 40, 'active': true }), 'user'); + * // => ['barney'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.reject(users, 'active', false), 'user'); + * // => ['fred'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.reject(users, 'active'), 'user'); + * // => ['barney'] + */ +function reject(collection, predicate, thisArg) { + var func = isArray(collection) ? arrayFilter : baseFilter; + predicate = baseCallback(predicate, thisArg, 3); + return func(collection, function(value, index, collection) { + return !predicate(value, index, collection); + }); +} + +module.exports = reject; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sample.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sample.js new file mode 100644 index 0000000..8e01533 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sample.js @@ -0,0 +1,50 @@ +var baseRandom = require('../internal/baseRandom'), + isIterateeCall = require('../internal/isIterateeCall'), + toArray = require('../lang/toArray'), + toIterable = require('../internal/toIterable'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; + +/** + * Gets a random element or `n` random elements from a collection. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to sample. + * @param {number} [n] The number of elements to sample. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {*} Returns the random sample(s). + * @example + * + * _.sample([1, 2, 3, 4]); + * // => 2 + * + * _.sample([1, 2, 3, 4], 2); + * // => [3, 1] + */ +function sample(collection, n, guard) { + if (guard ? isIterateeCall(collection, n, guard) : n == null) { + collection = toIterable(collection); + var length = collection.length; + return length > 0 ? collection[baseRandom(0, length - 1)] : undefined; + } + var index = -1, + result = toArray(collection), + length = result.length, + lastIndex = length - 1; + + n = nativeMin(n < 0 ? 0 : (+n || 0), length); + while (++index < n) { + var rand = baseRandom(index, lastIndex), + value = result[rand]; + + result[rand] = result[index]; + result[index] = value; + } + result.length = n; + return result; +} + +module.exports = sample; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/select.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/select.js new file mode 100644 index 0000000..ade80f6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/select.js @@ -0,0 +1 @@ +module.exports = require('./filter'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/shuffle.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/shuffle.js new file mode 100644 index 0000000..949689c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/shuffle.js @@ -0,0 +1,24 @@ +var sample = require('./sample'); + +/** Used as references for `-Infinity` and `Infinity`. */ +var POSITIVE_INFINITY = Number.POSITIVE_INFINITY; + +/** + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + * @example + * + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] + */ +function shuffle(collection) { + return sample(collection, POSITIVE_INFINITY); +} + +module.exports = shuffle; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/size.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/size.js new file mode 100644 index 0000000..78dcf4c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/size.js @@ -0,0 +1,30 @@ +var getLength = require('../internal/getLength'), + isLength = require('../internal/isLength'), + keys = require('../object/keys'); + +/** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable properties for objects. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the size of `collection`. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ +function size(collection) { + var length = collection ? getLength(collection) : 0; + return isLength(length) ? length : keys(collection).length; +} + +module.exports = size; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/some.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/some.js new file mode 100644 index 0000000..d0b09a4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/some.js @@ -0,0 +1,67 @@ +var arraySome = require('../internal/arraySome'), + baseCallback = require('../internal/baseCallback'), + baseSome = require('../internal/baseSome'), + isArray = require('../lang/isArray'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * The function returns as soon as it finds a passing value and does not iterate + * over the entire collection. The predicate is bound to `thisArg` and invoked + * with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias any + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // using the `_.matchesProperty` callback shorthand + * _.some(users, 'active', false); + * // => true + * + * // using the `_.property` callback shorthand + * _.some(users, 'active'); + * // => true + */ +function some(collection, predicate, thisArg) { + var func = isArray(collection) ? arraySome : baseSome; + if (thisArg && isIterateeCall(collection, predicate, thisArg)) { + predicate = undefined; + } + if (typeof predicate != 'function' || thisArg !== undefined) { + predicate = baseCallback(predicate, thisArg, 3); + } + return func(collection, predicate); +} + +module.exports = some; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortBy.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortBy.js new file mode 100644 index 0000000..4401c77 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortBy.js @@ -0,0 +1,71 @@ +var baseCallback = require('../internal/baseCallback'), + baseMap = require('../internal/baseMap'), + baseSortBy = require('../internal/baseSortBy'), + compareAscending = require('../internal/compareAscending'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection through `iteratee`. This method performs + * a stable sort, that is, it preserves the original sort order of equal elements. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new sorted array. + * @example + * + * _.sortBy([1, 2, 3], function(n) { + * return Math.sin(n); + * }); + * // => [3, 1, 2] + * + * _.sortBy([1, 2, 3], function(n) { + * return this.sin(n); + * }, Math); + * // => [3, 1, 2] + * + * var users = [ + * { 'user': 'fred' }, + * { 'user': 'pebbles' }, + * { 'user': 'barney' } + * ]; + * + * // using the `_.property` callback shorthand + * _.pluck(_.sortBy(users, 'user'), 'user'); + * // => ['barney', 'fred', 'pebbles'] + */ +function sortBy(collection, iteratee, thisArg) { + if (collection == null) { + return []; + } + if (thisArg && isIterateeCall(collection, iteratee, thisArg)) { + iteratee = undefined; + } + var index = -1; + iteratee = baseCallback(iteratee, thisArg, 3); + + var result = baseMap(collection, function(value, key, collection) { + return { 'criteria': iteratee(value, key, collection), 'index': ++index, 'value': value }; + }); + return baseSortBy(result, compareAscending); +} + +module.exports = sortBy; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortByAll.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortByAll.js new file mode 100644 index 0000000..4766c20 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortByAll.js @@ -0,0 +1,52 @@ +var baseFlatten = require('../internal/baseFlatten'), + baseSortByOrder = require('../internal/baseSortByOrder'), + isIterateeCall = require('../internal/isIterateeCall'), + restParam = require('../function/restParam'); + +/** + * This method is like `_.sortBy` except that it can sort by multiple iteratees + * or property names. + * + * If a property name is provided for an iteratee the created `_.property` + * style callback returns the property value of the given element. + * + * If an object is provided for an iteratee the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {...(Function|Function[]|Object|Object[]|string|string[])} iteratees + * The iteratees to sort by, specified as individual values or arrays of values. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 42 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.map(_.sortByAll(users, ['user', 'age']), _.values); + * // => [['barney', 34], ['barney', 36], ['fred', 42], ['fred', 48]] + * + * _.map(_.sortByAll(users, 'user', function(chr) { + * return Math.floor(chr.age / 10); + * }), _.values); + * // => [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + */ +var sortByAll = restParam(function(collection, iteratees) { + if (collection == null) { + return []; + } + var guard = iteratees[2]; + if (guard && isIterateeCall(iteratees[0], iteratees[1], guard)) { + iteratees.length = 1; + } + return baseSortByOrder(collection, baseFlatten(iteratees), []); +}); + +module.exports = sortByAll; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortByOrder.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortByOrder.js new file mode 100644 index 0000000..8b4fc19 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sortByOrder.js @@ -0,0 +1,55 @@ +var baseSortByOrder = require('../internal/baseSortByOrder'), + isArray = require('../lang/isArray'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** + * This method is like `_.sortByAll` except that it allows specifying the + * sort orders of the iteratees to sort by. If `orders` is unspecified, all + * values are sorted in ascending order. Otherwise, a value is sorted in + * ascending order if its corresponding order is "asc", and descending if "desc". + * + * If a property name is provided for an iteratee the created `_.property` + * style callback returns the property value of the given element. + * + * If an object is provided for an iteratee the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {boolean[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as a callback for functions like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 42 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // sort by `user` in ascending order and by `age` in descending order + * _.map(_.sortByOrder(users, ['user', 'age'], ['asc', 'desc']), _.values); + * // => [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + */ +function sortByOrder(collection, iteratees, orders, guard) { + if (collection == null) { + return []; + } + if (guard && isIterateeCall(iteratees, orders, guard)) { + orders = undefined; + } + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; + } + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; + } + return baseSortByOrder(collection, iteratees, orders); +} + +module.exports = sortByOrder; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sum.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sum.js new file mode 100644 index 0000000..a2e9380 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/sum.js @@ -0,0 +1 @@ +module.exports = require('../math/sum'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/where.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/where.js new file mode 100644 index 0000000..f603bf8 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/collection/where.js @@ -0,0 +1,37 @@ +var baseMatches = require('../internal/baseMatches'), + filter = require('./filter'); + +/** + * Performs a deep comparison between each element in `collection` and the + * source object, returning an array of all elements that have equivalent + * property values. + * + * **Note:** This method supports comparing arrays, booleans, `Date` objects, + * numbers, `Object` objects, regexes, and strings. Objects are compared by + * their own, not inherited, enumerable properties. For comparing a single + * own or inherited property value see `_.matchesProperty`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Object} source The object of property values to match. + * @returns {Array} Returns the new filtered array. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false, 'pets': ['hoppy'] }, + * { 'user': 'fred', 'age': 40, 'active': true, 'pets': ['baby puss', 'dino'] } + * ]; + * + * _.pluck(_.where(users, { 'age': 36, 'active': false }), 'user'); + * // => ['barney'] + * + * _.pluck(_.where(users, { 'pets': ['dino'] }), 'user'); + * // => ['fred'] + */ +function where(collection, source) { + return filter(collection, baseMatches(source)); +} + +module.exports = where; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/date.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/date.js new file mode 100644 index 0000000..195366e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/date.js @@ -0,0 +1,3 @@ +module.exports = { + 'now': require('./date/now') +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/date/now.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/date/now.js new file mode 100644 index 0000000..ffe3060 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/date/now.js @@ -0,0 +1,24 @@ +var getNative = require('../internal/getNative'); + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeNow = getNative(Date, 'now'); + +/** + * Gets the number of milliseconds that have elapsed since the Unix epoch + * (1 January 1970 00:00:00 UTC). + * + * @static + * @memberOf _ + * @category Date + * @example + * + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => logs the number of milliseconds it took for the deferred function to be invoked + */ +var now = nativeNow || function() { + return new Date().getTime(); +}; + +module.exports = now; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function.js new file mode 100644 index 0000000..71f8ebe --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function.js @@ -0,0 +1,28 @@ +module.exports = { + 'after': require('./function/after'), + 'ary': require('./function/ary'), + 'backflow': require('./function/backflow'), + 'before': require('./function/before'), + 'bind': require('./function/bind'), + 'bindAll': require('./function/bindAll'), + 'bindKey': require('./function/bindKey'), + 'compose': require('./function/compose'), + 'curry': require('./function/curry'), + 'curryRight': require('./function/curryRight'), + 'debounce': require('./function/debounce'), + 'defer': require('./function/defer'), + 'delay': require('./function/delay'), + 'flow': require('./function/flow'), + 'flowRight': require('./function/flowRight'), + 'memoize': require('./function/memoize'), + 'modArgs': require('./function/modArgs'), + 'negate': require('./function/negate'), + 'once': require('./function/once'), + 'partial': require('./function/partial'), + 'partialRight': require('./function/partialRight'), + 'rearg': require('./function/rearg'), + 'restParam': require('./function/restParam'), + 'spread': require('./function/spread'), + 'throttle': require('./function/throttle'), + 'wrap': require('./function/wrap') +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/after.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/after.js new file mode 100644 index 0000000..e6a5de4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/after.js @@ -0,0 +1,48 @@ +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeIsFinite = global.isFinite; + +/** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it is called `n` or more times. + * + * @static + * @memberOf _ + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => logs 'done saving!' after the two async saves have completed + */ +function after(n, func) { + if (typeof func != 'function') { + if (typeof n == 'function') { + var temp = n; + n = func; + func = temp; + } else { + throw new TypeError(FUNC_ERROR_TEXT); + } + } + n = nativeIsFinite(n = +n) ? n : 0; + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; +} + +module.exports = after; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/ary.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/ary.js new file mode 100644 index 0000000..53a6913 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/ary.js @@ -0,0 +1,34 @@ +var createWrapper = require('../internal/createWrapper'), + isIterateeCall = require('../internal/isIterateeCall'); + +/** Used to compose bitmasks for wrapper metadata. */ +var ARY_FLAG = 128; + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Creates a function that accepts up to `n` arguments ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Function} Returns the new function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ +function ary(func, n, guard) { + if (guard && isIterateeCall(func, n, guard)) { + n = undefined; + } + n = (func && n == null) ? func.length : nativeMax(+n || 0, 0); + return createWrapper(func, ARY_FLAG, undefined, undefined, undefined, undefined, n); +} + +module.exports = ary; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/backflow.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/backflow.js new file mode 100644 index 0000000..1954e94 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/backflow.js @@ -0,0 +1 @@ +module.exports = require('./flowRight'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/before.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/before.js new file mode 100644 index 0000000..dd1d03b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/before.js @@ -0,0 +1,42 @@ +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it is called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery('#add').on('click', _.before(5, addContactToList)); + * // => allows adding up to 4 contacts to the list + */ +function before(n, func) { + var result; + if (typeof func != 'function') { + if (typeof n == 'function') { + var temp = n; + n = func; + func = temp; + } else { + throw new TypeError(FUNC_ERROR_TEXT); + } + } + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; +} + +module.exports = before; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bind.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bind.js new file mode 100644 index 0000000..0de126a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bind.js @@ -0,0 +1,56 @@ +var createWrapper = require('../internal/createWrapper'), + replaceHolders = require('../internal/replaceHolders'), + restParam = require('./restParam'); + +/** Used to compose bitmasks for wrapper metadata. */ +var BIND_FLAG = 1, + PARTIAL_FLAG = 32; + +/** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and prepends any additional `_.bind` arguments to those provided to the + * bound function. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind` this method does not set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var greet = function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * }; + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // using placeholders + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ +var bind = restParam(function(func, thisArg, partials) { + var bitmask = BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, bind.placeholder); + bitmask |= PARTIAL_FLAG; + } + return createWrapper(func, bitmask, thisArg, partials, holders); +}); + +// Assign default placeholders. +bind.placeholder = {}; + +module.exports = bind; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bindAll.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bindAll.js new file mode 100644 index 0000000..a09e948 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bindAll.js @@ -0,0 +1,50 @@ +var baseFlatten = require('../internal/baseFlatten'), + createWrapper = require('../internal/createWrapper'), + functions = require('../object/functions'), + restParam = require('./restParam'); + +/** Used to compose bitmasks for wrapper metadata. */ +var BIND_FLAG = 1; + +/** + * Binds methods of an object to the object itself, overwriting the existing + * method. Method names may be specified as individual arguments or as arrays + * of method names. If no method names are provided all enumerable function + * properties, own and inherited, of `object` are bound. + * + * **Note:** This method does not set the "length" property of bound functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Object} object The object to bind and assign the bound methods to. + * @param {...(string|string[])} [methodNames] The object method names to bind, + * specified as individual method names or arrays of method names. + * @returns {Object} Returns `object`. + * @example + * + * var view = { + * 'label': 'docs', + * 'onClick': function() { + * console.log('clicked ' + this.label); + * } + * }; + * + * _.bindAll(view); + * jQuery('#docs').on('click', view.onClick); + * // => logs 'clicked docs' when the element is clicked + */ +var bindAll = restParam(function(object, methodNames) { + methodNames = methodNames.length ? baseFlatten(methodNames) : functions(object); + + var index = -1, + length = methodNames.length; + + while (++index < length) { + var key = methodNames[index]; + object[key] = createWrapper(object[key], BIND_FLAG, object); + } + return object; +}); + +module.exports = bindAll; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bindKey.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bindKey.js new file mode 100644 index 0000000..b787fe7 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/bindKey.js @@ -0,0 +1,66 @@ +var createWrapper = require('../internal/createWrapper'), + replaceHolders = require('../internal/replaceHolders'), + restParam = require('./restParam'); + +/** Used to compose bitmasks for wrapper metadata. */ +var BIND_FLAG = 1, + BIND_KEY_FLAG = 2, + PARTIAL_FLAG = 32; + +/** + * Creates a function that invokes the method at `object[key]` and prepends + * any additional `_.bindKey` arguments to those provided to the bound function. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. + * See [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @category Function + * @param {Object} object The object the method belongs to. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // using placeholders + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ +var bindKey = restParam(function(object, key, partials) { + var bitmask = BIND_FLAG | BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, bindKey.placeholder); + bitmask |= PARTIAL_FLAG; + } + return createWrapper(key, bitmask, object, partials, holders); +}); + +// Assign default placeholders. +bindKey.placeholder = {}; + +module.exports = bindKey; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/compose.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/compose.js new file mode 100644 index 0000000..1954e94 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/compose.js @@ -0,0 +1 @@ +module.exports = require('./flowRight'); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/curry.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/curry.js new file mode 100644 index 0000000..b7db3fd --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/curry.js @@ -0,0 +1,51 @@ +var createCurry = require('../internal/createCurry'); + +/** Used to compose bitmasks for wrapper metadata. */ +var CURRY_FLAG = 8; + +/** + * Creates a function that accepts one or more arguments of `func` that when + * called either invokes `func` returning its result, if all `func` arguments + * have been provided, or returns a function that accepts one or more of the + * remaining `func` arguments, and so on. The arity of `func` may be specified + * if `func.length` is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method does not set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // using placeholders + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ +var curry = createCurry(CURRY_FLAG); + +// Assign default placeholders. +curry.placeholder = {}; + +module.exports = curry; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/curryRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/curryRight.js new file mode 100644 index 0000000..11c5403 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/curryRight.js @@ -0,0 +1,48 @@ +var createCurry = require('../internal/createCurry'); + +/** Used to compose bitmasks for wrapper metadata. */ +var CURRY_RIGHT_FLAG = 16; + +/** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method does not set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // using placeholders + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ +var curryRight = createCurry(CURRY_RIGHT_FLAG); + +// Assign default placeholders. +curryRight.placeholder = {}; + +module.exports = curryRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/debounce.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/debounce.js new file mode 100644 index 0000000..caf2a69 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/debounce.js @@ -0,0 +1,181 @@ +var isObject = require('../lang/isObject'), + now = require('../date/now'); + +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed invocations. Provide an options object to indicate that `func` + * should be invoked on the leading and/or trailing edge of the `wait` timeout. + * Subsequent calls to the debounced function return the result of the last + * `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked + * on the trailing edge of the timeout only if the the debounced function is + * invoked more than once during the `wait` timeout. + * + * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options] The options object. + * @param {boolean} [options.leading=false] Specify invoking on the leading + * edge of the timeout. + * @param {number} [options.maxWait] The maximum time `func` is allowed to be + * delayed before it is invoked. + * @param {boolean} [options.trailing=true] Specify invoking on the trailing + * edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // avoid costly calculations while the window size is in flux + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // invoke `sendMail` when the click event is fired, debouncing subsequent calls + * jQuery('#postbox').on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // ensure `batchLog` is invoked once after 1 second of debounced calls + * var source = new EventSource('/stream'); + * jQuery(source).on('message', _.debounce(batchLog, 250, { + * 'maxWait': 1000 + * })); + * + * // cancel a debounced call + * var todoChanges = _.debounce(batchLog, 1000); + * Object.observe(models.todo, todoChanges); + * + * Object.observe(models, function(changes) { + * if (_.find(changes, { 'user': 'todo', 'type': 'delete'})) { + * todoChanges.cancel(); + * } + * }, ['delete']); + * + * // ...at some point `models.todo` is changed + * models.todo.completed = true; + * + * // ...before 1 second has passed `models.todo` is deleted + * // which cancels the debounced `todoChanges` call + * delete models.todo; + */ +function debounce(func, wait, options) { + var args, + maxTimeoutId, + result, + stamp, + thisArg, + timeoutId, + trailingCall, + lastCalled = 0, + maxWait = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = wait < 0 ? 0 : (+wait || 0); + if (options === true) { + var leading = true; + trailing = false; + } else if (isObject(options)) { + leading = !!options.leading; + maxWait = 'maxWait' in options && nativeMax(+options.maxWait || 0, wait); + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function cancel() { + if (timeoutId) { + clearTimeout(timeoutId); + } + if (maxTimeoutId) { + clearTimeout(maxTimeoutId); + } + lastCalled = 0; + maxTimeoutId = timeoutId = trailingCall = undefined; + } + + function complete(isCalled, id) { + if (id) { + clearTimeout(id); + } + maxTimeoutId = timeoutId = trailingCall = undefined; + if (isCalled) { + lastCalled = now(); + result = func.apply(thisArg, args); + if (!timeoutId && !maxTimeoutId) { + args = thisArg = undefined; + } + } + } + + function delayed() { + var remaining = wait - (now() - stamp); + if (remaining <= 0 || remaining > wait) { + complete(trailingCall, maxTimeoutId); + } else { + timeoutId = setTimeout(delayed, remaining); + } + } + + function maxDelayed() { + complete(trailing, timeoutId); + } + + function debounced() { + args = arguments; + stamp = now(); + thisArg = this; + trailingCall = trailing && (timeoutId || !leading); + + if (maxWait === false) { + var leadingCall = leading && !timeoutId; + } else { + if (!maxTimeoutId && !leading) { + lastCalled = stamp; + } + var remaining = maxWait - (stamp - lastCalled), + isCalled = remaining <= 0 || remaining > maxWait; + + if (isCalled) { + if (maxTimeoutId) { + maxTimeoutId = clearTimeout(maxTimeoutId); + } + lastCalled = stamp; + result = func.apply(thisArg, args); + } + else if (!maxTimeoutId) { + maxTimeoutId = setTimeout(maxDelayed, remaining); + } + } + if (isCalled && timeoutId) { + timeoutId = clearTimeout(timeoutId); + } + else if (!timeoutId && wait !== maxWait) { + timeoutId = setTimeout(delayed, wait); + } + if (leadingCall) { + isCalled = true; + result = func.apply(thisArg, args); + } + if (isCalled && !timeoutId && !maxTimeoutId) { + args = thisArg = undefined; + } + return result; + } + debounced.cancel = cancel; + return debounced; +} + +module.exports = debounce; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/defer.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/defer.js new file mode 100644 index 0000000..369790c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/defer.js @@ -0,0 +1,25 @@ +var baseDelay = require('../internal/baseDelay'), + restParam = require('./restParam'); + +/** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it is invoked. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke the function with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // logs 'deferred' after one or more milliseconds + */ +var defer = restParam(function(func, args) { + return baseDelay(func, 1, args); +}); + +module.exports = defer; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/delay.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/delay.js new file mode 100644 index 0000000..955b059 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/delay.js @@ -0,0 +1,26 @@ +var baseDelay = require('../internal/baseDelay'), + restParam = require('./restParam'); + +/** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it is invoked. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke the function with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => logs 'later' after one second + */ +var delay = restParam(function(func, wait, args) { + return baseDelay(func, wait, args); +}); + +module.exports = delay; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/flow.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/flow.js new file mode 100644 index 0000000..a435a3d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/flow.js @@ -0,0 +1,25 @@ +var createFlow = require('../internal/createFlow'); + +/** + * Creates a function that returns the result of invoking the provided + * functions with the `this` binding of the created function, where each + * successive invocation is supplied the return value of the previous. + * + * @static + * @memberOf _ + * @category Function + * @param {...Function} [funcs] Functions to invoke. + * @returns {Function} Returns the new function. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flow(_.add, square); + * addSquare(1, 2); + * // => 9 + */ +var flow = createFlow(); + +module.exports = flow; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/flowRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/flowRight.js new file mode 100644 index 0000000..23b9d76 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/flowRight.js @@ -0,0 +1,25 @@ +var createFlow = require('../internal/createFlow'); + +/** + * This method is like `_.flow` except that it creates a function that + * invokes the provided functions from right to left. + * + * @static + * @memberOf _ + * @alias backflow, compose + * @category Function + * @param {...Function} [funcs] Functions to invoke. + * @returns {Function} Returns the new function. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flowRight(square, _.add); + * addSquare(1, 2); + * // => 9 + */ +var flowRight = createFlow(true); + +module.exports = flowRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/memoize.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/memoize.js new file mode 100644 index 0000000..f3b8d69 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/memoize.js @@ -0,0 +1,80 @@ +var MapCache = require('../internal/MapCache'); + +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is coerced to a string and used as the + * cache key. The `func` is invoked with the `this` binding of the memoized + * function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the [`Map`](http://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-map-prototype-object) + * method interface of `get`, `has`, and `set`. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoizing function. + * @example + * + * var upperCase = _.memoize(function(string) { + * return string.toUpperCase(); + * }); + * + * upperCase('fred'); + * // => 'FRED' + * + * // modifying the result cache + * upperCase.cache.set('fred', 'BARNEY'); + * upperCase('fred'); + * // => 'BARNEY' + * + * // replacing `_.memoize.Cache` + * var object = { 'user': 'fred' }; + * var other = { 'user': 'barney' }; + * var identity = _.memoize(_.identity); + * + * identity(object); + * // => { 'user': 'fred' } + * identity(other); + * // => { 'user': 'fred' } + * + * _.memoize.Cache = WeakMap; + * var identity = _.memoize(_.identity); + * + * identity(object); + * // => { 'user': 'fred' } + * identity(other); + * // => { 'user': 'barney' } + */ +function memoize(func, resolver) { + if (typeof func != 'function' || (resolver && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; + + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result); + return result; + }; + memoized.cache = new memoize.Cache; + return memoized; +} + +// Assign cache to `_.memoize`. +memoize.Cache = MapCache; + +module.exports = memoize; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/modArgs.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/modArgs.js new file mode 100644 index 0000000..49b9b5e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/modArgs.js @@ -0,0 +1,58 @@ +var arrayEvery = require('../internal/arrayEvery'), + baseFlatten = require('../internal/baseFlatten'), + baseIsFunction = require('../internal/baseIsFunction'), + restParam = require('./restParam'); + +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; + +/** + * Creates a function that runs each argument through a corresponding + * transform function. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms] The functions to transform + * arguments, specified as individual functions or arrays of functions. + * @returns {Function} Returns the new function. + * @example + * + * function doubled(n) { + * return n * 2; + * } + * + * function square(n) { + * return n * n; + * } + * + * var modded = _.modArgs(function(x, y) { + * return [x, y]; + * }, square, doubled); + * + * modded(1, 2); + * // => [1, 4] + * + * modded(5, 10); + * // => [25, 20] + */ +var modArgs = restParam(function(func, transforms) { + transforms = baseFlatten(transforms); + if (typeof func != 'function' || !arrayEvery(transforms, baseIsFunction)) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = transforms.length; + return restParam(function(args) { + var index = nativeMin(args.length, length); + while (index--) { + args[index] = transforms[index](args[index]); + } + return func.apply(this, args); + }); +}); + +module.exports = modArgs; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/negate.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/negate.js new file mode 100644 index 0000000..8247939 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/negate.js @@ -0,0 +1,32 @@ +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ +function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + return !predicate.apply(this, arguments); + }; +} + +module.exports = negate; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/once.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/once.js new file mode 100644 index 0000000..0b5bd85 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/once.js @@ -0,0 +1,24 @@ +var before = require('./before'); + +/** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first call. The `func` is invoked + * with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // `initialize` invokes `createApplication` once + */ +function once(func) { + return before(2, func); +} + +module.exports = once; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/partial.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/partial.js new file mode 100644 index 0000000..fb1d04f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/partial.js @@ -0,0 +1,43 @@ +var createPartial = require('../internal/createPartial'); + +/** Used to compose bitmasks for wrapper metadata. */ +var PARTIAL_FLAG = 32; + +/** + * Creates a function that invokes `func` with `partial` arguments prepended + * to those provided to the new function. This method is like `_.bind` except + * it does **not** alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method does not set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * var greet = function(greeting, name) { + * return greeting + ' ' + name; + * }; + * + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' + * + * // using placeholders + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + */ +var partial = createPartial(PARTIAL_FLAG); + +// Assign default placeholders. +partial.placeholder = {}; + +module.exports = partial; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/partialRight.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/partialRight.js new file mode 100644 index 0000000..634e6a4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/partialRight.js @@ -0,0 +1,42 @@ +var createPartial = require('../internal/createPartial'); + +/** Used to compose bitmasks for wrapper metadata. */ +var PARTIAL_RIGHT_FLAG = 64; + +/** + * This method is like `_.partial` except that partially applied arguments + * are appended to those provided to the new function. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method does not set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * var greet = function(greeting, name) { + * return greeting + ' ' + name; + * }; + * + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + * + * // using placeholders + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' + */ +var partialRight = createPartial(PARTIAL_RIGHT_FLAG); + +// Assign default placeholders. +partialRight.placeholder = {}; + +module.exports = partialRight; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/rearg.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/rearg.js new file mode 100644 index 0000000..f2bd9c4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/rearg.js @@ -0,0 +1,40 @@ +var baseFlatten = require('../internal/baseFlatten'), + createWrapper = require('../internal/createWrapper'), + restParam = require('./restParam'); + +/** Used to compose bitmasks for wrapper metadata. */ +var REARG_FLAG = 256; + +/** + * Creates a function that invokes `func` with arguments arranged according + * to the specified indexes where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes, + * specified as individual indexes or arrays of indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, 2, 0, 1); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + * + * var map = _.rearg(_.map, [1, 0]); + * map(function(n) { + * return n * 3; + * }, [1, 2, 3]); + * // => [3, 6, 9] + */ +var rearg = restParam(function(func, indexes) { + return createWrapper(func, REARG_FLAG, undefined, undefined, undefined, baseFlatten(indexes)); +}); + +module.exports = rearg; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/restParam.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/restParam.js new file mode 100644 index 0000000..3a1c157 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/restParam.js @@ -0,0 +1,58 @@ +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/* Native method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as an array. + * + * **Note:** This method is based on the [rest parameter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters). + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.restParam(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); + * + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' + */ +function restParam(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = nativeMax(start === undefined ? (func.length - 1) : (+start || 0), 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + rest = Array(length); + + while (++index < length) { + rest[index] = args[start + index]; + } + switch (start) { + case 0: return func.call(this, rest); + case 1: return func.call(this, args[0], rest); + case 2: return func.call(this, args[0], args[1], rest); + } + var otherArgs = Array(start + 1); + index = -1; + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = rest; + return func.apply(this, otherArgs); + }; +} + +module.exports = restParam; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/spread.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/spread.js new file mode 100644 index 0000000..aad4b71 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/spread.js @@ -0,0 +1,44 @@ +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that invokes `func` with the `this` binding of the created + * function and an array of arguments much like [`Function#apply`](https://es5.github.io/#x15.3.4.3). + * + * **Note:** This method is based on the [spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator). + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to spread arguments over. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); + * + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * // with a Promise + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 + */ +function spread(func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function(array) { + return func.apply(this, array); + }; +} + +module.exports = spread; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/throttle.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/throttle.js new file mode 100644 index 0000000..1dd00ea --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/throttle.js @@ -0,0 +1,62 @@ +var debounce = require('./debounce'), + isObject = require('../lang/isObject'); + +/** Used as the `TypeError` message for "Functions" methods. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed invocations. Provide an options object to indicate + * that `func` should be invoked on the leading and/or trailing edge of the + * `wait` timeout. Subsequent calls to the throttled function return the + * result of the last `func` call. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked + * on the trailing edge of the timeout only if the the throttled function is + * invoked more than once during the `wait` timeout. + * + * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) + * for details over the differences between `_.throttle` and `_.debounce`. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. + * @param {Object} [options] The options object. + * @param {boolean} [options.leading=true] Specify invoking on the leading + * edge of the timeout. + * @param {boolean} [options.trailing=true] Specify invoking on the trailing + * edge of the timeout. + * @returns {Function} Returns the new throttled function. + * @example + * + * // avoid excessively updating the position while scrolling + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * + * // invoke `renewToken` when the click event is fired, but not more than once every 5 minutes + * jQuery('.interactive').on('click', _.throttle(renewToken, 300000, { + * 'trailing': false + * })); + * + * // cancel a trailing throttled call + * jQuery(window).on('popstate', throttled.cancel); + */ +function throttle(func, wait, options) { + var leading = true, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (options === false) { + leading = false; + } else if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + return debounce(func, wait, { 'leading': leading, 'maxWait': +wait, 'trailing': trailing }); +} + +module.exports = throttle; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/wrap.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/wrap.js new file mode 100644 index 0000000..6a33c5e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/function/wrap.js @@ -0,0 +1,33 @@ +var createWrapper = require('../internal/createWrapper'), + identity = require('../utility/identity'); + +/** Used to compose bitmasks for wrapper metadata. */ +var PARTIAL_FLAG = 32; + +/** + * Creates a function that provides `value` to the wrapper function as its + * first argument. Any additional arguments provided to the function are + * appended to those provided to the wrapper function. The wrapper is invoked + * with the `this` binding of the created function. + * + * @static + * @memberOf _ + * @category Function + * @param {*} value The value to wrap. + * @param {Function} wrapper The wrapper function. + * @returns {Function} Returns the new function. + * @example + * + * var p = _.wrap(_.escape, function(func, text) { + * return '

' + func(text) + '

'; + * }); + * + * p('fred, barney, & pebbles'); + * // => '

fred, barney, & pebbles

' + */ +function wrap(value, wrapper) { + wrapper = wrapper == null ? identity : wrapper; + return createWrapper(wrapper, PARTIAL_FLAG, undefined, [value], []); +} + +module.exports = wrap; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/index.js new file mode 100644 index 0000000..be768ee --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/index.js @@ -0,0 +1,12351 @@ +/** + * @license + * lodash 3.10.0 (Custom Build) + * Build: `lodash modern -d -o ./index.js` + * Copyright 2012-2015 The Dojo Foundation + * Based on Underscore.js 1.8.3 + * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + * Available under MIT license + */ +;(function() { + + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; + + /** Used as the semantic version number. */ + var VERSION = '3.10.0'; + + /** Used to compose bitmasks for wrapper metadata. */ + var BIND_FLAG = 1, + BIND_KEY_FLAG = 2, + CURRY_BOUND_FLAG = 4, + CURRY_FLAG = 8, + CURRY_RIGHT_FLAG = 16, + PARTIAL_FLAG = 32, + PARTIAL_RIGHT_FLAG = 64, + ARY_FLAG = 128, + REARG_FLAG = 256; + + /** Used as default options for `_.trunc`. */ + var DEFAULT_TRUNC_LENGTH = 30, + DEFAULT_TRUNC_OMISSION = '...'; + + /** Used to detect when a function becomes hot. */ + var HOT_COUNT = 150, + HOT_SPAN = 16; + + /** Used as the size to enable large array optimizations. */ + var LARGE_ARRAY_SIZE = 200; + + /** Used to indicate the type of lazy iteratees. */ + var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2; + + /** Used as the `TypeError` message for "Functions" methods. */ + var FUNC_ERROR_TEXT = 'Expected a function'; + + /** Used as the internal argument placeholder. */ + var PLACEHOLDER = '__lodash_placeholder__'; + + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + funcTag = '[object Function]', + mapTag = '[object Map]', + numberTag = '[object Number]', + objectTag = '[object Object]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + weakMapTag = '[object WeakMap]'; + + var arrayBufferTag = '[object ArrayBuffer]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + + /** Used to match empty string literals in compiled template source. */ + var reEmptyStringLeading = /\b__p \+= '';/g, + reEmptyStringMiddle = /\b(__p \+=) '' \+/g, + reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; + + /** Used to match HTML entities and HTML characters. */ + var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g, + reUnescapedHtml = /[&<>"'`]/g, + reHasEscapedHtml = RegExp(reEscapedHtml.source), + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** Used to match template delimiters. */ + var reEscape = /<%-([\s\S]+?)%>/g, + reEvaluate = /<%([\s\S]+?)%>/g, + reInterpolate = /<%=([\s\S]+?)%>/g; + + /** Used to match property names within property paths. */ + var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\n\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/, + rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\n\\]|\\.)*?)\2)\]/g; + + /** + * Used to match `RegExp` [syntax characters](http://ecma-international.org/ecma-262/6.0/#sec-patterns) + * and those outlined by [`EscapeRegExpPattern`](http://ecma-international.org/ecma-262/6.0/#sec-escaperegexppattern). + */ + var reRegExpChars = /^[:!,]|[\\^$.*+?()[\]{}|\/]|(^[0-9a-fA-Fnrtuvx])|([\n\r\u2028\u2029])/g, + reHasRegExpChars = RegExp(reRegExpChars.source); + + /** Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). */ + var reComboMark = /[\u0300-\u036f\ufe20-\ufe23]/g; + + /** Used to match backslashes in property paths. */ + var reEscapeChar = /\\(\\)?/g; + + /** Used to match [ES template delimiters](http://ecma-international.org/ecma-262/6.0/#sec-template-literal-lexical-components). */ + var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; + + /** Used to match `RegExp` flags from their coerced string values. */ + var reFlags = /\w*$/; + + /** Used to detect hexadecimal string values. */ + var reHasHexPrefix = /^0[xX]/; + + /** Used to detect host constructors (Safari > 5). */ + var reIsHostCtor = /^\[object .+?Constructor\]$/; + + /** Used to detect unsigned integer values. */ + var reIsUint = /^\d+$/; + + /** Used to match latin-1 supplementary letters (excluding mathematical operators). */ + var reLatin1 = /[\xc0-\xd6\xd8-\xde\xdf-\xf6\xf8-\xff]/g; + + /** Used to ensure capturing order of template delimiters. */ + var reNoMatch = /($^)/; + + /** Used to match unescaped characters in compiled string literals. */ + var reUnescapedString = /['\n\r\u2028\u2029\\]/g; + + /** Used to match words to create compound words. */ + var reWords = (function() { + var upper = '[A-Z\\xc0-\\xd6\\xd8-\\xde]', + lower = '[a-z\\xdf-\\xf6\\xf8-\\xff]+'; + + return RegExp(upper + '+(?=' + upper + lower + ')|' + upper + '?' + lower + '|' + upper + '+|[0-9]+', 'g'); + }()); + + /** Used to assign default `context` object properties. */ + var contextProps = [ + 'Array', 'ArrayBuffer', 'Date', 'Error', 'Float32Array', 'Float64Array', + 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Math', 'Number', + 'Object', 'RegExp', 'Set', 'String', '_', 'clearTimeout', 'isFinite', + 'parseFloat', 'parseInt', 'setTimeout', 'TypeError', 'Uint8Array', + 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap' + ]; + + /** Used to make template sourceURLs easier to identify. */ + var templateCounter = -1; + + /** Used to identify `toStringTag` values of typed arrays. */ + var typedArrayTags = {}; + typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = + typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = + typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = + typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = + typedArrayTags[uint32Tag] = true; + typedArrayTags[argsTag] = typedArrayTags[arrayTag] = + typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = + typedArrayTags[dateTag] = typedArrayTags[errorTag] = + typedArrayTags[funcTag] = typedArrayTags[mapTag] = + typedArrayTags[numberTag] = typedArrayTags[objectTag] = + typedArrayTags[regexpTag] = typedArrayTags[setTag] = + typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false; + + /** Used to identify `toStringTag` values supported by `_.clone`. */ + var cloneableTags = {}; + cloneableTags[argsTag] = cloneableTags[arrayTag] = + cloneableTags[arrayBufferTag] = cloneableTags[boolTag] = + cloneableTags[dateTag] = cloneableTags[float32Tag] = + cloneableTags[float64Tag] = cloneableTags[int8Tag] = + cloneableTags[int16Tag] = cloneableTags[int32Tag] = + cloneableTags[numberTag] = cloneableTags[objectTag] = + cloneableTags[regexpTag] = cloneableTags[stringTag] = + cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = + cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; + cloneableTags[errorTag] = cloneableTags[funcTag] = + cloneableTags[mapTag] = cloneableTags[setTag] = + cloneableTags[weakMapTag] = false; + + /** Used to map latin-1 supplementary letters to basic latin letters. */ + var deburredLetters = { + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcC': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xeC': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss' + }; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''', + '`': '`' + }; + + /** Used to map HTML entities to characters. */ + var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'", + '`': '`' + }; + + /** Used to determine if values are of the language type `Object`. */ + var objectTypes = { + 'function': true, + 'object': true + }; + + /** Used to escape characters for inclusion in compiled regexes. */ + var regexpEscapes = { + '0': 'x30', '1': 'x31', '2': 'x32', '3': 'x33', '4': 'x34', + '5': 'x35', '6': 'x36', '7': 'x37', '8': 'x38', '9': 'x39', + 'A': 'x41', 'B': 'x42', 'C': 'x43', 'D': 'x44', 'E': 'x45', 'F': 'x46', + 'a': 'x61', 'b': 'x62', 'c': 'x63', 'd': 'x64', 'e': 'x65', 'f': 'x66', + 'n': 'x6e', 'r': 'x72', 't': 'x74', 'u': 'x75', 'v': 'x76', 'x': 'x78' + }; + + /** Used to escape characters for inclusion in compiled string literals. */ + var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; + + /** Detect free variable `exports`. */ + var freeExports = objectTypes[typeof exports] && exports && !exports.nodeType && exports; + + /** Detect free variable `module`. */ + var freeModule = objectTypes[typeof module] && module && !module.nodeType && module; + + /** Detect free variable `global` from Node.js. */ + var freeGlobal = freeExports && freeModule && typeof global == 'object' && global && global.Object && global; + + /** Detect free variable `self`. */ + var freeSelf = objectTypes[typeof self] && self && self.Object && self; + + /** Detect free variable `window`. */ + var freeWindow = objectTypes[typeof window] && window && window.Object && window; + + /** Detect the popular CommonJS extension `module.exports`. */ + var moduleExports = freeModule && freeModule.exports === freeExports && freeExports; + + /** + * Used as a reference to the global object. + * + * The `this` value is used if it's the global object to avoid Greasemonkey's + * restricted `window` object, otherwise the `window` object is used. + */ + var root = freeGlobal || ((freeWindow !== (this && this.window)) && freeWindow) || freeSelf || this; + + /*--------------------------------------------------------------------------*/ + + /** + * The base implementation of `compareAscending` which compares values and + * sorts them in ascending order without guaranteeing a stable sort. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ + function baseCompareAscending(value, other) { + if (value !== other) { + var valIsNull = value === null, + valIsUndef = value === undefined, + valIsReflexive = value === value; + + var othIsNull = other === null, + othIsUndef = other === undefined, + othIsReflexive = other === other; + + if ((value > other && !othIsNull) || !valIsReflexive || + (valIsNull && !othIsUndef && othIsReflexive) || + (valIsUndef && othIsReflexive)) { + return 1; + } + if ((value < other && !valIsNull) || !othIsReflexive || + (othIsNull && !valIsUndef && valIsReflexive) || + (othIsUndef && valIsReflexive)) { + return -1; + } + } + return 0; + } + + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for callback shorthands and `this` binding. + * + * @private + * @param {Array} array The array to search. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.indexOf` without support for binary searches. + * + * @private + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOf(array, value, fromIndex) { + if (value !== value) { + return indexOfNaN(array, fromIndex); + } + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.isFunction` without support for environments + * with incorrect `typeof` results. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + */ + function baseIsFunction(value) { + // Avoid a Chakra JIT bug in compatibility modes of IE 11. + // See https://github.com/jashkenas/underscore/issues/1621 for more details. + return typeof value == 'function' || false; + } + + /** + * Converts `value` to a string if it's not one. An empty string is returned + * for `null` or `undefined` values. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ + function baseToString(value) { + return value == null ? '' : (value + ''); + } + + /** + * Used by `_.trim` and `_.trimLeft` to get the index of the first character + * of `string` that is not found in `chars`. + * + * @private + * @param {string} string The string to inspect. + * @param {string} chars The characters to find. + * @returns {number} Returns the index of the first character not found in `chars`. + */ + function charsLeftIndex(string, chars) { + var index = -1, + length = string.length; + + while (++index < length && chars.indexOf(string.charAt(index)) > -1) {} + return index; + } + + /** + * Used by `_.trim` and `_.trimRight` to get the index of the last character + * of `string` that is not found in `chars`. + * + * @private + * @param {string} string The string to inspect. + * @param {string} chars The characters to find. + * @returns {number} Returns the index of the last character not found in `chars`. + */ + function charsRightIndex(string, chars) { + var index = string.length; + + while (index-- && chars.indexOf(string.charAt(index)) > -1) {} + return index; + } + + /** + * Used by `_.sortBy` to compare transformed elements of a collection and stable + * sort them in ascending order. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @returns {number} Returns the sort order indicator for `object`. + */ + function compareAscending(object, other) { + return baseCompareAscending(object.criteria, other.criteria) || (object.index - other.index); + } + + /** + * Used by `_.sortByOrder` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all valuess are sorted in ascending order. Otherwise, + * a value is sorted in ascending order if its corresponding order is "asc", and + * descending if "desc". + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ + function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = baseCompareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * ((order === 'asc' || order === true) ? 1 : -1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://code.google.com/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; + } + + /** + * Used by `_.deburr` to convert latin-1 supplementary letters to basic latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ + function deburrLetter(letter) { + return deburredLetters[letter]; + } + + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeHtmlChar(chr) { + return htmlEscapes[chr]; + } + + /** + * Used by `_.escapeRegExp` to escape characters for inclusion in compiled regexes. + * + * @private + * @param {string} chr The matched character to escape. + * @param {string} leadingChar The capture group for a leading character. + * @param {string} whitespaceChar The capture group for a whitespace character. + * @returns {string} Returns the escaped character. + */ + function escapeRegExpChar(chr, leadingChar, whitespaceChar) { + if (leadingChar) { + chr = regexpEscapes[chr]; + } else if (whitespaceChar) { + chr = stringEscapes[chr]; + } + return '\\' + chr; + } + + /** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; + } + + /** + * Gets the index at which the first occurrence of `NaN` is found in `array`. + * + * @private + * @param {Array} array The array to search. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched `NaN`, else `-1`. + */ + function indexOfNaN(array, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 0 : -1); + + while ((fromRight ? index-- : ++index < length)) { + var other = array[index]; + if (other !== other) { + return index; + } + } + return -1; + } + + /** + * Checks if `value` is object-like. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + */ + function isObjectLike(value) { + return !!value && typeof value == 'object'; + } + + /** + * Used by `trimmedLeftIndex` and `trimmedRightIndex` to determine if a + * character code is whitespace. + * + * @private + * @param {number} charCode The character code to inspect. + * @returns {boolean} Returns `true` if `charCode` is whitespace, else `false`. + */ + function isSpace(charCode) { + return ((charCode <= 160 && (charCode >= 9 && charCode <= 13) || charCode == 32 || charCode == 160) || charCode == 5760 || charCode == 6158 || + (charCode >= 8192 && (charCode <= 8202 || charCode == 8232 || charCode == 8233 || charCode == 8239 || charCode == 8287 || charCode == 12288 || charCode == 65279))); + } + + /** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ + function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = -1, + result = []; + + while (++index < length) { + if (array[index] === placeholder) { + array[index] = PLACEHOLDER; + result[++resIndex] = index; + } + } + return result; + } + + /** + * An implementation of `_.uniq` optimized for sorted arrays without support + * for callback shorthands and `this` binding. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The function invoked per iteration. + * @returns {Array} Returns the new duplicate-value-free array. + */ + function sortedUniq(array, iteratee) { + var seen, + index = -1, + length = array.length, + resIndex = -1, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value, index, array) : value; + + if (!index || seen !== computed) { + seen = computed; + result[++resIndex] = value; + } + } + return result; + } + + /** + * Used by `_.trim` and `_.trimLeft` to get the index of the first non-whitespace + * character of `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the index of the first non-whitespace character. + */ + function trimmedLeftIndex(string) { + var index = -1, + length = string.length; + + while (++index < length && isSpace(string.charCodeAt(index))) {} + return index; + } + + /** + * Used by `_.trim` and `_.trimRight` to get the index of the last non-whitespace + * character of `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the index of the last non-whitespace character. + */ + function trimmedRightIndex(string) { + var index = string.length; + + while (index-- && isSpace(string.charCodeAt(index))) {} + return index; + } + + /** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ + function unescapeHtmlChar(chr) { + return htmlUnescapes[chr]; + } + + /*--------------------------------------------------------------------------*/ + + /** + * Create a new pristine `lodash` function using the given `context` object. + * + * @static + * @memberOf _ + * @category Utility + * @param {Object} [context=root] The context object. + * @returns {Function} Returns a new `lodash` function. + * @example + * + * _.mixin({ 'foo': _.constant('foo') }); + * + * var lodash = _.runInContext(); + * lodash.mixin({ 'bar': lodash.constant('bar') }); + * + * _.isFunction(_.foo); + * // => true + * _.isFunction(_.bar); + * // => false + * + * lodash.isFunction(lodash.foo); + * // => false + * lodash.isFunction(lodash.bar); + * // => true + * + * // using `context` to mock `Date#getTime` use in `_.now` + * var mock = _.runInContext({ + * 'Date': function() { + * return { 'getTime': getTimeMock }; + * } + * }); + * + * // or creating a suped-up `defer` in Node.js + * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; + */ + function runInContext(context) { + // Avoid issues with some ES3 environments that attempt to use values, named + // after built-in constructors like `Object`, for the creation of literals. + // ES5 clears this up by stating that literals must use built-in constructors. + // See https://es5.github.io/#x11.1.5 for more details. + context = context ? _.defaults(root.Object(), context, _.pick(root, contextProps)) : root; + + /** Native constructor references. */ + var Array = context.Array, + Date = context.Date, + Error = context.Error, + Function = context.Function, + Math = context.Math, + Number = context.Number, + Object = context.Object, + RegExp = context.RegExp, + String = context.String, + TypeError = context.TypeError; + + /** Used for native method references. */ + var arrayProto = Array.prototype, + objectProto = Object.prototype, + stringProto = String.prototype; + + /** Used to resolve the decompiled source of functions. */ + var fnToString = Function.prototype.toString; + + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; + + /** Used to generate unique IDs. */ + var idCounter = 0; + + /** + * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) + * of values. + */ + var objToString = objectProto.toString; + + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Used to detect if a method is native. */ + var reIsNative = RegExp('^' + + fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' + ); + + /** Native method references. */ + var ArrayBuffer = context.ArrayBuffer, + clearTimeout = context.clearTimeout, + parseFloat = context.parseFloat, + pow = Math.pow, + propertyIsEnumerable = objectProto.propertyIsEnumerable, + Set = getNative(context, 'Set'), + setTimeout = context.setTimeout, + splice = arrayProto.splice, + Uint8Array = context.Uint8Array, + WeakMap = getNative(context, 'WeakMap'); + + /* Native method references for those with the same name as other `lodash` methods. */ + var nativeCeil = Math.ceil, + nativeCreate = getNative(Object, 'create'), + nativeFloor = Math.floor, + nativeIsArray = getNative(Array, 'isArray'), + nativeIsFinite = context.isFinite, + nativeKeys = getNative(Object, 'keys'), + nativeMax = Math.max, + nativeMin = Math.min, + nativeNow = getNative(Date, 'now'), + nativeParseInt = context.parseInt, + nativeRandom = Math.random; + + /** Used as references for `-Infinity` and `Infinity`. */ + var NEGATIVE_INFINITY = Number.NEGATIVE_INFINITY, + POSITIVE_INFINITY = Number.POSITIVE_INFINITY; + + /** Used as references for the maximum length and index of an array. */ + var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; + + /** + * Used as the [maximum length](http://ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer) + * of an array-like value. + */ + var MAX_SAFE_INTEGER = 9007199254740991; + + /** Used to store function metadata. */ + var metaMap = WeakMap && new WeakMap; + + /** Used to lookup unminified function names. */ + var realNames = {}; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object which wraps `value` to enable implicit chaining. + * Methods that operate on and return arrays, collections, and functions can + * be chained together. Methods that retrieve a single value or may return a + * primitive value will automatically end the chain returning the unwrapped + * value. Explicit chaining may be enabled using `_.chain`. The execution of + * chained methods is lazy, that is, execution is deferred until `_#value` + * is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. Shortcut + * fusion is an optimization strategy which merge iteratee calls; this can help + * to avoid the creation of intermediate data structures and greatly reduce the + * number of iteratee executions. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`, + * `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `compact`, `drop`, `dropRight`, `dropRightWhile`, `dropWhile`, `filter`, + * `first`, `initial`, `last`, `map`, `pluck`, `reject`, `rest`, `reverse`, + * `slice`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, `toArray`, + * and `where` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `at`, `before`, `bind`, `bindAll`, `bindKey`, + * `callback`, `chain`, `chunk`, `commit`, `compact`, `concat`, `constant`, + * `countBy`, `create`, `curry`, `debounce`, `defaults`, `defaultsDeep`, + * `defer`, `delay`, `difference`, `drop`, `dropRight`, `dropRightWhile`, + * `dropWhile`, `fill`, `filter`, `flatten`, `flattenDeep`, `flow`, `flowRight`, + * `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`, `forOwnRight`, + * `functions`, `groupBy`, `indexBy`, `initial`, `intersection`, `invert`, + * `invoke`, `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, + * `matchesProperty`, `memoize`, `merge`, `method`, `methodOf`, `mixin`, + * `modArgs`, `negate`, `omit`, `once`, `pairs`, `partial`, `partialRight`, + * `partition`, `pick`, `plant`, `pluck`, `property`, `propertyOf`, `pull`, + * `pullAt`, `push`, `range`, `rearg`, `reject`, `remove`, `rest`, `restParam`, + * `reverse`, `set`, `shuffle`, `slice`, `sort`, `sortBy`, `sortByAll`, + * `sortByOrder`, `splice`, `spread`, `take`, `takeRight`, `takeRightWhile`, + * `takeWhile`, `tap`, `throttle`, `thru`, `times`, `toArray`, `toPlainObject`, + * `transform`, `union`, `uniq`, `unshift`, `unzip`, `unzipWith`, `values`, + * `valuesIn`, `where`, `without`, `wrap`, `xor`, `zip`, `zipObject`, `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clone`, `cloneDeep`, + * `deburr`, `endsWith`, `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, + * `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `findWhere`, `first`, + * `floor`, `get`, `gt`, `gte`, `has`, `identity`, `includes`, `indexOf`, + * `inRange`, `isArguments`, `isArray`, `isBoolean`, `isDate`, `isElement`, + * `isEmpty`, `isEqual`, `isError`, `isFinite` `isFunction`, `isMatch`, + * `isNative`, `isNaN`, `isNull`, `isNumber`, `isObject`, `isPlainObject`, + * `isRegExp`, `isString`, `isUndefined`, `isTypedArray`, `join`, `kebabCase`, + * `last`, `lastIndexOf`, `lt`, `lte`, `max`, `min`, `noConflict`, `noop`, + * `now`, `pad`, `padLeft`, `padRight`, `parseInt`, `pop`, `random`, `reduce`, + * `reduceRight`, `repeat`, `result`, `round`, `runInContext`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedLastIndex`, `startCase`, + * `startsWith`, `sum`, `template`, `trim`, `trimLeft`, `trimRight`, `trunc`, + * `unescape`, `uniqueId`, `value`, and `words` + * + * The wrapper method `sample` will return a wrapped value when `n` is provided, + * otherwise an unwrapped value is returned. + * + * @name _ + * @constructor + * @category Chain + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var wrapped = _([1, 2, 3]); + * + * // returns an unwrapped value + * wrapped.reduce(function(total, n) { + * return total + n; + * }); + * // => 6 + * + * // returns a wrapped value + * var squares = wrapped.map(function(n) { + * return n * n; + * }); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ + function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__chain__') && hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } + } + return new LodashWrapper(value); + } + + /** + * The function whose prototype all chaining wrappers inherit from. + * + * @private + */ + function baseLodash() { + // No operation performed. + } + + /** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable chaining for all wrapper methods. + * @param {Array} [actions=[]] Actions to peform to resolve the unwrapped value. + */ + function LodashWrapper(value, chainAll, actions) { + this.__wrapped__ = value; + this.__actions__ = actions || []; + this.__chain__ = !!chainAll; + } + + /** + * An object environment feature flags. + * + * @static + * @memberOf _ + * @type Object + */ + var support = lodash.support = {}; + + /** + * By default, the template delimiters used by lodash are like those in + * embedded Ruby (ERB). Change the following template settings to use + * alternative delimiters. + * + * @static + * @memberOf _ + * @type Object + */ + lodash.templateSettings = { + + /** + * Used to detect `data` property values to be HTML-escaped. + * + * @memberOf _.templateSettings + * @type RegExp + */ + 'escape': reEscape, + + /** + * Used to detect code to be evaluated. + * + * @memberOf _.templateSettings + * @type RegExp + */ + 'evaluate': reEvaluate, + + /** + * Used to detect `data` property values to inject. + * + * @memberOf _.templateSettings + * @type RegExp + */ + 'interpolate': reInterpolate, + + /** + * Used to reference the data object in the template text. + * + * @memberOf _.templateSettings + * @type string + */ + 'variable': '', + + /** + * Used to import variables into the compiled template. + * + * @memberOf _.templateSettings + * @type Object + */ + 'imports': { + + /** + * A reference to the `lodash` function. + * + * @memberOf _.templateSettings.imports + * @type Function + */ + '_': lodash + } + }; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @param {*} value The value to wrap. + */ + function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = POSITIVE_INFINITY; + this.__views__ = []; + } + + /** + * Creates a clone of the lazy wrapper object. + * + * @private + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. + */ + function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = arrayCopy(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = arrayCopy(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = arrayCopy(this.__views__); + return result; + } + + /** + * Reverses the direction of lazy iteration. + * + * @private + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. + */ + function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; + } + + /** + * Extracts the unwrapped value from its lazy wrapper. + * + * @private + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. + */ + function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); + + if (!isArr || arrLength < LARGE_ARRAY_SIZE || (arrLength == length && takeCount == length)) { + return baseWrapperValue((isRight && isArr) ? array.reverse() : array, this.__actions__); + } + var result = []; + + outer: + while (length-- && resIndex < takeCount) { + index += dir; + + var iterIndex = -1, + value = array[index]; + + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } + } + } + result[resIndex++] = value; + } + return result; + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates a cache object to store key/value pairs. + * + * @private + * @static + * @name Cache + * @memberOf _.memoize + */ + function MapCache() { + this.__data__ = {}; + } + + /** + * Removes `key` and its value from the cache. + * + * @private + * @name delete + * @memberOf _.memoize.Cache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed successfully, else `false`. + */ + function mapDelete(key) { + return this.has(key) && delete this.__data__[key]; + } + + /** + * Gets the cached value for `key`. + * + * @private + * @name get + * @memberOf _.memoize.Cache + * @param {string} key The key of the value to get. + * @returns {*} Returns the cached value. + */ + function mapGet(key) { + return key == '__proto__' ? undefined : this.__data__[key]; + } + + /** + * Checks if a cached value for `key` exists. + * + * @private + * @name has + * @memberOf _.memoize.Cache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function mapHas(key) { + return key != '__proto__' && hasOwnProperty.call(this.__data__, key); + } + + /** + * Sets `value` to `key` of the cache. + * + * @private + * @name set + * @memberOf _.memoize.Cache + * @param {string} key The key of the value to cache. + * @param {*} value The value to cache. + * @returns {Object} Returns the cache object. + */ + function mapSet(key, value) { + if (key != '__proto__') { + this.__data__[key] = value; + } + return this; + } + + /*------------------------------------------------------------------------*/ + + /** + * + * Creates a cache object to store unique values. + * + * @private + * @param {Array} [values] The values to cache. + */ + function SetCache(values) { + var length = values ? values.length : 0; + + this.data = { 'hash': nativeCreate(null), 'set': new Set }; + while (length--) { + this.push(values[length]); + } + } + + /** + * Checks if `value` is in `cache` mimicking the return signature of + * `_.indexOf` by returning `0` if the value is found, else `-1`. + * + * @private + * @param {Object} cache The cache to search. + * @param {*} value The value to search for. + * @returns {number} Returns `0` if `value` is found, else `-1`. + */ + function cacheIndexOf(cache, value) { + var data = cache.data, + result = (typeof value == 'string' || isObject(value)) ? data.set.has(value) : data.hash[value]; + + return result ? 0 : -1; + } + + /** + * Adds `value` to the cache. + * + * @private + * @name push + * @memberOf SetCache + * @param {*} value The value to cache. + */ + function cachePush(value) { + var data = this.data; + if (typeof value == 'string' || isObject(value)) { + data.set.add(value); + } else { + data.hash[value] = true; + } + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates a new array joining `array` with `other`. + * + * @private + * @param {Array} array The array to join. + * @param {Array} other The other array to join. + * @returns {Array} Returns the new concatenated array. + */ + function arrayConcat(array, other) { + var index = -1, + length = array.length, + othIndex = -1, + othLength = other.length, + result = Array(length + othLength); + + while (++index < length) { + result[index] = array[index]; + } + while (++othIndex < othLength) { + result[index++] = other[othIndex]; + } + return result; + } + + /** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ + function arrayCopy(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; + } + + /** + * A specialized version of `_.forEach` for arrays without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEach(array, iteratee) { + var index = -1, + length = array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.forEachRight` for arrays without support for + * callback shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEachRight(array, iteratee) { + var length = array.length; + + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.every` for arrays without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ + function arrayEvery(array, predicate) { + var index = -1, + length = array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; + } + + /** + * A specialized version of `baseExtremum` for arrays which invokes `iteratee` + * with one argument: (value). + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} comparator The function used to compare values. + * @param {*} exValue The initial extremum value. + * @returns {*} Returns the extremum value. + */ + function arrayExtremum(array, iteratee, comparator, exValue) { + var index = -1, + length = array.length, + computed = exValue, + result = computed; + + while (++index < length) { + var value = array[index], + current = +iteratee(value); + + if (comparator(current, computed)) { + computed = current; + result = value; + } + } + return result; + } + + /** + * A specialized version of `_.filter` for arrays without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function arrayFilter(array, predicate) { + var index = -1, + length = array.length, + resIndex = -1, + result = []; + + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[++resIndex] = value; + } + } + return result; + } + + /** + * A specialized version of `_.map` for arrays without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function arrayMap(array, iteratee) { + var index = -1, + length = array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; + } + + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; + } + return array; + } + + /** + * A specialized version of `_.reduce` for arrays without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initFromArray] Specify using the first element of `array` + * as the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduce(array, iteratee, accumulator, initFromArray) { + var index = -1, + length = array.length; + + if (initFromArray && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; + } + + /** + * A specialized version of `_.reduceRight` for arrays without support for + * callback shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initFromArray] Specify using the last element of `array` + * as the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduceRight(array, iteratee, accumulator, initFromArray) { + var length = array.length; + if (initFromArray && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); + } + return accumulator; + } + + /** + * A specialized version of `_.some` for arrays without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function arraySome(array, predicate) { + var index = -1, + length = array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } + } + return false; + } + + /** + * A specialized version of `_.sum` for arrays without support for callback + * shorthands and `this` binding.. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function arraySum(array, iteratee) { + var length = array.length, + result = 0; + + while (length--) { + result += +iteratee(array[length]) || 0; + } + return result; + } + + /** + * Used by `_.defaults` to customize its `_.assign` use. + * + * @private + * @param {*} objectValue The destination object property value. + * @param {*} sourceValue The source object property value. + * @returns {*} Returns the value to assign to the destination object. + */ + function assignDefaults(objectValue, sourceValue) { + return objectValue === undefined ? sourceValue : objectValue; + } + + /** + * Used by `_.template` to customize its `_.assign` use. + * + * **Note:** This function is like `assignDefaults` except that it ignores + * inherited property values when checking if a property is `undefined`. + * + * @private + * @param {*} objectValue The destination object property value. + * @param {*} sourceValue The source object property value. + * @param {string} key The key associated with the object and source values. + * @param {Object} object The destination object. + * @returns {*} Returns the value to assign to the destination object. + */ + function assignOwnDefaults(objectValue, sourceValue, key, object) { + return (objectValue === undefined || !hasOwnProperty.call(object, key)) + ? sourceValue + : objectValue; + } + + /** + * A specialized version of `_.assign` for customizing assigned values without + * support for argument juggling, multiple sources, and `this` binding `customizer` + * functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + */ + function assignWith(object, source, customizer) { + var index = -1, + props = keys(source), + length = props.length; + + while (++index < length) { + var key = props[index], + value = object[key], + result = customizer(value, source[key], key, object, source); + + if ((result === result ? (result !== value) : (value === value)) || + (value === undefined && !(key in object))) { + object[key] = result; + } + } + return object; + } + + /** + * The base implementation of `_.assign` without support for argument juggling, + * multiple sources, and `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssign(object, source) { + return source == null + ? object + : baseCopy(source, keys(source), object); + } + + /** + * The base implementation of `_.at` without support for string collections + * and individual key arguments. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {number[]|string[]} props The property names or indexes of elements to pick. + * @returns {Array} Returns the new array of picked elements. + */ + function baseAt(collection, props) { + var index = -1, + isNil = collection == null, + isArr = !isNil && isArrayLike(collection), + length = isArr ? collection.length : 0, + propsLength = props.length, + result = Array(propsLength); + + while(++index < propsLength) { + var key = props[index]; + if (isArr) { + result[index] = isIndex(key, length) ? collection[key] : undefined; + } else { + result[index] = isNil ? undefined : collection[key]; + } + } + return result; + } + + /** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property names to copy. + * @param {Object} [object={}] The object to copy properties to. + * @returns {Object} Returns `object`. + */ + function baseCopy(source, props, object) { + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + object[key] = source[key]; + } + return object; + } + + /** + * The base implementation of `_.callback` which supports specifying the + * number of arguments to provide to `func`. + * + * @private + * @param {*} [func=_.identity] The value to convert to a callback. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {number} [argCount] The number of arguments to provide to `func`. + * @returns {Function} Returns the callback. + */ + function baseCallback(func, thisArg, argCount) { + var type = typeof func; + if (type == 'function') { + return thisArg === undefined + ? func + : bindCallback(func, thisArg, argCount); + } + if (func == null) { + return identity; + } + if (type == 'object') { + return baseMatches(func); + } + return thisArg === undefined + ? property(func) + : baseMatchesProperty(func, thisArg); + } + + /** + * The base implementation of `_.clone` without support for argument juggling + * and `this` binding `customizer` functions. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @param {Function} [customizer] The function to customize cloning values. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The object `value` belongs to. + * @param {Array} [stackA=[]] Tracks traversed source objects. + * @param {Array} [stackB=[]] Associates clones with source counterparts. + * @returns {*} Returns the cloned value. + */ + function baseClone(value, isDeep, customizer, key, object, stackA, stackB) { + var result; + if (customizer) { + result = object ? customizer(value, key, object) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return arrayCopy(value, result); + } + } else { + var tag = objToString.call(value), + isFunc = tag == funcTag; + + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = initCloneObject(isFunc ? {} : value); + if (!isDeep) { + return baseAssign(result, value); + } + } else { + return cloneableTags[tag] + ? initCloneByTag(value, tag, isDeep) + : (object ? value : {}); + } + } + // Check for circular references and return its corresponding clone. + stackA || (stackA = []); + stackB || (stackB = []); + + var length = stackA.length; + while (length--) { + if (stackA[length] == value) { + return stackB[length]; + } + } + // Add the source value to the stack of traversed objects and associate it with its clone. + stackA.push(value); + stackB.push(result); + + // Recursively populate clone (susceptible to call stack limits). + (isArr ? arrayEach : baseForOwn)(value, function(subValue, key) { + result[key] = baseClone(subValue, isDeep, customizer, key, value, stackA, stackB); + }); + return result; + } + + /** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} prototype The object to inherit from. + * @returns {Object} Returns the new object. + */ + var baseCreate = (function() { + function object() {} + return function(prototype) { + if (isObject(prototype)) { + object.prototype = prototype; + var result = new object; + object.prototype = undefined; + } + return result || {}; + }; + }()); + + /** + * The base implementation of `_.delay` and `_.defer` which accepts an index + * of where to slice the arguments to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Object} args The arguments provide to `func`. + * @returns {number} Returns the timer id. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of `_.difference` which accepts a single array + * of values to exclude. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @returns {Array} Returns the new array of filtered values. + */ + function baseDifference(array, values) { + var length = array ? array.length : 0, + result = []; + + if (!length) { + return result; + } + var index = -1, + indexOf = getIndexOf(), + isCommon = indexOf == baseIndexOf, + cache = (isCommon && values.length >= LARGE_ARRAY_SIZE) ? createCache(values) : null, + valuesLength = values.length; + + if (cache) { + indexOf = cacheIndexOf; + isCommon = false; + values = cache; + } + outer: + while (++index < length) { + var value = array[index]; + + if (isCommon && value === value) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === value) { + continue outer; + } + } + result.push(value); + } + else if (indexOf(values, value, 0) < 0) { + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.forEach` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object|string} Returns `collection`. + */ + var baseEach = createBaseEach(baseForOwn); + + /** + * The base implementation of `_.forEachRight` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object|string} Returns `collection`. + */ + var baseEachRight = createBaseEach(baseForOwnRight, true); + + /** + * The base implementation of `_.every` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; + } + + /** + * Gets the extremum value of `collection` invoking `iteratee` for each value + * in `collection` to generate the criterion by which the value is ranked. + * The `iteratee` is invoked with three arguments: (value, index|key, collection). + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} comparator The function used to compare values. + * @param {*} exValue The initial extremum value. + * @returns {*} Returns the extremum value. + */ + function baseExtremum(collection, iteratee, comparator, exValue) { + var computed = exValue, + result = computed; + + baseEach(collection, function(value, index, collection) { + var current = +iteratee(value, index, collection); + if (comparator(current, computed) || (current === exValue && current === result)) { + computed = current; + result = value; + } + }); + return result; + } + + /** + * The base implementation of `_.fill` without an iteratee call guard. + * + * @private + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + */ + function baseFill(array, value, start, end) { + var length = array.length; + + start = start == null ? 0 : (+start || 0); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : (+end || 0); + if (end < 0) { + end += length; + } + length = start > end ? 0 : (end >>> 0); + start >>>= 0; + + while (start < length) { + array[start++] = value; + } + return array; + } + + /** + * The base implementation of `_.filter` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } + + /** + * The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`, + * without support for callback shorthands and `this` binding, which iterates + * over `collection` using the provided `eachFunc`. + * + * @private + * @param {Array|Object|string} collection The collection to search. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @param {boolean} [retKey] Specify returning the key of the found element + * instead of the element itself. + * @returns {*} Returns the found element or its key, else `undefined`. + */ + function baseFind(collection, predicate, eachFunc, retKey) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = retKey ? key : value; + return false; + } + }); + return result; + } + + /** + * The base implementation of `_.flatten` with added support for restricting + * flattening and specifying the start index. + * + * @private + * @param {Array} array The array to flatten. + * @param {boolean} [isDeep] Specify a deep flatten. + * @param {boolean} [isStrict] Restrict flattening to arrays-like objects. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, isDeep, isStrict, result) { + result || (result = []); + + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index]; + if (isObjectLike(value) && isArrayLike(value) && + (isStrict || isArray(value) || isArguments(value))) { + if (isDeep) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, isDeep, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; + } + + /** + * The base implementation of `baseForIn` and `baseForOwn` which iterates + * over `object` properties returned by `keysFunc` invoking `iteratee` for + * each property. Iteratee functions may exit iteration early by explicitly + * returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseFor = createBaseFor(); + + /** + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseForRight = createBaseFor(true); + + /** + * The base implementation of `_.forIn` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForIn(object, iteratee) { + return baseFor(object, iteratee, keysIn); + } + + /** + * The base implementation of `_.forOwn` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwn(object, iteratee) { + return baseFor(object, iteratee, keys); + } + + /** + * The base implementation of `_.forOwnRight` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwnRight(object, iteratee) { + return baseForRight(object, iteratee, keys); + } + + /** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from those provided. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the new array of filtered property names. + */ + function baseFunctions(object, props) { + var index = -1, + length = props.length, + resIndex = -1, + result = []; + + while (++index < length) { + var key = props[index]; + if (isFunction(object[key])) { + result[++resIndex] = key; + } + } + return result; + } + + /** + * The base implementation of `get` without support for string paths + * and default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path of the property to get. + * @param {string} [pathKey] The key representation of path. + * @returns {*} Returns the resolved value. + */ + function baseGet(object, path, pathKey) { + if (object == null) { + return; + } + if (pathKey !== undefined && pathKey in toObject(object)) { + path = [pathKey]; + } + var index = 0, + length = path.length; + + while (object != null && index < length) { + object = object[path[index++]]; + } + return (index && index == length) ? object : undefined; + } + + /** + * The base implementation of `_.isEqual` without support for `this` binding + * `customizer` functions. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparing values. + * @param {boolean} [isLoose] Specify performing partial comparisons. + * @param {Array} [stackA] Tracks traversed `value` objects. + * @param {Array} [stackB] Tracks traversed `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ + function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObject(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, baseIsEqual, customizer, isLoose, stackA, stackB); + } + + /** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Function} [customizer] The function to customize comparing objects. + * @param {boolean} [isLoose] Specify performing partial comparisons. + * @param {Array} [stackA=[]] Tracks traversed `value` objects. + * @param {Array} [stackB=[]] Tracks traversed `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA, stackB) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = arrayTag, + othTag = arrayTag; + + if (!objIsArr) { + objTag = objToString.call(object); + if (objTag == argsTag) { + objTag = objectTag; + } else if (objTag != objectTag) { + objIsArr = isTypedArray(object); + } + } + if (!othIsArr) { + othTag = objToString.call(other); + if (othTag == argsTag) { + othTag = objectTag; + } else if (othTag != objectTag) { + othIsArr = isTypedArray(other); + } + } + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && !(objIsArr || objIsObj)) { + return equalByTag(object, other, objTag); + } + if (!isLoose) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + return equalFunc(objIsWrapped ? object.value() : object, othIsWrapped ? other.value() : other, customizer, isLoose, stackA, stackB); + } + } + if (!isSameTag) { + return false; + } + // Assume cyclic values are equal. + // For more information on detecting circular references see https://es5.github.io/#JO. + stackA || (stackA = []); + stackB || (stackB = []); + + var length = stackA.length; + while (length--) { + if (stackA[length] == object) { + return stackB[length] == other; + } + } + // Add `object` and `other` to the stack of traversed objects. + stackA.push(object); + stackB.push(other); + + var result = (objIsArr ? equalArrays : equalObjects)(object, other, equalFunc, customizer, isLoose, stackA, stackB); + + stackA.pop(); + stackB.pop(); + + return result; + } + + /** + * The base implementation of `_.isMatch` without support for callback + * shorthands and `this` binding. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} matchData The propery names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparing objects. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + */ + function baseIsMatch(object, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; + } + object = toObject(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var result = customizer ? customizer(objValue, srcValue, key) : undefined; + if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, true) : result)) { + return false; + } + } + } + return true; + } + + /** + * The base implementation of `_.map` without support for callback shorthands + * and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which does not clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new function. + */ + function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + var key = matchData[0][0], + value = matchData[0][1]; + + return function(object) { + if (object == null) { + return false; + } + return object[key] === value && (value !== undefined || (key in toObject(object))); + }; + } + return function(object) { + return baseIsMatch(object, matchData); + }; + } + + /** + * The base implementation of `_.matchesProperty` which does not clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to compare. + * @returns {Function} Returns the new function. + */ + function baseMatchesProperty(path, srcValue) { + var isArr = isArray(path), + isCommon = isKey(path) && isStrictComparable(srcValue), + pathKey = (path + ''); + + path = toPath(path); + return function(object) { + if (object == null) { + return false; + } + var key = pathKey; + object = toObject(object); + if ((isArr || !isCommon) && !(key in object)) { + object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1)); + if (object == null) { + return false; + } + key = last(path); + object = toObject(object); + } + return object[key] === srcValue + ? (srcValue !== undefined || (key in object)) + : baseIsEqual(srcValue, object[key], undefined, true); + }; + } + + /** + * The base implementation of `_.merge` without support for argument juggling, + * multiple sources, and `this` binding `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {Function} [customizer] The function to customize merged values. + * @param {Array} [stackA=[]] Tracks traversed source objects. + * @param {Array} [stackB=[]] Associates values with source counterparts. + * @returns {Object} Returns `object`. + */ + function baseMerge(object, source, customizer, stackA, stackB) { + if (!isObject(object)) { + return object; + } + var isSrcArr = isArrayLike(source) && (isArray(source) || isTypedArray(source)), + props = isSrcArr ? undefined : keys(source); + + arrayEach(props || source, function(srcValue, key) { + if (props) { + key = srcValue; + srcValue = source[key]; + } + if (isObjectLike(srcValue)) { + stackA || (stackA = []); + stackB || (stackB = []); + baseMergeDeep(object, source, key, baseMerge, customizer, stackA, stackB); + } + else { + var value = object[key], + result = customizer ? customizer(value, srcValue, key, object, source) : undefined, + isCommon = result === undefined; + + if (isCommon) { + result = srcValue; + } + if ((result !== undefined || (isSrcArr && !(key in object))) && + (isCommon || (result === result ? (result !== value) : (value === value)))) { + object[key] = result; + } + } + }); + return object; + } + + /** + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize merged values. + * @param {Array} [stackA=[]] Tracks traversed source objects. + * @param {Array} [stackB=[]] Associates values with source counterparts. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stackB) { + var length = stackA.length, + srcValue = source[key]; + + while (length--) { + if (stackA[length] == srcValue) { + object[key] = stackB[length]; + return; + } + } + var value = object[key], + result = customizer ? customizer(value, srcValue, key, object, source) : undefined, + isCommon = result === undefined; + + if (isCommon) { + result = srcValue; + if (isArrayLike(srcValue) && (isArray(srcValue) || isTypedArray(srcValue))) { + result = isArray(value) + ? value + : (isArrayLike(value) ? arrayCopy(value) : []); + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + result = isArguments(value) + ? toPlainObject(value) + : (isPlainObject(value) ? value : {}); + } + else { + isCommon = false; + } + } + // Add the source value to the stack of traversed objects and associate + // it with its merged value. + stackA.push(srcValue); + stackB.push(result); + + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + object[key] = mergeFunc(result, srcValue, customizer, stackA, stackB); + } else if (result === result ? (result !== value) : (value === value)) { + object[key] = result; + } + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new function. + */ + function basePropertyDeep(path) { + var pathKey = (path + ''); + path = toPath(path); + return function(object) { + return baseGet(object, path, pathKey); + }; + } + + /** + * The base implementation of `_.pullAt` without support for individual + * index arguments and capturing the removed elements. + * + * @private + * @param {Array} array The array to modify. + * @param {number[]} indexes The indexes of elements to remove. + * @returns {Array} Returns `array`. + */ + function basePullAt(array, indexes) { + var length = array ? indexes.length : 0; + while (length--) { + var index = indexes[length]; + if (index != previous && isIndex(index)) { + var previous = index; + splice.call(array, index, 1); + } + } + return array; + } + + /** + * The base implementation of `_.random` without support for argument juggling + * and returning floating-point numbers. + * + * @private + * @param {number} min The minimum possible value. + * @param {number} max The maximum possible value. + * @returns {number} Returns the random number. + */ + function baseRandom(min, max) { + return min + nativeFloor(nativeRandom() * (max - min + 1)); + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight` without support + * for callback shorthands and `this` binding, which iterates over `collection` + * using the provided `eachFunc`. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initFromCollection Specify using the first or last element + * of `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initFromCollection, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initFromCollection + ? (initFromCollection = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `setData` without support for hot loop detection. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; + }; + + /** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + start = start == null ? 0 : (+start || 0); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : (+end || 0); + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; + } + + /** + * The base implementation of `_.some` without support for callback shorthands + * and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `_.sortBy` which uses `comparer` to define + * the sort order of `array` and replaces criteria objects with their + * corresponding values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ + function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; + } + + /** + * The base implementation of `_.sortByOrder` without param guards. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {boolean[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. + */ + function baseSortByOrder(collection, iteratees, orders) { + var callback = getCallback(), + index = -1; + + iteratees = arrayMap(iteratees, function(iteratee) { return callback(iteratee); }); + + var result = baseMap(collection, function(value) { + var criteria = arrayMap(iteratees, function(iteratee) { return iteratee(value); }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); + } + + /** + * The base implementation of `_.sum` without support for callback shorthands + * and `this` binding. + * + * @private + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function baseSum(collection, iteratee) { + var result = 0; + baseEach(collection, function(value, index, collection) { + result += +iteratee(value, index, collection) || 0; + }); + return result; + } + + /** + * The base implementation of `_.uniq` without support for callback shorthands + * and `this` binding. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The function invoked per iteration. + * @returns {Array} Returns the new duplicate-value-free array. + */ + function baseUniq(array, iteratee) { + var index = -1, + indexOf = getIndexOf(), + length = array.length, + isCommon = indexOf == baseIndexOf, + isLarge = isCommon && length >= LARGE_ARRAY_SIZE, + seen = isLarge ? createCache() : null, + result = []; + + if (seen) { + indexOf = cacheIndexOf; + isCommon = false; + } else { + isLarge = false; + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value, index, array) : value; + + if (isCommon && value === value) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (indexOf(seen, computed, 0) < 0) { + if (iteratee || isLarge) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + var index = -1, + length = props.length, + result = Array(length); + + while (++index < length) { + result[index] = object[props[index]]; + } + return result; + } + + /** + * The base implementation of `_.dropRightWhile`, `_.dropWhile`, `_.takeRightWhile`, + * and `_.takeWhile` without support for callback shorthands and `this` binding. + * + * @private + * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the slice of `array`. + */ + function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && predicate(array[index], index, array)) {} + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); + } + + /** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to peform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ + function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); + } + var index = -1, + length = actions.length; + + while (++index < length) { + var action = actions[index]; + result = action.func.apply(action.thisArg, arrayPush([result], action.args)); + } + return result; + } + + /** + * Performs a binary search of `array` to determine the index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function binaryIndex(array, value, retHighest) { + var low = 0, + high = array ? array.length : low; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if ((retHighest ? (computed <= value) : (computed < value)) && computed !== null) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return binaryIndexBy(array, value, identity, retHighest); + } + + /** + * This function is like `binaryIndex` except that it invokes `iteratee` for + * `value` and each element of `array` to compute their sort ranking. The + * iteratee is invoked with one argument; (value). + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} iteratee The function invoked per iteration. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function binaryIndexBy(array, value, iteratee, retHighest) { + value = iteratee(value); + + var low = 0, + high = array ? array.length : 0, + valIsNaN = value !== value, + valIsNull = value === null, + valIsUndef = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + isDef = computed !== undefined, + isReflexive = computed === computed; + + if (valIsNaN) { + var setLow = isReflexive || retHighest; + } else if (valIsNull) { + setLow = isReflexive && isDef && (retHighest || computed != null); + } else if (valIsUndef) { + setLow = isReflexive && (retHighest || isDef); + } else if (computed == null) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); + } + + /** + * A specialized version of `baseCallback` which only supports `this` binding + * and specifying the number of arguments to provide to `func`. + * + * @private + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {number} [argCount] The number of arguments to provide to `func`. + * @returns {Function} Returns the callback. + */ + function bindCallback(func, thisArg, argCount) { + if (typeof func != 'function') { + return identity; + } + if (thisArg === undefined) { + return func; + } + switch (argCount) { + case 1: return function(value) { + return func.call(thisArg, value); + }; + case 3: return function(value, index, collection) { + return func.call(thisArg, value, index, collection); + }; + case 4: return function(accumulator, value, index, collection) { + return func.call(thisArg, accumulator, value, index, collection); + }; + case 5: return function(value, other, key, object, source) { + return func.call(thisArg, value, other, key, object, source); + }; + } + return function() { + return func.apply(thisArg, arguments); + }; + } + + /** + * Creates a clone of the given array buffer. + * + * @private + * @param {ArrayBuffer} buffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ + function bufferClone(buffer) { + var result = new ArrayBuffer(buffer.byteLength), + view = new Uint8Array(result); + + view.set(new Uint8Array(buffer)); + return result; + } + + /** + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. + * + * @private + * @param {Array|Object} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgs(args, partials, holders) { + var holdersLength = holders.length, + argsIndex = -1, + argsLength = nativeMax(args.length - holdersLength, 0), + leftIndex = -1, + leftLength = partials.length, + result = Array(leftLength + argsLength); + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + while (argsLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; + } + + /** + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. + * + * @private + * @param {Array|Object} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgsRight(args, partials, holders) { + var holdersIndex = -1, + holdersLength = holders.length, + argsIndex = -1, + argsLength = nativeMax(args.length - holdersLength, 0), + rightIndex = -1, + rightLength = partials.length, + result = Array(argsLength + rightLength); + + while (++argsIndex < argsLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + return result; + } + + /** + * Creates a `_.countBy`, `_.groupBy`, `_.indexBy`, or `_.partition` function. + * + * @private + * @param {Function} setter The function to set keys and values of the accumulator object. + * @param {Function} [initializer] The function to initialize the accumulator object. + * @returns {Function} Returns the new aggregator function. + */ + function createAggregator(setter, initializer) { + return function(collection, iteratee, thisArg) { + var result = initializer ? initializer() : {}; + iteratee = getCallback(iteratee, thisArg, 3); + + if (isArray(collection)) { + var index = -1, + length = collection.length; + + while (++index < length) { + var value = collection[index]; + setter(result, value, iteratee(value, index, collection), collection); + } + } else { + baseEach(collection, function(value, key, collection) { + setter(result, value, iteratee(value, key, collection), collection); + }); + } + return result; + }; + } + + /** + * Creates a `_.assign`, `_.defaults`, or `_.merge` function. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ + function createAssigner(assigner) { + return restParam(function(object, sources) { + var index = -1, + length = object == null ? 0 : sources.length, + customizer = length > 2 ? sources[length - 2] : undefined, + guard = length > 2 ? sources[2] : undefined, + thisArg = length > 1 ? sources[length - 1] : undefined; + + if (typeof customizer == 'function') { + customizer = bindCallback(customizer, thisArg, 5); + length -= 2; + } else { + customizer = typeof thisArg == 'function' ? thisArg : undefined; + length -= (customizer ? 1 : 0); + } + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, customizer); + } + } + return object; + }); + } + + /** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + var length = collection ? getLength(collection) : 0; + if (!isLength(length)) { + return eachFunc(collection, iteratee); + } + var index = fromRight ? length : -1, + iterable = toObject(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; + } + + /** + * Creates a base function for `_.forIn` or `_.forInRight`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var iterable = toObject(object), + props = keysFunc(object), + length = props.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length)) { + var key = props[index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; + } + + /** + * Creates a function that wraps `func` and invokes it with the `this` + * binding of `thisArg`. + * + * @private + * @param {Function} func The function to bind. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new bound function. + */ + function createBindWrapper(func, thisArg) { + var Ctor = createCtorWrapper(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(thisArg, arguments); + } + return wrapper; + } + + /** + * Creates a `Set` cache object to optimize linear searches of large arrays. + * + * @private + * @param {Array} [values] The values to cache. + * @returns {null|Object} Returns the new cache object if `Set` is supported, else `null`. + */ + function createCache(values) { + return (nativeCreate && Set) ? new SetCache(values) : null; + } + + /** + * Creates a function that produces compound words out of the words in a + * given string. + * + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. + */ + function createCompounder(callback) { + return function(string) { + var index = -1, + array = words(deburr(string)), + length = array.length, + result = ''; + + while (++index < length) { + result = callback(result, array[index], index); + } + return result; + }; + } + + /** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ + function createCtorWrapper(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. + // See http://ecma-international.org/ecma-262/6.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; + } + + /** + * Creates a `_.curry` or `_.curryRight` function. + * + * @private + * @param {boolean} flag The curry bit flag. + * @returns {Function} Returns the new curry function. + */ + function createCurry(flag) { + function curryFunc(func, arity, guard) { + if (guard && isIterateeCall(func, arity, guard)) { + arity = undefined; + } + var result = createWrapper(func, flag, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryFunc.placeholder; + return result; + } + return curryFunc; + } + + /** + * Creates a `_.defaults` or `_.defaultsDeep` function. + * + * @private + * @param {Function} assigner The function to assign values. + * @param {Function} customizer The function to customize assigned values. + * @returns {Function} Returns the new defaults function. + */ + function createDefaults(assigner, customizer) { + return restParam(function(args) { + var object = args[0]; + if (object == null) { + return object; + } + args.push(customizer); + return assigner.apply(undefined, args); + }); + } + + /** + * Creates a `_.max` or `_.min` function. + * + * @private + * @param {Function} comparator The function used to compare values. + * @param {*} exValue The initial extremum value. + * @returns {Function} Returns the new extremum function. + */ + function createExtremum(comparator, exValue) { + return function(collection, iteratee, thisArg) { + if (thisArg && isIterateeCall(collection, iteratee, thisArg)) { + iteratee = undefined; + } + iteratee = getCallback(iteratee, thisArg, 3); + if (iteratee.length == 1) { + collection = isArray(collection) ? collection : toIterable(collection); + var result = arrayExtremum(collection, iteratee, comparator, exValue); + if (!(collection.length && result === exValue)) { + return result; + } + } + return baseExtremum(collection, iteratee, comparator, exValue); + }; + } + + /** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new find function. + */ + function createFind(eachFunc, fromRight) { + return function(collection, predicate, thisArg) { + predicate = getCallback(predicate, thisArg, 3); + if (isArray(collection)) { + var index = baseFindIndex(collection, predicate, fromRight); + return index > -1 ? collection[index] : undefined; + } + return baseFind(collection, predicate, eachFunc); + }; + } + + /** + * Creates a `_.findIndex` or `_.findLastIndex` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new find function. + */ + function createFindIndex(fromRight) { + return function(array, predicate, thisArg) { + if (!(array && array.length)) { + return -1; + } + predicate = getCallback(predicate, thisArg, 3); + return baseFindIndex(array, predicate, fromRight); + }; + } + + /** + * Creates a `_.findKey` or `_.findLastKey` function. + * + * @private + * @param {Function} objectFunc The function to iterate over an object. + * @returns {Function} Returns the new find function. + */ + function createFindKey(objectFunc) { + return function(object, predicate, thisArg) { + predicate = getCallback(predicate, thisArg, 3); + return baseFind(object, predicate, objectFunc, true); + }; + } + + /** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ + function createFlow(fromRight) { + return function() { + var wrapper, + length = arguments.length, + index = fromRight ? length : -1, + leftIndex = 0, + funcs = Array(length); + + while ((fromRight ? index-- : ++index < length)) { + var func = funcs[leftIndex++] = arguments[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (!wrapper && LodashWrapper.prototype.thru && getFuncName(func) == 'wrapper') { + wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? -1 : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && data[1] == (ARY_FLAG | CURRY_FLAG | PARTIAL_FLAG | REARG_FLAG) && !data[4].length && data[9] == 1) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) ? wrapper[funcName]() : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value) && value.length >= LARGE_ARRAY_SIZE) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }; + } + + /** + * Creates a function for `_.forEach` or `_.forEachRight`. + * + * @private + * @param {Function} arrayFunc The function to iterate over an array. + * @param {Function} eachFunc The function to iterate over a collection. + * @returns {Function} Returns the new each function. + */ + function createForEach(arrayFunc, eachFunc) { + return function(collection, iteratee, thisArg) { + return (typeof iteratee == 'function' && thisArg === undefined && isArray(collection)) + ? arrayFunc(collection, iteratee) + : eachFunc(collection, bindCallback(iteratee, thisArg, 3)); + }; + } + + /** + * Creates a function for `_.forIn` or `_.forInRight`. + * + * @private + * @param {Function} objectFunc The function to iterate over an object. + * @returns {Function} Returns the new each function. + */ + function createForIn(objectFunc) { + return function(object, iteratee, thisArg) { + if (typeof iteratee != 'function' || thisArg !== undefined) { + iteratee = bindCallback(iteratee, thisArg, 3); + } + return objectFunc(object, iteratee, keysIn); + }; + } + + /** + * Creates a function for `_.forOwn` or `_.forOwnRight`. + * + * @private + * @param {Function} objectFunc The function to iterate over an object. + * @returns {Function} Returns the new each function. + */ + function createForOwn(objectFunc) { + return function(object, iteratee, thisArg) { + if (typeof iteratee != 'function' || thisArg !== undefined) { + iteratee = bindCallback(iteratee, thisArg, 3); + } + return objectFunc(object, iteratee); + }; + } + + /** + * Creates a function for `_.mapKeys` or `_.mapValues`. + * + * @private + * @param {boolean} [isMapKeys] Specify mapping keys instead of values. + * @returns {Function} Returns the new map function. + */ + function createObjectMapper(isMapKeys) { + return function(object, iteratee, thisArg) { + var result = {}; + iteratee = getCallback(iteratee, thisArg, 3); + + baseForOwn(object, function(value, key, object) { + var mapped = iteratee(value, key, object); + key = isMapKeys ? mapped : key; + value = isMapKeys ? value : mapped; + result[key] = value; + }); + return result; + }; + } + + /** + * Creates a function for `_.padLeft` or `_.padRight`. + * + * @private + * @param {boolean} [fromRight] Specify padding from the right. + * @returns {Function} Returns the new pad function. + */ + function createPadDir(fromRight) { + return function(string, length, chars) { + string = baseToString(string); + return (fromRight ? string : '') + createPadding(string, length, chars) + (fromRight ? '' : string); + }; + } + + /** + * Creates a `_.partial` or `_.partialRight` function. + * + * @private + * @param {boolean} flag The partial bit flag. + * @returns {Function} Returns the new partial function. + */ + function createPartial(flag) { + var partialFunc = restParam(function(func, partials) { + var holders = replaceHolders(partials, partialFunc.placeholder); + return createWrapper(func, flag, undefined, partials, holders); + }); + return partialFunc; + } + + /** + * Creates a function for `_.reduce` or `_.reduceRight`. + * + * @private + * @param {Function} arrayFunc The function to iterate over an array. + * @param {Function} eachFunc The function to iterate over a collection. + * @returns {Function} Returns the new each function. + */ + function createReduce(arrayFunc, eachFunc) { + return function(collection, iteratee, accumulator, thisArg) { + var initFromArray = arguments.length < 3; + return (typeof iteratee == 'function' && thisArg === undefined && isArray(collection)) + ? arrayFunc(collection, iteratee, accumulator, initFromArray) + : baseReduce(collection, getCallback(iteratee, thisArg, 4), accumulator, initFromArray, eachFunc); + }; + } + + /** + * Creates a function that wraps `func` and invokes it with optional `this` + * binding of, partial application, and currying. + * + * @private + * @param {Function|string} func The function or method name to reference. + * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createHybridWrapper(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & ARY_FLAG, + isBind = bitmask & BIND_FLAG, + isBindKey = bitmask & BIND_KEY_FLAG, + isCurry = bitmask & CURRY_FLAG, + isCurryBound = bitmask & CURRY_BOUND_FLAG, + isCurryRight = bitmask & CURRY_RIGHT_FLAG, + Ctor = isBindKey ? undefined : createCtorWrapper(func); + + function wrapper() { + // Avoid `arguments` object use disqualifying optimizations by + // converting it to an array before providing it to other functions. + var length = arguments.length, + index = length, + args = Array(length); + + while (index--) { + args[index] = arguments[index]; + } + if (partials) { + args = composeArgs(args, partials, holders); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight); + } + if (isCurry || isCurryRight) { + var placeholder = wrapper.placeholder, + argsHolders = replaceHolders(args, placeholder); + + length -= argsHolders.length; + if (length < arity) { + var newArgPos = argPos ? arrayCopy(argPos) : undefined, + newArity = nativeMax(arity - length, 0), + newsHolders = isCurry ? argsHolders : undefined, + newHoldersRight = isCurry ? undefined : argsHolders, + newPartials = isCurry ? args : undefined, + newPartialsRight = isCurry ? undefined : args; + + bitmask |= (isCurry ? PARTIAL_FLAG : PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? PARTIAL_RIGHT_FLAG : PARTIAL_FLAG); + + if (!isCurryBound) { + bitmask &= ~(BIND_FLAG | BIND_KEY_FLAG); + } + var newData = [func, bitmask, thisArg, newPartials, newsHolders, newPartialsRight, newHoldersRight, newArgPos, ary, newArity], + result = createHybridWrapper.apply(undefined, newData); + + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return result; + } + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + if (argPos) { + args = reorder(args, argPos); + } + if (isAry && ary < args.length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtorWrapper(func); + } + return fn.apply(thisBinding, args); + } + return wrapper; + } + + /** + * Creates the padding required for `string` based on the given `length`. + * The `chars` string is truncated if the number of characters exceeds `length`. + * + * @private + * @param {string} string The string to create padding for. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the pad for `string`. + */ + function createPadding(string, length, chars) { + var strLength = string.length; + length = +length; + + if (strLength >= length || !nativeIsFinite(length)) { + return ''; + } + var padLength = length - strLength; + chars = chars == null ? ' ' : (chars + ''); + return repeat(chars, nativeCeil(padLength / chars.length)).slice(0, padLength); + } + + /** + * Creates a function that wraps `func` and invokes it with the optional `this` + * binding of `thisArg` and the `partials` prepended to those provided to + * the wrapper. + * + * @private + * @param {Function} func The function to partially apply arguments to. + * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to the new function. + * @returns {Function} Returns the new bound function. + */ + function createPartialWrapper(func, bitmask, thisArg, partials) { + var isBind = bitmask & BIND_FLAG, + Ctor = createCtorWrapper(func); + + function wrapper() { + // Avoid `arguments` object use disqualifying optimizations by + // converting it to an array before providing it `func`. + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength); + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, args); + } + return wrapper; + } + + /** + * Creates a `_.ceil`, `_.floor`, or `_.round` function. + * + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. + */ + function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + precision = precision === undefined ? 0 : (+precision || 0); + if (precision) { + precision = pow(10, precision); + return func(number * precision) / precision; + } + return func(number); + }; + } + + /** + * Creates a `_.sortedIndex` or `_.sortedLastIndex` function. + * + * @private + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {Function} Returns the new index function. + */ + function createSortedIndex(retHighest) { + return function(array, value, iteratee, thisArg) { + var callback = getCallback(iteratee); + return (iteratee == null && callback === baseCallback) + ? binaryIndex(array, value, retHighest) + : binaryIndexBy(array, value, callback(iteratee, thisArg, 1), retHighest); + }; + } + + /** + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. + * + * @private + * @param {Function|string} func The function or method name to reference. + * @param {number} bitmask The bitmask of flags. + * The bitmask may be composed of the following flags: + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createWrapper(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(PARTIAL_FLAG | PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + length -= (holders ? holders.length : 0); + if (bitmask & PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func), + newData = [func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity]; + + if (data) { + mergeData(newData, data); + bitmask = newData[1]; + arity = newData[9]; + } + newData[9] = arity == null + ? (isBindKey ? 0 : func.length) + : (nativeMax(arity - length, 0) || 0); + + if (bitmask == BIND_FLAG) { + var result = createBindWrapper(newData[0], newData[2]); + } else if ((bitmask == PARTIAL_FLAG || bitmask == (BIND_FLAG | PARTIAL_FLAG)) && !newData[4].length) { + result = createPartialWrapper.apply(undefined, newData); + } else { + result = createHybridWrapper.apply(undefined, newData); + } + var setter = data ? baseSetData : setData; + return setter(result, newData); + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Function} [customizer] The function to customize comparing arrays. + * @param {boolean} [isLoose] Specify performing partial comparisons. + * @param {Array} [stackA] Tracks traversed `value` objects. + * @param {Array} [stackB] Tracks traversed `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ + function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stackB) { + var index = -1, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isLoose && othLength > arrLength)) { + return false; + } + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index], + result = customizer ? customizer(isLoose ? othValue : arrValue, isLoose ? arrValue : othValue, index) : undefined; + + if (result !== undefined) { + if (result) { + continue; + } + return false; + } + // Recursively compare arrays (susceptible to call stack limits). + if (isLoose) { + if (!arraySome(other, function(othValue) { + return arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB); + })) { + return false; + } + } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB))) { + return false; + } + } + return true; + } + + /** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalByTag(object, other, tag) { + switch (tag) { + case boolTag: + case dateTag: + // Coerce dates and booleans to numbers, dates to milliseconds and booleans + // to `1` or `0` treating invalid dates coerced to `NaN` as not equal. + return +object == +other; + + case errorTag: + return object.name == other.name && object.message == other.message; + + case numberTag: + // Treat `NaN` vs. `NaN` as equal. + return (object != +object) + ? other != +other + : object == +other; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings primitives and string + // objects as equal. See https://es5.github.io/#x15.10.6.4 for more details. + return object == (other + ''); + } + return false; + } + + /** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Function} [customizer] The function to customize comparing values. + * @param {boolean} [isLoose] Specify performing partial comparisons. + * @param {Array} [stackA] Tracks traversed `value` objects. + * @param {Array} [stackB] Tracks traversed `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, stackB) { + var objProps = keys(object), + objLength = objProps.length, + othProps = keys(other), + othLength = othProps.length; + + if (objLength != othLength && !isLoose) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isLoose ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + var skipCtor = isLoose; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key], + result = customizer ? customizer(isLoose ? othValue : objValue, isLoose? objValue : othValue, key) : undefined; + + // Recursively compare objects (susceptible to call stack limits). + if (!(result === undefined ? equalFunc(objValue, othValue, customizer, isLoose, stackA, stackB) : result)) { + return false; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (!skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + return false; + } + } + return true; + } + + /** + * Gets the appropriate "callback" function. If the `_.callback` method is + * customized this function returns the custom method, otherwise it returns + * the `baseCallback` function. If arguments are provided the chosen function + * is invoked with them and its result is returned. + * + * @private + * @returns {Function} Returns the chosen function or its result. + */ + function getCallback(func, thisArg, argCount) { + var result = lodash.callback || callback; + result = result === callback ? baseCallback : result; + return argCount ? result(func, thisArg, argCount) : result; + } + + /** + * Gets metadata for `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ + var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); + }; + + /** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ + function getFuncName(func) { + var result = func.name, + array = realNames[result], + length = array ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; + } + + /** + * Gets the appropriate "indexOf" function. If the `_.indexOf` method is + * customized this function returns the custom method, otherwise it returns + * the `baseIndexOf` function. If arguments are provided the chosen function + * is invoked with them and its result is returned. + * + * @private + * @returns {Function|number} Returns the chosen function or its result. + */ + function getIndexOf(collection, target, fromIndex) { + var result = lodash.indexOf || indexOf; + result = result === indexOf ? baseIndexOf : result; + return collection ? result(collection, target, fromIndex) : result; + } + + /** + * Gets the "length" property value of `object`. + * + * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792) + * that affects Safari on at least iOS 8.1-8.3 ARM64. + * + * @private + * @param {Object} object The object to query. + * @returns {*} Returns the "length" value. + */ + var getLength = baseProperty('length'); + + /** + * Gets the propery names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ + function getMatchData(object) { + var result = pairs(object), + length = result.length; + + while (length--) { + result[length][2] = isStrictComparable(result[length][1]); + } + return result; + } + + /** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ + function getNative(object, key) { + var value = object == null ? undefined : object[key]; + return isNative(value) ? value : undefined; + } + + /** + * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. + */ + function getView(start, end, transforms) { + var index = -1, + length = transforms.length; + + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; + } + } + return { 'start': start, 'end': end }; + } + + /** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ + function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add array properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; + } + + /** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneObject(object) { + var Ctor = object.constructor; + if (!(typeof Ctor == 'function' && Ctor instanceof Ctor)) { + Ctor = Object; + } + return new Ctor; + } + + /** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return bufferClone(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + var buffer = object.buffer; + return new Ctor(isDeep ? bufferClone(buffer) : buffer, object.byteOffset, object.length); + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + var result = new Ctor(object.source, reFlags.exec(object)); + result.lastIndex = object.lastIndex; + } + return result; + } + + /** + * Invokes the method at `path` on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + */ + function invokePath(object, path, args) { + if (object != null && !isKey(path, object)) { + path = toPath(path); + object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1)); + path = last(path); + } + var func = object == null ? object : object[path]; + return func == null ? undefined : func.apply(object, args); + } + + /** + * Checks if `value` is array-like. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + */ + function isArrayLike(value) { + return value != null && isLength(getLength(value)); + } + + /** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ + function isIndex(value, length) { + value = (typeof value == 'number' || reIsUint.test(value)) ? +value : -1; + length = length == null ? MAX_SAFE_INTEGER : length; + return value > -1 && value % 1 == 0 && value < length; + } + + /** + * Checks if the provided arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`. + */ + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object)) { + var other = object[index]; + return value === value ? (value === other) : (other !== other); + } + return false; + } + + /** + * Checks if `value` is a property name and not a property path. + * + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + */ + function isKey(value, object) { + var type = typeof value; + if ((type == 'string' && reIsPlainProp.test(value)) || type == 'number') { + return true; + } + if (isArray(value)) { + return false; + } + var result = !reIsDeepProp.test(value); + return result || (object != null && value in toObject(object)); + } + + /** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, else `false`. + */ + function isLaziable(func) { + var funcName = getFuncName(func); + if (!(funcName in LazyWrapper.prototype)) { + return false; + } + var other = lodash[funcName]; + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; + } + + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This function is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + */ + function isLength(value) { + return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } + + /** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ + function isStrictComparable(value) { + return value === value && !isObject(value); + } + + /** + * Merges the function metadata of `source` into `data`. + * + * Merging metadata reduces the number of wrappers required to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and `_.rearg` + * augment function arguments, making the order in which they are executed important, + * preventing the merging of metadata. However, we make an exception for a safe + * common case where curried functions have `_.ary` and or `_.rearg` applied. + * + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. + */ + function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < ARY_FLAG; + + var isCombo = + (srcBitmask == ARY_FLAG && bitmask == CURRY_FLAG) || + (srcBitmask == ARY_FLAG && bitmask == REARG_FLAG && data[7].length <= source[8]) || + (srcBitmask == (ARY_FLAG | REARG_FLAG) && bitmask == CURRY_FLAG); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; + } + // Use source `thisArg` if available. + if (srcBitmask & BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= (bitmask & BIND_FLAG) ? 0 : CURRY_BOUND_FLAG; + } + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : arrayCopy(value); + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : arrayCopy(source[4]); + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : arrayCopy(value); + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : arrayCopy(source[6]); + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = arrayCopy(value); + } + // Use source `ary` if it's smaller. + if (srcBitmask & ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; + } + + /** + * Used by `_.defaultsDeep` to customize its `_.merge` use. + * + * @private + * @param {*} objectValue The destination object property value. + * @param {*} sourceValue The source object property value. + * @returns {*} Returns the value to assign to the destination object. + */ + function mergeDefaults(objectValue, sourceValue) { + return objectValue === undefined ? sourceValue : merge(objectValue, sourceValue, mergeDefaults); + } + + /** + * A specialized version of `_.pick` which picks `object` properties specified + * by `props`. + * + * @private + * @param {Object} object The source object. + * @param {string[]} props The property names to pick. + * @returns {Object} Returns the new object. + */ + function pickByArray(object, props) { + object = toObject(object); + + var index = -1, + length = props.length, + result = {}; + + while (++index < length) { + var key = props[index]; + if (key in object) { + result[key] = object[key]; + } + } + return result; + } + + /** + * A specialized version of `_.pick` which picks `object` properties `predicate` + * returns truthy for. + * + * @private + * @param {Object} object The source object. + * @param {Function} predicate The function invoked per iteration. + * @returns {Object} Returns the new object. + */ + function pickByCallback(object, predicate) { + var result = {}; + baseForIn(object, function(value, key, object) { + if (predicate(value, key, object)) { + result[key] = value; + } + }); + return result; + } + + /** + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. + * + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. + */ + function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = arrayCopy(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; + } + + /** + * Sets metadata for `func`. + * + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity function + * to avoid garbage collection pauses in V8. See [V8 issue 2070](https://code.google.com/p/v8/issues/detail?id=2070) + * for more details. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var setData = (function() { + var count = 0, + lastCalled = 0; + + return function(key, value) { + var stamp = now(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return key; + } + } else { + count = 0; + } + return baseSetData(key, value); + }; + }()); + + /** + * A fallback implementation of `Object.keys` which creates an array of the + * own enumerable property names of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function shimKeys(object) { + var props = keysIn(object), + propsLength = props.length, + length = propsLength && object.length; + + var allowIndexes = !!length && isLength(length) && + (isArray(object) || isArguments(object)); + + var index = -1, + result = []; + + while (++index < propsLength) { + var key = props[index]; + if ((allowIndexes && isIndex(key, length)) || hasOwnProperty.call(object, key)) { + result.push(key); + } + } + return result; + } + + /** + * Converts `value` to an array-like object if it's not one. + * + * @private + * @param {*} value The value to process. + * @returns {Array|Object} Returns the array-like object. + */ + function toIterable(value) { + if (value == null) { + return []; + } + if (!isArrayLike(value)) { + return values(value); + } + return isObject(value) ? value : Object(value); + } + + /** + * Converts `value` to an object if it's not one. + * + * @private + * @param {*} value The value to process. + * @returns {Object} Returns the object. + */ + function toObject(value) { + return isObject(value) ? value : Object(value); + } + + /** + * Converts `value` to property path array if it's not one. + * + * @private + * @param {*} value The value to process. + * @returns {Array} Returns the property path array. + */ + function toPath(value) { + if (isArray(value)) { + return value; + } + var result = []; + baseToString(value).replace(rePropName, function(match, number, quote, string) { + result.push(quote ? string.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; + } + + /** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ + function wrapperClone(wrapper) { + return wrapper instanceof LazyWrapper + ? wrapper.clone() + : new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__, arrayCopy(wrapper.__actions__)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of elements split into groups the length of `size`. + * If `collection` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the new array containing chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ + function chunk(array, size, guard) { + if (guard ? isIterateeCall(array, size, guard) : size == null) { + size = 1; + } else { + size = nativeMax(nativeFloor(size) || 1, 1); + } + var index = 0, + length = array ? array.length : 0, + resIndex = -1, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[++resIndex] = baseSlice(array, index, (index += size)); + } + return result; + } + + /** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ + function compact(array) { + var index = -1, + length = array ? array.length : 0, + resIndex = -1, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[++resIndex] = value; + } + } + return result; + } + + /** + * Creates an array of unique `array` values not included in the other + * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The arrays of values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.difference([1, 2, 3], [4, 2]); + * // => [1, 3] + */ + var difference = restParam(function(array, values) { + return (isObjectLike(array) && isArrayLike(array)) + ? baseDifference(array, baseFlatten(values, false, true)) + : []; + }); + + /** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function drop(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + return baseSlice(array, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function dropRight(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + n = length - (+n || 0); + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * bound to `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that match the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRightWhile([1, 2, 3], function(n) { + * return n > 1; + * }); + * // => [1] + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.dropRightWhile(users, { 'user': 'pebbles', 'active': false }), 'user'); + * // => ['barney', 'fred'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.dropRightWhile(users, 'active', false), 'user'); + * // => ['barney'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.dropRightWhile(users, 'active'), 'user'); + * // => ['barney', 'fred', 'pebbles'] + */ + function dropRightWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, getCallback(predicate, thisArg, 3), true, true) + : []; + } + + /** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * bound to `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropWhile([1, 2, 3], function(n) { + * return n < 3; + * }); + * // => [3] + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.dropWhile(users, { 'user': 'barney', 'active': false }), 'user'); + * // => ['fred', 'pebbles'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.dropWhile(users, 'active', false), 'user'); + * // => ['pebbles'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.dropWhile(users, 'active'), 'user'); + * // => ['barney', 'fred', 'pebbles'] + */ + function dropWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, getCallback(predicate, thisArg, 3), true) + : []; + } + + /** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8], '*', 1, 2); + * // => [4, '*', 8] + */ + function fill(array, value, start, end) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); + } + + /** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(chr) { + * return chr.user == 'barney'; + * }); + * // => 0 + * + * // using the `_.matches` callback shorthand + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // using the `_.matchesProperty` callback shorthand + * _.findIndex(users, 'active', false); + * // => 0 + * + * // using the `_.property` callback shorthand + * _.findIndex(users, 'active'); + * // => 2 + */ + var findIndex = createFindIndex(); + + /** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(chr) { + * return chr.user == 'pebbles'; + * }); + * // => 2 + * + * // using the `_.matches` callback shorthand + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // using the `_.matchesProperty` callback shorthand + * _.findLastIndex(users, 'active', false); + * // => 2 + * + * // using the `_.property` callback shorthand + * _.findLastIndex(users, 'active'); + * // => 0 + */ + var findLastIndex = createFindIndex(true); + + /** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @alias head + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.first([1, 2, 3]); + * // => 1 + * + * _.first([]); + * // => undefined + */ + function first(array) { + return array ? array[0] : undefined; + } + + /** + * Flattens a nested array. If `isDeep` is `true` the array is recursively + * flattened, otherwise it is only flattened a single level. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to flatten. + * @param {boolean} [isDeep] Specify a deep flatten. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, 3, [4]]]); + * // => [1, 2, 3, [4]] + * + * // using `isDeep` + * _.flatten([1, [2, 3, [4]]], true); + * // => [1, 2, 3, 4] + */ + function flatten(array, isDeep, guard) { + var length = array ? array.length : 0; + if (guard && isIterateeCall(array, isDeep, guard)) { + isDeep = false; + } + return length ? baseFlatten(array, isDeep) : []; + } + + /** + * Recursively flattens a nested array. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to recursively flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, 3, [4]]]); + * // => [1, 2, 3, 4] + */ + function flattenDeep(array) { + var length = array ? array.length : 0; + return length ? baseFlatten(array, true) : []; + } + + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it is used as the offset + * from the end of `array`. If `array` is sorted providing `true` for `fromIndex` + * performs a faster binary search. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @param {boolean|number} [fromIndex=0] The index to search from or `true` + * to perform a binary search on a sorted array. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // using `fromIndex` + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + * + * // performing a binary search + * _.indexOf([1, 1, 2, 2], 2, true); + * // => 2 + */ + function indexOf(array, value, fromIndex) { + var length = array ? array.length : 0; + if (!length) { + return -1; + } + if (typeof fromIndex == 'number') { + fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : fromIndex; + } else if (fromIndex) { + var index = binaryIndex(array, value); + if (index < length && + (value === value ? (value === array[index]) : (array[index] !== array[index]))) { + return index; + } + return -1; + } + return baseIndexOf(array, value, fromIndex || 0); + } + + /** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ + function initial(array) { + return dropRight(array, 1); + } + + /** + * Creates an array of unique values that are included in all of the provided + * arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of shared values. + * @example + * _.intersection([1, 2], [4, 2], [2, 1]); + * // => [2] + */ + var intersection = restParam(function(arrays) { + var othLength = arrays.length, + othIndex = othLength, + caches = Array(length), + indexOf = getIndexOf(), + isCommon = indexOf == baseIndexOf, + result = []; + + while (othIndex--) { + var value = arrays[othIndex] = isArrayLike(value = arrays[othIndex]) ? value : []; + caches[othIndex] = (isCommon && value.length >= 120) ? createCache(othIndex && value) : null; + } + var array = arrays[0], + index = -1, + length = array ? array.length : 0, + seen = caches[0]; + + outer: + while (++index < length) { + value = array[index]; + if ((seen ? cacheIndexOf(seen, value) : indexOf(result, value, 0)) < 0) { + var othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if ((cache ? cacheIndexOf(cache, value) : indexOf(arrays[othIndex], value, 0)) < 0) { + continue outer; + } + } + if (seen) { + seen.push(value); + } + result.push(value); + } + } + return result; + }); + + /** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ + function last(array) { + var length = array ? array.length : 0; + return length ? array[length - 1] : undefined; + } + + /** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @param {boolean|number} [fromIndex=array.length-1] The index to search from + * or `true` to perform a binary search on a sorted array. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // using `fromIndex` + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + * + * // performing a binary search + * _.lastIndexOf([1, 1, 2, 2], 2, true); + * // => 3 + */ + function lastIndexOf(array, value, fromIndex) { + var length = array ? array.length : 0; + if (!length) { + return -1; + } + var index = length; + if (typeof fromIndex == 'number') { + index = (fromIndex < 0 ? nativeMax(length + fromIndex, 0) : nativeMin(fromIndex || 0, length - 1)) + 1; + } else if (fromIndex) { + index = binaryIndex(array, value, true) - 1; + var other = array[index]; + if (value === value ? (value === other) : (other !== other)) { + return index; + } + return -1; + } + if (value !== value) { + return indexOfNaN(array, index, true); + } + while (index--) { + if (array[index] === value) { + return index; + } + } + return -1; + } + + /** + * Removes all provided values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3, 1, 2, 3]; + * + * _.pull(array, 2, 3); + * console.log(array); + * // => [1, 1] + */ + function pull() { + var args = arguments, + array = args[0]; + + if (!(array && array.length)) { + return array; + } + var index = 0, + indexOf = getIndexOf(), + length = args.length; + + while (++index < length) { + var fromIndex = 0, + value = args[index]; + + while ((fromIndex = indexOf(array, value, fromIndex)) > -1) { + splice.call(array, fromIndex, 1); + } + } + return array; + } + + /** + * Removes elements from `array` corresponding to the given indexes and returns + * an array of the removed elements. Indexes may be specified as an array of + * indexes or as individual arguments. + * + * **Note:** Unlike `_.at`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove, + * specified as individual indexes or arrays of indexes. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [5, 10, 15, 20]; + * var evens = _.pullAt(array, 1, 3); + * + * console.log(array); + * // => [5, 15] + * + * console.log(evens); + * // => [10, 20] + */ + var pullAt = restParam(function(array, indexes) { + indexes = baseFlatten(indexes); + + var result = baseAt(array, indexes); + basePullAt(array, indexes.sort(baseCompareAscending)); + return result; + }); + + /** + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is bound to + * `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * **Note:** Unlike `_.filter`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); + * + * console.log(array); + * // => [1, 3] + * + * console.log(evens); + * // => [2, 4] + */ + function remove(array, predicate, thisArg) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = getCallback(predicate, thisArg, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; + } + + /** + * Gets all but the first element of `array`. + * + * @static + * @memberOf _ + * @alias tail + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.rest([1, 2, 3]); + * // => [2, 3] + */ + function rest(array) { + return drop(array, 1); + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of `Array#slice` to support node + * lists in IE < 9 and to ensure dense arrays are returned. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function slice(array, start, end) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; + } + return baseSlice(array, start, end); + } + + /** + * Uses a binary search to determine the lowest index at which `value` should + * be inserted into `array` in order to maintain its sort order. If an iteratee + * function is provided it is invoked for `value` and each element of `array` + * to compute their sort ranking. The iteratee is bound to `thisArg` and + * invoked with one argument; (value). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + * + * _.sortedIndex([4, 4, 5, 5], 5); + * // => 2 + * + * var dict = { 'data': { 'thirty': 30, 'forty': 40, 'fifty': 50 } }; + * + * // using an iteratee function + * _.sortedIndex(['thirty', 'fifty'], 'forty', function(word) { + * return this.data[word]; + * }, dict); + * // => 1 + * + * // using the `_.property` callback shorthand + * _.sortedIndex([{ 'x': 30 }, { 'x': 50 }], { 'x': 40 }, 'x'); + * // => 1 + */ + var sortedIndex = createSortedIndex(); + + /** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedLastIndex([4, 4, 5, 5], 5); + * // => 4 + */ + var sortedLastIndex = createSortedIndex(true); + + /** + * Creates a slice of `array` with `n` elements taken from the beginning. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.take([1, 2, 3]); + * // => [1] + * + * _.take([1, 2, 3], 2); + * // => [1, 2] + * + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.take([1, 2, 3], 0); + * // => [] + */ + function take(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with `n` elements taken from the end. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRight([1, 2, 3]); + * // => [3] + * + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] + * + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.takeRight([1, 2, 3], 0); + * // => [] + */ + function takeRight(array, n, guard) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (guard ? isIterateeCall(array, n, guard) : n == null) { + n = 1; + } + n = length - (+n || 0); + return baseSlice(array, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is bound to `thisArg` + * and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRightWhile([1, 2, 3], function(n) { + * return n > 1; + * }); + * // => [2, 3] + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.takeRightWhile(users, { 'user': 'pebbles', 'active': false }), 'user'); + * // => ['pebbles'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.takeRightWhile(users, 'active', false), 'user'); + * // => ['fred', 'pebbles'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.takeRightWhile(users, 'active'), 'user'); + * // => [] + */ + function takeRightWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, getCallback(predicate, thisArg, 3), false, true) + : []; + } + + /** + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is bound to + * `thisArg` and invoked with three arguments: (value, index, array). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to query. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeWhile([1, 2, 3], function(n) { + * return n < 3; + * }); + * // => [1, 2] + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false}, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.takeWhile(users, { 'user': 'barney', 'active': false }), 'user'); + * // => ['barney'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.takeWhile(users, 'active', false), 'user'); + * // => ['barney', 'fred'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.takeWhile(users, 'active'), 'user'); + * // => [] + */ + function takeWhile(array, predicate, thisArg) { + return (array && array.length) + ? baseWhile(array, getCallback(predicate, thisArg, 3)) + : []; + } + + /** + * Creates an array of unique values, in order, from all of the provided arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.union([1, 2], [4, 2], [2, 1]); + * // => [1, 2, 4] + */ + var union = restParam(function(arrays) { + return baseUniq(baseFlatten(arrays, false, true)); + }); + + /** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurence of each element + * is kept. Providing `true` for `isSorted` performs a faster search algorithm + * for sorted arrays. If an iteratee function is provided it is invoked for + * each element in the array to generate the criterion by which uniqueness + * is computed. The `iteratee` is bound to `thisArg` and invoked with three + * arguments: (value, index, array). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias unique + * @category Array + * @param {Array} array The array to inspect. + * @param {boolean} [isSorted] Specify the array is sorted. + * @param {Function|Object|string} [iteratee] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new duplicate-value-free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + * + * // using `isSorted` + * _.uniq([1, 1, 2], true); + * // => [1, 2] + * + * // using an iteratee function + * _.uniq([1, 2.5, 1.5, 2], function(n) { + * return this.floor(n); + * }, Math); + * // => [1, 2.5] + * + * // using the `_.property` callback shorthand + * _.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + function uniq(array, isSorted, iteratee, thisArg) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + if (isSorted != null && typeof isSorted != 'boolean') { + thisArg = iteratee; + iteratee = isIterateeCall(array, isSorted, thisArg) ? undefined : isSorted; + isSorted = false; + } + var callback = getCallback(); + if (!(iteratee == null && callback === baseCallback)) { + iteratee = callback(iteratee, thisArg, 3); + } + return (isSorted && getIndexOf() == baseIndexOf) + ? sortedUniq(array, iteratee) + : baseUniq(array, iteratee); + } + + /** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['fred', 'barney'], [30, 40], [true, false]); + * // => [['fred', 30, true], ['barney', 40, false]] + * + * _.unzip(zipped); + * // => [['fred', 'barney'], [30, 40], [true, false]] + */ + function unzip(array) { + if (!(array && array.length)) { + return []; + } + var index = -1, + length = 0; + + array = arrayFilter(array, function(group) { + if (isArrayLike(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + var result = Array(length); + while (++index < length) { + result[index] = arrayMap(array, baseProperty(index)); + } + return result; + } + + /** + * This method is like `_.unzip` except that it accepts an iteratee to specify + * how regrouped values should be combined. The `iteratee` is bound to `thisArg` + * and invoked with four arguments: (accumulator, value, index, group). + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee] The function to combine regrouped values. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] + * + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] + */ + function unzipWith(array, iteratee, thisArg) { + var length = array ? array.length : 0; + if (!length) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + iteratee = bindCallback(iteratee, thisArg, 4); + return arrayMap(result, function(group) { + return arrayReduce(group, iteratee, undefined, true); + }); + } + + /** + * Creates an array excluding all provided values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to filter. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.without([1, 2, 1, 3], 1, 2); + * // => [3] + */ + var without = restParam(function(array, values) { + return isArrayLike(array) + ? baseDifference(array, values) + : []; + }); + + /** + * Creates an array of unique values that is the [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the provided arrays. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of values. + * @example + * + * _.xor([1, 2], [4, 2]); + * // => [1, 4] + */ + function xor() { + var index = -1, + length = arguments.length; + + while (++index < length) { + var array = arguments[index]; + if (isArrayLike(array)) { + var result = result + ? arrayPush(baseDifference(result, array), baseDifference(array, result)) + : array; + } + } + return result ? baseUniq(result) : []; + } + + /** + * Creates an array of grouped elements, the first of which contains the first + * elements of the given arrays, the second of which contains the second elements + * of the given arrays, and so on. + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['fred', 'barney'], [30, 40], [true, false]); + * // => [['fred', 30, true], ['barney', 40, false]] + */ + var zip = restParam(unzip); + + /** + * The inverse of `_.pairs`; this method returns an object composed from arrays + * of property names and values. Provide either a single two dimensional array, + * e.g. `[[key1, value1], [key2, value2]]` or two arrays, one of property names + * and one of corresponding values. + * + * @static + * @memberOf _ + * @alias object + * @category Array + * @param {Array} props The property names. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObject([['fred', 30], ['barney', 40]]); + * // => { 'fred': 30, 'barney': 40 } + * + * _.zipObject(['fred', 'barney'], [30, 40]); + * // => { 'fred': 30, 'barney': 40 } + */ + function zipObject(props, values) { + var index = -1, + length = props ? props.length : 0, + result = {}; + + if (length && !values && !isArray(props[0])) { + values = []; + } + while (++index < length) { + var key = props[index]; + if (values) { + result[key] = values[index]; + } else if (key) { + result[key[0]] = key[1]; + } + } + return result; + } + + /** + * This method is like `_.zip` except that it accepts an iteratee to specify + * how grouped values should be combined. The `iteratee` is bound to `thisArg` + * and invoked with four arguments: (accumulator, value, index, group). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee] The function to combine grouped values. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zipWith([1, 2], [10, 20], [100, 200], _.add); + * // => [111, 222] + */ + var zipWith = restParam(function(arrays) { + var length = arrays.length, + iteratee = length > 2 ? arrays[length - 2] : undefined, + thisArg = length > 1 ? arrays[length - 1] : undefined; + + if (length > 2 && typeof iteratee == 'function') { + length -= 2; + } else { + iteratee = (length > 1 && typeof thisArg == 'function') ? (--length, thisArg) : undefined; + thisArg = undefined; + } + arrays.length = length; + return unzipWith(arrays, iteratee, thisArg); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object that wraps `value` with explicit method + * chaining enabled. + * + * @static + * @memberOf _ + * @category Chain + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _.chain(users) + * .sortBy('age') + * .map(function(chr) { + * return chr.user + ' is ' + chr.age; + * }) + * .first() + * .value(); + * // => 'pebbles is 1' + */ + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; + } + + /** + * This method invokes `interceptor` and returns `value`. The interceptor is + * bound to `thisArg` and invoked with one argument; (value). The purpose of + * this method is to "tap into" a method chain in order to perform operations + * on intermediate results within the chain. + * + * @static + * @memberOf _ + * @category Chain + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @param {*} [thisArg] The `this` binding of `interceptor`. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ + function tap(value, interceptor, thisArg) { + interceptor.call(thisArg, value); + return value; + } + + /** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * + * @static + * @memberOf _ + * @category Chain + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @param {*} [thisArg] The `this` binding of `interceptor`. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor, thisArg) { + return interceptor.call(thisArg, value); + } + + /** + * Enables explicit method chaining on the wrapper object. + * + * @name chain + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // without explicit chaining + * _(users).first(); + * // => { 'user': 'barney', 'age': 36 } + * + * // with explicit chaining + * _(users).chain() + * .first() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ + function wrapperChain() { + return chain(this); + } + + /** + * Executes the chained sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ + function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); + } + + /** + * Creates a new array joining a wrapped array with any additional arrays + * and/or values. + * + * @name concat + * @memberOf _ + * @category Chain + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var wrapped = _(array).concat(2, [3], [[4]]); + * + * console.log(wrapped.value()); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + var wrapperConcat = restParam(function(values) { + values = baseFlatten(values); + return this.thru(function(array) { + return arrayConcat(isArray(array) ? array : [toObject(array)], values); + }); + }); + + /** + * Creates a clone of the chained sequence planting `value` as the wrapped value. + * + * @name plant + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).map(function(value) { + * return Math.pow(value, 2); + * }); + * + * var other = [3, 4]; + * var otherWrapped = wrapped.plant(other); + * + * otherWrapped.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] + */ + function wrapperPlant(value) { + var result, + parent = this; + + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; + return result; + } + + /** + * Reverses the wrapped array so the first element becomes the last, the + * second element becomes the second to last, and so on. + * + * **Note:** This method mutates the wrapped array. + * + * @name reverse + * @memberOf _ + * @category Chain + * @returns {Object} Returns the new reversed `lodash` wrapper instance. + * @example + * + * var array = [1, 2, 3]; + * + * _(array).reverse().value() + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function wrapperReverse() { + var value = this.__wrapped__; + + var interceptor = function(value) { + return (wrapped && wrapped.__dir__ < 0) ? value : value.reverse(); + }; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(interceptor); + } + + /** + * Produces the result of coercing the unwrapped value to a string. + * + * @name toString + * @memberOf _ + * @category Chain + * @returns {string} Returns the coerced string value. + * @example + * + * _([1, 2, 3]).toString(); + * // => '1,2,3' + */ + function wrapperToString() { + return (this.value() + ''); + } + + /** + * Executes the chained sequence to extract the unwrapped value. + * + * @name value + * @memberOf _ + * @alias run, toJSON, valueOf + * @category Chain + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of elements corresponding to the given keys, or indexes, + * of `collection`. Keys may be specified as individual arguments or as arrays + * of keys. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {...(number|number[]|string|string[])} [props] The property names + * or indexes of elements to pick, specified individually or in arrays. + * @returns {Array} Returns the new array of picked elements. + * @example + * + * _.at(['a', 'b', 'c'], [0, 2]); + * // => ['a', 'c'] + * + * _.at(['barney', 'fred', 'pebbles'], 0, 2); + * // => ['barney', 'pebbles'] + */ + var at = restParam(function(collection, props) { + return baseAt(collection, baseFlatten(props)); + }); + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` through `iteratee`. The corresponding value + * of each key is the number of times the key was returned by `iteratee`. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.countBy([4.3, 6.1, 6.4], function(n) { + * return Math.floor(n); + * }); + * // => { '4': 1, '6': 2 } + * + * _.countBy([4.3, 6.1, 6.4], function(n) { + * return this.floor(n); + * }, Math); + * // => { '4': 1, '6': 2 } + * + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ + var countBy = createAggregator(function(result, value, key) { + hasOwnProperty.call(result, key) ? ++result[key] : (result[key] = 1); + }); + + /** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * The predicate is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias all + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // using the `_.matchesProperty` callback shorthand + * _.every(users, 'active', false); + * // => true + * + * // using the `_.property` callback shorthand + * _.every(users, 'active'); + * // => false + */ + function every(collection, predicate, thisArg) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (thisArg && isIterateeCall(collection, predicate, thisArg)) { + predicate = undefined; + } + if (typeof predicate != 'function' || thisArg !== undefined) { + predicate = getCallback(predicate, thisArg, 3); + } + return func(collection, predicate); + } + + /** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is bound to `thisArg` and + * invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias select + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the new filtered array. + * @example + * + * _.filter([4, 5, 6], function(n) { + * return n % 2 == 0; + * }); + * // => [4, 6] + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.filter(users, { 'age': 36, 'active': true }), 'user'); + * // => ['barney'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.filter(users, 'active', false), 'user'); + * // => ['fred'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.filter(users, 'active'), 'user'); + * // => ['barney'] + */ + function filter(collection, predicate, thisArg) { + var func = isArray(collection) ? arrayFilter : baseFilter; + predicate = getCallback(predicate, thisArg, 3); + return func(collection, predicate); + } + + /** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is bound to `thisArg` and + * invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias detect + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.result(_.find(users, function(chr) { + * return chr.age < 40; + * }), 'user'); + * // => 'barney' + * + * // using the `_.matches` callback shorthand + * _.result(_.find(users, { 'age': 1, 'active': true }), 'user'); + * // => 'pebbles' + * + * // using the `_.matchesProperty` callback shorthand + * _.result(_.find(users, 'active', false), 'user'); + * // => 'fred' + * + * // using the `_.property` callback shorthand + * _.result(_.find(users, 'active'), 'user'); + * // => 'barney' + */ + var find = createFind(baseEach); + + /** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ + var findLast = createFind(baseEachRight, true); + + /** + * Performs a deep comparison between each element in `collection` and the + * source object, returning the first element that has equivalent property + * values. + * + * **Note:** This method supports comparing arrays, booleans, `Date` objects, + * numbers, `Object` objects, regexes, and strings. Objects are compared by + * their own, not inherited, enumerable properties. For comparing a single + * own or inherited property value see `_.matchesProperty`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Object} source The object of property values to match. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.result(_.findWhere(users, { 'age': 36, 'active': true }), 'user'); + * // => 'barney' + * + * _.result(_.findWhere(users, { 'age': 40, 'active': false }), 'user'); + * // => 'fred' + */ + function findWhere(collection, source) { + return find(collection, baseMatches(source)); + } + + /** + * Iterates over elements of `collection` invoking `iteratee` for each element. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). Iteratee functions may exit iteration early + * by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" property + * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn` + * may be used for object iteration. + * + * @static + * @memberOf _ + * @alias each + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array|Object|string} Returns `collection`. + * @example + * + * _([1, 2]).forEach(function(n) { + * console.log(n); + * }).value(); + * // => logs each value from left to right and returns the array + * + * _.forEach({ 'a': 1, 'b': 2 }, function(n, key) { + * console.log(n, key); + * }); + * // => logs each value-key pair and returns the object (iteration order is not guaranteed) + */ + var forEach = createForEach(arrayEach, baseEach); + + /** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @alias eachRight + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array|Object|string} Returns `collection`. + * @example + * + * _([1, 2]).forEachRight(function(n) { + * console.log(n); + * }).value(); + * // => logs each value from right to left and returns the array + */ + var forEachRight = createForEach(arrayEachRight, baseEachRight); + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` through `iteratee`. The corresponding value + * of each key is an array of the elements responsible for generating the key. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([4.2, 6.1, 6.4], function(n) { + * return Math.floor(n); + * }); + * // => { '4': [4.2], '6': [6.1, 6.4] } + * + * _.groupBy([4.2, 6.1, 6.4], function(n) { + * return this.floor(n); + * }, Math); + * // => { '4': [4.2], '6': [6.1, 6.4] } + * + * // using the `_.property` callback shorthand + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ + var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + result[key] = [value]; + } + }); + + /** + * Checks if `value` is in `collection` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it is used as the offset + * from the end of `collection`. + * + * @static + * @memberOf _ + * @alias contains, include + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {*} target The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as a callback for functions like `_.reduce`. + * @returns {boolean} Returns `true` if a matching element is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'user': 'fred', 'age': 40 }, 'fred'); + * // => true + * + * _.includes('pebbles', 'eb'); + * // => true + */ + function includes(collection, target, fromIndex, guard) { + var length = collection ? getLength(collection) : 0; + if (!isLength(length)) { + collection = values(collection); + length = collection.length; + } + if (typeof fromIndex != 'number' || (guard && isIterateeCall(target, fromIndex, guard))) { + fromIndex = 0; + } else { + fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : (fromIndex || 0); + } + return (typeof collection == 'string' || !isArray(collection) && isString(collection)) + ? (fromIndex <= length && collection.indexOf(target, fromIndex) > -1) + : (!!length && getIndexOf(collection, target, fromIndex) > -1); + } + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` through `iteratee`. The corresponding value + * of each key is the last element responsible for generating the key. The + * iteratee function is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var keyData = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.indexBy(keyData, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + * + * _.indexBy(keyData, function(object) { + * return String.fromCharCode(object.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.indexBy(keyData, function(object) { + * return this.fromCharCode(object.code); + * }, String); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + */ + var indexBy = createAggregator(function(result, value, key) { + result[key] = value; + }); + + /** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `methodName` is a function it is + * invoked for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invoke([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invoke([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ + var invoke = restParam(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + isProp = isKey(path), + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + var func = isFunc ? path : ((isProp && value != null) ? value[path] : undefined); + result[++index] = func ? func.apply(value, args) : invokePath(value, path, args); + }); + return result; + }); + + /** + * Creates an array of values by running each element in `collection` through + * `iteratee`. The `iteratee` is bound to `thisArg` and invoked with three + * arguments: (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `callback`, `chunk`, `clone`, `create`, `curry`, `curryRight`, + * `drop`, `dropRight`, `every`, `fill`, `flatten`, `invert`, `max`, `min`, + * `parseInt`, `slice`, `sortBy`, `take`, `takeRight`, `template`, `trim`, + * `trimLeft`, `trimRight`, `trunc`, `random`, `range`, `sample`, `some`, + * `sum`, `uniq`, and `words` + * + * @static + * @memberOf _ + * @alias collect + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new mapped array. + * @example + * + * function timesThree(n) { + * return n * 3; + * } + * + * _.map([1, 2], timesThree); + * // => [3, 6] + * + * _.map({ 'a': 1, 'b': 2 }, timesThree); + * // => [3, 6] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // using the `_.property` callback shorthand + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ + function map(collection, iteratee, thisArg) { + var func = isArray(collection) ? arrayMap : baseMap; + iteratee = getCallback(iteratee, thisArg, 3); + return func(collection, iteratee); + } + + /** + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, while the second of which + * contains elements `predicate` returns falsey for. The predicate is bound + * to `thisArg` and invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the array of grouped elements. + * @example + * + * _.partition([1, 2, 3], function(n) { + * return n % 2; + * }); + * // => [[1, 3], [2]] + * + * _.partition([1.2, 2.3, 3.4], function(n) { + * return this.floor(n) % 2; + * }, Math); + * // => [[1.2, 3.4], [2.3]] + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; + * + * var mapper = function(array) { + * return _.pluck(array, 'user'); + * }; + * + * // using the `_.matches` callback shorthand + * _.map(_.partition(users, { 'age': 1, 'active': false }), mapper); + * // => [['pebbles'], ['barney', 'fred']] + * + * // using the `_.matchesProperty` callback shorthand + * _.map(_.partition(users, 'active', false), mapper); + * // => [['barney', 'pebbles'], ['fred']] + * + * // using the `_.property` callback shorthand + * _.map(_.partition(users, 'active'), mapper); + * // => [['fred'], ['barney', 'pebbles']] + */ + var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); + }, function() { return [[], []]; }); + + /** + * Gets the property value of `path` from all elements in `collection`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Array|string} path The path of the property to pluck. + * @returns {Array} Returns the property values. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * _.pluck(users, 'user'); + * // => ['barney', 'fred'] + * + * var userIndex = _.indexBy(users, 'user'); + * _.pluck(userIndex, 'age'); + * // => [36, 40] (iteration order is not guaranteed) + */ + function pluck(collection, path) { + return map(collection, property(path)); + } + + /** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` through `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not provided the first element of `collection` is used as the initial + * value. The `iteratee` is bound to `thisArg` and invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `sortByAll`, + * and `sortByOrder` + * + * @static + * @memberOf _ + * @alias foldl, inject + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {*} Returns the accumulated value. + * @example + * + * _.reduce([1, 2], function(total, n) { + * return total + n; + * }); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2 }, function(result, n, key) { + * result[key] = n * 3; + * return result; + * }, {}); + * // => { 'a': 3, 'b': 6 } (iteration order is not guaranteed) + */ + var reduce = createReduce(arrayReduce, baseEach); + + /** + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @alias foldr + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {*} Returns the accumulated value. + * @example + * + * var array = [[0, 1], [2, 3], [4, 5]]; + * + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] + */ + var reduceRight = createReduce(arrayReduceRight, baseEachRight); + + /** + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Array} Returns the new filtered array. + * @example + * + * _.reject([1, 2, 3, 4], function(n) { + * return n % 2 == 0; + * }); + * // => [1, 3] + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * // using the `_.matches` callback shorthand + * _.pluck(_.reject(users, { 'age': 40, 'active': true }), 'user'); + * // => ['barney'] + * + * // using the `_.matchesProperty` callback shorthand + * _.pluck(_.reject(users, 'active', false), 'user'); + * // => ['fred'] + * + * // using the `_.property` callback shorthand + * _.pluck(_.reject(users, 'active'), 'user'); + * // => ['barney'] + */ + function reject(collection, predicate, thisArg) { + var func = isArray(collection) ? arrayFilter : baseFilter; + predicate = getCallback(predicate, thisArg, 3); + return func(collection, function(value, index, collection) { + return !predicate(value, index, collection); + }); + } + + /** + * Gets a random element or `n` random elements from a collection. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to sample. + * @param {number} [n] The number of elements to sample. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {*} Returns the random sample(s). + * @example + * + * _.sample([1, 2, 3, 4]); + * // => 2 + * + * _.sample([1, 2, 3, 4], 2); + * // => [3, 1] + */ + function sample(collection, n, guard) { + if (guard ? isIterateeCall(collection, n, guard) : n == null) { + collection = toIterable(collection); + var length = collection.length; + return length > 0 ? collection[baseRandom(0, length - 1)] : undefined; + } + var index = -1, + result = toArray(collection), + length = result.length, + lastIndex = length - 1; + + n = nativeMin(n < 0 ? 0 : (+n || 0), length); + while (++index < n) { + var rand = baseRandom(index, lastIndex), + value = result[rand]; + + result[rand] = result[index]; + result[index] = value; + } + result.length = n; + return result; + } + + /** + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + * @example + * + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] + */ + function shuffle(collection) { + return sample(collection, POSITIVE_INFINITY); + } + + /** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable properties for objects. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the size of `collection`. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ + function size(collection) { + var length = collection ? getLength(collection) : 0; + return isLength(length) ? length : keys(collection).length; + } + + /** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * The function returns as soon as it finds a passing value and does not iterate + * over the entire collection. The predicate is bound to `thisArg` and invoked + * with three arguments: (value, index|key, collection). + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @alias any + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // using the `_.matches` callback shorthand + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // using the `_.matchesProperty` callback shorthand + * _.some(users, 'active', false); + * // => true + * + * // using the `_.property` callback shorthand + * _.some(users, 'active'); + * // => true + */ + function some(collection, predicate, thisArg) { + var func = isArray(collection) ? arraySome : baseSome; + if (thisArg && isIterateeCall(collection, predicate, thisArg)) { + predicate = undefined; + } + if (typeof predicate != 'function' || thisArg !== undefined) { + predicate = getCallback(predicate, thisArg, 3); + } + return func(collection, predicate); + } + + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection through `iteratee`. This method performs + * a stable sort, that is, it preserves the original sort order of equal elements. + * The `iteratee` is bound to `thisArg` and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Array} Returns the new sorted array. + * @example + * + * _.sortBy([1, 2, 3], function(n) { + * return Math.sin(n); + * }); + * // => [3, 1, 2] + * + * _.sortBy([1, 2, 3], function(n) { + * return this.sin(n); + * }, Math); + * // => [3, 1, 2] + * + * var users = [ + * { 'user': 'fred' }, + * { 'user': 'pebbles' }, + * { 'user': 'barney' } + * ]; + * + * // using the `_.property` callback shorthand + * _.pluck(_.sortBy(users, 'user'), 'user'); + * // => ['barney', 'fred', 'pebbles'] + */ + function sortBy(collection, iteratee, thisArg) { + if (collection == null) { + return []; + } + if (thisArg && isIterateeCall(collection, iteratee, thisArg)) { + iteratee = undefined; + } + var index = -1; + iteratee = getCallback(iteratee, thisArg, 3); + + var result = baseMap(collection, function(value, key, collection) { + return { 'criteria': iteratee(value, key, collection), 'index': ++index, 'value': value }; + }); + return baseSortBy(result, compareAscending); + } + + /** + * This method is like `_.sortBy` except that it can sort by multiple iteratees + * or property names. + * + * If a property name is provided for an iteratee the created `_.property` + * style callback returns the property value of the given element. + * + * If an object is provided for an iteratee the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {...(Function|Function[]|Object|Object[]|string|string[])} iteratees + * The iteratees to sort by, specified as individual values or arrays of values. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 42 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.map(_.sortByAll(users, ['user', 'age']), _.values); + * // => [['barney', 34], ['barney', 36], ['fred', 42], ['fred', 48]] + * + * _.map(_.sortByAll(users, 'user', function(chr) { + * return Math.floor(chr.age / 10); + * }), _.values); + * // => [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + */ + var sortByAll = restParam(function(collection, iteratees) { + if (collection == null) { + return []; + } + var guard = iteratees[2]; + if (guard && isIterateeCall(iteratees[0], iteratees[1], guard)) { + iteratees.length = 1; + } + return baseSortByOrder(collection, baseFlatten(iteratees), []); + }); + + /** + * This method is like `_.sortByAll` except that it allows specifying the + * sort orders of the iteratees to sort by. If `orders` is unspecified, all + * values are sorted in ascending order. Otherwise, a value is sorted in + * ascending order if its corresponding order is "asc", and descending if "desc". + * + * If a property name is provided for an iteratee the created `_.property` + * style callback returns the property value of the given element. + * + * If an object is provided for an iteratee the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {boolean[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as a callback for functions like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 42 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // sort by `user` in ascending order and by `age` in descending order + * _.map(_.sortByOrder(users, ['user', 'age'], ['asc', 'desc']), _.values); + * // => [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + */ + function sortByOrder(collection, iteratees, orders, guard) { + if (collection == null) { + return []; + } + if (guard && isIterateeCall(iteratees, orders, guard)) { + orders = undefined; + } + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; + } + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; + } + return baseSortByOrder(collection, iteratees, orders); + } + + /** + * Performs a deep comparison between each element in `collection` and the + * source object, returning an array of all elements that have equivalent + * property values. + * + * **Note:** This method supports comparing arrays, booleans, `Date` objects, + * numbers, `Object` objects, regexes, and strings. Objects are compared by + * their own, not inherited, enumerable properties. For comparing a single + * own or inherited property value see `_.matchesProperty`. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object|string} collection The collection to search. + * @param {Object} source The object of property values to match. + * @returns {Array} Returns the new filtered array. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false, 'pets': ['hoppy'] }, + * { 'user': 'fred', 'age': 40, 'active': true, 'pets': ['baby puss', 'dino'] } + * ]; + * + * _.pluck(_.where(users, { 'age': 36, 'active': false }), 'user'); + * // => ['barney'] + * + * _.pluck(_.where(users, { 'pets': ['dino'] }), 'user'); + * // => ['fred'] + */ + function where(collection, source) { + return filter(collection, baseMatches(source)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Gets the number of milliseconds that have elapsed since the Unix epoch + * (1 January 1970 00:00:00 UTC). + * + * @static + * @memberOf _ + * @category Date + * @example + * + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => logs the number of milliseconds it took for the deferred function to be invoked + */ + var now = nativeNow || function() { + return new Date().getTime(); + }; + + /*------------------------------------------------------------------------*/ + + /** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it is called `n` or more times. + * + * @static + * @memberOf _ + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => logs 'done saving!' after the two async saves have completed + */ + function after(n, func) { + if (typeof func != 'function') { + if (typeof n == 'function') { + var temp = n; + n = func; + func = temp; + } else { + throw new TypeError(FUNC_ERROR_TEXT); + } + } + n = nativeIsFinite(n = +n) ? n : 0; + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; + } + + /** + * Creates a function that accepts up to `n` arguments ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Function} Returns the new function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ + function ary(func, n, guard) { + if (guard && isIterateeCall(func, n, guard)) { + n = undefined; + } + n = (func && n == null) ? func.length : nativeMax(+n || 0, 0); + return createWrapper(func, ARY_FLAG, undefined, undefined, undefined, undefined, n); + } + + /** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it is called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery('#add').on('click', _.before(5, addContactToList)); + * // => allows adding up to 4 contacts to the list + */ + function before(n, func) { + var result; + if (typeof func != 'function') { + if (typeof n == 'function') { + var temp = n; + n = func; + func = temp; + } else { + throw new TypeError(FUNC_ERROR_TEXT); + } + } + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and prepends any additional `_.bind` arguments to those provided to the + * bound function. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind` this method does not set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var greet = function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * }; + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // using placeholders + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ + var bind = restParam(function(func, thisArg, partials) { + var bitmask = BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, bind.placeholder); + bitmask |= PARTIAL_FLAG; + } + return createWrapper(func, bitmask, thisArg, partials, holders); + }); + + /** + * Binds methods of an object to the object itself, overwriting the existing + * method. Method names may be specified as individual arguments or as arrays + * of method names. If no method names are provided all enumerable function + * properties, own and inherited, of `object` are bound. + * + * **Note:** This method does not set the "length" property of bound functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Object} object The object to bind and assign the bound methods to. + * @param {...(string|string[])} [methodNames] The object method names to bind, + * specified as individual method names or arrays of method names. + * @returns {Object} Returns `object`. + * @example + * + * var view = { + * 'label': 'docs', + * 'onClick': function() { + * console.log('clicked ' + this.label); + * } + * }; + * + * _.bindAll(view); + * jQuery('#docs').on('click', view.onClick); + * // => logs 'clicked docs' when the element is clicked + */ + var bindAll = restParam(function(object, methodNames) { + methodNames = methodNames.length ? baseFlatten(methodNames) : functions(object); + + var index = -1, + length = methodNames.length; + + while (++index < length) { + var key = methodNames[index]; + object[key] = createWrapper(object[key], BIND_FLAG, object); + } + return object; + }); + + /** + * Creates a function that invokes the method at `object[key]` and prepends + * any additional `_.bindKey` arguments to those provided to the bound function. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. + * See [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @category Function + * @param {Object} object The object the method belongs to. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // using placeholders + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ + var bindKey = restParam(function(object, key, partials) { + var bitmask = BIND_FLAG | BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, bindKey.placeholder); + bitmask |= PARTIAL_FLAG; + } + return createWrapper(key, bitmask, object, partials, holders); + }); + + /** + * Creates a function that accepts one or more arguments of `func` that when + * called either invokes `func` returning its result, if all `func` arguments + * have been provided, or returns a function that accepts one or more of the + * remaining `func` arguments, and so on. The arity of `func` may be specified + * if `func.length` is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method does not set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // using placeholders + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ + var curry = createCurry(CURRY_FLAG); + + /** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method does not set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // using placeholders + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ + var curryRight = createCurry(CURRY_RIGHT_FLAG); + + /** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed invocations. Provide an options object to indicate that `func` + * should be invoked on the leading and/or trailing edge of the `wait` timeout. + * Subsequent calls to the debounced function return the result of the last + * `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked + * on the trailing edge of the timeout only if the the debounced function is + * invoked more than once during the `wait` timeout. + * + * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options] The options object. + * @param {boolean} [options.leading=false] Specify invoking on the leading + * edge of the timeout. + * @param {number} [options.maxWait] The maximum time `func` is allowed to be + * delayed before it is invoked. + * @param {boolean} [options.trailing=true] Specify invoking on the trailing + * edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // avoid costly calculations while the window size is in flux + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // invoke `sendMail` when the click event is fired, debouncing subsequent calls + * jQuery('#postbox').on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // ensure `batchLog` is invoked once after 1 second of debounced calls + * var source = new EventSource('/stream'); + * jQuery(source).on('message', _.debounce(batchLog, 250, { + * 'maxWait': 1000 + * })); + * + * // cancel a debounced call + * var todoChanges = _.debounce(batchLog, 1000); + * Object.observe(models.todo, todoChanges); + * + * Object.observe(models, function(changes) { + * if (_.find(changes, { 'user': 'todo', 'type': 'delete'})) { + * todoChanges.cancel(); + * } + * }, ['delete']); + * + * // ...at some point `models.todo` is changed + * models.todo.completed = true; + * + * // ...before 1 second has passed `models.todo` is deleted + * // which cancels the debounced `todoChanges` call + * delete models.todo; + */ + function debounce(func, wait, options) { + var args, + maxTimeoutId, + result, + stamp, + thisArg, + timeoutId, + trailingCall, + lastCalled = 0, + maxWait = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = wait < 0 ? 0 : (+wait || 0); + if (options === true) { + var leading = true; + trailing = false; + } else if (isObject(options)) { + leading = !!options.leading; + maxWait = 'maxWait' in options && nativeMax(+options.maxWait || 0, wait); + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function cancel() { + if (timeoutId) { + clearTimeout(timeoutId); + } + if (maxTimeoutId) { + clearTimeout(maxTimeoutId); + } + lastCalled = 0; + maxTimeoutId = timeoutId = trailingCall = undefined; + } + + function complete(isCalled, id) { + if (id) { + clearTimeout(id); + } + maxTimeoutId = timeoutId = trailingCall = undefined; + if (isCalled) { + lastCalled = now(); + result = func.apply(thisArg, args); + if (!timeoutId && !maxTimeoutId) { + args = thisArg = undefined; + } + } + } + + function delayed() { + var remaining = wait - (now() - stamp); + if (remaining <= 0 || remaining > wait) { + complete(trailingCall, maxTimeoutId); + } else { + timeoutId = setTimeout(delayed, remaining); + } + } + + function maxDelayed() { + complete(trailing, timeoutId); + } + + function debounced() { + args = arguments; + stamp = now(); + thisArg = this; + trailingCall = trailing && (timeoutId || !leading); + + if (maxWait === false) { + var leadingCall = leading && !timeoutId; + } else { + if (!maxTimeoutId && !leading) { + lastCalled = stamp; + } + var remaining = maxWait - (stamp - lastCalled), + isCalled = remaining <= 0 || remaining > maxWait; + + if (isCalled) { + if (maxTimeoutId) { + maxTimeoutId = clearTimeout(maxTimeoutId); + } + lastCalled = stamp; + result = func.apply(thisArg, args); + } + else if (!maxTimeoutId) { + maxTimeoutId = setTimeout(maxDelayed, remaining); + } + } + if (isCalled && timeoutId) { + timeoutId = clearTimeout(timeoutId); + } + else if (!timeoutId && wait !== maxWait) { + timeoutId = setTimeout(delayed, wait); + } + if (leadingCall) { + isCalled = true; + result = func.apply(thisArg, args); + } + if (isCalled && !timeoutId && !maxTimeoutId) { + args = thisArg = undefined; + } + return result; + } + debounced.cancel = cancel; + return debounced; + } + + /** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it is invoked. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke the function with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // logs 'deferred' after one or more milliseconds + */ + var defer = restParam(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it is invoked. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke the function with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => logs 'later' after one second + */ + var delay = restParam(function(func, wait, args) { + return baseDelay(func, wait, args); + }); + + /** + * Creates a function that returns the result of invoking the provided + * functions with the `this` binding of the created function, where each + * successive invocation is supplied the return value of the previous. + * + * @static + * @memberOf _ + * @category Function + * @param {...Function} [funcs] Functions to invoke. + * @returns {Function} Returns the new function. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flow(_.add, square); + * addSquare(1, 2); + * // => 9 + */ + var flow = createFlow(); + + /** + * This method is like `_.flow` except that it creates a function that + * invokes the provided functions from right to left. + * + * @static + * @memberOf _ + * @alias backflow, compose + * @category Function + * @param {...Function} [funcs] Functions to invoke. + * @returns {Function} Returns the new function. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flowRight(square, _.add); + * addSquare(1, 2); + * // => 9 + */ + var flowRight = createFlow(true); + + /** + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is coerced to a string and used as the + * cache key. The `func` is invoked with the `this` binding of the memoized + * function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the [`Map`](http://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-map-prototype-object) + * method interface of `get`, `has`, and `set`. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoizing function. + * @example + * + * var upperCase = _.memoize(function(string) { + * return string.toUpperCase(); + * }); + * + * upperCase('fred'); + * // => 'FRED' + * + * // modifying the result cache + * upperCase.cache.set('fred', 'BARNEY'); + * upperCase('fred'); + * // => 'BARNEY' + * + * // replacing `_.memoize.Cache` + * var object = { 'user': 'fred' }; + * var other = { 'user': 'barney' }; + * var identity = _.memoize(_.identity); + * + * identity(object); + * // => { 'user': 'fred' } + * identity(other); + * // => { 'user': 'fred' } + * + * _.memoize.Cache = WeakMap; + * var identity = _.memoize(_.identity); + * + * identity(object); + * // => { 'user': 'fred' } + * identity(other); + * // => { 'user': 'barney' } + */ + function memoize(func, resolver) { + if (typeof func != 'function' || (resolver && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; + + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result); + return result; + }; + memoized.cache = new memoize.Cache; + return memoized; + } + + /** + * Creates a function that runs each argument through a corresponding + * transform function. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms] The functions to transform + * arguments, specified as individual functions or arrays of functions. + * @returns {Function} Returns the new function. + * @example + * + * function doubled(n) { + * return n * 2; + * } + * + * function square(n) { + * return n * n; + * } + * + * var modded = _.modArgs(function(x, y) { + * return [x, y]; + * }, square, doubled); + * + * modded(1, 2); + * // => [1, 4] + * + * modded(5, 10); + * // => [25, 20] + */ + var modArgs = restParam(function(func, transforms) { + transforms = baseFlatten(transforms); + if (typeof func != 'function' || !arrayEvery(transforms, baseIsFunction)) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = transforms.length; + return restParam(function(args) { + var index = nativeMin(args.length, length); + while (index--) { + args[index] = transforms[index](args[index]); + } + return func.apply(this, args); + }); + }); + + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + return !predicate.apply(this, arguments); + }; + } + + /** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first call. The `func` is invoked + * with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // `initialize` invokes `createApplication` once + */ + function once(func) { + return before(2, func); + } + + /** + * Creates a function that invokes `func` with `partial` arguments prepended + * to those provided to the new function. This method is like `_.bind` except + * it does **not** alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method does not set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * var greet = function(greeting, name) { + * return greeting + ' ' + name; + * }; + * + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' + * + * // using placeholders + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + */ + var partial = createPartial(PARTIAL_FLAG); + + /** + * This method is like `_.partial` except that partially applied arguments + * are appended to those provided to the new function. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method does not set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * var greet = function(greeting, name) { + * return greeting + ' ' + name; + * }; + * + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + * + * // using placeholders + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' + */ + var partialRight = createPartial(PARTIAL_RIGHT_FLAG); + + /** + * Creates a function that invokes `func` with arguments arranged according + * to the specified indexes where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes, + * specified as individual indexes or arrays of indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, 2, 0, 1); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + * + * var map = _.rearg(_.map, [1, 0]); + * map(function(n) { + * return n * 3; + * }, [1, 2, 3]); + * // => [3, 6, 9] + */ + var rearg = restParam(function(func, indexes) { + return createWrapper(func, REARG_FLAG, undefined, undefined, undefined, baseFlatten(indexes)); + }); + + /** + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as an array. + * + * **Note:** This method is based on the [rest parameter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters). + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.restParam(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); + * + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' + */ + function restParam(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = nativeMax(start === undefined ? (func.length - 1) : (+start || 0), 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + rest = Array(length); + + while (++index < length) { + rest[index] = args[start + index]; + } + switch (start) { + case 0: return func.call(this, rest); + case 1: return func.call(this, args[0], rest); + case 2: return func.call(this, args[0], args[1], rest); + } + var otherArgs = Array(start + 1); + index = -1; + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = rest; + return func.apply(this, otherArgs); + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of the created + * function and an array of arguments much like [`Function#apply`](https://es5.github.io/#x15.3.4.3). + * + * **Note:** This method is based on the [spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator). + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to spread arguments over. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); + * + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * // with a Promise + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 + */ + function spread(func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function(array) { + return func.apply(this, array); + }; + } + + /** + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed invocations. Provide an options object to indicate + * that `func` should be invoked on the leading and/or trailing edge of the + * `wait` timeout. Subsequent calls to the throttled function return the + * result of the last `func` call. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked + * on the trailing edge of the timeout only if the the throttled function is + * invoked more than once during the `wait` timeout. + * + * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) + * for details over the differences between `_.throttle` and `_.debounce`. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. + * @param {Object} [options] The options object. + * @param {boolean} [options.leading=true] Specify invoking on the leading + * edge of the timeout. + * @param {boolean} [options.trailing=true] Specify invoking on the trailing + * edge of the timeout. + * @returns {Function} Returns the new throttled function. + * @example + * + * // avoid excessively updating the position while scrolling + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * + * // invoke `renewToken` when the click event is fired, but not more than once every 5 minutes + * jQuery('.interactive').on('click', _.throttle(renewToken, 300000, { + * 'trailing': false + * })); + * + * // cancel a trailing throttled call + * jQuery(window).on('popstate', throttled.cancel); + */ + function throttle(func, wait, options) { + var leading = true, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (options === false) { + leading = false; + } else if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + return debounce(func, wait, { 'leading': leading, 'maxWait': +wait, 'trailing': trailing }); + } + + /** + * Creates a function that provides `value` to the wrapper function as its + * first argument. Any additional arguments provided to the function are + * appended to those provided to the wrapper function. The wrapper is invoked + * with the `this` binding of the created function. + * + * @static + * @memberOf _ + * @category Function + * @param {*} value The value to wrap. + * @param {Function} wrapper The wrapper function. + * @returns {Function} Returns the new function. + * @example + * + * var p = _.wrap(_.escape, function(func, text) { + * return '

' + func(text) + '

'; + * }); + * + * p('fred, barney, & pebbles'); + * // => '

fred, barney, & pebbles

' + */ + function wrap(value, wrapper) { + wrapper = wrapper == null ? identity : wrapper; + return createWrapper(wrapper, PARTIAL_FLAG, undefined, [value], []); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates a clone of `value`. If `isDeep` is `true` nested objects are cloned, + * otherwise they are assigned by reference. If `customizer` is provided it is + * invoked to produce the cloned values. If `customizer` returns `undefined` + * cloning is handled by the method instead. The `customizer` is bound to + * `thisArg` and invoked with two argument; (value [, index|key, object]). + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm). + * The enumerable properties of `arguments` objects and objects created by + * constructors other than `Object` are cloned to plain `Object` objects. An + * empty object is returned for uncloneable values such as functions, DOM nodes, + * Maps, Sets, and WeakMaps. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @param {Function} [customizer] The function to customize cloning values. + * @param {*} [thisArg] The `this` binding of `customizer`. + * @returns {*} Returns the cloned value. + * @example + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * var shallow = _.clone(users); + * shallow[0] === users[0]; + * // => true + * + * var deep = _.clone(users, true); + * deep[0] === users[0]; + * // => false + * + * // using a customizer callback + * var el = _.clone(document.body, function(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } + * }); + * + * el === document.body + * // => false + * el.nodeName + * // => BODY + * el.childNodes.length; + * // => 0 + */ + function clone(value, isDeep, customizer, thisArg) { + if (isDeep && typeof isDeep != 'boolean' && isIterateeCall(value, isDeep, customizer)) { + isDeep = false; + } + else if (typeof isDeep == 'function') { + thisArg = customizer; + customizer = isDeep; + isDeep = false; + } + return typeof customizer == 'function' + ? baseClone(value, isDeep, bindCallback(customizer, thisArg, 1)) + : baseClone(value, isDeep); + } + + /** + * Creates a deep clone of `value`. If `customizer` is provided it is invoked + * to produce the cloned values. If `customizer` returns `undefined` cloning + * is handled by the method instead. The `customizer` is bound to `thisArg` + * and invoked with two argument; (value [, index|key, object]). + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm). + * The enumerable properties of `arguments` objects and objects created by + * constructors other than `Object` are cloned to plain `Object` objects. An + * empty object is returned for uncloneable values such as functions, DOM nodes, + * Maps, Sets, and WeakMaps. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to deep clone. + * @param {Function} [customizer] The function to customize cloning values. + * @param {*} [thisArg] The `this` binding of `customizer`. + * @returns {*} Returns the deep cloned value. + * @example + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * var deep = _.cloneDeep(users); + * deep[0] === users[0]; + * // => false + * + * // using a customizer callback + * var el = _.cloneDeep(document.body, function(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * }); + * + * el === document.body + * // => false + * el.nodeName + * // => BODY + * el.childNodes.length; + * // => 20 + */ + function cloneDeep(value, customizer, thisArg) { + return typeof customizer == 'function' + ? baseClone(value, true, bindCallback(customizer, thisArg, 1)) + : baseClone(value, true); + } + + /** + * Checks if `value` is greater than `other`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, else `false`. + * @example + * + * _.gt(3, 1); + * // => true + * + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false + */ + function gt(value, other) { + return value > other; + } + + /** + * Checks if `value` is greater than or equal to `other`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to `other`, else `false`. + * @example + * + * _.gte(3, 1); + * // => true + * + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false + */ + function gte(value, other) { + return value >= other; + } + + /** + * Checks if `value` is classified as an `arguments` object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ + function isArguments(value) { + return isObjectLike(value) && isArrayLike(value) && + hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee'); + } + + /** + * Checks if `value` is classified as an `Array` object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(function() { return arguments; }()); + * // => false + */ + var isArray = nativeIsArray || function(value) { + return isObjectLike(value) && isLength(value.length) && objToString.call(value) == arrayTag; + }; + + /** + * Checks if `value` is classified as a boolean primitive or object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || (isObjectLike(value) && objToString.call(value) == boolTag); + } + + /** + * Checks if `value` is classified as a `Date` object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isDate(new Date); + * // => true + * + * _.isDate('Mon April 23 2012'); + * // => false + */ + function isDate(value) { + return isObjectLike(value) && objToString.call(value) == dateTag; + } + + /** + * Checks if `value` is a DOM element. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @example + * + * _.isElement(document.body); + * // => true + * + * _.isElement(''); + * // => false + */ + function isElement(value) { + return !!value && value.nodeType === 1 && isObjectLike(value) && !isPlainObject(value); + } + + /** + * Checks if `value` is empty. A value is considered empty unless it is an + * `arguments` object, array, string, or jQuery-like collection with a length + * greater than `0` or an object with own enumerable properties. + * + * @static + * @memberOf _ + * @category Lang + * @param {Array|Object|string} value The value to inspect. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @example + * + * _.isEmpty(null); + * // => true + * + * _.isEmpty(true); + * // => true + * + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false + */ + function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && (isArray(value) || isString(value) || isArguments(value) || + (isObjectLike(value) && isFunction(value.splice)))) { + return !value.length; + } + return !keys(value).length; + } + + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. If `customizer` is provided it is invoked to compare values. + * If `customizer` returns `undefined` comparisons are handled by the method + * instead. The `customizer` is bound to `thisArg` and invoked with three + * arguments: (value, other [, index|key]). + * + * **Note:** This method supports comparing arrays, booleans, `Date` objects, + * numbers, `Object` objects, regexes, and strings. Objects are compared by + * their own, not inherited, enumerable properties. Functions and DOM nodes + * are **not** supported. Provide a customizer function to extend support + * for comparing other values. + * + * @static + * @memberOf _ + * @alias eq + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize value comparisons. + * @param {*} [thisArg] The `this` binding of `customizer`. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'user': 'fred' }; + * var other = { 'user': 'fred' }; + * + * object == other; + * // => false + * + * _.isEqual(object, other); + * // => true + * + * // using a customizer callback + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqual(array, other, function(value, other) { + * if (_.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/)) { + * return true; + * } + * }); + * // => true + */ + function isEqual(value, other, customizer, thisArg) { + customizer = typeof customizer == 'function' ? bindCallback(customizer, thisArg, 3) : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, customizer) : !!result; + } + + /** + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @example + * + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false + */ + function isError(value) { + return isObjectLike(value) && typeof value.message == 'string' && objToString.call(value) == errorTag; + } + + /** + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on [`Number.isFinite`](http://ecma-international.org/ecma-262/6.0/#sec-number.isfinite). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @example + * + * _.isFinite(10); + * // => true + * + * _.isFinite('10'); + * // => false + * + * _.isFinite(true); + * // => false + * + * _.isFinite(Object(10)); + * // => false + * + * _.isFinite(Infinity); + * // => false + */ + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); + } + + /** + * Checks if `value` is classified as a `Function` object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isFunction(_); + * // => true + * + * _.isFunction(/abc/); + * // => false + */ + function isFunction(value) { + // The use of `Object#toString` avoids issues with the `typeof` operator + // in older versions of Chrome and Safari which return 'function' for regexes + // and Safari 8 equivalents which return 'object' for typed array constructors. + return isObject(value) && objToString.call(value) == funcTag; + } + + /** + * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`. + * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @example + * + * _.isObject({}); + * // => true + * + * _.isObject([1, 2, 3]); + * // => true + * + * _.isObject(1); + * // => false + */ + function isObject(value) { + // Avoid a V8 JIT bug in Chrome 19-20. + // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. + var type = typeof value; + return !!value && (type == 'object' || type == 'function'); + } + + /** + * Performs a deep comparison between `object` and `source` to determine if + * `object` contains equivalent property values. If `customizer` is provided + * it is invoked to compare values. If `customizer` returns `undefined` + * comparisons are handled by the method instead. The `customizer` is bound + * to `thisArg` and invoked with three arguments: (value, other, index|key). + * + * **Note:** This method supports comparing properties of arrays, booleans, + * `Date` objects, numbers, `Object` objects, regexes, and strings. Functions + * and DOM nodes are **not** supported. Provide a customizer function to extend + * support for comparing other values. + * + * @static + * @memberOf _ + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize value comparisons. + * @param {*} [thisArg] The `this` binding of `customizer`. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'user': 'fred', 'age': 40 }; + * + * _.isMatch(object, { 'age': 40 }); + * // => true + * + * _.isMatch(object, { 'age': 36 }); + * // => false + * + * // using a customizer callback + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatch(object, source, function(value, other) { + * return _.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/) || undefined; + * }); + * // => true + */ + function isMatch(object, source, customizer, thisArg) { + customizer = typeof customizer == 'function' ? bindCallback(customizer, thisArg, 3) : undefined; + return baseIsMatch(object, getMatchData(source), customizer); + } + + /** + * Checks if `value` is `NaN`. + * + * **Note:** This method is not the same as [`isNaN`](https://es5.github.io/#x15.1.2.4) + * which returns `true` for `undefined` and other non-numeric values. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @example + * + * _.isNaN(NaN); + * // => true + * + * _.isNaN(new Number(NaN)); + * // => true + * + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); + * // => false + */ + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some host objects in IE. + return isNumber(value) && value != +value; + } + + /** + * Checks if `value` is a native function. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, else `false`. + * @example + * + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false + */ + function isNative(value) { + if (value == null) { + return false; + } + if (isFunction(value)) { + return reIsNative.test(fnToString.call(value)); + } + return isObjectLike(value) && reIsHostCtor.test(value); + } + + /** + * Checks if `value` is `null`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @example + * + * _.isNull(null); + * // => true + * + * _.isNull(void 0); + * // => false + */ + function isNull(value) { + return value === null; + } + + /** + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are classified + * as numbers, use the `_.isFinite` method. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isNumber(8.4); + * // => true + * + * _.isNumber(NaN); + * // => true + * + * _.isNumber('8.4'); + * // => false + */ + function isNumber(value) { + return typeof value == 'number' || (isObjectLike(value) && objToString.call(value) == numberTag); + } + + /** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * **Note:** This method assumes objects created by the `Object` constructor + * have no inherited enumerable properties. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ + function isPlainObject(value) { + var Ctor; + + // Exit early for non `Object` objects. + if (!(isObjectLike(value) && objToString.call(value) == objectTag && !isArguments(value)) || + (!hasOwnProperty.call(value, 'constructor') && (Ctor = value.constructor, typeof Ctor == 'function' && !(Ctor instanceof Ctor)))) { + return false; + } + // IE < 9 iterates inherited properties before own properties. If the first + // iterated property is an object's own property then there are no inherited + // enumerable properties. + var result; + // In most environments an object's own properties are iterated before + // its inherited properties. If the last iterated property is an object's + // own property then there are no inherited enumerable properties. + baseForIn(value, function(subValue, key) { + result = key; + }); + return result === undefined || hasOwnProperty.call(value, result); + } + + /** + * Checks if `value` is classified as a `RegExp` object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isRegExp(/abc/); + * // => true + * + * _.isRegExp('/abc/'); + * // => false + */ + function isRegExp(value) { + return isObject(value) && objToString.call(value) == regexpTag; + } + + /** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ + function isString(value) { + return typeof value == 'string' || (isObjectLike(value) && objToString.call(value) == stringTag); + } + + /** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ + function isTypedArray(value) { + return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[objToString.call(value)]; + } + + /** + * Checks if `value` is `undefined`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false + */ + function isUndefined(value) { + return value === undefined; + } + + /** + * Checks if `value` is less than `other`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, else `false`. + * @example + * + * _.lt(1, 3); + * // => true + * + * _.lt(3, 3); + * // => false + * + * _.lt(3, 1); + * // => false + */ + function lt(value, other) { + return value < other; + } + + /** + * Checks if `value` is less than or equal to `other`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than or equal to `other`, else `false`. + * @example + * + * _.lte(1, 3); + * // => true + * + * _.lte(3, 3); + * // => true + * + * _.lte(3, 1); + * // => false + */ + function lte(value, other) { + return value <= other; + } + + /** + * Converts `value` to an array. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. + * @example + * + * (function() { + * return _.toArray(arguments).slice(1); + * }(1, 2, 3)); + * // => [2, 3] + */ + function toArray(value) { + var length = value ? getLength(value) : 0; + if (!isLength(length)) { + return values(value); + } + if (!length) { + return []; + } + return arrayCopy(value); + } + + /** + * Converts `value` to a plain object flattening inherited enumerable + * properties of `value` to own properties of the plain object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } + */ + function toPlainObject(value) { + return baseCopy(value, keysIn(value)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Recursively merges own enumerable properties of the source object(s), that + * don't resolve to `undefined` into the destination object. Subsequent sources + * overwrite property assignments of previous sources. If `customizer` is + * provided it is invoked to produce the merged values of the destination and + * source properties. If `customizer` returns `undefined` merging is handled + * by the method instead. The `customizer` is bound to `thisArg` and invoked + * with five arguments: (objectValue, sourceValue, key, object, source). + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @param {*} [thisArg] The `this` binding of `customizer`. + * @returns {Object} Returns `object`. + * @example + * + * var users = { + * 'data': [{ 'user': 'barney' }, { 'user': 'fred' }] + * }; + * + * var ages = { + * 'data': [{ 'age': 36 }, { 'age': 40 }] + * }; + * + * _.merge(users, ages); + * // => { 'data': [{ 'user': 'barney', 'age': 36 }, { 'user': 'fred', 'age': 40 }] } + * + * // using a customizer callback + * var object = { + * 'fruits': ['apple'], + * 'vegetables': ['beet'] + * }; + * + * var other = { + * 'fruits': ['banana'], + * 'vegetables': ['carrot'] + * }; + * + * _.merge(object, other, function(a, b) { + * if (_.isArray(a)) { + * return a.concat(b); + * } + * }); + * // => { 'fruits': ['apple', 'banana'], 'vegetables': ['beet', 'carrot'] } + */ + var merge = createAssigner(baseMerge); + + /** + * Assigns own enumerable properties of source object(s) to the destination + * object. Subsequent sources overwrite property assignments of previous sources. + * If `customizer` is provided it is invoked to produce the assigned values. + * The `customizer` is bound to `thisArg` and invoked with five arguments: + * (objectValue, sourceValue, key, object, source). + * + * **Note:** This method mutates `object` and is based on + * [`Object.assign`](http://ecma-international.org/ecma-262/6.0/#sec-object.assign). + * + * @static + * @memberOf _ + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @param {*} [thisArg] The `this` binding of `customizer`. + * @returns {Object} Returns `object`. + * @example + * + * _.assign({ 'user': 'barney' }, { 'age': 40 }, { 'user': 'fred' }); + * // => { 'user': 'fred', 'age': 40 } + * + * // using a customizer callback + * var defaults = _.partialRight(_.assign, function(value, other) { + * return _.isUndefined(value) ? other : value; + * }); + * + * defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' }); + * // => { 'user': 'barney', 'age': 36 } + */ + var assign = createAssigner(function(object, source, customizer) { + return customizer + ? assignWith(object, source, customizer) + : baseAssign(object, source); + }); + + /** + * Creates an object that inherits from the given `prototype` object. If a + * `properties` object is provided its own enumerable properties are assigned + * to the created object. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties, guard) { + var result = baseCreate(prototype); + if (guard && isIterateeCall(prototype, properties, guard)) { + properties = undefined; + } + return properties ? baseAssign(result, properties) : result; + } + + /** + * Assigns own enumerable properties of source object(s) to the destination + * object for all destination properties that resolve to `undefined`. Once a + * property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * _.defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' }); + * // => { 'user': 'barney', 'age': 36 } + */ + var defaults = createDefaults(assign, assignDefaults); + + /** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * _.defaultsDeep({ 'user': { 'name': 'barney' } }, { 'user': { 'name': 'fred', 'age': 36 } }); + * // => { 'user': { 'name': 'barney', 'age': 36 } } + * + */ + var defaultsDeep = createDefaults(merge, mergeDefaults); + + /** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {string|undefined} Returns the key of the matched element, else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(chr) { + * return chr.age < 40; + * }); + * // => 'barney' (iteration order is not guaranteed) + * + * // using the `_.matches` callback shorthand + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // using the `_.matchesProperty` callback shorthand + * _.findKey(users, 'active', false); + * // => 'fred' + * + * // using the `_.property` callback shorthand + * _.findKey(users, 'active'); + * // => 'barney' + */ + var findKey = createFindKey(baseForOwn); + + /** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * If a property name is provided for `predicate` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `predicate` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to search. + * @param {Function|Object|string} [predicate=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {string|undefined} Returns the key of the matched element, else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(chr) { + * return chr.age < 40; + * }); + * // => returns `pebbles` assuming `_.findKey` returns `barney` + * + * // using the `_.matches` callback shorthand + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // using the `_.matchesProperty` callback shorthand + * _.findLastKey(users, 'active', false); + * // => 'fred' + * + * // using the `_.property` callback shorthand + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ + var findLastKey = createFindKey(baseForOwnRight); + + /** + * Iterates over own and inherited enumerable properties of an object invoking + * `iteratee` for each property. The `iteratee` is bound to `thisArg` and invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns `object`. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => logs 'a', 'b', and 'c' (iteration order is not guaranteed) + */ + var forIn = createForIn(baseFor); + + /** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns `object`. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => logs 'c', 'b', and 'a' assuming `_.forIn ` logs 'a', 'b', and 'c' + */ + var forInRight = createForIn(baseForRight); + + /** + * Iterates over own enumerable properties of an object invoking `iteratee` + * for each property. The `iteratee` is bound to `thisArg` and invoked with + * three arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns `object`. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => logs 'a' and 'b' (iteration order is not guaranteed) + */ + var forOwn = createForOwn(baseForOwn); + + /** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns `object`. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => logs 'b' and 'a' assuming `_.forOwn` logs 'a' and 'b' + */ + var forOwnRight = createForOwn(baseForOwnRight); + + /** + * Creates an array of function property names from all enumerable properties, + * own and inherited, of `object`. + * + * @static + * @memberOf _ + * @alias methods + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the new array of property names. + * @example + * + * _.functions(_); + * // => ['after', 'ary', 'assign', ...] + */ + function functions(object) { + return baseFunctions(object, keysIn(object)); + } + + /** + * Gets the property value at `path` of `object`. If the resolved value is + * `undefined` the `defaultValue` is used in its place. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned if the resolved value is `undefined`. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ + function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, toPath(path), path + ''); + return result === undefined ? defaultValue : result; + } + + /** + * Checks if `path` is a direct property. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` is a direct property, else `false`. + * @example + * + * var object = { 'a': { 'b': { 'c': 3 } } }; + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b.c'); + * // => true + * + * _.has(object, ['a', 'b', 'c']); + * // => true + */ + function has(object, path) { + if (object == null) { + return false; + } + var result = hasOwnProperty.call(object, path); + if (!result && !isKey(path)) { + path = toPath(path); + object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1)); + if (object == null) { + return false; + } + path = last(path); + result = hasOwnProperty.call(object, path); + } + return result || (isLength(object.length) && isIndex(path, object.length) && + (isArray(object) || isArguments(object))); + } + + /** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite property + * assignments of previous values unless `multiValue` is `true`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to invert. + * @param {boolean} [multiValue] Allow multiple values per key. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + * + * // with `multiValue` + * _.invert(object, true); + * // => { '1': ['a', 'c'], '2': ['b'] } + */ + function invert(object, multiValue, guard) { + if (guard && isIterateeCall(object, multiValue, guard)) { + multiValue = undefined; + } + var index = -1, + props = keys(object), + length = props.length, + result = {}; + + while (++index < length) { + var key = props[index], + value = object[key]; + + if (multiValue) { + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + } + else { + result[value] = key; + } + } + return result; + } + + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/6.0/#sec-object.keys) + * for more details. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + var keys = !nativeKeys ? shimKeys : function(object) { + var Ctor = object == null ? undefined : object.constructor; + if ((typeof Ctor == 'function' && Ctor.prototype === object) || + (typeof object != 'function' && isArrayLike(object))) { + return shimKeys(object); + } + return isObject(object) ? nativeKeys(object) : []; + }; + + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + function keysIn(object) { + if (object == null) { + return []; + } + if (!isObject(object)) { + object = Object(object); + } + var length = object.length; + length = (length && isLength(length) && + (isArray(object) || isArguments(object)) && length) || 0; + + var Ctor = object.constructor, + index = -1, + isProto = typeof Ctor == 'function' && Ctor.prototype === object, + result = Array(length), + skipIndexes = length > 0; + + while (++index < length) { + result[index] = (index + ''); + } + for (var key in object) { + if (!(skipIndexes && isIndex(key, length)) && + !(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; + } + + /** + * The opposite of `_.mapValues`; this method creates an object with the + * same values as `object` and keys generated by running each own enumerable + * property of `object` through `iteratee`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the new mapped object. + * @example + * + * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { + * return key + value; + * }); + * // => { 'a1': 1, 'b2': 2 } + */ + var mapKeys = createObjectMapper(true); + + /** + * Creates an object with the same keys as `object` and values generated by + * running each own enumerable property of `object` through `iteratee`. The + * iteratee function is bound to `thisArg` and invoked with three arguments: + * (value, key, object). + * + * If a property name is provided for `iteratee` the created `_.property` + * style callback returns the property value of the given element. + * + * If a value is also provided for `thisArg` the created `_.matchesProperty` + * style callback returns `true` for elements that have a matching property + * value, else `false`. + * + * If an object is provided for `iteratee` the created `_.matches` style + * callback returns `true` for elements that have the properties of the given + * object, else `false`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked + * per iteration. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {Object} Returns the new mapped object. + * @example + * + * _.mapValues({ 'a': 1, 'b': 2 }, function(n) { + * return n * 3; + * }); + * // => { 'a': 3, 'b': 6 } + * + * var users = { + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } + * }; + * + * // using the `_.property` callback shorthand + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + */ + var mapValues = createObjectMapper(); + + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable properties of `object` that are not omitted. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {Function|...(string|string[])} [predicate] The function invoked per + * iteration or property names to omit, specified as individual property + * names or arrays of property names. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'user': 'fred', 'age': 40 }; + * + * _.omit(object, 'age'); + * // => { 'user': 'fred' } + * + * _.omit(object, _.isNumber); + * // => { 'user': 'fred' } + */ + var omit = restParam(function(object, props) { + if (object == null) { + return {}; + } + if (typeof props[0] != 'function') { + var props = arrayMap(baseFlatten(props), String); + return pickByArray(object, baseDifference(keysIn(object), props)); + } + var predicate = bindCallback(props[0], props[1], 3); + return pickByCallback(object, function(value, key, object) { + return !predicate(value, key, object); + }); + }); + + /** + * Creates a two dimensional array of the key-value pairs for `object`, + * e.g. `[[key1, value1], [key2, value2]]`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the new array of key-value pairs. + * @example + * + * _.pairs({ 'barney': 36, 'fred': 40 }); + * // => [['barney', 36], ['fred', 40]] (iteration order is not guaranteed) + */ + function pairs(object) { + object = toObject(object); + + var index = -1, + props = keys(object), + length = props.length, + result = Array(length); + + while (++index < length) { + var key = props[index]; + result[index] = [key, object[key]]; + } + return result; + } + + /** + * Creates an object composed of the picked `object` properties. Property + * names may be specified as individual arguments or as arrays of property + * names. If `predicate` is provided it is invoked for each property of `object` + * picking the properties `predicate` returns truthy for. The predicate is + * bound to `thisArg` and invoked with three arguments: (value, key, object). + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {Function|...(string|string[])} [predicate] The function invoked per + * iteration or property names to pick, specified as individual property + * names or arrays of property names. + * @param {*} [thisArg] The `this` binding of `predicate`. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'user': 'fred', 'age': 40 }; + * + * _.pick(object, 'user'); + * // => { 'user': 'fred' } + * + * _.pick(object, _.isString); + * // => { 'user': 'fred' } + */ + var pick = restParam(function(object, props) { + if (object == null) { + return {}; + } + return typeof props[0] == 'function' + ? pickByCallback(object, bindCallback(props[0], props[1], 3)) + : pickByArray(object, baseFlatten(props)); + }); + + /** + * This method is like `_.get` except that if the resolved value is a function + * it is invoked with the `this` binding of its parent object and its result + * is returned. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned if the resolved value is `undefined`. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a.b.c', 'default'); + * // => 'default' + * + * _.result(object, 'a.b.c', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + var result = object == null ? undefined : object[path]; + if (result === undefined) { + if (object != null && !isKey(path, object)) { + path = toPath(path); + object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1)); + result = object == null ? undefined : object[last(path)]; + } + result = result === undefined ? defaultValue : result; + } + return isFunction(result) ? result.call(object) : result; + } + + /** + * Sets the property value of `path` on `object`. If a portion of `path` + * does not exist it is created. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to augment. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, 'x[0].y.z', 5); + * console.log(object.x[0].y.z); + * // => 5 + */ + function set(object, path, value) { + if (object == null) { + return object; + } + var pathKey = (path + ''); + path = (object[pathKey] != null || isKey(path, object)) ? [pathKey] : toPath(path); + + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; + + while (nested != null && ++index < length) { + var key = path[index]; + if (isObject(nested)) { + if (index == lastIndex) { + nested[key] = value; + } else if (nested[key] == null) { + nested[key] = isIndex(path[index + 1]) ? [] : {}; + } + } + nested = nested[key]; + } + return object; + } + + /** + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own enumerable + * properties through `iteratee`, with each invocation potentially mutating + * the `accumulator` object. The `iteratee` is bound to `thisArg` and invoked + * with four arguments: (accumulator, value, key, object). Iteratee functions + * may exit iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @category Object + * @param {Array|Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @returns {*} Returns the accumulated value. + * @example + * + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }); + * // => [4, 9] + * + * _.transform({ 'a': 1, 'b': 2 }, function(result, n, key) { + * result[key] = n * 3; + * }); + * // => { 'a': 3, 'b': 6 } + */ + function transform(object, iteratee, accumulator, thisArg) { + var isArr = isArray(object) || isTypedArray(object); + iteratee = getCallback(iteratee, thisArg, 4); + + if (accumulator == null) { + if (isArr || isObject(object)) { + var Ctor = object.constructor; + if (isArr) { + accumulator = isArray(object) ? new Ctor : []; + } else { + accumulator = baseCreate(isFunction(Ctor) ? Ctor.prototype : undefined); + } + } else { + accumulator = {}; + } + } + (isArr ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; + } + + /** + * Creates an array of the own enumerable property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return baseValues(object, keys(object)); + } + + /** + * Creates an array of the own and inherited enumerable property values + * of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.valuesIn(new Foo); + * // => [1, 2, 3] (iteration order is not guaranteed) + */ + function valuesIn(object) { + return baseValues(object, keysIn(object)); + } + + /*------------------------------------------------------------------------*/ + + /** + * Checks if `n` is between `start` and up to but not including, `end`. If + * `end` is not specified it is set to `start` with `start` then set to `0`. + * + * @static + * @memberOf _ + * @category Number + * @param {number} n The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `n` is in the range, else `false`. + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + */ + function inRange(value, start, end) { + start = +start || 0; + if (end === undefined) { + end = start; + start = 0; + } else { + end = +end || 0; + } + return value >= nativeMin(start, end) && value < nativeMax(start, end); + } + + /** + * Produces a random number between `min` and `max` (inclusive). If only one + * argument is provided a number between `0` and the given number is returned. + * If `floating` is `true`, or either `min` or `max` are floats, a floating-point + * number is returned instead of an integer. + * + * @static + * @memberOf _ + * @category Number + * @param {number} [min=0] The minimum possible value. + * @param {number} [max=1] The maximum possible value. + * @param {boolean} [floating] Specify returning a floating-point number. + * @returns {number} Returns the random number. + * @example + * + * _.random(0, 5); + * // => an integer between 0 and 5 + * + * _.random(5); + * // => also an integer between 0 and 5 + * + * _.random(5, true); + * // => a floating-point number between 0 and 5 + * + * _.random(1.2, 5.2); + * // => a floating-point number between 1.2 and 5.2 + */ + function random(min, max, floating) { + if (floating && isIterateeCall(min, max, floating)) { + max = floating = undefined; + } + var noMin = min == null, + noMax = max == null; + + if (floating == null) { + if (noMax && typeof min == 'boolean') { + floating = min; + min = 1; + } + else if (typeof max == 'boolean') { + floating = max; + noMax = true; + } + } + if (noMin && noMax) { + max = 1; + noMax = false; + } + min = +min || 0; + if (noMax) { + max = min; + min = 0; + } else { + max = +max || 0; + } + if (floating || min % 1 || max % 1) { + var rand = nativeRandom(); + return nativeMin(min + (rand * (max - min + parseFloat('1e-' + ((rand + '').length - 1)))), max); + } + return baseRandom(min, max); + } + + /*------------------------------------------------------------------------*/ + + /** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar'); + * // => 'fooBar' + * + * _.camelCase('__foo_bar__'); + * // => 'fooBar' + */ + var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? (word.charAt(0).toUpperCase() + word.slice(1)) : word); + }); + + /** + * Capitalizes the first character of `string`. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('fred'); + * // => 'Fred' + */ + function capitalize(string) { + string = baseToString(string); + return string && (string.charAt(0).toUpperCase() + string.slice(1)); + } + + /** + * Deburrs `string` by converting [latin-1 supplementary letters](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * to basic latin letters and removing [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ + function deburr(string) { + string = baseToString(string); + return string && string.replace(reLatin1, deburrLetter).replace(reComboMark, ''); + } + + /** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to search. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search from. + * @returns {boolean} Returns `true` if `string` ends with `target`, else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ + function endsWith(string, target, position) { + string = baseToString(string); + target = (target + ''); + + var length = string.length; + position = position === undefined + ? length + : nativeMin(position < 0 ? 0 : (+position || 0), length); + + position -= target.length; + return position >= 0 && string.indexOf(target, position) == position; + } + + /** + * Converts the characters "&", "<", ">", '"', "'", and "\`", in `string` to + * their corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional characters + * use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. + * See [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * Backticks are escaped because in Internet Explorer < 9, they can break out + * of attribute values or HTML comments. See [#59](https://html5sec.org/#59), + * [#102](https://html5sec.org/#102), [#108](https://html5sec.org/#108), and + * [#133](https://html5sec.org/#133) of the [HTML5 Security Cheatsheet](https://html5sec.org/) + * for more details. + * + * When working with HTML you should always [quote attribute values](http://wonko.com/post/html-escaping) + * to reduce XSS vectors. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + // Reset `lastIndex` because in IE < 9 `String#replace` does not. + string = baseToString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + + /** + * Escapes the `RegExp` special characters "\", "/", "^", "$", ".", "|", "?", + * "*", "+", "(", ")", "[", "]", "{" and "}" in `string`. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https:\/\/lodash\.com\/\)' + */ + function escapeRegExp(string) { + string = baseToString(string); + return (string && reHasRegExpChars.test(string)) + ? string.replace(reRegExpChars, escapeRegExpChar) + : (string || '(?:)'); + } + + /** + * Converts `string` to [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__foo_bar__'); + * // => 'foo-bar' + */ + var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); + }); + + /** + * Pads `string` on the left and right sides if it's shorter than `length`. + * Padding characters are truncated if they can't be evenly divided by `length`. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.pad('abc', 8); + * // => ' abc ' + * + * _.pad('abc', 8, '_-'); + * // => '_-abc_-_' + * + * _.pad('abc', 3); + * // => 'abc' + */ + function pad(string, length, chars) { + string = baseToString(string); + length = +length; + + var strLength = string.length; + if (strLength >= length || !nativeIsFinite(length)) { + return string; + } + var mid = (length - strLength) / 2, + leftLength = nativeFloor(mid), + rightLength = nativeCeil(mid); + + chars = createPadding('', rightLength, chars); + return chars.slice(0, leftLength) + string + chars; + } + + /** + * Pads `string` on the left side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padLeft('abc', 6); + * // => ' abc' + * + * _.padLeft('abc', 6, '_-'); + * // => '_-_abc' + * + * _.padLeft('abc', 3); + * // => 'abc' + */ + var padLeft = createPadDir(); + + /** + * Pads `string` on the right side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padRight('abc', 6); + * // => 'abc ' + * + * _.padRight('abc', 6, '_-'); + * // => 'abc_-_' + * + * _.padRight('abc', 3); + * // => 'abc' + */ + var padRight = createPadDir(true); + + /** + * Converts `string` to an integer of the specified radix. If `radix` is + * `undefined` or `0`, a `radix` of `10` is used unless `value` is a hexadecimal, + * in which case a `radix` of `16` is used. + * + * **Note:** This method aligns with the [ES5 implementation](https://es5.github.io/#E) + * of `parseInt`. + * + * @static + * @memberOf _ + * @category String + * @param {string} string The string to convert. + * @param {number} [radix] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. + * @returns {number} Returns the converted integer. + * @example + * + * _.parseInt('08'); + * // => 8 + * + * _.map(['6', '08', '10'], _.parseInt); + * // => [6, 8, 10] + */ + function parseInt(string, radix, guard) { + // Firefox < 21 and Opera < 15 follow ES3 for `parseInt`. + // Chrome fails to trim leading whitespace characters. + // See https://code.google.com/p/v8/issues/detail?id=3109 for more details. + if (guard ? isIterateeCall(string, radix, guard) : radix == null) { + radix = 0; + } else if (radix) { + radix = +radix; + } + string = trim(string); + return nativeParseInt(string, radix || (reHasHexPrefix.test(string) ? 16 : 10)); + } + + /** + * Repeats the given string `n` times. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to repeat. + * @param {number} [n=0] The number of times to repeat the string. + * @returns {string} Returns the repeated string. + * @example + * + * _.repeat('*', 3); + * // => '***' + * + * _.repeat('abc', 2); + * // => 'abcabc' + * + * _.repeat('abc', 0); + * // => '' + */ + function repeat(string, n) { + var result = ''; + string = baseToString(string); + n = +n; + if (n < 1 || !string || !nativeIsFinite(n)) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + string += string; + } while (n); + + return result; + } + + /** + * Converts `string` to [snake case](https://en.wikipedia.org/wiki/Snake_case). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the snake cased string. + * @example + * + * _.snakeCase('Foo Bar'); + * // => 'foo_bar' + * + * _.snakeCase('fooBar'); + * // => 'foo_bar' + * + * _.snakeCase('--foo-bar'); + * // => 'foo_bar' + */ + var snakeCase = createCompounder(function(result, word, index) { + return result + (index ? '_' : '') + word.toLowerCase(); + }); + + /** + * Converts `string` to [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the start cased string. + * @example + * + * _.startCase('--foo-bar'); + * // => 'Foo Bar' + * + * _.startCase('fooBar'); + * // => 'Foo Bar' + * + * _.startCase('__foo_bar__'); + * // => 'Foo Bar' + */ + var startCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + (word.charAt(0).toUpperCase() + word.slice(1)); + }); + + /** + * Checks if `string` starts with the given target string. + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The string to search. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, else `false`. + * @example + * + * _.startsWith('abc', 'a'); + * // => true + * + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true + */ + function startsWith(string, target, position) { + string = baseToString(string); + position = position == null + ? 0 + : nativeMin(position < 0 ? 0 : (+position || 0), string.length); + + return string.lastIndexOf(target, position) == position; + } + + /** + * Creates a compiled template function that can interpolate data properties + * in "interpolate" delimiters, HTML-escape interpolated data properties in + * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data + * properties may be accessed as free variables in the template. If a setting + * object is provided it takes precedence over `_.templateSettings` values. + * + * **Note:** In the development build `_.template` utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) + * for easier debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @static + * @memberOf _ + * @category String + * @param {string} [string=''] The template string. + * @param {Object} [options] The options object. + * @param {RegExp} [options.escape] The HTML "escape" delimiter. + * @param {RegExp} [options.evaluate] The "evaluate" delimiter. + * @param {Object} [options.imports] An object to import into the template as free variables. + * @param {RegExp} [options.interpolate] The "interpolate" delimiter. + * @param {string} [options.sourceURL] The sourceURL of the template's compiled source. + * @param {string} [options.variable] The data object variable name. + * @param- {Object} [otherOptions] Enables the legacy `options` param signature. + * @returns {Function} Returns the compiled template function. + * @example + * + * // using the "interpolate" delimiter to create a compiled template + * var compiled = _.template('hello <%= user %>!'); + * compiled({ 'user': 'fred' }); + * // => 'hello fred!' + * + * // using the HTML "escape" delimiter to escape data property values + * var compiled = _.template('<%- value %>'); + * compiled({ 'value': ' + + + + +
{{ "%+010d"|sprintf:-123 }}
+
{{ "%+010d"|vsprintf:[-123] }}
+
{{ "%+010d"|fmt:-123 }}
+
{{ "%+010d"|vfmt:[-123] }}
+
{{ "I've got %2$d apples and %1$d oranges."|fmt:4:2 }}
+
{{ "I've got %(apples)d apples and %(oranges)d oranges."|fmt:{apples: 2, oranges: 4} }}
+ + + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js new file mode 100644 index 0000000..dbaf744 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js @@ -0,0 +1,4 @@ +/*! sprintf-js | Alexandru Marasteanu (http://alexei.ro/) | BSD-3-Clause */ + +angular.module("sprintf",[]).filter("sprintf",function(){return function(){return sprintf.apply(null,arguments)}}).filter("fmt",["$filter",function(a){return a("sprintf")}]).filter("vsprintf",function(){return function(a,b){return vsprintf(a,b)}}).filter("vfmt",["$filter",function(a){return a("vsprintf")}]); +//# sourceMappingURL=angular-sprintf.min.map \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js.map b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js.map new file mode 100644 index 0000000..055964c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"angular-sprintf.min.js","sources":["../src/angular-sprintf.js"],"names":["angular","module","filter","sprintf","apply","arguments","$filter","format","argv","vsprintf"],"mappings":";;AAAAA,QACIC,OAAO,cACPC,OAAO,UAAW,WACd,MAAO,YACH,MAAOC,SAAQC,MAAM,KAAMC,cAGnCH,OAAO,OAAQ,UAAW,SAASI,GAC/B,MAAOA,GAAQ,cAEnBJ,OAAO,WAAY,WACf,MAAO,UAASK,EAAQC,GACpB,MAAOC,UAASF,EAAQC,MAGhCN,OAAO,QAAS,UAAW,SAASI,GAChC,MAAOA,GAAQ"} \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.map b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.map new file mode 100644 index 0000000..055964c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.map @@ -0,0 +1 @@ +{"version":3,"file":"angular-sprintf.min.js","sources":["../src/angular-sprintf.js"],"names":["angular","module","filter","sprintf","apply","arguments","$filter","format","argv","vsprintf"],"mappings":";;AAAAA,QACIC,OAAO,cACPC,OAAO,UAAW,WACd,MAAO,YACH,MAAOC,SAAQC,MAAM,KAAMC,cAGnCH,OAAO,OAAQ,UAAW,SAASI,GAC/B,MAAOA,GAAQ,cAEnBJ,OAAO,WAAY,WACf,MAAO,UAASK,EAAQC,GACpB,MAAOC,UAASF,EAAQC,MAGhCN,OAAO,QAAS,UAAW,SAASI,GAChC,MAAOA,GAAQ"} \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js new file mode 100644 index 0000000..dc61e51 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js @@ -0,0 +1,4 @@ +/*! sprintf-js | Alexandru Marasteanu (http://alexei.ro/) | BSD-3-Clause */ + +!function(a){function b(){var a=arguments[0],c=b.cache;return c[a]&&c.hasOwnProperty(a)||(c[a]=b.parse(a)),b.format.call(null,c[a],arguments)}function c(a){return Object.prototype.toString.call(a).slice(8,-1).toLowerCase()}function d(a,b){return Array(b+1).join(a)}var e={not_string:/[^s]/,number:/[diefg]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijosuxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[\+\-]/};b.format=function(a,f){var g,h,i,j,k,l,m,n=1,o=a.length,p="",q=[],r=!0,s="";for(h=0;o>h;h++)if(p=c(a[h]),"string"===p)q[q.length]=a[h];else if("array"===p){if(j=a[h],j[2])for(g=f[n],i=0;i=0),j[8]){case"b":g=g.toString(2);break;case"c":g=String.fromCharCode(g);break;case"d":case"i":g=parseInt(g,10);break;case"j":g=JSON.stringify(g,null,j[6]?parseInt(j[6]):0);break;case"e":g=j[7]?g.toExponential(j[7]):g.toExponential();break;case"f":g=j[7]?parseFloat(g).toFixed(j[7]):parseFloat(g);break;case"g":g=j[7]?parseFloat(g).toPrecision(j[7]):parseFloat(g);break;case"o":g=g.toString(8);break;case"s":g=(g=String(g))&&j[7]?g.substring(0,j[7]):g;break;case"u":g>>>=0;break;case"x":g=g.toString(16);break;case"X":g=g.toString(16).toUpperCase()}e.json.test(j[8])?q[q.length]=g:(!e.number.test(j[8])||r&&!j[3]?s="":(s=r?"+":"-",g=g.toString().replace(e.sign,"")),l=j[4]?"0"===j[4]?"0":j[4].charAt(1):" ",m=j[6]-(s+g).length,k=j[6]&&m>0?d(l,m):"",q[q.length]=j[5]?s+g+k:"0"===l?s+k+g:k+s+g)}return q.join("")},b.cache={},b.parse=function(a){for(var b=a,c=[],d=[],f=0;b;){if(null!==(c=e.text.exec(b)))d[d.length]=c[0];else if(null!==(c=e.modulo.exec(b)))d[d.length]="%";else{if(null===(c=e.placeholder.exec(b)))throw new SyntaxError("[sprintf] unexpected placeholder");if(c[2]){f|=1;var g=[],h=c[2],i=[];if(null===(i=e.key.exec(h)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(g[g.length]=i[1];""!==(h=h.substring(i[0].length));)if(null!==(i=e.key_access.exec(h)))g[g.length]=i[1];else{if(null===(i=e.index_access.exec(h)))throw new SyntaxError("[sprintf] failed to parse named argument key");g[g.length]=i[1]}c[2]=g}else f|=2;if(3===f)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");d[d.length]=c}b=b.substring(c[0].length)}return d};var f=function(a,c,d){return d=(c||[]).slice(0),d.splice(0,0,a),b.apply(null,d)};"undefined"!=typeof exports?(exports.sprintf=b,exports.vsprintf=f):(a.sprintf=b,a.vsprintf=f,"function"==typeof define&&define.amd&&define(function(){return{sprintf:b,vsprintf:f}}))}("undefined"==typeof window?this:window); +//# sourceMappingURL=sprintf.min.map \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js.map b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js.map new file mode 100644 index 0000000..369dbaf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js.map @@ -0,0 +1 @@ +{"version":3,"file":"sprintf.min.js","sources":["../src/sprintf.js"],"names":["window","sprintf","key","arguments","cache","hasOwnProperty","parse","format","call","get_type","variable","Object","prototype","toString","slice","toLowerCase","str_repeat","input","multiplier","Array","join","re","not_string","number","json","not_json","text","modulo","placeholder","key_access","index_access","sign","parse_tree","argv","arg","i","k","match","pad","pad_character","pad_length","cursor","tree_length","length","node_type","output","is_positive","Error","test","isNaN","TypeError","String","fromCharCode","parseInt","JSON","stringify","toExponential","parseFloat","toFixed","substring","toUpperCase","replace","charAt","fmt","_fmt","arg_names","exec","SyntaxError","field_list","replacement_field","field_match","vsprintf","_argv","splice","apply","exports","define","amd","this"],"mappings":";;CAAA,SAAUA,GAeN,QAASC,KACL,GAAIC,GAAMC,UAAU,GAAIC,EAAQH,EAAQG,KAIxC,OAHMA,GAAMF,IAAQE,EAAMC,eAAeH,KACrCE,EAAMF,GAAOD,EAAQK,MAAMJ,IAExBD,EAAQM,OAAOC,KAAK,KAAMJ,EAAMF,GAAMC,WA4JjD,QAASM,GAASC,GACd,MAAOC,QAAOC,UAAUC,SAASL,KAAKE,GAAUI,MAAM,EAAG,IAAIC,cAGjE,QAASC,GAAWC,EAAOC,GACvB,MAAOC,OAAMD,EAAa,GAAGE,KAAKH,GApLtC,GAAII,IACAC,WAAY,OACZC,OAAQ,SACRC,KAAM,MACNC,SAAU,OACVC,KAAM,YACNC,OAAQ,WACRC,YAAa,yFACb1B,IAAK,sBACL2B,WAAY,wBACZC,aAAc,aACdC,KAAM,UAWV9B,GAAQM,OAAS,SAASyB,EAAYC,GAClC,GAAiEC,GAAkBC,EAAGC,EAAGC,EAAOC,EAAKC,EAAeC,EAAhHC,EAAS,EAAGC,EAAcV,EAAWW,OAAQC,EAAY,GAASC,KAA0DC,GAAc,EAAMf,EAAO,EAC3J,KAAKI,EAAI,EAAOO,EAAJP,EAAiBA,IAEzB,GADAS,EAAYnC,EAASuB,EAAWG,IACd,WAAdS,EACAC,EAAOA,EAAOF,QAAUX,EAAWG,OAElC,IAAkB,UAAdS,EAAuB,CAE5B,GADAP,EAAQL,EAAWG,GACfE,EAAM,GAEN,IADAH,EAAMD,EAAKQ,GACNL,EAAI,EAAGA,EAAIC,EAAM,GAAGM,OAAQP,IAAK,CAClC,IAAKF,EAAI7B,eAAegC,EAAM,GAAGD,IAC7B,KAAM,IAAIW,OAAM9C,EAAQ,yCAA0CoC,EAAM,GAAGD,IAE/EF,GAAMA,EAAIG,EAAM,GAAGD,QAIvBF,GADKG,EAAM,GACLJ,EAAKI,EAAM,IAGXJ,EAAKQ,IAOf,IAJqB,YAAjBhC,EAASyB,KACTA,EAAMA,KAGNb,EAAGC,WAAW0B,KAAKX,EAAM,KAAOhB,EAAGI,SAASuB,KAAKX,EAAM,KAAyB,UAAjB5B,EAASyB,IAAoBe,MAAMf,GAClG,KAAM,IAAIgB,WAAUjD,EAAQ,0CAA2CQ,EAASyB,IAOpF,QAJIb,EAAGE,OAAOyB,KAAKX,EAAM,MACrBS,EAAcZ,GAAO,GAGjBG,EAAM,IACV,IAAK,IACDH,EAAMA,EAAIrB,SAAS,EACvB,MACA,KAAK,IACDqB,EAAMiB,OAAOC,aAAalB,EAC9B,MACA,KAAK,IACL,IAAK,IACDA,EAAMmB,SAASnB,EAAK,GACxB,MACA,KAAK,IACDA,EAAMoB,KAAKC,UAAUrB,EAAK,KAAMG,EAAM,GAAKgB,SAAShB,EAAM,IAAM,EACpE,MACA,KAAK,IACDH,EAAMG,EAAM,GAAKH,EAAIsB,cAAcnB,EAAM,IAAMH,EAAIsB,eACvD,MACA,KAAK,IACDtB,EAAMG,EAAM,GAAKoB,WAAWvB,GAAKwB,QAAQrB,EAAM,IAAMoB,WAAWvB,EACpE,MACA,KAAK,IACDA,EAAMA,EAAIrB,SAAS,EACvB,MACA,KAAK,IACDqB,GAAQA,EAAMiB,OAAOjB,KAASG,EAAM,GAAKH,EAAIyB,UAAU,EAAGtB,EAAM,IAAMH,CAC1E,MACA,KAAK,IACDA,KAAc,CAClB,MACA,KAAK,IACDA,EAAMA,EAAIrB,SAAS,GACvB,MACA,KAAK,IACDqB,EAAMA,EAAIrB,SAAS,IAAI+C,cAG3BvC,EAAGG,KAAKwB,KAAKX,EAAM,IACnBQ,EAAOA,EAAOF,QAAUT,IAGpBb,EAAGE,OAAOyB,KAAKX,EAAM,KAASS,IAAeT,EAAM,GAKnDN,EAAO,IAJPA,EAAOe,EAAc,IAAM,IAC3BZ,EAAMA,EAAIrB,WAAWgD,QAAQxC,EAAGU,KAAM,KAK1CQ,EAAgBF,EAAM,GAAkB,MAAbA,EAAM,GAAa,IAAMA,EAAM,GAAGyB,OAAO,GAAK,IACzEtB,EAAaH,EAAM,IAAMN,EAAOG,GAAKS,OACrCL,EAAMD,EAAM,IAAMG,EAAa,EAAIxB,EAAWuB,EAAeC,GAAoB,GACjFK,EAAOA,EAAOF,QAAUN,EAAM,GAAKN,EAAOG,EAAMI,EAAyB,MAAlBC,EAAwBR,EAAOO,EAAMJ,EAAMI,EAAMP,EAAOG,GAI3H,MAAOW,GAAOzB,KAAK,KAGvBnB,EAAQG,SAERH,EAAQK,MAAQ,SAASyD,GAErB,IADA,GAAIC,GAAOD,EAAK1B,KAAYL,KAAiBiC,EAAY,EAClDD,GAAM,CACT,GAAqC,QAAhC3B,EAAQhB,EAAGK,KAAKwC,KAAKF,IACtBhC,EAAWA,EAAWW,QAAUN,EAAM,OAErC,IAAuC,QAAlCA,EAAQhB,EAAGM,OAAOuC,KAAKF,IAC7BhC,EAAWA,EAAWW,QAAU,QAE/B,CAAA,GAA4C,QAAvCN,EAAQhB,EAAGO,YAAYsC,KAAKF,IAgClC,KAAM,IAAIG,aAAY,mCA/BtB,IAAI9B,EAAM,GAAI,CACV4B,GAAa,CACb,IAAIG,MAAiBC,EAAoBhC,EAAM,GAAIiC,IACnD,IAAuD,QAAlDA,EAAcjD,EAAGnB,IAAIgE,KAAKG,IAe3B,KAAM,IAAIF,aAAY,+CAbtB,KADAC,EAAWA,EAAWzB,QAAU2B,EAAY,GACwC,MAA5ED,EAAoBA,EAAkBV,UAAUW,EAAY,GAAG3B,UACnE,GAA8D,QAAzD2B,EAAcjD,EAAGQ,WAAWqC,KAAKG,IAClCD,EAAWA,EAAWzB,QAAU2B,EAAY,OAE3C,CAAA,GAAgE,QAA3DA,EAAcjD,EAAGS,aAAaoC,KAAKG,IAIzC,KAAM,IAAIF,aAAY,+CAHtBC,GAAWA,EAAWzB,QAAU2B,EAAY,GAUxDjC,EAAM,GAAK+B,MAGXH,IAAa,CAEjB,IAAkB,IAAdA,EACA,KAAM,IAAIlB,OAAM,4EAEpBf,GAAWA,EAAWW,QAAUN,EAKpC2B,EAAOA,EAAKL,UAAUtB,EAAM,GAAGM,QAEnC,MAAOX,GAGX,IAAIuC,GAAW,SAASR,EAAK9B,EAAMuC,GAG/B,MAFAA,IAASvC,OAAYnB,MAAM,GAC3B0D,EAAMC,OAAO,EAAG,EAAGV,GACZ9D,EAAQyE,MAAM,KAAMF,GAiBR,oBAAZG,UACPA,QAAQ1E,QAAUA,EAClB0E,QAAQJ,SAAWA,IAGnBvE,EAAOC,QAAUA,EACjBD,EAAOuE,SAAWA,EAEI,kBAAXK,SAAyBA,OAAOC,KACvCD,OAAO,WACH,OACI3E,QAASA,EACTsE,SAAUA,OAKT,mBAAXvE,QAAyB8E,KAAO9E"} \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.map b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.map new file mode 100644 index 0000000..ee011aa --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.map @@ -0,0 +1 @@ +{"version":3,"file":"sprintf.min.js","sources":["../src/sprintf.js"],"names":["window","sprintf","key","arguments","cache","hasOwnProperty","parse","format","call","get_type","variable","Object","prototype","toString","slice","toLowerCase","str_repeat","input","multiplier","Array","join","re","not_string","number","json","not_json","text","modulo","placeholder","key_access","index_access","sign","parse_tree","argv","arg","i","k","match","pad","pad_character","pad_length","cursor","tree_length","length","node_type","output","is_positive","Error","test","isNaN","TypeError","String","fromCharCode","parseInt","JSON","stringify","toExponential","parseFloat","toFixed","toPrecision","substring","toUpperCase","replace","charAt","fmt","_fmt","arg_names","exec","SyntaxError","field_list","replacement_field","field_match","vsprintf","_argv","splice","apply","exports","define","amd","this"],"mappings":";;CAAA,SAAUA,GAeN,QAASC,KACL,GAAIC,GAAMC,UAAU,GAAIC,EAAQH,EAAQG,KAIxC,OAHMA,GAAMF,IAAQE,EAAMC,eAAeH,KACrCE,EAAMF,GAAOD,EAAQK,MAAMJ,IAExBD,EAAQM,OAAOC,KAAK,KAAMJ,EAAMF,GAAMC,WA+JjD,QAASM,GAASC,GACd,MAAOC,QAAOC,UAAUC,SAASL,KAAKE,GAAUI,MAAM,EAAG,IAAIC,cAGjE,QAASC,GAAWC,EAAOC,GACvB,MAAOC,OAAMD,EAAa,GAAGE,KAAKH,GAvLtC,GAAII,IACAC,WAAY,OACZC,OAAQ,UACRC,KAAM,MACNC,SAAU,OACVC,KAAM,YACNC,OAAQ,WACRC,YAAa,yFACb1B,IAAK,sBACL2B,WAAY,wBACZC,aAAc,aACdC,KAAM,UAWV9B,GAAQM,OAAS,SAASyB,EAAYC,GAClC,GAAiEC,GAAkBC,EAAGC,EAAGC,EAAOC,EAAKC,EAAeC,EAAhHC,EAAS,EAAGC,EAAcV,EAAWW,OAAQC,EAAY,GAASC,KAA0DC,GAAc,EAAMf,EAAO,EAC3J,KAAKI,EAAI,EAAOO,EAAJP,EAAiBA,IAEzB,GADAS,EAAYnC,EAASuB,EAAWG,IACd,WAAdS,EACAC,EAAOA,EAAOF,QAAUX,EAAWG,OAElC,IAAkB,UAAdS,EAAuB,CAE5B,GADAP,EAAQL,EAAWG,GACfE,EAAM,GAEN,IADAH,EAAMD,EAAKQ,GACNL,EAAI,EAAGA,EAAIC,EAAM,GAAGM,OAAQP,IAAK,CAClC,IAAKF,EAAI7B,eAAegC,EAAM,GAAGD,IAC7B,KAAM,IAAIW,OAAM9C,EAAQ,yCAA0CoC,EAAM,GAAGD,IAE/EF,GAAMA,EAAIG,EAAM,GAAGD,QAIvBF,GADKG,EAAM,GACLJ,EAAKI,EAAM,IAGXJ,EAAKQ,IAOf,IAJqB,YAAjBhC,EAASyB,KACTA,EAAMA,KAGNb,EAAGC,WAAW0B,KAAKX,EAAM,KAAOhB,EAAGI,SAASuB,KAAKX,EAAM,KAAyB,UAAjB5B,EAASyB,IAAoBe,MAAMf,GAClG,KAAM,IAAIgB,WAAUjD,EAAQ,0CAA2CQ,EAASyB,IAOpF,QAJIb,EAAGE,OAAOyB,KAAKX,EAAM,MACrBS,EAAcZ,GAAO,GAGjBG,EAAM,IACV,IAAK,IACDH,EAAMA,EAAIrB,SAAS,EACvB,MACA,KAAK,IACDqB,EAAMiB,OAAOC,aAAalB,EAC9B,MACA,KAAK,IACL,IAAK,IACDA,EAAMmB,SAASnB,EAAK,GACxB,MACA,KAAK,IACDA,EAAMoB,KAAKC,UAAUrB,EAAK,KAAMG,EAAM,GAAKgB,SAAShB,EAAM,IAAM,EACpE,MACA,KAAK,IACDH,EAAMG,EAAM,GAAKH,EAAIsB,cAAcnB,EAAM,IAAMH,EAAIsB,eACvD,MACA,KAAK,IACDtB,EAAMG,EAAM,GAAKoB,WAAWvB,GAAKwB,QAAQrB,EAAM,IAAMoB,WAAWvB,EACpE,MACA,KAAK,IACDA,EAAMG,EAAM,GAAKoB,WAAWvB,GAAKyB,YAAYtB,EAAM,IAAMoB,WAAWvB,EACxE,MACA,KAAK,IACDA,EAAMA,EAAIrB,SAAS,EACvB,MACA,KAAK,IACDqB,GAAQA,EAAMiB,OAAOjB,KAASG,EAAM,GAAKH,EAAI0B,UAAU,EAAGvB,EAAM,IAAMH,CAC1E,MACA,KAAK,IACDA,KAAc,CAClB,MACA,KAAK,IACDA,EAAMA,EAAIrB,SAAS,GACvB,MACA,KAAK,IACDqB,EAAMA,EAAIrB,SAAS,IAAIgD,cAG3BxC,EAAGG,KAAKwB,KAAKX,EAAM,IACnBQ,EAAOA,EAAOF,QAAUT,IAGpBb,EAAGE,OAAOyB,KAAKX,EAAM,KAASS,IAAeT,EAAM,GAKnDN,EAAO,IAJPA,EAAOe,EAAc,IAAM,IAC3BZ,EAAMA,EAAIrB,WAAWiD,QAAQzC,EAAGU,KAAM,KAK1CQ,EAAgBF,EAAM,GAAkB,MAAbA,EAAM,GAAa,IAAMA,EAAM,GAAG0B,OAAO,GAAK,IACzEvB,EAAaH,EAAM,IAAMN,EAAOG,GAAKS,OACrCL,EAAMD,EAAM,IAAMG,EAAa,EAAIxB,EAAWuB,EAAeC,GAAoB,GACjFK,EAAOA,EAAOF,QAAUN,EAAM,GAAKN,EAAOG,EAAMI,EAAyB,MAAlBC,EAAwBR,EAAOO,EAAMJ,EAAMI,EAAMP,EAAOG,GAI3H,MAAOW,GAAOzB,KAAK,KAGvBnB,EAAQG,SAERH,EAAQK,MAAQ,SAAS0D,GAErB,IADA,GAAIC,GAAOD,EAAK3B,KAAYL,KAAiBkC,EAAY,EAClDD,GAAM,CACT,GAAqC,QAAhC5B,EAAQhB,EAAGK,KAAKyC,KAAKF,IACtBjC,EAAWA,EAAWW,QAAUN,EAAM,OAErC,IAAuC,QAAlCA,EAAQhB,EAAGM,OAAOwC,KAAKF,IAC7BjC,EAAWA,EAAWW,QAAU,QAE/B,CAAA,GAA4C,QAAvCN,EAAQhB,EAAGO,YAAYuC,KAAKF,IAgClC,KAAM,IAAIG,aAAY,mCA/BtB,IAAI/B,EAAM,GAAI,CACV6B,GAAa,CACb,IAAIG,MAAiBC,EAAoBjC,EAAM,GAAIkC,IACnD,IAAuD,QAAlDA,EAAclD,EAAGnB,IAAIiE,KAAKG,IAe3B,KAAM,IAAIF,aAAY,+CAbtB,KADAC,EAAWA,EAAW1B,QAAU4B,EAAY,GACwC,MAA5ED,EAAoBA,EAAkBV,UAAUW,EAAY,GAAG5B,UACnE,GAA8D,QAAzD4B,EAAclD,EAAGQ,WAAWsC,KAAKG,IAClCD,EAAWA,EAAW1B,QAAU4B,EAAY,OAE3C,CAAA,GAAgE,QAA3DA,EAAclD,EAAGS,aAAaqC,KAAKG,IAIzC,KAAM,IAAIF,aAAY,+CAHtBC,GAAWA,EAAW1B,QAAU4B,EAAY,GAUxDlC,EAAM,GAAKgC,MAGXH,IAAa,CAEjB,IAAkB,IAAdA,EACA,KAAM,IAAInB,OAAM,4EAEpBf,GAAWA,EAAWW,QAAUN,EAKpC4B,EAAOA,EAAKL,UAAUvB,EAAM,GAAGM,QAEnC,MAAOX,GAGX,IAAIwC,GAAW,SAASR,EAAK/B,EAAMwC,GAG/B,MAFAA,IAASxC,OAAYnB,MAAM,GAC3B2D,EAAMC,OAAO,EAAG,EAAGV,GACZ/D,EAAQ0E,MAAM,KAAMF,GAiBR,oBAAZG,UACPA,QAAQ3E,QAAUA,EAClB2E,QAAQJ,SAAWA,IAGnBxE,EAAOC,QAAUA,EACjBD,EAAOwE,SAAWA,EAEI,kBAAXK,SAAyBA,OAAOC,KACvCD,OAAO,WACH,OACI5E,QAASA,EACTuE,SAAUA,OAKT,mBAAXxE,QAAyB+E,KAAO/E"} \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/gruntfile.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/gruntfile.js new file mode 100644 index 0000000..246e1c3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/gruntfile.js @@ -0,0 +1,36 @@ +module.exports = function(grunt) { + grunt.initConfig({ + pkg: grunt.file.readJSON("package.json"), + + uglify: { + options: { + banner: "/*! <%= pkg.name %> | <%= pkg.author %> | <%= pkg.license %> */\n", + sourceMap: true + }, + build: { + files: [ + { + src: "src/sprintf.js", + dest: "dist/sprintf.min.js" + }, + { + src: "src/angular-sprintf.js", + dest: "dist/angular-sprintf.min.js" + } + ] + } + }, + + watch: { + js: { + files: "src/*.js", + tasks: ["uglify"] + } + } + }) + + grunt.loadNpmTasks("grunt-contrib-uglify") + grunt.loadNpmTasks("grunt-contrib-watch") + + grunt.registerTask("default", ["uglify", "watch"]) +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/package.json new file mode 100644 index 0000000..6e9f1d7 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/package.json @@ -0,0 +1,52 @@ +{ + "name": "sprintf-js", + "version": "1.0.3", + "description": "JavaScript sprintf implementation", + "author": { + "name": "Alexandru Marasteanu", + "email": "hello@alexei.ro", + "url": "http://alexei.ro/" + }, + "main": "src/sprintf.js", + "scripts": { + "test": "mocha test/test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/alexei/sprintf.js.git" + }, + "license": "BSD-3-Clause", + "devDependencies": { + "mocha": "*", + "grunt": "*", + "grunt-contrib-watch": "*", + "grunt-contrib-uglify": "*" + }, + "gitHead": "747b806c2dab5b64d5c9958c42884946a187c3b1", + "bugs": { + "url": "https://github.com/alexei/sprintf.js/issues" + }, + "homepage": "https://github.com/alexei/sprintf.js#readme", + "_id": "sprintf-js@1.0.3", + "_shasum": "04e6926f662895354f3dd015203633b857297e2c", + "_from": "sprintf-js@>=1.0.2 <1.1.0", + "_npmVersion": "2.10.1", + "_nodeVersion": "0.12.4", + "_npmUser": { + "name": "alexei", + "email": "hello@alexei.ro" + }, + "dist": { + "shasum": "04e6926f662895354f3dd015203633b857297e2c", + "tarball": "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + }, + "maintainers": [ + { + "name": "alexei", + "email": "hello@alexei.ro" + } + ], + "directories": {}, + "_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/src/angular-sprintf.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/src/angular-sprintf.js new file mode 100644 index 0000000..9c69123 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/src/angular-sprintf.js @@ -0,0 +1,18 @@ +angular. + module("sprintf", []). + filter("sprintf", function() { + return function() { + return sprintf.apply(null, arguments) + } + }). + filter("fmt", ["$filter", function($filter) { + return $filter("sprintf") + }]). + filter("vsprintf", function() { + return function(format, argv) { + return vsprintf(format, argv) + } + }). + filter("vfmt", ["$filter", function($filter) { + return $filter("vsprintf") + }]) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/src/sprintf.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/src/sprintf.js new file mode 100644 index 0000000..c0fc7c0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/src/sprintf.js @@ -0,0 +1,208 @@ +(function(window) { + var re = { + not_string: /[^s]/, + number: /[diefg]/, + json: /[j]/, + not_json: /[^j]/, + text: /^[^\x25]+/, + modulo: /^\x25{2}/, + placeholder: /^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijosuxX])/, + key: /^([a-z_][a-z_\d]*)/i, + key_access: /^\.([a-z_][a-z_\d]*)/i, + index_access: /^\[(\d+)\]/, + sign: /^[\+\-]/ + } + + function sprintf() { + var key = arguments[0], cache = sprintf.cache + if (!(cache[key] && cache.hasOwnProperty(key))) { + cache[key] = sprintf.parse(key) + } + return sprintf.format.call(null, cache[key], arguments) + } + + sprintf.format = function(parse_tree, argv) { + var cursor = 1, tree_length = parse_tree.length, node_type = "", arg, output = [], i, k, match, pad, pad_character, pad_length, is_positive = true, sign = "" + for (i = 0; i < tree_length; i++) { + node_type = get_type(parse_tree[i]) + if (node_type === "string") { + output[output.length] = parse_tree[i] + } + else if (node_type === "array") { + match = parse_tree[i] // convenience purposes only + if (match[2]) { // keyword argument + arg = argv[cursor] + for (k = 0; k < match[2].length; k++) { + if (!arg.hasOwnProperty(match[2][k])) { + throw new Error(sprintf("[sprintf] property '%s' does not exist", match[2][k])) + } + arg = arg[match[2][k]] + } + } + else if (match[1]) { // positional argument (explicit) + arg = argv[match[1]] + } + else { // positional argument (implicit) + arg = argv[cursor++] + } + + if (get_type(arg) == "function") { + arg = arg() + } + + if (re.not_string.test(match[8]) && re.not_json.test(match[8]) && (get_type(arg) != "number" && isNaN(arg))) { + throw new TypeError(sprintf("[sprintf] expecting number but found %s", get_type(arg))) + } + + if (re.number.test(match[8])) { + is_positive = arg >= 0 + } + + switch (match[8]) { + case "b": + arg = arg.toString(2) + break + case "c": + arg = String.fromCharCode(arg) + break + case "d": + case "i": + arg = parseInt(arg, 10) + break + case "j": + arg = JSON.stringify(arg, null, match[6] ? parseInt(match[6]) : 0) + break + case "e": + arg = match[7] ? arg.toExponential(match[7]) : arg.toExponential() + break + case "f": + arg = match[7] ? parseFloat(arg).toFixed(match[7]) : parseFloat(arg) + break + case "g": + arg = match[7] ? parseFloat(arg).toPrecision(match[7]) : parseFloat(arg) + break + case "o": + arg = arg.toString(8) + break + case "s": + arg = ((arg = String(arg)) && match[7] ? arg.substring(0, match[7]) : arg) + break + case "u": + arg = arg >>> 0 + break + case "x": + arg = arg.toString(16) + break + case "X": + arg = arg.toString(16).toUpperCase() + break + } + if (re.json.test(match[8])) { + output[output.length] = arg + } + else { + if (re.number.test(match[8]) && (!is_positive || match[3])) { + sign = is_positive ? "+" : "-" + arg = arg.toString().replace(re.sign, "") + } + else { + sign = "" + } + pad_character = match[4] ? match[4] === "0" ? "0" : match[4].charAt(1) : " " + pad_length = match[6] - (sign + arg).length + pad = match[6] ? (pad_length > 0 ? str_repeat(pad_character, pad_length) : "") : "" + output[output.length] = match[5] ? sign + arg + pad : (pad_character === "0" ? sign + pad + arg : pad + sign + arg) + } + } + } + return output.join("") + } + + sprintf.cache = {} + + sprintf.parse = function(fmt) { + var _fmt = fmt, match = [], parse_tree = [], arg_names = 0 + while (_fmt) { + if ((match = re.text.exec(_fmt)) !== null) { + parse_tree[parse_tree.length] = match[0] + } + else if ((match = re.modulo.exec(_fmt)) !== null) { + parse_tree[parse_tree.length] = "%" + } + else if ((match = re.placeholder.exec(_fmt)) !== null) { + if (match[2]) { + arg_names |= 1 + var field_list = [], replacement_field = match[2], field_match = [] + if ((field_match = re.key.exec(replacement_field)) !== null) { + field_list[field_list.length] = field_match[1] + while ((replacement_field = replacement_field.substring(field_match[0].length)) !== "") { + if ((field_match = re.key_access.exec(replacement_field)) !== null) { + field_list[field_list.length] = field_match[1] + } + else if ((field_match = re.index_access.exec(replacement_field)) !== null) { + field_list[field_list.length] = field_match[1] + } + else { + throw new SyntaxError("[sprintf] failed to parse named argument key") + } + } + } + else { + throw new SyntaxError("[sprintf] failed to parse named argument key") + } + match[2] = field_list + } + else { + arg_names |= 2 + } + if (arg_names === 3) { + throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported") + } + parse_tree[parse_tree.length] = match + } + else { + throw new SyntaxError("[sprintf] unexpected placeholder") + } + _fmt = _fmt.substring(match[0].length) + } + return parse_tree + } + + var vsprintf = function(fmt, argv, _argv) { + _argv = (argv || []).slice(0) + _argv.splice(0, 0, fmt) + return sprintf.apply(null, _argv) + } + + /** + * helpers + */ + function get_type(variable) { + return Object.prototype.toString.call(variable).slice(8, -1).toLowerCase() + } + + function str_repeat(input, multiplier) { + return Array(multiplier + 1).join(input) + } + + /** + * export to either browser or node.js + */ + if (typeof exports !== "undefined") { + exports.sprintf = sprintf + exports.vsprintf = vsprintf + } + else { + window.sprintf = sprintf + window.vsprintf = vsprintf + + if (typeof define === "function" && define.amd) { + define(function() { + return { + sprintf: sprintf, + vsprintf: vsprintf + } + }) + } + } +})(typeof window === "undefined" ? this : window); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/test/test.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/test/test.js new file mode 100644 index 0000000..6f57b25 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/test/test.js @@ -0,0 +1,82 @@ +var assert = require("assert"), + sprintfjs = require("../src/sprintf.js"), + sprintf = sprintfjs.sprintf, + vsprintf = sprintfjs.vsprintf + +describe("sprintfjs", function() { + var pi = 3.141592653589793 + + it("should return formated strings for simple placeholders", function() { + assert.equal("%", sprintf("%%")) + assert.equal("10", sprintf("%b", 2)) + assert.equal("A", sprintf("%c", 65)) + assert.equal("2", sprintf("%d", 2)) + assert.equal("2", sprintf("%i", 2)) + assert.equal("2", sprintf("%d", "2")) + assert.equal("2", sprintf("%i", "2")) + assert.equal('{"foo":"bar"}', sprintf("%j", {foo: "bar"})) + assert.equal('["foo","bar"]', sprintf("%j", ["foo", "bar"])) + assert.equal("2e+0", sprintf("%e", 2)) + assert.equal("2", sprintf("%u", 2)) + assert.equal("4294967294", sprintf("%u", -2)) + assert.equal("2.2", sprintf("%f", 2.2)) + assert.equal("3.141592653589793", sprintf("%g", pi)) + assert.equal("10", sprintf("%o", 8)) + assert.equal("%s", sprintf("%s", "%s")) + assert.equal("ff", sprintf("%x", 255)) + assert.equal("FF", sprintf("%X", 255)) + assert.equal("Polly wants a cracker", sprintf("%2$s %3$s a %1$s", "cracker", "Polly", "wants")) + assert.equal("Hello world!", sprintf("Hello %(who)s!", {"who": "world"})) + }) + + it("should return formated strings for complex placeholders", function() { + // sign + assert.equal("2", sprintf("%d", 2)) + assert.equal("-2", sprintf("%d", -2)) + assert.equal("+2", sprintf("%+d", 2)) + assert.equal("-2", sprintf("%+d", -2)) + assert.equal("2", sprintf("%i", 2)) + assert.equal("-2", sprintf("%i", -2)) + assert.equal("+2", sprintf("%+i", 2)) + assert.equal("-2", sprintf("%+i", -2)) + assert.equal("2.2", sprintf("%f", 2.2)) + assert.equal("-2.2", sprintf("%f", -2.2)) + assert.equal("+2.2", sprintf("%+f", 2.2)) + assert.equal("-2.2", sprintf("%+f", -2.2)) + assert.equal("-2.3", sprintf("%+.1f", -2.34)) + assert.equal("-0.0", sprintf("%+.1f", -0.01)) + assert.equal("3.14159", sprintf("%.6g", pi)) + assert.equal("3.14", sprintf("%.3g", pi)) + assert.equal("3", sprintf("%.1g", pi)) + assert.equal("-000000123", sprintf("%+010d", -123)) + assert.equal("______-123", sprintf("%+'_10d", -123)) + assert.equal("-234.34 123.2", sprintf("%f %f", -234.34, 123.2)) + + // padding + assert.equal("-0002", sprintf("%05d", -2)) + assert.equal("-0002", sprintf("%05i", -2)) + assert.equal(" <", sprintf("%5s", "<")) + assert.equal("0000<", sprintf("%05s", "<")) + assert.equal("____<", sprintf("%'_5s", "<")) + assert.equal("> ", sprintf("%-5s", ">")) + assert.equal(">0000", sprintf("%0-5s", ">")) + assert.equal(">____", sprintf("%'_-5s", ">")) + assert.equal("xxxxxx", sprintf("%5s", "xxxxxx")) + assert.equal("1234", sprintf("%02u", 1234)) + assert.equal(" -10.235", sprintf("%8.3f", -10.23456)) + assert.equal("-12.34 xxx", sprintf("%f %s", -12.34, "xxx")) + assert.equal('{\n "foo": "bar"\n}', sprintf("%2j", {foo: "bar"})) + assert.equal('[\n "foo",\n "bar"\n]', sprintf("%2j", ["foo", "bar"])) + + // precision + assert.equal("2.3", sprintf("%.1f", 2.345)) + assert.equal("xxxxx", sprintf("%5.5s", "xxxxxx")) + assert.equal(" x", sprintf("%5.1s", "xxxxxx")) + + }) + + it("should return formated strings for callbacks", function() { + assert.equal("foobar", sprintf("%s", function() { return "foobar" })) + assert.equal(Date.now(), sprintf("%s", Date.now)) // should pass... + }) +}) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/package.json new file mode 100644 index 0000000..3c1b7fd --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/argparse/package.json @@ -0,0 +1,62 @@ +{ + "name": "argparse", + "description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library", + "version": "1.0.2", + "keywords": [ + "cli", + "parser", + "argparse", + "option", + "args" + ], + "homepage": "https://github.com/nodeca/argparse", + "contributors": [ + { + "name": "Eugene Shkuropat" + }, + { + "name": "Paul Jacobson" + } + ], + "bugs": { + "url": "https://github.com/nodeca/argparse/issues" + }, + "license": "MIT", + "repository": { + "type": "git", + "url": "git://github.com/nodeca/argparse.git" + }, + "main": "./index.js", + "scripts": { + "test": "make test" + }, + "dependencies": { + "lodash": ">= 3.2.0 < 4.0.0", + "sprintf-js": "~1.0.2" + }, + "devDependencies": { + "mocha": "*" + }, + "gitHead": "990f1b5332e70dd3c1c437d2f4077a2b63ac9674", + "_id": "argparse@1.0.2", + "_shasum": "bcfae39059656d1973d0b9e6a1a74154b5a9a136", + "_from": "argparse@>=1.0.2 <1.1.0", + "_npmVersion": "1.4.28", + "_npmUser": { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + }, + "maintainers": [ + { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + } + ], + "dist": { + "shasum": "bcfae39059656d1973d0b9e6a1a74154b5a9a136", + "tarball": "http://registry.npmjs.org/argparse/-/argparse-1.0.2.tgz" + }, + "directories": {}, + "_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.2.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/ChangeLog b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/ChangeLog new file mode 100644 index 0000000..72d64b5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/ChangeLog @@ -0,0 +1,111 @@ +2015-04-17: Version 2.2.0 + + * Support ES6 import and export declarations (issue 1000) + * Fix line terminator before arrow not recognized as error (issue 1009) + * Support ES6 destructuring (issue 1045) + * Support ES6 template literal (issue 1074) + * Fix the handling of invalid/incomplete string escape sequences (issue 1106) + * Fix ES3 static member access restriction (issue 1120) + * Support for `super` in ES6 class (issue 1147) + +2015-03-09: Version 2.1.0 + + * Support ES6 class (issue 1001) + * Support ES6 rest parameter (issue 1011) + * Expand the location of property getter, setter, and methods (issue 1029) + * Enable TryStatement transition to a single handler (issue 1031) + * Support ES6 computed property name (issue 1037) + * Tolerate unclosed block comment (issue 1041) + * Support ES6 lexical declaration (issue 1065) + +2015-02-06: Version 2.0.0 + + * Support ES6 arrow function (issue 517) + * Support ES6 Unicode code point escape (issue 521) + * Improve the speed and accuracy of comment attachment (issue 522) + * Support ES6 default parameter (issue 519) + * Support ES6 regular expression flags (issue 557) + * Fix scanning of implicit octal literals (issue 565) + * Fix the handling of automatic semicolon insertion (issue 574) + * Support ES6 method definition (issue 620) + * Support ES6 octal integer literal (issue 621) + * Support ES6 binary integer literal (issue 622) + * Support ES6 object literal property value shorthand (issue 624) + +2015-03-03: Version 1.2.5 + + * Fix scanning of implicit octal literals (issue 565) + +2015-02-05: Version 1.2.4 + + * Fix parsing of LeftHandSideExpression in ForInStatement (issue 560) + * Fix the handling of automatic semicolon insertion (issue 574) + +2015-01-18: Version 1.2.3 + + * Fix division by this (issue 616) + +2014-05-18: Version 1.2.2 + + * Fix duplicated tokens when collecting comments (issue 537) + +2014-05-04: Version 1.2.1 + + * Ensure that Program node may still have leading comments (issue 536) + +2014-04-29: Version 1.2.0 + + * Fix semicolon handling for expression statement (issue 462, 533) + * Disallow escaped characters in regular expression flags (issue 503) + * Performance improvement for location tracking (issue 520) + * Improve the speed of comment attachment (issue 522) + +2014-03-26: Version 1.1.1 + + * Fix token handling of forward slash after an array literal (issue 512) + +2014-03-23: Version 1.1.0 + + * Optionally attach comments to the owning syntax nodes (issue 197) + * Simplify binary parsing with stack-based shift reduce (issue 352) + * Always include the raw source of literals (issue 376) + * Add optional input source information (issue 386) + * Tokenizer API for pure lexical scanning (issue 398) + * Improve the web site and its online demos (issue 337, 400, 404) + * Performance improvement for location tracking (issue 417, 424) + * Support HTML comment syntax (issue 451) + * Drop support for legacy browsers (issue 474) + +2013-08-27: Version 1.0.4 + + * Minimize the payload for packages (issue 362) + * Fix missing cases on an empty switch statement (issue 436) + * Support escaped ] in regexp literal character classes (issue 442) + * Tolerate invalid left-hand side expression (issue 130) + +2013-05-17: Version 1.0.3 + + * Variable declaration needs at least one declarator (issue 391) + * Fix benchmark's variance unit conversion (issue 397) + * IE < 9: \v should be treated as vertical tab (issue 405) + * Unary expressions should always have prefix: true (issue 418) + * Catch clause should only accept an identifier (issue 423) + * Tolerate setters without parameter (issue 426) + +2012-11-02: Version 1.0.2 + + Improvement: + + * Fix esvalidate JUnit output upon a syntax error (issue 374) + +2012-10-28: Version 1.0.1 + + Improvements: + + * esvalidate understands shebang in a Unix shell script (issue 361) + * esvalidate treats fatal parsing failure as an error (issue 361) + * Reduce Node.js package via .npmignore (issue 362) + +2012-10-22: Version 1.0.0 + + Initial release. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD new file mode 100644 index 0000000..3e580c3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD @@ -0,0 +1,19 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/README.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/README.md new file mode 100644 index 0000000..9ba7c0f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/README.md @@ -0,0 +1,23 @@ +**Esprima** ([esprima.org](http://esprima.org), BSD license) is a high performance, +standard-compliant [ECMAScript](http://www.ecma-international.org/publications/standards/Ecma-262.htm) +parser written in ECMAScript (also popularly known as +[JavaScript](https://en.wikipedia.org/wiki/JavaScript). +Esprima is created and maintained by [Ariya Hidayat](https://twitter.com/ariyahidayat), +with the help of [many contributors](https://github.com/jquery/esprima/contributors). + +### Features + +- Full support for ECMAScript 5.1 ([ECMA-262](http://www.ecma-international.org/publications/standards/Ecma-262.htm)) +- Sensible [syntax tree format](https://github.com/estree/estree/blob/master/spec.md) as standardized by [EStree project](https://github.com/estree/estree) +- Optional tracking of syntax node location (index-based and line-column) +- Heavily tested (~1000 [unit tests](https://github.com/jquery/esprima/tree/master/test/fixtures) with [full code coverage](https://travis-ci.org/jquery/esprima)) +- [Partial support](https://github.com/jquery/esprima/issues/1099) for ECMAScript 6 + +Esprima serves as a **building block** for some JavaScript +language tools, from [code instrumentation](http://esprima.org/demo/functiontrace.html) +to [editor autocompletion](http://esprima.org/demo/autocomplete.html). + +Esprima runs on many popular web browsers, as well as other ECMAScript platforms such as +[Rhino](http://www.mozilla.org/rhino), [Nashorn](http://openjdk.java.net/projects/nashorn/), and [Node.js](https://npmjs.org/package/esprima). + +For more information, check the web site [esprima.org](http://esprima.org). diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/bin/esparse.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/bin/esparse.js new file mode 100644 index 0000000..5603666 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/bin/esparse.js @@ -0,0 +1,127 @@ +#!/usr/bin/env node +/* + Copyright (C) 2012 Ariya Hidayat + Copyright (C) 2011 Ariya Hidayat + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*jslint sloppy:true node:true rhino:true */ + +var fs, esprima, fname, content, options, syntax; + +if (typeof require === 'function') { + fs = require('fs'); + esprima = require('esprima'); +} else if (typeof load === 'function') { + try { + load('esprima.js'); + } catch (e) { + load('../esprima.js'); + } +} + +// Shims to Node.js objects when running under Rhino. +if (typeof console === 'undefined' && typeof process === 'undefined') { + console = { log: print }; + fs = { readFileSync: readFile }; + process = { argv: arguments, exit: quit }; + process.argv.unshift('esparse.js'); + process.argv.unshift('rhino'); +} + +function showUsage() { + console.log('Usage:'); + console.log(' esparse [options] file.js'); + console.log(); + console.log('Available options:'); + console.log(); + console.log(' --comment Gather all line and block comments in an array'); + console.log(' --loc Include line-column location info for each syntax node'); + console.log(' --range Include index-based range for each syntax node'); + console.log(' --raw Display the raw value of literals'); + console.log(' --tokens List all tokens in an array'); + console.log(' --tolerant Tolerate errors on a best-effort basis (experimental)'); + console.log(' -v, --version Shows program version'); + console.log(); + process.exit(1); +} + +if (process.argv.length <= 2) { + showUsage(); +} + +options = {}; + +process.argv.splice(2).forEach(function (entry) { + + if (entry === '-h' || entry === '--help') { + showUsage(); + } else if (entry === '-v' || entry === '--version') { + console.log('ECMAScript Parser (using Esprima version', esprima.version, ')'); + console.log(); + process.exit(0); + } else if (entry === '--comment') { + options.comment = true; + } else if (entry === '--loc') { + options.loc = true; + } else if (entry === '--range') { + options.range = true; + } else if (entry === '--raw') { + options.raw = true; + } else if (entry === '--tokens') { + options.tokens = true; + } else if (entry === '--tolerant') { + options.tolerant = true; + } else if (entry.slice(0, 2) === '--') { + console.log('Error: unknown option ' + entry + '.'); + process.exit(1); + } else if (typeof fname === 'string') { + console.log('Error: more than one input file.'); + process.exit(1); + } else { + fname = entry; + } +}); + +if (typeof fname !== 'string') { + console.log('Error: no input file.'); + process.exit(1); +} + +// Special handling for regular expression literal since we need to +// convert it to a string literal, otherwise it will be decoded +// as object "{}" and the regular expression would be lost. +function adjustRegexLiteral(key, value) { + if (key === 'value' && value instanceof RegExp) { + value = value.toString(); + } + return value; +} + +try { + content = fs.readFileSync(fname, 'utf-8'); + syntax = esprima.parse(content, options); + console.log(JSON.stringify(syntax, adjustRegexLiteral, 4)); +} catch (e) { + console.log('Error: ' + e.message); + process.exit(1); +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js new file mode 100644 index 0000000..dddd8a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js @@ -0,0 +1,199 @@ +#!/usr/bin/env node +/* + Copyright (C) 2012 Ariya Hidayat + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*jslint sloppy:true plusplus:true node:true rhino:true */ +/*global phantom:true */ + +var fs, system, esprima, options, fnames, count; + +if (typeof esprima === 'undefined') { + // PhantomJS can only require() relative files + if (typeof phantom === 'object') { + fs = require('fs'); + system = require('system'); + esprima = require('./esprima'); + } else if (typeof require === 'function') { + fs = require('fs'); + esprima = require('esprima'); + } else if (typeof load === 'function') { + try { + load('esprima.js'); + } catch (e) { + load('../esprima.js'); + } + } +} + +// Shims to Node.js objects when running under PhantomJS 1.7+. +if (typeof phantom === 'object') { + fs.readFileSync = fs.read; + process = { + argv: [].slice.call(system.args), + exit: phantom.exit + }; + process.argv.unshift('phantomjs'); +} + +// Shims to Node.js objects when running under Rhino. +if (typeof console === 'undefined' && typeof process === 'undefined') { + console = { log: print }; + fs = { readFileSync: readFile }; + process = { argv: arguments, exit: quit }; + process.argv.unshift('esvalidate.js'); + process.argv.unshift('rhino'); +} + +function showUsage() { + console.log('Usage:'); + console.log(' esvalidate [options] file.js'); + console.log(); + console.log('Available options:'); + console.log(); + console.log(' --format=type Set the report format, plain (default) or junit'); + console.log(' -v, --version Print program version'); + console.log(); + process.exit(1); +} + +if (process.argv.length <= 2) { + showUsage(); +} + +options = { + format: 'plain' +}; + +fnames = []; + +process.argv.splice(2).forEach(function (entry) { + + if (entry === '-h' || entry === '--help') { + showUsage(); + } else if (entry === '-v' || entry === '--version') { + console.log('ECMAScript Validator (using Esprima version', esprima.version, ')'); + console.log(); + process.exit(0); + } else if (entry.slice(0, 9) === '--format=') { + options.format = entry.slice(9); + if (options.format !== 'plain' && options.format !== 'junit') { + console.log('Error: unknown report format ' + options.format + '.'); + process.exit(1); + } + } else if (entry.slice(0, 2) === '--') { + console.log('Error: unknown option ' + entry + '.'); + process.exit(1); + } else { + fnames.push(entry); + } +}); + +if (fnames.length === 0) { + console.log('Error: no input file.'); + process.exit(1); +} + +if (options.format === 'junit') { + console.log(''); + console.log(''); +} + +count = 0; +fnames.forEach(function (fname) { + var content, timestamp, syntax, name; + try { + content = fs.readFileSync(fname, 'utf-8'); + + if (content[0] === '#' && content[1] === '!') { + content = '//' + content.substr(2, content.length); + } + + timestamp = Date.now(); + syntax = esprima.parse(content, { tolerant: true }); + + if (options.format === 'junit') { + + name = fname; + if (name.lastIndexOf('/') >= 0) { + name = name.slice(name.lastIndexOf('/') + 1); + } + + console.log(''); + + syntax.errors.forEach(function (error) { + var msg = error.message; + msg = msg.replace(/^Line\ [0-9]*\:\ /, ''); + console.log(' '); + console.log(' ' + + error.message + '(' + name + ':' + error.lineNumber + ')' + + ''); + console.log(' '); + }); + + console.log(''); + + } else if (options.format === 'plain') { + + syntax.errors.forEach(function (error) { + var msg = error.message; + msg = msg.replace(/^Line\ [0-9]*\:\ /, ''); + msg = fname + ':' + error.lineNumber + ': ' + msg; + console.log(msg); + ++count; + }); + + } + } catch (e) { + ++count; + if (options.format === 'junit') { + console.log(''); + console.log(' '); + console.log(' ' + + e.message + '(' + fname + ((e.lineNumber) ? ':' + e.lineNumber : '') + + ')'); + console.log(' '); + console.log(''); + } else { + console.log('Error: ' + e.message); + } + } +}); + +if (options.format === 'junit') { + console.log(''); +} + +if (count > 0) { + process.exit(1); +} + +if (count === 0 && typeof phantom === 'object') { + process.exit(0); +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/esprima.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/esprima.js new file mode 100644 index 0000000..2d7fc11 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/esprima.js @@ -0,0 +1,5321 @@ +/* + Copyright (C) 2013 Ariya Hidayat + Copyright (C) 2013 Thaddee Tyl + Copyright (C) 2013 Mathias Bynens + Copyright (C) 2012 Ariya Hidayat + Copyright (C) 2012 Mathias Bynens + Copyright (C) 2012 Joost-Wim Boekesteijn + Copyright (C) 2012 Kris Kowal + Copyright (C) 2012 Yusuke Suzuki + Copyright (C) 2012 Arpad Borsos + Copyright (C) 2011 Ariya Hidayat + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +(function (root, factory) { + 'use strict'; + + // Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, + // Rhino, and plain browser loading. + + /* istanbul ignore next */ + if (typeof define === 'function' && define.amd) { + define(['exports'], factory); + } else if (typeof exports !== 'undefined') { + factory(exports); + } else { + factory((root.esprima = {})); + } +}(this, function (exports) { + 'use strict'; + + var Token, + TokenName, + FnExprTokens, + Syntax, + PlaceHolders, + Messages, + Regex, + source, + strict, + sourceType, + index, + lineNumber, + lineStart, + hasLineTerminator, + lastIndex, + lastLineNumber, + lastLineStart, + startIndex, + startLineNumber, + startLineStart, + scanning, + length, + lookahead, + state, + extra, + isBindingElement, + isAssignmentTarget, + firstCoverInitializedNameError; + + Token = { + BooleanLiteral: 1, + EOF: 2, + Identifier: 3, + Keyword: 4, + NullLiteral: 5, + NumericLiteral: 6, + Punctuator: 7, + StringLiteral: 8, + RegularExpression: 9, + Template: 10 + }; + + TokenName = {}; + TokenName[Token.BooleanLiteral] = 'Boolean'; + TokenName[Token.EOF] = ''; + TokenName[Token.Identifier] = 'Identifier'; + TokenName[Token.Keyword] = 'Keyword'; + TokenName[Token.NullLiteral] = 'Null'; + TokenName[Token.NumericLiteral] = 'Numeric'; + TokenName[Token.Punctuator] = 'Punctuator'; + TokenName[Token.StringLiteral] = 'String'; + TokenName[Token.RegularExpression] = 'RegularExpression'; + TokenName[Token.Template] = 'Template'; + + // A function following one of those tokens is an expression. + FnExprTokens = ['(', '{', '[', 'in', 'typeof', 'instanceof', 'new', + 'return', 'case', 'delete', 'throw', 'void', + // assignment operators + '=', '+=', '-=', '*=', '/=', '%=', '<<=', '>>=', '>>>=', + '&=', '|=', '^=', ',', + // binary/unary operators + '+', '-', '*', '/', '%', '++', '--', '<<', '>>', '>>>', '&', + '|', '^', '!', '~', '&&', '||', '?', ':', '===', '==', '>=', + '<=', '<', '>', '!=', '!==']; + + Syntax = { + AssignmentExpression: 'AssignmentExpression', + AssignmentPattern: 'AssignmentPattern', + ArrayExpression: 'ArrayExpression', + ArrayPattern: 'ArrayPattern', + ArrowFunctionExpression: 'ArrowFunctionExpression', + BlockStatement: 'BlockStatement', + BinaryExpression: 'BinaryExpression', + BreakStatement: 'BreakStatement', + CallExpression: 'CallExpression', + CatchClause: 'CatchClause', + ClassBody: 'ClassBody', + ClassDeclaration: 'ClassDeclaration', + ClassExpression: 'ClassExpression', + ConditionalExpression: 'ConditionalExpression', + ContinueStatement: 'ContinueStatement', + DoWhileStatement: 'DoWhileStatement', + DebuggerStatement: 'DebuggerStatement', + EmptyStatement: 'EmptyStatement', + ExportAllDeclaration: 'ExportAllDeclaration', + ExportDefaultDeclaration: 'ExportDefaultDeclaration', + ExportNamedDeclaration: 'ExportNamedDeclaration', + ExportSpecifier: 'ExportSpecifier', + ExpressionStatement: 'ExpressionStatement', + ForStatement: 'ForStatement', + ForInStatement: 'ForInStatement', + FunctionDeclaration: 'FunctionDeclaration', + FunctionExpression: 'FunctionExpression', + Identifier: 'Identifier', + IfStatement: 'IfStatement', + ImportDeclaration: 'ImportDeclaration', + ImportDefaultSpecifier: 'ImportDefaultSpecifier', + ImportNamespaceSpecifier: 'ImportNamespaceSpecifier', + ImportSpecifier: 'ImportSpecifier', + Literal: 'Literal', + LabeledStatement: 'LabeledStatement', + LogicalExpression: 'LogicalExpression', + MemberExpression: 'MemberExpression', + MethodDefinition: 'MethodDefinition', + NewExpression: 'NewExpression', + ObjectExpression: 'ObjectExpression', + ObjectPattern: 'ObjectPattern', + Program: 'Program', + Property: 'Property', + RestElement: 'RestElement', + ReturnStatement: 'ReturnStatement', + SequenceExpression: 'SequenceExpression', + SpreadElement: 'SpreadElement', + Super: 'Super', + SwitchCase: 'SwitchCase', + SwitchStatement: 'SwitchStatement', + TaggedTemplateExpression: 'TaggedTemplateExpression', + TemplateElement: 'TemplateElement', + TemplateLiteral: 'TemplateLiteral', + ThisExpression: 'ThisExpression', + ThrowStatement: 'ThrowStatement', + TryStatement: 'TryStatement', + UnaryExpression: 'UnaryExpression', + UpdateExpression: 'UpdateExpression', + VariableDeclaration: 'VariableDeclaration', + VariableDeclarator: 'VariableDeclarator', + WhileStatement: 'WhileStatement', + WithStatement: 'WithStatement' + }; + + PlaceHolders = { + ArrowParameterPlaceHolder: 'ArrowParameterPlaceHolder' + }; + + // Error messages should be identical to V8. + Messages = { + UnexpectedToken: 'Unexpected token %0', + UnexpectedNumber: 'Unexpected number', + UnexpectedString: 'Unexpected string', + UnexpectedIdentifier: 'Unexpected identifier', + UnexpectedReserved: 'Unexpected reserved word', + UnexpectedTemplate: 'Unexpected quasi %0', + UnexpectedEOS: 'Unexpected end of input', + NewlineAfterThrow: 'Illegal newline after throw', + InvalidRegExp: 'Invalid regular expression', + UnterminatedRegExp: 'Invalid regular expression: missing /', + InvalidLHSInAssignment: 'Invalid left-hand side in assignment', + InvalidLHSInForIn: 'Invalid left-hand side in for-in', + MultipleDefaultsInSwitch: 'More than one default clause in switch statement', + NoCatchOrFinally: 'Missing catch or finally after try', + UnknownLabel: 'Undefined label \'%0\'', + Redeclaration: '%0 \'%1\' has already been declared', + IllegalContinue: 'Illegal continue statement', + IllegalBreak: 'Illegal break statement', + IllegalReturn: 'Illegal return statement', + StrictModeWith: 'Strict mode code may not include a with statement', + StrictCatchVariable: 'Catch variable may not be eval or arguments in strict mode', + StrictVarName: 'Variable name may not be eval or arguments in strict mode', + StrictParamName: 'Parameter name eval or arguments is not allowed in strict mode', + StrictParamDupe: 'Strict mode function may not have duplicate parameter names', + StrictFunctionName: 'Function name may not be eval or arguments in strict mode', + StrictOctalLiteral: 'Octal literals are not allowed in strict mode.', + StrictDelete: 'Delete of an unqualified identifier in strict mode.', + StrictLHSAssignment: 'Assignment to eval or arguments is not allowed in strict mode', + StrictLHSPostfix: 'Postfix increment/decrement may not have eval or arguments operand in strict mode', + StrictLHSPrefix: 'Prefix increment/decrement may not have eval or arguments operand in strict mode', + StrictReservedWord: 'Use of future reserved word in strict mode', + TemplateOctalLiteral: 'Octal literals are not allowed in template strings.', + ParameterAfterRestParameter: 'Rest parameter must be last formal parameter', + DefaultRestParameter: 'Unexpected token =', + ObjectPatternAsRestParameter: 'Unexpected token {', + DuplicateProtoProperty: 'Duplicate __proto__ fields are not allowed in object literals', + ConstructorSpecialMethod: 'Class constructor may not be an accessor', + DuplicateConstructor: 'A class may only have one constructor', + StaticPrototype: 'Classes may not have static property named prototype', + MissingFromClause: 'Unexpected token', + NoAsAfterImportNamespace: 'Unexpected token', + InvalidModuleSpecifier: 'Unexpected token', + IllegalImportDeclaration: 'Unexpected token', + IllegalExportDeclaration: 'Unexpected token' + }; + + // See also tools/generate-unicode-regex.py. + Regex = { + NonAsciiIdentifierStart: new RegExp('[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B2\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA7AD\uA7B0\uA7B1\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB5F\uAB64\uAB65\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]'), + NonAsciiIdentifierPart: new RegExp('[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B2\u08E4-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58\u0C59\u0C60-\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA69D\uA69F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA7AD\uA7B0\uA7B1\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB5F\uAB64\uAB65\uABC0-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2D\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]') + }; + + // Ensure the condition is true, otherwise throw an error. + // This is only to have a better contract semantic, i.e. another safety net + // to catch a logic error. The condition shall be fulfilled in normal case. + // Do NOT use this to enforce a certain condition on any user input. + + function assert(condition, message) { + /* istanbul ignore if */ + if (!condition) { + throw new Error('ASSERT: ' + message); + } + } + + function isDecimalDigit(ch) { + return (ch >= 0x30 && ch <= 0x39); // 0..9 + } + + function isHexDigit(ch) { + return '0123456789abcdefABCDEF'.indexOf(ch) >= 0; + } + + function isOctalDigit(ch) { + return '01234567'.indexOf(ch) >= 0; + } + + function octalToDecimal(ch) { + // \0 is not octal escape sequence + var octal = (ch !== '0'), code = '01234567'.indexOf(ch); + + if (index < length && isOctalDigit(source[index])) { + octal = true; + code = code * 8 + '01234567'.indexOf(source[index++]); + + // 3 digits are only allowed when string starts + // with 0, 1, 2, 3 + if ('0123'.indexOf(ch) >= 0 && + index < length && + isOctalDigit(source[index])) { + code = code * 8 + '01234567'.indexOf(source[index++]); + } + } + + return { + code: code, + octal: octal + }; + } + + // 7.2 White Space + + function isWhiteSpace(ch) { + return (ch === 0x20) || (ch === 0x09) || (ch === 0x0B) || (ch === 0x0C) || (ch === 0xA0) || + (ch >= 0x1680 && [0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x202F, 0x205F, 0x3000, 0xFEFF].indexOf(ch) >= 0); + } + + // 7.3 Line Terminators + + function isLineTerminator(ch) { + return (ch === 0x0A) || (ch === 0x0D) || (ch === 0x2028) || (ch === 0x2029); + } + + // 7.6 Identifier Names and Identifiers + + function isIdentifierStart(ch) { + return (ch === 0x24) || (ch === 0x5F) || // $ (dollar) and _ (underscore) + (ch >= 0x41 && ch <= 0x5A) || // A..Z + (ch >= 0x61 && ch <= 0x7A) || // a..z + (ch === 0x5C) || // \ (backslash) + ((ch >= 0x80) && Regex.NonAsciiIdentifierStart.test(String.fromCharCode(ch))); + } + + function isIdentifierPart(ch) { + return (ch === 0x24) || (ch === 0x5F) || // $ (dollar) and _ (underscore) + (ch >= 0x41 && ch <= 0x5A) || // A..Z + (ch >= 0x61 && ch <= 0x7A) || // a..z + (ch >= 0x30 && ch <= 0x39) || // 0..9 + (ch === 0x5C) || // \ (backslash) + ((ch >= 0x80) && Regex.NonAsciiIdentifierPart.test(String.fromCharCode(ch))); + } + + // 7.6.1.2 Future Reserved Words + + function isFutureReservedWord(id) { + switch (id) { + case 'enum': + case 'export': + case 'import': + case 'super': + return true; + default: + return false; + } + } + + // 11.6.2.2 Future Reserved Words + + function isStrictModeReservedWord(id) { + switch (id) { + case 'implements': + case 'interface': + case 'package': + case 'private': + case 'protected': + case 'public': + case 'static': + case 'yield': + case 'let': + return true; + default: + return false; + } + } + + function isRestrictedWord(id) { + return id === 'eval' || id === 'arguments'; + } + + // 7.6.1.1 Keywords + + function isKeyword(id) { + + // 'const' is specialized as Keyword in V8. + // 'yield' and 'let' are for compatibility with SpiderMonkey and ES.next. + // Some others are from future reserved words. + + switch (id.length) { + case 2: + return (id === 'if') || (id === 'in') || (id === 'do'); + case 3: + return (id === 'var') || (id === 'for') || (id === 'new') || + (id === 'try') || (id === 'let'); + case 4: + return (id === 'this') || (id === 'else') || (id === 'case') || + (id === 'void') || (id === 'with') || (id === 'enum'); + case 5: + return (id === 'while') || (id === 'break') || (id === 'catch') || + (id === 'throw') || (id === 'const') || (id === 'yield') || + (id === 'class') || (id === 'super'); + case 6: + return (id === 'return') || (id === 'typeof') || (id === 'delete') || + (id === 'switch') || (id === 'export') || (id === 'import'); + case 7: + return (id === 'default') || (id === 'finally') || (id === 'extends'); + case 8: + return (id === 'function') || (id === 'continue') || (id === 'debugger'); + case 10: + return (id === 'instanceof'); + default: + return false; + } + } + + // 7.4 Comments + + function addComment(type, value, start, end, loc) { + var comment; + + assert(typeof start === 'number', 'Comment must have valid position'); + + state.lastCommentStart = start; + + comment = { + type: type, + value: value + }; + if (extra.range) { + comment.range = [start, end]; + } + if (extra.loc) { + comment.loc = loc; + } + extra.comments.push(comment); + if (extra.attachComment) { + extra.leadingComments.push(comment); + extra.trailingComments.push(comment); + } + } + + function skipSingleLineComment(offset) { + var start, loc, ch, comment; + + start = index - offset; + loc = { + start: { + line: lineNumber, + column: index - lineStart - offset + } + }; + + while (index < length) { + ch = source.charCodeAt(index); + ++index; + if (isLineTerminator(ch)) { + hasLineTerminator = true; + if (extra.comments) { + comment = source.slice(start + offset, index - 1); + loc.end = { + line: lineNumber, + column: index - lineStart - 1 + }; + addComment('Line', comment, start, index - 1, loc); + } + if (ch === 13 && source.charCodeAt(index) === 10) { + ++index; + } + ++lineNumber; + lineStart = index; + return; + } + } + + if (extra.comments) { + comment = source.slice(start + offset, index); + loc.end = { + line: lineNumber, + column: index - lineStart + }; + addComment('Line', comment, start, index, loc); + } + } + + function skipMultiLineComment() { + var start, loc, ch, comment; + + if (extra.comments) { + start = index - 2; + loc = { + start: { + line: lineNumber, + column: index - lineStart - 2 + } + }; + } + + while (index < length) { + ch = source.charCodeAt(index); + if (isLineTerminator(ch)) { + if (ch === 0x0D && source.charCodeAt(index + 1) === 0x0A) { + ++index; + } + hasLineTerminator = true; + ++lineNumber; + ++index; + lineStart = index; + } else if (ch === 0x2A) { + // Block comment ends with '*/'. + if (source.charCodeAt(index + 1) === 0x2F) { + ++index; + ++index; + if (extra.comments) { + comment = source.slice(start + 2, index - 2); + loc.end = { + line: lineNumber, + column: index - lineStart + }; + addComment('Block', comment, start, index, loc); + } + return; + } + ++index; + } else { + ++index; + } + } + + // Ran off the end of the file - the whole thing is a comment + if (extra.comments) { + loc.end = { + line: lineNumber, + column: index - lineStart + }; + comment = source.slice(start + 2, index); + addComment('Block', comment, start, index, loc); + } + tolerateUnexpectedToken(); + } + + function skipComment() { + var ch, start; + hasLineTerminator = false; + + start = (index === 0); + while (index < length) { + ch = source.charCodeAt(index); + + if (isWhiteSpace(ch)) { + ++index; + } else if (isLineTerminator(ch)) { + hasLineTerminator = true; + ++index; + if (ch === 0x0D && source.charCodeAt(index) === 0x0A) { + ++index; + } + ++lineNumber; + lineStart = index; + start = true; + } else if (ch === 0x2F) { // U+002F is '/' + ch = source.charCodeAt(index + 1); + if (ch === 0x2F) { + ++index; + ++index; + skipSingleLineComment(2); + start = true; + } else if (ch === 0x2A) { // U+002A is '*' + ++index; + ++index; + skipMultiLineComment(); + } else { + break; + } + } else if (start && ch === 0x2D) { // U+002D is '-' + // U+003E is '>' + if ((source.charCodeAt(index + 1) === 0x2D) && (source.charCodeAt(index + 2) === 0x3E)) { + // '-->' is a single-line comment + index += 3; + skipSingleLineComment(3); + } else { + break; + } + } else if (ch === 0x3C) { // U+003C is '<' + if (source.slice(index + 1, index + 4) === '!--') { + ++index; // `<` + ++index; // `!` + ++index; // `-` + ++index; // `-` + skipSingleLineComment(4); + } else { + break; + } + } else { + break; + } + } + } + + function scanHexEscape(prefix) { + var i, len, ch, code = 0; + + len = (prefix === 'u') ? 4 : 2; + for (i = 0; i < len; ++i) { + if (index < length && isHexDigit(source[index])) { + ch = source[index++]; + code = code * 16 + '0123456789abcdef'.indexOf(ch.toLowerCase()); + } else { + return ''; + } + } + return String.fromCharCode(code); + } + + function scanUnicodeCodePointEscape() { + var ch, code, cu1, cu2; + + ch = source[index]; + code = 0; + + // At least, one hex digit is required. + if (ch === '}') { + throwUnexpectedToken(); + } + + while (index < length) { + ch = source[index++]; + if (!isHexDigit(ch)) { + break; + } + code = code * 16 + '0123456789abcdef'.indexOf(ch.toLowerCase()); + } + + if (code > 0x10FFFF || ch !== '}') { + throwUnexpectedToken(); + } + + // UTF-16 Encoding + if (code <= 0xFFFF) { + return String.fromCharCode(code); + } + cu1 = ((code - 0x10000) >> 10) + 0xD800; + cu2 = ((code - 0x10000) & 1023) + 0xDC00; + return String.fromCharCode(cu1, cu2); + } + + function getEscapedIdentifier() { + var ch, id; + + ch = source.charCodeAt(index++); + id = String.fromCharCode(ch); + + // '\u' (U+005C, U+0075) denotes an escaped character. + if (ch === 0x5C) { + if (source.charCodeAt(index) !== 0x75) { + throwUnexpectedToken(); + } + ++index; + ch = scanHexEscape('u'); + if (!ch || ch === '\\' || !isIdentifierStart(ch.charCodeAt(0))) { + throwUnexpectedToken(); + } + id = ch; + } + + while (index < length) { + ch = source.charCodeAt(index); + if (!isIdentifierPart(ch)) { + break; + } + ++index; + id += String.fromCharCode(ch); + + // '\u' (U+005C, U+0075) denotes an escaped character. + if (ch === 0x5C) { + id = id.substr(0, id.length - 1); + if (source.charCodeAt(index) !== 0x75) { + throwUnexpectedToken(); + } + ++index; + ch = scanHexEscape('u'); + if (!ch || ch === '\\' || !isIdentifierPart(ch.charCodeAt(0))) { + throwUnexpectedToken(); + } + id += ch; + } + } + + return id; + } + + function getIdentifier() { + var start, ch; + + start = index++; + while (index < length) { + ch = source.charCodeAt(index); + if (ch === 0x5C) { + // Blackslash (U+005C) marks Unicode escape sequence. + index = start; + return getEscapedIdentifier(); + } + if (isIdentifierPart(ch)) { + ++index; + } else { + break; + } + } + + return source.slice(start, index); + } + + function scanIdentifier() { + var start, id, type; + + start = index; + + // Backslash (U+005C) starts an escaped character. + id = (source.charCodeAt(index) === 0x5C) ? getEscapedIdentifier() : getIdentifier(); + + // There is no keyword or literal with only one character. + // Thus, it must be an identifier. + if (id.length === 1) { + type = Token.Identifier; + } else if (isKeyword(id)) { + type = Token.Keyword; + } else if (id === 'null') { + type = Token.NullLiteral; + } else if (id === 'true' || id === 'false') { + type = Token.BooleanLiteral; + } else { + type = Token.Identifier; + } + + return { + type: type, + value: id, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + + // 7.7 Punctuators + + function scanPunctuator() { + var token, str; + + token = { + type: Token.Punctuator, + value: '', + lineNumber: lineNumber, + lineStart: lineStart, + start: index, + end: index + }; + + // Check for most common single-character punctuators. + str = source[index]; + switch (str) { + + case '(': + if (extra.tokenize) { + extra.openParenToken = extra.tokens.length; + } + ++index; + break; + + case '{': + if (extra.tokenize) { + extra.openCurlyToken = extra.tokens.length; + } + state.curlyStack.push('{'); + ++index; + break; + + case '.': + ++index; + if (source[index] === '.' && source[index + 1] === '.') { + // Spread operator: ... + index += 2; + str = '...'; + } + break; + + case '}': + ++index; + state.curlyStack.pop(); + break; + case ')': + case ';': + case ',': + case '[': + case ']': + case ':': + case '?': + case '~': + ++index; + break; + + default: + // 4-character punctuator. + str = source.substr(index, 4); + if (str === '>>>=') { + index += 4; + } else { + + // 3-character punctuators. + str = str.substr(0, 3); + if (str === '===' || str === '!==' || str === '>>>' || + str === '<<=' || str === '>>=') { + index += 3; + } else { + + // 2-character punctuators. + str = str.substr(0, 2); + if (str === '&&' || str === '||' || str === '==' || str === '!=' || + str === '+=' || str === '-=' || str === '*=' || str === '/=' || + str === '++' || str === '--' || str === '<<' || str === '>>' || + str === '&=' || str === '|=' || str === '^=' || str === '%=' || + str === '<=' || str === '>=' || str === '=>') { + index += 2; + } else { + + // 1-character punctuators. + str = source[index]; + if ('<>=!+-*%&|^/'.indexOf(str) >= 0) { + ++index; + } + } + } + } + } + + if (index === token.start) { + throwUnexpectedToken(); + } + + token.end = index; + token.value = str; + return token; + } + + // 7.8.3 Numeric Literals + + function scanHexLiteral(start) { + var number = ''; + + while (index < length) { + if (!isHexDigit(source[index])) { + break; + } + number += source[index++]; + } + + if (number.length === 0) { + throwUnexpectedToken(); + } + + if (isIdentifierStart(source.charCodeAt(index))) { + throwUnexpectedToken(); + } + + return { + type: Token.NumericLiteral, + value: parseInt('0x' + number, 16), + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function scanBinaryLiteral(start) { + var ch, number; + + number = ''; + + while (index < length) { + ch = source[index]; + if (ch !== '0' && ch !== '1') { + break; + } + number += source[index++]; + } + + if (number.length === 0) { + // only 0b or 0B + throwUnexpectedToken(); + } + + if (index < length) { + ch = source.charCodeAt(index); + /* istanbul ignore else */ + if (isIdentifierStart(ch) || isDecimalDigit(ch)) { + throwUnexpectedToken(); + } + } + + return { + type: Token.NumericLiteral, + value: parseInt(number, 2), + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function scanOctalLiteral(prefix, start) { + var number, octal; + + if (isOctalDigit(prefix)) { + octal = true; + number = '0' + source[index++]; + } else { + octal = false; + ++index; + number = ''; + } + + while (index < length) { + if (!isOctalDigit(source[index])) { + break; + } + number += source[index++]; + } + + if (!octal && number.length === 0) { + // only 0o or 0O + throwUnexpectedToken(); + } + + if (isIdentifierStart(source.charCodeAt(index)) || isDecimalDigit(source.charCodeAt(index))) { + throwUnexpectedToken(); + } + + return { + type: Token.NumericLiteral, + value: parseInt(number, 8), + octal: octal, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function isImplicitOctalLiteral() { + var i, ch; + + // Implicit octal, unless there is a non-octal digit. + // (Annex B.1.1 on Numeric Literals) + for (i = index + 1; i < length; ++i) { + ch = source[i]; + if (ch === '8' || ch === '9') { + return false; + } + if (!isOctalDigit(ch)) { + return true; + } + } + + return true; + } + + function scanNumericLiteral() { + var number, start, ch; + + ch = source[index]; + assert(isDecimalDigit(ch.charCodeAt(0)) || (ch === '.'), + 'Numeric literal must start with a decimal digit or a decimal point'); + + start = index; + number = ''; + if (ch !== '.') { + number = source[index++]; + ch = source[index]; + + // Hex number starts with '0x'. + // Octal number starts with '0'. + // Octal number in ES6 starts with '0o'. + // Binary number in ES6 starts with '0b'. + if (number === '0') { + if (ch === 'x' || ch === 'X') { + ++index; + return scanHexLiteral(start); + } + if (ch === 'b' || ch === 'B') { + ++index; + return scanBinaryLiteral(start); + } + if (ch === 'o' || ch === 'O') { + return scanOctalLiteral(ch, start); + } + + if (isOctalDigit(ch)) { + if (isImplicitOctalLiteral()) { + return scanOctalLiteral(ch, start); + } + } + } + + while (isDecimalDigit(source.charCodeAt(index))) { + number += source[index++]; + } + ch = source[index]; + } + + if (ch === '.') { + number += source[index++]; + while (isDecimalDigit(source.charCodeAt(index))) { + number += source[index++]; + } + ch = source[index]; + } + + if (ch === 'e' || ch === 'E') { + number += source[index++]; + + ch = source[index]; + if (ch === '+' || ch === '-') { + number += source[index++]; + } + if (isDecimalDigit(source.charCodeAt(index))) { + while (isDecimalDigit(source.charCodeAt(index))) { + number += source[index++]; + } + } else { + throwUnexpectedToken(); + } + } + + if (isIdentifierStart(source.charCodeAt(index))) { + throwUnexpectedToken(); + } + + return { + type: Token.NumericLiteral, + value: parseFloat(number), + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + // 7.8.4 String Literals + + function scanStringLiteral() { + var str = '', quote, start, ch, unescaped, octToDec, octal = false; + + quote = source[index]; + assert((quote === '\'' || quote === '"'), + 'String literal must starts with a quote'); + + start = index; + ++index; + + while (index < length) { + ch = source[index++]; + + if (ch === quote) { + quote = ''; + break; + } else if (ch === '\\') { + ch = source[index++]; + if (!ch || !isLineTerminator(ch.charCodeAt(0))) { + switch (ch) { + case 'u': + case 'x': + if (source[index] === '{') { + ++index; + str += scanUnicodeCodePointEscape(); + } else { + unescaped = scanHexEscape(ch); + if (!unescaped) { + throw throwUnexpectedToken(); + } + str += unescaped; + } + break; + case 'n': + str += '\n'; + break; + case 'r': + str += '\r'; + break; + case 't': + str += '\t'; + break; + case 'b': + str += '\b'; + break; + case 'f': + str += '\f'; + break; + case 'v': + str += '\x0B'; + break; + case '8': + case '9': + throw throwUnexpectedToken(); + + default: + if (isOctalDigit(ch)) { + octToDec = octalToDecimal(ch); + + octal = octToDec.octal || octal; + str += String.fromCharCode(octToDec.code); + } else { + str += ch; + } + break; + } + } else { + ++lineNumber; + if (ch === '\r' && source[index] === '\n') { + ++index; + } + lineStart = index; + } + } else if (isLineTerminator(ch.charCodeAt(0))) { + break; + } else { + str += ch; + } + } + + if (quote !== '') { + throwUnexpectedToken(); + } + + return { + type: Token.StringLiteral, + value: str, + octal: octal, + lineNumber: startLineNumber, + lineStart: startLineStart, + start: start, + end: index + }; + } + + function scanTemplate() { + var cooked = '', ch, start, rawOffset, terminated, head, tail, restore, unescaped; + + terminated = false; + tail = false; + start = index; + head = (source[index] === '`'); + rawOffset = 2; + + ++index; + + while (index < length) { + ch = source[index++]; + if (ch === '`') { + rawOffset = 1; + tail = true; + terminated = true; + break; + } else if (ch === '$') { + if (source[index] === '{') { + state.curlyStack.push('${'); + ++index; + terminated = true; + break; + } + cooked += ch; + } else if (ch === '\\') { + ch = source[index++]; + if (!isLineTerminator(ch.charCodeAt(0))) { + switch (ch) { + case 'n': + cooked += '\n'; + break; + case 'r': + cooked += '\r'; + break; + case 't': + cooked += '\t'; + break; + case 'u': + case 'x': + if (source[index] === '{') { + ++index; + cooked += scanUnicodeCodePointEscape(); + } else { + restore = index; + unescaped = scanHexEscape(ch); + if (unescaped) { + cooked += unescaped; + } else { + index = restore; + cooked += ch; + } + } + break; + case 'b': + cooked += '\b'; + break; + case 'f': + cooked += '\f'; + break; + case 'v': + cooked += '\v'; + break; + + default: + if (ch === '0') { + if (isDecimalDigit(source.charCodeAt(index))) { + // Illegal: \01 \02 and so on + throwError(Messages.TemplateOctalLiteral); + } + cooked += '\0'; + } else if (isOctalDigit(ch)) { + // Illegal: \1 \2 + throwError(Messages.TemplateOctalLiteral); + } else { + cooked += ch; + } + break; + } + } else { + ++lineNumber; + if (ch === '\r' && source[index] === '\n') { + ++index; + } + lineStart = index; + } + } else if (isLineTerminator(ch.charCodeAt(0))) { + ++lineNumber; + if (ch === '\r' && source[index] === '\n') { + ++index; + } + lineStart = index; + cooked += '\n'; + } else { + cooked += ch; + } + } + + if (!terminated) { + throwUnexpectedToken(); + } + + if (!head) { + state.curlyStack.pop(); + } + + return { + type: Token.Template, + value: { + cooked: cooked, + raw: source.slice(start + 1, index - rawOffset) + }, + head: head, + tail: tail, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + function testRegExp(pattern, flags) { + var tmp = pattern; + + if (flags.indexOf('u') >= 0) { + // Replace each astral symbol and every Unicode escape sequence + // that possibly represents an astral symbol or a paired surrogate + // with a single ASCII symbol to avoid throwing on regular + // expressions that are only valid in combination with the `/u` + // flag. + // Note: replacing with the ASCII symbol `x` might cause false + // negatives in unlikely scenarios. For example, `[\u{61}-b]` is a + // perfectly valid pattern that is equivalent to `[a-b]`, but it + // would be replaced by `[x-b]` which throws an error. + tmp = tmp + .replace(/\\u\{([0-9a-fA-F]+)\}/g, function ($0, $1) { + if (parseInt($1, 16) <= 0x10FFFF) { + return 'x'; + } + throwUnexpectedToken(null, Messages.InvalidRegExp); + }) + .replace( + /\\u([a-fA-F0-9]{4})|[\uD800-\uDBFF][\uDC00-\uDFFF]/g, + 'x' + ); + } + + // First, detect invalid regular expressions. + try { + RegExp(tmp); + } catch (e) { + throwUnexpectedToken(null, Messages.InvalidRegExp); + } + + // Return a regular expression object for this pattern-flag pair, or + // `null` in case the current environment doesn't support the flags it + // uses. + try { + return new RegExp(pattern, flags); + } catch (exception) { + return null; + } + } + + function scanRegExpBody() { + var ch, str, classMarker, terminated, body; + + ch = source[index]; + assert(ch === '/', 'Regular expression literal must start with a slash'); + str = source[index++]; + + classMarker = false; + terminated = false; + while (index < length) { + ch = source[index++]; + str += ch; + if (ch === '\\') { + ch = source[index++]; + // ECMA-262 7.8.5 + if (isLineTerminator(ch.charCodeAt(0))) { + throwUnexpectedToken(null, Messages.UnterminatedRegExp); + } + str += ch; + } else if (isLineTerminator(ch.charCodeAt(0))) { + throwUnexpectedToken(null, Messages.UnterminatedRegExp); + } else if (classMarker) { + if (ch === ']') { + classMarker = false; + } + } else { + if (ch === '/') { + terminated = true; + break; + } else if (ch === '[') { + classMarker = true; + } + } + } + + if (!terminated) { + throwUnexpectedToken(null, Messages.UnterminatedRegExp); + } + + // Exclude leading and trailing slash. + body = str.substr(1, str.length - 2); + return { + value: body, + literal: str + }; + } + + function scanRegExpFlags() { + var ch, str, flags, restore; + + str = ''; + flags = ''; + while (index < length) { + ch = source[index]; + if (!isIdentifierPart(ch.charCodeAt(0))) { + break; + } + + ++index; + if (ch === '\\' && index < length) { + ch = source[index]; + if (ch === 'u') { + ++index; + restore = index; + ch = scanHexEscape('u'); + if (ch) { + flags += ch; + for (str += '\\u'; restore < index; ++restore) { + str += source[restore]; + } + } else { + index = restore; + flags += 'u'; + str += '\\u'; + } + tolerateUnexpectedToken(); + } else { + str += '\\'; + tolerateUnexpectedToken(); + } + } else { + flags += ch; + str += ch; + } + } + + return { + value: flags, + literal: str + }; + } + + function scanRegExp() { + scanning = true; + var start, body, flags, value; + + lookahead = null; + skipComment(); + start = index; + + body = scanRegExpBody(); + flags = scanRegExpFlags(); + value = testRegExp(body.value, flags.value); + scanning = false; + if (extra.tokenize) { + return { + type: Token.RegularExpression, + value: value, + regex: { + pattern: body.value, + flags: flags.value + }, + lineNumber: lineNumber, + lineStart: lineStart, + start: start, + end: index + }; + } + + return { + literal: body.literal + flags.literal, + value: value, + regex: { + pattern: body.value, + flags: flags.value + }, + start: start, + end: index + }; + } + + function collectRegex() { + var pos, loc, regex, token; + + skipComment(); + + pos = index; + loc = { + start: { + line: lineNumber, + column: index - lineStart + } + }; + + regex = scanRegExp(); + + loc.end = { + line: lineNumber, + column: index - lineStart + }; + + /* istanbul ignore next */ + if (!extra.tokenize) { + // Pop the previous token, which is likely '/' or '/=' + if (extra.tokens.length > 0) { + token = extra.tokens[extra.tokens.length - 1]; + if (token.range[0] === pos && token.type === 'Punctuator') { + if (token.value === '/' || token.value === '/=') { + extra.tokens.pop(); + } + } + } + + extra.tokens.push({ + type: 'RegularExpression', + value: regex.literal, + regex: regex.regex, + range: [pos, index], + loc: loc + }); + } + + return regex; + } + + function isIdentifierName(token) { + return token.type === Token.Identifier || + token.type === Token.Keyword || + token.type === Token.BooleanLiteral || + token.type === Token.NullLiteral; + } + + function advanceSlash() { + var prevToken, + checkToken; + // Using the following algorithm: + // https://github.com/mozilla/sweet.js/wiki/design + prevToken = extra.tokens[extra.tokens.length - 1]; + if (!prevToken) { + // Nothing before that: it cannot be a division. + return collectRegex(); + } + if (prevToken.type === 'Punctuator') { + if (prevToken.value === ']') { + return scanPunctuator(); + } + if (prevToken.value === ')') { + checkToken = extra.tokens[extra.openParenToken - 1]; + if (checkToken && + checkToken.type === 'Keyword' && + (checkToken.value === 'if' || + checkToken.value === 'while' || + checkToken.value === 'for' || + checkToken.value === 'with')) { + return collectRegex(); + } + return scanPunctuator(); + } + if (prevToken.value === '}') { + // Dividing a function by anything makes little sense, + // but we have to check for that. + if (extra.tokens[extra.openCurlyToken - 3] && + extra.tokens[extra.openCurlyToken - 3].type === 'Keyword') { + // Anonymous function. + checkToken = extra.tokens[extra.openCurlyToken - 4]; + if (!checkToken) { + return scanPunctuator(); + } + } else if (extra.tokens[extra.openCurlyToken - 4] && + extra.tokens[extra.openCurlyToken - 4].type === 'Keyword') { + // Named function. + checkToken = extra.tokens[extra.openCurlyToken - 5]; + if (!checkToken) { + return collectRegex(); + } + } else { + return scanPunctuator(); + } + // checkToken determines whether the function is + // a declaration or an expression. + if (FnExprTokens.indexOf(checkToken.value) >= 0) { + // It is an expression. + return scanPunctuator(); + } + // It is a declaration. + return collectRegex(); + } + return collectRegex(); + } + if (prevToken.type === 'Keyword' && prevToken.value !== 'this') { + return collectRegex(); + } + return scanPunctuator(); + } + + function advance() { + var ch, token; + + if (index >= length) { + return { + type: Token.EOF, + lineNumber: lineNumber, + lineStart: lineStart, + start: index, + end: index + }; + } + + ch = source.charCodeAt(index); + + if (isIdentifierStart(ch)) { + token = scanIdentifier(); + if (strict && isStrictModeReservedWord(token.value)) { + token.type = Token.Keyword; + } + return token; + } + + // Very common: ( and ) and ; + if (ch === 0x28 || ch === 0x29 || ch === 0x3B) { + return scanPunctuator(); + } + + // String literal starts with single quote (U+0027) or double quote (U+0022). + if (ch === 0x27 || ch === 0x22) { + return scanStringLiteral(); + } + + // Dot (.) U+002E can also start a floating-point number, hence the need + // to check the next character. + if (ch === 0x2E) { + if (isDecimalDigit(source.charCodeAt(index + 1))) { + return scanNumericLiteral(); + } + return scanPunctuator(); + } + + if (isDecimalDigit(ch)) { + return scanNumericLiteral(); + } + + // Slash (/) U+002F can also start a regex. + if (extra.tokenize && ch === 0x2F) { + return advanceSlash(); + } + + // Template literals start with ` (U+0060) for template head + // or } (U+007D) for template middle or template tail. + if (ch === 0x60 || (ch === 0x7D && state.curlyStack[state.curlyStack.length - 1] === '${')) { + return scanTemplate(); + } + + return scanPunctuator(); + } + + function collectToken() { + var loc, token, value, entry; + + loc = { + start: { + line: lineNumber, + column: index - lineStart + } + }; + + token = advance(); + loc.end = { + line: lineNumber, + column: index - lineStart + }; + + if (token.type !== Token.EOF) { + value = source.slice(token.start, token.end); + entry = { + type: TokenName[token.type], + value: value, + range: [token.start, token.end], + loc: loc + }; + if (token.regex) { + entry.regex = { + pattern: token.regex.pattern, + flags: token.regex.flags + }; + } + extra.tokens.push(entry); + } + + return token; + } + + function lex() { + var token; + scanning = true; + + lastIndex = index; + lastLineNumber = lineNumber; + lastLineStart = lineStart; + + skipComment(); + + token = lookahead; + + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + + lookahead = (typeof extra.tokens !== 'undefined') ? collectToken() : advance(); + scanning = false; + return token; + } + + function peek() { + scanning = true; + + skipComment(); + + lastIndex = index; + lastLineNumber = lineNumber; + lastLineStart = lineStart; + + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + + lookahead = (typeof extra.tokens !== 'undefined') ? collectToken() : advance(); + scanning = false; + } + + function Position() { + this.line = startLineNumber; + this.column = startIndex - startLineStart; + } + + function SourceLocation() { + this.start = new Position(); + this.end = null; + } + + function WrappingSourceLocation(startToken) { + this.start = { + line: startToken.lineNumber, + column: startToken.start - startToken.lineStart + }; + this.end = null; + } + + function Node() { + if (extra.range) { + this.range = [startIndex, 0]; + } + if (extra.loc) { + this.loc = new SourceLocation(); + } + } + + function WrappingNode(startToken) { + if (extra.range) { + this.range = [startToken.start, 0]; + } + if (extra.loc) { + this.loc = new WrappingSourceLocation(startToken); + } + } + + WrappingNode.prototype = Node.prototype = { + + processComment: function () { + var lastChild, + leadingComments, + trailingComments, + bottomRight = extra.bottomRightStack, + i, + comment, + last = bottomRight[bottomRight.length - 1]; + + if (this.type === Syntax.Program) { + if (this.body.length > 0) { + return; + } + } + + if (extra.trailingComments.length > 0) { + trailingComments = []; + for (i = extra.trailingComments.length - 1; i >= 0; --i) { + comment = extra.trailingComments[i]; + if (comment.range[0] >= this.range[1]) { + trailingComments.unshift(comment); + extra.trailingComments.splice(i, 1); + } + } + extra.trailingComments = []; + } else { + if (last && last.trailingComments && last.trailingComments[0].range[0] >= this.range[1]) { + trailingComments = last.trailingComments; + delete last.trailingComments; + } + } + + // Eating the stack. + if (last) { + while (last && last.range[0] >= this.range[0]) { + lastChild = last; + last = bottomRight.pop(); + } + } + + if (lastChild) { + if (lastChild.leadingComments && lastChild.leadingComments[lastChild.leadingComments.length - 1].range[1] <= this.range[0]) { + this.leadingComments = lastChild.leadingComments; + lastChild.leadingComments = undefined; + } + } else if (extra.leadingComments.length > 0) { + leadingComments = []; + for (i = extra.leadingComments.length - 1; i >= 0; --i) { + comment = extra.leadingComments[i]; + if (comment.range[1] <= this.range[0]) { + leadingComments.unshift(comment); + extra.leadingComments.splice(i, 1); + } + } + } + + + if (leadingComments && leadingComments.length > 0) { + this.leadingComments = leadingComments; + } + if (trailingComments && trailingComments.length > 0) { + this.trailingComments = trailingComments; + } + + bottomRight.push(this); + }, + + finish: function () { + if (extra.range) { + this.range[1] = lastIndex; + } + if (extra.loc) { + this.loc.end = { + line: lastLineNumber, + column: lastIndex - lastLineStart + }; + if (extra.source) { + this.loc.source = extra.source; + } + } + + if (extra.attachComment) { + this.processComment(); + } + }, + + finishArrayExpression: function (elements) { + this.type = Syntax.ArrayExpression; + this.elements = elements; + this.finish(); + return this; + }, + + finishArrayPattern: function (elements) { + this.type = Syntax.ArrayPattern; + this.elements = elements; + this.finish(); + return this; + }, + + finishArrowFunctionExpression: function (params, defaults, body, expression) { + this.type = Syntax.ArrowFunctionExpression; + this.id = null; + this.params = params; + this.defaults = defaults; + this.body = body; + this.generator = false; + this.expression = expression; + this.finish(); + return this; + }, + + finishAssignmentExpression: function (operator, left, right) { + this.type = Syntax.AssignmentExpression; + this.operator = operator; + this.left = left; + this.right = right; + this.finish(); + return this; + }, + + finishAssignmentPattern: function (left, right) { + this.type = Syntax.AssignmentPattern; + this.left = left; + this.right = right; + this.finish(); + return this; + }, + + finishBinaryExpression: function (operator, left, right) { + this.type = (operator === '||' || operator === '&&') ? Syntax.LogicalExpression : Syntax.BinaryExpression; + this.operator = operator; + this.left = left; + this.right = right; + this.finish(); + return this; + }, + + finishBlockStatement: function (body) { + this.type = Syntax.BlockStatement; + this.body = body; + this.finish(); + return this; + }, + + finishBreakStatement: function (label) { + this.type = Syntax.BreakStatement; + this.label = label; + this.finish(); + return this; + }, + + finishCallExpression: function (callee, args) { + this.type = Syntax.CallExpression; + this.callee = callee; + this.arguments = args; + this.finish(); + return this; + }, + + finishCatchClause: function (param, body) { + this.type = Syntax.CatchClause; + this.param = param; + this.body = body; + this.finish(); + return this; + }, + + finishClassBody: function (body) { + this.type = Syntax.ClassBody; + this.body = body; + this.finish(); + return this; + }, + + finishClassDeclaration: function (id, superClass, body) { + this.type = Syntax.ClassDeclaration; + this.id = id; + this.superClass = superClass; + this.body = body; + this.finish(); + return this; + }, + + finishClassExpression: function (id, superClass, body) { + this.type = Syntax.ClassExpression; + this.id = id; + this.superClass = superClass; + this.body = body; + this.finish(); + return this; + }, + + finishConditionalExpression: function (test, consequent, alternate) { + this.type = Syntax.ConditionalExpression; + this.test = test; + this.consequent = consequent; + this.alternate = alternate; + this.finish(); + return this; + }, + + finishContinueStatement: function (label) { + this.type = Syntax.ContinueStatement; + this.label = label; + this.finish(); + return this; + }, + + finishDebuggerStatement: function () { + this.type = Syntax.DebuggerStatement; + this.finish(); + return this; + }, + + finishDoWhileStatement: function (body, test) { + this.type = Syntax.DoWhileStatement; + this.body = body; + this.test = test; + this.finish(); + return this; + }, + + finishEmptyStatement: function () { + this.type = Syntax.EmptyStatement; + this.finish(); + return this; + }, + + finishExpressionStatement: function (expression) { + this.type = Syntax.ExpressionStatement; + this.expression = expression; + this.finish(); + return this; + }, + + finishForStatement: function (init, test, update, body) { + this.type = Syntax.ForStatement; + this.init = init; + this.test = test; + this.update = update; + this.body = body; + this.finish(); + return this; + }, + + finishForInStatement: function (left, right, body) { + this.type = Syntax.ForInStatement; + this.left = left; + this.right = right; + this.body = body; + this.each = false; + this.finish(); + return this; + }, + + finishFunctionDeclaration: function (id, params, defaults, body) { + this.type = Syntax.FunctionDeclaration; + this.id = id; + this.params = params; + this.defaults = defaults; + this.body = body; + this.generator = false; + this.expression = false; + this.finish(); + return this; + }, + + finishFunctionExpression: function (id, params, defaults, body) { + this.type = Syntax.FunctionExpression; + this.id = id; + this.params = params; + this.defaults = defaults; + this.body = body; + this.generator = false; + this.expression = false; + this.finish(); + return this; + }, + + finishIdentifier: function (name) { + this.type = Syntax.Identifier; + this.name = name; + this.finish(); + return this; + }, + + finishIfStatement: function (test, consequent, alternate) { + this.type = Syntax.IfStatement; + this.test = test; + this.consequent = consequent; + this.alternate = alternate; + this.finish(); + return this; + }, + + finishLabeledStatement: function (label, body) { + this.type = Syntax.LabeledStatement; + this.label = label; + this.body = body; + this.finish(); + return this; + }, + + finishLiteral: function (token) { + this.type = Syntax.Literal; + this.value = token.value; + this.raw = source.slice(token.start, token.end); + if (token.regex) { + this.regex = token.regex; + } + this.finish(); + return this; + }, + + finishMemberExpression: function (accessor, object, property) { + this.type = Syntax.MemberExpression; + this.computed = accessor === '['; + this.object = object; + this.property = property; + this.finish(); + return this; + }, + + finishNewExpression: function (callee, args) { + this.type = Syntax.NewExpression; + this.callee = callee; + this.arguments = args; + this.finish(); + return this; + }, + + finishObjectExpression: function (properties) { + this.type = Syntax.ObjectExpression; + this.properties = properties; + this.finish(); + return this; + }, + + finishObjectPattern: function (properties) { + this.type = Syntax.ObjectPattern; + this.properties = properties; + this.finish(); + return this; + }, + + finishPostfixExpression: function (operator, argument) { + this.type = Syntax.UpdateExpression; + this.operator = operator; + this.argument = argument; + this.prefix = false; + this.finish(); + return this; + }, + + finishProgram: function (body) { + this.type = Syntax.Program; + this.body = body; + if (sourceType === 'module') { + // very restrictive for now + this.sourceType = sourceType; + } + this.finish(); + return this; + }, + + finishProperty: function (kind, key, computed, value, method, shorthand) { + this.type = Syntax.Property; + this.key = key; + this.computed = computed; + this.value = value; + this.kind = kind; + this.method = method; + this.shorthand = shorthand; + this.finish(); + return this; + }, + + finishRestElement: function (argument) { + this.type = Syntax.RestElement; + this.argument = argument; + this.finish(); + return this; + }, + + finishReturnStatement: function (argument) { + this.type = Syntax.ReturnStatement; + this.argument = argument; + this.finish(); + return this; + }, + + finishSequenceExpression: function (expressions) { + this.type = Syntax.SequenceExpression; + this.expressions = expressions; + this.finish(); + return this; + }, + + finishSpreadElement: function (argument) { + this.type = Syntax.SpreadElement; + this.argument = argument; + this.finish(); + return this; + }, + + finishSwitchCase: function (test, consequent) { + this.type = Syntax.SwitchCase; + this.test = test; + this.consequent = consequent; + this.finish(); + return this; + }, + + finishSuper: function () { + this.type = Syntax.Super; + this.finish(); + return this; + }, + + finishSwitchStatement: function (discriminant, cases) { + this.type = Syntax.SwitchStatement; + this.discriminant = discriminant; + this.cases = cases; + this.finish(); + return this; + }, + + finishTaggedTemplateExpression: function (tag, quasi) { + this.type = Syntax.TaggedTemplateExpression; + this.tag = tag; + this.quasi = quasi; + this.finish(); + return this; + }, + + finishTemplateElement: function (value, tail) { + this.type = Syntax.TemplateElement; + this.value = value; + this.tail = tail; + this.finish(); + return this; + }, + + finishTemplateLiteral: function (quasis, expressions) { + this.type = Syntax.TemplateLiteral; + this.quasis = quasis; + this.expressions = expressions; + this.finish(); + return this; + }, + + finishThisExpression: function () { + this.type = Syntax.ThisExpression; + this.finish(); + return this; + }, + + finishThrowStatement: function (argument) { + this.type = Syntax.ThrowStatement; + this.argument = argument; + this.finish(); + return this; + }, + + finishTryStatement: function (block, handler, finalizer) { + this.type = Syntax.TryStatement; + this.block = block; + this.guardedHandlers = []; + this.handlers = handler ? [ handler ] : []; + this.handler = handler; + this.finalizer = finalizer; + this.finish(); + return this; + }, + + finishUnaryExpression: function (operator, argument) { + this.type = (operator === '++' || operator === '--') ? Syntax.UpdateExpression : Syntax.UnaryExpression; + this.operator = operator; + this.argument = argument; + this.prefix = true; + this.finish(); + return this; + }, + + finishVariableDeclaration: function (declarations) { + this.type = Syntax.VariableDeclaration; + this.declarations = declarations; + this.kind = 'var'; + this.finish(); + return this; + }, + + finishLexicalDeclaration: function (declarations, kind) { + this.type = Syntax.VariableDeclaration; + this.declarations = declarations; + this.kind = kind; + this.finish(); + return this; + }, + + finishVariableDeclarator: function (id, init) { + this.type = Syntax.VariableDeclarator; + this.id = id; + this.init = init; + this.finish(); + return this; + }, + + finishWhileStatement: function (test, body) { + this.type = Syntax.WhileStatement; + this.test = test; + this.body = body; + this.finish(); + return this; + }, + + finishWithStatement: function (object, body) { + this.type = Syntax.WithStatement; + this.object = object; + this.body = body; + this.finish(); + return this; + }, + + finishExportSpecifier: function (local, exported) { + this.type = Syntax.ExportSpecifier; + this.exported = exported || local; + this.local = local; + this.finish(); + return this; + }, + + finishImportDefaultSpecifier: function (local) { + this.type = Syntax.ImportDefaultSpecifier; + this.local = local; + this.finish(); + return this; + }, + + finishImportNamespaceSpecifier: function (local) { + this.type = Syntax.ImportNamespaceSpecifier; + this.local = local; + this.finish(); + return this; + }, + + finishExportNamedDeclaration: function (declaration, specifiers, src) { + this.type = Syntax.ExportNamedDeclaration; + this.declaration = declaration; + this.specifiers = specifiers; + this.source = src; + this.finish(); + return this; + }, + + finishExportDefaultDeclaration: function (declaration) { + this.type = Syntax.ExportDefaultDeclaration; + this.declaration = declaration; + this.finish(); + return this; + }, + + finishExportAllDeclaration: function (src) { + this.type = Syntax.ExportAllDeclaration; + this.source = src; + this.finish(); + return this; + }, + + finishImportSpecifier: function (local, imported) { + this.type = Syntax.ImportSpecifier; + this.local = local || imported; + this.imported = imported; + this.finish(); + return this; + }, + + finishImportDeclaration: function (specifiers, src) { + this.type = Syntax.ImportDeclaration; + this.specifiers = specifiers; + this.source = src; + this.finish(); + return this; + } + }; + + + function recordError(error) { + var e, existing; + + for (e = 0; e < extra.errors.length; e++) { + existing = extra.errors[e]; + // Prevent duplicated error. + /* istanbul ignore next */ + if (existing.index === error.index && existing.message === error.message) { + return; + } + } + + extra.errors.push(error); + } + + function createError(line, pos, description) { + var error = new Error('Line ' + line + ': ' + description); + error.index = pos; + error.lineNumber = line; + error.column = pos - (scanning ? lineStart : lastLineStart) + 1; + error.description = description; + return error; + } + + // Throw an exception + + function throwError(messageFormat) { + var args, msg; + + args = Array.prototype.slice.call(arguments, 1); + msg = messageFormat.replace(/%(\d)/g, + function (whole, idx) { + assert(idx < args.length, 'Message reference must be in range'); + return args[idx]; + } + ); + + throw createError(lastLineNumber, lastIndex, msg); + } + + function tolerateError(messageFormat) { + var args, msg, error; + + args = Array.prototype.slice.call(arguments, 1); + /* istanbul ignore next */ + msg = messageFormat.replace(/%(\d)/g, + function (whole, idx) { + assert(idx < args.length, 'Message reference must be in range'); + return args[idx]; + } + ); + + error = createError(lineNumber, lastIndex, msg); + if (extra.errors) { + recordError(error); + } else { + throw error; + } + } + + // Throw an exception because of the token. + + function unexpectedTokenError(token, message) { + var value, msg = message || Messages.UnexpectedToken; + + if (token) { + if (!message) { + msg = (token.type === Token.EOF) ? Messages.UnexpectedEOS : + (token.type === Token.Identifier) ? Messages.UnexpectedIdentifier : + (token.type === Token.NumericLiteral) ? Messages.UnexpectedNumber : + (token.type === Token.StringLiteral) ? Messages.UnexpectedString : + (token.type === Token.Template) ? Messages.UnexpectedTemplate : + Messages.UnexpectedToken; + + if (token.type === Token.Keyword) { + if (isFutureReservedWord(token.value)) { + msg = Messages.UnexpectedReserved; + } else if (strict && isStrictModeReservedWord(token.value)) { + msg = Messages.StrictReservedWord; + } + } + } + + value = (token.type === Token.Template) ? token.value.raw : token.value; + } else { + value = 'ILLEGAL'; + } + + msg = msg.replace('%0', value); + + return (token && typeof token.lineNumber === 'number') ? + createError(token.lineNumber, token.start, msg) : + createError(scanning ? lineNumber : lastLineNumber, scanning ? index : lastIndex, msg); + } + + function throwUnexpectedToken(token, message) { + throw unexpectedTokenError(token, message); + } + + function tolerateUnexpectedToken(token, message) { + var error = unexpectedTokenError(token, message); + if (extra.errors) { + recordError(error); + } else { + throw error; + } + } + + // Expect the next token to match the specified punctuator. + // If not, an exception will be thrown. + + function expect(value) { + var token = lex(); + if (token.type !== Token.Punctuator || token.value !== value) { + throwUnexpectedToken(token); + } + } + + /** + * @name expectCommaSeparator + * @description Quietly expect a comma when in tolerant mode, otherwise delegates + * to expect(value) + * @since 2.0 + */ + function expectCommaSeparator() { + var token; + + if (extra.errors) { + token = lookahead; + if (token.type === Token.Punctuator && token.value === ',') { + lex(); + } else if (token.type === Token.Punctuator && token.value === ';') { + lex(); + tolerateUnexpectedToken(token); + } else { + tolerateUnexpectedToken(token, Messages.UnexpectedToken); + } + } else { + expect(','); + } + } + + // Expect the next token to match the specified keyword. + // If not, an exception will be thrown. + + function expectKeyword(keyword) { + var token = lex(); + if (token.type !== Token.Keyword || token.value !== keyword) { + throwUnexpectedToken(token); + } + } + + // Return true if the next token matches the specified punctuator. + + function match(value) { + return lookahead.type === Token.Punctuator && lookahead.value === value; + } + + // Return true if the next token matches the specified keyword + + function matchKeyword(keyword) { + return lookahead.type === Token.Keyword && lookahead.value === keyword; + } + + // Return true if the next token matches the specified contextual keyword + // (where an identifier is sometimes a keyword depending on the context) + + function matchContextualKeyword(keyword) { + return lookahead.type === Token.Identifier && lookahead.value === keyword; + } + + // Return true if the next token is an assignment operator + + function matchAssign() { + var op; + + if (lookahead.type !== Token.Punctuator) { + return false; + } + op = lookahead.value; + return op === '=' || + op === '*=' || + op === '/=' || + op === '%=' || + op === '+=' || + op === '-=' || + op === '<<=' || + op === '>>=' || + op === '>>>=' || + op === '&=' || + op === '^=' || + op === '|='; + } + + function consumeSemicolon() { + // Catch the very common case first: immediately a semicolon (U+003B). + if (source.charCodeAt(startIndex) === 0x3B || match(';')) { + lex(); + return; + } + + if (hasLineTerminator) { + return; + } + + // FIXME(ikarienator): this is seemingly an issue in the previous location info convention. + lastIndex = startIndex; + lastLineNumber = startLineNumber; + lastLineStart = startLineStart; + + if (lookahead.type !== Token.EOF && !match('}')) { + throwUnexpectedToken(lookahead); + } + } + + // Cover grammar support. + // + // When an assignment expression position starts with an left parenthesis, the determination of the type + // of the syntax is to be deferred arbitrarily long until the end of the parentheses pair (plus a lookahead) + // or the first comma. This situation also defers the determination of all the expressions nested in the pair. + // + // There are three productions that can be parsed in a parentheses pair that needs to be determined + // after the outermost pair is closed. They are: + // + // 1. AssignmentExpression + // 2. BindingElements + // 3. AssignmentTargets + // + // In order to avoid exponential backtracking, we use two flags to denote if the production can be + // binding element or assignment target. + // + // The three productions have the relationship: + // + // BindingElements ⊆ AssignmentTargets ⊆ AssignmentExpression + // + // with a single exception that CoverInitializedName when used directly in an Expression, generates + // an early error. Therefore, we need the third state, firstCoverInitializedNameError, to track the + // first usage of CoverInitializedName and report it when we reached the end of the parentheses pair. + // + // isolateCoverGrammar function runs the given parser function with a new cover grammar context, and it does not + // effect the current flags. This means the production the parser parses is only used as an expression. Therefore + // the CoverInitializedName check is conducted. + // + // inheritCoverGrammar function runs the given parse function with a new cover grammar context, and it propagates + // the flags outside of the parser. This means the production the parser parses is used as a part of a potential + // pattern. The CoverInitializedName check is deferred. + function isolateCoverGrammar(parser) { + var oldIsBindingElement = isBindingElement, + oldIsAssignmentTarget = isAssignmentTarget, + oldFirstCoverInitializedNameError = firstCoverInitializedNameError, + result; + isBindingElement = true; + isAssignmentTarget = true; + firstCoverInitializedNameError = null; + result = parser(); + if (firstCoverInitializedNameError !== null) { + throwUnexpectedToken(firstCoverInitializedNameError); + } + isBindingElement = oldIsBindingElement; + isAssignmentTarget = oldIsAssignmentTarget; + firstCoverInitializedNameError = oldFirstCoverInitializedNameError; + return result; + } + + function inheritCoverGrammar(parser) { + var oldIsBindingElement = isBindingElement, + oldIsAssignmentTarget = isAssignmentTarget, + oldFirstCoverInitializedNameError = firstCoverInitializedNameError, + result; + isBindingElement = true; + isAssignmentTarget = true; + firstCoverInitializedNameError = null; + result = parser(); + isBindingElement = isBindingElement && oldIsBindingElement; + isAssignmentTarget = isAssignmentTarget && oldIsAssignmentTarget; + firstCoverInitializedNameError = oldFirstCoverInitializedNameError || firstCoverInitializedNameError; + return result; + } + + function parseArrayPattern() { + var node = new Node(), elements = [], rest, restNode; + expect('['); + + while (!match(']')) { + if (match(',')) { + lex(); + elements.push(null); + } else { + if (match('...')) { + restNode = new Node(); + lex(); + rest = parseVariableIdentifier(); + elements.push(restNode.finishRestElement(rest)); + break; + } else { + elements.push(parsePatternWithDefault()); + } + if (!match(']')) { + expect(','); + } + } + + } + + expect(']'); + + return node.finishArrayPattern(elements); + } + + function parsePropertyPattern() { + var node = new Node(), key, computed = match('['), init; + if (lookahead.type === Token.Identifier) { + key = parseVariableIdentifier(); + if (match('=')) { + lex(); + init = parseAssignmentExpression(); + return node.finishProperty( + 'init', key, false, + new WrappingNode(key).finishAssignmentPattern(key, init), false, false); + } else if (!match(':')) { + return node.finishProperty('init', key, false, key, false, true); + } + } else { + key = parseObjectPropertyKey(); + } + expect(':'); + init = parsePatternWithDefault(); + return node.finishProperty('init', key, computed, init, false, false); + } + + function parseObjectPattern() { + var node = new Node(), properties = []; + + expect('{'); + + while (!match('}')) { + properties.push(parsePropertyPattern()); + if (!match('}')) { + expect(','); + } + } + + lex(); + + return node.finishObjectPattern(properties); + } + + function parsePattern() { + if (lookahead.type === Token.Identifier) { + return parseVariableIdentifier(); + } else if (match('[')) { + return parseArrayPattern(); + } else if (match('{')) { + return parseObjectPattern(); + } + throwUnexpectedToken(lookahead); + } + + function parsePatternWithDefault() { + var startToken = lookahead, pattern, right; + pattern = parsePattern(); + if (match('=')) { + lex(); + right = isolateCoverGrammar(parseAssignmentExpression); + pattern = new WrappingNode(startToken).finishAssignmentPattern(pattern, right); + } + return pattern; + } + + // 11.1.4 Array Initialiser + + function parseArrayInitialiser() { + var elements = [], node = new Node(), restSpread; + + expect('['); + + while (!match(']')) { + if (match(',')) { + lex(); + elements.push(null); + } else if (match('...')) { + restSpread = new Node(); + lex(); + restSpread.finishSpreadElement(inheritCoverGrammar(parseAssignmentExpression)); + + if (!match(']')) { + isAssignmentTarget = isBindingElement = false; + expect(','); + } + elements.push(restSpread); + } else { + elements.push(inheritCoverGrammar(parseAssignmentExpression)); + + if (!match(']')) { + expect(','); + } + } + } + + lex(); + + return node.finishArrayExpression(elements); + } + + // 11.1.5 Object Initialiser + + function parsePropertyFunction(node, paramInfo) { + var previousStrict, body; + + isAssignmentTarget = isBindingElement = false; + + previousStrict = strict; + body = isolateCoverGrammar(parseFunctionSourceElements); + + if (strict && paramInfo.firstRestricted) { + tolerateUnexpectedToken(paramInfo.firstRestricted, paramInfo.message); + } + if (strict && paramInfo.stricted) { + tolerateUnexpectedToken(paramInfo.stricted, paramInfo.message); + } + + strict = previousStrict; + return node.finishFunctionExpression(null, paramInfo.params, paramInfo.defaults, body); + } + + function parsePropertyMethodFunction() { + var params, method, node = new Node(); + + params = parseParams(); + method = parsePropertyFunction(node, params); + + return method; + } + + function parseObjectPropertyKey() { + var token, node = new Node(), expr; + + token = lex(); + + // Note: This function is called only from parseObjectProperty(), where + // EOF and Punctuator tokens are already filtered out. + + switch (token.type) { + case Token.StringLiteral: + case Token.NumericLiteral: + if (strict && token.octal) { + tolerateUnexpectedToken(token, Messages.StrictOctalLiteral); + } + return node.finishLiteral(token); + case Token.Identifier: + case Token.BooleanLiteral: + case Token.NullLiteral: + case Token.Keyword: + return node.finishIdentifier(token.value); + case Token.Punctuator: + if (token.value === '[') { + expr = isolateCoverGrammar(parseAssignmentExpression); + expect(']'); + return expr; + } + break; + } + throwUnexpectedToken(token); + } + + function lookaheadPropertyName() { + switch (lookahead.type) { + case Token.Identifier: + case Token.StringLiteral: + case Token.BooleanLiteral: + case Token.NullLiteral: + case Token.NumericLiteral: + case Token.Keyword: + return true; + case Token.Punctuator: + return lookahead.value === '['; + } + return false; + } + + // This function is to try to parse a MethodDefinition as defined in 14.3. But in the case of object literals, + // it might be called at a position where there is in fact a short hand identifier pattern or a data property. + // This can only be determined after we consumed up to the left parentheses. + // + // In order to avoid back tracking, it returns `null` if the position is not a MethodDefinition and the caller + // is responsible to visit other options. + function tryParseMethodDefinition(token, key, computed, node) { + var value, options, methodNode; + + if (token.type === Token.Identifier) { + // check for `get` and `set`; + + if (token.value === 'get' && lookaheadPropertyName()) { + computed = match('['); + key = parseObjectPropertyKey(); + methodNode = new Node(); + expect('('); + expect(')'); + value = parsePropertyFunction(methodNode, { + params: [], + defaults: [], + stricted: null, + firstRestricted: null, + message: null + }); + return node.finishProperty('get', key, computed, value, false, false); + } else if (token.value === 'set' && lookaheadPropertyName()) { + computed = match('['); + key = parseObjectPropertyKey(); + methodNode = new Node(); + expect('('); + + options = { + params: [], + defaultCount: 0, + defaults: [], + firstRestricted: null, + paramSet: {} + }; + if (match(')')) { + tolerateUnexpectedToken(lookahead); + } else { + parseParam(options); + if (options.defaultCount === 0) { + options.defaults = []; + } + } + expect(')'); + + value = parsePropertyFunction(methodNode, options); + return node.finishProperty('set', key, computed, value, false, false); + } + } + + if (match('(')) { + value = parsePropertyMethodFunction(); + return node.finishProperty('init', key, computed, value, true, false); + } + + // Not a MethodDefinition. + return null; + } + + function checkProto(key, computed, hasProto) { + if (computed === false && (key.type === Syntax.Identifier && key.name === '__proto__' || + key.type === Syntax.Literal && key.value === '__proto__')) { + if (hasProto.value) { + tolerateError(Messages.DuplicateProtoProperty); + } else { + hasProto.value = true; + } + } + } + + function parseObjectProperty(hasProto) { + var token = lookahead, node = new Node(), computed, key, maybeMethod, value; + + computed = match('['); + key = parseObjectPropertyKey(); + maybeMethod = tryParseMethodDefinition(token, key, computed, node); + + if (maybeMethod) { + checkProto(maybeMethod.key, maybeMethod.computed, hasProto); + // finished + return maybeMethod; + } + + // init property or short hand property. + checkProto(key, computed, hasProto); + + if (match(':')) { + lex(); + value = inheritCoverGrammar(parseAssignmentExpression); + return node.finishProperty('init', key, computed, value, false, false); + } + + if (token.type === Token.Identifier) { + if (match('=')) { + firstCoverInitializedNameError = lookahead; + lex(); + value = isolateCoverGrammar(parseAssignmentExpression); + return node.finishProperty('init', key, computed, + new WrappingNode(token).finishAssignmentPattern(key, value), false, true); + } + return node.finishProperty('init', key, computed, key, false, true); + } + + throwUnexpectedToken(lookahead); + } + + function parseObjectInitialiser() { + var properties = [], hasProto = {value: false}, node = new Node(); + + expect('{'); + + while (!match('}')) { + properties.push(parseObjectProperty(hasProto)); + + if (!match('}')) { + expectCommaSeparator(); + } + } + + expect('}'); + + return node.finishObjectExpression(properties); + } + + function reinterpretExpressionAsPattern(expr) { + var i; + switch (expr.type) { + case Syntax.Identifier: + case Syntax.MemberExpression: + case Syntax.RestElement: + case Syntax.AssignmentPattern: + break; + case Syntax.SpreadElement: + expr.type = Syntax.RestElement; + reinterpretExpressionAsPattern(expr.argument); + break; + case Syntax.ArrayExpression: + expr.type = Syntax.ArrayPattern; + for (i = 0; i < expr.elements.length; i++) { + if (expr.elements[i] !== null) { + reinterpretExpressionAsPattern(expr.elements[i]); + } + } + break; + case Syntax.ObjectExpression: + expr.type = Syntax.ObjectPattern; + for (i = 0; i < expr.properties.length; i++) { + reinterpretExpressionAsPattern(expr.properties[i].value); + } + break; + case Syntax.AssignmentExpression: + expr.type = Syntax.AssignmentPattern; + reinterpretExpressionAsPattern(expr.left); + break; + default: + // Allow other node type for tolerant parsing. + break; + } + } + + function parseTemplateElement(option) { + var node, token; + + if (lookahead.type !== Token.Template || (option.head && !lookahead.head)) { + throwUnexpectedToken(); + } + + node = new Node(); + token = lex(); + + return node.finishTemplateElement({ raw: token.value.raw, cooked: token.value.cooked }, token.tail); + } + + function parseTemplateLiteral() { + var quasi, quasis, expressions, node = new Node(); + + quasi = parseTemplateElement({ head: true }); + quasis = [ quasi ]; + expressions = []; + + while (!quasi.tail) { + expressions.push(parseExpression()); + quasi = parseTemplateElement({ head: false }); + quasis.push(quasi); + } + + return node.finishTemplateLiteral(quasis, expressions); + } + + // 11.1.6 The Grouping Operator + + function parseGroupExpression() { + var expr, expressions, startToken, i; + + expect('('); + + if (match(')')) { + lex(); + if (!match('=>')) { + expect('=>'); + } + return { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: [] + }; + } + + startToken = lookahead; + if (match('...')) { + expr = parseRestElement(); + expect(')'); + if (!match('=>')) { + expect('=>'); + } + return { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: [expr] + }; + } + + isBindingElement = true; + expr = inheritCoverGrammar(parseAssignmentExpression); + + if (match(',')) { + isAssignmentTarget = false; + expressions = [expr]; + + while (startIndex < length) { + if (!match(',')) { + break; + } + lex(); + + if (match('...')) { + if (!isBindingElement) { + throwUnexpectedToken(lookahead); + } + expressions.push(parseRestElement()); + expect(')'); + if (!match('=>')) { + expect('=>'); + } + isBindingElement = false; + for (i = 0; i < expressions.length; i++) { + reinterpretExpressionAsPattern(expressions[i]); + } + return { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: expressions + }; + } + + expressions.push(inheritCoverGrammar(parseAssignmentExpression)); + } + + expr = new WrappingNode(startToken).finishSequenceExpression(expressions); + } + + + expect(')'); + + if (match('=>')) { + if (!isBindingElement) { + throwUnexpectedToken(lookahead); + } + + if (expr.type === Syntax.SequenceExpression) { + for (i = 0; i < expr.expressions.length; i++) { + reinterpretExpressionAsPattern(expr.expressions[i]); + } + } else { + reinterpretExpressionAsPattern(expr); + } + + expr = { + type: PlaceHolders.ArrowParameterPlaceHolder, + params: expr.type === Syntax.SequenceExpression ? expr.expressions : [expr] + }; + } + isBindingElement = false; + return expr; + } + + + // 11.1 Primary Expressions + + function parsePrimaryExpression() { + var type, token, expr, node; + + if (match('(')) { + isBindingElement = false; + return inheritCoverGrammar(parseGroupExpression); + } + + if (match('[')) { + return inheritCoverGrammar(parseArrayInitialiser); + } + + if (match('{')) { + return inheritCoverGrammar(parseObjectInitialiser); + } + + type = lookahead.type; + node = new Node(); + + if (type === Token.Identifier) { + expr = node.finishIdentifier(lex().value); + } else if (type === Token.StringLiteral || type === Token.NumericLiteral) { + isAssignmentTarget = isBindingElement = false; + if (strict && lookahead.octal) { + tolerateUnexpectedToken(lookahead, Messages.StrictOctalLiteral); + } + expr = node.finishLiteral(lex()); + } else if (type === Token.Keyword) { + isAssignmentTarget = isBindingElement = false; + if (matchKeyword('function')) { + return parseFunctionExpression(); + } + if (matchKeyword('this')) { + lex(); + return node.finishThisExpression(); + } + if (matchKeyword('class')) { + return parseClassExpression(); + } + throwUnexpectedToken(lex()); + } else if (type === Token.BooleanLiteral) { + isAssignmentTarget = isBindingElement = false; + token = lex(); + token.value = (token.value === 'true'); + expr = node.finishLiteral(token); + } else if (type === Token.NullLiteral) { + isAssignmentTarget = isBindingElement = false; + token = lex(); + token.value = null; + expr = node.finishLiteral(token); + } else if (match('/') || match('/=')) { + isAssignmentTarget = isBindingElement = false; + index = startIndex; + + if (typeof extra.tokens !== 'undefined') { + token = collectRegex(); + } else { + token = scanRegExp(); + } + lex(); + expr = node.finishLiteral(token); + } else if (type === Token.Template) { + expr = parseTemplateLiteral(); + } else { + throwUnexpectedToken(lex()); + } + + return expr; + } + + // 11.2 Left-Hand-Side Expressions + + function parseArguments() { + var args = []; + + expect('('); + + if (!match(')')) { + while (startIndex < length) { + args.push(isolateCoverGrammar(parseAssignmentExpression)); + if (match(')')) { + break; + } + expectCommaSeparator(); + } + } + + expect(')'); + + return args; + } + + function parseNonComputedProperty() { + var token, node = new Node(); + + token = lex(); + + if (!isIdentifierName(token)) { + throwUnexpectedToken(token); + } + + return node.finishIdentifier(token.value); + } + + function parseNonComputedMember() { + expect('.'); + + return parseNonComputedProperty(); + } + + function parseComputedMember() { + var expr; + + expect('['); + + expr = isolateCoverGrammar(parseExpression); + + expect(']'); + + return expr; + } + + function parseNewExpression() { + var callee, args, node = new Node(); + + expectKeyword('new'); + callee = isolateCoverGrammar(parseLeftHandSideExpression); + args = match('(') ? parseArguments() : []; + + isAssignmentTarget = isBindingElement = false; + + return node.finishNewExpression(callee, args); + } + + function parseLeftHandSideExpressionAllowCall() { + var quasi, expr, args, property, startToken, previousAllowIn = state.allowIn; + + startToken = lookahead; + state.allowIn = true; + + if (matchKeyword('super') && state.inFunctionBody) { + expr = new Node(); + lex(); + expr = expr.finishSuper(); + if (!match('(') && !match('.') && !match('[')) { + throwUnexpectedToken(lookahead); + } + } else { + expr = inheritCoverGrammar(matchKeyword('new') ? parseNewExpression : parsePrimaryExpression); + } + + for (;;) { + if (match('.')) { + isBindingElement = false; + isAssignmentTarget = true; + property = parseNonComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('.', expr, property); + } else if (match('(')) { + isBindingElement = false; + isAssignmentTarget = false; + args = parseArguments(); + expr = new WrappingNode(startToken).finishCallExpression(expr, args); + } else if (match('[')) { + isBindingElement = false; + isAssignmentTarget = true; + property = parseComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('[', expr, property); + } else if (lookahead.type === Token.Template && lookahead.head) { + quasi = parseTemplateLiteral(); + expr = new WrappingNode(startToken).finishTaggedTemplateExpression(expr, quasi); + } else { + break; + } + } + state.allowIn = previousAllowIn; + + return expr; + } + + function parseLeftHandSideExpression() { + var quasi, expr, property, startToken; + assert(state.allowIn, 'callee of new expression always allow in keyword.'); + + startToken = lookahead; + + if (matchKeyword('super') && state.inFunctionBody) { + expr = new Node(); + lex(); + expr = expr.finishSuper(); + if (!match('[') && !match('.')) { + throwUnexpectedToken(lookahead); + } + } else { + expr = inheritCoverGrammar(matchKeyword('new') ? parseNewExpression : parsePrimaryExpression); + } + + for (;;) { + if (match('[')) { + isBindingElement = false; + isAssignmentTarget = true; + property = parseComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('[', expr, property); + } else if (match('.')) { + isBindingElement = false; + isAssignmentTarget = true; + property = parseNonComputedMember(); + expr = new WrappingNode(startToken).finishMemberExpression('.', expr, property); + } else if (lookahead.type === Token.Template && lookahead.head) { + quasi = parseTemplateLiteral(); + expr = new WrappingNode(startToken).finishTaggedTemplateExpression(expr, quasi); + } else { + break; + } + } + return expr; + } + + // 11.3 Postfix Expressions + + function parsePostfixExpression() { + var expr, token, startToken = lookahead; + + expr = inheritCoverGrammar(parseLeftHandSideExpressionAllowCall); + + if (!hasLineTerminator && lookahead.type === Token.Punctuator) { + if (match('++') || match('--')) { + // 11.3.1, 11.3.2 + if (strict && expr.type === Syntax.Identifier && isRestrictedWord(expr.name)) { + tolerateError(Messages.StrictLHSPostfix); + } + + if (!isAssignmentTarget) { + tolerateError(Messages.InvalidLHSInAssignment); + } + + isAssignmentTarget = isBindingElement = false; + + token = lex(); + expr = new WrappingNode(startToken).finishPostfixExpression(token.value, expr); + } + } + + return expr; + } + + // 11.4 Unary Operators + + function parseUnaryExpression() { + var token, expr, startToken; + + if (lookahead.type !== Token.Punctuator && lookahead.type !== Token.Keyword) { + expr = parsePostfixExpression(); + } else if (match('++') || match('--')) { + startToken = lookahead; + token = lex(); + expr = inheritCoverGrammar(parseUnaryExpression); + // 11.4.4, 11.4.5 + if (strict && expr.type === Syntax.Identifier && isRestrictedWord(expr.name)) { + tolerateError(Messages.StrictLHSPrefix); + } + + if (!isAssignmentTarget) { + tolerateError(Messages.InvalidLHSInAssignment); + } + expr = new WrappingNode(startToken).finishUnaryExpression(token.value, expr); + isAssignmentTarget = isBindingElement = false; + } else if (match('+') || match('-') || match('~') || match('!')) { + startToken = lookahead; + token = lex(); + expr = inheritCoverGrammar(parseUnaryExpression); + expr = new WrappingNode(startToken).finishUnaryExpression(token.value, expr); + isAssignmentTarget = isBindingElement = false; + } else if (matchKeyword('delete') || matchKeyword('void') || matchKeyword('typeof')) { + startToken = lookahead; + token = lex(); + expr = inheritCoverGrammar(parseUnaryExpression); + expr = new WrappingNode(startToken).finishUnaryExpression(token.value, expr); + if (strict && expr.operator === 'delete' && expr.argument.type === Syntax.Identifier) { + tolerateError(Messages.StrictDelete); + } + isAssignmentTarget = isBindingElement = false; + } else { + expr = parsePostfixExpression(); + } + + return expr; + } + + function binaryPrecedence(token, allowIn) { + var prec = 0; + + if (token.type !== Token.Punctuator && token.type !== Token.Keyword) { + return 0; + } + + switch (token.value) { + case '||': + prec = 1; + break; + + case '&&': + prec = 2; + break; + + case '|': + prec = 3; + break; + + case '^': + prec = 4; + break; + + case '&': + prec = 5; + break; + + case '==': + case '!=': + case '===': + case '!==': + prec = 6; + break; + + case '<': + case '>': + case '<=': + case '>=': + case 'instanceof': + prec = 7; + break; + + case 'in': + prec = allowIn ? 7 : 0; + break; + + case '<<': + case '>>': + case '>>>': + prec = 8; + break; + + case '+': + case '-': + prec = 9; + break; + + case '*': + case '/': + case '%': + prec = 11; + break; + + default: + break; + } + + return prec; + } + + // 11.5 Multiplicative Operators + // 11.6 Additive Operators + // 11.7 Bitwise Shift Operators + // 11.8 Relational Operators + // 11.9 Equality Operators + // 11.10 Binary Bitwise Operators + // 11.11 Binary Logical Operators + + function parseBinaryExpression() { + var marker, markers, expr, token, prec, stack, right, operator, left, i; + + marker = lookahead; + left = inheritCoverGrammar(parseUnaryExpression); + + token = lookahead; + prec = binaryPrecedence(token, state.allowIn); + if (prec === 0) { + return left; + } + isAssignmentTarget = isBindingElement = false; + token.prec = prec; + lex(); + + markers = [marker, lookahead]; + right = isolateCoverGrammar(parseUnaryExpression); + + stack = [left, token, right]; + + while ((prec = binaryPrecedence(lookahead, state.allowIn)) > 0) { + + // Reduce: make a binary expression from the three topmost entries. + while ((stack.length > 2) && (prec <= stack[stack.length - 2].prec)) { + right = stack.pop(); + operator = stack.pop().value; + left = stack.pop(); + markers.pop(); + expr = new WrappingNode(markers[markers.length - 1]).finishBinaryExpression(operator, left, right); + stack.push(expr); + } + + // Shift. + token = lex(); + token.prec = prec; + stack.push(token); + markers.push(lookahead); + expr = isolateCoverGrammar(parseUnaryExpression); + stack.push(expr); + } + + // Final reduce to clean-up the stack. + i = stack.length - 1; + expr = stack[i]; + markers.pop(); + while (i > 1) { + expr = new WrappingNode(markers.pop()).finishBinaryExpression(stack[i - 1].value, stack[i - 2], expr); + i -= 2; + } + + return expr; + } + + + // 11.12 Conditional Operator + + function parseConditionalExpression() { + var expr, previousAllowIn, consequent, alternate, startToken; + + startToken = lookahead; + + expr = inheritCoverGrammar(parseBinaryExpression); + if (match('?')) { + lex(); + previousAllowIn = state.allowIn; + state.allowIn = true; + consequent = isolateCoverGrammar(parseAssignmentExpression); + state.allowIn = previousAllowIn; + expect(':'); + alternate = isolateCoverGrammar(parseAssignmentExpression); + + expr = new WrappingNode(startToken).finishConditionalExpression(expr, consequent, alternate); + isAssignmentTarget = isBindingElement = false; + } + + return expr; + } + + // [ES6] 14.2 Arrow Function + + function parseConciseBody() { + if (match('{')) { + return parseFunctionSourceElements(); + } + return isolateCoverGrammar(parseAssignmentExpression); + } + + function checkPatternParam(options, param) { + var i; + switch (param.type) { + case Syntax.Identifier: + validateParam(options, param, param.name); + break; + case Syntax.RestElement: + checkPatternParam(options, param.argument); + break; + case Syntax.AssignmentPattern: + checkPatternParam(options, param.left); + break; + case Syntax.ArrayPattern: + for (i = 0; i < param.elements.length; i++) { + if (param.elements[i] !== null) { + checkPatternParam(options, param.elements[i]); + } + } + break; + default: + assert(param.type === Syntax.ObjectPattern, 'Invalid type'); + for (i = 0; i < param.properties.length; i++) { + checkPatternParam(options, param.properties[i].value); + } + break; + } + } + function reinterpretAsCoverFormalsList(expr) { + var i, len, param, params, defaults, defaultCount, options, token; + + defaults = []; + defaultCount = 0; + params = [expr]; + + switch (expr.type) { + case Syntax.Identifier: + break; + case PlaceHolders.ArrowParameterPlaceHolder: + params = expr.params; + break; + default: + return null; + } + + options = { + paramSet: {} + }; + + for (i = 0, len = params.length; i < len; i += 1) { + param = params[i]; + switch (param.type) { + case Syntax.AssignmentPattern: + params[i] = param.left; + defaults.push(param.right); + ++defaultCount; + checkPatternParam(options, param.left); + break; + default: + checkPatternParam(options, param); + params[i] = param; + defaults.push(null); + break; + } + } + + if (options.message === Messages.StrictParamDupe) { + token = strict ? options.stricted : options.firstRestricted; + throwUnexpectedToken(token, options.message); + } + + if (defaultCount === 0) { + defaults = []; + } + + return { + params: params, + defaults: defaults, + stricted: options.stricted, + firstRestricted: options.firstRestricted, + message: options.message + }; + } + + function parseArrowFunctionExpression(options, node) { + var previousStrict, body; + + if (hasLineTerminator) { + tolerateUnexpectedToken(lookahead); + } + expect('=>'); + previousStrict = strict; + + body = parseConciseBody(); + + if (strict && options.firstRestricted) { + throwUnexpectedToken(options.firstRestricted, options.message); + } + if (strict && options.stricted) { + tolerateUnexpectedToken(options.stricted, options.message); + } + + strict = previousStrict; + + return node.finishArrowFunctionExpression(options.params, options.defaults, body, body.type !== Syntax.BlockStatement); + } + + // 11.13 Assignment Operators + + function parseAssignmentExpression() { + var token, expr, right, list, startToken; + + startToken = lookahead; + token = lookahead; + + expr = parseConditionalExpression(); + + if (expr.type === PlaceHolders.ArrowParameterPlaceHolder || match('=>')) { + isAssignmentTarget = isBindingElement = false; + list = reinterpretAsCoverFormalsList(expr); + + if (list) { + firstCoverInitializedNameError = null; + return parseArrowFunctionExpression(list, new WrappingNode(startToken)); + } + + return expr; + } + + if (matchAssign()) { + if (!isAssignmentTarget) { + tolerateError(Messages.InvalidLHSInAssignment); + } + + // 11.13.1 + if (strict && expr.type === Syntax.Identifier && isRestrictedWord(expr.name)) { + tolerateUnexpectedToken(token, Messages.StrictLHSAssignment); + } + + if (!match('=')) { + isAssignmentTarget = isBindingElement = false; + } else { + reinterpretExpressionAsPattern(expr); + } + + token = lex(); + right = isolateCoverGrammar(parseAssignmentExpression); + expr = new WrappingNode(startToken).finishAssignmentExpression(token.value, expr, right); + firstCoverInitializedNameError = null; + } + + return expr; + } + + // 11.14 Comma Operator + + function parseExpression() { + var expr, startToken = lookahead, expressions; + + expr = isolateCoverGrammar(parseAssignmentExpression); + + if (match(',')) { + expressions = [expr]; + + while (startIndex < length) { + if (!match(',')) { + break; + } + lex(); + expressions.push(isolateCoverGrammar(parseAssignmentExpression)); + } + + expr = new WrappingNode(startToken).finishSequenceExpression(expressions); + } + + return expr; + } + + // 12.1 Block + + function parseStatementListItem() { + if (lookahead.type === Token.Keyword) { + switch (lookahead.value) { + case 'export': + if (sourceType !== 'module') { + tolerateUnexpectedToken(lookahead, Messages.IllegalExportDeclaration); + } + return parseExportDeclaration(); + case 'import': + if (sourceType !== 'module') { + tolerateUnexpectedToken(lookahead, Messages.IllegalImportDeclaration); + } + return parseImportDeclaration(); + case 'const': + case 'let': + return parseLexicalDeclaration({inFor: false}); + case 'function': + return parseFunctionDeclaration(new Node()); + case 'class': + return parseClassDeclaration(); + } + } + + return parseStatement(); + } + + function parseStatementList() { + var list = []; + while (startIndex < length) { + if (match('}')) { + break; + } + list.push(parseStatementListItem()); + } + + return list; + } + + function parseBlock() { + var block, node = new Node(); + + expect('{'); + + block = parseStatementList(); + + expect('}'); + + return node.finishBlockStatement(block); + } + + // 12.2 Variable Statement + + function parseVariableIdentifier() { + var token, node = new Node(); + + token = lex(); + + if (token.type !== Token.Identifier) { + if (strict && token.type === Token.Keyword && isStrictModeReservedWord(token.value)) { + tolerateUnexpectedToken(token, Messages.StrictReservedWord); + } else { + throwUnexpectedToken(token); + } + } + + return node.finishIdentifier(token.value); + } + + function parseVariableDeclaration() { + var init = null, id, node = new Node(); + + id = parsePattern(); + + // 12.2.1 + if (strict && isRestrictedWord(id.name)) { + tolerateError(Messages.StrictVarName); + } + + if (match('=')) { + lex(); + init = isolateCoverGrammar(parseAssignmentExpression); + } else if (id.type !== Syntax.Identifier) { + expect('='); + } + + return node.finishVariableDeclarator(id, init); + } + + function parseVariableDeclarationList() { + var list = []; + + do { + list.push(parseVariableDeclaration()); + if (!match(',')) { + break; + } + lex(); + } while (startIndex < length); + + return list; + } + + function parseVariableStatement(node) { + var declarations; + + expectKeyword('var'); + + declarations = parseVariableDeclarationList(); + + consumeSemicolon(); + + return node.finishVariableDeclaration(declarations); + } + + function parseLexicalBinding(kind, options) { + var init = null, id, node = new Node(); + + id = parsePattern(); + + // 12.2.1 + if (strict && id.type === Syntax.Identifier && isRestrictedWord(id.name)) { + tolerateError(Messages.StrictVarName); + } + + if (kind === 'const') { + if (!matchKeyword('in')) { + expect('='); + init = isolateCoverGrammar(parseAssignmentExpression); + } + } else if ((!options.inFor && id.type !== Syntax.Identifier) || match('=')) { + expect('='); + init = isolateCoverGrammar(parseAssignmentExpression); + } + + return node.finishVariableDeclarator(id, init); + } + + function parseBindingList(kind, options) { + var list = []; + + do { + list.push(parseLexicalBinding(kind, options)); + if (!match(',')) { + break; + } + lex(); + } while (startIndex < length); + + return list; + } + + function parseLexicalDeclaration(options) { + var kind, declarations, node = new Node(); + + kind = lex().value; + assert(kind === 'let' || kind === 'const', 'Lexical declaration must be either let or const'); + + declarations = parseBindingList(kind, options); + + consumeSemicolon(); + + return node.finishLexicalDeclaration(declarations, kind); + } + + function parseRestElement() { + var param, node = new Node(); + + lex(); + + if (match('{')) { + throwError(Messages.ObjectPatternAsRestParameter); + } + + param = parseVariableIdentifier(); + + if (match('=')) { + throwError(Messages.DefaultRestParameter); + } + + if (!match(')')) { + throwError(Messages.ParameterAfterRestParameter); + } + + return node.finishRestElement(param); + } + + // 12.3 Empty Statement + + function parseEmptyStatement(node) { + expect(';'); + return node.finishEmptyStatement(); + } + + // 12.4 Expression Statement + + function parseExpressionStatement(node) { + var expr = parseExpression(); + consumeSemicolon(); + return node.finishExpressionStatement(expr); + } + + // 12.5 If statement + + function parseIfStatement(node) { + var test, consequent, alternate; + + expectKeyword('if'); + + expect('('); + + test = parseExpression(); + + expect(')'); + + consequent = parseStatement(); + + if (matchKeyword('else')) { + lex(); + alternate = parseStatement(); + } else { + alternate = null; + } + + return node.finishIfStatement(test, consequent, alternate); + } + + // 12.6 Iteration Statements + + function parseDoWhileStatement(node) { + var body, test, oldInIteration; + + expectKeyword('do'); + + oldInIteration = state.inIteration; + state.inIteration = true; + + body = parseStatement(); + + state.inIteration = oldInIteration; + + expectKeyword('while'); + + expect('('); + + test = parseExpression(); + + expect(')'); + + if (match(';')) { + lex(); + } + + return node.finishDoWhileStatement(body, test); + } + + function parseWhileStatement(node) { + var test, body, oldInIteration; + + expectKeyword('while'); + + expect('('); + + test = parseExpression(); + + expect(')'); + + oldInIteration = state.inIteration; + state.inIteration = true; + + body = parseStatement(); + + state.inIteration = oldInIteration; + + return node.finishWhileStatement(test, body); + } + + function parseForStatement(node) { + var init, initSeq, initStartToken, test, update, left, right, kind, declarations, + body, oldInIteration, previousAllowIn = state.allowIn; + + init = test = update = null; + + expectKeyword('for'); + + expect('('); + + if (match(';')) { + lex(); + } else { + if (matchKeyword('var')) { + init = new Node(); + lex(); + + state.allowIn = false; + init = init.finishVariableDeclaration(parseVariableDeclarationList()); + state.allowIn = previousAllowIn; + + if (init.declarations.length === 1 && matchKeyword('in')) { + lex(); + left = init; + right = parseExpression(); + init = null; + } else { + expect(';'); + } + } else if (matchKeyword('const') || matchKeyword('let')) { + init = new Node(); + kind = lex().value; + + state.allowIn = false; + declarations = parseBindingList(kind, {inFor: true}); + state.allowIn = previousAllowIn; + + if (declarations.length === 1 && declarations[0].init === null && matchKeyword('in')) { + init = init.finishLexicalDeclaration(declarations, kind); + lex(); + left = init; + right = parseExpression(); + init = null; + } else { + consumeSemicolon(); + init = init.finishLexicalDeclaration(declarations, kind); + } + } else { + initStartToken = lookahead; + state.allowIn = false; + init = inheritCoverGrammar(parseAssignmentExpression); + state.allowIn = previousAllowIn; + + if (matchKeyword('in')) { + if (!isAssignmentTarget) { + tolerateError(Messages.InvalidLHSInForIn); + } + + lex(); + reinterpretExpressionAsPattern(init); + left = init; + right = parseExpression(); + init = null; + } else { + if (match(',')) { + initSeq = [init]; + while (match(',')) { + lex(); + initSeq.push(isolateCoverGrammar(parseAssignmentExpression)); + } + init = new WrappingNode(initStartToken).finishSequenceExpression(initSeq); + } + expect(';'); + } + } + } + + if (typeof left === 'undefined') { + + if (!match(';')) { + test = parseExpression(); + } + expect(';'); + + if (!match(')')) { + update = parseExpression(); + } + } + + expect(')'); + + oldInIteration = state.inIteration; + state.inIteration = true; + + body = isolateCoverGrammar(parseStatement); + + state.inIteration = oldInIteration; + + return (typeof left === 'undefined') ? + node.finishForStatement(init, test, update, body) : + node.finishForInStatement(left, right, body); + } + + // 12.7 The continue statement + + function parseContinueStatement(node) { + var label = null, key; + + expectKeyword('continue'); + + // Optimize the most common form: 'continue;'. + if (source.charCodeAt(startIndex) === 0x3B) { + lex(); + + if (!state.inIteration) { + throwError(Messages.IllegalContinue); + } + + return node.finishContinueStatement(null); + } + + if (hasLineTerminator) { + if (!state.inIteration) { + throwError(Messages.IllegalContinue); + } + + return node.finishContinueStatement(null); + } + + if (lookahead.type === Token.Identifier) { + label = parseVariableIdentifier(); + + key = '$' + label.name; + if (!Object.prototype.hasOwnProperty.call(state.labelSet, key)) { + throwError(Messages.UnknownLabel, label.name); + } + } + + consumeSemicolon(); + + if (label === null && !state.inIteration) { + throwError(Messages.IllegalContinue); + } + + return node.finishContinueStatement(label); + } + + // 12.8 The break statement + + function parseBreakStatement(node) { + var label = null, key; + + expectKeyword('break'); + + // Catch the very common case first: immediately a semicolon (U+003B). + if (source.charCodeAt(lastIndex) === 0x3B) { + lex(); + + if (!(state.inIteration || state.inSwitch)) { + throwError(Messages.IllegalBreak); + } + + return node.finishBreakStatement(null); + } + + if (hasLineTerminator) { + if (!(state.inIteration || state.inSwitch)) { + throwError(Messages.IllegalBreak); + } + + return node.finishBreakStatement(null); + } + + if (lookahead.type === Token.Identifier) { + label = parseVariableIdentifier(); + + key = '$' + label.name; + if (!Object.prototype.hasOwnProperty.call(state.labelSet, key)) { + throwError(Messages.UnknownLabel, label.name); + } + } + + consumeSemicolon(); + + if (label === null && !(state.inIteration || state.inSwitch)) { + throwError(Messages.IllegalBreak); + } + + return node.finishBreakStatement(label); + } + + // 12.9 The return statement + + function parseReturnStatement(node) { + var argument = null; + + expectKeyword('return'); + + if (!state.inFunctionBody) { + tolerateError(Messages.IllegalReturn); + } + + // 'return' followed by a space and an identifier is very common. + if (source.charCodeAt(lastIndex) === 0x20) { + if (isIdentifierStart(source.charCodeAt(lastIndex + 1))) { + argument = parseExpression(); + consumeSemicolon(); + return node.finishReturnStatement(argument); + } + } + + if (hasLineTerminator) { + // HACK + return node.finishReturnStatement(null); + } + + if (!match(';')) { + if (!match('}') && lookahead.type !== Token.EOF) { + argument = parseExpression(); + } + } + + consumeSemicolon(); + + return node.finishReturnStatement(argument); + } + + // 12.10 The with statement + + function parseWithStatement(node) { + var object, body; + + if (strict) { + tolerateError(Messages.StrictModeWith); + } + + expectKeyword('with'); + + expect('('); + + object = parseExpression(); + + expect(')'); + + body = parseStatement(); + + return node.finishWithStatement(object, body); + } + + // 12.10 The swith statement + + function parseSwitchCase() { + var test, consequent = [], statement, node = new Node(); + + if (matchKeyword('default')) { + lex(); + test = null; + } else { + expectKeyword('case'); + test = parseExpression(); + } + expect(':'); + + while (startIndex < length) { + if (match('}') || matchKeyword('default') || matchKeyword('case')) { + break; + } + statement = parseStatementListItem(); + consequent.push(statement); + } + + return node.finishSwitchCase(test, consequent); + } + + function parseSwitchStatement(node) { + var discriminant, cases, clause, oldInSwitch, defaultFound; + + expectKeyword('switch'); + + expect('('); + + discriminant = parseExpression(); + + expect(')'); + + expect('{'); + + cases = []; + + if (match('}')) { + lex(); + return node.finishSwitchStatement(discriminant, cases); + } + + oldInSwitch = state.inSwitch; + state.inSwitch = true; + defaultFound = false; + + while (startIndex < length) { + if (match('}')) { + break; + } + clause = parseSwitchCase(); + if (clause.test === null) { + if (defaultFound) { + throwError(Messages.MultipleDefaultsInSwitch); + } + defaultFound = true; + } + cases.push(clause); + } + + state.inSwitch = oldInSwitch; + + expect('}'); + + return node.finishSwitchStatement(discriminant, cases); + } + + // 12.13 The throw statement + + function parseThrowStatement(node) { + var argument; + + expectKeyword('throw'); + + if (hasLineTerminator) { + throwError(Messages.NewlineAfterThrow); + } + + argument = parseExpression(); + + consumeSemicolon(); + + return node.finishThrowStatement(argument); + } + + // 12.14 The try statement + + function parseCatchClause() { + var param, body, node = new Node(); + + expectKeyword('catch'); + + expect('('); + if (match(')')) { + throwUnexpectedToken(lookahead); + } + + param = parsePattern(); + + // 12.14.1 + if (strict && isRestrictedWord(param.name)) { + tolerateError(Messages.StrictCatchVariable); + } + + expect(')'); + body = parseBlock(); + return node.finishCatchClause(param, body); + } + + function parseTryStatement(node) { + var block, handler = null, finalizer = null; + + expectKeyword('try'); + + block = parseBlock(); + + if (matchKeyword('catch')) { + handler = parseCatchClause(); + } + + if (matchKeyword('finally')) { + lex(); + finalizer = parseBlock(); + } + + if (!handler && !finalizer) { + throwError(Messages.NoCatchOrFinally); + } + + return node.finishTryStatement(block, handler, finalizer); + } + + // 12.15 The debugger statement + + function parseDebuggerStatement(node) { + expectKeyword('debugger'); + + consumeSemicolon(); + + return node.finishDebuggerStatement(); + } + + // 12 Statements + + function parseStatement() { + var type = lookahead.type, + expr, + labeledBody, + key, + node; + + if (type === Token.EOF) { + throwUnexpectedToken(lookahead); + } + + if (type === Token.Punctuator && lookahead.value === '{') { + return parseBlock(); + } + isAssignmentTarget = isBindingElement = true; + node = new Node(); + + if (type === Token.Punctuator) { + switch (lookahead.value) { + case ';': + return parseEmptyStatement(node); + case '(': + return parseExpressionStatement(node); + default: + break; + } + } else if (type === Token.Keyword) { + switch (lookahead.value) { + case 'break': + return parseBreakStatement(node); + case 'continue': + return parseContinueStatement(node); + case 'debugger': + return parseDebuggerStatement(node); + case 'do': + return parseDoWhileStatement(node); + case 'for': + return parseForStatement(node); + case 'function': + return parseFunctionDeclaration(node); + case 'if': + return parseIfStatement(node); + case 'return': + return parseReturnStatement(node); + case 'switch': + return parseSwitchStatement(node); + case 'throw': + return parseThrowStatement(node); + case 'try': + return parseTryStatement(node); + case 'var': + return parseVariableStatement(node); + case 'while': + return parseWhileStatement(node); + case 'with': + return parseWithStatement(node); + default: + break; + } + } + + expr = parseExpression(); + + // 12.12 Labelled Statements + if ((expr.type === Syntax.Identifier) && match(':')) { + lex(); + + key = '$' + expr.name; + if (Object.prototype.hasOwnProperty.call(state.labelSet, key)) { + throwError(Messages.Redeclaration, 'Label', expr.name); + } + + state.labelSet[key] = true; + labeledBody = parseStatement(); + delete state.labelSet[key]; + return node.finishLabeledStatement(expr, labeledBody); + } + + consumeSemicolon(); + + return node.finishExpressionStatement(expr); + } + + // 13 Function Definition + + function parseFunctionSourceElements() { + var statement, body = [], token, directive, firstRestricted, + oldLabelSet, oldInIteration, oldInSwitch, oldInFunctionBody, oldParenthesisCount, + node = new Node(); + + expect('{'); + + while (startIndex < length) { + if (lookahead.type !== Token.StringLiteral) { + break; + } + token = lookahead; + + statement = parseStatementListItem(); + body.push(statement); + if (statement.expression.type !== Syntax.Literal) { + // this is not directive + break; + } + directive = source.slice(token.start + 1, token.end - 1); + if (directive === 'use strict') { + strict = true; + if (firstRestricted) { + tolerateUnexpectedToken(firstRestricted, Messages.StrictOctalLiteral); + } + } else { + if (!firstRestricted && token.octal) { + firstRestricted = token; + } + } + } + + oldLabelSet = state.labelSet; + oldInIteration = state.inIteration; + oldInSwitch = state.inSwitch; + oldInFunctionBody = state.inFunctionBody; + oldParenthesisCount = state.parenthesizedCount; + + state.labelSet = {}; + state.inIteration = false; + state.inSwitch = false; + state.inFunctionBody = true; + state.parenthesizedCount = 0; + + while (startIndex < length) { + if (match('}')) { + break; + } + body.push(parseStatementListItem()); + } + + expect('}'); + + state.labelSet = oldLabelSet; + state.inIteration = oldInIteration; + state.inSwitch = oldInSwitch; + state.inFunctionBody = oldInFunctionBody; + state.parenthesizedCount = oldParenthesisCount; + + return node.finishBlockStatement(body); + } + + function validateParam(options, param, name) { + var key = '$' + name; + if (strict) { + if (isRestrictedWord(name)) { + options.stricted = param; + options.message = Messages.StrictParamName; + } + if (Object.prototype.hasOwnProperty.call(options.paramSet, key)) { + options.stricted = param; + options.message = Messages.StrictParamDupe; + } + } else if (!options.firstRestricted) { + if (isRestrictedWord(name)) { + options.firstRestricted = param; + options.message = Messages.StrictParamName; + } else if (isStrictModeReservedWord(name)) { + options.firstRestricted = param; + options.message = Messages.StrictReservedWord; + } else if (Object.prototype.hasOwnProperty.call(options.paramSet, key)) { + options.firstRestricted = param; + options.message = Messages.StrictParamDupe; + } + } + options.paramSet[key] = true; + } + + function parseParam(options) { + var token, param, def; + + token = lookahead; + if (token.value === '...') { + param = parseRestElement(); + validateParam(options, param.argument, param.argument.name); + options.params.push(param); + options.defaults.push(null); + return false; + } + + param = parsePatternWithDefault(); + validateParam(options, token, token.value); + + if (param.type === Syntax.AssignmentPattern) { + def = param.right; + param = param.left; + ++options.defaultCount; + } + + options.params.push(param); + options.defaults.push(def); + + return !match(')'); + } + + function parseParams(firstRestricted) { + var options; + + options = { + params: [], + defaultCount: 0, + defaults: [], + firstRestricted: firstRestricted + }; + + expect('('); + + if (!match(')')) { + options.paramSet = {}; + while (startIndex < length) { + if (!parseParam(options)) { + break; + } + expect(','); + } + } + + expect(')'); + + if (options.defaultCount === 0) { + options.defaults = []; + } + + return { + params: options.params, + defaults: options.defaults, + stricted: options.stricted, + firstRestricted: options.firstRestricted, + message: options.message + }; + } + + function parseFunctionDeclaration(node, identifierIsOptional) { + var id = null, params = [], defaults = [], body, token, stricted, tmp, firstRestricted, message, previousStrict; + + expectKeyword('function'); + if (!identifierIsOptional || !match('(')) { + token = lookahead; + id = parseVariableIdentifier(); + if (strict) { + if (isRestrictedWord(token.value)) { + tolerateUnexpectedToken(token, Messages.StrictFunctionName); + } + } else { + if (isRestrictedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictFunctionName; + } else if (isStrictModeReservedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictReservedWord; + } + } + } + + tmp = parseParams(firstRestricted); + params = tmp.params; + defaults = tmp.defaults; + stricted = tmp.stricted; + firstRestricted = tmp.firstRestricted; + if (tmp.message) { + message = tmp.message; + } + + previousStrict = strict; + body = parseFunctionSourceElements(); + if (strict && firstRestricted) { + throwUnexpectedToken(firstRestricted, message); + } + if (strict && stricted) { + tolerateUnexpectedToken(stricted, message); + } + strict = previousStrict; + + return node.finishFunctionDeclaration(id, params, defaults, body); + } + + function parseFunctionExpression() { + var token, id = null, stricted, firstRestricted, message, tmp, + params = [], defaults = [], body, previousStrict, node = new Node(); + + expectKeyword('function'); + + if (!match('(')) { + token = lookahead; + id = parseVariableIdentifier(); + if (strict) { + if (isRestrictedWord(token.value)) { + tolerateUnexpectedToken(token, Messages.StrictFunctionName); + } + } else { + if (isRestrictedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictFunctionName; + } else if (isStrictModeReservedWord(token.value)) { + firstRestricted = token; + message = Messages.StrictReservedWord; + } + } + } + + tmp = parseParams(firstRestricted); + params = tmp.params; + defaults = tmp.defaults; + stricted = tmp.stricted; + firstRestricted = tmp.firstRestricted; + if (tmp.message) { + message = tmp.message; + } + + previousStrict = strict; + body = parseFunctionSourceElements(); + if (strict && firstRestricted) { + throwUnexpectedToken(firstRestricted, message); + } + if (strict && stricted) { + tolerateUnexpectedToken(stricted, message); + } + strict = previousStrict; + + return node.finishFunctionExpression(id, params, defaults, body); + } + + + function parseClassBody() { + var classBody, token, isStatic, hasConstructor = false, body, method, computed, key; + + classBody = new Node(); + + expect('{'); + body = []; + while (!match('}')) { + if (match(';')) { + lex(); + } else { + method = new Node(); + token = lookahead; + isStatic = false; + computed = match('['); + key = parseObjectPropertyKey(); + if (key.name === 'static' && lookaheadPropertyName()) { + token = lookahead; + isStatic = true; + computed = match('['); + key = parseObjectPropertyKey(); + } + method = tryParseMethodDefinition(token, key, computed, method); + if (method) { + method['static'] = isStatic; + if (method.kind === 'init') { + method.kind = 'method'; + } + if (!isStatic) { + if (!method.computed && (method.key.name || method.key.value.toString()) === 'constructor') { + if (method.kind !== 'method' || !method.method || method.value.generator) { + throwUnexpectedToken(token, Messages.ConstructorSpecialMethod); + } + if (hasConstructor) { + throwUnexpectedToken(token, Messages.DuplicateConstructor); + } else { + hasConstructor = true; + } + method.kind = 'constructor'; + } + } else { + if (!method.computed && (method.key.name || method.key.value.toString()) === 'prototype') { + throwUnexpectedToken(token, Messages.StaticPrototype); + } + } + method.type = Syntax.MethodDefinition; + delete method.method; + delete method.shorthand; + body.push(method); + } else { + throwUnexpectedToken(lookahead); + } + } + } + lex(); + return classBody.finishClassBody(body); + } + + function parseClassDeclaration(identifierIsOptional) { + var id = null, superClass = null, classNode = new Node(), classBody, previousStrict = strict; + strict = true; + + expectKeyword('class'); + + if (!identifierIsOptional || lookahead.type === Token.Identifier) { + id = parseVariableIdentifier(); + } + + if (matchKeyword('extends')) { + lex(); + superClass = isolateCoverGrammar(parseLeftHandSideExpressionAllowCall); + } + classBody = parseClassBody(); + strict = previousStrict; + + return classNode.finishClassDeclaration(id, superClass, classBody); + } + + function parseClassExpression() { + var id = null, superClass = null, classNode = new Node(), classBody, previousStrict = strict; + strict = true; + + expectKeyword('class'); + + if (lookahead.type === Token.Identifier) { + id = parseVariableIdentifier(); + } + + if (matchKeyword('extends')) { + lex(); + superClass = isolateCoverGrammar(parseLeftHandSideExpressionAllowCall); + } + classBody = parseClassBody(); + strict = previousStrict; + + return classNode.finishClassExpression(id, superClass, classBody); + } + + // Modules grammar from: + // people.mozilla.org/~jorendorff/es6-draft.html + + function parseModuleSpecifier() { + var node = new Node(); + + if (lookahead.type !== Token.StringLiteral) { + throwError(Messages.InvalidModuleSpecifier); + } + return node.finishLiteral(lex()); + } + + function parseExportSpecifier() { + var exported, local, node = new Node(), def; + if (matchKeyword('default')) { + // export {default} from 'something'; + def = new Node(); + lex(); + local = def.finishIdentifier('default'); + } else { + local = parseVariableIdentifier(); + } + if (matchContextualKeyword('as')) { + lex(); + exported = parseNonComputedProperty(); + } + return node.finishExportSpecifier(local, exported); + } + + function parseExportNamedDeclaration(node) { + var declaration = null, + isExportFromIdentifier, + src = null, specifiers = []; + + // non-default export + if (lookahead.type === Token.Keyword) { + // covers: + // export var f = 1; + switch (lookahead.value) { + case 'let': + case 'const': + case 'var': + case 'class': + case 'function': + declaration = parseStatementListItem(); + return node.finishExportNamedDeclaration(declaration, specifiers, null); + } + } + + expect('{'); + if (!match('}')) { + do { + isExportFromIdentifier = isExportFromIdentifier || matchKeyword('default'); + specifiers.push(parseExportSpecifier()); + } while (match(',') && lex()); + } + expect('}'); + + if (matchContextualKeyword('from')) { + // covering: + // export {default} from 'foo'; + // export {foo} from 'foo'; + lex(); + src = parseModuleSpecifier(); + consumeSemicolon(); + } else if (isExportFromIdentifier) { + // covering: + // export {default}; // missing fromClause + throwError(lookahead.value ? + Messages.UnexpectedToken : Messages.MissingFromClause, lookahead.value); + } else { + // cover + // export {foo}; + consumeSemicolon(); + } + return node.finishExportNamedDeclaration(declaration, specifiers, src); + } + + function parseExportDefaultDeclaration(node) { + var declaration = null, + expression = null; + + // covers: + // export default ... + expectKeyword('default'); + + if (matchKeyword('function')) { + // covers: + // export default function foo () {} + // export default function () {} + declaration = parseFunctionDeclaration(new Node(), true); + return node.finishExportDefaultDeclaration(declaration); + } + if (matchKeyword('class')) { + declaration = parseClassDeclaration(true); + return node.finishExportDefaultDeclaration(declaration); + } + + if (matchContextualKeyword('from')) { + throwError(Messages.UnexpectedToken, lookahead.value); + } + + // covers: + // export default {}; + // export default []; + // export default (1 + 2); + if (match('{')) { + expression = parseObjectInitialiser(); + } else if (match('[')) { + expression = parseArrayInitialiser(); + } else { + expression = parseAssignmentExpression(); + } + consumeSemicolon(); + return node.finishExportDefaultDeclaration(expression); + } + + function parseExportAllDeclaration(node) { + var src; + + // covers: + // export * from 'foo'; + expect('*'); + if (!matchContextualKeyword('from')) { + throwError(lookahead.value ? + Messages.UnexpectedToken : Messages.MissingFromClause, lookahead.value); + } + lex(); + src = parseModuleSpecifier(); + consumeSemicolon(); + + return node.finishExportAllDeclaration(src); + } + + function parseExportDeclaration() { + var node = new Node(); + if (state.inFunctionBody) { + throwError(Messages.IllegalExportDeclaration); + } + + expectKeyword('export'); + + if (matchKeyword('default')) { + return parseExportDefaultDeclaration(node); + } + if (match('*')) { + return parseExportAllDeclaration(node); + } + return parseExportNamedDeclaration(node); + } + + function parseImportSpecifier() { + // import {} ...; + var local, imported, node = new Node(); + + imported = parseNonComputedProperty(); + if (matchContextualKeyword('as')) { + lex(); + local = parseVariableIdentifier(); + } + + return node.finishImportSpecifier(local, imported); + } + + function parseNamedImports() { + var specifiers = []; + // {foo, bar as bas} + expect('{'); + if (!match('}')) { + do { + specifiers.push(parseImportSpecifier()); + } while (match(',') && lex()); + } + expect('}'); + return specifiers; + } + + function parseImportDefaultSpecifier() { + // import ...; + var local, node = new Node(); + + local = parseNonComputedProperty(); + + return node.finishImportDefaultSpecifier(local); + } + + function parseImportNamespaceSpecifier() { + // import <* as foo> ...; + var local, node = new Node(); + + expect('*'); + if (!matchContextualKeyword('as')) { + throwError(Messages.NoAsAfterImportNamespace); + } + lex(); + local = parseNonComputedProperty(); + + return node.finishImportNamespaceSpecifier(local); + } + + function parseImportDeclaration() { + var specifiers, src, node = new Node(); + + if (state.inFunctionBody) { + throwError(Messages.IllegalImportDeclaration); + } + + expectKeyword('import'); + specifiers = []; + + if (lookahead.type === Token.StringLiteral) { + // covers: + // import 'foo'; + src = parseModuleSpecifier(); + consumeSemicolon(); + return node.finishImportDeclaration(specifiers, src); + } + + if (!matchKeyword('default') && isIdentifierName(lookahead)) { + // covers: + // import foo + // import foo, ... + specifiers.push(parseImportDefaultSpecifier()); + if (match(',')) { + lex(); + } + } + if (match('*')) { + // covers: + // import foo, * as foo + // import * as foo + specifiers.push(parseImportNamespaceSpecifier()); + } else if (match('{')) { + // covers: + // import foo, {bar} + // import {bar} + specifiers = specifiers.concat(parseNamedImports()); + } + + if (!matchContextualKeyword('from')) { + throwError(lookahead.value ? + Messages.UnexpectedToken : Messages.MissingFromClause, lookahead.value); + } + lex(); + src = parseModuleSpecifier(); + consumeSemicolon(); + + return node.finishImportDeclaration(specifiers, src); + } + + // 14 Program + + function parseScriptBody() { + var statement, body = [], token, directive, firstRestricted; + + while (startIndex < length) { + token = lookahead; + if (token.type !== Token.StringLiteral) { + break; + } + + statement = parseStatementListItem(); + body.push(statement); + if (statement.expression.type !== Syntax.Literal) { + // this is not directive + break; + } + directive = source.slice(token.start + 1, token.end - 1); + if (directive === 'use strict') { + strict = true; + if (firstRestricted) { + tolerateUnexpectedToken(firstRestricted, Messages.StrictOctalLiteral); + } + } else { + if (!firstRestricted && token.octal) { + firstRestricted = token; + } + } + } + + while (startIndex < length) { + statement = parseStatementListItem(); + /* istanbul ignore if */ + if (typeof statement === 'undefined') { + break; + } + body.push(statement); + } + return body; + } + + function parseProgram() { + var body, node; + + peek(); + node = new Node(); + + body = parseScriptBody(); + return node.finishProgram(body); + } + + function filterTokenLocation() { + var i, entry, token, tokens = []; + + for (i = 0; i < extra.tokens.length; ++i) { + entry = extra.tokens[i]; + token = { + type: entry.type, + value: entry.value + }; + if (entry.regex) { + token.regex = { + pattern: entry.regex.pattern, + flags: entry.regex.flags + }; + } + if (extra.range) { + token.range = entry.range; + } + if (extra.loc) { + token.loc = entry.loc; + } + tokens.push(token); + } + + extra.tokens = tokens; + } + + function tokenize(code, options) { + var toString, + tokens; + + toString = String; + if (typeof code !== 'string' && !(code instanceof String)) { + code = toString(code); + } + + source = code; + index = 0; + lineNumber = (source.length > 0) ? 1 : 0; + lineStart = 0; + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + length = source.length; + lookahead = null; + state = { + allowIn: true, + labelSet: {}, + inFunctionBody: false, + inIteration: false, + inSwitch: false, + lastCommentStart: -1, + curlyStack: [] + }; + + extra = {}; + + // Options matching. + options = options || {}; + + // Of course we collect tokens here. + options.tokens = true; + extra.tokens = []; + extra.tokenize = true; + // The following two fields are necessary to compute the Regex tokens. + extra.openParenToken = -1; + extra.openCurlyToken = -1; + + extra.range = (typeof options.range === 'boolean') && options.range; + extra.loc = (typeof options.loc === 'boolean') && options.loc; + + if (typeof options.comment === 'boolean' && options.comment) { + extra.comments = []; + } + if (typeof options.tolerant === 'boolean' && options.tolerant) { + extra.errors = []; + } + + try { + peek(); + if (lookahead.type === Token.EOF) { + return extra.tokens; + } + + lex(); + while (lookahead.type !== Token.EOF) { + try { + lex(); + } catch (lexError) { + if (extra.errors) { + recordError(lexError); + // We have to break on the first error + // to avoid infinite loops. + break; + } else { + throw lexError; + } + } + } + + filterTokenLocation(); + tokens = extra.tokens; + if (typeof extra.comments !== 'undefined') { + tokens.comments = extra.comments; + } + if (typeof extra.errors !== 'undefined') { + tokens.errors = extra.errors; + } + } catch (e) { + throw e; + } finally { + extra = {}; + } + return tokens; + } + + function parse(code, options) { + var program, toString; + + toString = String; + if (typeof code !== 'string' && !(code instanceof String)) { + code = toString(code); + } + + source = code; + index = 0; + lineNumber = (source.length > 0) ? 1 : 0; + lineStart = 0; + startIndex = index; + startLineNumber = lineNumber; + startLineStart = lineStart; + length = source.length; + lookahead = null; + state = { + allowIn: true, + labelSet: {}, + inFunctionBody: false, + inIteration: false, + inSwitch: false, + lastCommentStart: -1, + curlyStack: [] + }; + sourceType = 'script'; + strict = false; + + extra = {}; + if (typeof options !== 'undefined') { + extra.range = (typeof options.range === 'boolean') && options.range; + extra.loc = (typeof options.loc === 'boolean') && options.loc; + extra.attachComment = (typeof options.attachComment === 'boolean') && options.attachComment; + + if (extra.loc && options.source !== null && options.source !== undefined) { + extra.source = toString(options.source); + } + + if (typeof options.tokens === 'boolean' && options.tokens) { + extra.tokens = []; + } + if (typeof options.comment === 'boolean' && options.comment) { + extra.comments = []; + } + if (typeof options.tolerant === 'boolean' && options.tolerant) { + extra.errors = []; + } + if (extra.attachComment) { + extra.range = true; + extra.comments = []; + extra.bottomRightStack = []; + extra.trailingComments = []; + extra.leadingComments = []; + } + if (options.sourceType === 'module') { + // very restrictive condition for now + sourceType = options.sourceType; + strict = true; + } + } + + try { + program = parseProgram(); + if (typeof extra.comments !== 'undefined') { + program.comments = extra.comments; + } + if (typeof extra.tokens !== 'undefined') { + filterTokenLocation(); + program.tokens = extra.tokens; + } + if (typeof extra.errors !== 'undefined') { + program.errors = extra.errors; + } + } catch (e) { + throw e; + } finally { + extra = {}; + } + + return program; + } + + // Sync with *.json manifests. + exports.version = '2.2.0'; + + exports.tokenize = tokenize; + + exports.parse = parse; + + // Deep copy. + /* istanbul ignore next */ + exports.Syntax = (function () { + var name, types = {}; + + if (typeof Object.create === 'function') { + types = Object.create(null); + } + + for (name in Syntax) { + if (Syntax.hasOwnProperty(name)) { + types[name] = Syntax[name]; + } + } + + if (typeof Object.freeze === 'function') { + Object.freeze(types); + } + + return types; + }()); + +})); +/* vim: set sw=4 ts=4 et tw=80 : */ diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/package.json new file mode 100644 index 0000000..91b7977 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/package.json @@ -0,0 +1,93 @@ +{ + "name": "esprima", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "homepage": "http://esprima.org", + "main": "esprima.js", + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js" + }, + "version": "2.2.0", + "files": [ + "bin", + "test/run.js", + "test/runner.js", + "test/test.js", + "esprima.js" + ], + "engines": { + "node": ">=0.4.0" + }, + "author": { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com" + }, + "maintainers": [ + { + "name": "ariya", + "email": "ariya.hidayat@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/jquery/esprima.git" + }, + "bugs": { + "url": "http://issues.esprima.org" + }, + "licenses": [ + { + "type": "BSD", + "url": "https://github.com/jquery/esprima/raw/master/LICENSE.BSD" + } + ], + "devDependencies": { + "eslint": "~0.19.0", + "jscs": "~1.12.0", + "istanbul": "~0.3.7", + "escomplex-js": "1.2.0", + "complexity-report": "~1.4.0", + "regenerate": "~0.6.2", + "unicode-7.0.0": "~0.1.5", + "json-diff": "~0.3.1", + "optimist": "~0.6.0" + }, + "keywords": [ + "ast", + "ecmascript", + "javascript", + "parser", + "syntax" + ], + "scripts": { + "generate-regex": "node tools/generate-identifier-regex.js", + "test": "node test/run.js && npm run lint && npm run coverage", + "lint": "npm run check-version && npm run eslint && npm run jscs && npm run complexity", + "check-version": "node tools/check-version.js", + "jscs": "jscs esprima.js", + "eslint": "node node_modules/eslint/bin/eslint.js esprima.js", + "complexity": "node tools/list-complexity.js && cr -s -l -w --maxcyc 17 esprima.js", + "coverage": "npm run analyze-coverage && npm run check-coverage", + "analyze-coverage": "istanbul cover test/runner.js", + "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", + "benchmark": "node test/benchmarks.js", + "benchmark-quick": "node test/benchmarks.js quick" + }, + "gitHead": "deef03ca006b03912d9f74b041f9239a9045181f", + "_id": "esprima@2.2.0", + "_shasum": "4292c1d68e4173d815fa2290dc7afc96d81fcd83", + "_from": "esprima@>=2.2.0 <2.3.0", + "_npmVersion": "2.5.1", + "_nodeVersion": "0.12.0", + "_npmUser": { + "name": "ariya", + "email": "ariya.hidayat@gmail.com" + }, + "dist": { + "shasum": "4292c1d68e4173d815fa2290dc7afc96d81fcd83", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-2.2.0.tgz" + }, + "directories": {}, + "_resolved": "https://registry.npmjs.org/esprima/-/esprima-2.2.0.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/test/run.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/test/run.js new file mode 100644 index 0000000..a5b919b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/test/run.js @@ -0,0 +1,66 @@ +/* + Copyright (C) 2012 Yusuke Suzuki + Copyright (C) 2012 Ariya Hidayat + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*jslint node:true */ + +(function () { + 'use strict'; + + var child = require('child_process'), + nodejs = '"' + process.execPath + '"', + ret = 0, + suites, + index; + + suites = [ + 'runner', + 'parselibs' + ]; + + function nextTest() { + var suite = suites[index]; + + if (index < suites.length) { + child.exec(nodejs + ' ./test/' + suite + '.js', function (err, stdout, stderr) { + if (stdout) { + process.stdout.write(suite + ': ' + stdout); + } + if (stderr) { + process.stderr.write(suite + ': ' + stderr); + } + if (err) { + ret = err.code; + } + index += 1; + nextTest(); + }); + } else { + process.exit(ret); + } + } + + index = 0; + nextTest(); +}()); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/test/runner.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/test/runner.js new file mode 100644 index 0000000..7f4a173 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/node_modules/esprima/test/runner.js @@ -0,0 +1,475 @@ +/* + Copyright (C) 2012 Ariya Hidayat + Copyright (C) 2012 Joost-Wim Boekesteijn + Copyright (C) 2012 Yusuke Suzuki + Copyright (C) 2012 Arpad Borsos + Copyright (C) 2011 Ariya Hidayat + Copyright (C) 2011 Yusuke Suzuki + Copyright (C) 2011 Arpad Borsos + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*jslint browser:true node:true */ +/*global esprima:true, testFixture:true */ + +var runTests; + +function NotMatchingError(expected, actual) { + 'use strict'; + Error.call(this, 'Expected '); + this.expected = expected; + this.actual = actual; +} +NotMatchingError.prototype = new Error(); + +function errorToObject(e) { + 'use strict'; + var msg = e.toString(); + + // Opera 9.64 produces an non-standard string in toString(). + if (msg.substr(0, 6) !== 'Error:') { + if (typeof e.message === 'string') { + msg = 'Error: ' + e.message; + } + } + + return { + index: e.index, + lineNumber: e.lineNumber, + column: e.column, + message: msg + }; +} + +function sortedObject(o) { + if (o === null) { + return o; + } + if (Array.isArray(o)) { + return o.map(sortedObject); + } + if (typeof o !== 'object') { + return o; + } + if (o instanceof RegExp) { + return o; + } + var keys = Object.keys(o); + var result = { + range: undefined, + loc: undefined + }; + keys.forEach(function (key) { + if (o.hasOwnProperty(key)){ + result[key] = sortedObject(o[key]); + } + }); + return result; +} + +function hasAttachedComment(syntax) { + var key; + for (key in syntax) { + if (key === 'leadingComments' || key === 'trailingComments') { + return true; + } + if (typeof syntax[key] === 'object' && syntax[key] !== null) { + if (hasAttachedComment(syntax[key])) { + return true; + } + } + } + return false; +} + +function testParse(esprima, code, syntax) { + 'use strict'; + var expected, tree, actual, options, StringObject, i, len; + + // alias, so that JSLint does not complain. + StringObject = String; + + options = { + comment: (typeof syntax.comments !== 'undefined'), + range: true, + loc: true, + tokens: (typeof syntax.tokens !== 'undefined'), + raw: true, + tolerant: (typeof syntax.errors !== 'undefined'), + source: null, + sourceType: syntax.sourceType + }; + + if (options.comment) { + options.attachComment = hasAttachedComment(syntax); + } + + if (typeof syntax.tokens !== 'undefined') { + if (syntax.tokens.length > 0) { + options.range = (typeof syntax.tokens[0].range !== 'undefined'); + options.loc = (typeof syntax.tokens[0].loc !== 'undefined'); + } + } + + if (typeof syntax.comments !== 'undefined') { + if (syntax.comments.length > 0) { + options.range = (typeof syntax.comments[0].range !== 'undefined'); + options.loc = (typeof syntax.comments[0].loc !== 'undefined'); + } + } + + if (options.loc) { + options.source = syntax.loc.source; + } + + syntax = sortedObject(syntax); + expected = JSON.stringify(syntax, null, 4); + try { + // Some variations of the options. + tree = esprima.parse(code, { tolerant: options.tolerant, sourceType: options.sourceType }); + tree = esprima.parse(code, { tolerant: options.tolerant, sourceType: options.sourceType, range: true }); + tree = esprima.parse(code, { tolerant: options.tolerant, sourceType: options.sourceType, loc: true }); + + tree = esprima.parse(code, options); + + if (options.tolerant) { + for (i = 0, len = tree.errors.length; i < len; i += 1) { + tree.errors[i] = errorToObject(tree.errors[i]); + } + } + tree = sortedObject(tree); + actual = JSON.stringify(tree, null, 4); + + // Only to ensure that there is no error when using string object. + esprima.parse(new StringObject(code), options); + + } catch (e) { + throw new NotMatchingError(expected, e.toString()); + } + if (expected !== actual) { + throw new NotMatchingError(expected, actual); + } + + function filter(key, value) { + return (key === 'loc' || key === 'range') ? undefined : value; + } + + if (options.tolerant) { + return; + } + + + // Check again without any location info. + options.range = false; + options.loc = false; + syntax = sortedObject(syntax); + expected = JSON.stringify(syntax, filter, 4); + try { + tree = esprima.parse(code, options); + + if (options.tolerant) { + for (i = 0, len = tree.errors.length; i < len; i += 1) { + tree.errors[i] = errorToObject(tree.errors[i]); + } + } + tree = sortedObject(tree); + actual = JSON.stringify(tree, filter, 4); + } catch (e) { + throw new NotMatchingError(expected, e.toString()); + } + if (expected !== actual) { + throw new NotMatchingError(expected, actual); + } +} + +function testTokenize(esprima, code, tokens) { + 'use strict'; + var options, expected, actual, tree; + + options = { + comment: true, + tolerant: true, + loc: true, + range: true + }; + + expected = JSON.stringify(tokens, null, 4); + + try { + tree = esprima.tokenize(code, options); + actual = JSON.stringify(tree, null, 4); + } catch (e) { + throw new NotMatchingError(expected, e.toString()); + } + if (expected !== actual) { + throw new NotMatchingError(expected, actual); + } +} + + +function testModule(esprima, code, exception) { + 'use strict'; + var i, options, expected, actual, err, handleInvalidRegexFlag, tokenize; + + // Different parsing options should give the same error. + options = [ + { sourceType: 'module' }, + { sourceType: 'module', comment: true }, + { sourceType: 'module', raw: true }, + { sourceType: 'module', raw: true, comment: true } + ]; + + if (!exception.message) { + exception.message = 'Error: Line 1: ' + exception.description; + } + exception.description = exception.message.replace(/Error: Line [0-9]+: /, ''); + + expected = JSON.stringify(exception); + + for (i = 0; i < options.length; i += 1) { + + try { + esprima.parse(code, options[i]); + } catch (e) { + err = errorToObject(e); + err.description = e.description; + actual = JSON.stringify(err); + } + + if (expected !== actual) { + + // Compensate for old V8 which does not handle invalid flag. + if (exception.message.indexOf('Invalid regular expression') > 0) { + if (typeof actual === 'undefined' && !handleInvalidRegexFlag) { + return; + } + } + + throw new NotMatchingError(expected, actual); + } + + } +} + +function testError(esprima, code, exception) { + 'use strict'; + var i, options, expected, actual, err, handleInvalidRegexFlag, tokenize; + + // Different parsing options should give the same error. + options = [ + {}, + { comment: true }, + { raw: true }, + { raw: true, comment: true } + ]; + + // If handleInvalidRegexFlag is true, an invalid flag in a regular expression + // will throw an exception. In some old version of V8, this is not the case + // and hence handleInvalidRegexFlag is false. + handleInvalidRegexFlag = false; + try { + 'test'.match(new RegExp('[a-z]', 'x')); + } catch (e) { + handleInvalidRegexFlag = true; + } + + exception.description = exception.message.replace(/Error: Line [0-9]+: /, ''); + + if (exception.tokenize) { + tokenize = true; + exception.tokenize = undefined; + } + expected = JSON.stringify(exception); + + for (i = 0; i < options.length; i += 1) { + + try { + if (tokenize) { + esprima.tokenize(code, options[i]); + } else { + esprima.parse(code, options[i]); + } + } catch (e) { + err = errorToObject(e); + err.description = e.description; + actual = JSON.stringify(err); + } + + if (expected !== actual) { + + // Compensate for old V8 which does not handle invalid flag. + if (exception.message.indexOf('Invalid regular expression') > 0) { + if (typeof actual === 'undefined' && !handleInvalidRegexFlag) { + return; + } + } + + throw new NotMatchingError(expected, actual); + } + + } +} + +function testAPI(esprima, code, expected) { + var result; + // API test. + expected = JSON.stringify(expected, null, 4); + try { + result = eval(code); + result = JSON.stringify(result, null, 4); + } catch (e) { + throw new NotMatchingError(expected, e.toString()); + } + if (expected !== result) { + throw new NotMatchingError(expected, result); + } +} + +function generateTestCase(esprima, testCase) { + var tree, fileName = testCase.key + ".tree.json"; + try { + tree = esprima.parse(testCase.case, {loc: true, range: true}); + tree = JSON.stringify(tree, null, 4); + } catch (e) { + if (typeof e.index === 'undefined') { + console.error("Failed to generate test result."); + throw e; + } + tree = errorToObject(e); + tree.description = e.description; + tree = JSON.stringify(tree); + fileName = testCase.key + ".failure.json"; + } + require('fs').writeFileSync(fileName, tree); + console.error("Done."); +} + +if (typeof window === 'undefined') { + (function () { + 'use strict'; + + var esprima = require('../esprima'), + vm = require('vm'), + fs = require('fs'), + diff = require('json-diff').diffString, + total = 0, + result, + failures = [], + cases = {}, + context = {source: '', result: null}, + tick = new Date(), + expected, + testCase, + header; + + function enumerateFixtures(root) { + var dirs = fs.readdirSync(root), key, kind, + kinds = ['case', 'source', 'module', 'run', 'tree', 'tokens', 'failure', 'result'], + suffices = ['js', 'js', 'json', 'js', 'json', 'json', 'json', 'json']; + + dirs.forEach(function (item) { + var i; + if (fs.statSync(root + '/' + item).isDirectory()) { + enumerateFixtures(root + '/' + item); + } else { + kind = 'case'; + key = item.slice(0, -3); + for (i = 1; i < kinds.length; i++) { + var suffix = '.' + kinds[i] + '.' + suffices[i]; + if (item.slice(-suffix.length) === suffix) { + key = item.slice(0, -suffix.length); + kind = kinds[i]; + } + } + key = root + '/' + key; + if (!cases[key]) { + total++; + cases[key] = { key: key }; + } + cases[key][kind] = fs.readFileSync(root + '/' + item, 'utf-8'); + } + }); + } + + enumerateFixtures(__dirname + '/fixtures'); + + for (var key in cases) { + if (cases.hasOwnProperty(key)) { + testCase = cases[key]; + + if (testCase.hasOwnProperty('source')) { + testCase.case = eval(testCase.source + ';source'); + } + + try { + if (testCase.hasOwnProperty('module')) { + testModule(esprima, testCase.case, JSON.parse(testCase.module)); + } else if (testCase.hasOwnProperty('tree')) { + testParse(esprima, testCase.case, JSON.parse(testCase.tree)); + } else if (testCase.hasOwnProperty('tokens')) { + testTokenize(esprima, testCase.case, JSON.parse(testCase.tokens)); + } else if (testCase.hasOwnProperty('failure')) { + testError(esprima, testCase.case, JSON.parse(testCase.failure)); + } else if (testCase.hasOwnProperty('result')) { + testAPI(esprima, testCase.run, JSON.parse(testCase.result)); + } else { + console.error('Incomplete test case:' + testCase.key + '. Generating test result...'); + generateTestCase(esprima, testCase); + } + } catch (e) { + if (!e.expected) { + throw e; + } + e.source = testCase.case || testCase.key; + failures.push(e); + } + } + } + + tick = (new Date()) - tick; + + header = total + ' tests. ' + failures.length + ' failures. ' + + tick + ' ms'; + if (failures.length) { + console.error(header); + failures.forEach(function (failure) { + try { + var expectedObject = JSON.parse(failure.expected); + var actualObject = JSON.parse(failure.actual); + + console.error(failure.source + ': Expected\n ' + + failure.expected.split('\n').join('\n ') + + '\nto match\n ' + failure.actual + '\nDiff:\n' + + diff(expectedObject, actualObject)); + } catch (ex) { + console.error(failure.source + ': Expected\n ' + + failure.expected.split('\n').join('\n ') + + '\nto match\n ' + failure.actual); + } + }); + } else { + console.log(header); + } + process.exit(failures.length === 0 ? 0 : 1); + + }()); +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/package.json new file mode 100644 index 0000000..3145b26 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/js-yaml/package.json @@ -0,0 +1,84 @@ +{ + "name": "js-yaml", + "version": "3.3.1", + "description": "YAML 1.2 parser and serializer", + "keywords": [ + "yaml", + "parser", + "serializer", + "pyyaml" + ], + "homepage": "https://github.com/nodeca/js-yaml", + "author": { + "name": "Dervus Grim", + "email": "dervus.grim@gmail.com" + }, + "contributors": [ + { + "name": "Aleksey V Zapparov", + "email": "ixti@member.fsf.org", + "url": "http://www.ixti.net/" + }, + { + "name": "Vitaly Puzrin", + "email": "vitaly@rcdesign.ru", + "url": "https://github.com/puzrin" + }, + { + "name": "Martin Grenfell", + "email": "martin.grenfell@gmail.com", + "url": "http://got-ravings.blogspot.com" + } + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "git://github.com/nodeca/js-yaml.git" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + }, + "dependencies": { + "argparse": "~1.0.2", + "esprima": "~2.2.0" + }, + "devDependencies": { + "ansi": "*", + "benchmark": "*", + "eslint": "0.18.0", + "eslint-plugin-nodeca": "^1.0.3", + "istanbul": "*", + "mocha": "*" + }, + "browser": { + "buffer": false + }, + "scripts": { + "test": "make test" + }, + "gitHead": "c50f9936bd1e99d64a54d30400e377f4fda401c5", + "bugs": { + "url": "https://github.com/nodeca/js-yaml/issues" + }, + "_id": "js-yaml@3.3.1", + "_shasum": "ca1acd3423ec275d12140a7bab51db015ba0b3c0", + "_from": "js-yaml@>=3.3.1 <3.4.0", + "_npmVersion": "1.4.28", + "_npmUser": { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + }, + "maintainers": [ + { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + } + ], + "dist": { + "shasum": "ca1acd3423ec275d12140a7bab51db015ba0b3c0", + "tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-3.3.1.tgz" + }, + "directories": {}, + "_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.3.1.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/.travis.yml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/.travis.yml new file mode 100644 index 0000000..74c57bf --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/.travis.yml @@ -0,0 +1,8 @@ +language: node_js +node_js: + - "0.8" + - "0.10" + - "0.12" + - "iojs" +before_install: + - npm install -g npm@~1.4.6 diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/LICENSE b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/LICENSE new file mode 100644 index 0000000..432d1ae --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/LICENSE @@ -0,0 +1,21 @@ +Copyright 2010 James Halliday (mail@substack.net) + +This project is free software released under the MIT/X11 license: + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/bin/cmd.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/bin/cmd.js new file mode 100644 index 0000000..d95de15 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/bin/cmd.js @@ -0,0 +1,33 @@ +#!/usr/bin/env node + +var mkdirp = require('../'); +var minimist = require('minimist'); +var fs = require('fs'); + +var argv = minimist(process.argv.slice(2), { + alias: { m: 'mode', h: 'help' }, + string: [ 'mode' ] +}); +if (argv.help) { + fs.createReadStream(__dirname + '/usage.txt').pipe(process.stdout); + return; +} + +var paths = argv._.slice(); +var mode = argv.mode ? parseInt(argv.mode, 8) : undefined; + +(function next () { + if (paths.length === 0) return; + var p = paths.shift(); + + if (mode === undefined) mkdirp(p, cb) + else mkdirp(p, mode, cb) + + function cb (err) { + if (err) { + console.error(err.message); + process.exit(1); + } + else next(); + } +})(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/bin/usage.txt b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/bin/usage.txt new file mode 100644 index 0000000..f952aa2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/bin/usage.txt @@ -0,0 +1,12 @@ +usage: mkdirp [DIR1,DIR2..] {OPTIONS} + + Create each supplied directory including any necessary parent directories that + don't yet exist. + + If the directory already exists, do nothing. + +OPTIONS are: + + -m, --mode If a directory needs to be created, set the mode as an octal + permission string. + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/examples/pow.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/examples/pow.js new file mode 100644 index 0000000..e692421 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/examples/pow.js @@ -0,0 +1,6 @@ +var mkdirp = require('mkdirp'); + +mkdirp('/tmp/foo/bar/baz', function (err) { + if (err) console.error(err) + else console.log('pow!') +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/index.js new file mode 100644 index 0000000..6ce241b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/index.js @@ -0,0 +1,98 @@ +var path = require('path'); +var fs = require('fs'); +var _0777 = parseInt('0777', 8); + +module.exports = mkdirP.mkdirp = mkdirP.mkdirP = mkdirP; + +function mkdirP (p, opts, f, made) { + if (typeof opts === 'function') { + f = opts; + opts = {}; + } + else if (!opts || typeof opts !== 'object') { + opts = { mode: opts }; + } + + var mode = opts.mode; + var xfs = opts.fs || fs; + + if (mode === undefined) { + mode = _0777 & (~process.umask()); + } + if (!made) made = null; + + var cb = f || function () {}; + p = path.resolve(p); + + xfs.mkdir(p, mode, function (er) { + if (!er) { + made = made || p; + return cb(null, made); + } + switch (er.code) { + case 'ENOENT': + mkdirP(path.dirname(p), opts, function (er, made) { + if (er) cb(er, made); + else mkdirP(p, opts, cb, made); + }); + break; + + // In the case of any other error, just see if there's a dir + // there already. If so, then hooray! If not, then something + // is borked. + default: + xfs.stat(p, function (er2, stat) { + // if the stat fails, then that's super weird. + // let the original error be the failure reason. + if (er2 || !stat.isDirectory()) cb(er, made) + else cb(null, made); + }); + break; + } + }); +} + +mkdirP.sync = function sync (p, opts, made) { + if (!opts || typeof opts !== 'object') { + opts = { mode: opts }; + } + + var mode = opts.mode; + var xfs = opts.fs || fs; + + if (mode === undefined) { + mode = _0777 & (~process.umask()); + } + if (!made) made = null; + + p = path.resolve(p); + + try { + xfs.mkdirSync(p, mode); + made = made || p; + } + catch (err0) { + switch (err0.code) { + case 'ENOENT' : + made = sync(path.dirname(p), opts, made); + sync(p, opts, made); + break; + + // In the case of any other error, just see if there's a dir + // there already. If so, then hooray! If not, then something + // is borked. + default: + var stat; + try { + stat = xfs.statSync(p); + } + catch (err1) { + throw err0; + } + if (!stat.isDirectory()) throw err0; + break; + } + } + + return made; +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/.travis.yml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/.travis.yml new file mode 100644 index 0000000..cc4dba2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/.travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - "0.8" + - "0.10" diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/LICENSE b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/LICENSE new file mode 100644 index 0000000..ee27ba4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/LICENSE @@ -0,0 +1,18 @@ +This software is released under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/example/parse.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/example/parse.js new file mode 100644 index 0000000..abff3e8 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/example/parse.js @@ -0,0 +1,2 @@ +var argv = require('../')(process.argv.slice(2)); +console.dir(argv); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/index.js new file mode 100644 index 0000000..584f551 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/index.js @@ -0,0 +1,187 @@ +module.exports = function (args, opts) { + if (!opts) opts = {}; + + var flags = { bools : {}, strings : {} }; + + [].concat(opts['boolean']).filter(Boolean).forEach(function (key) { + flags.bools[key] = true; + }); + + [].concat(opts.string).filter(Boolean).forEach(function (key) { + flags.strings[key] = true; + }); + + var aliases = {}; + Object.keys(opts.alias || {}).forEach(function (key) { + aliases[key] = [].concat(opts.alias[key]); + aliases[key].forEach(function (x) { + aliases[x] = [key].concat(aliases[key].filter(function (y) { + return x !== y; + })); + }); + }); + + var defaults = opts['default'] || {}; + + var argv = { _ : [] }; + Object.keys(flags.bools).forEach(function (key) { + setArg(key, defaults[key] === undefined ? false : defaults[key]); + }); + + var notFlags = []; + + if (args.indexOf('--') !== -1) { + notFlags = args.slice(args.indexOf('--')+1); + args = args.slice(0, args.indexOf('--')); + } + + function setArg (key, val) { + var value = !flags.strings[key] && isNumber(val) + ? Number(val) : val + ; + setKey(argv, key.split('.'), value); + + (aliases[key] || []).forEach(function (x) { + setKey(argv, x.split('.'), value); + }); + } + + for (var i = 0; i < args.length; i++) { + var arg = args[i]; + + if (/^--.+=/.test(arg)) { + // Using [\s\S] instead of . because js doesn't support the + // 'dotall' regex modifier. See: + // http://stackoverflow.com/a/1068308/13216 + var m = arg.match(/^--([^=]+)=([\s\S]*)$/); + setArg(m[1], m[2]); + } + else if (/^--no-.+/.test(arg)) { + var key = arg.match(/^--no-(.+)/)[1]; + setArg(key, false); + } + else if (/^--.+/.test(arg)) { + var key = arg.match(/^--(.+)/)[1]; + var next = args[i + 1]; + if (next !== undefined && !/^-/.test(next) + && !flags.bools[key] + && (aliases[key] ? !flags.bools[aliases[key]] : true)) { + setArg(key, next); + i++; + } + else if (/^(true|false)$/.test(next)) { + setArg(key, next === 'true'); + i++; + } + else { + setArg(key, flags.strings[key] ? '' : true); + } + } + else if (/^-[^-]+/.test(arg)) { + var letters = arg.slice(1,-1).split(''); + + var broken = false; + for (var j = 0; j < letters.length; j++) { + var next = arg.slice(j+2); + + if (next === '-') { + setArg(letters[j], next) + continue; + } + + if (/[A-Za-z]/.test(letters[j]) + && /-?\d+(\.\d*)?(e-?\d+)?$/.test(next)) { + setArg(letters[j], next); + broken = true; + break; + } + + if (letters[j+1] && letters[j+1].match(/\W/)) { + setArg(letters[j], arg.slice(j+2)); + broken = true; + break; + } + else { + setArg(letters[j], flags.strings[letters[j]] ? '' : true); + } + } + + var key = arg.slice(-1)[0]; + if (!broken && key !== '-') { + if (args[i+1] && !/^(-|--)[^-]/.test(args[i+1]) + && !flags.bools[key] + && (aliases[key] ? !flags.bools[aliases[key]] : true)) { + setArg(key, args[i+1]); + i++; + } + else if (args[i+1] && /true|false/.test(args[i+1])) { + setArg(key, args[i+1] === 'true'); + i++; + } + else { + setArg(key, flags.strings[key] ? '' : true); + } + } + } + else { + argv._.push( + flags.strings['_'] || !isNumber(arg) ? arg : Number(arg) + ); + } + } + + Object.keys(defaults).forEach(function (key) { + if (!hasKey(argv, key.split('.'))) { + setKey(argv, key.split('.'), defaults[key]); + + (aliases[key] || []).forEach(function (x) { + setKey(argv, x.split('.'), defaults[key]); + }); + } + }); + + notFlags.forEach(function(key) { + argv._.push(key); + }); + + return argv; +}; + +function hasKey (obj, keys) { + var o = obj; + keys.slice(0,-1).forEach(function (key) { + o = (o[key] || {}); + }); + + var key = keys[keys.length - 1]; + return key in o; +} + +function setKey (obj, keys, value) { + var o = obj; + keys.slice(0,-1).forEach(function (key) { + if (o[key] === undefined) o[key] = {}; + o = o[key]; + }); + + var key = keys[keys.length - 1]; + if (o[key] === undefined || typeof o[key] === 'boolean') { + o[key] = value; + } + else if (Array.isArray(o[key])) { + o[key].push(value); + } + else { + o[key] = [ o[key], value ]; + } +} + +function isNumber (x) { + if (typeof x === 'number') return true; + if (/^0x[0-9a-f]+$/i.test(x)) return true; + return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x); +} + +function longest (xs) { + return Math.max.apply(null, xs.map(function (x) { return x.length })); +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/package.json new file mode 100644 index 0000000..09e9ec4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/package.json @@ -0,0 +1,67 @@ +{ + "name": "minimist", + "version": "0.0.8", + "description": "parse argument options", + "main": "index.js", + "devDependencies": { + "tape": "~1.0.4", + "tap": "~0.4.0" + }, + "scripts": { + "test": "tap test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/6..latest", + "ff/5", + "firefox/latest", + "chrome/10", + "chrome/latest", + "safari/5.1", + "safari/latest", + "opera/12" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/minimist.git" + }, + "homepage": "https://github.com/substack/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/substack/minimist/issues" + }, + "_id": "minimist@0.0.8", + "dist": { + "shasum": "857fcabfc3397d2625b8228262e86aa7a011b05d", + "tarball": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + }, + "_from": "minimist@0.0.8", + "_npmVersion": "1.4.3", + "_npmUser": { + "name": "substack", + "email": "mail@substack.net" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "directories": {}, + "_shasum": "857fcabfc3397d2625b8228262e86aa7a011b05d", + "_resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/readme.markdown b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/readme.markdown new file mode 100644 index 0000000..c256353 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/readme.markdown @@ -0,0 +1,73 @@ +# minimist + +parse argument options + +This module is the guts of optimist's argument parser without all the +fanciful decoration. + +[![browser support](https://ci.testling.com/substack/minimist.png)](http://ci.testling.com/substack/minimist) + +[![build status](https://secure.travis-ci.org/substack/minimist.png)](http://travis-ci.org/substack/minimist) + +# example + +``` js +var argv = require('minimist')(process.argv.slice(2)); +console.dir(argv); +``` + +``` +$ node example/parse.js -a beep -b boop +{ _: [], a: 'beep', b: 'boop' } +``` + +``` +$ node example/parse.js -x 3 -y 4 -n5 -abc --beep=boop foo bar baz +{ _: [ 'foo', 'bar', 'baz' ], + x: 3, + y: 4, + n: 5, + a: true, + b: true, + c: true, + beep: 'boop' } +``` + +# methods + +``` js +var parseArgs = require('minimist') +``` + +## var argv = parseArgs(args, opts={}) + +Return an argument object `argv` populated with the array arguments from `args`. + +`argv._` contains all the arguments that didn't have an option associated with +them. + +Numeric-looking arguments will be returned as numbers unless `opts.string` or +`opts.boolean` is set for that argument name. + +Any arguments after `'--'` will not be parsed and will end up in `argv._`. + +options can be: + +* `opts.string` - a string or array of strings argument names to always treat as +strings +* `opts.boolean` - a string or array of strings to always treat as booleans +* `opts.alias` - an object mapping string names to strings or arrays of string +argument names to use as aliases +* `opts.default` - an object mapping string argument names to default values + +# install + +With [npm](https://npmjs.org) do: + +``` +npm install minimist +``` + +# license + +MIT diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/dash.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/dash.js new file mode 100644 index 0000000..8b034b9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/dash.js @@ -0,0 +1,24 @@ +var parse = require('../'); +var test = require('tape'); + +test('-', function (t) { + t.plan(5); + t.deepEqual(parse([ '-n', '-' ]), { n: '-', _: [] }); + t.deepEqual(parse([ '-' ]), { _: [ '-' ] }); + t.deepEqual(parse([ '-f-' ]), { f: '-', _: [] }); + t.deepEqual( + parse([ '-b', '-' ], { boolean: 'b' }), + { b: true, _: [ '-' ] } + ); + t.deepEqual( + parse([ '-s', '-' ], { string: 's' }), + { s: '-', _: [] } + ); +}); + +test('-a -- b', function (t) { + t.plan(3); + t.deepEqual(parse([ '-a', '--', 'b' ]), { a: true, _: [ 'b' ] }); + t.deepEqual(parse([ '--a', '--', 'b' ]), { a: true, _: [ 'b' ] }); + t.deepEqual(parse([ '--a', '--', 'b' ]), { a: true, _: [ 'b' ] }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/default_bool.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/default_bool.js new file mode 100644 index 0000000..f0041ee --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/default_bool.js @@ -0,0 +1,20 @@ +var test = require('tape'); +var parse = require('../'); + +test('boolean default true', function (t) { + var argv = parse([], { + boolean: 'sometrue', + default: { sometrue: true } + }); + t.equal(argv.sometrue, true); + t.end(); +}); + +test('boolean default false', function (t) { + var argv = parse([], { + boolean: 'somefalse', + default: { somefalse: false } + }); + t.equal(argv.somefalse, false); + t.end(); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/dotted.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/dotted.js new file mode 100644 index 0000000..ef0ae34 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/dotted.js @@ -0,0 +1,16 @@ +var parse = require('../'); +var test = require('tape'); + +test('dotted alias', function (t) { + var argv = parse(['--a.b', '22'], {default: {'a.b': 11}, alias: {'a.b': 'aa.bb'}}); + t.equal(argv.a.b, 22); + t.equal(argv.aa.bb, 22); + t.end(); +}); + +test('dotted default', function (t) { + var argv = parse('', {default: {'a.b': 11}, alias: {'a.b': 'aa.bb'}}); + t.equal(argv.a.b, 11); + t.equal(argv.aa.bb, 11); + t.end(); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/long.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/long.js new file mode 100644 index 0000000..5d3a1e0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/long.js @@ -0,0 +1,31 @@ +var test = require('tape'); +var parse = require('../'); + +test('long opts', function (t) { + t.deepEqual( + parse([ '--bool' ]), + { bool : true, _ : [] }, + 'long boolean' + ); + t.deepEqual( + parse([ '--pow', 'xixxle' ]), + { pow : 'xixxle', _ : [] }, + 'long capture sp' + ); + t.deepEqual( + parse([ '--pow=xixxle' ]), + { pow : 'xixxle', _ : [] }, + 'long capture eq' + ); + t.deepEqual( + parse([ '--host', 'localhost', '--port', '555' ]), + { host : 'localhost', port : 555, _ : [] }, + 'long captures sp' + ); + t.deepEqual( + parse([ '--host=localhost', '--port=555' ]), + { host : 'localhost', port : 555, _ : [] }, + 'long captures eq' + ); + t.end(); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/parse.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/parse.js new file mode 100644 index 0000000..8a90646 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/parse.js @@ -0,0 +1,318 @@ +var parse = require('../'); +var test = require('tape'); + +test('parse args', function (t) { + t.deepEqual( + parse([ '--no-moo' ]), + { moo : false, _ : [] }, + 'no' + ); + t.deepEqual( + parse([ '-v', 'a', '-v', 'b', '-v', 'c' ]), + { v : ['a','b','c'], _ : [] }, + 'multi' + ); + t.end(); +}); + +test('comprehensive', function (t) { + t.deepEqual( + parse([ + '--name=meowmers', 'bare', '-cats', 'woo', + '-h', 'awesome', '--multi=quux', + '--key', 'value', + '-b', '--bool', '--no-meep', '--multi=baz', + '--', '--not-a-flag', 'eek' + ]), + { + c : true, + a : true, + t : true, + s : 'woo', + h : 'awesome', + b : true, + bool : true, + key : 'value', + multi : [ 'quux', 'baz' ], + meep : false, + name : 'meowmers', + _ : [ 'bare', '--not-a-flag', 'eek' ] + } + ); + t.end(); +}); + +test('nums', function (t) { + var argv = parse([ + '-x', '1234', + '-y', '5.67', + '-z', '1e7', + '-w', '10f', + '--hex', '0xdeadbeef', + '789' + ]); + t.deepEqual(argv, { + x : 1234, + y : 5.67, + z : 1e7, + w : '10f', + hex : 0xdeadbeef, + _ : [ 789 ] + }); + t.deepEqual(typeof argv.x, 'number'); + t.deepEqual(typeof argv.y, 'number'); + t.deepEqual(typeof argv.z, 'number'); + t.deepEqual(typeof argv.w, 'string'); + t.deepEqual(typeof argv.hex, 'number'); + t.deepEqual(typeof argv._[0], 'number'); + t.end(); +}); + +test('flag boolean', function (t) { + var argv = parse([ '-t', 'moo' ], { boolean: 't' }); + t.deepEqual(argv, { t : true, _ : [ 'moo' ] }); + t.deepEqual(typeof argv.t, 'boolean'); + t.end(); +}); + +test('flag boolean value', function (t) { + var argv = parse(['--verbose', 'false', 'moo', '-t', 'true'], { + boolean: [ 't', 'verbose' ], + default: { verbose: true } + }); + + t.deepEqual(argv, { + verbose: false, + t: true, + _: ['moo'] + }); + + t.deepEqual(typeof argv.verbose, 'boolean'); + t.deepEqual(typeof argv.t, 'boolean'); + t.end(); +}); + +test('flag boolean default false', function (t) { + var argv = parse(['moo'], { + boolean: ['t', 'verbose'], + default: { verbose: false, t: false } + }); + + t.deepEqual(argv, { + verbose: false, + t: false, + _: ['moo'] + }); + + t.deepEqual(typeof argv.verbose, 'boolean'); + t.deepEqual(typeof argv.t, 'boolean'); + t.end(); + +}); + +test('boolean groups', function (t) { + var argv = parse([ '-x', '-z', 'one', 'two', 'three' ], { + boolean: ['x','y','z'] + }); + + t.deepEqual(argv, { + x : true, + y : false, + z : true, + _ : [ 'one', 'two', 'three' ] + }); + + t.deepEqual(typeof argv.x, 'boolean'); + t.deepEqual(typeof argv.y, 'boolean'); + t.deepEqual(typeof argv.z, 'boolean'); + t.end(); +}); + +test('newlines in params' , function (t) { + var args = parse([ '-s', "X\nX" ]) + t.deepEqual(args, { _ : [], s : "X\nX" }); + + // reproduce in bash: + // VALUE="new + // line" + // node program.js --s="$VALUE" + args = parse([ "--s=X\nX" ]) + t.deepEqual(args, { _ : [], s : "X\nX" }); + t.end(); +}); + +test('strings' , function (t) { + var s = parse([ '-s', '0001234' ], { string: 's' }).s; + t.equal(s, '0001234'); + t.equal(typeof s, 'string'); + + var x = parse([ '-x', '56' ], { string: 'x' }).x; + t.equal(x, '56'); + t.equal(typeof x, 'string'); + t.end(); +}); + +test('stringArgs', function (t) { + var s = parse([ ' ', ' ' ], { string: '_' })._; + t.same(s.length, 2); + t.same(typeof s[0], 'string'); + t.same(s[0], ' '); + t.same(typeof s[1], 'string'); + t.same(s[1], ' '); + t.end(); +}); + +test('empty strings', function(t) { + var s = parse([ '-s' ], { string: 's' }).s; + t.equal(s, ''); + t.equal(typeof s, 'string'); + + var str = parse([ '--str' ], { string: 'str' }).str; + t.equal(str, ''); + t.equal(typeof str, 'string'); + + var letters = parse([ '-art' ], { + string: [ 'a', 't' ] + }); + + t.equal(letters.a, ''); + t.equal(letters.r, true); + t.equal(letters.t, ''); + + t.end(); +}); + + +test('slashBreak', function (t) { + t.same( + parse([ '-I/foo/bar/baz' ]), + { I : '/foo/bar/baz', _ : [] } + ); + t.same( + parse([ '-xyz/foo/bar/baz' ]), + { x : true, y : true, z : '/foo/bar/baz', _ : [] } + ); + t.end(); +}); + +test('alias', function (t) { + var argv = parse([ '-f', '11', '--zoom', '55' ], { + alias: { z: 'zoom' } + }); + t.equal(argv.zoom, 55); + t.equal(argv.z, argv.zoom); + t.equal(argv.f, 11); + t.end(); +}); + +test('multiAlias', function (t) { + var argv = parse([ '-f', '11', '--zoom', '55' ], { + alias: { z: [ 'zm', 'zoom' ] } + }); + t.equal(argv.zoom, 55); + t.equal(argv.z, argv.zoom); + t.equal(argv.z, argv.zm); + t.equal(argv.f, 11); + t.end(); +}); + +test('nested dotted objects', function (t) { + var argv = parse([ + '--foo.bar', '3', '--foo.baz', '4', + '--foo.quux.quibble', '5', '--foo.quux.o_O', + '--beep.boop' + ]); + + t.same(argv.foo, { + bar : 3, + baz : 4, + quux : { + quibble : 5, + o_O : true + } + }); + t.same(argv.beep, { boop : true }); + t.end(); +}); + +test('boolean and alias with chainable api', function (t) { + var aliased = [ '-h', 'derp' ]; + var regular = [ '--herp', 'derp' ]; + var opts = { + herp: { alias: 'h', boolean: true } + }; + var aliasedArgv = parse(aliased, { + boolean: 'herp', + alias: { h: 'herp' } + }); + var propertyArgv = parse(regular, { + boolean: 'herp', + alias: { h: 'herp' } + }); + var expected = { + herp: true, + h: true, + '_': [ 'derp' ] + }; + + t.same(aliasedArgv, expected); + t.same(propertyArgv, expected); + t.end(); +}); + +test('boolean and alias with options hash', function (t) { + var aliased = [ '-h', 'derp' ]; + var regular = [ '--herp', 'derp' ]; + var opts = { + alias: { 'h': 'herp' }, + boolean: 'herp' + }; + var aliasedArgv = parse(aliased, opts); + var propertyArgv = parse(regular, opts); + var expected = { + herp: true, + h: true, + '_': [ 'derp' ] + }; + t.same(aliasedArgv, expected); + t.same(propertyArgv, expected); + t.end(); +}); + +test('boolean and alias using explicit true', function (t) { + var aliased = [ '-h', 'true' ]; + var regular = [ '--herp', 'true' ]; + var opts = { + alias: { h: 'herp' }, + boolean: 'h' + }; + var aliasedArgv = parse(aliased, opts); + var propertyArgv = parse(regular, opts); + var expected = { + herp: true, + h: true, + '_': [ ] + }; + + t.same(aliasedArgv, expected); + t.same(propertyArgv, expected); + t.end(); +}); + +// regression, see https://github.com/substack/node-optimist/issues/71 +test('boolean and --x=true', function(t) { + var parsed = parse(['--boool', '--other=true'], { + boolean: 'boool' + }); + + t.same(parsed.boool, true); + t.same(parsed.other, 'true'); + + parsed = parse(['--boool', '--other=false'], { + boolean: 'boool' + }); + + t.same(parsed.boool, true); + t.same(parsed.other, 'false'); + t.end(); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js new file mode 100644 index 0000000..21851b0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js @@ -0,0 +1,9 @@ +var parse = require('../'); +var test = require('tape'); + +test('parse with modifier functions' , function (t) { + t.plan(1); + + var argv = parse([ '-b', '123' ], { boolean: 'b' }); + t.deepEqual(argv, { b: true, _: ['123'] }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/short.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/short.js new file mode 100644 index 0000000..d513a1c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/short.js @@ -0,0 +1,67 @@ +var parse = require('../'); +var test = require('tape'); + +test('numeric short args', function (t) { + t.plan(2); + t.deepEqual(parse([ '-n123' ]), { n: 123, _: [] }); + t.deepEqual( + parse([ '-123', '456' ]), + { 1: true, 2: true, 3: 456, _: [] } + ); +}); + +test('short', function (t) { + t.deepEqual( + parse([ '-b' ]), + { b : true, _ : [] }, + 'short boolean' + ); + t.deepEqual( + parse([ 'foo', 'bar', 'baz' ]), + { _ : [ 'foo', 'bar', 'baz' ] }, + 'bare' + ); + t.deepEqual( + parse([ '-cats' ]), + { c : true, a : true, t : true, s : true, _ : [] }, + 'group' + ); + t.deepEqual( + parse([ '-cats', 'meow' ]), + { c : true, a : true, t : true, s : 'meow', _ : [] }, + 'short group next' + ); + t.deepEqual( + parse([ '-h', 'localhost' ]), + { h : 'localhost', _ : [] }, + 'short capture' + ); + t.deepEqual( + parse([ '-h', 'localhost', '-p', '555' ]), + { h : 'localhost', p : 555, _ : [] }, + 'short captures' + ); + t.end(); +}); + +test('mixed short bool and capture', function (t) { + t.same( + parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]), + { + f : true, p : 555, h : 'localhost', + _ : [ 'script.js' ] + } + ); + t.end(); +}); + +test('short and long', function (t) { + t.deepEqual( + parse([ '-h', 'localhost', '-fp', '555', 'script.js' ]), + { + f : true, p : 555, h : 'localhost', + _ : [ 'script.js' ] + } + ); + t.end(); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/whitespace.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/whitespace.js new file mode 100644 index 0000000..8a52a58 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/node_modules/minimist/test/whitespace.js @@ -0,0 +1,8 @@ +var parse = require('../'); +var test = require('tape'); + +test('whitespace should be whitespace' , function (t) { + t.plan(1); + var x = parse([ '-x', '\t' ]).x; + t.equal(x, '\t'); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/package.json new file mode 100644 index 0000000..6ce95e3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/package.json @@ -0,0 +1,60 @@ +{ + "name": "mkdirp", + "description": "Recursively mkdir, like `mkdir -p`", + "version": "0.5.1", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "main": "index.js", + "keywords": [ + "mkdir", + "directory" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/substack/node-mkdirp.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "dependencies": { + "minimist": "0.0.8" + }, + "devDependencies": { + "tap": "1", + "mock-fs": "2 >=2.7.0" + }, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "license": "MIT", + "gitHead": "d4eff0f06093aed4f387e88e9fc301cb76beedc7", + "bugs": { + "url": "https://github.com/substack/node-mkdirp/issues" + }, + "homepage": "https://github.com/substack/node-mkdirp#readme", + "_id": "mkdirp@0.5.1", + "_shasum": "30057438eac6cf7f8c4767f38648d6697d75c903", + "_from": "mkdirp@>=0.5.1 <0.6.0", + "_npmVersion": "2.9.0", + "_nodeVersion": "2.0.0", + "_npmUser": { + "name": "substack", + "email": "substack@gmail.com" + }, + "dist": { + "shasum": "30057438eac6cf7f8c4767f38648d6697d75c903", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "directories": {}, + "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/readme.markdown b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/readme.markdown new file mode 100644 index 0000000..3cc1315 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/readme.markdown @@ -0,0 +1,100 @@ +# mkdirp + +Like `mkdir -p`, but in node.js! + +[![build status](https://secure.travis-ci.org/substack/node-mkdirp.png)](http://travis-ci.org/substack/node-mkdirp) + +# example + +## pow.js + +```js +var mkdirp = require('mkdirp'); + +mkdirp('/tmp/foo/bar/baz', function (err) { + if (err) console.error(err) + else console.log('pow!') +}); +``` + +Output + +``` +pow! +``` + +And now /tmp/foo/bar/baz exists, huzzah! + +# methods + +```js +var mkdirp = require('mkdirp'); +``` + +## mkdirp(dir, opts, cb) + +Create a new directory and any necessary subdirectories at `dir` with octal +permission string `opts.mode`. If `opts` is a non-object, it will be treated as +the `opts.mode`. + +If `opts.mode` isn't specified, it defaults to `0777 & (~process.umask())`. + +`cb(err, made)` fires with the error or the first directory `made` +that had to be created, if any. + +You can optionally pass in an alternate `fs` implementation by passing in +`opts.fs`. Your implementation should have `opts.fs.mkdir(path, mode, cb)` and +`opts.fs.stat(path, cb)`. + +## mkdirp.sync(dir, opts) + +Synchronously create a new directory and any necessary subdirectories at `dir` +with octal permission string `opts.mode`. If `opts` is a non-object, it will be +treated as the `opts.mode`. + +If `opts.mode` isn't specified, it defaults to `0777 & (~process.umask())`. + +Returns the first directory that had to be created, if any. + +You can optionally pass in an alternate `fs` implementation by passing in +`opts.fs`. Your implementation should have `opts.fs.mkdirSync(path, mode)` and +`opts.fs.statSync(path)`. + +# usage + +This package also ships with a `mkdirp` command. + +``` +usage: mkdirp [DIR1,DIR2..] {OPTIONS} + + Create each supplied directory including any necessary parent directories that + don't yet exist. + + If the directory already exists, do nothing. + +OPTIONS are: + + -m, --mode If a directory needs to be created, set the mode as an octal + permission string. + +``` + +# install + +With [npm](http://npmjs.org) do: + +``` +npm install mkdirp +``` + +to get the library, or + +``` +npm install -g mkdirp +``` + +to get the command. + +# license + +MIT diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/chmod.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/chmod.js new file mode 100644 index 0000000..6a404b9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/chmod.js @@ -0,0 +1,41 @@ +var mkdirp = require('../').mkdirp; +var path = require('path'); +var fs = require('fs'); +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); +var _0744 = parseInt('0744', 8); + +var ps = [ '', 'tmp' ]; + +for (var i = 0; i < 25; i++) { + var dir = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + ps.push(dir); +} + +var file = ps.join('/'); + +test('chmod-pre', function (t) { + var mode = _0744 + mkdirp(file, mode, function (er) { + t.ifError(er, 'should not error'); + fs.stat(file, function (er, stat) { + t.ifError(er, 'should exist'); + t.ok(stat && stat.isDirectory(), 'should be directory'); + t.equal(stat && stat.mode & _0777, mode, 'should be 0744'); + t.end(); + }); + }); +}); + +test('chmod', function (t) { + var mode = _0755 + mkdirp(file, mode, function (er) { + t.ifError(er, 'should not error'); + fs.stat(file, function (er, stat) { + t.ifError(er, 'should exist'); + t.ok(stat && stat.isDirectory(), 'should be directory'); + t.end(); + }); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/clobber.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/clobber.js new file mode 100644 index 0000000..2433b9a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/clobber.js @@ -0,0 +1,38 @@ +var mkdirp = require('../').mkdirp; +var path = require('path'); +var fs = require('fs'); +var test = require('tap').test; +var _0755 = parseInt('0755', 8); + +var ps = [ '', 'tmp' ]; + +for (var i = 0; i < 25; i++) { + var dir = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + ps.push(dir); +} + +var file = ps.join('/'); + +// a file in the way +var itw = ps.slice(0, 3).join('/'); + + +test('clobber-pre', function (t) { + console.error("about to write to "+itw) + fs.writeFileSync(itw, 'I AM IN THE WAY, THE TRUTH, AND THE LIGHT.'); + + fs.stat(itw, function (er, stat) { + t.ifError(er) + t.ok(stat && stat.isFile(), 'should be file') + t.end() + }) +}) + +test('clobber', function (t) { + t.plan(2); + mkdirp(file, _0755, function (err) { + t.ok(err); + t.equal(err.code, 'ENOTDIR'); + t.end(); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/mkdirp.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/mkdirp.js new file mode 100644 index 0000000..eaa8921 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/mkdirp.js @@ -0,0 +1,28 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('woo', function (t) { + t.plan(5); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/tmp/' + [x,y,z].join('/'); + + mkdirp(file, _0755, function (err) { + t.ifError(err); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }) + }) + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/opts_fs.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/opts_fs.js new file mode 100644 index 0000000..97186b6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/opts_fs.js @@ -0,0 +1,29 @@ +var mkdirp = require('../'); +var path = require('path'); +var test = require('tap').test; +var mockfs = require('mock-fs'); +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('opts.fs', function (t) { + t.plan(5); + + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/beep/boop/' + [x,y,z].join('/'); + var xfs = mockfs.fs(); + + mkdirp(file, { fs: xfs, mode: _0755 }, function (err) { + t.ifError(err); + xfs.exists(file, function (ex) { + t.ok(ex, 'created file'); + xfs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/opts_fs_sync.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/opts_fs_sync.js new file mode 100644 index 0000000..6c370aa --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/opts_fs_sync.js @@ -0,0 +1,27 @@ +var mkdirp = require('../'); +var path = require('path'); +var test = require('tap').test; +var mockfs = require('mock-fs'); +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('opts.fs sync', function (t) { + t.plan(4); + + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/beep/boop/' + [x,y,z].join('/'); + var xfs = mockfs.fs(); + + mkdirp.sync(file, { fs: xfs, mode: _0755 }); + xfs.exists(file, function (ex) { + t.ok(ex, 'created file'); + xfs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/perm.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/perm.js new file mode 100644 index 0000000..fbce44b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/perm.js @@ -0,0 +1,32 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('async perm', function (t) { + t.plan(5); + var file = '/tmp/' + (Math.random() * (1<<30)).toString(16); + + mkdirp(file, _0755, function (err) { + t.ifError(err); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }) + }) + }); +}); + +test('async root perm', function (t) { + mkdirp('/tmp', _0755, function (err) { + if (err) t.fail(err); + t.end(); + }); + t.end(); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/perm_sync.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/perm_sync.js new file mode 100644 index 0000000..398229f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/perm_sync.js @@ -0,0 +1,36 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('sync perm', function (t) { + t.plan(4); + var file = '/tmp/' + (Math.random() * (1<<30)).toString(16) + '.json'; + + mkdirp.sync(file, _0755); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }); +}); + +test('sync root perm', function (t) { + t.plan(3); + + var file = '/tmp'; + mkdirp.sync(file, _0755); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.ok(stat.isDirectory(), 'target not a directory'); + }) + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/race.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/race.js new file mode 100644 index 0000000..b0b9e18 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/race.js @@ -0,0 +1,37 @@ +var mkdirp = require('../').mkdirp; +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('race', function (t) { + t.plan(10); + var ps = [ '', 'tmp' ]; + + for (var i = 0; i < 25; i++) { + var dir = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + ps.push(dir); + } + var file = ps.join('/'); + + var res = 2; + mk(file); + + mk(file); + + function mk (file, cb) { + mkdirp(file, _0755, function (err) { + t.ifError(err); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }) + }); + } +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/rel.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/rel.js new file mode 100644 index 0000000..4ddb342 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/rel.js @@ -0,0 +1,32 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('rel', function (t) { + t.plan(5); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var cwd = process.cwd(); + process.chdir('/tmp'); + + var file = [x,y,z].join('/'); + + mkdirp(file, _0755, function (err) { + t.ifError(err); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + process.chdir(cwd); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }) + }) + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/return.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/return.js new file mode 100644 index 0000000..bce68e5 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/return.js @@ -0,0 +1,25 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var test = require('tap').test; + +test('return value', function (t) { + t.plan(4); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/tmp/' + [x,y,z].join('/'); + + // should return the first dir created. + // By this point, it would be profoundly surprising if /tmp didn't + // already exist, since every other test makes things in there. + mkdirp(file, function (err, made) { + t.ifError(err); + t.equal(made, '/tmp/' + x); + mkdirp(file, function (err, made) { + t.ifError(err); + t.equal(made, null); + }); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/return_sync.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/return_sync.js new file mode 100644 index 0000000..7c222d3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/return_sync.js @@ -0,0 +1,24 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var test = require('tap').test; + +test('return value', function (t) { + t.plan(2); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/tmp/' + [x,y,z].join('/'); + + // should return the first dir created. + // By this point, it would be profoundly surprising if /tmp didn't + // already exist, since every other test makes things in there. + // Note that this will throw on failure, which will fail the test. + var made = mkdirp.sync(file); + t.equal(made, '/tmp/' + x); + + // making the same file again should have no effect. + made = mkdirp.sync(file); + t.equal(made, null); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/root.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/root.js new file mode 100644 index 0000000..9e7d079 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/root.js @@ -0,0 +1,19 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var test = require('tap').test; +var _0755 = parseInt('0755', 8); + +test('root', function (t) { + // '/' on unix, 'c:/' on windows. + var file = path.resolve('/'); + + mkdirp(file, _0755, function (err) { + if (err) throw err + fs.stat(file, function (er, stat) { + if (er) throw er + t.ok(stat.isDirectory(), 'target is a directory'); + t.end(); + }) + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/sync.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/sync.js new file mode 100644 index 0000000..8c8dc93 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/sync.js @@ -0,0 +1,32 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('sync', function (t) { + t.plan(4); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/tmp/' + [x,y,z].join('/'); + + try { + mkdirp.sync(file, _0755); + } catch (err) { + t.fail(err); + return t.end(); + } + + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0755); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/umask.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/umask.js new file mode 100644 index 0000000..2033c63 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/umask.js @@ -0,0 +1,28 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('implicit mode from umask', function (t) { + t.plan(5); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/tmp/' + [x,y,z].join('/'); + + mkdirp(file, function (err) { + t.ifError(err); + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, _0777 & (~process.umask())); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }) + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/umask_sync.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/umask_sync.js new file mode 100644 index 0000000..11a7614 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/mkdirp/test/umask_sync.js @@ -0,0 +1,32 @@ +var mkdirp = require('../'); +var path = require('path'); +var fs = require('fs'); +var exists = fs.exists || path.exists; +var test = require('tap').test; +var _0777 = parseInt('0777', 8); +var _0755 = parseInt('0755', 8); + +test('umask sync modes', function (t) { + t.plan(4); + var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16); + + var file = '/tmp/' + [x,y,z].join('/'); + + try { + mkdirp.sync(file); + } catch (err) { + t.fail(err); + return t.end(); + } + + exists(file, function (ex) { + t.ok(ex, 'file created'); + fs.stat(file, function (err, stat) { + t.ifError(err); + t.equal(stat.mode & _0777, (_0777 & (~process.umask()))); + t.ok(stat.isDirectory(), 'target not a directory'); + }); + }); +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/AUTHORS b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/AUTHORS new file mode 100644 index 0000000..7145cbc --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/AUTHORS @@ -0,0 +1,10 @@ +# contributors sorted by whether or not they're me. +Isaac Z. Schlueter +Stein Martin Hustad +Mikeal Rogers +Laurie Harper +Jann Horn +Elijah Insua +Henry Rawas +Justin Makeig +Mike Schilling diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/CONTRIBUTING.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/CONTRIBUTING.md new file mode 100644 index 0000000..86b7311 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/CONTRIBUTING.md @@ -0,0 +1,14 @@ +**NO PATCHES WITHOUT A TEST** + +**TEST MUST PASS WITH THE PATCH.** + +**TEST MUST FAIL WITHOUT THE PATCH.** + +**NO EXCEPTIONS.** + +# EVERY PULL REQUEST MUST HAVE A TEST. + +Seriously. This is a very strict rule, and I will not bend it for any +patch, no matter how minor. + +Write a test. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/LICENSE b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/LICENSE new file mode 100644 index 0000000..19129e3 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/LICENSE-W3C.html b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/LICENSE-W3C.html new file mode 100644 index 0000000..a611e3f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/LICENSE-W3C.html @@ -0,0 +1,188 @@ + +W3C Software Notice and License
+ + + +
+

+ W3C + +

+ +
+ + + +
+
+ +
+ + +
+
+ +
+ + +
+
+
+ +
+
+

W3C Software Notice and License

+
+
+

This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license.

+

License

+ +

+By obtaining, using and/or copying this work, you (the licensee) +agree that you have read, understood, and will comply with the following +terms and conditions.

+ +

Permission to copy, modify, and distribute this software and its +documentation, with or without modification, for any purpose and without +fee or royalty is hereby granted, provided that you include the following on +ALL copies of the software and documentation or portions thereof, including +modifications:

+ +
  • The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work.
  • Any pre-existing intellectual property disclaimers, notices, or terms + and conditions. If none exist, the W3C Software Short + Notice should be included (hypertext is preferred, text is permitted) + within the body of any redistributed or derivative code.
  • Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from + which the code is derived.)
+ +

Disclaimers

+ +

THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS +MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR +PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE +ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.

+ +

COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR +DOCUMENTATION.

+ +

The name and trademarks of copyright holders may NOT be used in +advertising or publicity pertaining to the software without specific, written +prior permission. Title to copyright in this software and any associated +documentation will at all times remain with copyright holders.

+ +

Notes

+ +

This version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231

+ +

This formulation of W3C's notice and license became active on December 31 +2002. This version removes the copyright ownership notice such that this +license can be used with materials other than those owned by the W3C, +reflects that ERCIM is now a host of the W3C, includes references to this +specific dated version of the license, and removes the ambiguous grant of +"use". Otherwise, this version is the same as the previous +version and is written so as to preserve the Free +Software Foundation's assessment of GPL compatibility and OSI's certification +under the Open Source +Definition.

+
+
+
+
+ + + +
+ +
diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/README.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/README.md new file mode 100644 index 0000000..91a0314 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/README.md @@ -0,0 +1,220 @@ +# sax js + +A sax-style parser for XML and HTML. + +Designed with [node](http://nodejs.org/) in mind, but should work fine in +the browser or other CommonJS implementations. + +## What This Is + +* A very simple tool to parse through an XML string. +* A stepping stone to a streaming HTML parser. +* A handy way to deal with RSS and other mostly-ok-but-kinda-broken XML + docs. + +## What This Is (probably) Not + +* An HTML Parser - That's a fine goal, but this isn't it. It's just + XML. +* A DOM Builder - You can use it to build an object model out of XML, + but it doesn't do that out of the box. +* XSLT - No DOM = no querying. +* 100% Compliant with (some other SAX implementation) - Most SAX + implementations are in Java and do a lot more than this does. +* An XML Validator - It does a little validation when in strict mode, but + not much. +* A Schema-Aware XSD Thing - Schemas are an exercise in fetishistic + masochism. +* A DTD-aware Thing - Fetching DTDs is a much bigger job. + +## Regarding `Hello, world!').close(); + +// stream usage +// takes the same options as the parser +var saxStream = require("sax").createStream(strict, options) +saxStream.on("error", function (e) { + // unhandled errors will throw, since this is a proper node + // event emitter. + console.error("error!", e) + // clear the error + this._parser.error = null + this._parser.resume() +}) +saxStream.on("opentag", function (node) { + // same object as above +}) +// pipe is supported, and it's readable/writable +// same chunks coming in also go out. +fs.createReadStream("file.xml") + .pipe(saxStream) + .pipe(fs.createWriteStream("file-copy.xml")) +``` + + +## Arguments + +Pass the following arguments to the parser function. All are optional. + +`strict` - Boolean. Whether or not to be a jerk. Default: `false`. + +`opt` - Object bag of settings regarding string formatting. All default to `false`. + +Settings supported: + +* `trim` - Boolean. Whether or not to trim text and comment nodes. +* `normalize` - Boolean. If true, then turn any whitespace into a single + space. +* `lowercase` - Boolean. If true, then lowercase tag names and attribute names + in loose mode, rather than uppercasing them. +* `xmlns` - Boolean. If true, then namespaces are supported. +* `position` - Boolean. If false, then don't track line/col/position. +* `strictEntities` - Boolean. If true, only parse [predefined XML + entities](http://www.w3.org/TR/REC-xml/#sec-predefined-ent) + (`&`, `'`, `>`, `<`, and `"`) + +## Methods + +`write` - Write bytes onto the stream. You don't have to do this all at +once. You can keep writing as much as you want. + +`close` - Close the stream. Once closed, no more data may be written until +it is done processing the buffer, which is signaled by the `end` event. + +`resume` - To gracefully handle errors, assign a listener to the `error` +event. Then, when the error is taken care of, you can call `resume` to +continue parsing. Otherwise, the parser will not continue while in an error +state. + +## Members + +At all times, the parser object will have the following members: + +`line`, `column`, `position` - Indications of the position in the XML +document where the parser currently is looking. + +`startTagPosition` - Indicates the position where the current tag starts. + +`closed` - Boolean indicating whether or not the parser can be written to. +If it's `true`, then wait for the `ready` event to write again. + +`strict` - Boolean indicating whether or not the parser is a jerk. + +`opt` - Any options passed into the constructor. + +`tag` - The current tag being dealt with. + +And a bunch of other stuff that you probably shouldn't touch. + +## Events + +All events emit with a single argument. To listen to an event, assign a +function to `on`. Functions get executed in the this-context of +the parser object. The list of supported events are also in the exported +`EVENTS` array. + +When using the stream interface, assign handlers using the EventEmitter +`on` function in the normal fashion. + +`error` - Indication that something bad happened. The error will be hanging +out on `parser.error`, and must be deleted before parsing can continue. By +listening to this event, you can keep an eye on that kind of stuff. Note: +this happens *much* more in strict mode. Argument: instance of `Error`. + +`text` - Text node. Argument: string of text. + +`doctype` - The ``. Argument: +object with `name` and `body` members. Attributes are not parsed, as +processing instructions have implementation dependent semantics. + +`sgmldeclaration` - Random SGML declarations. Stuff like `` +would trigger this kind of event. This is a weird thing to support, so it +might go away at some point. SAX isn't intended to be used to parse SGML, +after all. + +`opentag` - An opening tag. Argument: object with `name` and `attributes`. +In non-strict mode, tag names are uppercased, unless the `lowercase` +option is set. If the `xmlns` option is set, then it will contain +namespace binding information on the `ns` member, and will have a +`local`, `prefix`, and `uri` member. + +`closetag` - A closing tag. In loose mode, tags are auto-closed if their +parent closes. In strict mode, well-formedness is enforced. Note that +self-closing tags will have `closeTag` emitted immediately after `openTag`. +Argument: tag name. + +`attribute` - An attribute node. Argument: object with `name` and `value`. +In non-strict mode, attribute names are uppercased, unless the `lowercase` +option is set. If the `xmlns` option is set, it will also contains namespace +information. + +`comment` - A comment node. Argument: the string of the comment. + +`opencdata` - The opening tag of a ``) of a `` tags trigger a `"script"` +event, and their contents are not checked for special xml characters. +If you pass `noscript: true`, then this behavior is suppressed. + +## Reporting Problems + +It's best to write a failing test if you find an issue. I will always +accept pull requests with failing tests if they demonstrate intended +behavior, but it is very hard to figure out what issue you're describing +without a test. Writing a test is also the best way for you yourself +to figure out if you really understand the issue you think you have with +sax-js. diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/big-not-pretty.xml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/big-not-pretty.xml new file mode 100644 index 0000000..fb5265d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/big-not-pretty.xml @@ -0,0 +1,8002 @@ + + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + + something blerm a bit down here + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/example.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/example.js new file mode 100644 index 0000000..7b0246e --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/example.js @@ -0,0 +1,29 @@ + +var fs = require("fs"), + util = require("util"), + path = require("path"), + xml = fs.readFileSync(path.join(__dirname, "test.xml"), "utf8"), + sax = require("../lib/sax"), + strict = sax.parser(true), + loose = sax.parser(false, {trim:true}), + inspector = function (ev) { return function (data) { + console.error("%s %s %j", this.line+":"+this.column, ev, data); + }}; + +sax.EVENTS.forEach(function (ev) { + loose["on"+ev] = inspector(ev); +}); +loose.onend = function () { + console.error("end"); + console.error(loose); +}; + +// do this in random bits at a time to verify that it works. +(function () { + if (xml) { + var c = Math.ceil(Math.random() * 1000) + loose.write(xml.substr(0,c)); + xml = xml.substr(c); + process.nextTick(arguments.callee); + } else loose.close(); +})(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/get-products.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/get-products.js new file mode 100644 index 0000000..9e8d74a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/get-products.js @@ -0,0 +1,58 @@ +// pull out /GeneralSearchResponse/categories/category/items/product tags +// the rest we don't care about. + +var sax = require("../lib/sax.js") +var fs = require("fs") +var path = require("path") +var xmlFile = path.resolve(__dirname, "shopping.xml") +var util = require("util") +var http = require("http") + +fs.readFile(xmlFile, function (er, d) { + http.createServer(function (req, res) { + if (er) throw er + var xmlstr = d.toString("utf8") + + var parser = sax.parser(true) + var products = [] + var product = null + var currentTag = null + + parser.onclosetag = function (tagName) { + if (tagName === "product") { + products.push(product) + currentTag = product = null + return + } + if (currentTag && currentTag.parent) { + var p = currentTag.parent + delete currentTag.parent + currentTag = p + } + } + + parser.onopentag = function (tag) { + if (tag.name !== "product" && !product) return + if (tag.name === "product") { + product = tag + } + tag.parent = currentTag + tag.children = [] + tag.parent && tag.parent.children.push(tag) + currentTag = tag + } + + parser.ontext = function (text) { + if (currentTag) currentTag.children.push(text) + } + + parser.onend = function () { + var out = util.inspect(products, false, 3, true) + res.writeHead(200, {"content-type":"application/json"}) + res.end("{\"ok\":true}") + // res.end(JSON.stringify(products)) + } + + parser.write(xmlstr).end() + }).listen(1337) +}) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/hello-world.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/hello-world.js new file mode 100644 index 0000000..cbfa518 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/hello-world.js @@ -0,0 +1,4 @@ +require("http").createServer(function (req, res) { + res.writeHead(200, {"content-type":"application/json"}) + res.end(JSON.stringify({ok: true})) +}).listen(1337) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/not-pretty.xml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/not-pretty.xml new file mode 100644 index 0000000..9592852 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/not-pretty.xml @@ -0,0 +1,8 @@ + + something blerm a bit down here diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/pretty-print.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/pretty-print.js new file mode 100644 index 0000000..cd6aca9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/pretty-print.js @@ -0,0 +1,74 @@ +var sax = require("../lib/sax") + , printer = sax.createStream(false, {lowercasetags:true, trim:true}) + , fs = require("fs") + +function entity (str) { + return str.replace('"', '"') +} + +printer.tabstop = 2 +printer.level = 0 +printer.indent = function () { + print("\n") + for (var i = this.level; i > 0; i --) { + for (var j = this.tabstop; j > 0; j --) { + print(" ") + } + } +} +printer.on("opentag", function (tag) { + this.indent() + this.level ++ + print("<"+tag.name) + for (var i in tag.attributes) { + print(" "+i+"=\""+entity(tag.attributes[i])+"\"") + } + print(">") +}) + +printer.on("text", ontext) +printer.on("doctype", ontext) +function ontext (text) { + this.indent() + print(text) +} + +printer.on("closetag", function (tag) { + this.level -- + this.indent() + print("") +}) + +printer.on("cdata", function (data) { + this.indent() + print("") +}) + +printer.on("comment", function (comment) { + this.indent() + print("") +}) + +printer.on("error", function (error) { + console.error(error) + throw error +}) + +if (!process.argv[2]) { + throw new Error("Please provide an xml file to prettify\n"+ + "TODO: read from stdin or take a file") +} +var xmlfile = require("path").join(process.cwd(), process.argv[2]) +var fstr = fs.createReadStream(xmlfile, { encoding: "utf8" }) + +function print (c) { + if (!process.stdout.write(c)) { + fstr.pause() + } +} + +process.stdout.on("drain", function () { + fstr.resume() +}) + +fstr.pipe(printer) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/shopping.xml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/shopping.xml new file mode 100644 index 0000000..223c6c6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/shopping.xml @@ -0,0 +1,2 @@ + +sandbox3.1 r31.Kadu4DC.phase357782011.10.06 15:37:23 PSTp2.a121bc2aaf029435dce62011-10-21T18:38:45.982-04:00P0Y0M0DT0H0M0.169S1112You are currently using the SDC API sandbox environment! No clicks to merchant URLs from this response will be paid. Please change the host of your API requests to 'publisher.api.shopping.com' when you have finished development and testinghttp://statTest.dealtime.com/pixel/noscript?PV_EvnTyp=APPV&APPV_APITSP=10%2F21%2F11_06%3A38%3A45_PM&APPV_DSPRQSID=p2.a121bc2aaf029435dce6&APPV_IMGURL=http://img.shopping.com/sc/glb/sdc_logo_106x19.gif&APPV_LI_LNKINID=7000610&APPV_LI_SBMKYW=nikon&APPV_MTCTYP=1000&APPV_PRTID=2002&APPV_BrnID=14804http://www.shopping.com/digital-cameras/productsDigital CamerasDigital CamerasElectronicshttp://www.shopping.com/xCH-electronics-nikon~linkin_id-7000610?oq=nikonCameras and Photographyhttp://www.shopping.com/xCH-cameras_and_photography-nikon~linkin_id-7000610?oq=nikonDigital Camerashttp://www.shopping.com/digital-cameras/nikon/products?oq=nikon&linkin_id=7000610nikonnikonDigital Camerashttp://www.shopping.com/digital-cameras/nikon/products?oq=nikon&linkin_id=7000610Nikon D3100 Digital Camera14.2 Megapixel, SLR Camera, 3 in. LCD Screen, With High Definition Video, Weight: 1 lb.The Nikon D3100 digital SLR camera speaks to the growing ranks of enthusiastic D-SLR users and aspiring photographers by providing an easy-to-use and affordable entrance to the world of Nikon D-SLR’s. The 14.2-megapixel D3100 has powerful features, such as the enhanced Guide Mode that makes it easy to unleash creative potential and capture memories with still images and full HD video. Like having a personal photo tutor at your fingertips, this unique feature provides a simple graphical interface on the camera’s LCD that guides users by suggesting and/or adjusting camera settings to achieve the desired end result images. The D3100 is also the world’s first D-SLR to introduce full time auto focus (AF) in Live View and D-Movie mode to effortlessly achieve the critical focus needed when shooting Full HD 1080p video.http://di1.shopping.com/images/pi/93/bc/04/101677489-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-606x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=194.56http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gifhttp://www.shopping.com/Nikon-D3100/reviews~linkin_id-7000610429.001360.00http://www.shopping.com/Nikon-D3100/prices~linkin_id-7000610http://www.shopping.com/Nikon-D3100/info~linkin_id-7000610Nikon D3100 Digital SLR Camera with 18-55mm NIKKOR VR LensThe Nikon D3100 Digital SLR Camera is an affordable compact and lightweight photographic power-house. It features the all-purpose 18-55mm VR lens a high-resolution 14.2 MP CMOS sensor along with a feature set that's comprehensive yet easy to navigate - the intuitive onboard learn-as-you grow guide mode allows the photographer to understand what the 3100 can do quickly and easily. Capture beautiful pictures and amazing Full HD 1080p movies with sound and full-time autofocus. Availabilty: In Stock!7185Nikonhttp://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-350x350-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stockFree Shipping with Any Purchase!529.000.00799.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=647&BEFID=7185&aon=%5E1&MerchantID=475674&crawler_id=475674&dealId=-ZW6BMZqz6fbS-aULwga_g%3D%3D&url=http%3A%2F%2Fwww.fumfie.com%2Fproduct%2F343.5%2Fshopping-com%3F&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D3100+Digital+SLR+Camera+with+18-55mm+NIKKOR+VR+Lens&dlprc=529.0&crn=&istrsmrc=1&isathrsl=0&AR=1&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=1&cid=&semid1=&semid2=&IsLps=0&CC=1&SL=1&FS=1&code=&acode=658&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=FumFiehttp://img.shopping.com/cctool/merch_logos/475674.gif866 666 91985604.27http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_fumfie~MRD-475674~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSF343C5Nikon Nikon D3100 14.2MP Digital SLR Camera with 18-55mm f/3.5-5.6 AF-S DX VR, CamerasNikon D3100 14.2MP Digital SLR Camera with 18-55mm f/3.5-5.6 AF-S DX VR7185Nikonhttp://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-385x352-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stock549.000.00549.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=779&BEFID=7185&aon=%5E1&MerchantID=305814&crawler_id=305814&dealId=md1e9lD8vdOu4FHQfJqKng%3D%3D&url=http%3A%2F%2Fwww.electronics-expo.com%2Findex.php%3Fpage%3Ditem%26id%3DNIKD3100%26source%3DSideCar%26scpid%3D8%26scid%3Dscsho318727%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+Nikon+D3100+14.2MP+Digital+SLR+Camera+with+18-55mm+f%2F3.5-5.6+AF-S+DX+VR%2C+Cameras&dlprc=549.0&crn=&istrsmrc=1&isathrsl=0&AR=9&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=9&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=771&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Electronics Expohttp://img.shopping.com/cctool/merch_logos/305814.gif1-888-707-EXPO3713.90http://img.shopping.com/sc/mr/sdc_checks_4.gifhttp://www.shopping.com/xMR-store_electronics_expo~MRD-305814~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSNIKD3100Nikon D3100 14.2-Megapixel Digital SLR Camera With 18-55mm Zoom-Nikkor Lens, BlackSplit-second shutter response captures shots other cameras may have missed Helps eliminate the frustration of shutter delay! 14.2-megapixels for enlargements worth framing and hanging. Takes breathtaking 1080p HD movies. ISO sensitivity from 100-1600 for bright or dimly lit settings. 3.0in. color LCD for beautiful, wide-angle framing and viewing. In-camera image editing lets you retouch with no PC. Automatic scene modes include Child, Sports, Night Portrait and more. Accepts SDHC memory cards. Nikon D3100 14.2-Megapixel Digital SLR Camera With 18-55mm Zoom-Nikkor Lens, Black is one of many Digital SLR Cameras available through Office Depot. Made by Nikon.7185Nikonhttp://di109.shopping.com/images/di/79/59/75/61586e4446744359377244556a6b5932616177-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/79/59/75/61586e4446744359377244556a6b5932616177-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/79/59/75/61586e4446744359377244556a6b5932616177-250x250-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stock549.990.00699.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=698&BEFID=7185&aon=%5E1&MerchantID=467671&crawler_id=467671&dealId=yYuaXnDFtCY7rDUjkY2aaw%3D%3D&url=http%3A%2F%2Flink.mercent.com%2Fredirect.ashx%3Fmr%3AmerchantID%3DOfficeDepot%26mr%3AtrackingCode%3DCEC9669E-6ABC-E011-9F24-0019B9C043EB%26mr%3AtargetUrl%3Dhttp%3A%2F%2Fwww.officedepot.com%2Fa%2Fproducts%2F486292%2FNikon-D3100-142-Megapixel-Digital-SLR%2F%253fcm_mmc%253dMercent-_-Shopping-_-Cameras_and_Camcorders-_-486292&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D3100+14.2-Megapixel+Digital+SLR+Camera+With+18-55mm+Zoom-Nikkor+Lens%2C+Black&dlprc=549.99&crn=&istrsmrc=1&isathrsl=0&AR=10&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=10&cid=&semid1=&semid2=&IsLps=0&CC=1&SL=1&FS=1&code=&acode=690&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Office Depothttp://img.shopping.com/cctool/merch_logos/467671.gif1-800-GO-DEPOT1352.37http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_office_depot_4158555~MRD-467671~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS486292Nikon® D3100™ 14.2MP Digital SLR with 18-55mm LensThe Nikon D3100 DSLR will surprise you with its simplicity and impress you with superb results.7185Nikonhttp://di103.shopping.com/images/di/52/6c/35/36553743756954597348344d475a30326c7851-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di103.shopping.com/images/di/52/6c/35/36553743756954597348344d475a30326c7851-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di103.shopping.com/images/di/52/6c/35/36553743756954597348344d475a30326c7851-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stock549.996.05549.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=Rl56U7CuiTYsH4MGZ02lxQ%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D903483107%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C2%AE+D3100%E2%84%A2+14.2MP+Digital+SLR+with+18-55mm+Lens&dlprc=549.99&crn=&istrsmrc=0&isathrsl=0&AR=11&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=11&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=496&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS9614867Nikon D3100 SLR w/Nikon 18-55mm VR & 55-200mm VR Lenses14.2 Megapixels3" LCDLive ViewHD 1080p Video w/ Sound & Autofocus11-point Autofocus3 Frames per Second ShootingISO 100 to 3200 (Expand to 12800-Hi2)Self Cleaning SensorEXPEED 2, Image Processing EngineScene Recognition System7185Nikonhttp://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-345x345-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stock695.000.00695.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=371&BEFID=7185&aon=%5E1&MerchantID=487342&crawler_id=487342&dealId=huS6xZKDKaKMTMP71eI6DA%3D%3D&url=http%3A%2F%2Fwww.rythercamera.com%2Fcatalog%2Fproduct_info.php%3Fcsv%3Dsh%26products_id%3D32983%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D3100+SLR+w%2FNikon+18-55mm+VR+%26+55-200mm+VR+Lenses&dlprc=695.0&crn=&istrsmrc=0&isathrsl=0&AR=15&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=15&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=379&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RytherCamera.comhttp://img.shopping.com/cctool/merch_logos/487342.gif1-877-644-75930http://img.shopping.com/sc/glb/flag/US.gifUS32983Nikon COOLPIX S203 Digital Camera10 Megapixel, Ultra-Compact Camera, 2.5 in. LCD Screen, 3x Optical Zoom, With Video Capability, Weight: 0.23 lb.With 10.34 mega pixel, electronic VR vibration reduction, 5-level brightness adjustment, 3x optical zoom, and TFT LCD, Nikon Coolpix s203 fulfills all the demands of any photographer. The digital camera has an inbuilt memory of 44MB and an external memory slot made for all kinds of SD (Secure Digital) cards.http://di1.shopping.com/images/pi/c4/ef/1b/95397883-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-500x499-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=20139.00139.00http://www.shopping.com/Nikon-Coolpix-S203/prices~linkin_id-7000610http://www.shopping.com/Nikon-Coolpix-S203/info~linkin_id-7000610Nikon Coolpix S203 Digital Camera (Red)With 10.34 mega pixel, electronic VR vibration reduction, 5-level brightness adjustment, 3x optical zoom, and TFT LCD, Nikon Coolpix s203 fulfills all the demands of any photographer. The digital camera has an inbuilt memory of 44MB and an external memory slot made for all kinds of SD (Secure Digital) cards.7185Nikonhttp://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stockFantastic prices with ease & comfort of Amazon.com!139.009.50139.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=566&BEFID=7185&aon=%5E1&MerchantID=301531&crawler_id=1903313&dealId=sBd2JnIEPM-A_lBAM1RZgQ%3D%3D&url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB002T964IM%2Fref%3Dasc_df_B002T964IM1751618%3Fsmid%3DA22UHVNXG98FAT%26tag%3Ddealtime-ce-mp01feed-20%26linkCode%3Dasn%26creative%3D395105%26creativeASIN%3DB002T964IM&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+Coolpix+S203+Digital+Camera+%28Red%29&dlprc=139.0&crn=&istrsmrc=0&isathrsl=0&AR=63&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=95397883&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=63&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=518&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Amazon Marketplacehttp://img.shopping.com/cctool/merch_logos/301531.gif2132.73http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_amazon_marketplace_9689~MRD-301531~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSB002T964IMNikon S3100 Digital Camera14.5 Megapixel, Compact Camera, 2.7 in. LCD Screen, 5x Optical Zoom, With High Definition Video, Weight: 0.23 lb.This digital camera features a wide-angle optical Zoom-NIKKOR glass lens that allows you to capture anything from landscapes to portraits to action shots. The high-definition movie mode with one-touch recording makes it easy to capture video clips.http://di1.shopping.com/images/pi/66/2d/33/106834268-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-507x387-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=312.00http://img.shopping.com/sc/pr/sdc_stars_sm_2.gifhttp://www.shopping.com/nikon-s3100/reviews~linkin_id-700061099.95134.95http://www.shopping.com/nikon-s3100/prices~linkin_id-7000610http://www.shopping.com/nikon-s3100/info~linkin_id-7000610CoolPix S3100 14 Megapixel Compact Digital Camera- RedNikon Coolpix S3100 - Digital camera - compact - 14.0 Mpix - optical zoom: 5 x - supported memory: SD, SDXC, SDHC - red7185Nikonhttp://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stockGet 30 days FREE SHIPPING w/ ShipVantage119.956.95139.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=UUyGoqV8r0-xrkn-rnGNbg%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBJpFHJ3Yx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmDAJeU1oyGG0GcBdhGwUGCAVqYF9SO0xSN1sZdmA7dmMdBQAJB24qX1NbQxI6AjA2ME5dVFULPDsGPFcQTTdaLTA6SR0OFlQvPAwMDxYcYlxIVkcoLTcCDA%3D%3D%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=CoolPix+S3100+14+Megapixel+Compact+Digital+Camera-+Red&dlprc=119.95&crn=&istrsmrc=1&isathrsl=0&AR=28&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=28&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=0&code=&acode=583&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00337013000COOLPIX S3100 PinkNikon Coolpix S3100 - Digital camera - compact - 14.0 Mpix - optical zoom: 5 x - supported memory: SD, SDXC, SDHC - pink7185Nikonhttp://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stockGet 30 days FREE SHIPPING w/ ShipVantage119.956.95139.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=X87AwXlW1dXoMXk4QQDToQ%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBJpFHJxYx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmb2JcUFxDEGsPc3QDEkFZVQ0WFhdRW0MWbgYWDlxzdGMdAVQWRi0xDAwPFhw9TSobb05eWVVYKzsLTFVVQi5RICs3SA8MU1s2MQQKD1wf%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=COOLPIX+S3100+Pink&dlprc=119.95&crn=&istrsmrc=1&isathrsl=0&AR=31&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=31&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=0&code=&acode=583&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00337015000Nikon Coolpix S3100 14.0 MP Digital Camera - SilverNikon Coolpix S3100 14.0 MP Digital Camera - Silver7185Nikonhttp://di109.shopping.com/images/di/6e/76/46/776e70664134726c413144626b736473613077-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/6e/76/46/776e70664134726c413144626b736473613077-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/6e/76/46/776e70664134726c413144626b736473613077-270x270-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stock109.970.00109.97http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=803&BEFID=7185&aon=%5E&MerchantID=475774&crawler_id=475774&dealId=nvFwnpfA4rlA1Dbksdsa0w%3D%3D&url=http%3A%2F%2Fwww.thewiz.com%2Fcatalog%2Fproduct.jsp%3FmodelNo%3DS3100SILVER%26gdftrk%3DgdfV2677_a_7c996_a_7c4049_a_7c26262&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+Coolpix+S3100+14.0+MP+Digital+Camera+-+Silver&dlprc=109.97&crn=&istrsmrc=0&isathrsl=0&AR=33&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=33&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=797&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=TheWiz.comhttp://img.shopping.com/cctool/merch_logos/475774.gif877-542-69880http://img.shopping.com/sc/glb/flag/US.gifUS26262Nikon� COOLPIX� S3100 14MP Digital Camera (Silver)The Nikon COOLPIX S3100 is the easy way to share your life and stay connected.7185Nikonhttp://di102.shopping.com/images/di/35/47/74/614e324e6572794b7770732d5365326c2d3467-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di102.shopping.com/images/di/35/47/74/614e324e6572794b7770732d5365326c2d3467-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di102.shopping.com/images/di/35/47/74/614e324e6572794b7770732d5365326c2d3467-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stock119.996.05119.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=5GtaN2NeryKwps-Se2l-4g%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D848064082%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C3%AF%C2%BF%C2%BD+COOLPIX%C3%AF%C2%BF%C2%BD+S3100+14MP+Digital+Camera+%28Silver%29&dlprc=119.99&crn=&istrsmrc=0&isathrsl=0&AR=37&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=37&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=509&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS10101095COOLPIX S3100 YellowNikon Coolpix S3100 - Digital camera - compact - 14.0 Mpix - optical zoom: 5 x - supported memory: SD, SDXC, SDHC - yellow7185Nikonhttp://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stockGet 30 days FREE SHIPPING w/ ShipVantage119.956.95139.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=a43m0RXulX38zCnQjU59jw%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBJpFHJwYx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmb2JcUFxDEGoPc3QDEkFZVQ0WFhdRW0MWbgYWDlxzdGMdAVQWRi0xDAwPFhw9TSobb05eWVVYKzsLTFVVQi5RICs3SA8MU1s2MQQKD1wf%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=COOLPIX+S3100+Yellow&dlprc=119.95&crn=&istrsmrc=1&isathrsl=0&AR=38&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=38&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=0&code=&acode=583&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00337014000Nikon D90 Digital Camera12.3 Megapixel, Point and Shoot Camera, 3 in. LCD Screen, With Video Capability, Weight: 1.36 lb.Untitled Document Nikon D90 SLR Digital Camera With 28-80mm 75-300mm Lens Kit The Nikon D90 SLR Digital Camera, with its 12.3-megapixel DX-format CMOS, 3" High resolution LCD display, Scene Recognition System, Picture Control, Active D-Lighting, and one-button Live View, provides photo enthusiasts with the image quality and performance they need to pursue their own vision while still being intuitive enough for use as an everyday camera.http://di1.shopping.com/images/pi/52/fb/d3/99671132-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-499x255-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=475.00http://img.shopping.com/sc/pr/sdc_stars_sm_5.gifhttp://www.shopping.com/Nikon-D90-with-18-270mm-Lens/reviews~linkin_id-7000610689.002299.00http://www.shopping.com/Nikon-D90-with-18-270mm-Lens/prices~linkin_id-7000610http://www.shopping.com/Nikon-D90-with-18-270mm-Lens/info~linkin_id-7000610Nikon® D90 12.3MP Digital SLR Camera (Body Only)The Nikon D90 will make you rethink what a digital SLR camera can achieve.7185Nikonhttp://di106.shopping.com/images/di/47/55/35/4a4a6b70554178653548756a4237666b774141-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di106.shopping.com/images/di/47/55/35/4a4a6b70554178653548756a4237666b774141-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di106.shopping.com/images/di/47/55/35/4a4a6b70554178653548756a4237666b774141-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stock1015.996.051015.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=GU5JJkpUAxe5HujB7fkwAA%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D851830266%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C2%AE+D90+12.3MP+Digital+SLR+Camera+%28Body+Only%29&dlprc=1015.99&crn=&istrsmrc=0&isathrsl=0&AR=14&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=14&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=496&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS10148659Nikon D90 SLR Digital Camera (Camera Body)The Nikon D90 SLR Digital Camera with its 12.3-megapixel DX-format CCD 3" High resolution LCD display Scene Recognition System Picture Control Active D-Lighting and one-button Live View provides photo enthusiasts with the image quality and performance they need to pursue their own vision while still being intuitive enough for use as an everyday camera. In addition the D90 introduces the D-Movie mode allowing for the first time an interchangeable lens SLR camera that is capable of recording 720p HD movie clips. Availabilty: In Stock7185Nikonhttp://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-350x350-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stockFree Shipping with Any Purchase!689.000.00900.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=647&BEFID=7185&aon=%5E1&MerchantID=475674&crawler_id=475674&dealId=XhURuSC-spBbTIDfo4qfzQ%3D%3D&url=http%3A%2F%2Fwww.fumfie.com%2Fproduct%2F169.5%2Fshopping-com%3F&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+SLR+Digital+Camera+%28Camera+Body%29&dlprc=689.0&crn=&istrsmrc=1&isathrsl=0&AR=16&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=16&cid=&semid1=&semid2=&IsLps=0&CC=1&SL=1&FS=1&code=&acode=658&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=FumFiehttp://img.shopping.com/cctool/merch_logos/475674.gif866 666 91985604.27http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_fumfie~MRD-475674~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSF169C5Nikon D90 SLR w/Nikon 18-105mm VR & 55-200mm VR Lenses12.3 MegapixelDX Format CMOS Sensor3" VGA LCD DisplayLive ViewSelf Cleaning SensorD-Movie ModeHigh Sensitivity (ISO 3200)4.5 fps BurstIn-Camera Image Editing7185Nikonhttp://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stock1189.000.001189.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=371&BEFID=7185&aon=%5E1&MerchantID=487342&crawler_id=487342&dealId=o0Px_XLWDbrxAYRy3rCmyQ%3D%3D&url=http%3A%2F%2Fwww.rythercamera.com%2Fcatalog%2Fproduct_info.php%3Fcsv%3Dsh%26products_id%3D30619%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+SLR+w%2FNikon+18-105mm+VR+%26+55-200mm+VR+Lenses&dlprc=1189.0&crn=&istrsmrc=0&isathrsl=0&AR=20&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=20&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=379&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RytherCamera.comhttp://img.shopping.com/cctool/merch_logos/487342.gif1-877-644-75930http://img.shopping.com/sc/glb/flag/US.gifUS30619Nikon D90 12.3 Megapixel Digital SLR Camera (Body Only)Fusing 12.3 megapixel image quality and a cinematic 24fps D-Movie Mode, the Nikon D90 exceeds the demands of passionate photographers. Coupled with Nikon's EXPEED image processing technologies and NIKKOR optics, breathtaking image fidelity is assured. Combined with fast 0.15ms power-up and split-second 65ms shooting lag, dramatic action and decisive moments are captured easily. Effective 4-frequency, ultrasonic sensor cleaning frees image degrading dust particles from the sensor's optical low pass filter.7185Nikonhttp://di110.shopping.com/images/di/34/48/67/62574a534a3873736749663842304d58497741-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di110.shopping.com/images/di/34/48/67/62574a534a3873736749663842304d58497741-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di110.shopping.com/images/di/34/48/67/62574a534a3873736749663842304d58497741-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stockFREE FEDEX 2-3 DAY DELIVERY899.950.00899.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=269&BEFID=7185&aon=%5E&MerchantID=9296&crawler_id=811558&dealId=4HgbWJSJ8ssgIf8B0MXIwA%3D%3D&url=http%3A%2F%2Fwww.pcnation.com%2Foptics-gallery%2Fdetails.asp%3Faffid%3D305%26item%3D2N145P&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+12.3+Megapixel+Digital+SLR+Camera+%28Body+Only%29&dlprc=899.95&crn=&istrsmrc=1&isathrsl=0&AR=21&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=21&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=257&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=PCNationhttp://img.shopping.com/cctool/merch_logos/9296.gif800-470-707916224.43http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_pcnation_9689~MRD-9296~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS2N145PNikon D90 12.3MP Digital SLR Camera (Body Only)Fusing 12.3-megapixel image quality inherited from the award-winning D300 with groundbreaking features, the D90's breathtaking, low-noise image quality is further advanced with EXPEED image processing. Split-second shutter response and continuous shooting at up to 4.5 frames-per-second provide the power to capture fast action and precise moments perfectly, while Nikon's exclusive Scene Recognition System contributes to faster 11-area autofocus performance, finer white balance detection and more. The D90 delivers the control passionate photographers demand, utilizing comprehensive exposure functions and the intelligence of 3D Color Matrix Metering II. Stunning results come to life on a 3-inch 920,000-dot color LCD monitor, providing accurate image review, Live View composition and brilliant playback of the D90's cinematic-quality 24-fps HD D-Movie mode.7185Nikonhttp://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stockFantastic prices with ease & comfort of Amazon.com!780.000.00780.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=566&BEFID=7185&aon=%5E1&MerchantID=301531&crawler_id=1903313&dealId=UNDa3uMDZXOnvD_7sTILYg%3D%3D&url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB001ET5U92%2Fref%3Dasc_df_B001ET5U921751618%3Fsmid%3DAHF4SYKP09WBH%26tag%3Ddealtime-ce-mp01feed-20%26linkCode%3Dasn%26creative%3D395105%26creativeASIN%3DB001ET5U92&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+12.3MP+Digital+SLR+Camera+%28Body+Only%29&dlprc=780.0&crn=&istrsmrc=0&isathrsl=0&AR=29&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=29&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=520&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Amazon Marketplacehttp://img.shopping.com/cctool/merch_logos/301531.gif2132.73http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_amazon_marketplace_9689~MRD-301531~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSB001ET5U92Nikon D90 Digital Camera with 18-105mm lens12.9 Megapixel, SLR Camera, 3 in. LCD Screen, 5.8x Optical Zoom, With Video Capability, Weight: 2.3 lb.Its 12.3 megapixel DX-format CMOS image sensor and EXPEED image processing system offer outstanding image quality across a wide ISO light sensitivity range. Live View mode lets you compose and shoot via the high-resolution 3-inch LCD monitor, and an advanced Scene Recognition System and autofocus performance help capture images with astounding accuracy. Movies can be shot in Motion JPEG format using the D-Movie function. The camera’s large image sensor ensures exceptional movie image quality and you can create dramatic effects by shooting with a wide range of interchangeable NIKKOR lenses, from wide-angle to macro to fisheye, or by adjusting the lens aperture and experimenting with depth-of-field. The D90 – designed to fuel your passion for photography.http://di1.shopping.com/images/pi/57/6a/4f/70621646-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-490x489-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5324.81http://img.shopping.com/sc/pr/sdc_stars_sm_5.gifhttp://www.shopping.com/Nikon-D90-with-18-105mm-lens/reviews~linkin_id-7000610849.951599.95http://www.shopping.com/Nikon-D90-with-18-105mm-lens/prices~linkin_id-7000610http://www.shopping.com/Nikon-D90-with-18-105mm-lens/info~linkin_id-7000610Nikon D90 18-105mm VR LensThe Nikon D90 SLR Digital Camera with its 12.3-megapixel DX-format CMOS 3" High resolution LCD display Scene Recognition System Picture Control Active D-Lighting and one-button Live View prov7185Nikonhttp://di111.shopping.com/images/di/33/6f/35/6531566768674a5066684c7654314a464b5441-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/33/6f/35/6531566768674a5066684c7654314a464b5441-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/33/6f/35/6531566768674a5066684c7654314a464b5441-260x260-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stock849.950.00849.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=419&BEFID=7185&aon=%5E1&MerchantID=9390&crawler_id=1905054&dealId=3o5e1VghgJPfhLvT1JFKTA%3D%3D&url=http%3A%2F%2Fwww.ajrichard.com%2FNikon-D90-18-105mm-VR-Lens%2Fp-292%3Frefid%3DShopping%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+18-105mm+VR+Lens&dlprc=849.95&crn=&istrsmrc=0&isathrsl=0&AR=2&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=2&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=425&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=AJRichardhttp://img.shopping.com/cctool/merch_logos/9390.gif1-888-871-125631244.48http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_ajrichard~MRD-9390~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS292Nikon D90 SLR w/Nikon 18-105mm VR Lens12.3 MegapixelDX Format CMOS Sensor3" VGA LCD DisplayLive ViewSelf Cleaning SensorD-Movie ModeHigh Sensitivity (ISO 3200)4.5 fps BurstIn-Camera Image Editing7185Nikonhttp://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stock909.000.00909.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=371&BEFID=7185&aon=%5E1&MerchantID=487342&crawler_id=487342&dealId=_lYWj_jbwfsSkfcwUcDuww%3D%3D&url=http%3A%2F%2Fwww.rythercamera.com%2Fcatalog%2Fproduct_info.php%3Fcsv%3Dsh%26products_id%3D30971%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+SLR+w%2FNikon+18-105mm+VR+Lens&dlprc=909.0&crn=&istrsmrc=0&isathrsl=0&AR=3&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=3&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=379&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RytherCamera.comhttp://img.shopping.com/cctool/merch_logos/487342.gif1-877-644-75930http://img.shopping.com/sc/glb/flag/US.gifUS3097125448/D90 12.3 Megapixel Digital Camera 18-105mm Zoom Lens w/ 3" Screen - BlackNikon D90 - Digital camera - SLR - 12.3 Mpix - Nikon AF-S DX 18-105mm lens - optical zoom: 5.8 x - supported memory: SD, SDHC7185Nikonhttp://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stockGet 30 days FREE SHIPPING w/ ShipVantage1199.008.201199.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=1KCclCGuWvty2XKU9skadg%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBRtFXpzYx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmb2JcVlhCGGkPc3QDEkFZVQ0WFhdRW0MWbgYWDlxzdGMdAVQWRi0xDAwPFhw9TSobb05eWVVYKzsLTFVVQi5RICs3SA8MU1s2MQQKD1wf%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=25448%2FD90+12.3+Megapixel+Digital+Camera+18-105mm+Zoom+Lens+w%2F+3%22+Screen+-+Black&dlprc=1199.0&crn=&istrsmrc=1&isathrsl=0&AR=4&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=4&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=586&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00353197000Nikon® D90 12.3MP Digital SLR with 18-105mm LensThe Nikon D90 will make you rethink what a digital SLR camera can achieve.7185Nikonhttp://di101.shopping.com/images/di/33/2d/56/4f53665656354a6f37486c41346b4a74616e41-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di101.shopping.com/images/di/33/2d/56/4f53665656354a6f37486c41346b4a74616e41-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di101.shopping.com/images/di/33/2d/56/4f53665656354a6f37486c41346b4a74616e41-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stock1350.996.051350.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=3-VOSfVV5Jo7HlA4kJtanA%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D982673361%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C2%AE+D90+12.3MP+Digital+SLR+with+18-105mm+Lens&dlprc=1350.99&crn=&istrsmrc=0&isathrsl=0&AR=5&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=5&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=496&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS11148905Nikon D90 Kit 12.3-megapixel Digital SLR with 18-105mm VR LensPhotographers, take your passion further!Now is the time for new creativity, and to rethink what a digital SLR camera can achieve. It's time for the D90, a camera with everything you would expect from Nikon's next-generation D-SLRs, and some unexpected surprises, as well. The stunning image quality is inherited from the D300, Nikon's DX-format flagship. The D90 also has Nikon's unmatched ergonomics and high performance, and now takes high-quality movies with beautifully cinematic results. The world of photography has changed, and with the D90 in your hands, it's time to make your own rules.AF-S DX NIKKOR 18-105mm f/3.5-5.6G ED VR LensWide-ratio 5.8x zoom Compact, versatile and ideal for a broad range of shooting situations, ranging from interiors and landscapes to beautiful portraits� a perfect everyday zoom. Nikon VR (Vibration Reduction) image stabilization Vibration Reduction is engineered specifically for each VR NIKKOR lens and enables handheld shooting at up to 3 shutter speeds slower than would7185Nikonhttp://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-300x232-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stockShipping Included!1050.000.001199.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=135&BEFID=7185&aon=%5E1&MerchantID=313162&crawler_id=313162&dealId=kQnB6rS4AjN5dx5h2_631g%3D%3D&url=http%3A%2F%2Fonecall.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1pZSxNoWHFwLx8GTAICa2ZeH1sPXTZLNzRpAh1HR0BxPQEGCBJNMhFHUElsFCFCVkVTTHAcBggEHQ4aHXNpGERGH3RQODsbAgdechJtbBt8fx8JAwhtZFAzJj1oGgIWCxRlNyFOUV9UUGIxBgo0T0IyTSYqJ0RWHw4QPCIBAAQXRGMDICg6TllZVBhh%26nAID%3D13736960&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+Kit+12.3-megapixel+Digital+SLR+with+18-105mm+VR+Lens&dlprc=1050.0&crn=&istrsmrc=1&isathrsl=0&AR=6&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=6&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=1&code=&acode=143&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=OneCallhttp://img.shopping.com/cctool/merch_logos/313162.gif1.800.398.07661804.44http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_onecall_9689~MRD-313162~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS92826Price rangehttp://www.shopping.com/digital-cameras/nikon/products?oq=nikon&linkin_id=7000610$24 - $4012http://www.shopping.com/digital-cameras/nikon/products?minPrice=24&maxPrice=4012&linkin_id=7000610$4012 - $7999http://www.shopping.com/digital-cameras/nikon/products?minPrice=4012&maxPrice=7999&linkin_id=7000610Brandhttp://www.shopping.com/digital-cameras/nikon/products~all-9688-brand~MS-1?oq=nikon&linkin_id=7000610Nikonhttp://www.shopping.com/digital-cameras/nikon+brand-nikon/products~linkin_id-7000610Cranehttp://www.shopping.com/digital-cameras/nikon+9688-brand-crane/products~linkin_id-7000610Ikelitehttp://www.shopping.com/digital-cameras/nikon+ikelite/products~linkin_id-7000610Bowerhttp://www.shopping.com/digital-cameras/nikon+bower/products~linkin_id-7000610FUJIFILMhttp://www.shopping.com/digital-cameras/nikon+brand-fuji/products~linkin_id-7000610Storehttp://www.shopping.com/digital-cameras/nikon/products~all-store~MS-1?oq=nikon&linkin_id=7000610Amazon Marketplacehttp://www.shopping.com/digital-cameras/nikon+store-amazon-marketplace-9689/products~linkin_id-7000610Amazonhttp://www.shopping.com/digital-cameras/nikon+store-amazon/products~linkin_id-7000610Adoramahttp://www.shopping.com/digital-cameras/nikon+store-adorama/products~linkin_id-7000610J&R Music and Computer Worldhttp://www.shopping.com/digital-cameras/nikon+store-j-r-music-and-computer-world/products~linkin_id-7000610RytherCamera.comhttp://www.shopping.com/digital-cameras/nikon+store-rythercamera-com/products~linkin_id-7000610Resolutionhttp://www.shopping.com/digital-cameras/nikon/products~all-21885-resolution~MS-1?oq=nikon&linkin_id=7000610Under 4 Megapixelhttp://www.shopping.com/digital-cameras/nikon+under-4-megapixel/products~linkin_id-7000610At least 5 Megapixelhttp://www.shopping.com/digital-cameras/nikon+5-megapixel-digital-cameras/products~linkin_id-7000610At least 6 Megapixelhttp://www.shopping.com/digital-cameras/nikon+6-megapixel-digital-cameras/products~linkin_id-7000610At least 7 Megapixelhttp://www.shopping.com/digital-cameras/nikon+7-megapixel-digital-cameras/products~linkin_id-7000610At least 8 Megapixelhttp://www.shopping.com/digital-cameras/nikon+8-megapixel-digital-cameras/products~linkin_id-7000610Featureshttp://www.shopping.com/digital-cameras/nikon/products~all-32804-features~MS-1?oq=nikon&linkin_id=7000610Shockproofhttp://www.shopping.com/digital-cameras/nikon+32804-features-shockproof/products~linkin_id-7000610Waterproofhttp://www.shopping.com/digital-cameras/nikon+32804-features-waterproof/products~linkin_id-7000610Freezeproofhttp://www.shopping.com/digital-cameras/nikon+32804-features-freezeproof/products~linkin_id-7000610Dust proofhttp://www.shopping.com/digital-cameras/nikon+32804-features-dust-proof/products~linkin_id-7000610Image Stabilizationhttp://www.shopping.com/digital-cameras/nikon+32804-features-image-stabilization/products~linkin_id-7000610hybriddigital camerag1sonycameracanonnikonkodak digital camerakodaksony cybershotkodak easyshare digital cameranikon coolpixolympuspink digital cameracanon powershot \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/strict.dtd b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/strict.dtd new file mode 100644 index 0000000..b274559 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/strict.dtd @@ -0,0 +1,870 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +%HTMLlat1; + + +%HTMLsymbol; + + +%HTMLspecial; + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/test.html b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/test.html new file mode 100644 index 0000000..61f8f1a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/test.html @@ -0,0 +1,15 @@ + + + + + testing the parser + + + +

hello + + + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/test.xml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/test.xml new file mode 100644 index 0000000..801292d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/examples/test.xml @@ -0,0 +1,1254 @@ + + +]> + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + + Some Text + + + + + + + are ok in here. ]]> + + Pre-Text & Inlined text Post-text. +  + + \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/lib/sax.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/lib/sax.js new file mode 100644 index 0000000..fbcd3dc --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/lib/sax.js @@ -0,0 +1,1430 @@ +// wrapper for non-node envs +;(function (sax) { + +sax.parser = function (strict, opt) { return new SAXParser(strict, opt) } +sax.SAXParser = SAXParser +sax.SAXStream = SAXStream +sax.createStream = createStream + +// When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns. +// When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)), +// since that's the earliest that a buffer overrun could occur. This way, checks are +// as rare as required, but as often as necessary to ensure never crossing this bound. +// Furthermore, buffers are only tested at most once per write(), so passing a very +// large string into write() might have undesirable effects, but this is manageable by +// the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme +// edge case, result in creating at most one complete copy of the string passed in. +// Set to Infinity to have unlimited buffers. +sax.MAX_BUFFER_LENGTH = 64 * 1024 + +var buffers = [ + "comment", "sgmlDecl", "textNode", "tagName", "doctype", + "procInstName", "procInstBody", "entity", "attribName", + "attribValue", "cdata", "script" +] + +sax.EVENTS = // for discoverability. + [ "text" + , "processinginstruction" + , "sgmldeclaration" + , "doctype" + , "comment" + , "attribute" + , "opentag" + , "closetag" + , "opencdata" + , "cdata" + , "closecdata" + , "error" + , "end" + , "ready" + , "script" + , "opennamespace" + , "closenamespace" + ] + +function SAXParser (strict, opt) { + if (!(this instanceof SAXParser)) return new SAXParser(strict, opt) + + var parser = this + clearBuffers(parser) + parser.q = parser.c = "" + parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH + parser.opt = opt || {} + parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags + parser.looseCase = parser.opt.lowercase ? "toLowerCase" : "toUpperCase" + parser.tags = [] + parser.closed = parser.closedRoot = parser.sawRoot = false + parser.tag = parser.error = null + parser.strict = !!strict + parser.noscript = !!(strict || parser.opt.noscript) + parser.state = S.BEGIN + parser.strictEntities = parser.opt.strictEntities + parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES) + parser.attribList = [] + + // namespaces form a prototype chain. + // it always points at the current tag, + // which protos to its parent tag. + if (parser.opt.xmlns) parser.ns = Object.create(rootNS) + + // mostly just for error reporting + parser.trackPosition = parser.opt.position !== false + if (parser.trackPosition) { + parser.position = parser.line = parser.column = 0 + } + emit(parser, "onready") +} + +if (!Object.create) Object.create = function (o) { + function f () { this.__proto__ = o } + f.prototype = o + return new f +} + +if (!Object.getPrototypeOf) Object.getPrototypeOf = function (o) { + return o.__proto__ +} + +if (!Object.keys) Object.keys = function (o) { + var a = [] + for (var i in o) if (o.hasOwnProperty(i)) a.push(i) + return a +} + +function checkBufferLength (parser) { + var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10) + , maxActual = 0 + for (var i = 0, l = buffers.length; i < l; i ++) { + var len = parser[buffers[i]].length + if (len > maxAllowed) { + // Text/cdata nodes can get big, and since they're buffered, + // we can get here under normal conditions. + // Avoid issues by emitting the text node now, + // so at least it won't get any bigger. + switch (buffers[i]) { + case "textNode": + closeText(parser) + break + + case "cdata": + emitNode(parser, "oncdata", parser.cdata) + parser.cdata = "" + break + + case "script": + emitNode(parser, "onscript", parser.script) + parser.script = "" + break + + default: + error(parser, "Max buffer length exceeded: "+buffers[i]) + } + } + maxActual = Math.max(maxActual, len) + } + // schedule the next check for the earliest possible buffer overrun. + parser.bufferCheckPosition = (sax.MAX_BUFFER_LENGTH - maxActual) + + parser.position +} + +function clearBuffers (parser) { + for (var i = 0, l = buffers.length; i < l; i ++) { + parser[buffers[i]] = "" + } +} + +function flushBuffers (parser) { + closeText(parser) + if (parser.cdata !== "") { + emitNode(parser, "oncdata", parser.cdata) + parser.cdata = "" + } + if (parser.script !== "") { + emitNode(parser, "onscript", parser.script) + parser.script = "" + } +} + +SAXParser.prototype = + { end: function () { end(this) } + , write: write + , resume: function () { this.error = null; return this } + , close: function () { return this.write(null) } + , flush: function () { flushBuffers(this) } + } + +try { + var Stream = require("stream").Stream +} catch (ex) { + var Stream = function () {} +} + + +var streamWraps = sax.EVENTS.filter(function (ev) { + return ev !== "error" && ev !== "end" +}) + +function createStream (strict, opt) { + return new SAXStream(strict, opt) +} + +function SAXStream (strict, opt) { + if (!(this instanceof SAXStream)) return new SAXStream(strict, opt) + + Stream.apply(this) + + this._parser = new SAXParser(strict, opt) + this.writable = true + this.readable = true + + + var me = this + + this._parser.onend = function () { + me.emit("end") + } + + this._parser.onerror = function (er) { + me.emit("error", er) + + // if didn't throw, then means error was handled. + // go ahead and clear error, so we can write again. + me._parser.error = null + } + + this._decoder = null; + + streamWraps.forEach(function (ev) { + Object.defineProperty(me, "on" + ev, { + get: function () { return me._parser["on" + ev] }, + set: function (h) { + if (!h) { + me.removeAllListeners(ev) + return me._parser["on"+ev] = h + } + me.on(ev, h) + }, + enumerable: true, + configurable: false + }) + }) +} + +SAXStream.prototype = Object.create(Stream.prototype, + { constructor: { value: SAXStream } }) + +SAXStream.prototype.write = function (data) { + if (typeof Buffer === 'function' && + typeof Buffer.isBuffer === 'function' && + Buffer.isBuffer(data)) { + if (!this._decoder) { + var SD = require('string_decoder').StringDecoder + this._decoder = new SD('utf8') + } + data = this._decoder.write(data); + } + + this._parser.write(data.toString()) + this.emit("data", data) + return true +} + +SAXStream.prototype.end = function (chunk) { + if (chunk && chunk.length) this.write(chunk) + this._parser.end() + return true +} + +SAXStream.prototype.on = function (ev, handler) { + var me = this + if (!me._parser["on"+ev] && streamWraps.indexOf(ev) !== -1) { + me._parser["on"+ev] = function () { + var args = arguments.length === 1 ? [arguments[0]] + : Array.apply(null, arguments) + args.splice(0, 0, ev) + me.emit.apply(me, args) + } + } + + return Stream.prototype.on.call(me, ev, handler) +} + + + +// character classes and tokens +var whitespace = "\r\n\t " + // this really needs to be replaced with character classes. + // XML allows all manner of ridiculous numbers and digits. + , number = "0124356789" + , letter = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" + // (Letter | "_" | ":") + , quote = "'\"" + , entity = number+letter+"#" + , attribEnd = whitespace + ">" + , CDATA = "[CDATA[" + , DOCTYPE = "DOCTYPE" + , XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace" + , XMLNS_NAMESPACE = "http://www.w3.org/2000/xmlns/" + , rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE } + +// turn all the string character sets into character class objects. +whitespace = charClass(whitespace) +number = charClass(number) +letter = charClass(letter) + +// http://www.w3.org/TR/REC-xml/#NT-NameStartChar +// This implementation works on strings, a single character at a time +// as such, it cannot ever support astral-plane characters (10000-EFFFF) +// without a significant breaking change to either this parser, or the +// JavaScript language. Implementation of an emoji-capable xml parser +// is left as an exercise for the reader. +var nameStart = /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/ + +var nameBody = /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040\.\d-]/ + +quote = charClass(quote) +entity = charClass(entity) +attribEnd = charClass(attribEnd) + +function charClass (str) { + return str.split("").reduce(function (s, c) { + s[c] = true + return s + }, {}) +} + +function isRegExp (c) { + return Object.prototype.toString.call(c) === '[object RegExp]' +} + +function is (charclass, c) { + return isRegExp(charclass) ? !!c.match(charclass) : charclass[c] +} + +function not (charclass, c) { + return !is(charclass, c) +} + +var S = 0 +sax.STATE = +{ BEGIN : S++ // leading byte order mark or whitespace +, BEGIN_WHITESPACE : S++ // leading whitespace +, TEXT : S++ // general stuff +, TEXT_ENTITY : S++ // & and such. +, OPEN_WAKA : S++ // < +, SGML_DECL : S++ // +, SCRIPT : S++ // " + , expect : + [ [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ] + , [ "opentag", { name: "script", attributes: {}, isSelfClosing: false } ] + , [ "text", "hello world" ] + , [ "closetag", "script" ] + , [ "closetag", "xml" ] + ] + , strict : false + , opt : { lowercasetags: true, noscript: true } + } + ) + +require(__dirname).test + ( { xml : "" + , expect : + [ [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ] + , [ "opentag", { name: "script", attributes: {}, isSelfClosing: false } ] + , [ "opencdata", undefined ] + , [ "cdata", "hello world" ] + , [ "closecdata", undefined ] + , [ "closetag", "script" ] + , [ "closetag", "xml" ] + ] + , strict : false + , opt : { lowercasetags: true, noscript: true } + } + ) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/issue-84.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/issue-84.js new file mode 100644 index 0000000..0e7ee69 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/issue-84.js @@ -0,0 +1,13 @@ +// https://github.com/isaacs/sax-js/issues/49 +require(__dirname).test + ( { xml : "body" + , expect : + [ [ "processinginstruction", { name: "has", body: "unbalanced \"quotes" } ], + [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ] + , [ "text", "body" ] + , [ "closetag", "xml" ] + ] + , strict : false + , opt : { lowercasetags: true, noscript: true } + } + ) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/issue-86.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/issue-86.js new file mode 100644 index 0000000..c776ad8 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/issue-86.js @@ -0,0 +1,30 @@ +require(__dirname).test + ( { xml : "abcdeabcdeabcdefgh'], + [ ['opentag', { position: 5, startTagPosition: 1 }] + , ['text', { position: 19, startTagPosition: 14 }] + , ['closetag', { position: 19, startTagPosition: 14 }] + ]); + +testPosition(['

abcde','fgh
'], + [ ['opentag', { position: 5, startTagPosition: 1 }] + , ['text', { position: 19, startTagPosition: 14 }] + , ['closetag', { position: 19, startTagPosition: 14 }] + ]); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/script-close-better.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/script-close-better.js new file mode 100644 index 0000000..f4887b9 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/script-close-better.js @@ -0,0 +1,12 @@ +require(__dirname).test({ + xml : "", + expect : [ + ["opentag", {"name": "HTML","attributes": {}, isSelfClosing: false}], + ["opentag", {"name": "HEAD","attributes": {}, isSelfClosing: false}], + ["opentag", {"name": "SCRIPT","attributes": {}, isSelfClosing: false}], + ["script", "'
foo
", + expect : [ + ["opentag", {"name": "HTML","attributes": {}, "isSelfClosing": false}], + ["opentag", {"name": "HEAD","attributes": {}, "isSelfClosing": false}], + ["opentag", {"name": "SCRIPT","attributes": {}, "isSelfClosing": false}], + ["script", "if (1 < 0) { console.log('elo there'); }"], + ["closetag", "SCRIPT"], + ["closetag", "HEAD"], + ["closetag", "HTML"] + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-child-strict.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-child-strict.js new file mode 100644 index 0000000..3d6e985 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-child-strict.js @@ -0,0 +1,44 @@ + +require(__dirname).test({ + xml : + ""+ + "" + + "" + + "" + + "" + + "=(|)" + + "" + + "", + expect : [ + ["opentag", { + "name": "root", + "attributes": {}, + "isSelfClosing": false + }], + ["opentag", { + "name": "child", + "attributes": {}, + "isSelfClosing": false + }], + ["opentag", { + "name": "haha", + "attributes": {}, + "isSelfClosing": true + }], + ["closetag", "haha"], + ["closetag", "child"], + ["opentag", { + "name": "monkey", + "attributes": {}, + "isSelfClosing": false + }], + ["text", "=(|)"], + ["closetag", "monkey"], + ["closetag", "root"], + ["end"], + ["ready"] + ], + strict : true, + opt : {} +}); + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-child.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-child.js new file mode 100644 index 0000000..f31c366 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-child.js @@ -0,0 +1,44 @@ + +require(__dirname).test({ + xml : + ""+ + "" + + "" + + "" + + "" + + "=(|)" + + "" + + "", + expect : [ + ["opentag", { + "name": "ROOT", + "attributes": {}, + "isSelfClosing": false + }], + ["opentag", { + "name": "CHILD", + "attributes": {}, + "isSelfClosing": false + }], + ["opentag", { + "name": "HAHA", + "attributes": {}, + "isSelfClosing": true + }], + ["closetag", "HAHA"], + ["closetag", "CHILD"], + ["opentag", { + "name": "MONKEY", + "attributes": {}, + "isSelfClosing": false + }], + ["text", "=(|)"], + ["closetag", "MONKEY"], + ["closetag", "ROOT"], + ["end"], + ["ready"] + ], + strict : false, + opt : {} +}); + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-tag.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-tag.js new file mode 100644 index 0000000..d1d8b7c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/self-closing-tag.js @@ -0,0 +1,25 @@ + +require(__dirname).test({ + xml : + " "+ + " "+ + " "+ + " "+ + "=(|) "+ + ""+ + " ", + expect : [ + ["opentag", {name:"ROOT", attributes:{}, isSelfClosing: false}], + ["opentag", {name:"HAHA", attributes:{}, isSelfClosing: true}], + ["closetag", "HAHA"], + ["opentag", {name:"HAHA", attributes:{}, isSelfClosing: true}], + ["closetag", "HAHA"], + // ["opentag", {name:"HAHA", attributes:{}}], + // ["closetag", "HAHA"], + ["opentag", {name:"MONKEY", attributes:{}, isSelfClosing: false}], + ["text", "=(|)"], + ["closetag", "MONKEY"], + ["closetag", "ROOT"] + ], + opt : { trim : true } +}); \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/stand-alone-comment.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/stand-alone-comment.js new file mode 100644 index 0000000..81ff761 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/stand-alone-comment.js @@ -0,0 +1,11 @@ +// https://github.com/isaacs/sax-js/issues/124 +require(__dirname).test + ( { xml : "" + + , expect : + [ [ "comment", " stand alone comment " ] ] + , strict : true + , opt : {} + } + ) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/stray-ending.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/stray-ending.js new file mode 100644 index 0000000..bec467b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/stray-ending.js @@ -0,0 +1,17 @@ +// stray ending tags should just be ignored in non-strict mode. +// https://github.com/isaacs/sax-js/issues/32 +require(__dirname).test + ( { xml : + "" + , expect : + [ [ "opentag", { name: "A", attributes: {}, isSelfClosing: false } ] + , [ "opentag", { name: "B", attributes: {}, isSelfClosing: false } ] + , [ "text", "" ] + , [ "closetag", "B" ] + , [ "closetag", "A" ] + ] + , strict : false + , opt : {} + } + ) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/trailing-attribute-no-value.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/trailing-attribute-no-value.js new file mode 100644 index 0000000..222837f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/trailing-attribute-no-value.js @@ -0,0 +1,10 @@ + +require(__dirname).test({ + xml : + "", + expect : [ + ["attribute", {name:"ATTRIB", value:"attrib"}], + ["opentag", {name:"ROOT", attributes:{"ATTRIB":"attrib"}, isSelfClosing: false}] + ], + opt : { trim : true } +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/trailing-non-whitespace.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/trailing-non-whitespace.js new file mode 100644 index 0000000..619578b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/trailing-non-whitespace.js @@ -0,0 +1,18 @@ + +require(__dirname).test({ + xml : "Welcome, to monkey land", + expect : [ + ["opentag", { + "name": "SPAN", + "attributes": {}, + isSelfClosing: false + }], + ["text", "Welcome,"], + ["closetag", "SPAN"], + ["text", " to monkey land"], + ["end"], + ["ready"] + ], + strict : false, + opt : {} +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/unclosed-root.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/unclosed-root.js new file mode 100644 index 0000000..f4eeac6 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/unclosed-root.js @@ -0,0 +1,11 @@ +require(__dirname).test + ( { xml : "" + + , expect : + [ [ "opentag", { name: "root", attributes: {}, isSelfClosing: false } ] + , [ "error", "Unclosed root tag\nLine: 0\nColumn: 6\nChar: " ] + ] + , strict : true + , opt : {} + } + ) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/unquoted.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/unquoted.js new file mode 100644 index 0000000..b3a9a81 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/unquoted.js @@ -0,0 +1,18 @@ +// unquoted attributes should be ok in non-strict mode +// https://github.com/isaacs/sax-js/issues/31 +require(__dirname).test + ( { xml : + "" + , expect : + [ [ "attribute", { name: "CLASS", value: "test" } ] + , [ "attribute", { name: "HELLO", value: "world" } ] + , [ "opentag", { name: "SPAN", + attributes: { CLASS: "test", HELLO: "world" }, + isSelfClosing: false } ] + , [ "closetag", "SPAN" ] + ] + , strict : false + , opt : {} + } + ) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/utf8-split.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/utf8-split.js new file mode 100644 index 0000000..d5318af --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/utf8-split.js @@ -0,0 +1,34 @@ +var assert = require('assert') +var saxStream = require('../lib/sax').createStream() + +var b = new Buffer('误') + +saxStream.on('text', function(text) { + assert.equal(text, b.toString()) +}) + +saxStream.write(new Buffer('')) +saxStream.write(b.slice(0, 1)) +saxStream.write(b.slice(1)) +saxStream.write(new Buffer('')) +saxStream.write(b.slice(0, 2)) +saxStream.write(b.slice(2)) +saxStream.write(new Buffer('')) +saxStream.write(b) +saxStream.write(new Buffer('')) +saxStream.write(Buffer.concat([new Buffer(''), b.slice(0, 1)])) +saxStream.end(Buffer.concat([b.slice(1), new Buffer('')])) + +var saxStream2 = require('../lib/sax').createStream() + +saxStream2.on('text', function(text) { + assert.equal(text, '�') +}); + +saxStream2.write(new Buffer('')); +saxStream2.write(new Buffer('')); +saxStream2.write(new Buffer([0xC0])); +saxStream2.write(new Buffer('')); +saxStream2.write(Buffer.concat([new Buffer(''), b.slice(0,1)])); +saxStream2.write(new Buffer('')); +saxStream2.end(); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xml_entities.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xml_entities.js new file mode 100644 index 0000000..d72291f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xml_entities.js @@ -0,0 +1,11 @@ +require(__dirname).test({ + opt: { strictEntities: true }, + xml: '⌋ ' + + '♠ © → & ' + + '< < < < < > ℜ ℘ €', + expect: [ + ['opentag', {'name':'R', attributes:{}, isSelfClosing: false}], + ['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'], + ['closetag', 'R'] + ] +}); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-as-tag-name.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-as-tag-name.js new file mode 100644 index 0000000..99142ca --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-as-tag-name.js @@ -0,0 +1,15 @@ + +require(__dirname).test + ( { xml : + "" + , expect : + [ [ "opentag", { name: "xmlns", uri: "", prefix: "", local: "xmlns", + attributes: {}, ns: {}, + isSelfClosing: true} + ], + ["closetag", "xmlns"] + ] + , strict : true + , opt : { xmlns: true } + } + ); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-issue-41.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-issue-41.js new file mode 100644 index 0000000..17ab45a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-issue-41.js @@ -0,0 +1,68 @@ +var t = require(__dirname) + + , xmls = // should be the same both ways. + [ "" + , "" ] + + , ex1 = + [ [ "opennamespace" + , { prefix: "a" + , uri: "http://ATTRIBUTE" + } + ] + , [ "attribute" + , { name: "xmlns:a" + , value: "http://ATTRIBUTE" + , prefix: "xmlns" + , local: "a" + , uri: "http://www.w3.org/2000/xmlns/" + } + ] + , [ "attribute" + , { name: "a:attr" + , local: "attr" + , prefix: "a" + , uri: "http://ATTRIBUTE" + , value: "value" + } + ] + , [ "opentag" + , { name: "parent" + , uri: "" + , prefix: "" + , local: "parent" + , attributes: + { "a:attr": + { name: "a:attr" + , local: "attr" + , prefix: "a" + , uri: "http://ATTRIBUTE" + , value: "value" + } + , "xmlns:a": + { name: "xmlns:a" + , local: "a" + , prefix: "xmlns" + , uri: "http://www.w3.org/2000/xmlns/" + , value: "http://ATTRIBUTE" + } + } + , ns: {"a": "http://ATTRIBUTE"} + , isSelfClosing: true + } + ] + , ["closetag", "parent"] + , ["closenamespace", { prefix: "a", uri: "http://ATTRIBUTE" }] + ] + + // swap the order of elements 2 and 1 + , ex2 = [ex1[0], ex1[2], ex1[1]].concat(ex1.slice(3)) + , expected = [ex1, ex2] + +xmls.forEach(function (x, i) { + t.test({ xml: x + , expect: expected[i] + , strict: true + , opt: { xmlns: true } + }) +}) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-rebinding.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-rebinding.js new file mode 100644 index 0000000..07e0425 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-rebinding.js @@ -0,0 +1,63 @@ + +require(__dirname).test + ( { xml : + ""+ + ""+ + ""+ + ""+ + ""+ + "" + + , expect : + [ [ "opennamespace", { prefix: "x", uri: "x1" } ] + , [ "opennamespace", { prefix: "y", uri: "y1" } ] + , [ "attribute", { name: "xmlns:x", value: "x1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } ] + , [ "attribute", { name: "xmlns:y", value: "y1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "y" } ] + , [ "attribute", { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } ] + , [ "attribute", { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } ] + , [ "opentag", { name: "root", uri: "", prefix: "", local: "root", + attributes: { "xmlns:x": { name: "xmlns:x", value: "x1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } + , "xmlns:y": { name: "xmlns:y", value: "y1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "y" } + , "x:a": { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } + , "y:a": { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } }, + ns: { x: 'x1', y: 'y1' }, + isSelfClosing: false } ] + + , [ "opennamespace", { prefix: "x", uri: "x2" } ] + , [ "attribute", { name: "xmlns:x", value: "x2", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } ] + , [ "opentag", { name: "rebind", uri: "", prefix: "", local: "rebind", + attributes: { "xmlns:x": { name: "xmlns:x", value: "x2", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } }, + ns: { x: 'x2' }, + isSelfClosing: false } ] + + , [ "attribute", { name: "x:a", value: "x2", uri: "x2", prefix: "x", local: "a" } ] + , [ "attribute", { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } ] + , [ "opentag", { name: "check", uri: "", prefix: "", local: "check", + attributes: { "x:a": { name: "x:a", value: "x2", uri: "x2", prefix: "x", local: "a" } + , "y:a": { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } }, + ns: { x: 'x2' }, + isSelfClosing: true } ] + + , [ "closetag", "check" ] + + , [ "closetag", "rebind" ] + , [ "closenamespace", { prefix: "x", uri: "x2" } ] + + , [ "attribute", { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } ] + , [ "attribute", { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } ] + , [ "opentag", { name: "check", uri: "", prefix: "", local: "check", + attributes: { "x:a": { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } + , "y:a": { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } }, + ns: { x: 'x1', y: 'y1' }, + isSelfClosing: true } ] + , [ "closetag", "check" ] + + , [ "closetag", "root" ] + , [ "closenamespace", { prefix: "x", uri: "x1" } ] + , [ "closenamespace", { prefix: "y", uri: "y1" } ] + ] + , strict : true + , opt : { xmlns: true } + } + ) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-strict.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-strict.js new file mode 100644 index 0000000..b5e3e51 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-strict.js @@ -0,0 +1,74 @@ + +require(__dirname).test + ( { xml : + ""+ + ""+ + ""+ + ""+ + ""+ + ""+ + ""+ + ""+ + ""+ + "" + + , expect : + [ [ "opentag", { name: "root", prefix: "", local: "root", uri: "", + attributes: {}, ns: {}, isSelfClosing: false } ] + + , [ "attribute", { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } ] + , [ "opentag", { name: "plain", prefix: "", local: "plain", uri: "", + attributes: { "attr": { name: "attr", value: "normal", uri: "", prefix: "", local: "attr", uri: "" } }, + ns: {}, isSelfClosing: true } ] + , [ "closetag", "plain" ] + + , [ "opennamespace", { prefix: "", uri: "uri:default" } ] + + , [ "attribute", { name: "xmlns", value: "uri:default", prefix: "xmlns", local: "", uri: "http://www.w3.org/2000/xmlns/" } ] + , [ "opentag", { name: "ns1", prefix: "", local: "ns1", uri: "uri:default", + attributes: { "xmlns": { name: "xmlns", value: "uri:default", prefix: "xmlns", local: "", uri: "http://www.w3.org/2000/xmlns/" } }, + ns: { "": "uri:default" }, isSelfClosing: false } ] + + , [ "attribute", { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } ] + , [ "opentag", { name: "plain", prefix: "", local: "plain", uri: "uri:default", ns: { '': 'uri:default' }, + attributes: { "attr": { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } }, + isSelfClosing: true } ] + , [ "closetag", "plain" ] + + , [ "closetag", "ns1" ] + + , [ "closenamespace", { prefix: "", uri: "uri:default" } ] + + , [ "opennamespace", { prefix: "a", uri: "uri:nsa" } ] + + , [ "attribute", { name: "xmlns:a", value: "uri:nsa", prefix: "xmlns", local: "a", uri: "http://www.w3.org/2000/xmlns/" } ] + + , [ "opentag", { name: "ns2", prefix: "", local: "ns2", uri: "", + attributes: { "xmlns:a": { name: "xmlns:a", value: "uri:nsa", prefix: "xmlns", local: "a", uri: "http://www.w3.org/2000/xmlns/" } }, + ns: { a: "uri:nsa" }, isSelfClosing: false } ] + + , [ "attribute", { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } ] + , [ "opentag", { name: "plain", prefix: "", local: "plain", uri: "", + attributes: { "attr": { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } }, + ns: { a: 'uri:nsa' }, + isSelfClosing: true } ] + , [ "closetag", "plain" ] + + , [ "attribute", { name: "a:attr", value: "namespaced", prefix: "a", local: "attr", uri: "uri:nsa" } ] + , [ "opentag", { name: "a:ns", prefix: "a", local: "ns", uri: "uri:nsa", + attributes: { "a:attr": { name: "a:attr", value: "namespaced", prefix: "a", local: "attr", uri: "uri:nsa" } }, + ns: { a: 'uri:nsa' }, + isSelfClosing: true } ] + , [ "closetag", "a:ns" ] + + , [ "closetag", "ns2" ] + + , [ "closenamespace", { prefix: "a", uri: "uri:nsa" } ] + + , [ "closetag", "root" ] + ] + , strict : true + , opt : { xmlns: true } + } + ) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-unbound-element.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-unbound-element.js new file mode 100644 index 0000000..9d031a2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-unbound-element.js @@ -0,0 +1,33 @@ +require(__dirname).test( + { strict : true + , opt : { xmlns: true } + , expect : + [ [ "error", "Unbound namespace prefix: \"unbound:root\"\nLine: 0\nColumn: 15\nChar: >"] + , [ "opentag", { name: "unbound:root", uri: "unbound", prefix: "unbound", local: "root" + , attributes: {}, ns: {}, isSelfClosing: true } ] + , [ "closetag", "unbound:root" ] + ] + } +).write(""); + +require(__dirname).test( + { strict : true + , opt : { xmlns: true } + , expect : + [ [ "opennamespace", { prefix: "unbound", uri: "someuri" } ] + , [ "attribute", { name: 'xmlns:unbound', value: 'someuri' + , prefix: 'xmlns', local: 'unbound' + , uri: 'http://www.w3.org/2000/xmlns/' } ] + , [ "opentag", { name: "unbound:root", uri: "someuri", prefix: "unbound", local: "root" + , attributes: { 'xmlns:unbound': { + name: 'xmlns:unbound' + , value: 'someuri' + , prefix: 'xmlns' + , local: 'unbound' + , uri: 'http://www.w3.org/2000/xmlns/' } } + , ns: { "unbound": "someuri" }, isSelfClosing: true } ] + , [ "closetag", "unbound:root" ] + , [ "closenamespace", { prefix: 'unbound', uri: 'someuri' }] + ] + } +).write(""); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-unbound.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-unbound.js new file mode 100644 index 0000000..b740e26 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-unbound.js @@ -0,0 +1,15 @@ + +require(__dirname).test( + { strict : true + , opt : { xmlns: true } + , expect : + [ ["error", "Unbound namespace prefix: \"unbound\"\nLine: 0\nColumn: 28\nChar: >"] + + , [ "attribute", { name: "unbound:attr", value: "value", uri: "unbound", prefix: "unbound", local: "attr" } ] + , [ "opentag", { name: "root", uri: "", prefix: "", local: "root", + attributes: { "unbound:attr": { name: "unbound:attr", value: "value", uri: "unbound", prefix: "unbound", local: "attr" } }, + ns: {}, isSelfClosing: true } ] + , [ "closetag", "root" ] + ] + } +).write("") diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-ns.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-ns.js new file mode 100644 index 0000000..b1984d2 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-ns.js @@ -0,0 +1,31 @@ +var xmlns_attr = +{ + name: "xmlns", value: "http://foo", prefix: "xmlns", + local: "", uri : "http://www.w3.org/2000/xmlns/" +}; + +var attr_attr = +{ + name: "attr", value: "bar", prefix: "", + local : "attr", uri : "" +}; + + +require(__dirname).test + ( { xml : + "" + , expect : + [ [ "opennamespace", { prefix: "", uri: "http://foo" } ] + , [ "attribute", xmlns_attr ] + , [ "attribute", attr_attr ] + , [ "opentag", { name: "elm", prefix: "", local: "elm", uri : "http://foo", + ns : { "" : "http://foo" }, + attributes: { xmlns: xmlns_attr, attr: attr_attr }, + isSelfClosing: true } ] + , [ "closetag", "elm" ] + , [ "closenamespace", { prefix: "", uri: "http://foo"} ] + ] + , strict : true + , opt : {xmlns: true} + } + ) diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-prefix-attribute.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-prefix-attribute.js new file mode 100644 index 0000000..e41f218 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-prefix-attribute.js @@ -0,0 +1,36 @@ +require(__dirname).test( + { xml : "" + , expect : + [ [ "attribute" + , { name: "xml:lang" + , local: "lang" + , prefix: "xml" + , uri: "http://www.w3.org/XML/1998/namespace" + , value: "en" + } + ] + , [ "opentag" + , { name: "root" + , uri: "" + , prefix: "" + , local: "root" + , attributes: + { "xml:lang": + { name: "xml:lang" + , local: "lang" + , prefix: "xml" + , uri: "http://www.w3.org/XML/1998/namespace" + , value: "en" + } + } + , ns: {} + , isSelfClosing: true + } + ] + , ["closetag", "root"] + ] + , strict : true + , opt : { xmlns: true } + } +) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-prefix.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-prefix.js new file mode 100644 index 0000000..a85b478 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-prefix.js @@ -0,0 +1,21 @@ +require(__dirname).test( + { xml : "" + , expect : + [ + [ "opentag" + , { name: "xml:root" + , uri: "http://www.w3.org/XML/1998/namespace" + , prefix: "xml" + , local: "root" + , attributes: {} + , ns: {} + , isSelfClosing: true + } + ] + , ["closetag", "xml:root"] + ] + , strict : true + , opt : { xmlns: true } + } +) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-redefine.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-redefine.js new file mode 100644 index 0000000..d35d5a0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/sax/test/xmlns-xml-default-redefine.js @@ -0,0 +1,41 @@ +require(__dirname).test( + { xml : "" + , expect : + [ ["error" + , "xml: prefix must be bound to http://www.w3.org/XML/1998/namespace\n" + + "Actual: ERROR\n" + + "Line: 0\nColumn: 27\nChar: '" + ] + , [ "attribute" + , { name: "xmlns:xml" + , local: "xml" + , prefix: "xmlns" + , uri: "http://www.w3.org/2000/xmlns/" + , value: "ERROR" + } + ] + , [ "opentag" + , { name: "xml:root" + , uri: "http://www.w3.org/XML/1998/namespace" + , prefix: "xml" + , local: "root" + , attributes: + { "xmlns:xml": + { name: "xmlns:xml" + , local: "xml" + , prefix: "xmlns" + , uri: "http://www.w3.org/2000/xmlns/" + , value: "ERROR" + } + } + , ns: {} + , isSelfClosing: true + } + ] + , ["closetag", "xml:root"] + ] + , strict : true + , opt : { xmlns: true } + } +) + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/.npmignore b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/.npmignore new file mode 100644 index 0000000..5f53129 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/.npmignore @@ -0,0 +1,3 @@ +support +examples +*.sock diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/.travis.yml b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/.travis.yml new file mode 100644 index 0000000..de6634c --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/.travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - 0.6 + - 0.8 \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/Cakefile b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/Cakefile new file mode 100644 index 0000000..2c62c15 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/Cakefile @@ -0,0 +1,52 @@ +fs = require 'fs' +CoffeeScript = require 'coffee-script' +{spawn, exec} = require 'child_process' + +# ANSI Terminal Colors. +enableColors = no +unless process.platform is 'win32' + enableColors = not process.env.NODE_DISABLE_COLORS + +bold = red = green = reset = '' +if enableColors + bold = '\x1B[0;1m' + red = '\x1B[0;31m' + green = '\x1B[0;32m' + reset = '\x1B[0m' + + +### +Just proc extender +### +proc_extender = (cb, proc) => + proc.stderr.on 'data', (buffer) -> console.log "#{buffer}" + # proc.stdout.on 'data', (buffer) -> console.log "#{buffer}".info + proc.on 'exit', (status) -> + process.exit(1) if status != 0 + cb() if typeof cb is 'function' + null + +# Run a CoffeeScript through our node/coffee interpreter. +run_coffee = (args, cb) => + proc_extender cb, spawn 'node', ['./node_modules/.bin/coffee'].concat(args) + +# Run a mocha tests +run_mocha = (args, cb) => + proc_extender cb, spawn 'node', ['./node_modules/.bin/mocha'].concat(args) + +# Log a message with a color. +log = (message, color, explanation) -> + console.log color + message + reset + ' ' + (explanation or '') + + +task 'build', 'build module from source', build = (cb) -> + files = fs.readdirSync 'src' + files = ('src/' + file for file in files when file.match(/\.coffee$/)) + run_coffee ['-c', '-o', 'lib/'].concat(files), cb + log ' -> build done', green + +task 'test', 'test builded module', -> + build -> + test_file = './test/extend_test.coffee' + run_mocha test_file, -> log ' -> all tests passed :)', green + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/History.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/History.md new file mode 100644 index 0000000..51b6b5a --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/History.md @@ -0,0 +1,28 @@ +## 0.9.9 / 2013-01-28 01:20 AM + + - Re-write tests to Mocha + - Remove 'null' and 'undefined' filter + - Fix Cakefile + +## 0.9.7 / 2012-06-21 02:54 PM + + - Rename extend.{ext} -> whet.extend.{ext} + +## 0.9.5 / 2012-05-24 07:56 PM + + - Add travis-ci tests + - fix index.js + + +## 0.9.4 / 2012-05-24 03:08 PM + + - Move .coffee to ./scr, add compiled .js version to ./lib + - Move CoffeeScript to develop dependencies + - Add Cakefile + - Doc improved + - Small fix + + +## 0.9.1 / 2012-05-17 11:05 AM + + - Initial release \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/LICENSE b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/LICENSE new file mode 100644 index 0000000..eec600b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/LICENSE @@ -0,0 +1,22 @@ +Copyright (c) 2012 Dmitrii Karpich + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/Readme.md b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/Readme.md new file mode 100644 index 0000000..723158d --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/Readme.md @@ -0,0 +1,21 @@ +[![Build Status](https://secure.travis-ci.org/Meettya/whet.extend.png)](http://travis-ci.org/Meettya/whet.extend) + +# whet.extend + +A sharped version of node.extend as port of jQuery.extend that **actually works** on node.js + + + +## Description + +Its drop-in replacement of [node.extend](https://github.com/dreamerslab/node.extend), re-factored and re-written with CoffeeScript + +I just need some more CS practice AND its fun :) + + +## Usage + +Checkout the doc from [jQuery](http://api.jquery.com/jQuery.extend/) + + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/index.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/index.js new file mode 100644 index 0000000..22850e0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/index.js @@ -0,0 +1 @@ +module.exports = require( './lib/whet.extend' ); \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/lib/whet.extend.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/lib/whet.extend.js new file mode 100644 index 0000000..784d85b --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/lib/whet.extend.js @@ -0,0 +1,104 @@ +// Generated by CoffeeScript 1.3.3 + +/* + * whet.extend v0.9.7 + * Standalone port of jQuery.extend that actually works on node.js + * https://github.com/Meettya/whet.extend + * + * Copyright 2012, Dmitrii Karpich + * Released under the MIT License +*/ + + +(function() { + var extend, _findValue, _isClass, _isOwnProp, _isPlainObj, _isPrimitiveType, _isTypeOf, _prepareClone, + __slice = [].slice; + + module.exports = extend = function() { + var args, copy, deep, name, options, target, _i, _len, _ref; + deep = arguments[0], target = arguments[1], args = 3 <= arguments.length ? __slice.call(arguments, 2) : []; + if (!_isClass(deep, 'Boolean')) { + args.unshift(target); + _ref = [deep || {}, false], target = _ref[0], deep = _ref[1]; + } + if (_isPrimitiveType(target)) { + target = {}; + } + for (_i = 0, _len = args.length; _i < _len; _i++) { + options = args[_i]; + if (options != null) { + for (name in options) { + copy = options[name]; + target[name] = _findValue(deep, copy, target[name]); + } + } + } + return target; + }; + + /* + Internal methods from now + */ + + + _isClass = function(obj, str) { + return ("[object " + str + "]") === Object.prototype.toString.call(obj); + }; + + _isOwnProp = function(obj, prop) { + return Object.prototype.hasOwnProperty.call(obj, prop); + }; + + _isTypeOf = function(obj, str) { + return str === typeof obj; + }; + + _isPlainObj = function(obj) { + var key; + if (!obj) { + return false; + } + if (obj.nodeType || obj.setInterval || !_isClass(obj, 'Object')) { + return false; + } + if (obj.constructor && !_isOwnProp(obj, 'constructor') && !_isOwnProp(obj.constructor.prototype, 'isPrototypeOf')) { + return false; + } + for (key in obj) { + key; + + } + return key === void 0 || _isOwnProp(obj, key); + }; + + _isPrimitiveType = function(obj) { + return !(_isTypeOf(obj, 'object') || _isTypeOf(obj, 'function')); + }; + + _prepareClone = function(copy, src) { + if (_isClass(copy, 'Array')) { + if (_isClass(src, 'Array')) { + return src; + } else { + return []; + } + } else { + if (_isPlainObj(src)) { + return src; + } else { + return {}; + } + } + }; + + _findValue = function(deep, copy, src) { + var clone; + if (deep && (_isClass(copy, 'Array') || _isPlainObj(copy))) { + clone = _prepareClone(copy, src); + return extend(deep, clone, copy); + } else { + return copy; + } + }; + +}).call(this); diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/package.json new file mode 100644 index 0000000..32b9d52 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/package.json @@ -0,0 +1,61 @@ +{ + "name": "whet.extend", + "version": "0.9.9", + "description": "A sharped version of port of jQuery.extend that actually works on node.js", + "keywords": [ + "extend", + "jQuery", + "jQuery extend", + "clone", + "copy", + "inherit" + ], + "author": { + "name": "Dmitrii Karpich", + "email": "meettya@gmail.com" + }, + "devDependencies": { + "should": "0.5.1", + "coffee-script": ">=1.3.3", + "chai": "~1.4.2", + "mocha": "~1.8.1" + }, + "scripts": { + "test": "cake test" + }, + "repository": { + "type": "git", + "url": "https://github.com/Meettya/whet.extend.git" + }, + "main": "index.js", + "engines": { + "node": ">=0.6.0" + }, + "license": "MIT", + "readme": "[![Build Status](https://secure.travis-ci.org/Meettya/whet.extend.png)](http://travis-ci.org/Meettya/whet.extend)\n\n# whet.extend\n\nA sharped version of node.extend as port of jQuery.extend that **actually works** on node.js\n\n\n\n## Description\n\nIts drop-in replacement of [node.extend](https://github.com/dreamerslab/node.extend), re-factored and re-written with CoffeeScript\n\nI just need some more CS practice AND its fun :)\n\n\n## Usage\n\nCheckout the doc from [jQuery](http://api.jquery.com/jQuery.extend/)\n\n\n\n", + "readmeFilename": "Readme.md", + "_id": "whet.extend@0.9.9", + "dist": { + "shasum": "f877d5bf648c97e5aa542fadc16d6a259b9c11a1", + "tarball": "http://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz" + }, + "_npmVersion": "1.1.66", + "_npmUser": { + "name": "meettya", + "email": "meettya@gmail.com" + }, + "maintainers": [ + { + "name": "meettya", + "email": "meettya@gmail.com" + } + ], + "directories": {}, + "_shasum": "f877d5bf648c97e5aa542fadc16d6a259b9c11a1", + "_resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", + "_from": "whet.extend@>=0.9.9 <0.10.0", + "bugs": { + "url": "https://github.com/Meettya/whet.extend/issues" + }, + "homepage": "https://github.com/Meettya/whet.extend" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/src/whet.extend.coffee b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/src/whet.extend.coffee new file mode 100644 index 0000000..8bcfdc4 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/src/whet.extend.coffee @@ -0,0 +1,68 @@ +### + * whet.extend v0.9.7 + * Standalone port of jQuery.extend that actually works on node.js + * https://github.com/Meettya/whet.extend + * + * Copyright 2012, Dmitrii Karpich + * Released under the MIT License +### + +module.exports = extend = (deep, target, args...) -> + + unless _isClass deep, 'Boolean' + args.unshift target + [ target, deep ] = [ deep or {}, false ] + + #Handle case when target is a string or something (possible in deep copy) + target = {} if _isPrimitiveType target + + for options in args when options? + for name, copy of options + target[name] = _findValue deep, copy, target[name] + + target + +### +Internal methods from now +### + +_isClass = (obj, str) -> + "[object #{str}]" is Object::toString.call obj + +_isOwnProp = (obj, prop) -> + Object::hasOwnProperty.call obj, prop + +_isTypeOf = (obj, str) -> + str is typeof obj + +_isPlainObj = (obj) -> + + return false unless obj + return false if obj.nodeType or obj.setInterval or not _isClass obj, 'Object' + + # Not own constructor property must be Object + return false if obj.constructor and + not _isOwnProp(obj, 'constructor') and + not _isOwnProp(obj.constructor::, 'isPrototypeOf') + + # Own properties are enumerated firstly, so to speed up, + # if last one is own, then all properties are own. + key for key of obj + key is undefined or _isOwnProp obj, key + +_isPrimitiveType = (obj) -> + not ( _isTypeOf(obj, 'object') or _isTypeOf(obj, 'function') ) + +_prepareClone = (copy, src) -> + if _isClass copy, 'Array' + if _isClass src, 'Array' then src else [] + else + if _isPlainObj src then src else {} + +_findValue = (deep, copy, src) -> + # if we're merging plain objects or arrays + if deep and ( _isClass(copy, 'Array') or _isPlainObj copy ) + clone = _prepareClone copy, src + extend deep, clone, copy + else + copy diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/extend_test.coffee b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/extend_test.coffee new file mode 100644 index 0000000..0d3491f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/extend_test.coffee @@ -0,0 +1,566 @@ +### +Test suite for node AND browser in one file +So, we are need some data from global +Its so wrong, but its OK for test +### +# resolve require from [window] or by require() +# _ = @_ ? require 'lodash' + +lib_path = GLOBAL?.lib_path || '' + +extend = require "#{lib_path}whet.extend" + +describe 'whet.extend:', -> + + str = int = arr = date = obj = deep = null + + beforeEach -> + str = 'me a test' + int = 10 + arr = [ 1, 'what', new Date( 81, 8, 4 )]; + date = new Date( 81, 4, 13 ); + + obj = + str : str + int : int + arr : arr + date : date + + deep = + ori : obj + layer : + int : 10 + str : 'str' + date : new Date( 84, 5, 12 ) + arr : [ 101, 'dude', new Date( 82, 10, 4 )] + deep : + str : obj.str + int : int + arr : obj.arr + date : new Date( 81, 7, 4 ) + + describe 'should merge string with:', -> + + it 'string', -> + ori = 'what u gonna say'; + target = extend ori, str + + ori.should.eql 'what u gonna say' + str.should.eql 'me a test' + target.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't' + + it 'number', -> + ori = 'what u gonna say' + target = extend ori, int + + ori.should.eql 'what u gonna say' + int.should.eql 10 + target.should.eql {} + + it 'array', -> + ori = 'what u gonna say' + target = extend ori, arr + + ori.should.eql 'what u gonna say' + arr.should.eql [ 1, 'what', new Date( 81, 8, 4 )] + target.should.eql + '0' : 1, + '1' : 'what', + '2' : new Date( 81, 8, 4 ) + + it 'date', -> + ori = 'what u gonna say' + target = extend ori, date + + ori.should.eql 'what u gonna say' + date.should.eql new Date( 81, 4, 13 ) + target.should.eql new Date( 81, 4, 13 ) + + it 'object', -> + ori = 'what u gonna say' + target = extend ori, obj + + ori.should.eql 'what u gonna say' + obj.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + target.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + describe 'should merge number with:', -> + + it 'string', -> + ori = 20 + target = extend ori, str + + ori.should.eql 20 + str.should.eql 'me a test' + target.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't' + + it 'number', -> + ori = 20 + target = extend ori, int + + ori.should.eql 20 + int.should.eql 10 + target.should.eql {} + + it 'array', -> + ori = 20 + target = extend ori, arr + + ori.should.eql 20 + arr.should.eql [ 1, 'what', new Date( 81, 8, 4 )] + target.should.eql + '0' : 1, + '1' : 'what', + '2' : new Date( 81, 8, 4 ) + + it 'date', -> + ori = 20 + target = extend ori, date + + ori.should.eql 20 + date.should.eql new Date( 81, 4, 13 ) + target.should.eql new Date( 81, 4, 13 ) + + it 'object', -> + ori = 20 + target = extend ori, obj + + ori.should.eql 20 + obj.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + target.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + describe 'should merge array with:', -> + + it 'string', -> + ori = [ 1, 2, 3, 4, 5, 6 ] + target = extend ori, str + + ori.should.eql [ 'm', 'e', ' ', 'a', ' ', 't', 'e', 's', 't' ] + str.should.eql 'me a test' + target.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't' + + it 'number', -> + ori = [ 1, 2, 3, 4, 5, 6 ] + target = extend ori, int + + ori.should.eql [ 1, 2, 3, 4, 5, 6 ] + int.should.eql 10 + target.should.eql [ 1, 2, 3, 4, 5, 6 ] + + it 'array', -> + ori = [ 1, 2, 3, 4, 5, 6 ] + target = extend ori, arr + + ori.should.eql [ 1, 'what', new Date( 81, 8, 4 ), 4, 5, 6 ] + arr.should.eql [ 1, 'what', new Date( 81, 8, 4 )] + target.should.eql [ 1, 'what', new Date( 81, 8, 4 ), 4, 5, 6 ] + + it 'date', -> + ori = [ 1, 2, 3, 4, 5, 6 ] + target = extend ori, date + + ori.should.eql [ 1, 2, 3, 4, 5, 6 ] + date.should.eql new Date( 81, 4, 13 ) + target.should.eql [ 1, 2, 3, 4, 5, 6 ] + + it 'object', -> + ori = [ 1, 2, 3, 4, 5, 6 ] + target = extend ori, obj + + ori.length.should.equal 6 + ori[ 'str' ].should.eql 'me a test' + ori[ 'int' ].should.eql 10 + ori[ 'arr' ].should.eql [ 1, 'what', new Date( 81, 8, 4 )] + ori[ 'date' ].should.eql new Date( 81, 4, 13 ) + obj.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + target.length.should.equal 6 + target[ 'str' ].should.eql 'me a test' + target[ 'int' ].should.eql 10 + target[ 'arr' ].should.eql [ 1, 'what', new Date( 81, 8, 4 )] + target[ 'date' ].should.eql new Date( 81, 4, 13 ) + + describe 'should merge date with:', -> + + it 'string', -> + ori = new Date( 81, 9, 20 ) + target = extend ori, str + + ori.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't' + + str.should.eql 'me a test' + target.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't' + + it 'number', -> + ori = new Date( 81, 9, 20 ) + target = extend ori, int + + ori.should.eql {} + int.should.eql 10 + target.should.eql {} + + it 'array', -> + ori = new Date( 81, 9, 20 ) + target = extend ori, arr + + ori.should.eql [ 1, 'what', new Date( 81, 8, 4 )] + int.should.eql 10 + target.should.eql [ 1, 'what', new Date( 81, 8, 4 )] + + it 'date', -> + ori = new Date( 81, 9, 20 ) + target = extend ori, date + + ori.should.eql {} + date.should.eql new Date( 81, 4, 13 ) + target.should.eql {} + + it 'object', -> + ori = new Date( 81, 9, 20 ) + target = extend ori, obj + + ori.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + obj.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + target.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + describe 'should merge object with:', -> + + it 'string', -> + ori = + str : 'no shit' + int : 76 + arr : [ 1, 2, 3, 4 ] + date : new Date( 81, 7, 26 ) + + target = extend ori, str + + ori.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't', + str: 'no shit', + int: 76, + arr: [ 1, 2, 3, 4 ], + date: new Date( 81, 7, 26 ) + + str.should.eql 'me a test' + target.should.eql + '0' : 'm', + '1' : 'e', + '2' : ' ', + '3' : 'a', + '4' : ' ', + '5' : 't', + '6' : 'e', + '7' : 's', + '8' : 't', + str: 'no shit', + int: 76, + arr: [ 1, 2, 3, 4 ], + date: new Date( 81, 7, 26 ) + + it 'number', -> + ori = + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + target = extend ori, int + + ori.should.eql + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + int.should.eql 10 + target.should.eql + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + it 'array', -> + ori = + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + target = extend ori, arr + + ori.should.eql + '0' : 1, + '1' : 'what', + '2' : new Date( 81, 8, 4 ), + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + arr.should.eql [ 1, 'what', new Date( 81, 8, 4 )] + target.should.eql + '0' : 1, + '1' : 'what', + '2' : new Date( 81, 8, 4 ), + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + it 'date', -> + ori = + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + target = extend ori, date + + ori.should.eql + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + date.should.eql new Date( 81, 4, 13 ) + target.should.eql + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + it 'object', -> + ori = + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + target = extend ori, obj + + ori.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + obj.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + target.should.eql + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + + describe 'should make deep clone: ', -> + + it 'object with object', -> + ori = + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ) + + target = extend true, ori, deep + + ori.should.eql + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ), + ori : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + layer : + int : 10, + str : 'str', + date : new Date( 84, 5, 12 ), + arr : [ 101, 'dude', new Date( 82, 10, 4 )], + deep : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 7, 4 ) + + deep.should.eql + ori : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + layer : + int : 10, + str : 'str', + date : new Date( 84, 5, 12 ), + arr : [ 101, 'dude', new Date( 82, 10, 4 )], + deep : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 7, 4 ) + + target.should.eql + str : 'no shit', + int : 76, + arr : [ 1, 2, 3, 4 ], + date : new Date( 81, 7, 26 ), + ori : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + layer : + int : 10, + str : 'str', + date : new Date( 84, 5, 12 ), + arr : [ 101, 'dude', new Date( 82, 10, 4 )], + deep : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 7, 4 ) + + target.layer.deep = 339; + deep.should.eql + ori : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 4, 13 ) + layer : + int : 10, + str : 'str', + date : new Date( 84, 5, 12 ), + arr : [ 101, 'dude', new Date( 82, 10, 4 )], + deep : + str : 'me a test', + int : 10, + arr : [ 1, 'what', new Date( 81, 8, 4 )], + date : new Date( 81, 7, 4 ) + + ### + NEVER USE EXTEND WITH THE ABOVE SITUATION + ### + + describe 'must pass additional test: ', -> + + it 'should merge objects with \'null\' and \'undefined\'', -> + ori = + a : 10 + b : null + c : 'test data' + d : undefined + + additional = + x : 'googol' + y : 8939843 + z : null + az : undefined + + target = extend ori, additional + target.should.to.be.eql + a : 10 + b : null + c : 'test data' + d : undefined + x : 'googol' + y : 8939843 + z : null + az : undefined + + diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/mocha.opts b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/mocha.opts new file mode 100644 index 0000000..1a64c82 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/mocha.opts @@ -0,0 +1,7 @@ +--compilers coffee:coffee-script +--require coffee-script +--require ./test/test_helper.coffee +--reporter spec +--colors +--growl +--ui bdd \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/test_helper.coffee b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/test_helper.coffee new file mode 100644 index 0000000..da2e517 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/node_modules/whet.extend/test/test_helper.coffee @@ -0,0 +1,11 @@ +### +global helper for chai.should() +### +chai = require 'chai' +GLOBAL.should = chai.should() +GLOBAL.expect = chai.expect # to work with 'undefined' - should cant it + +### +addon for lib_path +### +GLOBAL.lib_path = '../lib/' \ No newline at end of file diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/package.json b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/package.json new file mode 100644 index 0000000..a5e10b7 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/package.json @@ -0,0 +1,94 @@ +{ + "name": "svgo", + "version": "0.5.3", + "description": "Nodejs-based tool for optimizing SVG vector graphics files", + "keywords": [ + "svgo", + "svg", + "optimize", + "minify" + ], + "homepage": "https://github.com/svg/svgo", + "bugs": { + "url": "https://github.com/svg/svgo/issues", + "email": "kir@soulshine.in" + }, + "author": { + "name": "Kir Belevich", + "email": "kir@soulshine.in", + "url": "https://github.com/deepsweet" + }, + "contributors": [ + { + "name": "Sergey Belov", + "email": "peimei@ya.ru", + "url": "http://github.com/arikon" + }, + { + "name": "Lev Solntsev", + "email": "lev.sun@ya.ru", + "url": "http://github.com/GreLI" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/svg/svgo.git" + }, + "main": "./lib/svgo.js", + "bin": { + "svgo": "./bin/svgo" + }, + "directories": { + "bin": "./bin", + "lib": "./lib", + "example": "./examples" + }, + "scripts": { + "test": "make test" + }, + "dependencies": { + "sax": "~1.1.1", + "coa": "~1.0.1", + "js-yaml": "~3.3.1", + "colors": "~1.1.2", + "whet.extend": "~0.9.9", + "mkdirp": "~0.5.1" + }, + "devDependencies": { + "mocha": "~2.2.5", + "should": "7.0.1", + "istanbul": "~0.3.15", + "mocha-istanbul": "~0.2.0", + "coveralls": "~2.11.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "license": "MIT", + "gitHead": "739a296621fd710a1773d9d8cdcdf84e5914d2fa", + "_id": "svgo@0.5.3", + "_shasum": "71d97ae51ec25b91864eb38435820b9ff37dbfb2", + "_from": "svgo@>=0.5.2 <0.6.0", + "_npmVersion": "2.5.1", + "_nodeVersion": "0.12.0", + "_npmUser": { + "name": "greli", + "email": "grelimail@gmail.com" + }, + "maintainers": [ + { + "name": "deepsweet", + "email": "kir@soulshine.in" + }, + { + "name": "greli", + "email": "grelimail@gmail.com" + } + ], + "dist": { + "shasum": "71d97ae51ec25b91864eb38435820b9ff37dbfb2", + "tarball": "http://registry.npmjs.org/svgo/-/svgo-0.5.3.tgz" + }, + "_resolved": "https://registry.npmjs.org/svgo/-/svgo-0.5.3.tgz", + "readme": "ERROR: No README data found!" +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_collections.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_collections.js new file mode 100644 index 0000000..554b156 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_collections.js @@ -0,0 +1,2600 @@ +'use strict'; + +// http://www.w3.org/TR/SVG/intro.html#Definitions +exports.elemsGroups = { + animation: ['animate', 'animateColor', 'animateMotion', 'animateTransform', 'set'], + descriptive: ['desc', 'metadata', 'title'], + shape: ['circle', 'ellipse', 'line', 'path', 'polygon', 'polyline', 'rect'], + structural: ['defs', 'g', 'svg', 'symbol', 'use'], + paintServer: ['solidColor', 'linearGradient', 'radialGradient', 'meshGradient', 'pattern', 'hatch'], + nonRendering: ['linearGradient', 'radialGradient', 'pattern', 'clipPath', 'mask', 'marker', 'symbol', 'filter', 'solidColor'], + container: ['a', 'defs', 'g', 'marker', 'mask', 'missing-glyph', 'pattern', 'svg', 'switch', 'symbol'], + textContent: ['altGlyph', 'altGlyphDef', 'altGlyphItem', 'glyph', 'glyphRef', 'textPath', 'text', 'tref', 'tspan'], + textContentChild: ['altGlyph', 'textPath', 'tref', 'tspan'], + lightSource: ['feDiffuseLighting', 'feSpecularLighting', 'feDistantLight', 'fePointLight', 'feSpotLight'], + filterPrimitive: ['feBlend', 'feColorMatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feFlood', 'feGaussianBlur', 'feImage', 'feMerge', 'feMorphology', 'feOffset', 'feSpecularLighting', 'feTile', 'feTurbulence'] +}; + +exports.pathElems = ['path', 'glyph', 'missing-glyph']; + +// http://www.w3.org/TR/SVG/intro.html#Definitions +exports.attrsGroups = { + animationAddition: ['additive', 'accumulate'], + animationAttributeTarget: ['attributeType', 'attributeName'], + animationEvent: ['onbegin', 'onend', 'onrepeat', 'onload'], + animationTiming: ['begin', 'dur', 'end', 'min', 'max', 'restart', 'repeatCount', 'repeatDur', 'fill'], + animationValue: ['calcMode', 'values', 'keyTimes', 'keySplines', 'from', 'to', 'by'], + conditionalProcessing: ['requiredFeatures', 'requiredExtensions', 'systemLanguage'], + core: ['id', 'tabindex', 'xml:base', 'xml:lang', 'xml:space'], + graphicalEvent: ['onfocusin', 'onfocusout', 'onactivate', 'onclick', 'onmousedown', 'onmouseup', 'onmouseover', 'onmousemove', 'onmouseout', 'onload'], + presentation: [ + 'alignment-baseline', + 'baseline-shift', + 'buffered-rendering', + 'clip', + 'clip-path', + 'clip-rule', + 'color', + 'color-interpolation', + 'color-interpolation-filters', + 'color-profile', + 'color-rendering', + 'cursor', + 'direction', + 'display', + 'dominant-baseline', + 'enable-background', + 'fill', + 'fill-opacity', + 'fill-rule', + 'filter', + 'flood-color', + 'flood-opacity', + 'font-family', + 'font-size', + 'font-size-adjust', + 'font-stretch', + 'font-style', + 'font-variant', + 'font-weight', + 'glyph-orientation-horizontal', + 'glyph-orientation-vertical', + 'image-rendering', + 'kerning', + 'letter-spacing', + 'lighting-color', + 'marker-end', + 'marker-mid', + 'marker-start', + 'mask', + 'opacity', + 'overflow', + 'pointer-events', + 'shape-rendering', + 'solid-color', + 'solid-opacity', + 'stop-color', + 'stop-opacity', + 'stroke', + 'stroke-dasharray', + 'stroke-dashoffset', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-miterlimit', + 'stroke-opacity', + 'stroke-width', + 'paint-order', + 'text-anchor', + 'text-decoration', + 'text-overflow', + 'white-space', + 'text-rendering', + 'unicode-bidi', + 'vector-effect', + 'viewport-fill', + 'viewport-fill-opacity', + 'visibility', + 'white-space', + 'word-spacing', + 'writing-mode' + ], + xlink: ['xlink:href', 'xlink:show', 'xlink:actuate', 'xlink:type', 'xlink:role', 'xlink:arcrole', 'xlink:title'], + documentEvent: ['onunload', 'onabort', 'onerror', 'onresize', 'onscroll', 'onzoom'], + filterPrimitive: ['x', 'y', 'width', 'height', 'result'], + transferFunction: ['type', 'tableValues', 'slope', 'intercept', 'amplitude', 'exponent', 'offset'] +}; + +exports.attrsGroupsDefaults = { + core: {'xml:space': 'preserve'}, + filterPrimitive: {x: '0', y: '0', width: '100%', height: '100%'}, + presentation: { + clip: 'auto', + 'clip-path': 'none', + 'clip-rule': 'nonzero', + mask: 'none', + opacity: '1', + 'solid-color': '#000', + 'solid-opacity': '1', + 'stop-color': '#000', + 'stop-opacity': '1', + 'fill-opacity': '1', + 'fill-rule': 'nonzero', + fill: '#000', + stroke: 'none', + 'stroke-width': '1', + 'stroke-linecap': 'butt', + 'stroke-linejoin': 'miter', + 'stroke-miterlimit': '4', + 'stroke-dasharray': 'none', + 'stroke-dashoffset': '0', + 'stroke-opacity': '1', + 'paint-order': 'normal', + 'vector-effect': 'none', + 'viewport-fill': 'none', + 'viewport-fill-opacity': '1', + display: 'inline', + visibility: 'visible', + 'marker-start': 'none', + 'marker-mid': 'none', + 'marker-end': 'none', + 'color-interpolation': 'sRGB', + 'color-interpolation-filters': 'linearRGB', + 'color-rendering': 'auto', + 'shape-rendering': 'auto', + 'text-rendering': 'auto', + 'image-rendering': 'auto', + 'buffered-rendering': 'auto', + 'font-style': 'normal', + 'font-variant': 'normal', + 'font-weight': 'normal', + 'font-stretch': 'normal', + 'font-size': 'medium', + 'font-size-adjust': 'none', + kerning: 'auto', + 'letter-spacing': 'normal', + 'word-spacing': 'normal', + 'text-decoration': 'none', + 'text-anchor': 'start', + 'text-overflow': 'clip', + 'writing-mode': 'lr-tb', + 'glyph-orientation-vertical': 'auto', + 'glyph-orientation-horizontal': '0deg', + direction: 'ltr', + 'unicode-bidi': 'normal', + 'dominant-baseline': 'auto', + 'alignment-baseline': 'baseline', + 'baseline-shift': 'baseline' + }, + transferFunction: {slope: '1', intercept: '0', amplitude: '1', exponent: '1', offset: '0'} +}; + +// http://www.w3.org/TR/SVG/eltindex.html +exports.elems = { + a: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'target' + ], + defaults: { + target: '_self' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + altGlyph: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'x', + 'y', + 'dx', + 'dy', + 'glyphRef', + 'format', + 'rotate' + ] + }, + altGlyphDef: { + attrsGroups: [ + 'core' + ], + content: [ + 'glyphRef' + ] + }, + altGlyphItem: { + attrsGroups: [ + 'core' + ], + content: [ + 'glyphRef', + 'altGlyphItem' + ] + }, + animate: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'animationAddition', + 'animationAttributeTarget', + 'animationEvent', + 'animationTiming', + 'animationValue', + 'presentation', + 'xlink' + ], + attrs: [ + 'externalResourcesRequired' + ], + contentGroups: [ + 'descriptive' + ] + }, + animateColor: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'animationEvent', + 'xlink', + 'animationAttributeTarget', + 'animationTiming', + 'animationValue', + 'animationAddition', + 'presentation' + ], + attrs: [ + 'externalResourcesRequired' + ], + contentGroups: [ + 'descriptive' + ] + }, + animateMotion: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'animationEvent', + 'xlink', + 'animationTiming', + 'animationValue', + 'animationAddition' + ], + attrs: [ + 'externalResourcesRequired', + 'path', + 'keyPoints', + 'rotate', + 'origin' + ], + defaults: { + 'rotate': '0' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + 'mpath' + ] + }, + animateTransform: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'animationEvent', + 'xlink', + 'animationAttributeTarget', + 'animationTiming', + 'animationValue', + 'animationAddition' + ], + attrs: [ + 'externalResourcesRequired', + 'type' + ], + contentGroups: [ + 'descriptive' + ] + }, + circle: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'cx', + 'cy', + 'r' + ], + defaults: { + cx: '0', + cy: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + clipPath: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'clipPathUnits' + ], + defaults: { + clipPathUnits: 'userSpaceOnUse' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape' + ], + content: [ + 'text', + 'use' + ] + }, + 'color-profile': { + attrsGroups: [ + 'core', + 'xlink' + ], + attrs: [ + 'local', + 'name', + 'rendering-intent' + ], + defaults: { + name: 'sRGB', + 'rendering-intent': 'auto' + }, + contentGroups: [ + 'descriptive' + ] + }, + cursor: { + attrsGroups: [ + 'core', + 'conditionalProcessing', + 'xlink' + ], + attrs: [ + 'externalResourcesRequired', + 'x', + 'y' + ], + defaults: { + x: '0', + y: '0' + }, + contentGroups: [ + 'descriptive' + ] + }, + defs: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform' + ], + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + desc: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'class', + 'style' + ] + }, + ellipse: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'cx', + 'cy', + 'rx', + 'ry' + ], + defaults: { + cx: '0', + cy: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + feBlend: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + // TODO: in - 'If no value is provided and this is the first filter primitive, + // then this filter primitive will use SourceGraphic as its input' + 'in', + 'in2', + 'mode' + ], + defaults: { + mode: 'normal' + }, + content: [ + 'animate', + 'set' + ] + }, + feColorMatrix: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'type', + 'values' + ], + defaults: { + type: 'matrix' + }, + content: [ + 'animate', + 'set' + ] + }, + feComponentTransfer: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in' + ], + content: [ + 'feFuncA', + 'feFuncB', + 'feFuncG', + 'feFuncR' + ] + }, + feComposite: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'in2', + 'operator', + 'k1', + 'k2', + 'k3', + 'k4' + ], + defaults: { + operator: 'over', + k1: '0', + k2: '0', + k3: '0', + k4: '0' + }, + content: [ + 'animate', + 'set' + ] + }, + feConvolveMatrix: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'order', + 'kernelMatrix', + // TODO: divisor - 'The default value is the sum of all values in kernelMatrix, + // with the exception that if the sum is zero, then the divisor is set to 1' + 'divisor', + 'bias', + // TODO: targetX - 'By default, the convolution matrix is centered in X over each + // pixel of the input image (i.e., targetX = floor ( orderX / 2 ))' + 'targetX', + 'targetY', + 'edgeMode', + // TODO: kernelUnitLength - 'The first number is the value. The second number + // is the value. If the value is not specified, it defaults to the same value as ' + 'kernelUnitLength', + 'preserveAlpha' + ], + defaults: { + order: '3', + bias: '0', + edgeMode: 'duplicate', + preserveAlpha: 'false' + }, + content: [ + 'animate', + 'set' + ] + }, + feDiffuseLighting: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'surfaceScale', + 'diffuseConstant', + 'kernelUnitLength' + ], + defaults: { + surfaceScale: '1', + diffuseConstant: '1' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + // TODO: 'exactly one light source element, in any order' + 'feDistantLight', + 'fePointLight', + 'feSpotLight' + ] + }, + feDisplacementMap: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'in2', + 'scale', + 'xChannelSelector', + 'yChannelSelector' + ], + defaults: { + scale: '0', + xChannelSelector: 'A', + yChannelSelector: 'A' + }, + content: [ + 'animate', + 'set' + ] + }, + feDistantLight: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'azimuth', + 'elevation' + ], + defaults: { + azimuth: '0', + elevation: '0' + }, + content: [ + 'animate', + 'set' + ] + }, + feFlood: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style' + ], + content: [ + 'animate', + 'animateColor', + 'set' + ] + }, + feFuncA: { + attrsGroups: [ + 'core', + 'transferFunction' + ], + content: [ + 'set', + 'animate' + ] + }, + feFuncB: { + attrsGroups: [ + 'core', + 'transferFunction' + ], + content: [ + 'set', + 'animate' + ] + }, + feFuncG: { + attrsGroups: [ + 'core', + 'transferFunction' + ], + content: [ + 'set', + 'animate' + ] + }, + feFuncR: { + attrsGroups: [ + 'core', + 'transferFunction' + ], + content: [ + 'set', + 'animate' + ] + }, + feGaussianBlur: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'stdDeviation' + ], + defaults: { + stdDeviation: '0' + }, + content: [ + 'set', + 'animate' + ] + }, + feImage: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'preserveAspectRatio', + 'xlink:href' + ], + defaults: { + preserveAspectRatio: 'xMidYMid meet' + }, + content: [ + 'animate', + 'animateTransform', + 'set' + ] + }, + feMerge: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style' + ], + content: [ + 'feMergeNode' + ] + }, + feMergeNode: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'in' + ], + content: [ + 'animate', + 'set' + ] + }, + feMorphology: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'operator', + 'radius' + ], + defaults: { + operator: 'erode', + radius: '0' + }, + content: [ + 'animate', + 'set' + ] + }, + feOffset: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'dx', + 'dy' + ], + defaults: { + dx: '0', + dy: '0' + }, + content: [ + 'animate', + 'set' + ] + }, + fePointLight: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'x', + 'y', + 'z' + ], + defaults: { + x: '0', + y: '0', + z: '0' + }, + content: [ + 'animate', + 'set' + ] + }, + feSpecularLighting: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in', + 'surfaceScale', + 'specularConstant', + 'specularExponent', + 'kernelUnitLength' + ], + defaults: { + surfaceScale: '1', + specularConstant: '1', + specularExponent: '1' + }, + contentGroups: [ + 'descriptive', + // TODO: exactly one 'light source element' + 'lightSource' + ] + }, + feSpotLight: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'x', + 'y', + 'z', + 'pointsAtX', + 'pointsAtY', + 'pointsAtZ', + 'specularExponent', + 'limitingConeAngle' + ], + defaults: { + x: '0', + y: '0', + z: '0', + pointsAtX: '0', + pointsAtY: '0', + pointsAtZ: '0', + specularExponent: '1' + }, + content: [ + 'animate', + 'set' + ] + }, + feTile: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'in' + ], + content: [ + 'animate', + 'set' + ] + }, + feTurbulence: { + attrsGroups: [ + 'core', + 'presentation', + 'filterPrimitive' + ], + attrs: [ + 'class', + 'style', + 'baseFrequency', + 'numOctaves', + 'seed', + 'stitchTiles', + 'type' + ], + defaults: { + baseFrequency: '0', + numOctaves: '1', + seed: '0', + stitchTiles: 'noStitch', + type: 'turbulence' + }, + content: [ + 'animate', + 'set' + ] + }, + filter: { + attrsGroups: [ + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'x', + 'y', + 'width', + 'height', + 'filterRes', + 'filterUnits', + 'primitiveUnits', + 'xlink:href' + ], + defaults: { + primitiveUnits: 'userSpaceOnUse', + x: '-10%', + y: '-10%', + width: '120%', + height: '120%' + }, + contentGroups: [ + 'descriptive', + 'filterPrimitive' + ], + content: [ + 'animate', + 'set' + ] + }, + font: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'horiz-origin-x', + 'horiz-origin-y', + 'horiz-adv-x', + 'vert-origin-x', + 'vert-origin-y', + 'vert-adv-y' + ], + defaults: { + 'horiz-origin-x': '0', + 'horiz-origin-y': '0' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + 'font-face', + 'glyph', + 'hkern', + 'missing-glyph', + 'vkern' + ] + }, + 'font-face': { + attrsGroups: [ + 'core' + ], + attrs: [ + 'font-family', + 'font-style', + 'font-variant', + 'font-weight', + 'font-stretch', + 'font-size', + 'unicode-range', + 'units-per-em', + 'panose-1', + 'stemv', + 'stemh', + 'slope', + 'cap-height', + 'x-height', + 'accent-height', + 'ascent', + 'descent', + 'widths', + 'bbox', + 'ideographic', + 'alphabetic', + 'mathematical', + 'hanging', + 'v-ideographic', + 'v-alphabetic', + 'v-mathematical', + 'v-hanging', + 'underline-position', + 'underline-thickness', + 'strikethrough-position', + 'strikethrough-thickness', + 'overline-position', + 'overline-thickness' + ], + defaults: { + 'font-style': 'all', + 'font-variant': 'normal', + 'font-weight': 'all', + 'font-stretch': 'normal', + 'unicode-range': 'U+0-10FFFF', + 'units-per-em': '1000', + 'panose-1': '0 0 0 0 0 0 0 0 0 0', + 'slope': '0' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + // TODO: "at most one 'font-face-src' element" + 'font-face-src' + ] + }, + // TODO: empty content + 'font-face-format': { + attrsGroups: [ + 'core' + ], + attrs: [ + 'string' + ] + }, + 'font-face-name': { + attrsGroups: [ + 'core' + ], + attrs: [ + 'name' + ] + }, + 'font-face-src': { + attrsGroups: [ + 'core' + ], + content: [ + 'font-face-name', + 'font-face-uri' + ] + }, + 'font-face-uri': { + attrsGroups: [ + 'core', + 'xlink' + ], + attrs: [ + 'xlink:href' + ], + content: [ + 'font-face-format' + ] + }, + foreignObject: { + attrsGroups: [ + 'core', + 'conditionalProcessing', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'x', + 'y', + 'width', + 'height' + ], + defaults: { + x: 0, + y: 0 + } + }, + g: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform' + ], + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + glyph: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'd', + 'horiz-adv-x', + 'vert-origin-x', + 'vert-origin-y', + 'vert-adv-y', + 'unicode', + 'glyph-name', + 'orientation', + 'arabic-form', + 'lang' + ], + defaults: { + 'arabic-form': 'initial' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ], + }, + glyphRef: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'd', + 'horiz-adv-x', + 'vert-origin-x', + 'vert-origin-y', + 'vert-adv-y' + ], + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + hatch: { + attrsGroups: [ + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'x', + 'y', + 'pitch', + 'rotate', + 'hatchUnits', + 'hatchContentUnits', + 'transform' + ], + defaults: { + hatchUnits: 'objectBoundingBox', + hatchContentUnits: 'userSpaceOnUse', + x: '0', + y: '0', + pitch: '0', + rotate: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ], + content: [ + 'hatchPath' + ] + }, + hatchPath: { + attrsGroups: [ + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'd', + 'offset' + ], + defaults: { + offset: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + hkern: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'u1', + 'g1', + 'u2', + 'g2', + 'k' + ] + }, + image: { + attrsGroups: [ + 'core', + 'conditionalProcessing', + 'graphicalEvent', + 'xlink', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'preserveAspectRatio', + 'transform', + 'x', + 'y', + 'width', + 'height', + 'xlink:href' + ], + defaults: { + x: '0', + y: '0', + preserveAspectRatio: 'xMidYMid meet' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + line: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'x1', + 'y1', + 'x2', + 'y2' + ], + defaults: { + x1: '0', + y1: '0', + x2: '0', + y2: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + linearGradient: { + attrsGroups: [ + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'x1', + 'y1', + 'x2', + 'y2', + 'gradientUnits', + 'gradientTransform', + 'spreadMethod', + 'xlink:href' + ], + defaults: { + x1: '0', + y1: '0', + x2: '100%', + y2: '0', + spreadMethod: 'pad' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + 'animate', + 'animateTransform', + 'set', + 'stop' + ] + }, + marker: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'viewBox', + 'preserveAspectRatio', + 'refX', + 'refY', + 'markerUnits', + 'markerWidth', + 'markerHeight', + 'orient' + ], + defaults: { + markerUnits: 'strokeWidth', + refX: '0', + refY: '0', + markerWidth: '3', + markerHeight: '3' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + mask: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'x', + 'y', + 'width', + 'height', + 'maskUnits', + 'maskContentUnits' + ], + defaults: { + maskUnits: 'objectBoundingBox', + maskContentUnits: 'userSpaceOnUse', + x: '-10%', + y: '-10%', + width: '120%', + height: '120%' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + metadata: { + attrsGroups: [ + 'core' + ] + }, + 'missing-glyph': { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'd', + 'horiz-adv-x', + 'vert-origin-x', + 'vert-origin-y', + 'vert-adv-y' + ], + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + mpath: { + attrsGroups: [ + 'core', + 'xlink' + ], + attrs: [ + 'externalResourcesRequired', + 'xlink:href' + ], + contentGroups: [ + 'descriptive' + ] + }, + path: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'd', + 'pathLength' + ], + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + pattern: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'viewBox', + 'preserveAspectRatio', + 'x', + 'y', + 'width', + 'height', + 'patternUnits', + 'patternContentUnits', + 'patternTransform', + 'xlink:href' + ], + defaults: { + patternUnits: 'objectBoundingBox', + patternContentUnits: 'userSpaceOnUse', + x: '0', + y: '0', + width: '0', + height: '0', + preserveAspectRatio: 'xMidYMid meet' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'paintServer', + 'shape', + 'structural' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + polygon: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'points' + ], + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + polyline: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'points' + ], + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + radialGradient: { + attrsGroups: [ + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'cx', + 'cy', + 'r', + 'fx', + 'fy', + 'fr', + 'gradientUnits', + 'gradientTransform', + 'spreadMethod', + 'xlink:href' + ], + defaults: { + gradientUnits: 'objectBoundingBox', + cx: '50%', + cy: '50%', + r: '50%' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + 'animate', + 'animateTransform', + 'set', + 'stop' + ] + }, + meshGradient: { + attrsGroups: [ + 'core', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'x', + 'y', + 'gradientUnits', + 'transform' + ], + contentGroups: [ + 'descriptive', + 'paintServer', + 'animation', + ], + content: [ + 'meshRow' + ] + }, + meshRow: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style' + ], + contentGroups: [ + 'descriptive' + ], + content: [ + 'meshPatch' + ] + }, + meshPatch: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style' + ], + contentGroups: [ + 'descriptive' + ], + content: [ + 'stop' + ] + }, + rect: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'x', + 'y', + 'width', + 'height', + 'rx', + 'ry' + ], + defaults: { + x: '0', + y: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + script: { + attrsGroups: [ + 'core', + 'xlink' + ], + attrs: [ + 'externalResourcesRequired', + 'type', + 'xlink:href' + ] + }, + set: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'animation', + 'xlink', + 'animationAttributeTarget', + 'animationTiming', + ], + attrs: [ + 'externalResourcesRequired', + 'to' + ], + contentGroups: [ + 'descriptive' + ] + }, + solidColor: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style' + ], + contentGroups: [ + 'paintServer' + ] + }, + stop: { + attrsGroups: [ + 'core', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'offset', + 'path' + ], + contentGroups: [ + 'animate', + 'animateColor', + 'set' + ] + }, + style: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'type', + 'media', + 'title' + ], + defaults: { + type: 'text/css' + } + }, + svg: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'documentEvent', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'x', + 'y', + 'width', + 'height', + 'viewBox', + 'preserveAspectRatio', + 'zoomAndPan', + 'version', + 'baseProfile', + 'contentScriptType', + 'contentStyleType' + ], + defaults: { + x: '0', + y: '0', + width: '100%', + height: '100%', + preserveAspectRatio: 'xMidYMid meet', + zoomAndPan: 'magnify', + version: '1.1', + baseProfile: 'none', + contentScriptType: 'application/ecmascript', + contentStyleType: 'text/css' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + switch: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform' + ], + contentGroups: [ + 'animation', + 'descriptive', + 'shape' + ], + content: [ + 'a', + 'foreignObject', + 'g', + 'image', + 'svg', + 'switch', + 'text', + 'use' + ] + }, + symbol: { + attrsGroups: [ + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'preserveAspectRatio', + 'viewBox', + 'refX', + 'refY' + ], + defaults: { + refX: 0, + refY: 0 + }, + contentGroups: [ + 'animation', + 'descriptive', + 'shape', + 'structural', + 'paintServer' + ], + content: [ + 'a', + 'altGlyphDef', + 'clipPath', + 'color-profile', + 'cursor', + 'filter', + 'font', + 'font-face', + 'foreignObject', + 'image', + 'marker', + 'mask', + 'pattern', + 'script', + 'style', + 'switch', + 'text', + 'view' + ] + }, + text: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'lengthAdjust', + 'x', + 'y', + 'dx', + 'dy', + 'rotate', + 'textLength' + ], + defaults: { + x: '0', + y: '0', + lengthAdjust: 'spacing' + }, + contentGroups: [ + 'animation', + 'descriptive', + 'textContentChild' + ], + content: [ + 'a' + ] + }, + textPath: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'xlink:href', + 'startOffset', + 'method', + 'spacing', + 'd' + ], + defaults: { + startOffset: '0', + method: 'align', + spacing: 'exact' + }, + contentGroups: [ + 'descriptive' + ], + content: [ + 'a', + 'altGlyph', + 'animate', + 'animateColor', + 'set', + 'tref', + 'tspan' + ] + }, + title: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'class', + 'style' + ] + }, + tref: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'xlink:href' + ], + contentGroups: [ + 'descriptive' + ], + content: [ + 'animate', + 'animateColor', + 'set' + ] + }, + tspan: { + attrsGroups: [ + 'conditionalProcessing', + 'core', + 'graphicalEvent', + 'presentation' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'x', + 'y', + 'dx', + 'dy', + 'rotate', + 'textLength', + 'lengthAdjust' + ], + contentGroups: [ + 'descriptive' + ], + content: [ + 'a', + 'altGlyph', + 'animate', + 'animateColor', + 'set', + 'tref', + 'tspan' + ] + }, + use: { + attrsGroups: [ + 'core', + 'conditionalProcessing', + 'graphicalEvent', + 'presentation', + 'xlink' + ], + attrs: [ + 'class', + 'style', + 'externalResourcesRequired', + 'transform', + 'x', + 'y', + 'width', + 'height', + 'xlink:href' + ], + defaults: { + x: '0', + y: '0' + }, + contentGroups: [ + 'animation', + 'descriptive' + ] + }, + view: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'externalResourcesRequired', + 'viewBox', + 'preserveAspectRatio', + 'zoomAndPan', + 'viewTarget' + ], + contentGroups: [ + 'descriptive' + ] + }, + vkern: { + attrsGroups: [ + 'core' + ], + attrs: [ + 'u1', + 'g1', + 'u2', + 'g2', + 'k' + ] + } +}; + +// http://wiki.inkscape.org/wiki/index.php/Inkscape-specific_XML_attributes +exports.editorNamespaces = [ + 'http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd', + 'http://www.inkscape.org/namespaces/inkscape', + 'http://www.bohemiancoding.com/sketch/ns', + 'http://ns.adobe.com/AdobeIllustrator/10.0/', + 'http://ns.adobe.com/Graphs/1.0/', + 'http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/', + 'http://ns.adobe.com/Variables/1.0/', + 'http://ns.adobe.com/SaveForWeb/1.0/', + 'http://ns.adobe.com/Extensibility/1.0/', + 'http://ns.adobe.com/Flows/1.0/', + 'http://ns.adobe.com/ImageReplacement/1.0/', + 'http://ns.adobe.com/GenericCustomNamespace/1.0/', + 'http://ns.adobe.com/XPath/1.0/' +]; + +// http://www.w3.org/TR/SVG/linking.html#processingIRI +exports.referencesProps = [ + 'clip-path', + 'color-profile', + 'fill', + 'filter', + 'marker-start', + 'marker-mid', + 'marker-end', + 'mask', + 'stroke' +]; + +// http://www.w3.org/TR/SVG/styling.html#SVGStylingProperties +exports.stylingProps = [ + 'font', + 'font-family', + 'font-size', + 'font-size-adjust', + 'font-stretch', + 'font-style', + 'font-variant', + 'font-weight', + 'direction', + 'letter-spacing', + 'text-decoration', + 'unicode-bidi', + 'white-space', + 'word-spacing', + 'clip', + 'color', + 'cursor', + 'display', + 'overflow', + 'visibility', + 'clip-path', + 'clip-rule', + 'mask', + 'opacity', + 'enable-background', + 'filter', + 'flood-color', + 'flood-opacity', + 'lighting-color', + 'solid-color', + 'solid-opacity', + 'stop-color', + 'stop-opacity', + 'pointer-events', + 'buffered-rendering', + 'color-interpolation', + 'color-interpolation-filters', + 'color-profile', + 'color-rendering', + 'fill', + 'fill-opacity', + 'fill-rule', + 'image-rendering', + 'marker', + 'marker-end', + 'marker-mid', + 'marker-start', + 'shape-rendering', + 'stroke', + 'stroke-dasharray', + 'stroke-dashoffset', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-miterlimit', + 'stroke-opacity', + 'stroke-width', + 'paint-order', + 'vector-effect', + 'viewport-fill', + 'viewport-fill-opacity', + 'text-rendering', + 'alignment-baseline', + 'baseline-shift', + 'dominant-baseline', + 'glyph-orientation-horizontal', + 'glyph-orientation-vertical', + 'kerning', + 'text-anchor', + 'writing-mode' +]; + +// http://www.w3.org/TR/SVG/propidx.html +exports.inheritableAttrs = [ + 'clip-rule', + 'color', + 'color-interpolation', + 'color-interpolation-filters', + 'color-profile', + 'color-rendering', + 'cursor', + 'direction', + 'fill', + 'fill-opacity', + 'fill-rule', + 'font', + 'font-family', + 'font-size', + 'font-size-adjust', + 'font-stretch', + 'font-style', + 'font-variant', + 'font-weight', + 'glyph-orientation-horizontal', + 'glyph-orientation-vertical', + 'image-rendering', + 'kerning', + 'letter-spacing', + 'marker', + 'marker-end', + 'marker-mid', + 'marker-start', + 'pointer-events', + 'shape-rendering', + 'stroke', + 'stroke-dasharray', + 'stroke-dashoffset', + 'stroke-linecap', + 'stroke-linejoin', + 'stroke-miterlimit', + 'stroke-opacity', + 'stroke-width', + 'text-anchor', + 'text-rendering', + 'transform', + 'visibility', + 'white-space', + 'word-spacing', + 'writing-mode' +]; + +// http://www.w3.org/TR/SVG/single-page.html#types-ColorKeywords +exports.colorsNames = { + 'aliceblue': '#f0f8ff', + 'antiquewhite': '#faebd7', + 'aqua': '#0ff', + 'aquamarine': '#7fffd4', + 'azure': '#f0ffff', + 'beige': '#f5f5dc', + 'bisque': '#ffe4c4', + 'black': '#000', + 'blanchedalmond': '#ffebcd', + 'blue': '#00f', + 'blueviolet': '#8a2be2', + 'brown': '#a52a2a', + 'burlywood': '#deb887', + 'cadetblue': '#5f9ea0', + 'chartreuse': '#7fff00', + 'chocolate': '#d2691e', + 'coral': '#ff7f50', + 'cornflowerblue': '#6495ed', + 'cornsilk': '#fff8dc', + 'crimson': '#dc143c', + 'cyan': '#0ff', + 'darkblue': '#00008b', + 'darkcyan': '#008b8b', + 'darkgoldenrod': '#b8860b', + 'darkgray': '#a9a9a9', + 'darkgreen': '#006400', + 'darkkhaki': '#bdb76b', + 'darkmagenta': '#8b008b', + 'darkolivegreen': '#556b2f', + 'darkorange': '#ff8c00', + 'darkorchid': '#9932cc', + 'darkred': '#8b0000', + 'darksalmon': '#e9967a', + 'darkseagreen': '#8fbc8f', + 'darkslateblue': '#483d8b', + 'darkslategray': '#2f4f4f', + 'darkturquoise': '#00ced1', + 'darkviolet': '#9400d3', + 'deeppink': '#ff1493', + 'deepskyblue': '#00bfff', + 'dimgray': '#696969', + 'dodgerblue': '#1e90ff', + 'firebrick': '#b22222', + 'floralwhite': '#fffaf0', + 'forestgreen': '#228b22', + 'fuchsia': '#f0f', + 'gainsboro': '#dcdcdc', + 'ghostwhite': '#f8f8ff', + 'gold': '#ffd700', + 'goldenrod': '#daa520', + 'gray': '#808080', + 'green': '#008000', + 'greenyellow': '#adff2f', + 'honeydew': '#f0fff0', + 'hotpink': '#ff69b4', + 'indianred': '#cd5c5c', + 'indigo': '#4b0082', + 'ivory': '#fffff0', + 'khaki': '#f0e68c', + 'lavender': '#e6e6fa', + 'lavenderblush': '#fff0f5', + 'lawngreen': '#7cfc00', + 'lemonchiffon': '#fffacd', + 'lightblue': '#add8e6', + 'lightcoral': '#f08080', + 'lightcyan': '#e0ffff', + 'lightgoldenrodyellow': '#fafad2', + 'lightgreen': '#90ee90', + 'lightgrey': '#d3d3d3', + 'lightpink': '#ffb6c1', + 'lightsalmon': '#ffa07a', + 'lightseagreen': '#20b2aa', + 'lightskyblue': '#87cefa', + 'lightslategray': '#789', + 'lightsteelblue': '#b0c4de', + 'lightyellow': '#ffffe0', + 'lime': '#0f0', + 'limegreen': '#32cd32', + 'linen': '#faf0e6', + 'magenta': '#f0f', + 'maroon': '#800000', + 'mediumaquamarine': '#66cdaa', + 'mediumblue': '#0000cd', + 'mediumorchid': '#ba55d3', + 'mediumpurple': '#9370db', + 'mediumseagreen': '#3cb371', + 'mediumslateblue': '#7b68ee', + 'mediumspringgreen': '#00fa9a', + 'mediumturquoise': '#48d1cc', + 'mediumvioletred': '#c71585', + 'midnightblue': '#191970', + 'mintcream': '#f5fffa', + 'mistyrose': '#ffe4e1', + 'moccasin': '#ffe4b5', + 'navajowhite': '#ffdead', + 'navy': '#000080', + 'oldlace': '#fdf5e6', + 'olive': '#808000', + 'olivedrab': '#6b8e23', + 'orange': '#ffa500', + 'orangered': '#ff4500', + 'orchid': '#da70d6', + 'palegoldenrod': '#eee8aa', + 'palegreen': '#98fb98', + 'paleturquoise': '#afeeee', + 'palevioletred': '#db7093', + 'papayawhip': '#ffefd5', + 'peachpuff': '#ffdab9', + 'peru': '#cd853f', + 'pink': '#ffc0cb', + 'plum': '#dda0dd', + 'powderblue': '#b0e0e6', + 'purple': '#800080', + 'red': '#f00', + 'rosybrown': '#bc8f8f', + 'royalblue': '#4169e1', + 'saddlebrown': '#8b4513', + 'salmon': '#fa8072', + 'sandybrown': '#f4a460', + 'seagreen': '#2e8b57', + 'seashell': '#fff5ee', + 'sienna': '#a0522d', + 'silver': '#c0c0c0', + 'skyblue': '#87ceeb', + 'slateblue': '#6a5acd', + 'slategray': '#708090', + 'snow': '#fffafa', + 'springgreen': '#00ff7f', + 'steelblue': '#4682b4', + 'tan': '#d2b48c', + 'teal': '#008080', + 'thistle': '#d8bfd8', + 'tomato': '#ff6347', + 'turquoise': '#40e0d0', + 'violet': '#ee82ee', + 'wheat': '#f5deb3', + 'white': '#fff', + 'whitesmoke': '#f5f5f5', + 'yellow': '#ff0', + 'yellowgreen': '#9acd32' +}; + +exports.colorsShortNames = { + '#f0ffff': 'azure', + '#f5f5dc': 'beige', + '#ffe4c4': 'bisque', + '#a52a2a': 'brown', + '#ff7f50': 'coral', + '#ffd700': 'gold', + '#808080': 'gray', + '#008000': 'green', + '#4b0082': 'indigo', + '#fffff0': 'ivory', + '#f0e68c': 'khaki', + '#faf0e6': 'linen', + '#800000': 'maroon', + '#000080': 'navy', + '#808000': 'olive', + '#ffa500': 'orange', + '#da70d6': 'orchid', + '#cd853f': 'peru', + '#ffc0cb': 'pink', + '#dda0dd': 'plum', + '#800080': 'purple', + '#f00': 'red', + '#fa8072': 'salmon', + '#a0522d': 'sienna', + '#c0c0c0': 'silver', + '#fffafa': 'snow', + '#d2b48c': 'tan', + '#008080': 'teal', + '#ff6347': 'tomato', + '#ee82ee': 'violet', + '#f5deb3': 'wheat' +}; + +// http://www.w3.org/TR/SVG/single-page.html#types-DataTypeColor +exports.colorsProps = [ + 'color', 'fill', 'stroke', 'stop-color', 'flood-color', 'lighting-color' +]; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_path.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_path.js new file mode 100644 index 0000000..34c51f0 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_path.js @@ -0,0 +1,947 @@ +/* global a2c */ +'use strict'; + +var regPathInstructions = /([MmLlHhVvCcSsQqTtAaZz])\s*/, + regPathData = /[-+]?(?:\d*\.\d+|\d+\.?)([eE][-+]?\d+)?/g, + regNumericValues = /[-+]?(\d*\.\d+|\d+\.?)(?:[eE][-+]?\d+)?/, + transform2js = require('./_transforms').transform2js, + transformsMultiply = require('./_transforms').transformsMultiply, + transformArc = require('./_transforms').transformArc, + collections = require('./_collections.js'), + referencesProps = collections.referencesProps, + defaultStrokeWidth = collections.attrsGroupsDefaults.presentation['stroke-width'], + cleanupOutData = require('../lib/svgo/tools').cleanupOutData, + removeLeadingZero = require('../lib/svgo/tools').removeLeadingZero, + prevCtrlPoint; + +/** + * Convert path string to JS representation. + * + * @param {String} pathString input string + * @param {Object} params plugin params + * @return {Array} output array + */ +exports.path2js = function(path) { + if (path.pathJS) return path.pathJS; + + var paramsLength = { // Number of parameters of every path command + H: 1, V: 1, M: 2, L: 2, T: 2, Q: 4, S: 4, C: 6, A: 7, + h: 1, v: 1, m: 2, l: 2, t: 2, q: 4, s: 4, c: 6, a: 7 + }, + pathData = [], // JS representation of the path data + instruction, // current instruction context + startMoveto = false; + + // splitting path string into array like ['M', '10 50', 'L', '20 30'] + path.attr('d').value.split(regPathInstructions).forEach(function(data) { + if (!data) return; + if (!startMoveto) { + if (data == 'M' || data == 'm') { + startMoveto = true; + } else return; + } + + // instruction item + if (regPathInstructions.test(data)) { + instruction = data; + + // z - instruction w/o data + if (instruction == 'Z' || instruction == 'z') { + pathData.push({ + instruction: 'z' + }); + } + // data item + } else { + data = data.match(regPathData); + if (!data) return; + + data = data.map(Number); + + // Subsequent moveto pairs of coordinates are threated as implicit lineto commands + // http://www.w3.org/TR/SVG/paths.html#PathDataMovetoCommands + if (instruction == 'M' || instruction == 'm') { + pathData.push({ + instruction: pathData.length == 0 ? 'M' : instruction, + data: data.splice(0, 2) + }); + instruction = instruction == 'M' ? 'L' : 'l'; + } + + for (var pair = paramsLength[instruction]; data.length;) { + pathData.push({ + instruction: instruction, + data: data.splice(0, pair) + }); + } + } + }); + + // First moveto is actually absolute. Subsequent coordinates were separated above. + if (pathData.length && pathData[0].instruction == 'm') { + pathData[0].instruction = 'M'; + } + path.pathJS = pathData; + + return pathData; +}; + +/** + * Convert relative Path data to absolute. + * + * @param {Array} data input data + * @return {Array} output data + */ +var relative2absolute = exports.relative2absolute = function(data) { + var currentPoint = [0, 0], + subpathPoint = [0, 0], + i; + + data = data.map(function(item) { + + var instruction = item.instruction, + itemData = item.data && item.data.slice(); + + if (instruction == 'M') { + + set(currentPoint, itemData); + set(subpathPoint, itemData); + + } else if ('mlcsqt'.indexOf(instruction) > -1) { + + for (i = 0; i < itemData.length; i++) { + itemData[i] += currentPoint[i % 2]; + } + set(currentPoint, itemData); + + if (instruction == 'm') { + set(subpathPoint, itemData); + } + + } else if (instruction == 'a') { + + itemData[5] += currentPoint[0]; + itemData[6] += currentPoint[1]; + set(currentPoint, itemData); + + } else if (instruction == 'h') { + + itemData[0] += currentPoint[0]; + currentPoint[0] = itemData[0]; + + } else if (instruction == 'v') { + + itemData[0] += currentPoint[1]; + currentPoint[1] = itemData[0]; + + } else if ('MZLCSQTA'.indexOf(instruction) > -1) { + + set(currentPoint, itemData); + + } else if (instruction == 'H') { + + currentPoint[0] = itemData[0]; + + } else if (instruction == 'V') { + + currentPoint[1] = itemData[0]; + + } else if (instruction == 'z') { + + set(currentPoint, subpathPoint); + + } + + return instruction == 'z' ? + { instruction: 'z' } : + { + instruction: instruction.toUpperCase(), + data: itemData + }; + + }); + + return data; +}; + +/** + * Apply transformation(s) to the Path data. + * + * @param {Object} elem current element + * @param {Array} path input path data + * @param {Object} params whether to apply transforms to stroked lines and transform precision (used for stroke width) + * @return {Array} output path data + */ +exports.applyTransforms = function(elem, path, params) { + // if there are no 'stroke' attr and references to other objects such as + // gradiends or clip-path which are also subjects to transform. + if (!elem.hasAttr('transform') || + elem.someAttr(function(attr) { + return ~referencesProps.indexOf(attr.name) && ~attr.value.indexOf('url('); + })) + return path; + + var matrix = transformsMultiply(transform2js(elem.attr('transform').value)), + stroke = elem.computedAttr('stroke'), + transformPrecision = params.transformPrecision, + newPoint, scale; + + if (stroke && stroke.value != 'none') { + if (!params.applyTransformsStroked || + (matrix.data[0] != matrix.data[3] || matrix.data[1] != -matrix.data[2]) && + (matrix.data[0] != -matrix.data[3] || matrix.data[1] != matrix.data[2])) + return path; + + scale = +Math.sqrt(matrix.data[0] * matrix.data[0] + matrix.data[1] * matrix.data[1]).toFixed(transformPrecision); + + if (scale !== 1) { + var strokeWidth = elem.computedAttr('stroke-width') || defaultStrokeWidth; + + if (elem.hasAttr('stroke-width')) { + elem.attrs['stroke-width'].value = elem.attrs['stroke-width'].value.trim() + .replace(regNumericValues, function(num) { return removeLeadingZero(num * scale) }); + } else { + elem.addAttr({ + name: 'stroke-width', + prefix: '', + local: 'stroke-width', + value: strokeWidth.replace(regNumericValues, function(num) { return removeLeadingZero(num * scale) }) + }); + } + } + } + + path.forEach(function(pathItem) { + + if (pathItem.data) { + + // h -> l + if (pathItem.instruction === 'h') { + + pathItem.instruction = 'l'; + pathItem.data[1] = 0; + + // v -> l + } else if (pathItem.instruction === 'v') { + + pathItem.instruction = 'l'; + pathItem.data[1] = pathItem.data[0]; + pathItem.data[0] = 0; + + } + + // if there is a translate() transform + if (pathItem.instruction === 'M' && + (matrix.data[4] !== 0 || + matrix.data[5] !== 0) + ) { + + // then apply it only to the first absoluted M + newPoint = transformPoint(matrix.data, pathItem.data[0], pathItem.data[1]); + set(pathItem.data, newPoint); + set(pathItem.coords, newPoint); + + // clear translate() data from transform matrix + matrix.data[4] = 0; + matrix.data[5] = 0; + + } else { + + if (pathItem.instruction == 'a') { + + transformArc(pathItem.data, matrix.data); + + // reduce number of digits in rotation angle + if (Math.abs(pathItem.data[2]) > 80) { + var a = pathItem.data[0], + rotation = pathItem.data[2]; + pathItem.data[0] = pathItem.data[1]; + pathItem.data[1] = a; + pathItem.data[2] = rotation + (rotation > 0 ? -90 : 90); + } + + newPoint = transformPoint(matrix.data, pathItem.data[5], pathItem.data[6]); + pathItem.data[5] = newPoint[0]; + pathItem.data[6] = newPoint[1]; + + } else { + + for (var i = 0; i < pathItem.data.length; i += 2) { + newPoint = transformPoint(matrix.data, pathItem.data[i], pathItem.data[i + 1]); + pathItem.data[i] = newPoint[0]; + pathItem.data[i + 1] = newPoint[1]; + } + } + + pathItem.coords[0] = pathItem.base[0] + pathItem.data[pathItem.data.length - 2]; + pathItem.coords[1] = pathItem.base[1] + pathItem.data[pathItem.data.length - 1]; + + } + + } + + }); + + // remove transform attr + elem.removeAttr('transform'); + + return path; +}; + +/** + * Apply transform 3x3 matrix to x-y point. + * + * @param {Array} matrix transform 3x3 matrix + * @param {Array} point x-y point + * @return {Array} point with new coordinates + */ +function transformPoint(matrix, x, y) { + + return [ + matrix[0] * x + matrix[2] * y + matrix[4], + matrix[1] * x + matrix[3] * y + matrix[5] + ]; + +} + +/** + * Compute Cubic Bézie bounding box. + * + * @see http://processingjs.nihongoresources.com/bezierinfo/ + * + * @param {Float} xa + * @param {Float} ya + * @param {Float} xb + * @param {Float} yb + * @param {Float} xc + * @param {Float} yc + * @param {Float} xd + * @param {Float} yd + * + * @return {Object} + */ +exports.computeCubicBoundingBox = function(xa, ya, xb, yb, xc, yc, xd, yd) { + + var minx = Number.POSITIVE_INFINITY, + miny = Number.POSITIVE_INFINITY, + maxx = Number.NEGATIVE_INFINITY, + maxy = Number.NEGATIVE_INFINITY, + ts, + t, + x, + y, + i; + + // X + if (xa < minx) { minx = xa; } + if (xa > maxx) { maxx = xa; } + if (xd < minx) { minx= xd; } + if (xd > maxx) { maxx = xd; } + + ts = computeCubicFirstDerivativeRoots(xa, xb, xc, xd); + + for (i = 0; i < ts.length; i++) { + + t = ts[i]; + + if (t >= 0 && t <= 1) { + x = computeCubicBaseValue(t, xa, xb, xc, xd); + // y = computeCubicBaseValue(t, ya, yb, yc, yd); + + if (x < minx) { minx = x; } + if (x > maxx) { maxx = x; } + } + + } + + // Y + if (ya < miny) { miny = ya; } + if (ya > maxy) { maxy = ya; } + if (yd < miny) { miny = yd; } + if (yd > maxy) { maxy = yd; } + + ts = computeCubicFirstDerivativeRoots(ya, yb, yc, yd); + + for (i = 0; i < ts.length; i++) { + + t = ts[i]; + + if (t >= 0 && t <= 1) { + // x = computeCubicBaseValue(t, xa, xb, xc, xd); + y = computeCubicBaseValue(t, ya, yb, yc, yd); + + if (y < miny) { miny = y; } + if (y > maxy) { maxy = y; } + } + + } + + return { + minx: minx, + miny: miny, + maxx: maxx, + maxy: maxy + }; + +}; + +// compute the value for the cubic bezier function at time=t +function computeCubicBaseValue(t, a, b, c, d) { + + var mt = 1 - t; + + return mt * mt * mt * a + 3 * mt * mt * t * b + 3 * mt * t * t * c + t * t * t * d; + +} + +// compute the value for the first derivative of the cubic bezier function at time=t +function computeCubicFirstDerivativeRoots(a, b, c, d) { + + var result = [-1, -1], + tl = -a + 2 * b - c, + tr = -Math.sqrt(-a * (c - d) + b * b - b * (c + d) + c * c), + dn = -a + 3 * b - 3 * c + d; + + if (dn !== 0) { + result[0] = (tl + tr) / dn; + result[1] = (tl - tr) / dn; + } + + return result; + +} + +/** + * Compute Quadratic Bézier bounding box. + * + * @see http://processingjs.nihongoresources.com/bezierinfo/ + * + * @param {Float} xa + * @param {Float} ya + * @param {Float} xb + * @param {Float} yb + * @param {Float} xc + * @param {Float} yc + * + * @return {Object} + */ +exports.computeQuadraticBoundingBox = function(xa, ya, xb, yb, xc, yc) { + + var minx = Number.POSITIVE_INFINITY, + miny = Number.POSITIVE_INFINITY, + maxx = Number.NEGATIVE_INFINITY, + maxy = Number.NEGATIVE_INFINITY, + t, + x, + y; + + // X + if (xa < minx) { minx = xa; } + if (xa > maxx) { maxx = xa; } + if (xc < minx) { minx = xc; } + if (xc > maxx) { maxx = xc; } + + t = computeQuadraticFirstDerivativeRoot(xa, xb, xc); + + if (t >= 0 && t <= 1) { + x = computeQuadraticBaseValue(t, xa, xb, xc); + // y = computeQuadraticBaseValue(t, ya, yb, yc); + + if (x < minx) { minx = x; } + if (x > maxx) { maxx = x; } + } + + // Y + if (ya < miny) { miny = ya; } + if (ya > maxy) { maxy = ya; } + if (yc < miny) { miny = yc; } + if (yc > maxy) { maxy = yc; } + + t = computeQuadraticFirstDerivativeRoot(ya, yb, yc); + + if (t >= 0 && t <=1 ) { + // x = computeQuadraticBaseValue(t, xa, xb, xc); + y = computeQuadraticBaseValue(t, ya, yb, yc); + + if (y < miny) { miny = y; } + if (y > maxy) { maxy = y ; } + + } + + return { + minx: minx, + miny: miny, + maxx: maxx, + maxy: maxy + }; + +}; + +// compute the value for the quadratic bezier function at time=t +function computeQuadraticBaseValue(t, a, b, c) { + + var mt = 1 - t; + + return mt * mt * a + 2 * mt * t * b + t * t * c; + +} + +// compute the value for the first derivative of the quadratic bezier function at time=t +function computeQuadraticFirstDerivativeRoot(a, b, c) { + + var t = -1, + denominator = a - 2 * b + c; + + if (denominator !== 0) { + t = (a - b) / denominator; + } + + return t; + +} + +/** + * Convert path array to string. + * + * @param {Array} path input path data + * @param {Object} params plugin params + * @return {String} output path string + */ +exports.js2path = function(path, data, params) { + + path.pathJS = data; + + if (params.collapseRepeated) { + data = collapseRepeated(data); + } + + path.attr('d').value = data.reduce(function(pathString, item) { + return pathString += item.instruction + (item.data ? cleanupOutData(item.data, params) : ''); + }, ''); + +}; + +/** + * Collapse repeated instructions data + * + * @param {Array} path input path data + * @return {Array} output path data + */ +function collapseRepeated(data) { + + var prev, + prevIndex; + + // copy an array and modifieds item to keep original data untouched + data = data.reduce(function(newPath, item) { + if ( + prev && item.data && + item.instruction == prev.instruction + ) { + // concat previous data with current + if (item.instruction != 'M') { + prev = newPath[prevIndex] = { + instruction: prev.instruction, + data: prev.data.concat(item.data), + coords: item.coords, + base: prev.base + }; + } else { + prev.data = item.data; + prev.coords = item.coords; + } + } else { + newPath.push(item); + prev = item; + prevIndex = newPath.length - 1; + } + + return newPath; + }, []); + + return data; + +} + +function set(dest, source) { + dest[0] = source[source.length - 2]; + dest[1] = source[source.length - 1]; + return dest; +} + +/** + * Checks if two paths have an intersection by checking convex hulls + * collision using Gilbert-Johnson-Keerthi distance algorithm + * http://entropyinteractive.com/2011/04/gjk-algorithm/ + * + * @param {Array} path1 JS path representation + * @param {Array} path2 JS path representation + * @return {Boolean} + */ +exports.intersects = function(path1, path2) { + if (path1.length < 3 || path2.length < 3) return false; // nothing to fill + + // Collect points of every subpath. + var points1 = relative2absolute(path1).reduce(gatherPoints, []), + points2 = relative2absolute(path2).reduce(gatherPoints, []); + + // Axis-aligned bounding box check. + if (points1.maxX <= points2.minX || points2.maxX <= points1.minX || + points1.maxY <= points2.minY || points2.maxY <= points1.minY || + points1.every(function (set1) { + return points2.every(function (set2) { + return set1[set1.maxX][0] <= set2[set2.minX][0] || + set2[set2.maxX][0] <= set1[set1.minX][0] || + set1[set1.maxY][1] <= set2[set2.minY][1] || + set2[set2.maxY][1] <= set1[set1.minY][1]; + }); + }) + ) return false; + + // Get a convex hull from points of each subpath. Has the most complexity O(n·log n). + var hullNest1 = points1.map(convexHull), + hullNest2 = points2.map(convexHull); + + // Check intersection of every subpath of the first path with every subpath of the second. + return hullNest1.some(function(hull1) { + if (hull1.length < 3) return false; + + return hullNest2.some(function(hull2) { + if (hull2.length < 3) return false; + + var simplex = [getSupport(hull1, hull2, [1, 0])], // create the initial simplex + direction = minus(simplex[0]); // set the direction to point towards the origin + + var iterations = 1e4; // infinite loop protection, 10 000 iterations is more than enough + while (true) { + if (iterations-- == 0) { + console.error('Error: infinite loop while processing mergePaths plugin.'); + return true; // true is the safe value that means “do nothing with paths” + } + // add a new point + simplex.push(getSupport(hull1, hull2, direction)); + // see if the new point was on the correct side of the origin + if (dot(direction, simplex[simplex.length - 1]) <= 0) return false; + // process the simplex + if (processSimplex(simplex, direction)) return true; + } + }); + }); + + function getSupport(a, b, direction) { + return sub(supportPoint(a, direction), supportPoint(b, minus(direction))); + } + + // Computes farthest polygon point in particular direction. + // Thanks to knowledge of min/max x and y coordinates we can choose a quadrant to search in. + // Since we're working on convex hull, the dot product is increasing until we find the farthest point. + function supportPoint(polygon, direction) { + var index = direction[1] >= 0 ? + direction[0] < 0 ? polygon.maxY : polygon.maxX : + direction[0] < 0 ? polygon.minX : polygon.minY, + max = -Infinity, + value; + while ((value = dot(polygon[index], direction)) > max) { + max = value; + index = ++index % polygon.length; + } + return polygon[(index || polygon.length) - 1]; + } +}; + +function processSimplex(simplex, direction) { + /* jshint -W004 */ + + // we only need to handle to 1-simplex and 2-simplex + if (simplex.length == 2) { // 1-simplex + var a = simplex[1], + b = simplex[0], + AO = minus(simplex[1]), + AB = sub(b, a); + // AO is in the same direction as AB + if (dot(AO, AB) > 0) { + // get the vector perpendicular to AB facing O + set(direction, orth(AB, a)); + } else { + set(direction, AO); + // only A remains in the simplex + simplex.shift(); + } + } else { // 2-simplex + var a = simplex[2], // [a, b, c] = simplex + b = simplex[1], + c = simplex[0], + AB = sub(b, a), + AC = sub(c, a), + AO = minus(a), + ACB = orth(AB, AC), // the vector perpendicular to AB facing away from C + ABC = orth(AC, AB); // the vector perpendicular to AC facing away from B + + if (dot(ACB, AO) > 0) { + if (dot(AB, AO) > 0) { // region 4 + set(direction, ACB); + simplex.shift(); // simplex = [b, a] + } else { // region 5 + set(direction, AO); + simplex.splice(0, 2); // simplex = [a] + } + } else if (dot(ABC, AO) > 0) { + if (dot(AC, AO) > 0) { // region 6 + set(direction, ABC); + simplex.splice(1, 1); // simplex = [c, a] + } else { // region 5 (again) + set(direction, AO); + simplex.splice(0, 2); // simplex = [a] + } + } else // region 7 + return true; + } + return false; +} + +function minus(v) { + return [-v[0], -v[1]]; +} + +function sub(v1, v2) { + return [v1[0] - v2[0], v1[1] - v2[1]]; +} + +function dot(v1, v2) { + return v1[0] * v2[0] + v1[1] * v2[1]; +} + +function orth(v, from) { + var o = [-v[1], v[0]]; + return dot(o, minus(from)) < 0 ? minus(o) : o; +} + +function gatherPoints(points, item, index, path) { + + var subPath = points.length && points[points.length - 1], + prev = index && path[index - 1], + basePoint = subPath.length && subPath[subPath.length - 1], + data = item.data, + ctrlPoint = basePoint; + + switch (item.instruction) { + case 'M': + points.push(subPath = []); + break; + case 'H': + addPoint(subPath, [data[0], basePoint[1]]); + break; + case 'V': + addPoint(subPath, [basePoint[0], data[0]]); + break; + case 'Q': + addPoint(subPath, data.slice(0, 2)); + prevCtrlPoint = [data[2] - data[0], data[3] - data[1]]; // Save control point for shorthand + break; + case 'T': + if (prev.instruction == 'Q' && prev.instruction == 'T') { + ctrlPoint = [basePoint[0] + prevCtrlPoint[0], basePoint[1] + prevCtrlPoint[1]]; + addPoint(subPath, ctrlPoint); + prevCtrlPoint = [data[0] - ctrlPoint[0], data[1] - ctrlPoint[1]]; + } + break; + case 'C': + // Approximate quibic Bezier curve with middle points between control points + addPoint(subPath, [.5 * (basePoint[0] + data[0]), .5 * (basePoint[1] + data[1])]); + addPoint(subPath, [.5 * (data[0] + data[2]), .5 * (data[1] + data[3])]); + addPoint(subPath, [.5 * (data[2] + data[4]), .5 * (data[3] + data[5])]); + prevCtrlPoint = [data[4] - data[2], data[5] - data[3]]; // Save control point for shorthand + break; + case 'S': + if (prev.instruction == 'C' && prev.instruction == 'S') { + addPoint(subPath, [basePoint[0] + .5 * prevCtrlPoint[0], basePoint[1] + .5 * prevCtrlPoint[1]]); + ctrlPoint = [basePoint[0] + prevCtrlPoint[0], basePoint[1] + prevCtrlPoint[1]]; + } + addPoint(subPath, [.5 * (ctrlPoint[0] + data[0]), .5 * (ctrlPoint[1]+ data[1])]); + addPoint(subPath, [.5 * (data[0] + data[2]), .5 * (data[1] + data[3])]); + prevCtrlPoint = [data[2] - data[0], data[3] - data[1]]; + break; + case 'A': + // Convert the arc to bezier curves and use the same approximation + var curves = a2c.apply(0, basePoint.concat(data)); + for (var cData; (cData = curves.splice(0,6).map(toAbsolute)).length;) { + addPoint(subPath, [.5 * (basePoint[0] + cData[0]), .5 * (basePoint[1] + cData[1])]); + addPoint(subPath, [.5 * (cData[0] + cData[2]), .5 * (cData[1] + cData[3])]); + addPoint(subPath, [.5 * (cData[2] + cData[4]), .5 * (cData[3] + cData[5])]); + if (curves.length) addPoint(subPath, basePoint = cData.slice(-2)); + } + break; + } + // Save final command coordinates + if (data && data.length >= 2) addPoint(subPath, data.slice(-2)); + return points; + + function toAbsolute(n, i) { return n + basePoint[i % 2] } + + // Writes data about the extreme points on each axle + function addPoint(path, point) { + if (!path.length || point[1] > path[path.maxY][1]) { + path.maxY = path.length; + points.maxY = points.length ? Math.max(point[1], points.maxY) : point[1]; + } + if (!path.length || point[0] > path[path.maxX][0]) { + path.maxX = path.length; + points.maxX = points.length ? Math.max(point[0], points.maxX) : point[0]; + } + if (!path.length || point[1] < path[path.minY][1]) { + path.minY = path.length; + points.minY = points.length ? Math.min(point[1], points.minY) : point[1]; + } + if (!path.length || point[0] < path[path.minX][0]) { + path.minX = path.length; + points.minX = points.length ? Math.min(point[0], points.minX) : point[0]; + } + path.push(point); + } +} + +/** + * Forms a convex hull from set of points of every subpath using monotone chain convex hull algorithm. + * http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain + * + * @param points An array of [X, Y] coordinates + */ +function convexHull(points) { + /* jshint -W004 */ + + points.sort(function(a, b) { + return a[0] == b[0] ? a[1] - b[1] : a[0] - b[0]; + }); + + var lower = [], + minY = 0, + bottom = 0; + for (var i = 0; i < points.length; i++) { + while (lower.length >= 2 && cross(lower[lower.length - 2], lower[lower.length - 1], points[i]) <= 0) { + lower.pop(); + } + if (points[i][1] < points[minY][1]) { + minY = i; + bottom = lower.length; + } + lower.push(points[i]); + } + + var upper = [], + maxY = points.length - 1, + top = 0; + for (var i = points.length; i--;) { + while (upper.length >= 2 && cross(upper[upper.length - 2], upper[upper.length - 1], points[i]) <= 0) { + upper.pop(); + } + if (points[i][1] > points[maxY][1]) { + maxY = i; + top = upper.length; + } + upper.push(points[i]); + } + + // last points are equal to starting points of the other part + upper.pop(); + lower.pop(); + + var hull = lower.concat(upper); + + hull.minX = 0; // by sorting + hull.maxX = lower.length; + hull.minY = bottom; + hull.maxY = (lower.length + top) % hull.length; + + return hull; +} + +function cross(o, a, b) { + return (a[0] - o[0]) * (b[1] - o[1]) - (a[1] - o[1]) * (b[0] - o[0]); +} + +/* Based on code from Snap.svg (Apache 2 license). http://snapsvg.io/ + * Thanks to Dmitry Baranovskiy for his great work! + */ + +// jshint ignore: start +function a2c(x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive) { + // for more information of where this Math came from visit: + // http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes + var _120 = Math.PI * 120 / 180, + rad = Math.PI / 180 * (+angle || 0), + res = [], + rotateX = function(x, y, rad) { return x * Math.cos(rad) - y * Math.sin(rad) }, + rotateY = function(x, y, rad) { return x * Math.sin(rad) + y * Math.cos(rad) }; + if (!recursive) { + x1 = rotateX(x1, y1, -rad); + y1 = rotateY(x1, y1, -rad); + x2 = rotateX(x2, y2, -rad); + y2 = rotateY(x2, y2, -rad); + var x = (x1 - x2) / 2, + y = (y1 - y2) / 2; + var h = (x * x) / (rx * rx) + (y * y) / (ry * ry); + if (h > 1) { + h = Math.sqrt(h); + rx = h * rx; + ry = h * ry; + } + var rx2 = rx * rx, + ry2 = ry * ry, + k = (large_arc_flag == sweep_flag ? -1 : 1) * + Math.sqrt(Math.abs((rx2 * ry2 - rx2 * y * y - ry2 * x * x) / (rx2 * y * y + ry2 * x * x))), + cx = k * rx * y / ry + (x1 + x2) / 2, + cy = k * -ry * x / rx + (y1 + y2) / 2, + f1 = Math.asin(((y1 - cy) / ry).toFixed(9)), + f2 = Math.asin(((y2 - cy) / ry).toFixed(9)); + + f1 = x1 < cx ? Math.PI - f1 : f1; + f2 = x2 < cx ? Math.PI - f2 : f2; + f1 < 0 && (f1 = Math.PI * 2 + f1); + f2 < 0 && (f2 = Math.PI * 2 + f2); + if (sweep_flag && f1 > f2) { + f1 = f1 - Math.PI * 2; + } + if (!sweep_flag && f2 > f1) { + f2 = f2 - Math.PI * 2; + } + } else { + f1 = recursive[0]; + f2 = recursive[1]; + cx = recursive[2]; + cy = recursive[3]; + } + var df = f2 - f1; + if (Math.abs(df) > _120) { + var f2old = f2, + x2old = x2, + y2old = y2; + f2 = f1 + _120 * (sweep_flag && f2 > f1 ? 1 : -1); + x2 = cx + rx * Math.cos(f2); + y2 = cy + ry * Math.sin(f2); + res = a2c(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy]); + } + df = f2 - f1; + var c1 = Math.cos(f1), + s1 = Math.sin(f1), + c2 = Math.cos(f2), + s2 = Math.sin(f2), + t = Math.tan(df / 4), + hx = 4 / 3 * rx * t, + hy = 4 / 3 * ry * t, + m = [ + - hx * s1, hy * c1, + x2 + hx * s2 - x1, y2 - hy * c2 - y1, + x2 - x1, y2 - y1 + ]; + if (recursive) { + return m.concat(res); + } else { + res = m.concat(res); + var newres = []; + for (var i = 0, n = res.length; i < n; i++) { + newres[i] = i % 2 ? rotateY(res[i - 1], res[i], rad) : rotateX(res[i], res[i + 1], rad); + } + return newres; + } +} +// jshint ignore: end diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_transforms.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_transforms.js new file mode 100644 index 0000000..e251e24 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/_transforms.js @@ -0,0 +1,302 @@ +'use strict'; + +var regTransformTypes = /matrix|translate|scale|rotate|skewX|skewY/, + regTransformSplit = /\s*(matrix|translate|scale|rotate|skewX|skewY)\s*\(\s*(.+?)\s*\)[\s,]*/, + regTransformDataSplit = /[\s,]+/; + +/** + * Convert transform string to JS representation. + * + * @param {String} transformString input string + * @param {Object} params plugin params + * @return {Array} output array + */ +exports.transform2js = function(transformString) { + + // JS representation of the transform data + var transforms = [], + // current transform context + current; + + // split value into ['', 'translate', '10 50', '', 'scale', '2', '', 'rotate', '-45', ''] + transformString.split(regTransformSplit).forEach(function(item) { + + if (item) { + // if item is a translate function + if (regTransformTypes.test(item)) { + // then collect it and change current context + transforms.push(current = { name: item }); + // else if item is data + } else { + // then split it into [10, 50] and collect as context.data + current.data = item.split(regTransformDataSplit).map(Number); + } + } + + }); + + return transforms; + +}; + +/** + * Multiply transforms into one. + * + * @param {Array} input transforms array + * @return {Array} output matrix array + */ +exports.transformsMultiply = function(transforms) { + + // convert transforms objects to the matrices + transforms = transforms.map(function(transform) { + if (transform.name === 'matrix') { + return transform.data; + } + return transformToMatrix(transform); + }); + + // multiply all matrices into one + transforms = { + name: 'matrix', + data: transforms.reduce(function(a, b) { + return multiplyTransformMatrices(a, b); + }) + }; + + return transforms; + +}; + +/** + * Do math like a schoolgirl. + * + * @type {Object} + */ +var mth = exports.mth = { + + rad: function(deg) { + return deg * Math.PI / 180; + }, + + deg: function(rad) { + return rad * 180 / Math.PI; + }, + + cos: function(deg) { + return Math.cos(this.rad(deg)); + }, + + acos: function(val, floatPrecision) { + return +(this.deg(Math.acos(val)).toFixed(floatPrecision)); + }, + + sin: function(deg) { + return Math.sin(this.rad(deg)); + }, + + asin: function(val, floatPrecision) { + return +(this.deg(Math.asin(val)).toFixed(floatPrecision)); + }, + + tan: function(deg) { + return Math.tan(this.rad(deg)); + }, + + atan: function(val, floatPrecision) { + return +(this.deg(Math.atan(val)).toFixed(floatPrecision)); + } + +}; + +/** + * Decompose matrix into simple transforms. See + * http://www.maths-informatique-jeux.com/blog/frederic/?post/2013/12/01/Decomposition-of-2D-transform-matrices + * + * @param {Object} data matrix transform object + * @return {Object|Array} transforms array or original transform object + */ +exports.matrixToTransform = function(transform, params) { + var floatPrecision = params.floatPrecision, + data = transform.data, + transforms = [], + sx = +Math.sqrt(data[0] * data[0] + data[1] * data[1]).toFixed(params.transformPrecision), + sy = +((data[0] * data[3] - data[1] * data[2]) / sx).toFixed(params.transformPrecision), + colsSum = data[0] * data[2] + data[1] * data[3], + rowsSum = data[0] * data[1] + data[2] * data[3], + scaleBefore = rowsSum || +(sx == sy); + + // [..., ..., ..., ..., tx, ty] → translate(tx, ty) + if (data[4] || data[5]) { + transforms.push({ name: 'translate', data: data.slice(4, data[5] ? 6 : 5) }); + } + + // [sx, 0, tan(a)·sy, sy, 0, 0] → skewX(a)·scale(sx, sy) + if (!data[1] && data[2]) { + transforms.push({ name: 'skewX', data: [mth.atan(data[2] / sy, floatPrecision)] }); + + // [sx, sx·tan(a), 0, sy, 0, 0] → skewY(a)·scale(sx, sy) + } else if (data[1] && !data[2]) { + transforms.push({ name: 'skewY', data: [mth.atan(data[1] / data[0], floatPrecision)] }); + sx = data[0]; + sy = data[3]; + + // [sx·cos(a), sx·sin(a), sy·-sin(a), sy·cos(a), x, y] → rotate(a[, cx, cy])·(scale or skewX) or + // [sx·cos(a), sy·sin(a), sx·-sin(a), sy·cos(a), x, y] → scale(sx, sy)·rotate(a[, cx, cy]) (if !scaleBefore) + } else if (!colsSum || (sx == 1 && sy == 1) || !scaleBefore) { + if (!scaleBefore) { + sx = Math.sqrt(data[0] * data[0] + data[2] * data[2]); + sy = Math.sqrt(data[1] * data[1] + data[3] * data[3]); + transforms.push({ name: 'scale', data: [sx, sy] }); + } + var a1 = mth.acos(data[0] / sx, floatPrecision), + rotate = [a1.toFixed(floatPrecision) * (data[1] < 0 ? -1 : 1)]; + + if (rotate[0]) transforms.push({ name: 'rotate', data: rotate }); + + if (rowsSum && colsSum) transforms.push({ + name: 'skewX', + data: [mth.atan(colsSum / (sx * sx), floatPrecision)] + }); + + // rotate(a, cx, cy) can consume translate() within optional arguments cx, cy (rotation point) + if (rotate[0] && (data[4] || data[5])) { + transforms.shift(); + var cos = data[0] / sx, + sin = data[1] / (scaleBefore ? sx : sy), + x = data[4] * (scaleBefore || sy), + y = data[5] * (scaleBefore || sx), + denom = (Math.pow(1 - cos, 2) + Math.pow(sin, 2)) * (scaleBefore || sx * sy); + rotate.push(((1 - cos) * x - sin * y) / denom); + rotate.push(((1 - cos) * y + sin * x) / denom); + } + + // Too many transformations, return original matrix if it isn't just a scale/translate + } else if (data[1] || data[2]) { + return transform; + } + + if (scaleBefore && (sx != 1 || sy != 1) || !transforms.length) transforms.push({ + name: 'scale', + data: sx == sy ? [sx] : [sx, sy] + }); + + return transforms; +}; + +/** + * Convert transform to the matrix data. + * + * @param {Object} transform transform object + * @return {Array} matrix data + */ +function transformToMatrix(transform) { + + if (transform.name === 'matrix') return transform.data; + + var matrix; + + switch (transform.name) { + case 'translate': + // [1, 0, 0, 1, tx, ty] + matrix = [1, 0, 0, 1, transform.data[0], transform.data[1] || 0]; + break; + case 'scale': + // [sx, 0, 0, sy, 0, 0] + matrix = [transform.data[0], 0, 0, transform.data[1] || transform.data[0], 0, 0]; + break; + case 'rotate': + // [cos(a), sin(a), -sin(a), cos(a), x, y] + var cos = mth.cos(transform.data[0]), + sin = mth.sin(transform.data[0]), + cx = transform.data[1] || 0, + cy = transform.data[2] || 0; + + matrix = [cos, sin, -sin, cos, (1 - cos) * cx + sin * cy, (1 - cos) * cy - sin * cx]; + break; + case 'skewX': + // [1, 0, tan(a), 1, 0, 0] + matrix = [1, 0, mth.tan(transform.data[0]), 1, 0, 0]; + break; + case 'skewY': + // [1, tan(a), 0, 1, 0, 0] + matrix = [1, mth.tan(transform.data[0]), 0, 1, 0, 0]; + break; + } + + return matrix; + +} + +/** + * Applies transformation to an arc. To do so, we represent ellipse as a matrix, multiply it + * by the transformation matrix and use a singular value decomposition to represent in a form + * rotate(θ)·scale(a b)·rotate(φ). This gives us new ellipse params a, b and θ. + * SVD is being done with the formulae provided by Wolffram|Alpha (svd {{m0, m2}, {m1, m3}}) + * + * @param {Array} arc [a, b, rotation in deg] + * @param {Array} transform transformation matrix + * @return {Array} arc transformed input arc + */ +exports.transformArc = function(arc, transform) { + + var a = arc[0], + b = arc[1], + rot = arc[2] * Math.PI / 180, + cos = Math.cos(rot), + sin = Math.sin(rot), + h = Math.pow(arc[5] * cos - arc[6] * sin, 2) / (4 * a * a) + + Math.pow(arc[5] * sin + arc[6] * cos, 2) / (4 * b * b); + if (h > 1) { + h = Math.sqrt(h); + a *= h; + b *= h; + } + var ellipse = [a * cos, a * sin, -b * sin, b * cos, 0, 0], + m = multiplyTransformMatrices(transform, ellipse), + // Decompose the new ellipse matrix + lastCol = m[2] * m[2] + m[3] * m[3], + squareSum = m[0] * m[0] + m[1] * m[1] + lastCol, + root = Math.sqrt( + (Math.pow(m[0] - m[3], 2) + Math.pow(m[1] + m[2], 2)) * + (Math.pow(m[0] + m[3], 2) + Math.pow(m[1] - m[2], 2)) + ); + + if (!root) { // circle + arc[0] = arc[1] = Math.sqrt(squareSum / 2); + arc[2] = 0; + } else { + var majorAxisSqr = (squareSum + root) / 2, + minorAxisSqr = (squareSum - root) / 2, + major = Math.abs(majorAxisSqr - lastCol) > 1e-6, + sub = (major ? majorAxisSqr : minorAxisSqr) - lastCol, + rowsSum = m[0] * m[2] + m[1] * m[3], + term1 = m[0] * sub + m[2] * rowsSum, + term2 = m[1] * sub + m[3] * rowsSum; + arc[0] = Math.sqrt(majorAxisSqr); + arc[1] = Math.sqrt(minorAxisSqr); + arc[2] = ((major ? term2 < 0 : term1 > 0) ? -1 : 1) * + Math.acos((major ? term1 : term2) / Math.sqrt(term1 * term1 + term2 * term2)) * 180 / Math.PI; + } + return arc; + +}; + +/** + * Multiply transformation matrices. + * + * @param {Array} a matrix A data + * @param {Array} b matrix B data + * @return {Array} result + */ +function multiplyTransformMatrices(a, b) { + + return [ + a[0] * b[0] + a[2] * b[1], + a[1] * b[0] + a[3] * b[1], + a[0] * b[2] + a[2] * b[3], + a[1] * b[2] + a[3] * b[3], + a[0] * b[4] + a[2] * b[5] + a[4], + a[1] * b[4] + a[3] * b[5] + a[5] + ]; + +} diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/addClassesToSVGElement.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/addClassesToSVGElement.js new file mode 100644 index 0000000..51b9ee8 --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/addClassesToSVGElement.js @@ -0,0 +1,40 @@ +'use strict'; + +exports.type = 'full'; + +exports.active = false; + +exports.description = 'adds classnames to an outer element'; + +/** + * Add classnames to an outer element. + * + * @author April Arcus + */ +exports.fn = function(data, params) { + + var classNames = params.classNames || [ params.className ]; + var svg = data.content[0]; + + if (svg.isElem('svg')) { + + if (svg.hasAttr('class')) { + svg.attr('class').value = + svg.attr('class').value + .split(' ') + .concat(classNames) + .join(' '); + } else { + svg.addAttr({ + name: 'class', + value: classNames.join(' '), + prefix: '', + local: 'class' + }); + } + + } + + return data; + +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupAttrs.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupAttrs.js new file mode 100644 index 0000000..a9e732f --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupAttrs.js @@ -0,0 +1,56 @@ +'use strict'; + +exports.type = 'perItem'; + +exports.active = true; + +exports.description = 'cleanups attributes from newlines, trailing and repeating spaces'; + +exports.params = { + newlines: true, + trim: true, + spaces: true +}; + +var regNewlinesNeedSpace = /(\S)\n(\S)/g, + regNewlines = /\n/g, + regSpaces = /\s{2,}/g; + +/** + * Cleanup attributes values from newlines, trailing and repeating spaces. + * + * @param {Object} item current iteration item + * @param {Object} params plugin params + * @return {Boolean} if false, item will be filtered out + * + * @author Kir Belevich + */ +exports.fn = function(item, params) { + + if (item.isElem()) { + + item.eachAttr(function(attr) { + + if (params.newlines) { + // new line which requires a space instead of themselve + attr.value = attr.value.replace(regNewlinesNeedSpace, function(match, p1, p2) { + return p1 + ' ' + p2; + }); + + // simple new line + attr.value = attr.value.replace(regNewlines, ''); + } + + if (params.trim) { + attr.value = attr.value.trim(); + } + + if (params.spaces) { + attr.value = attr.value.replace(regSpaces, ' '); + } + + }); + + } + +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupEnableBackground.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupEnableBackground.js new file mode 100644 index 0000000..e6384ab --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupEnableBackground.js @@ -0,0 +1,84 @@ +'use strict'; + +exports.type = 'full'; + +exports.active = true; + +exports.description = 'remove or cleanup enable-background attribute when possible'; + +/** + * Remove or cleanup enable-background attr which coincides with a width/height box. + * + * @see http://www.w3.org/TR/SVG/filters.html#EnableBackgroundProperty + * + * @example + * + * ⬇ + * + * + * @param {Object} item current iteration item + * @return {Boolean} if false, item will be filtered out + * + * @author Kir Belevich + */ +exports.fn = function(data) { + + var regEnableBackground = /^new\s0\s0\s([\-+]?\d*\.?\d+([eE][\-+]?\d+)?)\s([\-+]?\d*\.?\d+([eE][\-+]?\d+)?)$/, + hasFilter = false, + elems = ['svg', 'mask', 'pattern']; + + function checkEnableBackground(item) { + if ( + item.isElem(elems) && + item.hasAttr('enable-background') && + item.hasAttr('width') && + item.hasAttr('height') + ) { + + var match = item.attr('enable-background').value.match(regEnableBackground); + + if (match) { + if ( + item.attr('width').value === match[1] && + item.attr('height').value === match[3] + ) { + if (item.isElem('svg')) { + item.removeAttr('enable-background'); + } else { + item.attr('enable-background').value = 'new'; + } + } + } + + } + } + + function checkForFilter(item) { + if (item.isElem('filter')) { + hasFilter = true; + } + } + + function monkeys(items, fn) { + items.content.forEach(function(item) { + fn(item); + + if (item.content) { + monkeys(item, fn); + } + }); + return items; + } + + var firstStep = monkeys(data, function(item) { + checkEnableBackground(item); + if (!hasFilter) { + checkForFilter(item); + } + }); + + return hasFilter ? firstStep : monkeys(firstStep, function(item) { + //we don't need 'enable-background' if we have no filters + item.removeAttr('enable-background'); + }); +}; diff --git a/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupIDs.js b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupIDs.js new file mode 100644 index 0000000..f53b4ca --- /dev/null +++ b/extensions/fablabchemnitz/svgo_output/node_modules/svgo/plugins/cleanupIDs.js @@ -0,0 +1,209 @@ +'use strict'; + +exports.type = 'full'; + +exports.active = true; + +exports.description = 'removes unused IDs and minifies used'; + +exports.params = { + remove: true, + minify: true, + prefix: '' +}; + +var referencesProps = require('./_collections').referencesProps, + regReferencesUrl = /^url\(("|')?#(.+?)\1\)$/, + regReferencesHref = /^#(.+?)$/, + regReferencesBegin = /^(\w+?)\./, + styleOrScript = ['style', 'script'], + generateIDchars = [ + 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', + 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' + ], + maxIDindex = generateIDchars.length - 1; + +/** + * Remove unused and minify used IDs + * (only if there are no any

3GUQKtQ"7lBc@Hjm24?k6b>pEdS]n,-5:(.gpnUa+QOeWTQV17ONSaVb;cEXVtko[jXr]rP,1+!Cleg3@6IJQp5WK=J%!5OQuD+.Yp.7.7dgS5f#`)N3SDn]BZ(BF/omJ'N6=^Z&i#".KAV5^]8sX!3W4N/X?d*'#\LHi)p0K-t3>_&mkV%%TU9I02So1a5GE7qJB\,,<9uo/,XV%Em/h$$joW3!u4]:jnlT.J`Xs__R]!OXEp_bDqTHH0/Y(/@:X(H*U_a[Z/?]^GmZ0E:f-MSX1t70G:FJ[psGt?pYnu>V@UC4!L^ejb]0QZ>X\]*^/4"#Q#n0l-m'2jJaW^g7"=9B8jDPL.;J[,2"Waqr*JrYeO1=T$>@Z#O:E5j/6Hqs/>j)j$%bRA&8Zk\fLZk[FH>L?IO!&2lpX_9457;+4*MRK7]!!$E(6!M`;:l7ro!oCB]"A$WL#.GGe>ZDsX%?M"sRP(g!"IJjh"c3"I9g9n%CAdJ2EEeF07/$mjRVF0jI0'`o(sGQq89[o16miHm'2W5mC+^6]tG)bWMs*Ji71YtI4c?@H];lJs0Wj6SWGF'D0"CB+(X3L2VE>P;m'<0:1d^WAG+>23Rg2C'6RHg\pU(8:@uZ.T2Y/j4j;&MrlV7IP-tDl\C$tOBIbK"BIheo[\Bl(!+;Zi>L?JJMU5D2'l?BD!])'qfY#"V^nH:n?[Di\T9B:?;1*W\SFfb#8,=Er]sUVqZWeL.=X16^rGl3>=7Yk;$91-qDdtN@")L3?rp`[^iB!5i0?Ppi;8$,b.!D&f\\$Z`i=Qm&uPdQ"We-J3UIjnk%0O,EE4=%'653S/=4,X6%6CYRqt'HPj*o'\T[KYq:WX+f:Q.nGAfMlGATAbe$XJs``%fVOaX.h\CY6WS/`T,Ci%><_af%72rA6.W_^p]VNq6c?TTDI]_7Uq\akETW>gr*rr/1a315mZ=)=.1PZ?['G!7ZDR=*=VBB@gQh/^W3h/Zn:=E\nLaOQn(P_2=:ZFXX=Y1n1l*]fOI]=r3FkK]]`USHjiA:-qV[uJO!Mg*gF?!@i^QIF[\S``5'a+%oi?`a0&DZ+[d4L;4[mT?qgY$&&1QG:.+G#[Ydp.[V[J'Y@k)P0)r/SQ^8J/\sOMRJ+7KXRVWBIhdD!!$ULZk[E]V$Lp,>L?KY'`\6X1h\Dn$;(T]Wk"qF@eepFnZUJRVZc"?9_Vb?-2p&e:ZGNhL-m[XYu`fs)P/q&o"u]IO[G6Mf5HqDeb07>[%-;/6`teiKDHkCuK#IaeI=J$TH.NhH;(i/D;Yubs&(IRZ:U?6g^r6hQbdi^7\RO513HT-eEi<=TT0F^4DVQj'J%eX[qrA-qIc[HJO1pjNX]R5@s*0`4p[JHul-mmtj/68,%BI4)5$QUAg(=)E-CN3P8714(/#sq4"TWM:6!M`;:dWN0Zk[FH>6+`>N.n^7Xe:??X_96=MREQdJ/J`379`&,ipg(>[YgE0Dt'X&/\_o/W::_pongF@`Nm.2Sh%PGnIHTY+-hPCP9\!.A0L$pf\i\J*tCb-F!aA3a!6AZjN./<_H/X93&5$npuLJL_oSSDk6C&;@-#u0W#RuC3Arc=$X4^3-u>:k(`8H(,Nn1PaFs2nG\!mG%Le??^A_P$4>J&fHWp:BF8jsJ*$0tW)&eJs5;'j\Kf'a0UEa8hE,\.(L-=tNl0B@ShGHZ'#A'UnV74s8Jfc"jF:T-b?94:ja!(lr6TX,;WoG.,2*N9UL'Jq28+Vs$&U6r>We&mqr)#n#m7.i8=SG*]uXi0+NRN7\E"9N-!oe`.=,)<60&q=hXQAokm?%Vg9T<)_&%U&g`F"6rILMh0qent56%0O_nADtU\^@-p[$j,Ht<_@6[Rr.nrNB6eP_ZN(FG_ZFhUnRtS^a3$SS&g<'?Pd/n`hpqroc$W/OZ^tjR^eB@C];t/]&ccf46^:HH9"+.m^_OX3$GUg!t%h@+;\44.i#H0m-acNU$#3AD%%6?(U,!,i=N_g8l^EjO=eW^=t>fUY8`pOX9&7F;L-^B)8R9W?"`dX-+#\a?RJK@U"sG_RA[N^A9nmfME@U"sG1*,+!\T[&==e9A)nMkN!YF]Tb8ouktR2fltW=Pg*]Cj4(=5EjA0!EEXGg;NlU.&-VT"O\q_k3*UotV<>%V(q+'(fN*Y:6E1L'(#+UVOU>s%kV(^-d`Wmr+B5ifdgq`E7.J/&7;k>o!ir(FJm)R6Os&Wbm_^ht:@o)Uj].(Q[,1_Ou/!-hJT%7\\2`Sd`8p"SRc:C-pa0k80dl=#0,8k&O8Ci?UWGPHMKR+L[5k0pu6pr7uAc'gK(!Idaj4ac8e"eDHYmN*BN@+kqkc6Db]KM_2>Ht:9+bWf&Cb)q/aWfuX;HuL(:+)#"pcTf!8t,C\F;'\-DcKoGmZ5)Fm_SOAoEekD`3ETMg^"<4+6r>4f6:YWq8;m2/3,?S8kGYDJC7iQ#CG4I6,0q^KUs8Oa#:MH#W:?V-\f'F6Wa+P>;)?H#F:;rOrTQH%/^rsU(.q/]atBS%$Ob'c&UgNJ,J,B4Ze0?2eje7d"7QrFJ[PF/;mjP%)cV5_n;Om^3k!^*CKd#PEAs&e%Y4._&t-Cj`"HPK_e:`hm\%r`B>tk%n=Ru2[71PKt85BT.SRI]D`p1ao0#+/M55/D++^Rdg``#gPTMR[M@PSD8iq-KFh$uYcZPY,`An/fN)f=[M9s=OD9Db`O6snUdA9#KY9]u0U29t?3TT&D@'*m7R=M[YKR[VL%G`@$BKm_AEj*C$$rD]mtrG9?M*=:qDBXo5$Da4GV]7gTBFZZEVmJTGR&isMCqiU.AG&**JDFuQ>X3Wd9cUJhgoFd28Q`Ah/MDoMm2-XE:<5lYdn(-ahHZO/^qVuPhmb@6RjT2l8mlbpbE%UGD[GYEl]G"VND20K7>_c'."SI_/Yn%B5XbTtnS)B-uol0Dc$XGiKqGe"7]$Mu$j+R81:k&IhDKiq)X7nqT:AmWGrWJ@gWMKp,XU$(\]"tga>ELJR[UNIGXk6[-&43B+[M@PSA.c6bgPTje[N^A9;JiY?fN'8UUt\N5A;@BWBG0s&/V<]J3oPlk/%cS!$(=N`eg'.NT_kLrWj`ALRXQT"(2aDhX*Via&4.tAa>_EDgM+03_g2$D5OF&X%UFdrF\VA[_`-N9/Z3#Mb:$W+nfY$7l[[$:hh(b"S;4ft6RF!@HkH(cn6j(iiVPiH!df91f[AIa5Q"n$bi_;p(l@4pk8oj2CIq7qP+%DHgq;_egpuf9]Q/H(em/^CfN8PHqTk.?`\06d-X@mC=T8_Sd4hp71%`?pmbZ_)ogJJfnDP1U*JJ-$4bGi)?%p&nF>\I@?j*&bo`0/"bJDoU0As_C#@L'f-p7FpAZ-cLImfcpRipIC&4365Cb)q/aWbOO[M@PSD++^RUtT3\Z)pP4@9^"=fN)f=63nab#2>#P75BO^PQm&[eKF'[RS,F?/YF"j5WBp7+Y4CNKnkB>$@;)E&G39V=kQ"SF:TH!)LWuekmogJW.FVc@Q6+W^j1hK_M_K:E5i.Ki;Q*WnDM]Cf[UYNbrZkPF'B]#ft!+HI4l+RhX?mHcepI*^&\`*!]Xf2nF#ZD/mj&6DVFRk5(2_3RIBTsQ5.;hjhN8u`j#uLn:KL\(UeE$i$Z:m"p[X"Gi[3b\8fD$BK7f;3Fa9R/+2eXchh1]CKi%56"dpt_&sYL)EtK?T8$Xt$F$KaL6p3_d.UuEgJ<"1RD1ie8&f$5nsKTT3+nJiKCEM==`SPW"q[3A_41d>%IJL]i&tNZ-R@N63s>7J3*,!\abN]3l=f3_m=)`M#R/^6;#o([X36h"V#>1hF&&@/DD+_81#[UNI'/Aei)>Ht<_Rs)VZ.sJn-.sAbJ9D6.i$b*sKbP&c_o6/$j99-gFs)%q/qpckbq.I=tl;ab?nl;/f/oSRXi)hm"nneh@[:UeV4+A2S\7@C#[X8lr]]]o3Z?/$1Z/Q="^2aH`[.%;0Gi:9bBYcang&[F0ciY/='^bq_1n;$o)dL$d#@+u`)dKa\X)[[]E8ff9E:K+YE9T,t`?r*@`BNM<%^bdZ%)X&IId@DH]QaZd\6oDD[;m'g\nJ9eaYpYFnIE'BSoN$?m;W$8/MNM1KGrHN(rOT;cbdYZp;&b1[_g#,p;2MV2oEU-2o:9,[_ZO5&&B!=O2?TlGJb_"p;$J3[_el[1Ge!IjkF2#b<`)Y=*mFNA6TX4aE3&O`O6s.Jo/K8@U$+>#U+k#/SlrG(!.#'/%-2IMJYcf+f&j]>Ht;$(=@ETdo#^Hn(J:@)#CI=BlLG@LMdqGK,>qZ[]%t(1jZkS_.$4Z]lK&$!$0C>qB2p;;bTkpn_Y#FDYSc[\#se_#;URNQop2J;UQ&d)ibrUOp(Jd0ghXGMbXQN\<;io2T"\&b1:,H=0ZgVB\N]hK=lf_L3fYqN0B1m6l#0Q:kriNHID)sk2,knT.h+93pjTC`F[2hK&hTSn&-l.o2*d-,hnSkMk1&7Fh.n2%A@Wc:k,369b!2$70k'c%CR#+MI[=-(#+U_`O6tD&5mALXk6Z"Mm0>9OnVXEmabmOu[R(amR5fPT7=2G,!'16!/[698MS)W+B$Rhb)=$"'6i%:Ng&[bFD6h:>IZ'<-*+*S5*-3+bYqsfN)f=P""#(Cb)q/gPQP/8@?:B@U"sG_ROd0`7p>I8[Qm*DAQ(3X#YFst:W=uH-Vi@MVXc4WL>k0KDU()6H9?t1J^2P&r0YLsB-TieUhpT7g9u9^*W[*6/;?km5D+1`9gPTje[UNGQ63sPKfN)f=P""#(Cb)q/gPQP/8@?:B@U"sG1(E!RD[MQ:k+bj_:ONDCSn_aYKjo8Z!t5T&+%.Zu2&iH7^6K+5,h]UselN!g`YqQ\eBh'"%uD"q03a;_$Yh-9%$B?8Erjg>Nt53-/XUHF4+)m;K)5DdngLr9TR^&+r4LM"8n'>StF?@kelK9P.@mkO=X]?1NrW:Vc,X9P+SI1l5`aF'Xb8s7&8"O.kauTOsj.>>TO]$O<>9(SF5l(`&dijfYL63mgkN#CSOaY*1ejY@6ADd'H(VpdQnf^a-Pi!\F?%TbG.lY3Wko%Q+Z#W-bI;<;a/?j;1\k9gVubkBlqcU]+AYq<&t=l:G])mXT+(63rusYcZPY,`An/fN)f=[M9s=OD9Db`O6snKPe]:@U$+>#U+k#)f.%5(!.X7``m-XPb>k1AXU(]6*4oO5s+B$0gO+XucbL.u)/&juPCj7f=UCP`2:*b12(nRIK$ka\n=RQ>BZ)pP4@9^"=fN)f=63nab#2>#P7C!3RMJ^>@@TsF2#cT`7K+KYBEYZ$j(>s[l\/c@)!gjB79,c.KTOq8$Y7H[7GmsH7]a8I-otYM>[).2SK_tL#^mD_hgp=U.?G#nBSiYR2F\%jj0rGk$'0^`,K1d#Q1bQ]M[8g[r+//TD":1.u9l>7'Pk9CZlNqI6sL8h^b;_$#=<\i)a9&K).j_3nD';61Hd*f[BU-ZE4BUA@fUc@U"sG_Ri]-kspWMLZMsYKBZ@fCL7R,\>isqToE#4aa`-o=3lE/ODNMfPD_7=X4_h&st.h(A!ZYEoMlL:2EZK/JX.+i))G=2TDr^\r8sJdGb_DPqL0LN?mm&l[!1\CkSB@p_Uj2Jr:K#*E<#oTpubdai#hs&*T":I^l'"8^t\T)_sQ3]_8QeB_$BY:iLtm*ToLAHbFu32+_4dh6HF8$D8iq-)1l_E[UNIGXU$)'<%Vo:[M?mqCb)q/gPTi:#U-!Y@9^"=8/?J#kUTg_D8L$rL6*'D#l4q\gA4^70D#UlL"X>!TXCW^Gq"+bg_K5_H:[a^jQX-Pi6Nq0dMS=:ac`G2SO[Fn"\X6$VPa.sU^]6b%6[=ZC'f;>BLW"97qi[89AVd#`jXS_P!PFV?=$)$J0t46.b-'?%UANY*#O]eL/iR)J_An9Ae1+dN'jKAj!#UW;"'4iORESYdUtBG!39A:JV73YSmR"Vi52YB55;56Ko`i^Gj/*>m-X7sI=2TADKu`\hW]_W01Oo_DstPioj+f)mK$!nM3lsl(^BK[?i`H-l@\K+"&NW8f5X^%cUOVk"Y_kN_0^AI_7TH6_>]cR%"h)mTMmNS]e7+dFcW4k?iTc_+MRYDn28G5"YMoEb4g;Ki28".B)rA=)'OJK0%dU9?_C(Brf\Fsa>rR@DB]OCg63s!fYcZPY,X\f#U+k#/SlrG(!.$O[aJ=3odu`@4A);ckmGlIlZJ?hG_K^NKpl<3\'jTAnCAlNM+3K%Z/W*f0#?!am_Z<.RUOI_S+-'L)e&n3Fg;mVY'C)0*9r&%O$8.Qa'.HlUCH_Bl.aPtU@GK`j*H^hn(t%!7uuMXh]B<;CMFoIXmktnH?f!k,5!3+U3BY[ic^fFf04(T4Vba\9$`BT6dkqYEc)F0WmT_9l[drbsA&3oOY24nG:UM*:FMbW4Xmj3\H?f-o1V@t8!S3d>K4dt<_=M=-6-$:)mmJjJH1:`c2L+fB4]kY3!0<\`$SPcOL?HiFKf,ds_/gEr)DBlu2(./:M3ACQk&_8!F\4c;(Zl)8e=T.lUK/4#+oKsI*sa$Cr91AefN'7bYcZPYCb)q/+bYrWKl+f;+rPuL`O95[Z)n9TKN'O>/%-27+r/hsa543GMD0(E:&s_X(A%\6#([#SfIo%F#gilbIDtdt.)U76I4GRdd>#50]n+6]jFN&cXtZ9E]XZ]MLlG9J(rjSJ2MMeP,7jWg,g&:T(5sGAFJ4_5;M-*Fnt`IaV'6qh(&3nG0Zp\`IbaO"URhTK/]j,%Qqo#HKs!0"TamWWZ!q/4Q5k6*rj@ce>M!H7B>/WYTmhXShr-dHt<_@6[S!=$Np@E]nH.1K_D8O-._b#^W)uJ%l3^20]]tDeCfhC``[EabH"/TTV]Z2,hfRe,05eYL1.!lfc0HOSM>hs$%%@q<_Z=?\&B,MhYS/-B#8fNT#;89l/XhcG@aX6ZOs'5L'P^H3iA\p3lS"&=m]IF42A=CEE@U"sG_R>?T8fmZMR$s1nFt'*Vj7AbpC21.fasI!eal@SjLaA@j-;O!=a_!D9ZkOekoODoLPP'VllK]"ffR`9P87bDi;Q06:RcK4#8*u2u[Lsh2(oNHt<_W8.o/]#f1k?u:FEL"25aNC^0pUcrD\)s;q[0&iKW\i.?EPX?cNN<4QOUd+nOKidpg)R'6UmprqWNd-6H$D,#5-'.;p(ech^\a.oLQ49h*H@q(8G=X^%W;6Y@T=3`FmU>S$+,!n[$P'H,Bkf^&?Q]`Q\dg%DuH]F\g,qOTE)(+T-4,X].bK)LieCIZQ-IB+WrbEGQ#n<6BbTIsL?.AP0??a=]>CMOl">7j3CFG"GL[N\k-D8irHZcTXb>7j1-W>=,eCb(Z;fN)f=3Lah8[M9s=OD9>``O6snUdA:^j/BifQ#7dIcr\XG9P7Ef/(1%^8!]lfl..6*\+E%n)0b+%2GDtj-i>)<^e#jQIllP4lA?O5Y2_ldLZ6PYH=6i/nJJXh*-?gAW"BV0"mC3N_"V7cF]:-[9Vt2/EfknCquHT4Ii;VVG^8LC(3KL;*6er1iX1W1"EhYH+4r7U/ZHt<_GQ5.5&hH9[cNG]#En?5o;od;l?f%j6r#/\*%5567X.qhO`?'jOYo7i0&)0L6e,`aL3:GOQcu(MJYef#ht5R`O95[&OHc&2V;&H/!@iME2KAP(mLb=[QifELfN*Y:6E1L'(#+UV&[iG/MJ^>@,(pM*D6U.p<[:&rUKY."Y@qceV^rTY$5\At_E-Y4Y[.#hcu'a6oGLQ]9!9QN-scHE#l='U$bF_K_LR^hDrpd1Pjq=?DCgN`^:XmSr0Ke?jO$hLn"'p=YMuV&K%G9kUCU\BciK\($sb66/^99:D++^Rdg``#gPTMI[M@PSD8iq-KFh%hYcZPY,X\fdX,CD!r3qq-4&\(V49L*K?*SYib"V\7,>'Gl)qC*6ZBATJ(nhrcTgI^S_g\G](Een*bcOUG8jND1oVB_'nq`(`@8JmXd)u`pccRfFKR[K3b$#SFbi^W&(:=f\?cPlh=/ui+!*Cd#;02!)ZFU)51n>$_aX1k_*Tc+`Irifc1OnGaSuij)MAYgrfs^ifN'7bYcZPYCb)q/+bYrWKl+f;+rPuL`O95[Z)n9TKN'O>/%-27,3eVuqKpf&1m`:q;dRgP[!)_.=+W'"]q_(DH-psA]nfu&rIS?M3mG:>YY40nF:ZiAbKJu^\S_CS]o$6FgBd000YZ`W?uN4Z+$Ioc[Z45;d@#d5QT]l>O7^=g-Z%Gl2?s%b3\^&430kM<\ms'Y=n#F@#[\)HYk-6R*#eJ.i9M6R^%>ab@gi#)Ks7[n#^1EO_;=T'QqT:(q(R[gf_9+hG5$s4(XHBc1TpKHqf$("K"98Gp@Wd:ZRlEo*uEkV5Qo!?29O_?q:l7_7Ul.g1Cm!1@lVj(_N)&ZppbAZ^?UdQ>BZ)pP4@9^"=fN)f=63nab#2>#P7C!3RMJ^>@@TsF2#cT`7i5+1.u/[XHuVL/\piFW/Ef)X$j-b"_LWLh4_.ilNg"M>#jOnPXQh(rSf9uIoo/m+;4!B8N2qV/I/!Ht<_lV(luZ,o;a<8rPurC69iNOQWI.qq6LRc;'H>:bi5J3.UX"T7Kn3q".ZYcT%#dJgoYjXk5tk/B5V9UPGX)r-R$qK+)J(u%jAqp(eA[X-OA."(pnI+`Z4T5,#KF"V_q9Tf2M*W;@:U=pTZeh0M69^"29s*9Q/`3ohYH4`kToZ#Qnu`l0\Ma3Z@4nSs&rh3L=$hh3PD`#j?3=63Pa^7-(cs+;mNVKKit,#YnjD>IS()?e/pqr)YM]t51S*0#1JnR+bYrL2JanP(!.Y9/%-2IMJYcf+f*h">Ht;$(1CFPXk6Zj.maLbeHXccD+1a$Ksl<.oi,V*$4FW!>8=U>B8umj_=.*ahj5aD^?J96sGmWd^terURQ3k>q#C9A7#U+k#)f.%5(!.ZW='K6uUbhX091ISO9*WV]o6BQ2?LN"_l4C*WhA@W`'Jid'P)'(AjCVd4cSOij3l"=Zg!a5g/=c,]3A&@T74,(%+[RLD=iO#g:dZIM'WE3*ahe$)"4Ya\=C,TZX2Y$CNQMdT;Oeqakttc-)p/LA]\Gr0RCR>$;m(oXQFX+bTj((#+UV&[iG/MJ^>@,(pM*D6U.p<[T9P)K5.GTOi]'r\-Y,&OlIe'T0/=P@f>T\\t*[[4[jG5-k1gDB.M=aGZXpCSj?2#ShMe4)-ais-5M0f!Nd(<"-fso8jSSUEV"l4o)'C!3,,\CTF;ZJ\Sd_"Ib2G@^KQT>?u0RmL28A,#aoS7Xk6Z"Mm0>9Ht:9+bWf6Cb)q/aW_JR8mhC3QW6)GdVkshWIQU++gR>Sfd5C9LK_IfPWb_#egXpH0M/9h"I9J@@0aEDDpI`H'kC(BZ$!!=CscS9Dpi#aWVIA&&oA9rCL`Fa`#DIb+=RDPK8nj$?W$8A0Q=k=8aoHE1.^"+PVbb6Db]Ht<_m,]<674>FBg;f@L=V'#kYP,'jonZEPCr][+CKlFEW6edZ0Y$gm45gcXK!06/NpnBEp]&rVo,T/Tg,G'"TqtlAJH"4ZK%ZMD"fE[1jY&>:$n_qj!0fKk7N?d&]@5V;*6eZVp#$\ZSJW\pmE:is.i]C^iUCV!]"S^J4DU\%5legT(63nab!o&TL7C!3RMJXZs.GK_s70k'4>$tR>X[n2n8$sB]SQ)eH'nW=0LnI!*6"*%2-g9*_Rj\OQKF`aKTY$="jp8O;\qdJB;hFFlL6sLTj),DfY[GFhcKDV)`CgS^[,tfS9*`0P(.X=3Y:Q'I6MUIi*ff<03&p3=(GC_nUX\6n;/AP!&ASh5h["/V(kV^i/NB&Si@fYg$'#a0pr>UJ"1rnr39.])cuB/d"._Qh!2IVd>+4jG3I(G@(p'k,L'.B/SFrd)nF_SF)]E&#I67:6C\o4o)3*U7)a.#9A"FW+a*$A1?jsM^\cI$C^(.>R*JC>+7Uc%4$\%V7%K-&%[iW7%N8^PW&K$7JW5GJ0^kN*gp;+"r(uDjt%.<$%!!`aWpp/e/HhZ(-Ttq!E]^fIeMVs]=`]7DnJ[s/>%_]]l7$!:Rr2A)=;l1c5o8M8-`dE&EX=GU$8#R^Q&]dX&<Yi'F`3X51V%(2m+*#aI-ch,"1CN%*,r>(pnhDsfr&M,@m)b/jD]oVK)+a!&f/souJ2m7.Q\f6.rCCNCLU_W%_!W9G,2&D:4`pcQ\$[;'N!Bo=qH:-/iZ3rCWp"+-@^'"+;@snLG0#_cTB:M!BCZG:^@*P*?Gk^n3e2bkJ^TMLk*F$+JA]<$<)aBj4$6It]"?150$!/Z6[Pu41Z,).7N]+\`?_)aTI!uph^"!Y>So04-_Y(t,g=cP[h-aHlX[n1S>Ht<_7j1-WERqTCb(Z;dV[M\B[k6BoLGssn37:r"e@)jVsoP9UU2k3oM\rt*BA7JppDeKcnT"`H5hRo_N:FC]X6B:*GZq\D4^B[_;BZe"DV/s^6OK0>lgHQCHn=Pk6ub,^#eb1\(u#pQ<)Yp&\sGlq&3S@HNX^O%)^_KXrG0sSZh"+bE(Sd'2RPXh0&5OdkNiW.Y=;mm9@)8oaU]#`Ie-[*uj1PL1bJgY%'-o@OUi(]@u(bmrcJD%pm)+o.E?kn6f%q%l\@<$/I:e[<9gSJHPZ)[G0$cOeWG[NqSW_?DN5!\tAh[FVLo%.E!>KAZ%0%kh90K"q8+)lu'S%%".W#nrL9">rKXMU_]tH?`2*eSb+bWNJfN)f=P""#(Cb)q/gPQP/8@?:B@U"sG_RP>_8i+Acuh[R"7B?^gS"P_J&If\+bYr,-#>*?(!.#'/%-2IMJYcf+f&j]>Ht;$L1"5jXk6Zj.maLb<=@Q=D+1bO1SI,Kkq?;.8]T4XEiDC>kpu!jW_cUXlTMq^l%`0o$XjafE,6eOSfL2-n4%POfXeUD02:,RN$CBkCtYr4Qs?lZn2gR2e]7tFk8>p;l5KL$>)QgPQP/VAj>%[M?n.Cb)q/gPTi:#U-"t?sBn<8/>Wd=]Ed-oVKlEbC;>=*-j>bW,oe0@\:'"U;In0[26n4i1oFR+7o@H9`1+'htN1H@\r>tgtF;blmX->1l%)qAMAYEN6drj8L45:e`cRJKYljXo9tSI`KGq'!u/jElGp`O6snKPe]:@U$+>#U+k#)f.%5(!.Y9/%-2IMJYcf+f*h">Ht;$(7@d!V&rWc\Gc6^2GpdWArcCX3lgss=L.V,)@2Nh31$&WB:aETVFM];Mo>X;naWB<8bbXng-e!@88*YC9N$9&biD\u/]hpp5qPEEJrYELJR[UNIGXk6[-&43B+[M@PSA.c6bgPTje[N^A9;JiY?fN'8U9Vnl>&&;+HF*cg;-IN]Hal@:7a/AKQR9jKgp#tl\]k?Tf,7U8U#gE$;Eoj/>roK`N:YgK`6&d,fZjsB6T&'>NVB>,f&Qt5(91g[V>(i(&1[;cX$Kj)MbLL0Ud"Qdr-"G3lM_f"`pKa.s88?[$UR;1NDV4"bD&N.Knbg7e&CoU`Kl&f7IS(]/1;p9h,u.Q?A[N^A9nmfME@U"sG_RHt<_Us/Zu;La*$0@+j3#pe[B(@PJsal>R0i8A0+39\71Fn]>h#MbOEKjt\jW_M]5u_ktH:nEuhWGj"3F3&VPf/!l]4nHK29hIq[%-a1A3Nddp66+W`Dg\TjE"'=F"M]MmjPNUY)e]27X*:U]?i*kZm"!?OI+#B*jcLV=_F^_?[2nlD^38SEM(%JT=pJY![q+Gc\>.:M;Qf!^>f?+tt'6@RXmXk6Z"Mm0EK>fO0[J?qNd/!H6B:'Sd79/7\NRj'35J_$TUL3@0puX]ngcu42NPB?aq^N'"/)BMCTsmXturqH"[F;r;6e7$7lLTf[mHd?*)C1&%E@1X8=2ho*Ir@YTmmf4=["E5n6_tSWZ2&mNmi2g)E@.+I>cMZ3f3'IO^6;8poY[B:Ocht:='Z6MK%t8Su#sRX1i5f"/B?jTa?hV+9Z1/S,_s\)QU#?j&)DsE344"@o6*XQ>oR.YoE\Z@Xj!NQlds1la0W_l!_q2fGO$;8!BE%H%I/:2MT0+!DT&W1F8#A_prSK_k"%+g0kT#4*Q=#@?lWmV>m3u;ME'Ja?b_N;p3V[p9JI`]@E649\Y]%=.%j!od^)o\4rP#,-)03A)+bWNJfN)f=Os/IYCb)q/gPQP/8CbSc@U"s'_7!fWZ)uYZKFgJM(:Ft4MI_ie5p+r?WV!=S6EMpkkUW]e=2HnJ[ZqW]%RC1h(XAl0+=n9bQ[U1C0In0QV&*YB%m#Z`rP"$su+S/mBFX-8@Z/LHo%n"s*Tjn>So3A5VjTYa5f'C,p=1[@WT@Z?KNT&`"X`3=S>L7P'p`KN[1E7?niR;*'q6Z&m=J$C*P]AF.R>@MjI>TW2*\<$W)':eUl(>/H(1NpE_\h1O%6SJ)jp74p^i5T_Hf_FA(FU0$Kq@_B14bG7d>_3tJ0t^Z@&!%^A&!nh.#NsDp!Zs8k_2[cA6-kDHpgCfBgKIc'gPQP/VAj>%[M?n.Cb)q/gPTi:#U-"t?sBn<8/>WX:/9Zg/95NDLk$&@ARP'OM,9KgF[%5sIP3W#'Q;QbK:6W'eHZ]8DZG7X;Al#Q+?&?1MuEOY(i8r]S(KI]S=3"h'P,Qf?9-qY(-4`#!SK]g[rKX5=[JG8JU_7%nr>dO>D>eB,TXM*ibuYa[VN^+pRf5gLDo+IF_@C$UU,\F!dO?.4`pT=5(;k9V+^R"/R'mDg+1LBmFY7u)#&YFCi(2EZY"'0Gq4V^:,g&#?QFg#B$DNkfKnlen5^-fL7:*dn!S?btRqDS`0m:;C-sn&)8sYJYX,p;'OSZN5OQd2H,2klokTi=*)61"=s)HUfmQ*:/=i1>Q>BZ)pQO?sBn##MJ^>@@TsF2#cV"[OY]MG]`IL*)\]bfhNC`%j9N+3CdflIk1>^70h>Bp^]?[DpY?$-ja=]#8[XM/4M^Dj=^H4fF>XBU)Y\m>@WVZ?Z<#>^qmKBq)/L[3RZKkj^0L?hp3K54L-LO,b3=.Fp/Ht<_5*]kegl4Q!)m"kfL=T*RY\&As(Fh506UaLE6k6)[;E44aGBJA#OV%+PF*R(e.>G,7IQ)]"AdQ1%[W(N]Dt`%u-b[D;0]SE:KM&P7o6('R14K!`969)!ZEh2o=VdL,f`.[#I?SF^aZqT_RN"H@WR5h8A<=ctL$De4KG!$/jphgO9S0d&?-\Vhnm1H%2AtTm"t=+b4ZA&92^go!k*?4m[N^Bdkm#n"D+1`9gPTje[UNGQ63sPKfN)f=P""#(Cb)q/gPQP/8@?:B@U"sG;PC4Als9L^#XY:Mh!4!s?(b\f8g`mW5^e6E,%%^N0!%ju--3Kqd@3kAU56m._RUd^RqCC(AO*..L@8OPeje;>ELJR[UNIGXk6[-&43B+[M@PSA.c6bgPTje[N^A9;JiY?fN'8Ur,?LQ@6O(hM74C/Q$t6B4]mjpk"/ZFc6SIsnmnjiW0.`L8K=.FSW(tdPNR;')jXH_[Zq*H$gWnEFMa9tBjDRrNi5gMnK?d8T@&Hc\"4XKi4IA1*E[XU:"W1g4-h;X/kHW!5o]*lg3*TH3Dj]INfq!$KLrii\Y>TIhh*6NAPR=](SD3($Bc5HhclI_X-.mrY:3.JId3(:P;T8Q'HNRleCXfTh-aHlX[j49>Ht<_7j1-WA`C0Cb(Z;VUALD$'kp@oA02u=.$'Ld1PIp5'`sTB4FMfn*Q!*Xgt6Tb"\JS9gC"WYi;0Tra]?0elHMg=*e)m?C:7i,t![a]k"'>q-/\:!\5/%,]TVClG7#ZEEREU5j8W.18@85:+")QA?]3^74&,uFM<"kb%0g`j)1)]^NV;P,ELE8s:0[,S0o$$)>t2B^k:kDg"a;Dc@5u^%%9cO^OoeV55'8XU$(\]"tga>ELJR[UNGICb)q/+bYqlJSiB7,$BS9`O6E3Ht;$(1CFPXj$TL>Ht:9+bWf(Cb)q/aWbOO[Zrj;Cb)q/+bYrWJSiB7+rN]he^A<2^M!K_Y8,L/G_3(P0C0Hr*be^&=OS#M*?b/*QM85<#C?BoE-$nQ33Tt5)#VVZi]rC4)jr^9CTcM6+D50*OOT-Y$65VhRo83+9$R*I._dgH@]l(*2p?;ig0t,L4$LNr?Z^d=?ScJo,R2R;%!V!$?5$[o5L?UK'V$[J\-)tK9n665WrVk)agh(S!pR`FU8!6ZQ4#(b4G,@M&s0Kfk%[:isFAgD8Z,)>6M^tEXD0dHk,Eb#D!EY93K$8%W:$E&oQNS%)*d)T]LoIZnMiBL@[+pE^e=GiOK?hn;i'&#]k\:HG7dH"/ms.g=chch-aHlX[n1S>Ht<_7j1-WERqTCb(Z;[&qbrFAZ-k>SR_U-Nl$#ZYaCj93mqFu)Fn.`IKaWC@beWd*kZmb#sk7r5h=:i3\KMrt,5Ae-*JMi:6MUB6YJDU"/t=Y;/%"*IkdW=WB-tl;p?9JR!7(T'3:,mLTiHp-HiL>fG!F6f7iatdUCVN5bDG/mDua+2/Qg5,31dbr]"nZrNQ#l.k,WIOg.SZYD@Bjc*5O?[L*-EX(ARlU45ef`SZr+U0FZu=W0>H[Fp.PXHO6hERND2lT*,*OWt&IMAAOP3:;bbkpVYQ/$XTr^!o)J%__YpeiS=7d^uj3FGi;O&oRg6S@<63/A6TX4aE3&O`O6snKPe]:@U$+>#U+k#)f.%5(!.Y9/%-2IMJYcf+f*h">Ht;$(3q+f/+nK@N*`*B":Z,`X0'6S62TtXiL[8Z==O/TTh-XFTb&R0i/LnN\o%p@q03;FjY,3&Z-aBu%#P75BN3LQ8jl[rc)#]f^KE#DC.7C>k,E_kV;Ved=^`>NmH/:Q5/R]lq[-l\,(c?:7Qm*K%6pkS3Y[opX9ad(4MLp`0;#YLhaGq'Y+>Z[#Z"W?89IIfo[]eoA32>6eEHVA]C"B1q0fj(!&r]K1<6F;mnc*V[Q]i9+OnM/0>j1CnEZaMGEn^O^TIp;"]E#i<)f)K+5S)d^57#=&130t;E*)7Y.56)^Q[U<#(/5((pC$o`+<">=-IL6`drdCc`j,D'G$)!8e3)m;RKR.e25KoXB4/qI*:nVtA>qB<@dm7le*0t_h;(G>LR1u,J+4Nn>Un@q3?!dgNk0Q:JLA%Wd!F(XYi@H6&\E:)qsE;T?uE&\rWfo$?W1RFQgJT"cOg!_r@Ir6iC\a0Z.[e)%SZK+-\=uQFWSnNWX4,,f0InNuRA6TX4aE3&O`O6s.Jo/K8@U$+>#U+k#/SlrG(!.#'/%-2IMJYcf+f&j]>Ht;$LN+ReiqtBIhP.,kcGJtg"af1J^Kh?4bhE[.qUoI?J'e;,@)5;l3pOTA&]3OY_';HF_7=Vf_aX1+_Z^FWrDVl\E[tD)k\HR/4"pq&@i3*@CNmR>o=)U4$b!kT$b(TjQ\b7qY(6c"KoTq9*GT]U`"fdimM;a*fDV+!D[Y&r.\)f99/jZAQj8O`#AqY>419P>kC0rW/mYshlII>&iV%:j-Yi2LD8l```(b40]X@6Smgq&L>%(?>/,V,>&qgf_ISABpCb(YlfN)f=[M@PS&4/q<_RfN*Y:6E1g0(#+UVLicj$Lli#dIk.Den[I53n%+9d]Tq[5d'atYHP&q@+U,k^$mH(6Z#)&[on7WglI=f>K=h7FSobY2#U:AI'S\4K_>rlG<;/mq9Fnk$?5UT>2P=D.h$J5i`RKE`gOX5Z6(+:WBOHeiRh1I/%-2IM@`*F[DB:\>EK>fcZ%T=l![:bWMBkpAa%TBp96l,]bMhTAjb1n6f3+GUrOYT7NDmNLoEh+=2L,YGetSFTJ!>KSW_]iB7=,UHgnXRq;tV=3lkO`h/?C3b:J5cP"8J0h2^*j9bepku>EK?1[UNIGXk6[-&43B4[M@PSA-fUYgPTje[N^A9;RNa2fN'7bk`8boRkBLB<8imhDXY'M=i=B>P7aZLppd6HB\Wo]a%#4:U9Y_Yl7s]pu"6$CgF\t^Hm5iRTIqXrk35uZ=B5&P-*Vnhef.1eof6&^1B%pD9,fSY$6B#on$M&%j*\qrHt;$L1"5jXk6Zj.maLb<=@Q=D+-2_gPTje[UNGQ63sPofN)f=Os)<69DVLbiEH8/*)GgY_h%!SB:ec+@Do4XXqjW(;qVCEYd:COP1[Y'`rQu6E#g"Q4/%-27&8\DVLMb#=@TsF2#l,:Q[UNI'%)KAuHe;A8/%-09KTLZqCb)q/aUm]>XS!=!lMO0-^!)[hN1Yu!HDKEG8+kqM_07WAk"<6Aa\2Upq;"fh,a%cU9S^quI@'DGlu-sg:=>=B,9__6=4gPi/!;(.<^/-O/%-2IM@`+q42A:6>EK?1[eaE@>Ht<_t&"gPTNtFB^3Cno=*"L<655g@b8E'.+DlEAXM"8Yo7`#/4T[R=U#&6@Lu"Xk6Z"6a3]l&[iG/MJYcf+f(!'>Ht;$L1"6a,A\m=(#+TW6:_j-[UNGQ63n`f&454o[M@PS&4-XGKFm_BYcZPYKFgHU+bYr$LMb#=,(pLo#U+l64)?FU'd85A63naqh-jNmXU$)'&4-XGmge*0D++^RKFgHUH$@nACb%gX+bUCnaLf?u@TsF2#U+j46J``k(#+TW63n`f&G#7nXk6[-&4-XGKTLD5D8iq-KFgHU+b[KiCb)q/+bUCn#U/9b@9^"=#U+j463nb'%blkX70k&i&4-YJGM#r4.maLbKFgJk]>M'd>7j1-+bUCnhAs$>gPQP/#U+j4o'W`afN'9H7)E/67%l<"CX>Y8IVUE[ppPtO"7_EK;rQc.TVk6)Z^tK1Y_73^)F=]QKN&P"/%-271i05%Kl'6a+bYq!#dtK&MI[X6e_@sL,(pLoa:AF.MJYd;KKe%D.2E1@6BFMUrq"#,,HMN"@1<@Q])Q%QqZ#<^[i`f=qFn]r&'SmnElH"&E5BLaOWodHcq)OiTdW6`&K274in-U\L*:'7_8H`g3$BOM84%iX,[_J7#@i+>D%8kj&0MtPF5-(G\@]>QWk5>.?t6uq\XAk5rHl0Hf3[gDeQmOhY342ZdFrqqH`uJ4mqpV/7+udP%,^dP!E'DXpd,VGDEaJ24e+<_ntCQ^WLZ'q8Bp"b<.2\'hB\+M*hUV-Hh+G0)XT2b7F=Z1)"eo5cHpHigT5R`>a>+3nC4;i6C%@omb^UF8di]bh_3k=kuNk2]O85?p9\b`_qN?rd)ja,8)]\cY.Vc(7o4O#0H.O?;5$DkJMUZ;M&XX'6G[O]sDmRt\X\P"GgGd+!"ALF:#hGgcqq+g_?g\',QE&Z7[P1NheIpR05<.>k@Oco*(U!#C(^U'`@B"RnDn@&A("99@r9"/8\kZ59[D?U$(V-E1b/.gW0\'hAY@'Xl)h22B!>A5j>:Pm.J\Oe/m7HK!!oT[S_=%f]Je@.Q*4.]>GdUdHqjK>,&'mu<-<78Nf>10PDg%+BjY;+@GRP"J'adZn5Z[r)Lc_l(ONo0>U.h'*62HH1^sm\gMVHk(R.nbmJb?RNI($\kUo.b8E`M76Z/"4nbBro_RTE7`R:X#,]:$rdo#_'<1J8JJDkZHOVcV0LncR&8!#Lc8V-C3\F=Z0>[fV)ZdB.L@(6NL2>No/g0K$G,DT)YpQu#QJ,+Xup0BcV3Y0*Y()8=LdpQbiqjXEE/#QEV!hWm-Q\s70P!n",l.fe3[]%(EWHhNo0>OE@Nt4Z*iMh,OObDea?*q)3?q@'fFa3'V.6J(C_S8@R$L=JoN8(jHk'PYgCqFRB4K;c=9s+=^hrIr6Wbqu6R;Sj*Z&#hHWL2]QT5SMOMgjX,DW!rBb6D9\b.*GCA\Mg5^p`Q0_k['.h:0SSoM(ogYNf0(Pj)5['oOJQDa0rSf>'5Eh])N`cEa9$0Yn]1\DLfplTA#c00_'L2u;385;sY9Y'udi?'eE(A`2DA*BnGT"s/WM-#`Wja_p?5jTVu0p3aX#H)1JFeR*qhC&Hp0Yj&icOUKct`7CV!tX`Q($)K`"hh2916+3/`O.nbApjp]R`URu<29PH7E'<97WqYo$[73:^V)sKad5IV'iB6m_C\rmq.f"%Dpoc)Pul+h,5T9&Y`R]$!V*dF5,gqRR<2_l]YE;=[&Utf>R\U*,55Gm2;>hA][/B+8n$/BIfjfQ@=)Yb5]3J(LrcQa5F5nq3&GF?^4cd][#'hd?94Tmf-7(-olYO24V_5(>tq7XYt8O(5Hf#P]!=%(#A.(h+G-X-:YJud&gCi]%'`jQ#9TDX/C%ih$TMdh.f['Bo^/r$LE`qMA+]hTK-T=k4ifRs??^H0eDimZbQfY[Hacc([$-\aYVon[DWI1N>IX-FR]4A(9mE2S)WHk.aVI\#N$>$j;.">./>eXRN1NT0]hYln8N`YrGhj/JP2j>DMS4IQO#>,q0`1^,HL@'Z;RhS0.JsmF6."thc4]7A5j>i.JfM[=*Jh+LAtc*;gGR:iEn/3\G3Cn#5uRgUN1YB"`p&O9_26K;V("qQFqS<=Cr]5/\/DF(Nn#_*/e'eY:)Dq3DB13f9InW:S`cga3(TMX%G"X]_gTQHq*3bVS@rXaLm#J!2JaY\ePT@\'hC#/)No2"Q#=-r:L*1^p:b=h9EaEARPfrG3ng4,TN]/MC1U6/A;/!^7%U6-mNG%OL=2"A5!)Gj2;1kj0:?WqJHdKe6XEgc)cah2saG1,)b.%aj1gW=X;H21=Z/,se7-(IU]k?'o,Z4jP2s.SKpW77[1n2ut!T22m3PW+n59j'I3.]6sO8qG,[aFAf<@-0\3qKpKLnZrD/BQPc\M?T_YkuPB\DP^S%\'hC/ajR;5.i(\U;`JE.k.OnE?^R>iGpZLYnn!!,VfMN.l:Il1\K<)(E1JL*?V%n;nq(#L>[LV\od%d.YFK10L:R71S")C!iE<\jro^q7hR$Y-]^hObG$WtaF/Aobl$VfA-MCU)FNH9UQ$(B!jXu^t:C^"J3QE?$]U^q(HfZYgPPa1*5+(;33!]2"Vr+Z4.WVIu8t>1/c,gY_n!0(ggQfI7e]>nrW>rFI);TE2LQV_n9]l.u,PmQsQ0fS5EE9CUheas2q;<=$tP!Djm5bA"!mjf?(Rc8+KthTDm.YjCIT&kIb3r:JR'h=,p?OjkV^B2*$XRVr(]NMFO2[MIeYc!p#VfFmnekgRa\V.q_k'^#p0D]L>T(]M:)Im*%#N_j#3n-V7?&:Sen?"1&MZ^!HQ\%^6\ZQ#=PBdB.L@h+G0)X`Q($Z?.VQM?T_YkuPB\DP^S%,:M#]ZmqpA25BGQ&feP$-T3H%+k0e0ps6`[,Z:t9h5H6rF"3V*8Q+`V,2/nTK7lgIN583lNbj4o)4Rgjtp0kD(?`%28rZp`(Uo\tCminN)nbOi^8NY*=kZ=j8pWVgt_u3O^7q^a^oQrI=o[df,E;TSR\Ra.0Z8_>F>"O2Hq[\I5h6PGmf;F+VFP%T$Ial/a)u)Ocje63pAJ_d@+ABSL+[mK`%U7^n^h2bsl&Jm"+/%#jJdsqAh]<5MkJ\@0ugfLNTK^;d8^Oui86N97b"/eQ%H[u@+WG_C@-%Ao?J+b(9@jTYMAL-poKd@H\V5BkT?,B>(IQ$Fk/.13*\'hDTP>/NtTRPD+U"$2d/)[/KX`Q'/Li0%nkuRc)VH[>&5AK+Ql;kJ2E)Gh"\eP2F0V30Y>6+^(j69UU'`\4fh@AmQO^F+A*UEb+^dpQV44lp0!WW3Q(>VTl!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fX`Q&n!+7qF9"+j%!63KiF=R=k?p*7;[fQO0`m_&3.f]QW4P`W=!WW5?e#d^B!!$Chh+G-X!!($fXg[#eY.njUbK9FbQ8?j'Zt-'EG,mDC+sJ3TZESWJ'`ZCf4M+gg3cV7_lDq($dB.L@&J5Te&c(&B_YB:ddiq=u]1cfYW8!3i]QFfYLmRe*0)BKJ9R\QLtn]>FmkHA4qBTE\IIn^r#C*_)b)qd]EKLJD'-ekL$C3!.ZZLXj/`.>@"`(pKLCa37bD*oM;*EF%trD;dI]HniZM;jihdXQIkC$5kIARhpa'lk;@W2B?O$k^7C&6n1>0CaP!k_LMuA72LN]c-ZZZ^jPej=\//iR\Rh@H3HJf-ARjc"Q;%9R*FEZoqT@]0dB.Mk8IV6Xok!n%7iC_e0mo9aL:^=lT4O8GY*;Ke5IZShV->P%aWl0,S^#%_h;>MVcN>cbX%P%J]B[ou\s7.jf1c/>10g]=Kg&^ano3:E/G.W$PD@=>B;*Weh+G/F27f(3M_eVH3=C8Dm,[-2bus8:ALA"TD9bJ?/\9IVFfSg"^92$ij\X.ZV>W!D:*+bbS3D).jlD8n@l!NhaiLq&&J5TeOlsmOb,NP*P:J4Lrpa18o$ZB\'?:Tk]_8@,[HLZ&Q&(6PLkqSNX`Q'*&J5Te\JW_r/n2<$rjlAeX31`PCWg?h:T^f@C0=j!gTn86T]PI>?J0@!q1J70o'rGYkuJuP+sJ3m+M*hU,pFNW+sQ'B>A^WLID=Q;Y2=AMbL,FJQDLF5>1V;l>'AeIGK\$FqFJe^GQ4=ImHEMp]as#XEbsi6bJOkIe+1lsJ$A#>htpHtdH-!4O$%MkbGk0bQK,#=/U?F$c^'PqDHSn%2dfrJ@"I^@SJ1\(paK2mg6pSSrFlorDEHnr9i&\Rj+THWs5b?Z'"2G,/^+B:Xj7Lks,`S+X2>Q4q>?5H4.B_1/LsJ@>1T#N[9S.!'eS%%5:l7TT.6f].3kf>.4i&qDC$JN+sO>>dB.L@&J5Te&K)\HC:IK=.]_ZnntYc`ntn@Y^?+#<^6[kJ&%A&i^=omihYUNkqW0eB:-ZJJns15tD:s@;%pQbof<$WcmX)2"/N<$2q27Ia>K\O(n^<`4htZ?"_[#qCoO$l9+sJ3T,*s]nl`2W'a4FKi*^=g+a-Knh*noFj@cc"'COYHs/[$fdQM6`lPZ3^.OjoR/Q;e^W9",EF&J5UX`9:75Q&(6PLkq"NDDbq53a26B]?AgLS$(Z!Ech-)QIVhF/Z4W2[%(5]f!9a@V<.L+JX5t=#?sqC?$`ZD?<_;-H0fLn2njH*bBr.FNg;5dA_'on[@B:,6psF26prY>f$7GbVT9[me=?04G/`/,2mWrrtb0&+t,DZ!$4E9@ob@ARo>>D;kc,p!poD^\Gf8`grT.>u)Y<4>Y#9RY?H?aq_j!Rl3Ek)!:6psF27-*?*ek0&'^]`#9IbCG2tp3n`<8Fp?oYmjiF3D>4t1.?d#>'6:=406puKL%QrBaAH2)(fsdm@nG\2I*o2&?fc574AbF,jbDT^%P*WSD&!TkT4%lSDb"1eh$;2k-DDbpG.hN@*&WoXQ\'hBH6psF2A:/L"$[JU3=ajW,bMfb)r3/,\b#MJ[=%)E:USu#bGSS4]]BMQGMMcbZaoaMcd$C"I9,dKm;jj^k0(6kgiCGPT5V9HEr.G\Bt<9Tb.3l8gtCKZq.D'NFmhLR4R5,In8m?oWSr,$_[V+Hn4fIS,>WG`MW'ITI&^8j(,sp3@ec?e8Cl7FU6J&-'4r)NQ+q-qHIYGZ]BN23&@Yb].3e>26j);Lfn808]WH32$Ih'%f%%l,?WEq#XggjKDiF>XUSTCW$s*.fZ_f[Kcl=,6&pc3$_`.*`kj6*'c`UIRNTB_]I`D(NP(d@(]h`4c\oT.Vc0O2(*mT*,K-VFBLnOhJAo)4@D<:26..j$CsA,18i2j[h3^R+t$rbK'Mr%9[)=*3T<7_hdXo*;->;tNc;1QB`!5#_DRr_j&"&5jBD,#Tph1f?J77T*#[=AiR*C31u^$Du&&#+-4!5;4t+Q#6ba@;Z1kMpEK4)Vo/<>)o""=MT$n2df'e('#*[r>5-RgUG0I\ljQ#6a*!0a6`kuIca^j*H@YVRT+OhYItD_aFPnsbUD9)^g@&'?h(IT>t$o#^Hbo"jn2o%2tdj^"Fl!!!#->sC-kUcm3%9^FRccf@<5+9`pR+XJ>?,"3a,,@r.n,_[NZ-D`%H8%6pK!!$DAF=Z/S!!!j3\!jR+D3XrMj8@Kfl*=?MP^VYEP$a1GG56oVhkIc[j;0@3>s;-bGPPA:-nn^]FlpA,^eWk[#GrhHoM!spNR,O,;uKDh;[623;Ai@V;CbX%;E[oI;GU1m;INIpJ]Z'14k'1"lnd2-ARs^WX1EUP1`_,Q[;>RY;3`aT?HuOGCaK':1rF!"RHgdIpfQ;C!SV"'DkJr1\jfe83odX8;Tm>8C?WO)4,UA/XF1',HHGVCB"'=V7n\;hnr^5U4C#20G6?=`?t\>3"RHgdIpfQ;C!SV"'DkJr1\jfe83odX8;Tm>8C'bZ\Z9CBWu<5(?u:qY>N9qO.8Z%\t5C18I=6I"%Y2,!u74UD)g/?E":r-`MK$e.N#<&G'>$31&CTNfZ3[fQO0#3])leo0e(rG,@.*=`&L9YnfLr[_nqhMl1FkZ.Z`Y[cou(QiS=!!#*HDD`H@lq@BZ?uaH'F6jV450a-.^nipWcEU +endstream +endobj +44 0 obj +<> +stream +Gb"-Vfl'i&^-2Dg+8FZ`X5DIdW!Y91LSA>&(I>-u-/a6ms5\2'Odk+@B\:f+YF"D\__;M:0FYi5AR9GXcYD#ilrFP40FYiQ$o;A1DY44ODT+:<__;M:0I&LBuhgKKNZ[L1(pR@2S.?bu!R#;@nR\eiqTl`GWXK%)Xb-__B:W@CI.afW?!F@2O`-(krnRlrJbZgSBSPRi\Umo&QK:[jPGi__;M:0FYk3\+.c5Ab,r7I2M1k'V/.m>R'Pg@.KPeEQ$/ENPua.cL1,rac(5VqM&:sb.H1)X@>ZruBpWPH9^H>j09^mb"&]]+1.[7`=s6=%WeZh$TmQs#h2:$G@>[(8gFs%7W:9`&0LZq(.s5B>D&A!V<-\CNR%b&%e_o7u.$[E-UM-XJAr3J]j]mBWTZu0c"dbZdO_40h[r!RclJj]/Z=u3Ln!FBD>-@\ZYsH0RrY`0EXd=WdrDg?(XlZm[?8ekku()j"Y1FCKs)A0u[fTj3uqs!jS?b_/bbb@/o=l1!A-;d:!YiEmm<_rm4r_5@rZ\9aa?a(H&9'R+glPtpf2IG4-0cJ]bgiGW\F,+f&0Gp,X+T9i6(d??*=o:CLr4tW04I@`rs0EXKh.G1(NT:DYZnA:EB&_p3/>8kE/!,*h2:$G_`=7)8+c;;@(0USic#CjE"7A_i9gmchOjbli>g/%*<$.tMco?U-jQGTh**5o\d]Em3smM3SV6+IP+BX$mY8V%UXgI`"]k$f$'ss=%F^X3L$?eS_7*WtKGD*o.OSX"*nU$a]0O*,F[JU3MUedPeO.K8e<<24Gf=R>DT1QScJ^!b\/2al]+p*B3/;SM.h*<]B)WXF#\ridW!$?=B]#8(FT/%`dV1os'<&Qeh521?g7-pY4lSDF#\qr3/>8jiTe7CQL4+%>Mm9TmEB&_p3/8;h34fp;'o-iiLNE7V%VN7[[pli+E";&M%VN7[\)M?:kAUoD\,$ZJePh`N(&>njns>@,?]sLm.*iqj(9W&]Ipgcurs8YtViTc&X]&W_KMdgq>*eN#"o/JE/g@##eV#6\TlfN?R':,)C[kFR>IG,][74Q@Zu=mXNG>uZ'S+?g0W[M21Xno8W6F)Plf+Hr3-=.:9U[[DDRIMnij\5]fq.5#2J4b/Hp&,YY2'TTM%!XgBn?`%C;K=e%Ms'66?Pp<:>Mq(@lNhlK__[AFO;F:Tm%%[dJIU!`@<9CEtIC6#d`+NK8OdV@+)M'Tkr*\ODZpg_[]dmquTPq[K0"_/V/e%>N!Bs7^sCn^s'4@@*It;YY.DWQ@&e8;FRU@PS'lB;HTa38?$%,@^dO*@^fgU+sM?nfWEf.fWBsC"CeiL[j!#Bj4LKjEOV,2ALpnt_f?6+j_,FF.VPtTM5CONR<8WIPT/fWaB91pm*fna]\Ab]L[TX#Jthl&2c^isrTMcj#[MXFs.Qf>GPGS!>T('[;ZuE";&M%PQ?$D'4%fI^^'3c!:EMQLBK:GFIKW]+:QNaX.id@k!Yf?OLH&D1EAuN^QLOa84*74O7\)KmWS.h:`]%d3=F_qD0EXZ2ig3LmuoBfN^>]+qpmLN>G1F8/C`ZWj\=EB&_p3/>8sE-A8`GH9mVo"U.F8qscH=@N3LEg=dK'oV#!5Q26Ys$-MoI.lIt"X!d10/.Ck;YY##)AkDGeZc,PjHe?!giJ)&idD5jF#\qrGeo.GG%O\D01`/)Y$@H/<)obo0LX/Sj6YXMKpghSo(f`U1`_N'6ru*s"r]-hY`_NL`:WAX9R&REW$M^oS5*X8u$[oJBHaqrnSAR@W_r'nOrl38e!TRcFLG@lui86=,]4N^LESi=$M$qnNQfX-5>fAJM/D&Ng94?':jY3iH-'Z^4!:o(<'e<\9[)F`-@OWj/frT3rjfF>=%k/`$:Sb3cKoo7X22C#QpCu@jbi'Pei>hiS_Zr90.I:+%AE;da_83WIQp,u\35f,B=DEdi.'-@r7Pga-/lL6!pW$?DJWiOu#_R+tK0iUW`2K4VkgIHAVdKP.WMmb(W(^?i1drJ^_jP"QQUh3*8Hn8lW"R/<91hsVQ1i>g/%Dftgt;]7[Xrd3YVrJ[.Hk*k@o\aen=oWQm!alTZsY('4sF-X>Vj?>#=NLO#SEn@fm;dC&Bs"9iDF&Z2@lqodB,1T''Lt!(e/5fp/Xk9c.Xk9c.X[_#`Ft7_d%d.d@kO:DoSDB(YMVX0Gl:Z:NG,p`aSDB(YMShHE_`@XS%qi@$So43l7K0p(U#K.aY9I%9e.Z7E[4&uR6.!$L96Wg7+\9Nr&$]_1P8e9NKh'&n'pCLrI6XkLF&R:IGqARA9;V/%:@]"oKC&Ldr3+G"tFkmZLeeGD/D5OBX87"7Lu->6`b3n^rB_7uNO;Gi^5IW4%HI-6ZSE((VoNd(MjhA!dSD%j-$n#8)q!5rYO2kn1nj54YG1=:!tVA\hol^MMm+YJhVpn+8Vh>dCuTmhEf#+;,09*27Hr^!(H((qnEA-]gN1C+jd<6mJCV`*SN!#mXau!KS!VCV=6bUBBMl7RZlp#!=IJAQ%J%O,!r!SUu0#Q*G!>VPu+Dfr">(MGt*8,>q=5YXjJ1;T!CkDT-M4DT-K^lrNIR6ptqo]+qpm]+qpm]+qs.Lr4,LDFHtc(9h!X\6J2I*@eHHQW1%W)arF"+JT1XNr(!!Kg60XJIuTrg;&TR6[(9i))DD=g]qGm*UJ"UUl?M\iE"$%;6U]788:FE+rpd56EQ>GS4!@YQr!6&mO`$m5Xr+t5\f,_:c$0uG/=KiVQsO6b48ple,gL<$r4YEB!`"XPb\%?LP@Y-^;"mU)fn^gHd`glm,='^PfIQe1LX0+]9e-]b:hl:Kj3MI_J6ct57'.GL!?n2"9H$,"%dr0^NVBL4k*>Pb:jX/Lgq!p'Y+:>U7h]Q5+2l$5&.c4$*bkePB+iX&5t*e]p@1?ik%f\Je[M4E_**lalL.`hMXMelW1OmoI<]b,]K+hbK9l^6St:WNQ>P90L?^Rg?BP'b,[7l%&I4pY`AR5([I@'l*3oJ7*^Kj>J4;\onQ-^*]emIL0%-Sd.-<=('@?ojGgl+Iau%C]u'KL\dHDE,b8H\8^^M7/a5a;fri+XB5T723lP9>R(^\98T*ZihfL75,XE2W7^1u,,5);`qd%k=bi!'T=olPE?LllFcZOnL-#^3L%WE!L'mG0j_>Y..+4\&5qN)kluN9k_+F%?7c>@+X!&E<"cHBWSfJeMf-K>>m-'fZ]/dTD\\G$GYTln9_ZhkoO$rp`G%!W;!M6Cr,\;6q9IFfVc6_ML/!C;_?L!hZ>STK%fK^BPtBl'341pXB.E`,1T''Lt!(e/5fp/Xk9c.Xk9c.XZ2j,MVX0-3LmuI]HG,FXk9c.Xk9c.Xk9a>eDWlhJaR%#Xk9a8SAR@W_qD0Ko59giBiDRCE_[o%nO(CT#*V\QTVJn$%Nd_37unXEe#.YL?VVYp<@aEQmTnQii,=6],QIjP$g@*l,U,PLgL's^X-P>k3O<>7]\+$=]BU/*.@U`QN?8Dsk0APFgU9@=a`nX[l>p(8E]L4-[0"LoVo$q4A[#b;7T_Wg%`H6cd%V[;'2e8.28dGAX.Wok3Rlot!tFqt@+3-'Y]7Q!=MJ_gbl=OAjL+-rWIWYXVnq?rF!9mg#<`iW==aT\SW=gT"I?1+O$=\?MHSD99%cW-DXddq27"8p9#cEE7\2UQp-UgfhhdtT"J;k$`f2&Je#,oo263'r4BPp*oG=.;rOTU[rRrRmHKo#X4o04ZIdAKhnHDM.ZF#Q9='D%Ma4+<'d&4S)q[o"Ql,=ui*:FV9^^IfL6;RL`oB*!LJmeZa/;6BK_Xouh?:QO&@oOGJZX912%RL)a'3k0/L.rUXN$ZXsAWfXM-_9q)J'9#cE%A+Z@U2rcFQo:bt0_L?a+,tttCJo>'AUA*%h5987!^(9sSh"oqm1t:$*((N]9@j?._oJ5lLc_l\QplHKcVeDeag1/!n,5NU,O#0?7JnP(dlRr#*jJ5*/#(N!7q"\l>X!KA[Vf1TCKgIp*jR?2ZD27MJf>?MF4(.BO<=f[b5W%+'OcV)n>ebXreui0`QS4qbFXrfqZ(hP4g#DfM)f"]Y[88T+.dYlt&[lLX%0uTCLHDuJ^nUY2+VJI@VYV4@H1`_)=LA:7?T\G,p'2.BCOl=+)JXmmDNFN!qcdLf]F%cKF>4cfZNCsrp]b8+QS"d6Ha[jIFfUhETm]"2e%-8*ah89k/KfO#*=oWsh5Y8KCOH2P2lqb%j^kZGcSjF`@hWZ`[h=]Bg'dFiRk)tuM,8uU%e:II-%B!p:#YSc4'^SV$b&Jce,aTJI'_B#(jXM1e1m%Qd-";BnZmqloCQDaQTV-Y[lfFe3/;R";%Fc0,j\G6]W9@+84PnlOK7sKAN4o1"B=3e!oZB`I&6E6WN9,\TH_oRap>To]+qpm]+qs.Hhb/C5n%D8H;A`)LN>G1F#^cH]+qpm]+qpm]2]GkE,[eKeU+pg31RlHSAX$^7Td,,1t=jmirR@P.tOlONec<:Va*)c%S#(clY(rbqZDX&EF1MhTm"e8XcQBOE#X0fE?(3=.KR)-Zs;!;gXu4=93+#!3_'4kKsB^_LU`#?dUBTG`]%#KXmLAM'dEQ,)"Jj'^cQoapdRJJIj/CcY_n\A&3KL_#G@.n&)0+FgXjF]%8!^BrnN2NXC*_gu)IA^WOd.s8ft/RZOY^^.D9I`LQAZWGZN!;')<,_@TMOfR\A0.VT]l[=j`eT.dc=1GpEA@QFt\]%,C+TEpBAr(fT'$=5aGLV9CQN;Aj*VViDfF16J%:n;TJJO(;R_Xl(5WmC#AL7A2l'"b*$atYX#_;ib!P-C4G!Oj?%.Y$7W!*gM-BMg<@K-fc.iIZAi/2V=!8/92ABJ*J3G=oZOe!\c='e%>9@(;b34rpZpNcMT/S_f,,p$lRBW,bb#'muX=a4(9=%nI*P]3rZ,ii;+Q<:'lMLWfj3/>8`_rUu?OQ#cH0pMEZT=^O7*dZ1?YS"6-;a5o)AE#u7>n!.Hom'XQ,eW!+*B1@aYAg5%>@^nSonWa?+lmkCgE&U*fF$TmN3:cWQ!#T;<;*As>HqD;>HqD;>8>fr#D`&mDY7?(3"G-@!Y/kP@^fgU@^fgU@^fgU@^k?9mr3HNpN4Gq3/8;h34fp;'t`!XkZ1ls*TU!Tje"EN4^o!f`$?P8DmMC+Vnr!Xlo^\pWu8[/_@"Kah\`!1k?]b#>L?"n8=O[\-$9j]b7m2V/.kBe-9+/-'n`F"^=8N\CNI?8"])a]=T1$p-BnbG==T$Gi-8l"ZlqZZG5jN-$kT/*ds%aQX&qRQ0oQR@=H%gs2*s6eM?X*pXohU1oahqHV9+*&RJn\^V(@%FEn'.jkYRSYK@)Se@2gnLkppYreimRhW"M/o7!Fud3-LE/(4$cmiF79lLQYJ_@R/l&.^'PcV4ZgdK58=?m,#O+"s%?`^6e87>%6:>k(Vj@Zb8hH>p^p_YZY0P*at`q3Df.'tY3m'tY3m'tY3m'bQERlrNIR6cX)`DT-M4DT-MD&%`Rg'bQR9[plfb3d.Q4GH8*G6dgiZ`_JeMMY>M573H*\+Do(\[!ko]81=":n36G?oQ^XD$j4q)N;O>m3i&m2inZ-f9%c6b[L)3RZ@P,HDH$:%l9WMF&Wg)_Z\#?=Xb48ef$V;1i1W\FM1H'r.^$^EDKlE.bBEVqXl*utqbW"XmmW#D0*Zf\2nn2,hHISHUN\[*:IJ1+1._T/>\@hLkY.G,1)#al$ukhUj<'ST_a&[&k>#a>Q3g.;#05,V":Xa0Si)dD!]!LZ;HD;D(1%]&S%j.e1Ci9RdZ+MeB4JD[[plgm\$K"V.s@sP\JFZ-k^>sn@RNWQ%(d8Q/p8ag.sSAPd;I8$Q@Vh',t,dq42GRk?K$WMH\1OE"NRSm7&8AO=Bp5Ya^VciVjLMj^SV=geLJ[O0?60hA,\E,5urk9'N#l'bi.iVoBP:j]Zl)"-2t:i1@*JF:#6C'NaIX[2B$Hg:'"_u6#c+DXhup\$kb%i02PGEcnZmjd4q^@f)B=UX\q)p5,#"X/p8ag.sNq-7DFc:CA?W-:-crV5YFM]0MONSj9N1t=Ug[f!^en38lfS&#PmM?ALC`KbPO5ghF])@cq&gUmcsBa0mC-E`1So'62p=A%G1O`btp<>5+K<+(Uieg%s@X8_X`sB^b?C_9q%/%@j'#K'(eQAodb"Qap#;$i=+MV>6T%:OuAa`6Js8Hj1sLR#@Q]D1ALY5ItN[B00gl9MgHakg[dW5g7$sOV[qbNj">TUr%Yj/nJ!$-begQu5#EB=PGd7+m+EV.o!fWF]QaX$bOamm5b@e\(XM%(dmr>EouE-*U!N4@rVZNi#s&SK]"=em8!T]R$1bF;I<1n@,",UW9^=%j?F\XJrd(aH7o)na#ee+BqhU8FMT)ZcXoR)R9a`>JAGR9LSMZlLPVGSjh1O_iVEpI.8\#`'M+L,uY_m`O$iI=;l;I(8QPacu$-Wb)(XW-GV\^PZaO#oONF7jCWMI*^9%IF-X5n;LL_+I.Jmo\U=M(S3.*5'e/oaGjflArpJB=JRaFch2:$Gh2:$Gh2:$Gh27"X'Qu!MX5P$VlrNIRlrNIRlrNIRlrHMBs,#Qhh.ep)%D1.@G,piBJS`J\9_Up,GOu^HiHuB)0A6cnb@X"LRh'=6K20J;Pr9bSYp!iG+FQaZ?G?R4KpRgc7ZafH%-=[3jio2j/"9-tq5eiqIF1(m4(SnL4DH]@'2]TJ;?j7?IRs3<)SJYlMF#[H_Mr=IU$;P>n?k*)UW;?iV=P6+qEVcte_,"`q]:l-.ss'p/52K$DqI+_"NLB.+(4HmrsUCnIKM#^!qK&<3E=44o!dMJ_=QhciR_G/_367-i4%Tm"hEs;M;o]`gTN*Q<4k``;\_;J+0(R+aB^PnSp?Db]iE%TdV&>rn?0`g(XGD8HM"-T-;5h=7[5\Xng59O@]TE272B^1arol#Pq#S%4pG.2=i*%3_hSbSG7T#oZ943"0>F"Wmu,=oZ!.[tBOSAreSaL45tF$@`9\1sRlVK8cJ&=Fo=)Q'M::F,>m"3+"rSol#Bk!>\[,p6daB8uR#j-^\970ogqJ%CWbu'q)cnXYaPR?qert'V;9d:oX"#ISr2+,)>&DPs[#o<&U_G;7Wd6lYg%XFidR#9,V)LKh6*_N?'u5q_W@@DdCNU=,b[CFUjE:Sg_GfWh'AXfW>6UgLi`$23fC"5eO9(uk'6XBiFBY$\pJ,phS;Nm+Cs>r#Y'rFD1=.UuIhb>1r;]QbTIr:*;Hil/,"aJV_(O(1c]#87[ac7X!3IjSN!Wp*SG$HQ1Jdh>qn\F=S`&JRdjb^r8>JS7fUQo1'="hm+!diqYB3IVZTH6LV,Pk%Kl]Ug#.I#d@O<>HqD;>HqD;>HqBEd>*P6MV[R"*%gMXlrNIRlrNIRlrNIR6o;cb>HqDGQ(s&hC8g%!P+JDZQ0C8IkscEcj.E+)%tFF+r:s-5?Y4mQF54__If7HH+Bj6?e-J*$m(q;iI7Ih29S.N'jG`No+a,]aL^Q*=L$^KUu=^Dm^SQ`c'!Q&Ta_3Xd*i)@,qP50.8t/is)S[J;>>cTtc.K<)O(A-o;S?@b@31Z\S%38oXqX95;kr=q6jo=n\RR/[3ag.p9`mZ13DO$A0B;%K*f/D(FcSj.njp's'&j9IYane?I3AhRdO+P@2H)SPWWV*Bs>`A(\M4#:'pCm,*:(2Jh.WAS"eJrdoj.DuW+jo?BBO/K<9ChZ0s8oaM@,>B_0l?Fp63E"l?T?45Mrmst<.%j7._680+)5VNURPtV24G$sUejU_iTTtGak1c;bXU;c$+^AS;plgeboI)RR;[sfQ\)*8U/SN6k&s8,$RmX>7s))E$dCtJm>VU'ol3!.jCmt?RU3O!;n?L[alE96A-BR%l,[r,23@oEc"Q;.QGp[7:29P)#F*Op4e.Ps)nJh4q,2/D/:@l)%:3d``-*o+;I(HOVTY\DQu\9mrk*&qmCA396EE!YM9*WK+GaMQ,DeoV!tgH+9),tgP4r6/:Y+NO(8P3E\EnGlZp&=OR+J=5mojn85lQ.E`+9\?Rs*c.AD0A&/VYHVQ;.huuW3O@nd`NuK#g?!D&e8PqI3dLdB,6E08"HV+5"Z^q)%R(al$_#=1Y\(ofq"`tW\6Dl6NugN:g^,#/^)%,iON87'o05]DWOm?njJ!+MM+!X]1T%"8PhpB?CGIQ.!?g8Qq:i^Z7-+#CGPSQ@&1/2fgOZ3e[_hZTf>-Xo=$b(`F0kd(A?73#q`P](_>2P-U%637O@iMS;[)$#cWId%]iKQ)n$hD_J(,QJgR(3XET\lhRe.KA)YFp1G%+i>2KZ=W_m;j)GlH\O4Fm&iiTW9jV%j,s\GBYFUK-*8C#1LpbY4CE!eHo$D4GHrp$o1H(&g5e?QgXss`Qr*!Dr&&,En,/4MbH/8WMBXefBMkaVb\@"7n4LL>IjrZ?%_::7X4Ih1U'OTjEY9oF`q@>gTr.gAG\LUmK-PdR[Ru9r9,j3YiUE(KWD+FSD:7n.CCXAJ-^bMUGmBkj8o4R%&b?&*KO2p5CW=uLKmoHrHq\I7C;Z8nS'RIM.e8s_S5H;RaQ@If`m-,anYH8$)FT]5j]+qpm]+qpm]+qpm&WJ4*[n>otaP$r>Zj=`-De]lGarltl0m&MXQ_tj*^/h0Z-+kP)46qF+ABBaU$]Bh]6BJPfd$6@/ASR=6DPlod3.*3!9TVs$8Y=F6,g3&0Y?su=>=kZ,g@`>NWl+Q.g1:p6#MM^gVMdu"G)RK#l7^jefkan!+/5P"T5D#KL7q)fG0;K5_dH%-2Tj?be@,E$kN/!*[UA-Q994B\&Wj;`ft,%-'XaXXXXjIXm4`Q!FIAPPu+\*_P%J/FgQZ=8:FnRaMQ,_WPsJI?$EhJ[\4[*ZL5#$AA.'FPQN$Hl@Ad:pU>c;F.QS0QeXH_a)F"nF#\riNSsu'':K[G6#0sn<*d6IFk&FEp1!fp76p%a\Rii8UL-?]nmWi,&6&K6o'k2FO<:Vnb;/q!/Igbk<$Gm#5S!HNe0W[/USM,UD]/)8!k)/U5'?"PM5VWKX=NocEALs2"B_&:.@ThPp.o1X@/.3BOq'C!QGiuem#Za'bl5t/_s@URro+D!"g1=ct89uiJM?ZA)#(BVt-A"hqhUo,&,@Ep6O::q.'5WA%a9R#:#-k*2Z9!:g!*[^SonY'&(4*%a?F%>%LkpkAb_SZO0PI_7LaQ@kMmn<[$%W\K6D%EB+Ks4CSsbB=i?e(hO8OV<]raID\kl=%Ft7_dFt7_d+sJ4W*UHfO'>#!kPr]Q1Xk9b3Lkt9>@(.&BfW>AH.N(l*>I$?9A*s1_3k0b4%>@SMVLTZouWa,a3C9II8tccO(/#fb2Zn7);H_ON;NqWKo`;N'`jEK65OnY1sNPe`l;EB*BlK>rftU%mhm(s%<-(GoAusNb`lp9u30gM!2O:dY;2?1FlOA=RtYQQTVh&)#I)U;lMaPP<*4pZQH_N*o,q$$b_1Mam_KeZ]K^a5J'qSpBV?C&J5VgO4^SeXb_dhLkt9fZ!4J;&J5Te&^foS[plfj+sJ3TU=[G'`GS+46psF2YE.Lsh27#ELkpjn+1i9"'n$p^oZ!5V2iBs0,dR`l$*kgo@6pr7/]+qpmI2G/tfdVm`+6q7sDFHrMd]csKm8ifJpIYXX'b'O;5BqfsZ!uI0`P7(2Mo"$)_cZXWfpKaeW("!-YI$F\?jVa@M\X0$??`+F)Vu@r2&0YIj<`H\fWC&&NE5P&r7sdnpp+lk?Lo^On25O\2J03GC6>U:.kT(/=Mj(T@KeKLf:AjjL3H+59a+Z@GmSXEG,sVMUD8/"Is4`t^2.&4f0"s,I#[!pNEL(U=sRnR9$?f9QE^.n=@%o,FXJZ3iLQ*;;aH^>?@q"5DmtUXIDZVWpj^obT(t`"RjAXUoM]R1loj(#6TGX7Ik?Da?@r[\*b1r&X&b`p[7D'CO<*LI>nhH6L9da]/-t)I/BIC@^pc[n*%aQ'btpUBLNh;fh?e%DPGM?LMQg8?Xe`btHe(A0goMrCei+N$_?A9)p![7D'che*4kcg;Gq(4GYIPDnGqqCmX]d!._/ApHQY-H8*K&ok+W>'Lnfc:ro`99;-_3:\Z>Aa1@Z](Kkj5Su*=fUG\BB^pdY]M/`P!R/]B&E:;jIo!Ba<(p!L=LRCsiAhO$h(<^p[a7J"E7NmU=*[/h79hX[C+4+_t3,R5,nK:4OApJh2tEf95G+gI;VB\!Rr,SN'_T#Y_!"CsrniU(JFnF\"S#8D/"0@XaEN1.eSiH1akZ!85YgBa`uVEja,ml*@BMfT+.\@pk`;YgOHB\TR7MR0b2-d\@qCg6L54A]:?!D*V1B"BeYd*WWaiEEjASLFse]L)#;NDIn0+%1R,0$jjh)U_AK!1('RD$`nRUF?Kc(&I-:7Jh2t"6pS2nXG*af*40b=A/l8AGQa2,#'-(.\T3/fUeHkSj>$JDm'oqb'9]4&Z5?.X%Tu;Sr8q!0.--rb4Uu$tjY>Uh6:T'Kfp!!'D)fUBZDOK7!BICG/pRtba,dNf[WP,E&Q^^lWSC(E=#uXhakPUW_$@TH\D!4.Om#;1]!@"R'S:)N()E5\F+"a6J7/bCNDmGH(>KSFj+t[mi#RAi[6hbN%:$q%K3l.IP3B#rS&ooG:-g\\!9'O=2kI52_!fqP?Tjq%ZV-RLWMMdo`2XLQiSua"'PCh>n0t_(qfjs77'>6[eDimi\G(11$P7blL!I1,06,n$)Tl,Bf\"VO_5ftk@;8N>ajb&=;$bB"@15QR<9p_]!5aN@?N1BtE(mVS.OU-TP:V3qCU`Bp*SA9$]DT-M4DT-M4DT-M4DT-M4DFO3;Z!4J;Z!4J;Z!4J;Z!4J;Z!4J;Z!.gR5'Et=hQ7dAK;UuA',/$gdX26^*TbX[EQ5DplWHrNd80NOGTBqiafl9(UUY16X=O<4K*1KQKCYuH#Hd(!nm-",P&9HR5K8*NbjA7Y3bF*5(/GkpI2d-g\[^#>ZuZjKP^J^Al8"V44f(27FeKq9"';cp*T-2[K*n&;91^XGi(:5M//^Gj<-Z*8t$'2g!imt4@'@+j`JD7j[WbA]H:PX2ohS#i??R-:<5I+aL'XI?#iu4Ep`hAMelBrYa904p$S+f<@&XpZAo6G'8"E0-XbK$7<#?j!*G'X3!gV"7KelL*&-1S`?CdlTJPhfZke=qQO^g)K:Cf[M4J$60hCLOE9nF;F1\iHXJqG+a)lTVMWOef>G%OO,aA9mhs_]bhXgXfA]/qOb1e`9%tQqXKZ7C-<&NHcE&7PtbCij_`7<%XC@_?H8.Hp6>K49XK\TSs3AAk8OT4:2F=Z5Na>ac&RlWB[**E12?!-kp$Z%eK%no+gH9)JCMWIt0+PR4Cmaf7Cq[]>[Q%n'^*:/ml)92gS+F?pd"$_6a&?]>%#CV'WODqI/Z!4J;Z!4J;Z!4J;Z!4J;Z!.gR2=+B1`,u"Id>Z$l@&Z+k"d=@n(qX)qM0B]t:_)S7(GpSH%&a2=k(Z@O]75!K]Gmdo;a)2N'WQnreE9`',k<*.q,P&Y!*k4UBo1M]%9:RMK@Hq\(6#tWc./7#ge)B.mKlcsXGkqS8o2f?iQ\5RY^A?%PPYCXcMSLg.U7!`d6QBZAGYW>tHc7^R(da:G/el3%MolhMqBS$*5^817uabdA2\L)CD*cq!]G[$4pG;]X#e]I#_kKX+A\r6d!`)A@-7iP.Sr;\23$:$<="MU@,%ah'VcapH%r93m:L]en$h'I3jVJR"-N7=CiJfKmCi/k,O/tG'5Q6$8[LA?k,G07_J,ZqThd47FKEt#QaI2eVT>$BW&XJ0KMpunKfK5C&'55bVmD-dbD')@EOZG?>h89nS?E;1QCM(!&b0M(m+:9im@+CE'KpWfP:'R7A`.$*nA:O.n:`8LRd>B&lW2FoYXK=/$X+d5O8MIh]2:'KKd-^U@:FT*!@hn9,&GJk(eT$GCuF4jFb\R2'P'"aV$45nh%pdaJf"AL\c1c*Y3g=`0L;1;jTRR2"m$:SC\`Cj%rmsse02aCM[$,f/ZE"!3:<7'?$&,DDVaoXTu?h35I7CJRg5.][9@A:6I;>b8?ct154Zld.DLT@*79Z$Hq"=EPRJ:eY!^ds/F9BfheSP[uPJZJGactkk"PL[oc4F.A1*sETE6iqfsn^EP<@*``ciUA"(H-cP3:67>E[plgU[plgU[plgU[plgU[plfjH@+;HfWEf.fWEf.fWEf.fWEf.fWEf.LgD18e]@)XWDkr=H49-^ej8K_^I%G=s+0'BY&=c%JBI'B),Eq[5NT;fBsZK@EZYJnC,d;i+P/^Oo\,>#mdpjJT0WhM#(^N_LDr:CtSqU*B=Q-[MCiJlpo^7@lmr/GTPG;>QXeGDhI(7*ena6ItglLIY@/*c@q4>J99*Z#5>@00W\A1#F\#Z[KNia7.mE0"eST`qhmgh_ErHiMTl6Y)pEuQ)^Zldl$=q4UdS;2uij`(%\045YHG\G+U6CeYd^7lW+[QK>[c)HJf[2-t9*s_[<*.cq82o1+!'l`^0)3>24D+<2),N%t)T\mcrgXhH\t21/=W*MT5;q"rtJ!r9#3omGr*8'_E/Y?U1M6(maP\9N!EgEtBu3rUAC5dl4f]S%o"T[+:p:sV;fcY"q#(fG^3BngCNm\gK9P6jPGd?6O$A57(X)ot8AMYc)e&K,F`;(+kmUEa$2#m33f-)kNjgE:q_((dJ!10Xg'B_AB!I)m5de&)AZ>/tG33(XAS%F2.VUo)=g$i2?VQ"Q[q0XhG7:I.S#(,9b-1;0]2"#;`RbNr;oXl!GOMV91\e,eII#ic!btPr!CMfMD#8^&oKB&mVhl1&U@$O$L.I*1?+n08#N_(I9>)K:e0O%l^XrK"G$JE8mc;@*ak8E8g.T33[T3XBtE;GV>sJZ^ptW5L_LpTqP29,K:Q5U^b<`hJZlHbjMrhB*K;p,Qbr1X>N!ZCZQPmEGH5UJ_<8U%Dj:)R\Dmq)eqP@N`JNiFm$4J"_f=c);B[L7m!5)nM>9"dNEC"c2dE&B)*T"]+qpm]+qpm]+qpm]+qpm]+qpmd9FD(`GWY4`GWY4`GWY4`GWY4`GWY47J-H/X[[EAHE&86ePHKP^AJ+;a,YauT779)5Q;NfRifGFT76p1&]r(ubXog'q$"i%WqZf]S6S7-#%Z:*BQ!q?A[1@_/b0.FlV9$_D2l`sa67\KqnjT`8)$jdl4F>E^uYs%6"Z^tDdA(G-[u3..t99s6NcRREZO)5L\JU`K0/%,h)1:PLs#IoW[b2;@sngA]mTuL*A-d0Ob4dQn*&_YY]\Du\9[HcgqS%PB$ZnUNg5-j'a<>a6.UiZaR4d[bHJh%c.+LsAJOF.B/"K!=SUkI0aP-C_V,_tiV_r(E9,q@OM.uAlR%^c-eu4P&[lR^#;Z7DpVkHC*W^P=Cu;l+rqXZ+Y]ePpn:$uXJ&Q6sIB/j&2aH6CkAh6d?K#i/jSMuS'?5ZP5uK2CHjrJeJWq'u9N-?kaK.tAcb[<,5`1s$VJkYCL-ti^J^e3j8>_`?_70"c?rH66OBZ83U_h*6/jGatC.\VD:[NqD#>2e;g*(9DTX2gmAW+dWE.W31pT[R6QG>9`F`mYr(ej)FSQpMfBV=cfa85?3p0,2\.r4*hU^KoWK/"?Poe4>K:N=LA6k+576im181.ko**[.0t[^TPWUhE:2cn34s/ogphYB<\@SZ\#s'>fpHejT)%IbaD"J"!qXV*+$i([jTe`T7f2Gk+h2R_$uB+^$E@uM!VqU^rW;?L5;h53DhEck+4T+_KO]@)67`t/R<*#VZ"$9h5(I0@Kq&2)-Y@DNpBUCYrOlsU?ZQJ5Mp-U`^?Y.&6I1=Ah?rLJ^:"6e=E0-9=X`$F#0-"JL-I5,K`>?pJ.n48?onS62aI&#CWF-cE4e%2a6pE&K96AUl%2EO$IZKq.EdC^qtIq<<@_MHc5i!'%Aj(hRUN[7[plgU[plgU[plgU[plgU[j$-FfWEf.fWEf.fWEf.fWEf.fWEf.fWBs9+1p(ElrK-V^_8d1p%pY_YDF)Y$FE.\nh6([U*)<`Xt)$`4>5l>kusR@/CTp7&f8[^u+BC]q9Q]+Oa&g5\PE%Y9hn+k8B-c'=*W&NZ!Q5#;r`)IKdeuVA=bOe-DEXKTm((X<%Pgd6OjPqCpA%c-\B'Bh1KSbe[JhL[r-_YLd9ZcoOI,oOSpL&U-!.AlkESD\P0JV$0;rU5&!LhWU7,+JP8rDGqF<#ga/FYShOM*eSF7oPNlMm>>?\jeD5_3L&jjn!fflV%tjer\a2pK\&`HM4XbMgd1FB/AA?;#HETipR5Q4PN.LoaJZ(d6&Uu_B'RqeGG05ApXb0k-4_Zu#B6?iTJ8@U+Wo!aqiB?dr*^(9o5rPp:NTG"'O3*h/(etpRkla+?f"oV3-Xc>U6a6=CEDZZc,H8XLOAt,me&#P_T)%L8+E(&T<,uNl.a).a"%`t\=WQt!`-[g>?J&Lt]BhL[YR;7#_@;b\(GE\6b?)O;g'[C*l93)iI4aCUY6VB$l.fgQQRm3McYfL"3=Y*cH4EX@#%]?P]O>#+)Sg?ed$[Km,kW-XS\,J?CoW0%Pn)GA(6!>H;X0b7AhjB=W@hl9*71g`bL")1/9kj(+fXc[FkVraYkKCo;c*;9&[KRGoV1Y0E5[$)hX$n1sRqDE;:Bj]$a:l^*AXFr\qbX4)kk1)5@^.KPsmFM1c($pqrf+_sOim6i+IfU+9A&I/()=_GkWWLU7%]$_p9P<.dV>s37Ab(?^)6N0F87g/*R:Kahacf)sWs*eO.Xkh%Yf-9s6:og\\:B%q#.h#1UKD1N=W(bY+8'Y:5mUH)+#C*!>cp0c?6@qoLkI!4cupdYU>?;:YDPA7hET&n'oXOO*?ZOT;p?DZ6'SM#*R,lXO?P%#l.#-,hK,6XNQkEBCtjJ8,6SlOLP0Ao[*`^4-#^KpbX%@5531T;ZD"'MWl=INO?q1EZk43&cN+A9)('Z^j9N-8h#"$O+Ogm]*G%j#;XAY7RM"p)<;)K_=iH$+67cm;adJ,mg;NAB_=m2(JOJM&TY:5@ieK\O%'I#Z8)d-7M0fYYfBY$RRp*!]<\T#ADH"/(OL8a3KV?@$Jl#,CmfDZgCBV2Epj(2dif0!;h@mW#6!ngqVnmShKYu9?$tfa!pS-&qemSi,1r1[pTr_Y\ha'Y!@Z]iWpF\25Ze"W;E4BPVrn+@*Xk9c.Xk9c.Xbmn+'tY3m("!8:h2:$Gh2:$Gh2:$Gh5]DcXk9c.Xb].@lrG@D>LhN>$$A+*E;S5:h^/:@IOG`@;gIbS%I\QHH#WGYCVqij7=A+7X00@rgGdujTtI>Un6Tmlk;i25%rgL]*B88>$I2tl%Hjoo_mq:AiN.(rR^hChhVT44lj_S2ld]t:qH].sf8[DFlSXRs)"6tl@X+O@Rd9URC0,l#4HGW`lIF3eY5rqjjP8`Y1:>@)m9*jWEW^"l>"/\hREfgY#WBmRl0-[nh5?4[:SppmQSt]T#^j9=c9UFKY+il?FU>_:&$o%3putJr#jlm.5lhV)?1Wt27t:VStWi8C`!MdW37JL$tfa!pS.5TO&n*l-'T,qr&]_58.9NV.JT7HeFF%:rSAX.'tY3m'tY3m't[Jn@^fgU@^dQX!3f\4>HqD;>HqD;>HqBI*4lrt'tY4.#CtWFA9P!ea,Y[thoaBA&.,^2reiT'r>O!fK72cONKP@G]g[U$T!Lr*99&6.bT.8g\%2(5lTS*$cnPrk6AU?n_[m:R"u=88%5MZPT)IdL^0W!%!4h4foa?l*BOKIiaE1UI9H1-n$)t;4.qM#bh[Z2K'BCpuU,upP=42cIUu??!Ed:PE&HO['!dT_eU"kf\*[TVuFm5"oq&gSh"*mRAb&hop8+,r^QJ>qb&U;F_,^#HKp!]2U5q_\r11QEN[=72)_nHo-^Qr&pXK=j=iB>-2".[;\e"+VP'[N*+8XOaKAQtHHCRuit1F^W@4P.4UXh10[N;e`H(<7oUotpqY+H*=1OfV_FiDo/XDc(Gere`c8`GsGZ<3J>d)HHR#_aAjen=T^WIeEWf:F[FumEH+*`2=\-s+G`jIn'5Co=E\G=0H2C\iM7J;]'L\cI]r5srDWaeO/WtQS)UgDgIU@KW'YQ+5jlKJ-6WrMb:IoQI;NGkb^?[>R4r4qdOalB"lZ(ZX>`Fg9nV]L=YSN1[p4nd6pe>X+RW+V`K9YGZ6TR,gQhlDd'#5,o%&#erGqcdg]$dYbq&&+a/Hg5Tnna%^ta9-oghu&!(6+sl("ng9j_s5!dqeJ&Qe?=6]bY3toWR2m^a8c"WTpPe[d*-cn(3dp!D[<)YSQ_+58qVq9)FmmY*Wp]`/\(&:]KXu?k]_^OCr(#l35lL&IGH9X"k#^h$O$BA!I<7k?o9UiSTf;_HetuVnn'CE!'>qM-'V8pupXkKjKb80C'C0DRD`/2E><\)F\^I*>J,Z')Ht;das4>0&J^=C[2%H]fS:QI_;6eel.g"7/#fe^8f]qi[dnY0Hgs,hfuG27Ro_8BB:jKT?+kJX4nk9jP^a`]G5gGpFk+W!c\Lu(X58;H^O"sl5H^c)LDDlMchJ"cjsq9.75W:$6@os::h>WqfU'C*uc*`rC@mrp:s4nmh1C\>ubn#?8(]W$AL_]Pkms8-`5hS'#5pYGQl^J&-9Zg-oB9Jh7Jo$m6CR6cdY1.o:,%5+5`j]]'F_.S)=-NlF[(>QTBHbYNhsNp8[^#/h6lNIX1Cce3aa2U0`-<2:^:7Tg&A5$[)5s,Pg2G:]:3X5?Hn*@qote?hr`pT5WiYper$3WR7F4[,X)l2gp7RIg_*HZWd@@U$+>W"e"Z#PP"o"d]->,biP@D8iqm>Ht<_H5$);2pY/W6+!nS0,eQ./u>s3C02-+!_B>=40eQoqg)QU'Al7;&Jl/NkbL7=NpJ*%[dc`#$"^JM>i/h$`Lr7\>[pepp12:l)7>qP_aXM7^0-bOQtF#DV#Wr+>1qsZa+eD7"ITDVAg^N`r4?G!06p09fQ`?"d1HfaTcFlUmf2)@.`/t=u*r+eN@nl&PpoYo[iZaj*GFgnDU9sq"!]hrp]25n5nNN1t",rIdnXKK"9oZOD2a(p,*m(#+V%[Onp&gPTje[UNIGXk6[d349RVMMS\m[ac.0X5b9D>gTM,*cqG9u"neL)TVndG?;1PI[jh??rIsccr+6bmdSJ0U-AQr5J)@/j`mjB&8,ALcASSTELkpjf[-F8dVT4G@jB2GQNEZ$TbI1ka&_i1[`O6s7,-("^"`RVPKjh/0FnVm%J>eP5[?+YJZq-1KN="c!%n-`l)WghTmWiGBOeAZL,P^gR>9)U@@R;&/^moT1AbKA`%hfo+@^:iKVDWUoNGM),pW_EorX5UcF2*TN68)^5]:iE9&cSNr(TaG%+))]k"Xo(p2)sgT((;GgcFafa_*WM#b.(k95<^]>D?Q\$[D8iq5e_!p!'AJC]779Q9os(X-?sC>AecBpW_!C9F=8/\Hqd3X2rNEu;hE&/Rq-2]&uUr5SP:_XCl0ho[YQKROX@?@,fipb@6pc2B-)@I(NC-!U0#nTP`CI[,B@D%;'&r4D;[&j-(S6:=4@;B:#BF`hZHt;&2RZTl(4LK*?#2#8,,,F*D7(,5C@@`12qIRHhZgh\g>Q@eMd%1s1Lq=N+,I!]2*?;UN+gT18MpVEGEe_*j$Y+>SZZ)uYZ<(?9MEBBG7Cb$\RU7u.%Z)uU+cE@?(83;:U:8K&eMMR(ekh&p?Yc[W#bMJRl>"=YK0qQd:t_^[%.J0;s`T!VMGes#]nUJ,/!%qXS@>[UNGAfVNcjWJZLfW%;C^Z)uRlJBG.g:K9eN6tHtbWcY[L=kQ;5'b^QI=Hhi`Abic\p6d;Y?sfhslYKG3mIfc,KioE\C=;/+XgM1#;r*YSA[OhIZYU40:[M8cB!.`=5k?fQ;]Lp%^lI*X-lK4@QWqsk@Flr;1.^g)H$31&+W,-9#[M8cB!.^&=>Ht:1!!!"8goB+Dn%KUfpt25XlKqD2D>!26`D_Y2`O5gJ!!"JfgPThO!!!",j4ICK.f]PL!#rE4[X.J?B@Yp*GJ9YljkK(sKp.C2`O5gJ!!"JfgPThO!!!",j4ID/ZE7FgHd,DD@Lel/9oh;Dr:B82cPsX%ZfV@r0CXR=fn?i]FdN5;i/8qp4oT`l")#hPj$-E?;'-alU\q:dX12U9gZ4\=1O`UGN8Mjg!!&LDD8iqm>Ht:1!!'6CCb)q/gPThO!!%P/@p>5@[do&f5=G65l`BWoDk@at#CP%r#rniAT<7-$."u:E>r7#tro&;gJ)7hJHB$g,h_MndW_>AnrAJ"@^66@Ti28.%4n##iDmQVd5@H%SHi;[sg[4a8s3SJm?4?V!oQ/:T(A`ICB6*f3oq`O$i&Thifg!W'S6pNppm:$m*c>`-/miIbo]Q;U!.^?eghc=S@4Nf'6=3+aQh+tNMQ/llZd.g,U)Lm$U^TQn"`qW("rSqhdf-0lo0Q+b2e5q0mNo\[50B4/9Y:/hBE#oK2s/,R8cp*TKA,Zdu`j_l'k',)@08T.p)8=:tbI=D,X.Pbu$Mb(Eq^D0Wl;uppa\Oth00/sAr70X%A?kXL"98G;B%d(05.0Be0BESMeR2a>@U$+>fN)f=!!!##`3s,ZZ)uYZ!!!#O34;iOCod'Xf\b]Cb0QF=1qkX@_L=W9a6J--NZVbdgWC&S7uX'ToS)f[o@JsDlH^;sQ1&>F2pC_X^PmZP?b;rPjl]j%K>hc&J#3/'^3BJjqNpR+0>CE"@K,Zf]@S\LhGh8Ur"[NU'Il?7b6O9H`@m`8"hre#`m64-YMF,OYACtVn-#m@j58tf8c\nlYZ]PdXa8^d(#+U_`O95[!<<+-&)2tY`O95[!<<+-1U*uRH!C*d5(5iF)obs0+0/a(IN\#25OLVP?c(Vp=h83m1)r6%HR=[nX8@S?iT'*!q-/4Iq8DlkH1qug_XjRNOnj.qmI?O$pT@@Trj5!+=j>$J31!;fN.=B0CYLbl'hkW!!)?o[M@P3*S=Bm!!'eTfN)ghF^SDS!!!"C?sBn$J31!;fN%tP!!"p;D8ipb!!!#'EGR/6'`\46J;n&CZ)n!+!!$gTgPThO!!!",j4ICK.f]PL!#rte@Trj5!!(Y2[M@O(!!!#7`j)Yu$!,NY0MJWLs!!$EefN)f=z)ooBr>6+^(!8'9>(#'&q!!'gSX`I^Segn0DgBmo\!5KYa(#'&q!!'fH?s@Ke[b;)h!!&\/m+_-;o!du=]19QAk;bCVfV:n?]2WuiSRPg.XT/>$!:49$Z)n!+!!$g>[aeDpX*jsJ!!"LmbBmSnrg(7pp8Sp8Hq*r-!2);fX#OoGz`F2ui@9Wa4!!"DWgF<]f$31&+5]PFWES+:l!!!"V_mYH?[K6F/!)OZD6+^(!%8?3.Lt2?!!!!aES+<3fN%tP!!%no[Yhu2!WW3#:`QoD*4?R^!!%Q/YcZohXT/>$!#13*'o-W0!!!"l3,GWTCb#Jc!!'uH>K(#T!<<*"-k=u]%bhZ.87UB(A!;/E9mCb#K69l)<[5j;`^`F2sO5\X\3!<>_.gF<]f$33[j30*of3b8Y'`]oMkfH8uK_E7PC!<@9L[T+Q?JF6k7i7AkrgLP+/pZ&je'Sf>V`4_M+Bf&i/9'>R8US+Um?a?56(Df-VFF>m_lPk_mTVsd_N9m!0e#&u")Z*KuMGuKteRoP;t]KEYH$mZ*U:a2]W@]S@]rDJ-<2O\04nFnYlFb-YcZohXT5"NYcRm*jb%CbLM[1pV1EIe!%8q*X#OoG!%8;#DC_&KkBh@?!VQ">DlQlG30kM\/!3hE!'o-W0!2Y6`"TTqmCo]O3.f^t,Cb#KNq-[FG@9Wa4!!"DWgF<]f$31&+5]PFWES+:l!!!"V_mYH?[K6F/!)OZD6+^(!%8?3.Lt2?!!!!aES+<3fN%tP!!%no[Yhu2!WW3#:`QoD*4?R^!!%Q/YcZohXT/>$!#13*'o-W0!!!"l3,GWTCb#Jc!!'uH>K(#T!<<*"-k=u]%bh\$S((-eV:)1P<5pkqe@\A?E'X5Sqi^Lp,6+S^r-EqB`O:ZA[K6F/jaq=QPR=j!*4?R^!%8Y"/"fkGXl?Re!!#9ppnmR1PVR\)G/-4UDO>bAY1[=__XEke`qS([J+Z&U@9^]Z>6+_SEl#0c8d3s!%bhYcZpOqJ?B9!6UQ+J^h0Z"k.=9>PYnV)aA61,rK,29s*rLWbP4gfo[L9T[^6KiioNb!'k7->61RYD&%hC"TSNp'AEjB?#6Q$]51^IK5`0!>MWIH+TMM`D=@;DI\KbcN)\^NqFAeunAb?-$fC&!lFnKMnd>31e?s]X@LdJ2IMJ>tX&1n0Ht;,b1Ka7G1j!!#i@r0ah5'\Fk2AiobFG8F/XlA]QD<6u(s''8g8_!nB\[(*!rbo)tru!]p!#jq>Csq$i0.F3#poDX-0`iiioP*Cb#Jc?*_mTCo^ZS/%-1YZ*!$\Q*RN4Cb#JcDIZni@U$+>Y`*E6a00T/Cod&FhS62p+6==4o<#IbWr!EIAU\+daJ%!$1"XYtk)[O>Fj5$0!mr`kLVV^(loe"eOL^hWiJ(5e0C$G6+`n\(F_t/%-2,#2:U;gF?Z:!PTZ=S'bhq5TMY0En2fuA@D+!TWW0'275*9rH)aqonA1?XS;l#[8(uJeJ+/PGih7jpg\VJZf3W;of5!/,JVOc:`l:G)3g$MSll[fN%tPr%5>lgPTj%YJIYNq3;p!YFYVV4J"8*`ZI"?Qqtsbgsi(&XT/@R7,bTFGNAnZFU:8p*QY<7r&jsUriYacr5&V$F+KD+o_UY]1Y^Z=e_)`qlC<"r9Y5W9n^#b5pH$k(QQ+K>0AG$f1\o=dBi:9NhGVZ`I7YH.]1F%C]MVtEd%\gVBiXP;K.s3KJ5Shp\2:CeNl5#6R1pk807isu=Jn?^9G>)@)"!'i*D(#+U_Km7F7Q!ZQ+C'D$\!!':V@<4EqUf\f4,VpJU">gubif%oYag#%rL9/fD<1J*l-l=J;V.[s)3<$nC&k*%9[b,KJ@UU!O"rU&%D=d;NieREPrAMVZ(V6+:BA0Re7DRK&IDR8a?PSpp[b-.=P[0#(i!.\0fX4WKeXLm(KZbM32KsJP'>5=GiX]Ah6!<<[hD&)qFRs"K%BD/g=X\^q.6+_CLB?XCD7ZJ8=&I;n"[6[LT4a^%iTfEg>^fu?EbR%8,um"4W0T?9o)06*4Akc[K6G:'l9r'ca1p#E-5tIPTR>6*4Akc[b;XKBDPj1]+_ogDLlF`^J'4EnrHBI_Z,kVhr9t/hrUIar9sdV$?'[1bG5P2C]I(1\?3W'YOI)tI),L"pjn3MSc[Lb5.h[K7g4pJ$@L?,hR.J:e-3!r-WP-D(JYcT+Xe^e,47;OISjc=6nH^W,Vi7cjb.!9@,3,GXOD7)7RX\$q/GJLlc/Dhn2n/>3T\PqpkAYQ3d`7]0C7h]KM1R$U;e;b=EA/c+pbs>63BAfN)f=[M@f,Xl?Re,.?$6?sBn6-_\6^P[?tLHU(liLe/_;mtYVDeU7moi74@NE8oVl%toK)p,$/Q\SO];aNYAoJKWK4f85L`$KQdk.#/BSkqq;[&\s(qbS=3YZ!D:AQ3a2M"8GrJ)U-=\2R6AfN*"E&5%pp%a^`c(dUVSFV_!)P_nD<:6W\MRcu)1TgAj'0NqWV7;1l]Y\p?d2fp5MT%ho"!g_qIfCOit&AC?%.mq-gL]Lpn,P%N#r<7Rr(,ao;cPCSPl3b$gQ"8kLJX<7\)b*Uu$Qu;2pO4e;#.>WUKc>+4Oe]e>iQF_n0[@b?*6A,GXPo-U(I'NCbufQ;@Yc.@&.H.^Sd.J%Mhp2c.rT@69M\V*4Akc[b:_i(#')2m`)\E>Ht:AO)5VeD&'=X2Sec0^ZYQ\ao1S+n9*.WS)XIu]jJdOm/1.IJaf/pr:>U)>PVnADasN)[Ch=,IqF13pk'8e-G3bKrB1:66406$jX2JPBi_@U:N;p]IQjk5Aa)b$-]ChW^\1%75I3Stprg;l1]FNfN8JkEMq6bu^.S;Lj"L&hlXPj6A^,<%tqso`+bc9dfj%N3bf"HVi_mYH?[Yi^K(#T7;T#!`O95[!SC-!._?B@u]Zl[);"j;Y7knG+ng=+N"b]WMNmFjg2F,F,OetMcNK/=lmADj&\ZH,+j?I.MLPd%biIB>AXhXK^Rb]Ht3gIuAg=!e8$:,Io5)'$2#Vbq?#$PYt/L;(Wm2[ae,]>G9QOXl?Re,.83d!39L3m1cuD8fcY9%biIB>6+`.MJudRbGE"tU&2HLOni5ZoD#"MGa\%0XRHn7"V\UXq[VJ6l]t5A<'$4?a])#HlqL,sK3CI7[CqbrA_#5BW9.\9Q-.=OCbCo)>#b+bC%^$>^>7T(KN^PSbEe]kp(_q9NSTY4'o-W@Z)n!+=9[GoVm*:"lI]-WfN&U=$35TVYcW'UgBsd;D&%hC'sXk@!*D\"Xo-7KTD=U0A%lIN=kF7N4uBD(KXo\k)SbdN9rGO2r*=aOj2YXkEb&17!pd&THEV(b>u5IPr2#jSb,WkJ=g]rM;0+NRp#-.8C3hp=O$@_a?+JOf'$3[=bp:hLNuqDd;].GS(TGg07HKDd9O1<-b[_mYHTB=5tN>FoL`X3dGa82)L>m2dUE'p\aedp%W$`eaFT)>s85S%JAY3a4+$`T28TAc`#._Pj7X?:oR\h,uY1d#OaV<,dp\m[T18S63Uk'!@WnD[6:[K98BgM2)>X\aK!]79CYHLg"j,'o-W@Z)piJp^%207Vo,B`jS4e?sCTY>=E?Y<%re)8=K$EKO4tWOqft6WkdXa2W0Lp^k7SQ\A/]=^FO]O&$N>[+40p$rq3HBeU@0TXa^67-e811h5B\Ok66"s04%^ErTT7*2tu]:^\HnHlCb&I=[M=>0fN-bND^!jBV2fC-LM[d2X\^bM#+JYcEC^A.+1FN@U$f[>=E?Y<"-2MJ7>dc[Mdg,AV4h7LM[d2X\^b)>0/!LLOLfS:s%?jgEV*Ap"a.KWCq/%/)OAX%W55@ln-n,56&j[V-.oP>V;e;5,2[J,El,)/uc.e"dP"/q3F78=(/:KCo]O3X,(VHMSZ_&:b9'*p0_*ur33<_YcT+X'e0FB$:(lKdlI_K`LDu>,8r$,">n[CVh4pgR3YF-2c5N;<66%RA;g=i_K)Q)'4,<+/k6r"2N:+IDh'3"_P?Q)sgQ;mM1b?*5RRl)\#Qr*$8U^k(`>,@CER\.p)F?6=Ile/gO*%Y)>[T+_Nac2n-tR3F[M@O(n^pl^fN&U=$9O,^"e_*bXk6Zj/&Yq%`F2t>Cb+kN*SFKPcb0;GpsG-%^AEW%h_0FWJ6ah`bYu0n'>*caQdC8)p6;(Zlau+8%.*_#3!_L\pp0B.b,fdbBNR3IEf'D4X^F^0[jhouf;De3lb`29`"[5Aj:t`,fAGe$.89<261k*>cjP82G`[THg^7a?8ImT,'VU_M!KBhA6/S]YaUY^L8?/>2PLXb>ph,*k'G?>l1X]h:o@TGYkQXd%p.A_dr'<8Zk?DTE8.[s/3mCZY"6J,=YfN&U=$9O,^"e_*bXk6Zj/&Yq%`F2t>Cb+j#[M=\Z)nRuD&%hC'sXmFU\nOKgbK7Yo?&`Q^Ta,Bp4IMI=$rEpcG\i0L`/Ndq@G7=u)WQreJlKVMKrV_k)H-\?jmdu`)G-"D\FJMob_jp#Y8?)UFKR.du2>,Wm6`TD%N9]fVWQF[$NK9u:2OhpWcD]"!2c+,==E?YlmT:WJ5XCq@U$+>&Bf%r5<2Qlsc+M6W'>]&':=MAt=#8M\Yj-T9\U!i*4hlmD/cO,X*u07A:k@@@hY:>`e*grL])4-QGDqtpaHoN^e7'V/.N,5(U6Y4gatGQcOB$AnO]je*;Y0K\18>J]8GQg0M2Y');CZa=ro;D_Ls#=r(%_'D5Y1Eelj-AZ2oI,G5`L24DncPgq*,(W^LT*ATMoBQV4?T0A=RKFCn_PA^]grPuMq[B^+bR78ZZg1MPr0,F_7Q^P]/*UJQj#=E?YCd#3AJ25*P@U$+>&I]tLXT231AM*piHYUad;TbW2B;QKqkif6CV&.Xu_RuUYi\oLb:*8F:&iX=-J2@=fN&U=C)(NpdL*du!`7:sK(#T76@lYr.b#sBC>dh]RL=e/`S2UO4#u^?\A4dJH),3I`#%u/\QJ(Um8\g16kgqjLe);rSQ@hND?PJec@Y\5H`#HB%60H68^]DW6+QI2)R+jll'@4Mu$0E#mGj_'\HH8SD`R`qD3plD>Cg+N'F_(K>g'thrW2-iSf[O*e,4N2?&Qs\'R?%]W'l=T3l=-[JRT6_Vq+SMc/JX@r=%]NDS40=g/RhSX`'oHiCLM[d2Xk6Z/fN&"A't+k3MJ\&lCo]O3X,(W3[Yho0!e@JYXk6Zj/&Yq%`F2t>gUjT)s1l7e]ORNl^G-6;s'CBYanH!XO+6P2/4jFD/PB:HMR>!Cg\Q&0>mLM[d2Xk6Yt[M8et`jT>\Z)nRuD&%hC'sXmn<["md!8PT&@U$+>&Lfklk0kfBaJe(V&_2?2?$174W4L\dQ!@"_9KHN=P>Ec!('(F7JSeD*DOLN?r.)U:>\e_1rN#Grqn(.@GE'qXC#cP#f5ql0bG9&,J("8Cp^Qg*^W0S8D8n7,ZLRf>Hj3`Gn0t?MD,U$;/uV-mcDf4=[/0?8TDJ?8K^.oq;]d"D:uD0/+4S1=eu@R+mZ;b[l-nq5S*fLg-U1MRXn-:P0VO5U12?VlrSW(($HKT4_mYHT=EA/^W!X=fN%u[fN)f=[M@f,Xl?ReU@$c;iC[i?GFO$CLZX]o&+^UtcNXkjIk=]tN6:IUQEV1Q0D*fS0UNeE#\t8uH]EApRHMoRI;#jefN%u%(>F^``O8)q[T+-V>PV"df5XLgr5.E.]nRKNhrP[JbClciq7FMI[&C0VIIjSjpl/X#s5`cs1,V4p"pXp'Dss@ako*K!,;X(V?p]h^:T:@oH8VSH)ZnTXeLafI,-Xo][[?:FWG)La^*5?"lP:Oh>gf%%4-,OZ^Un%NpB^%9f(p$TG!W'bKo;/a3j;B:5T<5/+u]mKNIp#a(De3!,jTGlt\U+/?:Y!^Z%Ee^!OmLM%Fh8*3m3l%PX#OprLi(,>@TrlK.bIdck/9Bi%kaFK"dY)V!HdX&O*l;OLLuKt2jDO&CkH`rKMDE*KI3Z$4aAK^\K@KYo0B2rOu2[tK6d>g(5cCDhj1#2KIu\2T^k^@K%&jYBjp@HI5X-9J(%h[mokP%qtnfodhUcBjGeetPb`,NT0PbQ"_8/sXcO\u#/XDR8a?PaOCFX3oli2;ECKosWDOWXE/`[M@P3,M6%$U#9"g[UNGA=?j5oNbubD67fQF*4Akc[edSIV8/4=pq0P`UUEq6YC^W1[K<[^Co\Q1MJ\&LCo]O3X([8pKA@X=rO$96R1j29H,KEXgA4$6mltsoY4LdmF2JtTrpSQZesA2#'.2=Ab*oQSmqBq(N/XdQ_-o2`4JWbTk#>e5V$;:Ee?,$aITBEW+fj`=.Fll"Xr?#`<,6-IC2.Q^"2,AJ\SardH+[I+1lnYY,#V#0n(mqhiHs8HTC=64!/fkK.DDq$-aN4P38k\\s6N\Bmt]jL/?lkrr';cZ9DDBC9aqnAJQoXMq,W^p2a4)9YC&7(Ep:fDat:r/M0qs'lg6I\PY.hi!,OZF87>`-Xk6\L)f2Q7Co_5r[oN3n&jEl$2^NiHn^FT;/Hno$EdjkDIuD%,]-UG7bLuN7Cb<+MHt$B1o(=B%kg#?j[$mCUW8@LcQ+$E]:X5rbp-(>kZ(Pu>Dc$%HBpDA(<)lYpC?]D0=0!sS933dFlDeTAiH1!(jb6K09APt-c:9@Jb,JW(U\mt>]NY^_9)q5^_JSC1-%6_]f^\-qE)MCNf\pt,:Oi?M_gej8]Ma7!&"f?.:Ddt"^Mrs)\s=)A^:Uki"*H)Y;?"mnUf3CZ=I`7f'UR+j.c3rNm`]tfN*gK[Yhu2MRI_5Kf?E^r8.@\H,8!un;"qHc]IBF[fQ`i[6>U^c2,XQ?$ho@0[&@ijo6/\s4Xk@qiB-;k8)RLc2fdX3j5F$-h9t_W;>4C2)mRu()Bh`A7AXuZo+iKe^r?mkcef:C/o,qIHpE6f@6Y'D5sLT>5?@AYB]b9>:JYA1&P/`%r&m&^B0a1OTAQ5gfFEaEQMHB&"8^%:\]@Rpk814Mc&M1A;l5ba7J4VU9LS]8^0!Zh^/;aK4ju%3KWh/If,dWp7TWH?9*(2*R=,ID)s:R>TMLHqo*=]NHQ03VCn^+01A`e&AQs$Lg=]MC.f`e,D8iqm>9P'B.Lt2_MV(t!Y\r)oCb#Lt'&/:\`O8)q[T+=iEq,ZI(+7=M!'_j>p_]'\HmGY[7&q6Dm&`0a2(\h54.=9kFO0RTC1Gc@PFC[^D^0%-oqrGDYR[dG:eP.NYLt(En9(hoNX0u6WWkG;tF`dAXk/McXeU?`X8(Z;9/);\cQrF"<\Ck+b/cA4D.I6;HGI\WD>`q;b]u]lM83EW;H$FUn2t4Ht:1ll`_OgPTj%G\jE?Co`A/`O95[Z)n#-Jo/K8@TsusgF<]f.b``r(%TtAoc%8r/Sk/3.d+&h>SI+\QFi.su5"#qHJhR8eB`TK7m6ZmPr`u4;*FEa+]V`.Y?KWqeW$#H[Ij-j(&uD_.T1h7'rBIU8AFG-Dp6g4UMcV#6F!ZF\Z)nRuD&%hC'sXm`(>F^`"^nC9Xk6Zj/&Yq%`F2t>41)*sSDI0%g<9Bo3#Aq+g#\P>=1P.h:"cSHq`cJn3]a1utT9=*pOl;fM0D5s_@>?s5CTFUDi9XQd=Wa%S_R7pB;U'9Y^;n@?8ffsVo[QDt+-f_tkB?WAWg)Mn=9S%9]!*$7C>8;D2$ti"[kI:TEo&8P3_M>t84J*Da_l!#q8:QPIT((FGW(55:+&u7qWK)FL)u*)l;GXA^c9Io:^id7*`Ua#DM'8#t.e,P`DVo1?@Y`CoLciNqh5O_XRg#;rN]VG!c63T\S#7K#V_pK5=KY`Fh:X-%rc2:0aHW\/[ufN)gh/\7q?m4!!Q\)A*?!O``t$:("f>Ht<_-.4S!P?V"%HWnImZ\EJd^qJW@)[X*)Vr(4l9@U!9SfN)f=!+gn%[6=A]"VkE?SNlKs5EeBMdrWkGN9F`mDWA2:86VC'iqY"mO"gn^C-lVr:\PH(a&;`Cl?qu#)(ePb/(`^ZhjT@,U.CsX*/`iKX>f/Fa0Icp,V#L%[ehj=Q\o<]S:2MH)&_&jZtgOj@NV$]>T`]YB@oAu,bQV1P3%^J6,kKd"cr*:g:GLBY#8uWPt-Y^i*9Q!T[W@H`8[T.6MK;uNXV.*Z6Xg!*'DmS&m<,]d^/0r=^O#Lqk9=4QO0QtgF&<:.rdlH4fAFmS;qFnJY5nrp)>Ip21N`F$^<^VCR;[!q0o;/Tm\VdBDIo-SkXi5L4R-55m0$K&-&5;N;JebZ^SpgCM[[r^BB>?EX>55u%SbpClfdn@F:5Ht:1PVfi!cJ<`R'hTG".Lt2_@U!]S'e:D)/"Wn!.[aO<9@)Jj-5Y1ube-Op;egJn?B("?X6Wi&eEHCdnlM8#*#_[5X(kUV9s(G!CK<;Mq/0MW;BLC-?CglP\f)WW:fER!C1_ca:!F*Gl0/Li1>bd>RH:E!F<[K9:>fN)f=[M@f,Xl?Re,.?#;Mn:d_QX8#(m28b[YICRSZ%O#:(ph4^?#?q==.5\N9;p_H!EJ%0TXqa^<-qi9C9#%FRd9h"V)++2k2n7\8nM)Wo)GTCrtBL(!"!!k^>L$<3WGXrGV2uUF.Aj.k.g\jJ6sZ$D$mHj'?C>8p]U`O=lHg[LD1gT?^`/0JapdH*qQ#$_7XO^BRDEQ2SQq\c.g7!>PrD6s(:E;2pAnR^C&jmNu3@>Qhb:SCWlbVMe@u50`&(j2*U7%DY^X/Kc!#I2DpGml^*@UZVR,g'4X&Qf:,a;^2-m$2:Lj4a)@mi-[O:+%lLAF(PgPKWrqY&)jf*m%tCD33Rk4cRrbUDH;%nuObu6-7O;JI`F2t>Co]/-[TWjh$:#J:>Ht<_trViW.p%Q2)7:fqRX\sB-3aINApaai`&tSB3tS(md69XZ^F5sXa$OD[JX4%^555_P+&Mc1drj]+4koI)#[ls4fN*G>Oe97-`#LQ3Lu]Z>LJPW2?84)OJ(X;3-pMptO&B:Cr^?3NikDPmU!gE8T5El"bKn<$LUbOIcPlD_j_(^lB7AG,MY(cIDt/hLO.!_jmPj+BHXg!HlKXsBD]V$;`l?Kmd_u60nBDG#0pYg0NjbtVhK>H:m,9GeV[)'[D]PoZVn\U!O$@b\27Lf1Z&s\X*_NJT-E"/sS6GFnNhDQ>Xl?Re,.?$VYcZPYCb&mP@p?4?fN*gK[Yhu2MV(rK_Rrt8lu$0BJ^o*\,I1-)2NVl/);gq67UEb]E4:,UOCX8^CQPtko?>W/MFgY5\%?*.jYCK2BcbgisuY!pu@DJ2iU$Bqf;5i>^nnXJ,JiW%6ptoanS_j?`BZ0je)%4nbM=FCQ0:J@?&9Fi?].T.t:gs42GjJO#9/Har``]N'A6X?0A,HKob3%3egX5_h,I=DHM%gjj_ZgqUG+4f;Nm(%BHNGVptV4euM_V%&q]gnicqrUO)!Plg!--*`ZQ+YIZfZWhjE3,ni;H[ZcWSHa0^4YcT+XeOHdFfN)f=?rpiBZ)uYZLrZr]_mYHTJ6e.O`O95[+WfAf%biIB>8>IkoA!,%b%:-TdoeOd3ifi<-<3^nTLu")2)%"ek3#Y-qR%6,>_nXE8)/P7f0j(Coo>*olPi[f*M$ptO]5>gX_Ms*?Ca2YX/9MclJe(4Q-+$f`UIMr10rYW&Wk@K/.&-(_PQW_L=W5:(Xc^YL?6Y1fN&-(A$.h*SdB4mAWSW)(8>e]9.^2t^ZjCH!hl$TI@^;N@P`C*,tg+O0*8X/1r:"puK)&knm;g5jl;K::SZ70Ib*l2j0@m)LnO6GVf<1:9XNK4SYksCO[tN)-i\tlO8=uabl#TXUS$EqCb&n;#e-*!G%Um8Z`m5[n1k1H&/5Hn>7*J2LY!U(Yjh@>$J_6BN`sUq$f;Rh5Pd%:Lpm&.efN)e.[YfL9A6Z=@JDGut'e?qlfN+q1Co]OEV/.Zje_7:1@\51(@l7)PY*6bb5$RV2;sa2J`lG&MY]@*$iAmTG^>SrB)#U.&Kj3W.<*p2]nu0C5;bHpDc3=]$,ccn"VE.ph0sT8so*9K4(lks^lGQN'u'V,\iWWTB>@m8'R-8=W;tX/.mIATJ1>Q\dl67Km4)`F2t>CocR#Xk6Zj/"f55X]An8Z)t6hD&%hC'sXlua0oG]Z)rN`_7!O(D8is#1:C1&[T18S.UFl&W:&V>Q&62h0fu9[P7q\MDG^!::8k"]HBh'7PqSIPS'I?qWRSeZ>+!XfB>:ASc-<8n\kW_/%]HhI-Iq#1Y'Rl>H#fMj(Is24IReH-9OEI;s]jT37Uc.NBuQk17+c'P#Yf:[`GtZ?aLcDmqrYeJZ-k8#G#8n!F&"n='LGH3IW-4o@5fr+XYp.QQl03i]`nX@;E2p!!WOBHp_TXnY=@JJ62657E7o+)4n!lL>Y*pKAYOROSB?5%(9ks].57/\X1>c3fst,9RAi_//EC%3-7JnL<2QOu.UgZq9=mpo+!&hpPZf!:C=Bq@PR"Ws*4Akc[ON?QMJX[;V?"4LgPTje[R**b>b1c_S!;,U,dVt+Ei270`hlC*%\0B9Vt5HC[$7b$X0^DcJ(;Z5GM.Zr#U[e:3];;\01)tH]4%&hQXI;5ut:gNqaRMol^Z[1,GGIJK(mo.[[e&q^VEdsALh""64re9))\&k7`rKniiQ"neCXmigpZ,E%"M)SuC(s*S^hc0WpT/Q]1m.AUEJ/o2=.j#\m9UiS+rmUWEj*pU.q:lrHrg+W)'@Z!]GMHPb^Vq;e^1$s0n=P]4%su1g+-^N!?e6#kDt]SGis-"O+.Y;_?1!a=BNn;O]QQol9]adFn:DQ"S5tge.J<,`c"b,pf(mt9T;ekm>Li)qK'MZnU=PX@fP``eW1Ok)?iY*\n2%htRf)T^caiYK!d*C#dh;i2J+:6UbB#.4db9gLFk3l#N98L_6O6\@CDrPg=7m>]S6Gr:7f^0+,lT7ssGbODi6#N3Apb8]rI(Tt[55P>,*k/g9ceQ4E@QX;`RDquhZa\a/*bQP.L%O&T=IAaukEl#1>Coa\R[UNGQ6?WKJ/%-2IMR[)!\R8VZ[aeDd>Ht:9+Zfb6(#+U_7GP,L>d1==gM.,7!V@TIp5]a$P4;pf![qFTlLtb[_kIs_OcaWC40nogQ6p%>fF-`D#L6*#KaTCKfKV1u#C?5T:b4rZT8-j^!_]@Mf\:Tf7SsBPEcZ223AE>'#cC0?iQBS`U9Z7PkklbjM,GfpB/Aeh'7u5s-It[W"hIQ:o3O_d;83_"&4VA>>^m#&m8(lPX%S%N8Mimn:X0>oL&=iqbDnaClD1)&3C7@Il#,^cFP`r[U>>ISTU3f^"mmr`gZWRJ1uIqrlK(u0N@'&D?!YqKG#o!!o''^F3>KCeVrlse:S!'oICB9mgt)d\oum*f)m.(*i\P6+Hgb9rYPdVr][NF(;r^'SH#j&P\$C(Z[*rGf\R8VZ[ac.$>Ht:9+Zfe7(#+U_7GP,L>d1==gM.,#Xk6[-OIZF,MJ^>@,&Z%60%a3ZD7'Q.eBneACgnCL8QG]tje9D>6)_tOAKO[-9YcpI`$cU[-Kp2Pj\b510t_u$#40(O"oV=*`b#MqPC\GI1q[i"%#dn-1![Zb&7rRUIQ7dY^6QF9b5]>CUF##telUP2U?lGhYh,t/!I[ANI+UV9oFZQ"3[)Fuh,\j&eJQ\foqGO$<3AGOa^3!$I-IIVjm&`[:\uU<&c5b0dn]9FDIc4Ob11`PkbiFai,SOm?TnL?rpV#f,EKJL_>eb)%t*Hi]A]rBot'oGq!2;TL6"If148kpHf--`IM`"(,L=9"r8\ajbD0GXJ,.8R(rmeANigD5Jo0V$D.V@#>C^S0[N^Ck%+nTs/%-14_mXU%[PD["/\nf(>7j2F#&Gfu(#+VU@9^9M>8am"(5O&SChs0M/3GmS"LUiO5:Dn)b.r_q+W,P(M<.r\F_LuEK,>)X%)]?d;5iBg*_)&A#SYDE'j565YFhN5?Ed6"1NF."=S%<0rHT#LqL/otf"japeU@,>f`/-M4ae[NZ#o.i3"P_m\8#Cb)q/+_56$[V?On/(3jiX^&*4%,5M)YcZPYKTM`*gT"8XX[p(A[W93m12O";0IESH1GCWkm2K2)p>FG&09#gX)#ITXASE"DbgA/sso-6Xr_B%LXu5Gqck?$FR"9$'a62*+,bJ1mOqE*+9@F\0:'NXN8cT$,;1cNjlQ5c.sOj*L308o&u-k*@8qt:f@aBWL`ha(#+TWZ7TKh23a?7_mUcV%bo,0gWHb&l2fXsD++``QE[J09$5ms>EO)aD<6@dA_:%QVu$)Hin2m3XBqho?+>B'!9t>+e6*Zdoc9oobK_bNIoXt;7r1[;DEE%VFbs+\[&@EPYCP2"^!8mtF-q4`>,5)eJ6N8jn=(C<7'^#XGB)#=8lUG=[2#;sRrj[#i[Iaj)5hTb:c3utbp$au=/>AYFi(#+TWZ9r#([0j>WBm8310%a3ZD7+ZAPbCo0*V=Id9hQ.L$QTg_Qn,`plY'Vcm*ohHmIJ[?5>`53$eE.pn_prkSIFW(qb+X$M[UNIGXU$(\*S=E;JSdh:&%7`2[Zt9*Z)uYZKFkF!Coc^6[N_7IgWB]Sb1*Vsm&fSPp6tAul!4kmLQW89?1eBuYh;umV7_1#mo815"5<#meG3,qMrSb6=+\>b,B.7B%XRqkU:19c3<-[,G/[<"7_'.*D6(U>[nI&NSW;N,H4(Q%*Z"*hdn)i4F]d!PUB]6*#_*O(Klb,W"MJO;(\A;8GZ<%6U&"D:YTU<]XVC`,#(,t2KkJ]J+8sAh3'A=u>Lt\#e?MGeqt;dmp6j+nM8qi9cTTh_T7>uGgq3;!I.X\]nB!&lJ7&4s!Y4s[n4r^7e@*ds?EO1E8BYCF\R8VZ[M@PSD++^RlbKrD12JJh0sIcbYcS>gMJ^>@,(u&#?s>K+[MA$DfN'WWAT7H/WTUhjg^D&%ghE-Yk#(;19&p"Y,S2gSk.ntGM*6XpJh)94`S7>Z#OaL3:G&Uc%b0:3A/*I9"[\.g^m5Y(+SrUPUJd1$[iM,i1K&4972QH5HKqJ'BHLB"oTtpfcoBo2[3$5pDkJlG,]C*K1Gm"*;fcBk75If'9Fh/>N/HhUj%B?uk$+.kLuHgZ,t@BK`gL0%b"#Dlk,[ecaC/V7j$Jo,)OIe-GR0L$`VT44[s'f4djuG`"=q\2[V?Hiu>CB*[f"7N%r+rC8[YB7h\h3eLT_&a)^reu?gWD18@"*52L1,"0kn_KUVA"jg*1IpD*1VOV.>5_%U$o2%+NQfXE_tL?N)joN%ICYD_j=`C#*0bH_6XqjiQ\ML]RF>kN_QUl0J[T_K-dgO?sC0L>8ajagPTi:#U/NL[V?:g/(/^IX^&*4%,6YV`O6tDOEFr82$^Q)krdU!0%a3:X)2FWK793amB=+sh\UW9oCo\IF\[C,6YcS0SUuPie2&(BroI73`Bm8310%a3ZD,gZe[l/RN[M9s=F<#+tL19V+5/jrSm1.mn"l%2LDn_KSr>"95Knk>JKf=]e"[/TO'n.:$Um_06oF[XXeSEQ6)tjV;2K;e8T:CFXiotikYjB3V`A(IIGJTqo'C'eGlZIYcH4g_E*JW,58!ceI`Y>-&<^F5(.q8hJq[5+#je0&IWI3.g>uO`Eh!@m1#U(4Ah,[`a:J(uE8<*MQ[?oJQHhs*nV2n$^^nY_pB4#UP]m,2>1GmQJn:`9@?T8U.PeX5gi9W<\E$*L2Fo<@TsF2a?$Q-)@G5VF>.M](MkV>[UNIGXU$(\*S=C%Kl'7>(q,\;[ZtPl>NpeiqhM5q'EriPQ!S1J(:p_U>P:88T16sT.HROgXCibGPr7AVLdP9-"0;$q`aK^+6PCfLXpi.:?\H+F_slfrDAX(G0T%V>2Ha_30Ns2lbpn[S`D3a\84hZtXYP]>!_X7#4jM9WnbO,245,C4%PhXcT5IA!uq)Dg@LP\;,`[24k0S]GE6t1F4Dc&ffW,ZA/>LY/r,mGET&TMCR*n6j`>_*MF^T)dA7"5/,FqeaC(MkV>[eelGKWV@h,I"9UZ!gk!2MZ/".bIdth-jNu?s=MWec5UlCi)morKN?%1)B[;Z'rqQ>ToT(bJTL1>9/L\i_:6pG@3%\_](#+U&%^m,:'\HH&/%-14_mXU%[PD["Fd?H?Z)pRW?sAagJSiB7@TsF'Cb$<;5[R?r63D\]cJoj"_SpSV4JUG/7("'o%0H'J)TbXhs?JQ1DMi4q^B=`*_]-jaq>\fN.=R[UNI'`kf)-SH@QgYcZPY`!P2@"l%2(Xk&&?`O6tMK5F%<"h'\)>Ht;d'=O/6[ZtPl>M7nuDL]F4DSlB^=FI_4XR!,5Z,=V2?hVOGWCj0FWN,9HP00jY_mu1LQs7kOKul':=mUdoKml!Cd0E`RQf-rW'HFhC!&J[(E-6FAAlklDQR?3ZFW+kX-XjIK'[4eF_>/p:=NhJP:;!T55N4PMR\'Q9S88g$QgI^@Qa%W0lk=kI-YtTq+mEt4[aNp]*C8FP-NH=UBM%Hh*Z"B-r0d&=TIYCrpqHqp_B0M7qOsKT3aGDA1[;[pa.%*)%ed*Cq=u5i]B9f3?4>c2Mc9,l_'M'(;hFo?O2)k:n4EE1;r-qe^],"^rp"(inV;>I$SNTPrI"^:*\5.=\H%AH&(suF*O_4@[Zt9*I338U[Mohec^)EFM:bcP_YqS60!`WET'4$&r]Kaoj<(c:\;=g3N;&;]EuJD;u)6B>U4D%oh/uM*d=,m70qSLfPRH\ksVGeJq!=k-\;gX5./a%322o;>gP]6U62;H0E$5D$\FC:F>rhF&a6^Blbk=PdfqkF8uI(H#ki1!Rd`>lgDV&6Jcc*=4EGfac:g[rl?=-@Mk>J'pO,4.cX32o++/#F*^27e5QCX.I-mb7n/"=h"Fe)R2XJ'A_<$@VG2JmG@2qR[:dK7?Cb$<Ht:9+_2VGCb)q/gPQP/eq%\W[UNGQ2f'u\Cb&H![aJ71=eTtJs!qu8b$L-W8Al8mLQ/u3p=>^+%/!t@LQRo?`iqLH.1W&.Hl0tQ/\S/c?4So2oMXeW7MlZ?KfrF#"IR^ZT$hqF1:,i93q&(ft3+('$m-5JS.b)SiPU103q2_E8`kEm2Le/&4*k-oCfXl@9^9M>8akLo3bc76:cmJ[V@R6/(-/VX^&*4%,7e-YcS0SUr-SE2&Wh;knr&R0%a4%IVlKT:"]2lPb5R9F0SfFbG8r2jcO/Lk?DI`W.3Pbe;)!-Y)69[Ucfu1PTE?F^E7BnG6R;Nbfd'=HnDdl<,='OaA0Ng/,T$boJLkZ^Tc5ktK`10%a3ZD:L2i!I@X0En"fZET0K\E<1'Y]>q\&pBCtSonXcK9&=HY->$5YcS>gWXZ1N;Yh*^M@`*X#ht5R`O6t.fN'WWVl1#U(dQD8iqm>7if1.i3"P_mX:^loV:4i`XnmBO/qR_T0A6g:'q-C*U4e`d^+(&CN=3k$.*#=Kg%s)modj^7=Jh2NgE#HL-?.Irl3ZJplZMBg)>&g7o%&a6[A8p3Fne:+FB[bL#iQ:hNl*@0A)*6s)!q0T:pHZD-Ph"PpChMP(/QDV;fZn=V+ncEjO`Tu>*7otL62$0m3-+A?m9XN?KSD<6@dA_:%#!8EAB6J<*](#+U_7GP,L>d1==gSt]j>7j1mHc!4#>Ht;d)n)">[Zt9*[1g`8r[;[mH5tY,A#GF%B)>SS4PS'C@5B;?#Wt!N+Zg%CXn4C$/Y!Vp$9@'@JmNKjEr(7m3iEl/SeC`'HKj"7on%[!3$[2i%LH'c%c/6?/d`I^LN=77I;4h9]@nP^#U]dMZi;65,PnBg.-S:iTucV*1[n.`*e+%W.CbOti9XngQ958-ij%P(cjL;1n[W`1lEu(CSTkkdpr^dP6Eap-\WF>6j?nA$4%Wga\R8VZ[T,E*[N^Bd[XrA8[UNGQ2f'u\Cb*E3C+%Y7KFlR4YcZPYCb+M"D<6@dA_:%#JH"KHL#35_iNP!d]I`9m9E/_>*n\'dIh@D=]iXL9\fMkY*#J5ZHceUS5.-Rkm^(>`9kdLI[d!)0*jqCNQ$/^#@(Y$VsJ+"jL\A&:JrjSN:fdS"L\i:-pS]JV743R-\?$G8BrqIf7e5OuX0->HU^@:^Fnd1==gSt]j>ESd![N_MRYcZPYCb+M"D<6@dA_:%#!8EC\(Ub&%on%&"[UNGQ2f'u\Cb*E3C+&X]dms%CTp_\U^]4?LE8`o'A+O3*[L-3I0E.J.(`FEKi=;jaNNuDfV?p)K`<@r7/3JF;diPMp#qiKrRmD%7`oqZlS:NYb!$2^075#.dJKPiCP)Nqm5%&_8uGMM[+n^c?(p+%[$s5k^(kf!3h6)J0J>OA>S<>**V*pbkq]^N/N]NFV%ouO3@[/gm.52R^+Wp*jM@>;B+f+siTm\$Lj+;mt95pADlfb$%@)0'NXC$nNOJ#@9^9M>8akL42J?LFb+Bu8A/D8Z)uYZ`!tJD"l%2(XkF)i'r_RW.miM)gPTje[N]VA<\E$*L2GHFkRUF,Ont=A/FEjg*8-D*CUP=ia1Zd[kR-uEFg]qlqRM]VZ/]#[8iZn:IK`9qQm]_i2S@I.?kZVCG-F9(Kn\VgX\9IE#`:o;/pYWXes7j2ZiOaTR"(-QR0`5nA)>M>1Zg`VA:;HVt>_%*GK[gWB]Sb-8#%!4EVV&8Wl*'r_eR7i6!.i3"P_mX:^fN+e6YcZPYUdj!;1#%S&7@^Ta>d1==gT$gKcNh%>?9H(hge)0IjrT2c(;K@3I@_'B9WnTn.[SQC@$R3!r(b#%7gm@1;hjebrlem7c/50%a3ZD:MCcX[mkK>Ht;$NNfN'$JUG[0Pi6UCb*E3C+%Y7UqX(8fN+e;fN&H8D+-K&[Zq6/Q!mn)'.KQd4VCN#-.RE&GXup).;bpF;jo`CP[5M3Nk,o_12=*BpZ^:"laJ]dG3L7J3c@To`*:1j;'`$+C`C,P-@nJF5R7)ELh!D<6@dA_:%SO5lO*Vk9VF'!?5.UrfjCfN+e;fN-85E?estOZ%u3jaq>\fN*ZA?a_lMat=gM<)*eS.=0gk$fqhjQR:NUrPnLHKQi+l$L\9#-9N[R=ST#fPd$:gC]9BLF:'I6V$HBp"b#HtTRTm*rrg+fK)Tb@^BgG=3rSQ.T[O+[&O$hLNo;$Fa"hA>r]k8GZI?Wk@C2N4>\QXJnB>V)t_6u+8.mgZtCb)q/W=cR=X'f.oG)'qrJo,)Oo_Dg+k22fqiLq.[IcP::'LBoK&l$W0D"'p&qNn**&0q_/:bd[-e:!KT!]#"Ke/PTEV+rX]ElSn<0H*k^%?GH5>_5IjBClkdX%tm\'H(s.*/7iH.;3o#WQD;C7!J_aSh2cj7:5/b-C7:;[T,3DmHQ'&TY/L]K3ubVn$au=/>7n/h@9^"=8<'jU=p[N]8Z_RWBm8310%a3ZD+2P>V-\#8"#FdEqrN,)d>9$Uf13$F]##,4:.ok:3%O4cfm\RbFa_E8[YB7\A@l<[Poa+T4O4=4Jf`m+">-8W"l4i,ZdRN,3iPa'djo+Pfu'^P#l;Ug_&aZ)n0?a36[`)s0j]P%Is;GUA0Q9WdNX'gcPS2K%/g%p)>Jj!Igj'^_?Bf8A,G4$qZbut$U/t:os8UHaM>>@&'dogk`mA07qHB+/)\O0Jo0V$D.V@#KPY#JAC8=+SnoKHg1jJ%(]";`7)'jMn$!IWSgdiRqT+2k/EjRKleauF'6ML1/NoShKMH?ark97pj8(ODI!H=tgb$:DOELjq@t8@,T)012_\[WuVQ%ap$PBYcS2a^9F`lLI:6?bX[nGUX]bn_MR5H].i3"P_mUb"qpN]sdd)s#G3l.!bH(%/d9Og%"[ON9PUuG9lGECCb%i\05N/I'r_eR\fN*ZA?^f>B\fSJc+q't?TiYE7U;%&]#nICs$[TF19@0kTs/hsgVIMqcDD#JSO>>]c>=KF;:UH?#;XC4-=4qGUZ7YrM\$or;:V1'(ZOt)IZedXD%!1k&QNJ'p-8A1NZ'T,:_]VRQ"R^\Jj28Z*eFf3os7n@-b-:^[ZE8:0Cb$<AGa6P@U"s5@9YT,H_8tlUeP9%\R8VZ[M9t?(Ub(5MUVpdWl`ojbdJ^4$JW],gWHb&#hcr![]Sn)ToL;`lr&G[TUX:ulo?Wa5F<_`N87P2PTFsj\_+B$qk1?(Q'+H_[.(u4,PF!pqU,+ikeT4c?kdpk)Gji[<\>[PNlnT3PScbtnmVm$^&n7^of175.*b.21:G_.LMc.)D.V@#KPY#J;[,'($T,Y<\E$*L2BB#p4[?P8<'jU)@G5VF>.M](MkV>[N]8Z_R;5!K/Z-2Q^$rH^E^r.]*02eAV<3u%Q!ec)Gmns@Gsqsm^VY1@-d^T]fQbFa,9AM:X6jUdD3^i*tIqF_V#e;mX=O6S8ajaW=?:9P@7[XNe)'/Jo,)OEIgMc95d:8#]K.HH?c\CBh+*mrOp\Z?4lef>c++*ncI-o7Hi:ATDJURJ<>[Au!WYcUIZ_7"C#[PDYL6FJO`.me!(D:KWYIe-G)7C8'gD@:5+Z5GR*UHj\;;lq3:,jPI.P(rghs,`269$R`(\DOl;f@$SMtH.[8O"NQ7FGl-&;$j$qXSU!YI->Y1KCb*E3,%USf[N_M:fN&H8D+-K&[Zq6/Q!ml/Z@-.c&Q0iiX+nL"+rq*Hap$PBYcS2a^9F^FW=cbEoI6=YV2)WG@]q0@*"4Cb=4qH@Lc='Tm*FkgbsD-eCS/FeGO:0thDtl@r9@G[hQAAJfBs=ANAnV&n%=&kEVEQ(mC,j-?14:SI/>IBo8SghgMcG2Dn`q-?G(4t#!j+rED0jeK!4BV"7tu\R8VZ[M9t?(Ub&%28Ze:%W!ZDH*FDUYcS>gMNI[s;C*b"V`[j%Cb%he`,;Ws,3>&oZ+k,17MjVh9j_JX\$AddHOof!gXNC[CUQ0aZLpq?c7)s.6OsBM#tC$f.o4#)/ATnK'.`qaX1OaSILs:S?A2rD#=G[':$()Php>0K@<89=TlY$EFqAI?(MkV>[N_MrChdou5?7GVO)7=K[`Ob>Nmp:fkmo?j]-V5f[g9'7'f[iPZQNkhah;BHL0m+)nEn(l86!-cC3PpTTROiKJ83M"/@QT\qa-H0eC3b/3tS`h`O95[&N=MV(MkV>[N_MZfN*`D7CFX]/%-2IMR[)!\R8VZ[M9rC@uiQ,1:j^)^q&m2*nuR6)G+Wn4bZh/`X\VmTZ^;u6."AkSO30Dfg9&K$gSPChB1RPY#'>d^7a.`:[(/No0t?G.EcC/7@!ndYO;Y!Z<8$`4q+2A>k:jUQd8aja+n^J)`O95[D)9gFCb)q/EPo5*_6u+8.miM+gPTje[b>>tXk6Zj/)l;#jaq>\fN+e+GdOP@5E0Y+A`8W%cUP@.JkhuC0+QO;^G%l:$fa3Oc`*lMW4es%l/[XuW;u=PqgKFJI:na-fO+>!eqD]M];\kKADugFKE`34H+<"+S3?(^K8cn?_eq!<=6_74pVMTV!sX*Me_^[o$#^/3]$O1LPOO\'Wh@,'3A:;8pfu1:s)3Ka8(.@`qU7C%"2#uah4I?W?Jud\S=nK"Xc;Z=QTBbCoC0/ScGP-\k^>EJikr+#a5EY>bOEN2-2?OC:;TO#j$!1cdoYI'Ie"K6Zg0AojO`kIe-G)7C9ZNK&nd2tHN6Xgqm/VH.dL[B8eD[SK]NqpOg%<['ksalg"WI[.U`3?b]Th9l\+5,-6aj\uJTp(^/SF)/cB&#NK%fr]8M:N^FXUqM`#o:&ocVcbT'/Aa8]jhirIAPX^!m=O.pqEmFmg_)4F3_&BNQA(q:qM=:^DZu]%ooAN/iJO;WUCIQUlM\&^.ATnIFLp%tn=d'/*#A26kf#i[H:,1mfPQmo`[UUrGSe*jg:-S@d7*ik';*.uSh-BQ0>T_UZS7>3@Mm!P*IO[-@9^9M>8ajaWK""hAaPh&C<[372moB,aL5P^Z)tG>Cb)q/gPWLL>Ie-G)7C9ZNNEY$m?_a+bmf"Y[A&#h[UNIGXgSIN/%-2IMR[)!\R8VZ[M>bN4^.K)GB8?G7I7jIrGBP',@SX.[ET1YHWRVW1`7e5!UU(?QTaR0!=Zk:9[K\Z@Cq'Vbg?fe5*E5@eFY:#UKC3E&4%/NZ108Fp&\>&0<"bQ/=)rhRXuZ6jg#Cq5.ZtG,*MCYefg%9"gCtsTPd`Z=-ZEBeGY4j"4o)oW6;-NcX@C$2%.I/\m:^[ZFm[UX&WBm[VE;#@@L\4^,GOP'D-P#h^@'[>4\eL"J#sdnh[]"Pa#a$UFGA-b-)CTeu\(6Fh^-7oM!)ra0*4AVgB(QN5J/8rt.A6E"9VTegYk1AA?c`G[_X63nb%8GiA`$n=prl`/0&`A&IfsM'7,QB,^&BPmB_ff(`!3Vo#l__6u+8.oI=4['6ZA[M@PSD7/b=><16Y%`<"KYo=8pTTgn7a`"]:`(p+fU&.0n'O&R_7?DBn&;M92DBs*+OTorbG@UT8q.'YqBdpfXSt\fPj#/6@W`?5UAdc_lka(A(#YP:-9DOBPmb$c@9\l=^pZjjD8iqm>AZ1KAZ1K"h*h%U?jrYP5Js-kSE-,Up:5mN8RlBb#D%QU+RT,Ia1N7_X$L1(cqF@4HU$f7i3G"g1`i#NE>aKHDM^`=h)J^+[K53A+omllk`lFt8RS?J3PO#bk@]C;$mOr?XVslR(?j8t2=h@mf:4V>0TM(<(f/A47Br(Z4jT:hWcK5^:F5=`n'-ZA@A\fN)N=fZ/_1_R,95nTg"jTjo^gblIq+MYAEust2!A"u`7%"dT=inR/ek_N58=A!@/EK$nZ_DP)q.pr618QkS_F!ZVFZoTBRMC.Q\pWW>mp!s3YUJcAjcpI:q$5ICkcX338[kN$K[p@F4grIhq[bV-i\0s2oq0(:I41=d)f.e6o6c$[n5;-1t[?`7A`V'BukRm3NELl<-+rZ)uYZgD..s6Xa2]%Yei^Jo,)O-*a88:/:3)UKtX)?^Wk"9KH;ZZ,<.PC%l:PeM$n`NFa=)nAKQqmNPXC:!DX/c_nu=6bg"H\cHX2RoQ9*J4=n]O_;bA$/54@,M&X?OAU5'9N"*\GpL*[KN.V+"JX74n:m\/?4J5GBOO7"fPs)(,CeiYa]Y5gJO+U9YYK#0a!`:$/';N?DK-a(ZH65'U.3cqHFdXCf(Y"lc:Iqk[*Id(u]#QOLu>(%H60Qp[bVg;?&-BMc=/%-2IMR[)!\R8VZ[M>bTCb$lL/%-2IWhX!,Z)uYZ`!tJD"l%2(X[o"e:LP8:fLM/hFPPBS3p7,,q&).N2[`E2I2k`<$!>Jq_9@9[>ZmJIG6\?2_XnIGSR7&IS:OO_'q2W4@t,@cjXg'&<>^EM(mdTLEd%q<_%[lW\-9483Ok;H>g=t;e]]4Baj7f"g^IH5cT^8rFp?6o9YeX6oE4C%CXh4P\s/b;/(kfMS=>7+\LG%YSVF`"d_098:cF_'ZCG!/TU2:).uWFaVf-g2k_Dt^mci['Y+VOp4-pX%/aI,IVk.5F>C@Q70QpZ7N9E7[a$N)e-U@tP*sk.FoV]#Hr(>?+`^)m$M-gVI$Ms>,_LE:Q$i5$A#k&+Hr90S,brukaKf[HQ>9W,&@iHTQ@buTI#u1mEi5Zq0J[rFEF7Y7cpNOOD^70bY^O.!op6O\/:L8g#HVoZB1=kB78P>apISahTl0,Wc^KPmb$c@9\jT_7"C$[UNIGXZ@B/(#+U_7GP,L>d1==gPXJe[ZqN7(#+U_e^:V'fN)f=ieD=3Jo,)OWV!OckjIqU\H>[#@\^bR7P]+D)ibc2gR=iBj;_YOUJFc]<0WLqtI=koKL>a<$ZX\iWB;%L(>KTm@E"qT\FZ8moRFnsD[$C3#Jl]#Q]ntVPqD8),TM[Kilk]RM]IhnQ[)@GHkXPTaE)ua#d/3]Q_N+iUNEsC?_M?"c$$p9!4R1+*r1*.a[C:J`NfOt7q]C1fk8",Dna\Zp^HZ^Mc@c#.R"c.M_pe,.Vf0FBI^]RMg3!cE4>[S@Ic1[eh[%c)e83":LJ#b&7F`r6tqL;QiSWBT;P5nd$\h]ILu*f"_l$@RC0`pjo<]g3K:;WYVi1m/]U__@$=&qaU07jG7L;)8FLOZ4D9]$Fr+!*8!2(r`7HfBeb-TPhHSci,=t>oA6&=:g\bCY/A_^3o,Cdn`17m7L:C\Vg7e*T_=1fN'""gPTje[N]VA<\E$*L2B?t&)2tY`O95[FXV&V[M@PS\7&UP?s=MW'kof(O_M.a.tG=;hUXW.!O9+?V`3l`N!&9j0q9:(KmnIN7c#0LAOdF4+rm2EKZf96\2lhbj'WUjBEa.L15qr-==pL3$Vd-aXGhl$4*4st5iYYph)hAAQ_f00q*%oKs_T^FR>b3$i9+-UQaMRQ\S=`AX>onbOMkb6*DAY"O%6`Y?r%MA]*.s.W,DgJu.neoAH"duBM?1/%-2IMR[)!\R8VZ[M:0^3&Tjb`F[67r]!2/AJ":m>+ERq`J72A\RelF]a_l"@VKBj`fUeDHi)dGe08.bRXoI('h800N:/XR4X6_f@2S09[C3_'S0"&Kq`k&u*^+`PIeD5gGjOKME;tKmiVE(HiR^Rq_aB3>M^RHI;s3+jYE$HjkIuQR%ig3lO.:s9T"k9t.sU^MBmAe4-)e".Eqfc"IdAmRFRU.Fk0-8=kht(^bioL3G>+>`E8VQqH1DsQErT!]m-?Isk`Jg5`:7d(n`+8U^?VaPO2;RNcbd$/cb[?`?gsIQ2PtF1E';Ko4RJLJ@kqq$n0%a3ZD+,?RgPTje[UNH`-u:EB(#+VU@9^9M>8ajaBfp2^[M@PSD:P>aXk6Zj/)l;#jaq>\fN+eVfZ0\/PFbg-6B?(eQk8nZMY4T5Y?KRKDouLi:YBe#JpLAh9@3E"kS8.m[rNG-@1USc$p[&LiUjto>[5LiQ%aK#HE0m*;FPS&/;WCUPCqDB=()CfN\A2%Hf9-D)*q4cT)](XP+YmbMl)40<.<[i0d0=N%.,Kn*0/Ub085k_6V3\KM+S!7d?lf1]BiL6ZF@H\Y4GqLg$_:TR#P'jJ2J\fN+eVfZ,/iMJ^>@g;r#?3I9@Z9nmN([UNGQ2f'u\Cb*E3+q;FR%bXm!/%3tthG25@bI2.@Cb)q/gPWLL>Ie-G)7C8o(b#OkSU@4@=/R8Lp1RS>;0t!b118bUR!']jm6f7h@+XWC@CZC:dJs]g/m-=+6SIre_!!'1]fQA[Vl-0oF"e$/@KC4J`MO']3"*-r@_W28-Kc&?Qf+;56h5^^"X0u(33)_;BFEN9YPso2Y0a%0q2P?c[^)s5mil#oKOnS-a%m$]$*bD0?=I/VV6RIBm<[M%*V.0(ISmR5WnY!F:8VCVE_R=L$[PDYLdP1%H0&)8#`O;c_Coc^6[UNIGXb[q)Pmb$c@9\kK@1RS8gMDP`gf_hT8IgCNOr*&k;_Q1Ps_Z)2M/>R)fcgG4-^WZSQE'qujZ+a4VDVi).Dr&!gGjPjNEFg6Y](IMbEVV<$EpYVEp[&^*J,^[:p"OCnn"$L5S"57!R"oJ>>KI:)PD+"h!\968(WY^sR^S*IQ9l8=9%d0JV6%_FGk9Y3*r"6-0!/P\=7plVF=3:#^%Fl!/M\?pkU(CfUR,4+%%IlNiFX-7[r5!YrkU_ppnMo7<0#r8Hia)XJYci8dDNlK%h*jM\b#=]eNk%l#-P*U^A@,DR)p2T\gMDPaM(#+U_`O>&RfN)f=[Ml%ENkfI['jg@?")m)2$^^&>Tt0nl_Y9"`!j%p10T'p*Nf,TIc8uF4_$hJrk;?&%L&9>Wp"FXgin/rHC'eoZ9DobS*M*d[Uh$S=>(BcfX0$^aaa#h7N/H5CNdMphV&M`NT!N(LK4ppqh=OeC-qGNU*WaI^TZ_V\A`4m`St8BYpZ5g(CcY$au=/>EOYKO'pXACb*<0,+SeiMJ^>@,&Z%60%a3ZD+,@t4b@6LZ)n#\MKB2A/%-2IMR[)!\R8VZ[Mb(&5\`,)DcKF05i#'Zh/O=6S2+^f"Z,sm;8rQI[#2p1OIL[u)cGF2%Q"%4&8g`jZ3k3_$g&C\ZqiF@Bf!drR0.HLp:'k86]7bqB*BAKokd74.K"bJ[31CqVI\q4O?f-].sh6hC-6bGC9]$q>tp*^^,>YM)4XEX++O2:I.+a4q"U$Xi74mOE,)Ze^\rdDa_S!TAk(NM'd3o7A$sRqaJNZEpM2q*sk*15s'e#3B<'B`QH'S:S$,2rMr`CTtFc+'uO'"\t,<_0fi9k&QC,(_;?u#"BpMrGWWDnIgeo/6n^48Shj?g"i4I7.u\`St3>AS/(DZ_q-Q+esGu38%oeOXn8j&Mr)2%fMC0jGfisr)tjX+>IL+5.9k]N78N)NfmDA);ar_9h5,S1kIj[MY2'?@mbPqBo?SG0DnU2urooDjE;07Mi3'a`iU6G9,eeI,55Y8EnF\`c^peJ/JT&8N*:A+H,eS*a2QZhHTS^A#HMt.+F;A[C(MkV>[NZ0u5*4DtCo[f$%CR!cF4aM*gPTi:S?T,#YcS>gMDPb=5[ms&XWBG[fN+fm@9Z0:/%-14_R=L$[PDYLdP1%BYms3E$r@X[\?!)]HVTPQA$[28"G(\U^WFRh:U_D5ro@bXn8Tp*QBu):VG?.[ce[3>h3CIp0a^W@2Kq#`C6`?:o\D+IN'%,O_CD`EO)aD<6@dA_:%Z@G$2>[M@P3]jkOsYcUIf@9YT,I=l>dddF?A>d1==gPRfr4chLS4r+&=iG%9>K`;3[r!_nc1;4'q^B3.Z&q=+kMnT&*#LJ&:ZE,K+hat0UYe;VJe:e*?37PJ$c?J8=?m)rJQ;t_rCbNM-f9Yo1h[+9BtCd4cNg;r?D\fN+eVk^fNYUn^j/\Cs;Q4UuVnU4kdB%lI=M'@,Hh6fdNCC*?!,A\_&t;Gja7(=%o:"-ne-o!e\l\M7aW^8VkSE%S:bgk#`YI/o4)8a^RBc_Zh&-5=BJ1sr%D;YS;3$qAn_A2Kj'OjEC"M@%p?Ohr)i`!G[5PcGYZUsh@T<<"*S34o?\]++ltf<2cI=gH'kqmE<\E$*L2B?t#2@;)Xk6[M_dQcW$FU[`GM#qKfN*`D72jLL`Y.uq_+'c*ofH@o4c(Y`!GEslkkiA+&Ve90`)8fNX:E(^cbiF7nbfr@E+N`)RQ(DE?kF<@9+3V5d41*mV8UOVhq.X+\2Z2D`s,#+?h+h`Pj`"@>Ch4)dneigDEVh&0Dr;7TUVZeLDOYKG$F4)op)3A7SaE<$SMe^Lp$5M62UU>_Lf!rpd[UT>rRI-"[2W&'C9FcD2Wfp?b\W1075P^GJF)6S='`Cj?s4KSq2S^i]$&s@'OP+F3f7?NuU@bjnmbA\NH?/SpCY(EX(e[/N#:,%)Oc9iTE[6$/EMa7!bkAj:M*AGZ0EnAOVVset0H;/TJW"T+bDTke$PSAaS'P)2I5SrGZXh(7+M[W8Ajb3Ah!%^D/-SA.t@BV?@o5c3pf^#DDgT*V\82hs06UZnEm"XTenkr2pF"$-.^?_S6G(ph<<6>A7""-q2l_%r=E(29gRt*"cBQiGF;6a4lr3TE"QgI,rn/JVsmZm('G(Nu]6lf5JsO(S:L>^@nJ2nAV>7F3QMTF&S.%(sM40ocmaW!mgn-4XGEqbUm$=#08l(S*Rd/LdCW*Ul(H@$IecpSAXZhk]O]GeRYQ`&g1?))@fdD4)B(kVeJ#JYmE5(+CLrc`jC?[P$H07FkWB3t?QG'=b\luX,*N35GAHQ"4:A(^_*NO/k*.i3"P_mUbb!NZS/[T2-k>ES'c[V@5@$`+$]MR5H].i3"P_mUbb!NZS/[T2-k>ES'c[V@5@$`+$]MR5H].i3"P_mUbbai%(,7W6[P2:a^VRj_%5^0E>ROej\*7;&aL`",s5hlYX$lD;:9;e]%o7VhZ7h8>1j%&7ij,Y45]AC+$^H-T[SiT"=c^deslC*CV5>IoeCEbhR[Zq6/Q!ml/dU_!2c%U"'C4U6P.bIdth-jNu?s=MW'd6;+D:MnDl4c\'Sg7uZs&";@]j,L/p8^7NDI+l[@HCunN"X$1%&4("]GRgMHsmT^YZrs1pHr%4)An0bJM3I=gH'kqmE<\E$*L2B?b+bZp!gT"8XX[p(A[W93m12JI-#U*_!;VJ-Wf_=1RU@&t;>H/nc'>Q"KMo>qnK,iCU0&cU0B^YhqM>Na)=Fb0Nf;of77_T_V./%'h(L\"(G0[0fdMUV;0%a3ZD++^RKWG:1Wl_KI8B8NSEl#1>Cb%gX+_2VG<_\l>Z/kNPTc?ah&G%#4_nOPgTiITS(]86gQIQ?\$Ap\AMTL`E6=#UZaKJ5A;IW*m!VnaD_Y,O5j9AW=S$5PZ`0sE'ShO1._;f\fN*Y^Q^%(lASB#j,,?NhXW!)1cO/EaZo`(S(MkV>[N_N0fH[-'i!XiSRMU(6l[jT-o3FX@U$Ju(;0.=!$hYrss[g4GQtd[R,C4p=4geoOti=C#%T8pau0)=?aE^-&dD$23k]KcfP_;YJ0*,,ek(?7nHUV4=4V[us6F/E@6kHUTnS?@o_8)1$`9lA2t@;8LCd:Q/_m>_GCFJt-bedpZIk?s=MW'd8QiD+-uc_mX;.Cb*rMYcV07XUNsAO@I*q,,CuB>;[,'($T,Y<\E$*L2B@M,LN3I?>XeCoN1"aTI9)i_Ri.LE)t?W<6&0'Nr"lG?NKdKU&4GXTOUMuR$Rk@m'b?+k`2=N`;"8f:PE@G:OG=ur^Os7H;2b[LlOE9R6M(j*o3I+_@seF@%[4rr`m41T'eTu3`q%W^OI"7Z3JTL8+=NX8N8PkLMsqM"ccKdSc:!7_HQn8OVYdAEl#1>Cb%gj$/:?!NeVE$.bIdth-jNu?s=MW'd8QiD+-uc_mX:pCb*s%YcV07XUNsAO@BjekSQle:[Kf^(j8HsAZc@5RMC1@PeE#^/rg83_HLfYpuD]p$gb=-:WC]`*E;r'QkZENh84XRF;\p>SO.HlQkfTGfX[f1P@oSH5u6e>D_'Yo_>Y0/2d(h&n$r_1X!'TLFrDDa49S0oo'i]`VVjiApdb,/'=ZpF^\\^/pYldpHVYH*k4p7+YKr!1;e7pQ+$e_A@2&mLeXm^n&Srs6Cb*E3,,C@*XU+0)fN(_$D+-Ji[Zq6/Q!ml/dR`"kKQK%eX!Y`m+rpd?ap$PBYcS1F,`tN'ThfCGBH6:2U?aQqn]F&Q2mPYk>Nt(*-[q8a5OanDXquE9Z]C`)@3>*cI"QR^DCbYop"UDsoZYjRP%OoE^=>#kT(r/9m2#nrN2a-458B1a$\E9^,=/5?llNF_ClFiJO^5VLBmO&#J4mJ_og:C\fN*Y^'"/O#!4Go)^p[ujfN+g(@9^9M>8aja+jD;ZZKtFe]h6F:#D%lh"E@n#i&Y5bCDcp.c3nrBW;F$16$/mqDR;X>cT3Q&pSC)6He`(C:U,/:+-(7\PBQ'Z)7J65,\o*#KNI=X_ap_UpeDAl+befS>_6bC`8*XB[qtjjSmbrldok?sC0L>8aja+jItIm3leOSUgZiZ`Vpmh.O/rP@7[XNe)'/Jo,)O#L9bm6ZesR<_\9]^$p]o<"mYBeFM-@eQ]/)Qmn/okVE!#fs@F>3(eI]Y#ujOO"pOn.?E-Y@u%D)WX1%DjTA6do3rTW;5,e!`)nV-C1Ko)KjbH0;hC\b6=Y$i2?Aa\%u*@V<^oYWLWq0''?SOq:2T\($,76^&De3[4Z#Vb:\:Z`f3XFTq\Q[Mr%P3f'\b*L>7j1mj0<*ID8iqm>M2*a[Nb)KgM6+;\#rSEX-d`m#U,2JNY/]7gPTiZml]?^Zo`*)[I;n^7^9()[M9s=1_IE10+"+`R*D9CD-U<0gW9cU6k9V(+?V4Q5hI[$0%bBTQMd-Bm:6>/%:)Ht:^7a/">2cNF?OfjfU65FT[8C8!+RCJSR(r,.(ZIj/RE*>4E4>5pCpQV=p=<7+J+m=7KKhm@S5mL@*"jKsD^crMS&Tm=Bi?R3!*=hE]_Q=O4s<[p\;IC0j6[I:.q$hpXKO8iQ)IS2M5-*-f'GV0-i*:iT\3.)g!mou.4jn1,Ko"B5WacXDkm->URq-63\N#1UTrAS:7>EZ2&pn_f;GYMdk7@D76jSJP]jA`!%^&.$GUn!Gp3To$5)Mh"&5X_94e`R%Y,6!KUf.fb)7,e[%K"mI;'P]U'pC@LZZPi_ef9df2LM[D7ddXcgm17.;'bD22aYID%^GU7VoLkB8gn3lbWi84!FH("DV$D%Yg-M]LfpUfs$bj&oBUF)VDH)TI.EEW_4+L2ji4dTb('9X]<\Ur.o/*Hb%!s0bH"^"jZ@D;O?`Wa-FrPg:%H=hI9+)Xg1C*8n+OnH0CFtIVs_a:YHtOH[qrcXOLaAH,dJ>R=Pl?VUQChu?*1E9l^mIWG=.r`EDY(aZkWQ@//[*@1:.d579dSXJ[V!Lg8[PF!*?f^Mk#om)sMGo'R9YD:5#e\bb"&Fu(3q2@MX4DV_FWp64?DZ=2YeCGC4n*N<;H85)D2ngLd_?-:n;^#b_"*_mo_k61H*69]\9thc?FVg;hgFa_m-;a9K83XlL=\'$gL'.)]:7*f^\Mf_OoP:40BE03`S9s-:H-Cd4$)K,T6t!P\i:ng^6t3%/p,0.XrrYO#Q)lEHL7rZ.)nbbNdL?&YIhJak8i6!l]OAS@_\_@BIa&_=>7*^Q03q2U9/)ZW,$(I\Y-&sZkWSV$:7rsH%'EWg5<=j\q[Y^$ehUK>6+`R!e17,#Wt]AS#,7R_NGFdNSA2V]C-+k%,MF5L?fL8+XeqJKcPooO5%fUe\"WUd8Xf*1p28*T$Y:\*c4-GC=R.DVK/2DVEMas7J;UjP+TYPZtU;QQPWV-b"#4QKMH>aBZG)U!]iK%JD:g:=#qi>Km=gE[\(Im,^X`NR2DGa5TW[aLtqjbdX@Ab1W(GKf3lqC#h->_OK6Ti#f6jlDgC#N^Z:"7jm>ZDS6%Q*_9C"TSO\LUJ\[d;*+NogJjPKA?)'o;uuIU7F]A0)Lcq^0L#*B,sPZi%ujHOoL;bj9+s&r\t7bq4Nu"5Wg;,+/NNdGO\W7IJ.$F=p(LHKaF%Do(5c%r=NX4h$50)8nep,$nt4'@r4;oPi^9n1s@(?NcH4g\24Q7Ygcq9Xna0#7u+c?J%.m.(&Fb,M\uRh*X47mE?I'l=*S!"4OiWXNapR*\m<-D7JSWu5S$!.Yf:[]0aQeX4]aYU6$FBWE$![T]p<"or-_&Lj(!!(1OD,mC6BWL4-8>3.n'gc-P<\nu1g'Rgf\a^ut=`GhQ>;cZfhib-]^/V;Z%H?hTY5mGnpb:D(0+RGh,(H@>eIe[6l?7,N*=f)`/"a`"!nY[m!cR[Zck^logVptSj\to7_2Z7`j_ap#maDu)*sO>QIhFpQ:'YD6+5r7_hmGV7f.^]CgqGWoY?r?6)um9PNXZfd2g9?6cQAaFLC`:-:Hu0]I^8.2I.>lGEk2kERH>"Tg+3']F3jg[Q8irO?A#u/8[g[!\mT@tm+]RO3.4"r-k>(9Z2\N;,7HcpSTAn>SS-jt_83BPCg)BIOh[[McU!WZ=WBIheo[]0Pc$f1D$9pD@aJ/_'l?q[Zk]Z/BWJPu.EC%H="-NrfrYJ@Qt?YusJja.?TaHAd,;W6k;5%_PkN\')Ijm,'ME:A/mcZo$Y-;Wms=03iDq/Ld!:-?kN\eKD'Pn2+-TV#[;n@,skoQakm+0(CKO.;dEY:]4TI-Su^90R@Agq@c9?FhsE:S2Kf[r7>KcZck@\)(e\Rl?t&kKf.1VP[+6in11lEk"WR^A`(r;B@gO.PG-JPBZIZOE^+$b?VJ$MoD2;Yo5]gTri"/)/(N#J/*^FWZPn)g5<=j-&&e%X_+6.!!$%.g8]UpX_96=$C2C[C5oT#RS1XRViX_`YB1]`!*Bj`>e4"pg:IF4Pti`#?ZM^!Scg.JDfMAY37?W(#qh81.D1Z?o@(1EVp:@`D4Gk=38`ihm)SWSl2.&J8C('m68M9K<5,!s>6C743B6q%p@OEeJ`-iF#:JW[E7qDNqm*,49_S1GmH],g*=)G]AQMCThLRE7h)d7dq^,i\hjF>maXkS'^33UGcrRO(gj@FL!!(21KhF@A[DL9kZk[E]9+#N)>KshtD$9pD9N8NDdoIt-D+.[VG:9!@]e'(D`dk^k_Y0_1F3$&$p]i30WJ,3CbSta*^Uk`.4^LsT-_J5[l\'.$)WGI#E"NqQl1ef-_*tP:1FJ2=1Ma#sZAW'JBQcmPLFO!'lq@UpIG[^kWCmuph-Y9QIOUHNXYbn+rBWE"a.fb)<6)\U9/)Z=9<0:[FS@n82#Sq!!"]#BhbD>ilL[s^<7InQ/oR*e]ZFZ8;B\!@AJ*IGT>W#S4jGJHM.1("KMS9q=`u9%2ErMZ1[-`+1tM<8:R02cAKb->7;#h6/it6Jq(XmX)J!:QYoh+$lk%+5XdGC2C9%GW[]PSXQa@KE"TSP,[\9g:/(t?m%rFa>!<<,8GG2-P/(t?m%rKi^D$9n>!/nlB#Hr+7#k0GAKX=@aEOoP)]"WLeJ;tQ:?K&]JD:7dNn1#n-:V+dI]Vpp(RAkSem%g/Ab0&sM(>bCGWN=>*a5trU6$hD=nE?gpQc5Xl'f<5Xl'f<g1`\(-NA5L.T,FM-Rc\K6,6Hl.*<2jt9$A"-tZ/*X=SL[(ei)#,OT#IafMS-j&Kc\l8Lh:j1Fe>WrRlDsen=(bPT4l.Uu*ZC-LmYo:/47:34roeY'_R$`5j1j4tJ+q_>qV[rE(h"MX2m?q2mcpo^C.Xh]_^Fl4Iu*r&a*$U,&JQeT[#*l"3S_'7X6_A_d-0&8%)V,)!cFBWjqkN%aM?1Q[HS)ihr&\2u7/c#/phiJf.T9mkes-\92h[[`:IXbG%Hg+ISjm''dCRpXOcF:p.QXqg\,]*_$,MVM=M>d!co-&DQkWVRBd8g5I!"BuN[\Bl(!!$CJcrRLgD$>uN[T\&_V15#iB@XKP_[>/&41hg\]!Sq%fIE9ZcPrjQtf83lN0*nB"JXR@L&"aq*^VnIaJQX;a?M9>#H:Sr[Ndk-RgKV4?_:s*eTf:)n",rufP/I%_g,iDd661PNKc(FE^uPa2((Us'RnV.WQBq9EVn;pk^.P?9AI_Po4BkBb8Coq>skjk2f9H^3@NbfRcn@WU1D:nB\Y:XW:N't^e6].IlMEoSa1b1b5[As.d#gg(S6b-]_[6Xj6Q$l4+DKHdT3^i+sLL68mBQtmt\?g<@;W@-aXU4+sL&@D)HgX+5.''S[?q;/@qq`!!&[CnAlc:i4IF]nQkR[F>&^EZe:kmjU*c,ai\EX+6LF1Y/-]iX=>K%9rJVsZR7QS68m-+m!Q2)Y^L1K5@-6,'p`L2PtDp^Rjq"UO"1nkA1j@l"jiNnGmGH"aSp&e9pU\#aHq;[dZkWQ@5f5om/KqJ9XBoS@3MEPT!!&[:lPU's:kW/(t=B&J5g.D7,&FLg!$89AZ'(@7k(u&)oaH5S!>pNoZMG;[`G(*^0(pSjQ,P]"7kC/2L4=p^O6!fB)2'T]AuWN>3*72pW@>7ccBajh(>7GmM!-TcRjG2lR@,Fc@DG/k%1\t[cX2RXK@1qp6L(qG.-4j]j7`qST"2q_7p-=K+A%;MRGi>6sPr(4e8m^WuVca&_F&^`]n[Y8`%(-;][sgKfj\N9BhFS?,%S13a1XVBDtX%O[&g9%XI0q=kRopY\ZLC6s_p(7Lo'6aNh6+nndo;H0;6/o&@2ll&E@foZEc4[^+`HYE/1q`NNh<]eR'9cT0\83[S(V[`L[Z:L?K-LkrPhBrh&&>N)$8[[LQ-FU,C-Q=,3hh=e5rm-0V,"$L\#^\^lSS(%dl+X/+>rTN_d>FjOdkDoZ"VA^T1)+K7SUAFue(,.=I,H_N4:r\Eq.I^DuM,P[f@%Ek&=540Iq\l3]Tpj\Tm-*$+7+51Iu2?9-Ni-1;?R8Dc;Wdk4,p3p#"%]=^@)G.>#Vm(aW%g=IqF&%7`Dm?/^mI:`;1jletE*9q7)@fp#Bjr[$nOcTE&O,rp)J"?mlg>l*)2mU3YNr4[jWSmGW>N#-mN&XTQ/@6./KntPpHDRaDQF=Xf.;_LX+X/,idR[SB/T$2W;VJ.N[MfHuK%n-;i*apZH;b;J?PX^Zr]>&A/amVB?1%CIfPmH&*pAphrU]\4kN0cmO7Y?p/Vo4=LkrS+*:!!U?0u"BT*8!qIgC3#:(PC$o>JK)KV>M].mucn7)Ur9D+.YP+sJ3Tio4h9[d"=i"rDp06#Y@\g"5%0s520%6$e7)gGc:XJ,JPljJO*eOFR#6Ij8c?A?\7B0A%:)4WG]l'*jF/`_f*-d8l'ZLkpk&=6:=407)[(!J8I.Z$j<]Kp#&frg%L^')XOSMDor"H%QQGs0@SBsJ#$Ft1%pOgRcT9*f#`dG6S_ra*>&kq&J8*&Bj3_>]GYMn4qF/)NY1H2K>e-a>L?K-LkpkCCL5_P[R*AM6q"u4]B7kJ&7g@t_-kV%g^;=1h&Wu$gM1i7:Cd&?9A_MWf-u,odp$']^;W[_Hn.TQ6q"uDCYDf.K(jnY"#%@UoPfaK:E1o\(e9QALUNqZ&.oKd&_EDW'lAY\LkpkCMmm][.N=^lb=%1giLB_O4;"+(RO4ns423"VSgNX09O6c80I(ic-,=I_(*)VU(W!iT`KgAjL@i;*OPDpVOl'`]ch`\mfn/%GQYe/PbpjgN;8'7j4?o\V`J$Z613K4Da3^uraf>PSfGbCNIXDhHpMrt>5ZpugS%z!3kI-5jff,#ONSPHXQ<9^'F\`!=+4?_%GY-E+h3o*$``B#E'88;+"R8_Oz!*5V3AF;aqL[cGJK)KQ5L$F(d)X$31&+!2/2AX_93bz=?NrjQ#2csr3qX`X2WIo+Qs7%#1iqV0_/an..FDg57.5ibO*-3?urP$GTQp#b'OH&4sBu?'Y+,Be/KI'HdM1h]Ee-Ol?i$h*,m#[)&s76$AXAb__L.5ENhE2*&Y)/Bk:T\c?DBIa'b%#f$'TN6%1!N7qjX3.5rZ)88=r.g?HlsWEB^QRq@')`'"rL6CYD.ToPkd.ibn4tZbk4\pBIBY)mejfiCN<7]RJ@`^PFqKo`#nL>JO#&.W@#@2o\>dAi&knA1s\.n^^Ps2loK%!"A!7V7O&o)h_!73-5r;ij$4D=ICh?/*8of`(o%QG#i%#tU+KgR(Z.d)Y@V,!mjd8g6D-&c[@TN6%1!N949/(t=1('%h`!2pW;IfSaLg8]0tq)=2]7$cFh*";al8=u4Ai1%NsU:_N%$GHjp_J]E>I;h?CejfiCN<7]RJ@`^PFq61f4(u#$UXl0$X:q+ePZkWQl!6-ns:b0'T!7WU-6+^(!!#8AcrQD\-<-@`PmRBSa,.SrN#W4Q`k7>kE%mM1#QT"e5XMT6#QPbHY!2pZ:HG*A:u?nTkC!!!#L5[.5[KrJ0gG#d!u.2`*c!!!"$[8\sE:V/%bW)Z![WZ#P$z!2om7<@,!ez!*"KW=to1kXerkq7=)fOzTH74r:qrHfW-.X3*4-F\!!!!a_a7QZ+g_sa!!!!a_a7SX&(R1Dz!*Hqa\iC[_>//A`zYe8Js3?!TT^Wul[!!!#'][XMQzzzzzzzzz!!!",2=^\I3#`Xb~> +endstream +endobj +45 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 42 0 R +/Annots 46 0 R +>> +endobj +46 0 obj +[ +47 0 R +] +endobj +47 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 237.049 290.829 276.541 281.829 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (../download/kabeja-latest-src.zip) +/S /URI >> +/H /I +>> +endobj +48 0 obj +<< /Length 1333 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +GasaohijNf&:X@\U&+"+'?^II6Y(5.8THsig6m+FFZ]!_qOk`X,6s#KS?pu7s5!n^8D(WZ5Ch=sX5-RDG5(rYn_JBYpO_=Z_Lp;,CU7D$-8\&_bHOcijA?.D;2A6e4p"[koW\+9nUA)Pht`(:K!rdQJ--#gpc40+]t$M7k;d3[TKfVZR8oMchHZhjd.[>M<NNCYf>.HhJ>d&;piVU9u=XI9(QLc\2e@Y8gB'3GoSk<=FS)s("\E\.HSE-]1DjI\(nIpB`T/_jB/7j[GLC?@bJ%p&Sq/*GUHnO"uETiYF`5^<*m2#^_s'^/E_X.mTYt$CG>mc=4"qoh#>T[ISH)VEZ(P_-..oV(O8%CQL,fFS(X]?80GQ$c`FnqZ_WCsTXie,B\aH8.Y8Lo$3lAXoZ56e"Z=*aLMX8uJ5.b!#:qbnfhqs1GBhMWS1a)1H][d&qB:n3AJ'?Z5lP13ioN_q1hZr[cDK7E2')6;fiB;OaBR`db_$Z.d_jBf].C1C"tCI3HZRla_R$!RKrg?fP&4jZCs4(c8i%E@%m5:Tr#lk`bk#*4U`OJp!'85:eP$+JpZ8b!&CB4ojs>RP9O;@c^gFnbW8#_8MN?k_ML!`t$/6NW*r<8=#VEB#TS#Q+r$$>i\2F8IdN;cbTn.jN@DRSKj/"?[.q&g7kh;CUj2t\@<^>e3M4=luMA_#l,&ZO85jr?aR^TH#AQn[l-f!m@l4f3a;[R*U[hG?pe5k%k6UU(?1pHYX^#sP[m5[!UBJ8cMo#&(DlbB%ee,'(/OTX;!.:i.XR6e*jK1YU/[1+7q`"3D$r`"a&QofK%L"7;:t(IN5_$>*Tk(T]':( +endstream +endobj +49 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 48 0 R +/Annots 50 0 R +>> +endobj +50 0 obj +[ +51 0 R +] +endobj +51 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 350.272 296.655 382.258 287.655 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://www.inkscape.org) +/S /URI >> +/H /I +>> +endobj +52 0 obj +<< /Length 1570 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gat=+968iG&AII3E&9`11DNR`":8\[(WVRtBps4F1l&(98:i,,'VY*Va1q(@":9UABt;aGii]MDD]dV;>YR^Ie'Yr"i=,N=p*(+n_O.eQOkAck*J`U>_u#D;kkcbI@H;e.B2ZM:'JHofAr$JKHL:I8j5?;tLp>S;A`iqN\!:[:ohiL,*`3[dc6s&e*-coAAcHuLS!FS[0ObX7KR&e)TD6nHiI;h%N,,qfCMO3Rn5]Jnm`#,_oWHa.O8\6V3kDg)oH4g8j8Rs/"?dLZZ79"\WeUAV<.(Ah##-]IKBYrM]2ZpbsRNNJ2NgG<4`rC!_/q5MR]RL)LA)4fXc0LC,ICpr[d4&LU]m\LLMEMEmgX'46r'2<3G.R]ci(P2;Hq3Q,RRjih+IHc*MK@7FUGAkZ=nQS7AK\4cqsf770r?A9Tgtj`n^d^r6C9(:HQn[u`jeN!eA@S3,1l*/99iVJn2TUB3D3OgUW1L/?Diup%,2FsB;)>Q+XbI/..^tUQ$0+rdDFC9"3'64ejRICr%6Z[`Ii`FO$l>d2Bl@0[cmj4bj8o(b=/E$QW#*DicelBWPPZOT\arV:Y"Hu5eC:gA6pUg3T85D.laXH@LN,OUdU)pKElqa=J$q.lrBkl3=?8dELXBbg$VgG!k_FnW-m:?b9,(r`iibj&8Q%"fE%;]P7Bp0h]7H%).ThL,[J.D/R:UMA,c$bX5Ash5)LdOOO3CLh$?qdDaI8;ON)?*L-[(MgrlNQDgO?g'd%hP8E1B\0%a463mNJM>jiOY'3faM*)ra-k>LAV=^H:&]N*\m#P$d,NdeU.rh%>.6ACk3fdSn8_%Uoo/WO-*/Tt%%1aH@iML!q)-[NrC\J)M%H`QG[+kCeAg"Z[KHC;sXk7j%hI5q+oYo&m6aJ'5g?*W's1=&B!a44bi%uj$@'@+IU,$lVi(s[=PQOG^7Ig6b+<_?6-[$[me(VOcdWQRI3&_)Q2ujt(qHiBQ)sG1Va/SN&)6)qIEP+h'[NA[sA0SL/Q5S-*;+0m)N$8_)8!0QX*j-L&\tL;/B;$PksWcILY6i(h*2q]`Nue%/DZg-urG!pJ;Ld5^da'o[28=(/U7KgFeFVQJFJ?A8&D/aPe&Y"G"#&5ldWHlfp-l1d4GpNf6$f>ekn:nOJ=8QBY7-YE,Q!$ub"`W~> +endstream +endobj +53 0 obj +<> +stream +Gb"-VfkXR]s$-#!5N$C^HI[p[GgQnm+G_.l'G6H?,!dc;Tb>=:<)QqMdCRgR7ZG$f[GN^bo6sD_),1d2RPq>s%qs')B?p'3b;84LqB)VB%Yqs\E&aB%KY(7QiGQWnE&\gILVr(iq@`3sh:'PAW$"oJTFsPuJr3%k4]t`[#6#WFgoWOU%Yqs\E&\h4?c(X!pMdV$E&\gILVr(i3.2*WX&l/OG?<1!5LLWCdRp1I[%oQK/!JP380f>;(%I*eMmS>JE]BS?Od<(rkW.XA3.iN)r8DT!D!7Ua0&u35ShB^#ih,K9'a1NF<$J8A:sks$6"QiFG@5F"ibl`o%-6oc%>Vjs:uUFFLGN>Uh28fZLVnCin?i^\_td-fit$o$@)Lg#pMSNJ8k%''ZpeZ980WKp>2`1"occ7;eKT3+W^Q8o31PP^gKF@!F2[$V##"ad_r2$Vcp^$%`m]W)?0]nX5Lfca#ZM\?6r:"YU-[>)0-uOg'mD/c4J?AlgJYHUrJH,5i6&Xf)F9>.p1Ff0q)?'s/W=Qo?M[HOFmY,5=D-23D"D]V^Yk"RkCX6.fqO@\hc3ra:Oph44^QJME$Mu1[fPSbep)f^-($-dD.1a=r$OV92eqBltA_:0-KJhq(-n/5*c$9uFb%2t]Dnrr*@486S@,XNp9$bV`r_+/p?I3+dKabq5/_G;+#b+TGKpCa\X=XrL8U1<%<#AGP?@aEcI'DnA"<4OtTsR.@-"k*!oTBV%:2<[H:5>)NA$G`-)f.L;\PBWNatkL]=6Qm^8chW.4g#.sX=..YeHJ1%Sl9&t\a2A\oMC]Wq-?V=9bU[6j*J-?GIBsFB56!\m7qRHXLuM&([=hLWua1YjmYWet6Z3ZEp[;mVFtdY6[DX\KIt5l%O!;KlnlAk"Y/#qTX\a>T!=gr>i8]s;i0FZ)SCK/W[pi5-TJAk,KF/)eQk+Q('mD1r/eW'HX`VkbJ[rNlt7H9S*!eF[6bLf@.&C=gDE"f/pb#`:T5o4#%Tq'5)6\^2294Co6RPG^i(2qd7%OU".=+^=fN5kMu%`BC(&+_]Ono@DN7=OC7Sr)88>/^t]SMI!a"9FP?ED#mV6;OCA+p",`,L(*(r!kg+E#5,Q5L@lA^a>]UqY_>FrRbWGP5$I;+JmR[eD::Z82a3QBqVJ!3XOs;-;He8RW-S:^4/-8I>3j@nN"S5C30`Qe47Akc7I+/\aT59.sPAut:b(cXc3\3DH%Y]CWT]eoPjrOsud7Mf0_M2u)(f6H'[%?'0^HH<'0^"B!7Ak7#X^#s?"kk@4O#ZXb8IaOo+mrVVLu.^$2:*\!kJrlSGkU3l2/ic8hbX1KE?43A)2(4;O5SW:M&pii\9?aCme4$VIKrPLFTeS-rX$?i47H16%#:l^Ycfe_L[QQuCS_Ab.MFLU_(M*SHk6eEGm&J38)WRB;>@9U.I=$_#.s:N?uMV%AEs=Gg3XWj:7)H3QduTX\eV87KW59B&ZR4lgj$foMS%ESR(/J-m0B%=HSb>+S,NMfP(!kBm!n^-L/osKph$SpSWC[tS?_fG%_5e`\)M;ucVFD`O"H"Rm)_V1i!b.NT:!5*G:W)^K4f]&gQD2^9UreaqQ`iqJQ#.TL0"#_H@J;_QT9H"hJpG,=^iu9/5tC)OR'L*M'^`#Vl+_urs7\4kh!b)OY7(R>UphTC_-;?kH`mY?(Anun=C5AQ]W5rDILf+6Ur1CY*b]us(OWuq&df*Q@FkE9R!G>>M@Oo?rdd+t\$$Z]*GC/amcuR;p_P@6f*5.afhcWaJQW63@+Q\8'Pst)g&(6SWHoG>%Q-ViT`BJH:PQj#n&*AA:-cY07[U_>!)*@)!uhcCK)B!D_t4$h'HBrCE)./6D,I"rO;DLMBRtI+gL8q&C)AgD/^3)#l8i#LL&5(ZHc,?tJQCBO0,3hm(Ku0QI@q$]*0=U[r\,&SDhFG_gS*Pe?gtTib[/(%)a#sE\M"3n>G&cqUOHQssm&H.92.9Cn%J]/u_aB`rl-8,/t(*&CNZBI1OnuAjc"r2S-(7oX`*=ouRn+OQ,mg_VQi@kt:nA<;/!@:7:iBUBK(8%a^-)YVTZfqe?hWomAEf8k[#X-A%*nX53?r?Ti1.(Ye$4Bk$&,S&(mT'GJnri[nJDGhWU)E:?97qH=EOXqF`>E+R'6btpA23'B,dq_g((#2X5L$=V,/+\!lo'YnAhAPE9>/WaPV(AVJ`SlJfXS.J,=Y-HhIM1:Fq#84q26N%q4M'.kkehQ`t;p9t6p?^n4V$Yl8SN*,Ptur*M(mnTkYILD$iUfF?J[_[!q]%`#6*c#B@^L4X9o@EPd&aP.rU#9SMUZ2_8S]DO?oB0C(@DF)+!q_3H-(\5&e6GZFKe=UJ`gEdgitCP;g5[ccj=c%[g86M\c]!2KW59B&ZR3X=K')5WSqa6h23r\!HGU.DT*H&mgjUmmT/,F(h81'G:W)^N%t&*E46`bh28qiR%@h*&Q(qY,54Mq9j%h6>8gr8cZ`g=-UZjB6\`+V1ZVIO=*u"-DlAD1)t(W=ZJ(o$f*JcN9i#?p?0d42TCh^&.mAmJ3Uc`0lV>LFnm)6CI.>DjWCuqDYdeQ_IhSMgk4-%'@7f7eStEPN2/MmZfqb12_L\I'KpoEm(V;o^"5uQp8bo:^!n("Jgh!iVSnp@H?'GaIQW?3V/QQNmj>'e@7VS8T[;eWfrONYn"ck%m]A$f4!n,M;W[W*6(atLVg?l0Q$2gB`%*KaSdS1-;@hUgQ#Tp5:UQepWJ&!SjN`G#`BQYZ&cq1;F')VS%6bji%b)kU6(8U?4)KEp=E=ltQ8QJ1p$M70*9(:O+IZ,-$ie:Flbf:q#08gmhfD-FU%P#q=rSA'G@Mp5*N4Z(F8*TAftTh%a^1@IF9bKE\fXBWrX,:DFH%b2kaJt"7M]ir&VW;Sme4=JC>'/"EpsnST=GV)c.iQA^Fk/$1Og&2\-dDqe7F!"acSl7ne[7T[0q^(mY'SJ9ou]T&j@1;!#n@U'0.[c7>.ZGPnC#D<*6*9:oWDk`SG9Z:&I9fQ/&Lu_9h1Z`SHE`'mH\ZF&X6#kI?#f$'C"oIqEA6\)M;Eh.lHGmfVrRakc5&$n^mJgo\(jEOQi?8+cn,Nr/R@&:%sfB8.1GX$P+7Sr(g<):OcX*KdQ3I6$k8O\o$a@D\=6aP!FWDXj@g^EF[,FJ"iqP>Tf\_t]Be(q7&t[A=qaD\b5g]q+::oMUV:Q63pIVZAldBR[7"UR-9*-ddlacd)i`YqJ$o^k>FbgeF&1oB7jK.p<,:o8CDRGQntQK(.=G&dY9S6Ue72O$;#h9PRUOY,H]YSJ%W]bXU$:5jrpisC4FIR3o"K`Z5OO-mj6'7GUE";H.U63H_Y?ib_?\a7(hm>'*HrX-2)b9:Nd;A_?*%?-ji'1U7""/G&X#,;NL^mOr<@/,[F@I/RYpu8oFY+c(RC>NA91%,)NS%SthTDLF'pi[`iB(c%.?sMYSQr(:57M]in&Tdr%*tQshm\\b.l.DE.;WK3f6R(\^W-V8XTmB%ZKdmLr)QGgQXghT?J!C$r[('?5%sKPl(';=.S,OSTbZi_jHa&&M7&3EPf!2;Nksd6f3uPEM_MF.-KGLI/?+/id`\df[4m&.)uQJC-Y$u^q/UO$9\`SV;`7WBdG>)Z51eTg/ZsNHY;9g0'9)b\+FH(a,8BOKn%3lB)M$]?ZRP3kmd41sfFLCU>%,_UAgfe"RWG,6jrS>j_V]+dWstC^\]X,1o09f_Is70=fY=JXf^T0PT>haBNj#-B^6Q+`C?aI'rMHjK1Q5&hi?!G>6b0)^_]%#ntorKtOgrS/(->Z1Kg4Y.b#q9jZL1aBb??VT?J15&2@:JI9aB>;&R'>R0j=WY''2'f[@TuMQV,q)'kr#-1(bj!r!BW$.&G_"#6gLj$c7-F0\SEh8eBKp[;X$3_>?q`,;tHGuiB0db("SV]edCE5af@&fh5&R9Y-NtI>C$d"j`bRNGJ*rX,t*X2G@A(*/9LP)SQq8&_S=J<.q7VPnC#D<*6*9:oWDk`SKe]:<]W!pH5gm>B..3DT1Gsh``ce&G_"#6gLj$k&//oMS%Esg#)U)nt(UPG:W)^go\(jrS&^^'-a%[H"anA`8%I!H+,Os]HT3WQUDVgYQVh?%8%lPZ5JFZOapj++bZVO+I%>_MeY\-OR.X^"PJfJM1Ln_*__o:-!j*H?.glbN!MsT$kt'!YPRm_e4:3uq,]DRWfmEOkfZK//+fND1CCfI=4XJ$;Y7OY'%$#5qlqo_\$Bh\1@$t!SmD?;"K!(*=so6THt3^G&.H;/h%]i;#5rQ'ZYcdAO8B95`jX$YSi"bl$sOFJeX&m:H'HTfFWp$+@dXf0F\<@(=9-T&P$ftO;9im-\2cEh1"?)T9VqP87iKF1Br`#!m0j5^QARH&qPRE!r[e**QOFO79pE*7LV)*plrGhQ?,Rsc/Q*atGj,i;D$&$;BRq4@eIMsZ##"JPp;Gbi+`9l54\a'rTeC=taZcBNLmqhoT%K,eOL,`n=;(6ecgQb'lnL:)VW7dS8MC)nWe\Ae"455(d5j*101>IU]\,EJJJO%Y+eTPk1VuBjs!'$m$ii"Q*%_/Y2.hLa-9R)'5SMU'[!K,f)pm002pAB!oP0%&<`mt;+5Z-@@+&'(.8k]V94D>K.ST]KS'id'Sm\HfLcuY[coPQ;+1LA(]aD(2^+!V?AN8YYgQaUMf-V/)(Ja7!,UIApj/TI87l]eP"QOSSg%>T/5615f0Ir!0[e^PMlA.5ks<-=KYc5+/t,AL"97G%K/#7ifif4$?%!aljhVDEW@7?O[I5)0mQ4)*f10MOe:VWMpO$E54di/WF6Ci%=X&bm2N&OfU$=pTK^&jY(90(DXghST\*D.!F1:.HohKJ8ibl`kMD=fjE4=hE`SHE`c/Hf\^9"p4#a?Z6C<#%]>BgL,=!74BM-7E;!V'+u:(qNE]#"+Xu@VK5HB:qmIk()@@#.C4W&e9GS5,!2BSdeV;9FWO?JQL*;#j;`85qfn1S]+B+)al1@m&P5S![BjuIctqQ*N/"(ljDl9ag7[s;#$U5=NZ2OD0!BK]!3+/j2kZ5:'!%cAFGehhB?tk):A/Wg**U(tIQ4B3qJ.dr/$FYNCdg1[H!'7p0/%Y06AK"aB=0._E\=6CF?)k%6ZHELT%00$I+Y_B;gVj^ZoDFW'esd[ahVZ8b*4>d&M;Ru?l[qmdVZG/JM0WbDm\+3m!Ji/\f81uKfBMC(AW'3tIZXNTYE*YPSg'&!#kegp_r->tbR3OXJf,a?75g#C&>AATAVB=T'c-4t?E"=PgRV33#"K&PXTZG$K.uYucesl_^VYfQLOlSL@&C,b]-tB/3.(!7UnS&]9c5.$(sX3"""YbV&iWWtdjam7h_2Vt[SOD2kqGq:gI$SK[kr%='++8C25$quY\$j2roAH>^>'&YWD>,.[n39*6L("]Ga#E8pBU@-]R-V?4=AKHH)d"%*M`6g\1+AM;EiR&V5:71bAnWBlpKbtPWdjuB_,f>&2t7tIEcTLsZpKC(qI:,e5%/]D;5_S0'D!Tr54?ub_Gcrb>o8lmQuNgKu,e/^[\2#KNVqC*8]%qp;-M@WC355jL:e*p)Jf5UK82)(:<=DA[dO_OUL:qK;!P+f2`9jg^Z/3Cs8"7-FG,KgY4CBT)I:inqm-=;!4m.TtZ"5T8`2;Mp,=B\T*.Vquht'*tGq&V<]hL$^?M;;TmqC_)Ve8f\b>Q!fM0f_hs6dhoC:*KW)GELKH]bY];:N[3mDR]M2q"mjTGc44^B..3DT1Fh07a(D'6CYBU"01"\Qa'_ibl`kMRsUI/+-HnXghU*"n81r!9S1<6]8QVDn'#bqeifX8MSSg2-kdsZ3N5>%jOOP#?p`*BB00fSPAEN_hoaui8]k_JoIA'es3Cgm@-&Mm$S#bK`"*%Qh1u-4l*-LW$)\!2KU?H&"W!);foD1LmH?br+,,Cigc.=5;4Ba5sFC29u)RX:<=[Gib8Yi&_fpg"K]<8E/pM[JFYSt.QHdR:TamNel;^)4M"NBkZNG0FVJr+6.<.R+D"82@fTpdp3B5hb"8NNIoJnB&]m_t9p,_!bugokRXFekK^@SU/H>4D8T3KsESZ@E2._JaO)Cq4Z>SaR)7!;34!Gk\tkH;E:O+KjeT02#(\Ff._+/=I>I3*gSB1"tAbe"+,4mNRa)E$j$2Ul5-WBr&n,YVkjm3DH[9X:*'ES!'bDT!7Rip"a"=iEp4bb3qQ@t?T.YFN:^\)Qd!GaBL#I6UA(@*T(Z/*baCRSG5)[a&m?@g??f"fZt&&L7]VaKFE!h_^NoSLI>A,90G)*\V6cgmeZ^oX2Qm?['<[7<@FO:HjN%]=24lqDE6aO*s:L8e8DCZM-Z)(h;nQTjQ+](!_K972C]DMa<<2F)tk.Cq._ZYR[=2rhgZ%+`:_$'p;?_a,sZ&&X1X9CF(PH+6U%1+LO]>0&^2Zu)RaS="AqMfg#!-?a9-b@gOgF<_j1bt^jPs:rKibQ&#d3Bh7=)38ln:BlK,7"hej8mFpsm'Ei6II5D(?jr59-_oRtXJY#)urAt6I^!h+$K'gq.?;P!U(DJk0oN_>na8^g_$0,F0r4,)CK@W0P.9b@W\=Z2ocj4t`-Xr#d?a9seDudTh1C?%D?OKKI%j-YTPB\JK$<3[3HZeB:pmX4D"a]fejspbVK?_mD%E=>F"lITWKPd40_stXZ_hd9D"9"ger9O`_(%pt,fs#qM$D9R2#ML;IH]a!i^4T8/$]PTQi+[+ah7Ihq;:/Vc55]J([Wis[X]YtNNuS.g%7BhTp--P7@uS)Ogo\(jEOXqF`SHE`'mD1J(h;q"EOXqF`SHE`'mD1rjnQ)GG?ZoTh#hu@;oek;\u1;^(#99e'Ap"-%99m@6dCAT+MV0UQa2t-OBe78LU)''5mmL_E7PHM[!iJ2r6Pm4UIU;o?aam-"nRYfmqDupq8,.rFTn_J<8P+j<3gCH/I/kHW4f#Cmbb'u_V$_QaeJ6TT&i_"5?"_kp&Z-am4J"(aoTl>+C)I%#3H[:^sCcd_k2_X^_\YB1OLW)2[AD/4(N7q4kM6kJSiKtlcu,Qp)Wu9D:96C('2t$57[Yse##fn9R.%n5RFu7OicS>pVZ13L&m9?3Y9^5"Vg#n"hLgm-N7TR-6$3],Df_6LoTiJ6D:(cu=DA65d4*4:HZAZLC))Vp$;SajqG@o0UG'hk#N)X5So[c2p9HTbml^U"]2L.uID?(e*ULOF$4L>0Q%?3`c7"5%o"6G>q9V06g:+Cpd;Hr%:jA(Zl"m&TF'-?k3*FmY6?N1%,!.p(<;[<&G.l3PTD2Xe5.Y`N$-J`B^'rI9A&,)Zn2?][35@8+F>)?#%V?'&[aqV(QF`b^BNie&,`"gTNg8.cZH#0$G1!;W+"[<3t2gK+3E+9MSC%9?lK7'l@h9lrDX65!Zgpm7L0Wm">kGRLBjK)'s5C?"'RT$OS[.UgV6.W0'm?T9+:m'9MK]Xi2=nYl9V(3VPWMB..3DT1Fh]+nh71%t=N>B..3DT1Fh]+oN?mT,9$`n9&+DUj*C>./Mb,U*Gk^.'dX9q_@J61WMk\@iLH5T@e97Sp`,+F._(BpWHjsJ=>9WU3hM.VL`1981Iql2*_JQ]RV([))=Q).D[FKdZ[=aUUOR$B!D.#pfe_e`+^Z?MM^':8C<,Xpe_.Ko]hT-H4^Gn88DZDSK2"W2>kZ_N]qbfM+k0g#iUl'pU'6u/ZOo"RVlg7C)k#S2#l`s)0LP4=C9%NWEB&b.CF^JDME$JZ!O@2qWG53Bdm_))KeNZ"Tkh#JOU#a6,cb-0sr%cZP5X'#?hJgE5@k;5l2\;+WXIl*F%;>edAlQW21ErV*NL8T`&0j2ZYKH/LbPcm(lIQ4'J9hk^D1MD?6k,g'_`)(%blY./jF44`s"_WqdU,Qe>c*0ui&_I1[!6/+-HnXghST\)M;Eh23r,(jfcJXghST\)M;Eh28fZG:UZMA*iT&\*CY2rNLMiR&0qU8K1QI'9[>C&oejOj)J-E$6@6E/)a)HUQA/0Jdn-7P&Z;U&jS+HU,F9l(3Cm>kXZPP8njA$3hctW@N$MUQ:lUO11`a$l+iKn*0QjJ7,nV"isCO^@ZX2NTd+7XN[qdaHAZ:USu.j(7I.8js!h^j^5Up=NVI7*'=;r9aQ],(oR<0Pd[pLM0@N#6MG]U,pad<10GgmId5VcpZNo5?h]lPrH#W=e9kg5Gi+eDgp:=]M*'/kp+CHWVj[#?N'ek"!3JpU?c8]d,SR?)J.t5)V>jtjB..3DY:HJ>J9hgfU)R;VPQVtOs(Ff^bKCSoIr[,_30H_3*$l4gL]%NcqgBJ#]/7,g0ofiI\<#O;$@@q!mB$-ZqS;Vfa9^!m]n^+(p:C:MAe*'ic6"X,)-SI9*NKGJaH"TD:scoPGu.3qWT=XAH1``DqH$*=)nh;*eL>m60.-^mUBoo32Qb!<>fjWLt[_/$1:S_1CT;GJo/%L>631YJRqF23%ERHdR-6cS[^3!ZrO>)"(HupO#s(Dg-LPI5)>X.QQ?<6)\L9^&n[l7VZD:?%Kp\V9r?QaL7+;4jQb,uIF0p$.]jaML$:HHT9J$\+Ds4";5aSE$K;#ndL'g\%ds'3A(o/tl@V-0F6Nt@56StZ,ge_7e$C7fF@k#d.?,j.$5_gB6h]52g1HeB:k`WqBA;JnS7+4fb-"7%OgQ7`:0eAu38CTE2[_1O#)FW%Y]F0/V!6r/nb:Z_EQmmYt8.a1*$rK@qg:M3#!a:B4H_kT$&2daZV$l^"3G*qLQK"W^A#V_GT=2&)9+Wn9"qac=a&Kl1-&=TjLrUeqXYA*f`d7I\0,_>C/2IPD>6=!LEUT`WAjBsAM1%Bra[!IjDQ-,F4/7a-'CGUFNGL,Kt(uMV1g&W8?RaMn[JV5*73mL6AJ/oT[@/B[H]_l&+l$!L*16p@%&"0FI0*76*io)Tke&6hl9=]*Ell;!nu&c*(PcMW`2`>pZWhg\HH"4j^sLNA/^KYq6&5mph$db"s4S9$h#45[Pj)6d$,!lr6X41p`TVcK%XS:5IR>6H!0UR4H;$qmcMu[uo@)bGX2,?Z`6BrD\$jl]&`4p=%4r\Qa'_ibl`kMRsUIX4Qeqgo\(jEOXqF`SIQ_\6BClgo\(jEOXqF`SIO!mT.$i1>K"A>B..3DT1G3n$lR2.bq0&h5utW"-o#4bG33Qf.W`s:MVOakqd%?L`LI5J,9h['mCKc/A-&]O"ZO,j;D0VL`;.d&I<.d[bP0YA+6UW;p4Gd31Gqfm@/^6%Kqc3(pK2IXOUCYO,@F7gCL,J_QIAiT?+ME:%BD>eY;$1c5E@W!T?`#C:$t^DWIYmmCT;X1k8GdUNrhLsZP!9pbMFlWI2S\.OB!G)\$"%bY]i8lf1u>abuT0#,BVU%:_L3k7n\KLT-2;/\b_'O[:\;oh-s]V;fF/ZB)FIf9'Vt6mAY3&*&F?oU1j`eU!l]=]oWtBN,!n[_rRXkR,S=Cj;Uu+CTN2YZ/,2Gld?h]*<@&l-qj]-[IgPpM8F"blD98&RD`"P()N4(&7b&&ZDe2!`PC-C%ri[H6I?tC)AR%!lke$AXLimg]fWY2^)+\m6R[!ttK"H7O*:\oA;j3<8]s;,`%cg.J$qY3:1.#X_r/BQC$dWpX,ERl;t:mE-qE0@eY1L;nspi:Zr_k@o^]*Irp9(8MR7W4R0cDVr1n>UIiJp1Pgq@bL)J\^B<@U$relL[[S(B8YjfN<;j8*>sEk*/B=@_,n=5!=DmPSl(4=&lH6I-Rh3\J&W4ckbKc%f7>8HR8WDN],[p\6Es^ibl`kMRukA\6Es^ibl`kMRumGEOQhp\6Es^ibm9UG:W)^go^F(]+oN?mT/,F\6JVHGH8Q1]@@jEX!LCT6KYps9CTI?!IDI.>rpD@"a@m0nFXg9GlI'?lhOI&#nK,dK;5#hLjms@p#hlc98E?7$DF\C2EZ9U&0=&-5VfLZP6WPHEOd&%&IBF=#c87>/Ln[7T6J/=L!*ldmP?PBeL%N[S`$G%d/@X4l@[rJW&QIpHhn!h4a77YSihWA0:kKe@_eK$&[/l+[LF*,QCiopcQDiLpe_8iSidU.mJIh_;DH8lX<2pCL1a:DiPg_qT]ol%1%KAkLV,lRpb]?5HgVh)4*?PAqaC7PR`C'DZ)+Z'.?SF97_Wirr:FDW";FO7ELd*3I%@EDI$,J2^GS&uOcNJ>2$ifY)\:m+eu\ng8edF1rOnD9[:_c%\s04*I/F:=N=[@O5M/F2$pt4H)M0kC1OLIriq5[>2[!X1N.m_cq`qbIm5!Mc?;uGmdMXQ5hp;Lp*pei9tmjT)h`Q\NGq?4jqs2!1l.Q.0Z%[7)_0q3c[qWd5.FPG#$(De@/5[X0QdbtQA]W0%I7k=g+?\l&qm@i1jE$!WbI2LpZc2*aH<,71=.bGmN[(bO\'nrV?LB*pb>&.VpN[YQ`lp3kq`_*Mm;=#^k)IRl`WO(WL>ku/s<`5ke0UL4:b)EAd8;$/TJ*/TgRWaun=4Gk@JSPP#Ondu9F)*N9S'Sn;I^(RmC."b;[)$82f/&XJbkj1jUs$VTP-2XO"K_0&AqrN'!,qmVO=ghp&r:TtB4Eus.1;P92<3Rr/ZH=Pa4\6Es^ibl`kMS%F)EOXqF`SHE`'mH^mj)-a,EOXqF`SHE`'mD1r+Zi?o]i0%Dp[jS)IO^'jS9:3`1>4Ngr36kH@n%aYW+qe3cJ_Ol_84F;--+^Ce1_?34WNgB\JESqM\A>@HdEA`3;>6hVaDZdE9]4-CVgCAAcM[q5_)I..^2g!7:DiN'Wb)=6%+s*Wti&U=$A!DjN*!]>&=f.\Xl,5efb1XHe`l(*>!@6XV^f->P:U_@8b#eF`ck9Ap^://`%LtaEOF4lE)c'.iY\9D@D4H[X8dl%\NY"XF;p3Em;1.:,18/SLIO-C/?k*?[e#1dYj!\0Zd6;8R5cJAC22!ZDh=o^=-@4n]aUG)(FGcB<0=*L"!jKV["l!HbR(oqAQ[Gu67U2_3bFXmV.&K._n.tOuP;k_Un$DEctd,*U\M51:O=&/kOBRr)]2Gm,&=N#ee7FmcAJ/u7OK0B,+__6@A5F-2?os!=U&1#/kDZe'k4/W7-U2gK/4$:VZAlCGFGklaPgCSH^L0>7<=%>m0u0k3EIE;=Ytm+uph:7]'$kK>NrUrcQNFB"&U*\\fg<7V8HTP,4e/RAoCM\a*ad:4;CdNnTslr]W5/K_S&k-,p4o6=4=qR-bm&=J7SWZj`E+98khI8F)4LWNI&JGp9H+^\0c5ehQ;X!YE5mc((dTK4)i?B..;M7XLH/+-HnXghU.*I"R#Nk9c+`8\nGI98PRc41p$HSdE%]6>B"XCe]!UeGr_Wr[>M@/=qo-a&&EIP4UI^`^iG)pe<*[-A\e,-.,/Nc2_r9+1>7brjnCs((Yde3ab[:8mf^TY,rc'6?ELdjJ_pI>c`OerC\,]\Y"0PW__l.Q^_VnE0^l3D$_2N/6]IfDUj*-.[U4Noal.bo,qoi&CEk,LkHpu8a/0th0qfW^,0TS84]'sGUC(JnH9mtl%DK`MP20e;eS?X)4m3Q&ChfbN3n-f'"%d[n_tFZqlPU%q?bfOhk^R/AsFFN:A:\>.P?;hl+-3Pn6lreM@-&Z]a8T3\-B5YL-9m4"hN$HmS/-Bp;$B9;k`=L%6/h)&tD-k!L5SoiTAZ`E:$7$<*VHph4D=;T4;Kan(H^*'R5$Ln:ea;#mS0mae4MuB@(jc*'/9a@l<_;c?J1+f/7J8h.r9Zqs:&V9kC"#+0Z0utm%$6_24#7p2(qMOcQ78O%U3XrblB_5gK-20W/kJcuWdmr43R**jO:^#5DWSpQ.D1AimpT?J)N0!Z\s/$HfQ$%;0QPJA'"C6R#M<;9O]3:P/8O`2E?@Om?e#K4@Fp"ha?sl!nCBDZbJ3!:=VTck21gO\d2B#t)Rk^pIAf>/1kdJHnooTV&ER:EW"OqW(3riW;4VMYfK(;jpTP2>YGi1E/YN[%^\:#*)806FWFZum0]Emekg>VnA(-$ZA&PcVMJE%A'@JuL/d&gOFj&DMP_[nP&81%:)jN02KFeh:M,ZnBa$Dul#J8Rm9^qkHGm<_r?oZQ2lViQK*KtZ'eg]SEH>_'pp-:9WK^t*@65SosDVgp_B..3DT1Fh]+oOj/DRA;>B..3DT1Fh]@D7H,6'g]XghST\)M;Eh28gE(@G5YXghST\)M;Eh*k'7)q-[2W152f5di.)]R$LrWH`m.k.qD+/CoPp7QL51m;Z([O9A!_\Q]_SQsMpu-H/k5X*=]<6H'BZ;3Y4pZ7e>,PYm4cObss!D,/Ao(Ge6fG`+8D%/?.)qM3HF6CgKrFL+gmJS*+X7*pVD4BJYO[DCs*VsjF=,lq*FtJSbpl356:U5Fjf&E#K7(.+M6W]1TLLRaTt^#MaU8F"?g`$p+=qeo1q&]AcY:E3kX/FDHTPt\G=3H)PH'GHK`^*TMtk2>4.?'8+nNR$k9:O)q^GdF=OQg2H[_:$nPQS)48Da.,1+"QIu\'QjT/<"+';iSOt)\m<\_odO(p)?O8Gk"aUOP'6+_X.(X<(2@RAG+iDt(O.%V@PH1;[^d;*$+1i/npi0[=p@hob3/V20Yp;>0C8)]ee-XcV%Sab#s++p9lJSnWUO>T"Hi\:.:8SC%)_Q9/4JK6]MpT'UsQ)b^0m'o0^F>"oATZ]#t\@;tsTI"%CXLV/Q[gIRKGlbqGHk#t5QG\PXB>CcOTG?"TDInJddj:)t"jUJi!>STUW,/l80baZA9YdWK2k^*.3QPISC(_e$6)^i"J30l1pgN-'GjP;6;@ORR?9oVHbZP:[Uf:d^7M%+td#'r>]]MFPE(%`?13:Z6-c7G,@n+#p,K\0['9&'pN5#/bH=`m%+X[VRsO4adP$gpIf=mG8?F54>Oi$nC&7\6Es^ibl`kMS%F)EOXqF`SHE`'mH^mj)-a,EOXqF`SHE`'mD1rr]\]HA$\D5TO8Z`i\jo9$F19IYHJ\@`?Y7!l>%PA=F)KYJ'Uqq>\4Opi@rb=QUCH5j%sm+$r6bm".J[*,TI2.a60`:kk7^R9lTc+1$mOK*Wl>!TILDRO:F+JVVVO5k$S$L5M^n`qBaDS4Zi'O$/7Q1.9Z)BPP'_m;5QoZ2Io%D;f.^PW!cm@1tLE8=1<3h67'c=4Y5OY6n>M6ZE$J.hjX@$_N6n*#[`J',%SR:=M/^j,`0%[fa?K]Ga8#rX;!jlr+`c@4LV*=:V2TJRaBV@]SGYH!l$F,a_[2,L$.)1!Ecs!l`@7K=Kl\#lX?rN(e3kl(qSr>7Z7aqVg(\95s]u$ru[DBNAA1oH>29G8&8&S-Rf5JKEY9R-d^mk74#ql\/,iIK["J5(T+85)+@?j?rq%ARJ%-O1k/]Z)"u)5Q:_e4RqJ;*dHTD#mn_ZKIg73+bYP1"3?JS%o:XAZ@f$`_i<4-Ls[FYoGRbi02;(lS#@&7(,$GGGm7q[Veqi6Tls5V_j`RhgS*dR<"Z)bJZ*dm`[d;aDJ4>D]$MPl&,XXM%/'FRr[&kf\R'arS6'J$ZZ(Z.cb?LAP*/Z(E_"Uu,u?/eh590E77#=N\+-#ogJ=5mKD)0'cs:W2Z9MaaZ^MPuXNc$CrgW/.f8QtWQ"7SV+!2c&otm@XFV)=d&L0q=,i4+"E72Y3ZX^F5OZ'He_PH,-.#[Y,qnI&X0$-uN*ns4MrLhBDnQ'N_$\B?99(q1rU54OV-6GICDh+@Ios?Aj&,@AG@lYD?M];!nu'fkmlp8OnR"'n(Jk(tkMdsuA+F+m8C!Es:5W\UIn;d"iig:W1M=Zgs*e&Il^`N`2/Cd"%mP;7Y^L6pANieiQ4ZcU0,0[*'RdNdW)b)sd!nZh=KtbOpqa^6LUOLX-"hh>[W66Hg<-ggCFe";A)l:c[?YMXf2f&V`fFo9Y<&hg>[+bIEc'plb-fdP\@-Epjk@kbQ#!Gjj4`e!Nbb];C9+0=58K%KD\Hs7#Q%/gfr,4;:gLSU?1Je7Qhj)n+7nP(Ij>S%CY,['ldr6S4*PKQ#7g):CY,[#q[`$/Q#]X(iqGC3@W3G$0>IFZGlAN*Lu87#Ab!s1Seo.dmcWT+(S;B=jZ2W:J'L3kps4qMK6$Foo9S%aOZX7A?>uXW!E$mQg>;p1g;*;]IptSlksE>GCH9;:4"-7o[Wd7Jk;422YfI)]ahS];9mV+8Y;75sFHbS.X;E.ScKN&9I$Z'X.H!GG87oMSW=f7#dR'p4uiMj:gON\(rC^s5ac#eRRJM0A^lAf_X@[MdiYiKL)g*&6\OYk]\V-;ge678&WH_Sfute_dh]6?[l92GiaDE`q/(#-^k2n\Zk%Vf*pVM:_ap.DAIWtr79Wk'XukDS+u*KIkTI=mG5H^TL!H"18_j0MgL>'4>pS+Zo"p;<$S'KM(&ZMtg?6D=7E;M5%\X_S[@$^N/J'GA*#EC6kJW)WI:>uJ;9W7U;68WY:=PGJ1-lJ/^?e.j@H/+XJ(7RSHdu`5I,du,Apqno2*8`d:H]q;NL"68C8+SKM/p-Tm^`?`Z#[lNZ"h;L':!s;\GNEj`2_?\`Nhq)MU,>*&PJF>-G$gMMHTD_.:2tfQUJMa&X@A^Q7Q>crq5F2`JZtYDt32Sh\8;DnI>$@J))a6Hi7f$o\^NT08\h3f*'qMi,U''4M5(p*Fer^pM(W^Y>7;3J.#PPd6FL#-gimG^2`*YjWl;SH3h_kOBhC7n]E:H\/1&_)]4VpN%u%-.hKME/JZ5#nc'aiui5P.T1Z&l7IIOE7B]d?Ef'JeZ1HuKoIdjLbs+>O6]%&Ih1_D)Hl)e$[_-*7n5oX^#)@[W66Hg1kG/>Ih1_D<9Ko[FGEB9\3%fi!<Zpi^>IdOgnb=n"B)9]hUL7LX.^"fi'<(>+\?V\4?!TN)^)NKVBV*YHS^/JLhnIj,X]RQlCLF$CF'h+%TTj$.mj.CO+s00Ydg9?`ke;p:[,OdPt7qdTQkO$u($&SS5Gr13IL[4:s(lC]&OAst3:[iAm=t(C((<)\.7U4"T'k(2WKDD#s>Nca&6C0*T):>DUM>i0;XWdsaa2Rl.!>-C/+gToYj^T7K5kbc9MDF0bImZm`?q)1^i`9%%M,T%L0r.c:51;++Krc[BW+AAjHq\?Y^I7]!3DhC&LeH*S3LAn5O64SRBshe+3kVAO7!T".#S^$:iBl5:ofFAT?J)BQ[C"6Rm/uHk!t"jY92#:=#@h#BEUc?,TMLQZ!t[M0l-c)0k^K`@eT/bio=/L`!W``3c4!s+6Hrng%'um'bLTe0hP*&l)S1&j']=3Vk)qTlTCKHBNX-SWCb86!M9,EOpnU`bFWqM8l.Z(*m'>825LfI(aMtr9sM@\l&&@:N>HouJIfWoe9#_SY7jPcjWXZB,i-:BTTLtXLgOpQf0QD]Ih1_D<9Ko[FHP3*+)uV>Ih1_D<9Ko[?YO.;/gC6g<-ggCFe";Y,s%]jnS-#g+$B4^%e*_>B(o9XS.Ks/LOYElBSH,L31?fD20LRp5X#W>Lf_k_.K?->;<_L"c1.#?7q$<,Tf^_&'\h+"N^kZ*Yi2MA^UM#lEDE+C[bqt&cK,=BO(A/n1^AN)Og8QBiK-t87:&&^na0E@]sI""VD3g&&W>i)?Ic45EdJOi0VS6)#q^U@^#"K.l=#q+AL?4hZ'g2@>52*3C.,O3'LUe%F(32#C26&C?7Y,MTUN"QNaWsbDF?#pNCVp51/>BX<;2GNJqP#gH#(dq8Q5b%+>f_0o`+W-mGbd$4c=)1Tsi?M>GT),-H91J!d0;&Bu=N#(ikRe4QH4l&&'0YDJAMr-F_H]`2\7GqflK0O;&[JdAB%&N'oidEDuEL\!UP/"]bS6G6P6I'C:*oEmE"9od@RdAU$`5`cZXopC%BK>o95,:WuUIJ$*U_*$UM1F1;%_*:no)&*_C/#:"(KIH.THi?U.WXhgA__e.$BWi5of")Ss`F'oDW&)mkIj6.&r)kCKQ[qLa[`rPh+9+Qt.!F/B>BYFs;o:nt.s-5]-JQk@SH78-6V!AcWT-BhG308ZW6N_/C&7P,iEj:r,2#uX7)qbFT#96s+@]+,@bSjk)jQe$;aD8,;BrZOeXU:pm[I9ud:hA.QdXR3YXb9Q!WBljAp+WpT!1WK)6K'9at+`*o]D&>Q5Gac&jT$EgL9>Ih1_D<9Ko[?YMXf2f&V>[+bIEc'?ELhj'5inDP_Q"qo%Ih1_D<9Ko[?YMXf2h9n\@.hWY,tU0eLt;+Kr@LQd;s]-aRpR6krg6]]uNREn*#66q;)F>KB]Q4Q\NFg'D(h&=*lu"L0j"-$s,niHr/l[LIA<>X%U1qn0FAt&_R:J`EjF9l1W>'o^j+7g$B<5krg?tH<>>5sdrt-r59o')j_8Oti9/UnW*+G@[c\t:,`IqYp[!r\*\i4'OX$(%p$nYmt&XQ*a(f]7!g28QE&CT@d$g<+CTa0E._Ec#rAgh="1[FKb5N(jf6ClgA2h+Jr@MN*1I'absm_/%F+Hg38Mq54LZn:`&f',-9s9g8!Xs-'"p?mh)g@nN=((aaC@(iB5/dFO>K@B%9d6T#?ONSKkYMDq?q9)3A0B%:@q@/`j)GemW>mCbLqM\aSSM\jYP*DVtPWhgcQe32W?g2S+q98..3f2c73CFe";?QNHV9bQ&YY,tr53KE,n!NrP0>C@*dX^#(YH#RUX8R,K1[W66H30#cu\@.j-[V?ns9$UXpjd><$egY4,X?Zf+V3LE`m9fgpNMI:(7_nNsnqh*M@>hYC[$@cbp+>UK?iKikq"a6V^Cc`?7\D81SM9G.E?el)&SnF^,qI95)2pS";OfksFAb)HWaD85CkrB\hMR2b^E.IY<(!0>;&:KAEO$mf^"),lajp_m[)sR@pPSWZQAP3Gq?;m?I;2#@HUGfMAOnkb?5AG_rE/\N8n,Ae\`5ZpQO;>FY-#DTf2f&VDG4;>9g,Y]>[+bIEZE,f4Kbek>CA6/X^#)dR(0SnH['p'>OC7S;.P"`MuV;uWrlgZHi#iVhNNc_5bk`J`&+/](DXYb$VaO,=m.=uiI.1!s$u51/8dM1J\Q>0YF!oX?#q5T&^gMj1-.NF2mJgfD;&dga.`bkC)!85+C%a(eA!]c_PE`%`c/Wub80UCiAtDoe:TCt<*tk8Q:`FO=pPE?o_=8%R_?cBegg>6-@X[[/fCFe";NoN)4_mPbFX"V>tQ#!E>'\?AaLMNqfS)`5F[?]c3cGX[=Q)^s8q8.3):Q)!M[VT,"HFrm/lhbbsA$1,WK6'9t9*qXZ&_6Fsi$m*9@5O34-D(iV@DB'bocc-fj7gOIs7h@ol]&Bl5MuC:GjG%S`P::-]D2-dYDN64-e<239K`*@rt4.[n[*OO`Xg$U1S,9kIeO.G/s\m>k!TdC7=E5f_pH2MAlU[_P-E5jU:^cLS7jc0U@%HC.(3tr.lM>'-oPp,/2lkJ,<##H0=L=4/G:.;/Y7=OLS>j`M4#I",OYH[2oU"?lQPfZ'9A"5T)#Yddjr0K;]fga2J/27kJq3l8DN+$#j^%2>R;l_6"GugONFV:]dd2o.3UA06g9A7"5HSSVq@G87IXL]*-nkl83G6-KRK@pP\qY(`?lXBKn:h>7HlXA4D!2&\:k>?Pd:/O("!AGU-C+8EombdS>JDmZ6dl7PQ_b0+jK*GPOc5C"C&-C=:en$/(Uh++p^_3#L6("$/>HRLm7nEhQTkDilnk-,Ll%EKOjF;[@"0BQ7SCP)F7D/QPIbb*9TNif2f&V>[+bI9#n?)CFe";Y,r\aELcRWg<-ggCFe";l+"0BD<9Ko[?]c3N\__]>>8.&os[PFO0RG6i3d(sg?Qbq4ebp>&Zqb_d4hr.Tgu>>XV?*cgZJK]=]fP6d)-BP:##E!_d*FCW3esf4t&%R^EDBYr@amBm1UGID%RjAgFee0m1Yu`kJXBkh;Z*_)aqBr'NSEI2?H1V:@neNrqjDYX:Mq'*tYh`:6^[MU7F8Pl_ZQ!h0GWLfuq"Hr/Jb8dd:2BH:M+SgX@Htrfa6J4j8^Xk'ej"5ujRhBLTO3'!>fM`DHE.orEcE8j)bQ.QP=Dn%J=Ii)[0j(6r@$5^&\8#XqS7`?\6M*,Gn(pmgl2b$!-KJgT,E.9C9GS?R?Dg3%/7+kT=Ad"4kr+N2n=PF-aa#+.4rEe$l2MRKgrJi)RUT-2D;"1pucdj8hlEEt;?>V'599:Tf%K!MEIKR\C[#"_C\,).CJrc(Q&cpW0&A,/otW_Y0rDTdT[]@1-o\c2#7F6NK<.eQ-ca1"RXd='GDh?P$*4Op1eQBMhd"^b&c9ME#s_?Z`qMJ7KcJS\f[2`LhT1)F6hds$jtI*9TtJCFe";Y,tr5NAoKp>Ih1_D<9KoE?*":)qS,nX^#)@[Mj(g\[HNqjk@kbQ/aia1H)D<-EF92c$;f!fXjRWhnC%.>Hrfl'u'L@S&DD]+,WrV-Z6KVB!M3=je?#%Msl.6L:I8tHc:6:ec"BS7',(t/%-K,`9sdqhI8kEpCE.*hYO"Gf.pgkk3ZWoqC]&?GXM*l-cFi@`0MgmPSI%IL'('"1>#(]VFiQnIfAu#6s(mq#9UH_giiR3U0,PFK'g;oI9=/YVuIG)h1)VQj3>>q]C*7/4SHH+ik(8"8,V;e-cA8#'[1'bRM?F#1P.ZC[A$d6CnY683]KqP#PRQsX-PCO]j6C^VWXnVQEoMVPtT&eSQc6/AN&:+`t+#DS(EXMSD!hD?+ip.k8dbc#fOfqc^'JU[TbH0]8dpDqfZlk[$8fnd3Zi9X0X/lU(LACM8=qfp)XrL:6Hdc0AChIi&Y%6jls;JCK:^%A]r(N!frHJj['b+`&LsnN1m?X>;`[8cZXlr\U[+bIEc'pll3hQJjk@kbQ"qnjE?&U2\@.j-[L0#t#oSlr.IV&fR+eS#S4gMK=M/%E\F$`.M*M%%'esY+/?rmY-_aKjL`%ui'kGB7UfLGe0\YgNmt_.:]>U`J26lgV9,u,67+<%bs*WiAd0R'fh59RKiJ-B%GAfju:7`+(o7LMsTfu>SKu.T*Al'(84T:_Xop/h#OG"6N2m*fYHhp7l^3f;`++ksdpcr-OgpU'&W=WME">[?nn9eU;&V1;IO:EasVpLANZI:1iK!LJqL\C0LB28+-RaZ$$"PTm=k^Lp%E2TqoWg)rboibCd)/P,FAgG`(`E]mFoM[-+io5[@iq04!5n>"uH9_o27tPoXX\]Z6/ac's,*VOH*J_]1Qp5BJqUJ4BDm9f?gF:FVPnAdd3kNoN*__6oPD/([h)X\s.Ujk@kbQ"qnjE?&Ur\@-Epjk@kb<@Y/R>[+bIEc'ntNoQ'+f2e*cCS[7dScO;If*MIP&.R/*6FLhJ.f0ojsgJlZ*Bc'7)/tE_nDR5``d=(qSLr-H*j%;LOp";Qr93K(G6k/PCg_QB/F9*=p%UK0nN!sd\DK0-Y0(9(7IqiZ3B9%_ccT=(f(4;jHVi&#pU(QJ)kom#]$qGY*%^3k/@-@:qX[$*a)3M`0Vc;jn*6$pU*(AA3W]^cIEHiYY,GLhVcrN\"`$6kinC]S5d%elc"$]_0iiq84E_[b%85h)3#pPS9,\X/#T$R*N(INdN>WdL.OO$1u.X:QNn*:`t3A4WA3KE-)'s=ZD>Ih1_D3]uo/([h)X^#'jNoN+Z_R5YE/([h)X\s.Ujk@kbQ"qnjE?&Ur\@.j-[bA!'[HKWb:L)ekb9r7:L=MLZ(ZduEYVM:j.@YL`e.\plHLRUu`5bM/M>:otMpHS0`NGt)d?fjg`uD4?Ya,lnD-A6Wrm`OY\_k(DIf7EYin<5&/tW(0T0si0'VfBCU>Ye`mGaoS=89"F&B'61?8RG#%F]K+:_HtkXVJI.*Z"Xb,LKd+6m6<&W-M:238#!1q=,,m*qkHX>LnY-$Q"U.CKHDlHa\gGmR(Gsa"!rKfV0K5;"W#2+DbM_4]h,&[ncQ#!m_O/Gi##:)l:<44XBp]HFZhE!Z2(H"G@;sM)9$d;(hR.I0t6$*6N&`T"lqN/062/WKSpMrY]!LCM7X+`F@"WOWg^N4%PF*PS%S2Y)m]ZG?gfC:A'ADD:RU,SD\C5LM@s2kQ2eqHZFh\gY^j`Ejf8(UJ_B@=j[Y8_J6-[I`Gr.7gh>d5P&cecMm)pa)SQ_>OGai#b)@]TZP_^%/$S)AJ(/I@d1a4Js3"Z\OCKXa8+0Bg<-hR0WqN_>E+>P/([h)X^#'jNoN+Z_R5YEX'o7;\[ECaf2f&V>[+bIEZE,>`eA3/nS,&.RMYAYAXF5*Tmcel/A?:=9Vn+1Tt[!m&Qd)qdb,mIMS8".^NrXk>/*sOh=R,fZ>oP>XC&;-XB>=UYT)i+F2I#9r5B)QC1?ptNT0`,^#I\\4lY[V(iFI:hC"=*ML#&R:C'otl3Y2j)$!_Q/^k?Y;(\X[Q3G<#_CHSfnWQ\gggEgS'bd6@bR.C+d7TJUJqiAf0lpTiB\(,DuKEQtn5(ipYi\WZ@]lg[X0#P;`+P)k[+45hjNC%Jf-NELKC#o,[Q%i>EZc&AjqIfP&R!T>`j%c0;:UAmbS39gq?c]a%j)TPq9f3JY5Iq4:PbW-r<$KS'4'M!qL9C)NCC0N&sYeM-t\Ks;Vr'6KlZ=S#R]D)VCD3[(A:A7qk+c3$fZ9/.]0mn@mT3.R:H+^20W<,?2gh-:+5`S'%>^38^M['Y?8JKSu>_s1"/A8*QN064Lhh?D06T'[W64BXgkg.H[+bI\dD\H\[Ir->['ocY,tr5\[HMua-f&mXfhN57QRA@>UJFH0J:`#49TQHg4\QH^*'H"tmhfn(`$\#g6>WE\`D^/dpS)o&WEQ>PrSM-AlJ#SK%s=s-iuRO+iE+]C_.Q4_@a/#I[+4-&?KWGl_9g1oWW[]6sJRSI*l9g,Y]>[%Nd:[W3A.\LLigV/!&tSpsf1PP:i"K>!S434$A+'Odh6[.RL^)ZdG3Pjs0NI*@d$f74/q'U?Ec\mRk,82fNU+&5R*YRAIH/XOIG?DKQE.ijfEH3V.fBS6OTjfNm-/=s'C!lF/C%'bp)D[!Z`1_UeXN*o_$'Ajp/kPhD&DNm2;,GARTWCI@TMP:jJA#?f^EAd6#]p]P?U/B*i)qN>$WCKW7_e(J>P;KL(e9Af(eP+.j,Mkq5]V_1t\SDW5b4dhEiYnmm=&gu5Fmo"ro9]Q?]#IHk7ur]'iAFlfVC2H2X6CS\cd[65=V]tD_*4E=[Q?=#Snfk.<`]r<.Db0#b-dLMX)!K+X!t0WCFe";@hDf![FNe45jB7Hm2\>NY-"i;Y,tr5$.i5B_<0Io[?YO.CPQ]+.BTpl/([g3&Qdhse^Xmil5DVK*BcHdXf`2;XhI]eMXsl.YUlMP3EhBS6Cf3L6I6GJs,-o)8H%J];KU>Rd^3IM-:g[eQLkH'hTrE(dB>UnrHC8rZjU=0CUmM!%!]7&nhCI6sp&JL@RfUB/:h*]`CAu-hq`t?eeAAWUdB$$Z>m/7?\a*f:d(lQ;1F_d5lm?3`PI(QWe`>H.k?+/>t&GHc,4G^Y$k>U7DCKJA]DdZX&?tNP3Rj^RO9;b-fcaKU0Tb[(L/d'C0iWk5][D0>5cD)H<<>GZJ=CTC@!j$E,@JW"3n7(eSD4YOqXsD;(Q#JZ046S>@`$jMWKcZLl5nM@`?c@U:4pQi2P6W4r)UGT=E%+>:O`O.**\K6r;-aH<;!l9'1V&6qVT%&k-3XQmSh?`\Hj'k.*n9A'Y$&Yt_gmT'[c1N(n]=)Vh[SoZm;g.^_M+0(oI3fKiNM1h4;\.%q*:inZD/U\=CZVi*Jh*ZaO#V5hV^U]=`K%(d7D!#NoI,oB]SELn[(Yug;L]2`t&3M.u\lCsq"E%b;HmY*?l;6Q!&$qfO,7irL:O6d\=?&-ADSXW$L4Z+ZDcAJ,D_)kI[Df?Ldn-ZP<9RK78^g_q<+FA$U1+3G4+!6W5bFbgI*4B.ukW5+@m0"A\f)h^,DQu(c\6'M'R=;XCmB;!R`Bp1VE+#Tr[WT:)kISY#?!@FQlfc15R'Zr<`jUK;UhMnQW@H0gktcaV.cm1n5.buU&Z&s/3-8iC(p.[q&bP!01G,ABPf[@p1;TL-(`Ih?gj-p\Jm1_Tm1LAh/ecHX]6:7lm:mp<=BNh*p*?/-XCLfpQ@QD;NiUQ`$DO;H,ABVYd<0QGfWoLVW0T3u^u"H&dsFd\Frq:(c?9i_N9Y(LJ$Pg%7==Hen`tDV,rT[H/_F?Fh7Q3Rq>GZKM@S8"7Zap\DcaZDR$tsU5eG`'0nrYm8G8cD2lL&4s?7Q-FR_q-+]-)'tMOcZ#eY\;(ZEKL[3s)dk3IgTI!Ag.[s:/a#7bp5\!k\Ci%t<7b#R`Z$4e8d=(ASaS$Yjm@9AtNNt93DM>L"BWIr&OY2gs&34]KQe7P(oY&pqdARgK]i#R'ctXci(#dlh[?YMXf2f&V>[+bIEc'plb-dLM/([h)X^#)@[W66Hg<-ggCFe";Y,tr5\[HNqjk@kbQ#!E>?X(59iq"@q('K80`KJoKle!8@m5c@j/tF@B?TKW">Oe]Vm5ZT+NpdWs="P-[]N(uQ)KW(Yo,iH,g*8QPJ:&g'.qh\Y?5:_`,1&`R5q\E1I0+srn(bMb;_&U$Y?lHKI.6RY@[+X/:;3)i&Pt&jKe3@`\K4%bCqIcmirmWJ5GPpZCU]23ZT\rD(4@[2#!!2N"$rWF'ia`JV9Womd/L%pI"`d6Zd!IVl=GRc9^hG`o9OXpB0R0m6WmB[>NAI\,Xu1=<1Y_X$/C+;m^l8*HB&>MrU1EW(VfdroA]^us$KTu<@($p#%J(^$<"TubO0tB4#p+R"Nbj/I9;SCq3"MWFl'BGK?.]:"GuXlDP7gDNLEBUN$nHH6&(Y67bB=Ak;-T?ng3:fDnIFnl[a.'#N_-4V*CRgV[qLI)g;![\Ih1_D<9Ko[?YMXf2f&V>[+bI]&C'I04/s1=D\dRH:0"!#sPC25I+?E,98eS7gugm@J:]L@A]od3g]En!i=STFc89ZL$Wef5PD^4ohn)LL\C0L]j6Bsdia/;bn[r,CAX7$#QW<*\l+ASQ-$gLE?*K,0tQ'Ggf#V(8>Nf3m+=kF-sqfa*08F5*E7A'kr+4r1/pOi?d$EH"'*J9K[BY071)mh%Y$G_P-D"/l^s.8V0fJp*ZLEJ=hMUKOd]$nq2G+d7DPRPr?IGKY]rn4c-S)@iCp+:&Ka6.:qJdE^!cM!&!\+5qsK"eHbrV`pL'T=%V!@`\'fsl4ehLEa`+\\):!)NfL7&\j@TH`dl%WqV87m+@Irnng5]*l5ZT^;k?eZdL4@6DB>f#X3I'OdP_1Y]2ZR`F5L7Yl?i1YS_HCX,k.D=&S_u(1mQHd29GCLu);D?]k<@f5;>JYU'&aQq18FW,tLr`p'K1FigHDGRbW()&eYT7bn_l/CpnP(fcXt$NUU$Ln/FZJ$kNWsN(4s*.8@P:p=hu*[)@+L$JML#8BIA5PdBA`Hg_OT:T?]E*N(LU5V%`&ZecM*b>)`]hIFD,s6G/_1mh88HSZ]X*TJ>ub&c!j1p)'mclAnsW^.F4oA@.B)hOSs,lH^ns!p.)2ibIQ.3iGQpo^:MkYjCo]j6Br]jh_2Q!=_J@o=`R7E'#1c>iAWi'sf\Jk=W7`45n*Or[$oo7%q9b4OFLi?-S52p9^>`%]"r]q1RBP*FG:sZ0inm&.<+L9f0ut6r8k2j&@H)]Tm7_f2f&V>[+bIEc'plb-dLM/([h)X^#)@[W66Hg<-ggCFe";Y,tr5\[HNqjk@kbQ"qo%HQ677`8%Fit]fjD(Ik).?:_r-9'lje:(p:[NFfRs=;@qmk^O58^Jt1MjE95j3IS^0TZM'/&-JrGsPSX_n*!7Up#R4n[3.5MH2MEN.Td1VK%tf^@F?oUR1+*qWK/U.uP1g(R0'sD-mrUor4j<+KQ4=WH\C@[NOc1m^lQI^a"X/$hAT:R@ad)$*@efk0KMCCacE<1!kq0,,ZFrl"s]/'RkS_K$s+uk8OJXn(YHQd&0,*l-mM\KirNs]\1.3.n]9r4YH)c9,cr#]fp^s8>EK&))mZ54Zc^Ju??Qorean@+VT[J,GP8ZPIHSn:Pq=*CR8diQ3\;3_5\%W@GfLC=j9peNa&*BLb^iXf06h5Pg2/oXjS+9CUHuM)!AKqVNY'($fg3;7uYk4+aBu^[GLF]ZM.Z1=0^$%2/!*c(!8lRU[`1^\mngJh+3mI$h=OFk9oCMJ,Ps%JIPQ#n+qi;'3=L\4om5G2/J+K7M#jT'4qdr,4gd2HC`N5_[+bIEc'plb-dLM/([h)X^#)@[W66Hg<-ggCFe";Y,tr5\[HNqjk@kbQ"qo%Z8mBQ.qlttB2:4Y8&nfL]()JTn(BXblJh*`oT+pJ6SJC<@S.h^/FSVZ@Gj0fn-U*#TOSIhS$_j]f\DYr[P:+<%`6Oo8+%&LhcDOI1&j1=,id#P3r)n$Rj14r!dgE7nV9>4E:jW=2E^$HQAR2fj2MQPb8M/46?Fe,ld[W9W-n\cpk7u9LWV.&Z?+MH0Sin;h6N\uI\fg3/lYq0*/#U^`&f7_#J!fj;eOCG(-Kl@>bOu/86=dRr'M(`S,r[h;.cu;V#O;P`-;4ToGQ\4u^jJBr>7A;4="S2(>9e\g73`_JinU0h^/Met*'`1.d3',`-B"^aR#pcmGUDmO!pad-RjaT)Fg)Y[n7R%L<]>3HIgF[=HP>cSfBLl^1G2n_P=#Z(l+t[iM'!;kC;4MH8Bf-YSo#CuY.r9\_top57F=BjBipd\"GplY5)[anRoH+f6:O(G6%Q9BXW.']_Va[_(;-P>ic<#/F+'"gM?m31kB/S,':`]AlX(AY;mTf!rX)mE%.U9J;G^B-pE^_^r@HT!=J?%h/(<]?8c'aZ>5:3^We'#?olMAm.r6!mJMR[+bIEc'plb-dLM/([h)X^#)@[W66Hg<-ggCFe";Y,tr5\[HNqjk@kbQ"qo%M]).lD5;h'g\rEq"T+j.L==(rU]D8`7GX&'XAnkF/&V4niPe'8%QaY9o7\HbKV56n5!@_N!Z;4CMmF7SPO&arI-IUS%,4R,86tcaA_77]4o3D#YqM30TSZ:/`Ujua]'UbnL0D<:;Tc$;E8Zuo,8N2:c/W[u,EkDZ6^SuS[CZ<``"9'ZJpqccaN5lL\@%91PM]:898T8fu2p=:3es5^g['qHQ"Hn9D08Rt[FHSTA0k1XS"$sd(CEc(JpZZUG.eS2I5m8GI![r+d*^?eeYfn#6kCFe";Y,s&58i+pk86`e&d^(,d>=ChL]`##m"N'>^gM[mudL'_,5sA-tAjY4/%q+tEaYThjMiP%Ek7b#/*D)2?G^duk[PP1"M:!-8fpgWO`)8AGT,@CnpqF[i-Ur=Oq"DYIB747E,"(oEB:_/G(_%b\Wl2=l[OX'FPD5u+9[3kVU[hB:.m-SgD,j.i.l#2@V:9Ho@b`/?*)6sP-:V,pd.Z_h`9a3Y8N`SpZsba<0cLa)lu6EW37ncgYUO?R@MD+8]U'Ill,jHlnJ#S0Q82hch%YDND)GuU:T[7u5N[+bIg?[I-io\s0O)(e)F)C$mb-fbW0\9?(B!/7@>Ih3%ES"6X?!D_@,[=PrRVOG*<[5hreRd?5_rf[q[?YMXm+Q/(W.u\hp:oGu2]6u;U&QKlC*BI;'7AVa6J[9"dFcHGr!(/3e">8X@OW2Cn(#>pM1pd`.$6cgou&8CB_98T2s`k7EhP7S[T'8\/i^9FrB/Y-*h-=Qis%8Wgbc>7[+bIP.A#AD)IWATkg_#Y,tr5\[HNq2/Esfjk;2aARgma2u_j0YDZTu]D8=n`/2-CU,[5VUp+9T4cRRI/*!T>,FA@i9g_,:?qQ.^C-0O>A$]^D!fZmlch_59B=mf2;c<0pB!\hKh(759f'HeOHT%qGCd-)@G'^VeT_R5:h)j%KgpmIZf:CS.6OYGRr0>T%N0k,nlBt2#Q($69hYi;+lm1gZil3J=e[u;"NG1r;m;*,`O@;];<17$%;1G!]1[5enUCh<"rQ>X#(i!ik)2.;ip2FLKPnT^#hfNuSE4196YQnhg,R!./,BNANp%.,VV3na!qH0oE8PdTGD0bg[Z>O8#k>*s]=-mfFl8aL>Mai[("L#+N;W['L(>9jCl[+bIEc'plb-fc"#-r$FWA4g'D0:9N[FJj?&ZLYE6BnMlD3/mGaR4>f.*($"MAn$VsT-?4d`Maj4FiCE&a]K7GR0=`MX!/>5b.nehZ7DL]="![<&B^7$X.D0ETj,6cQ&uGoXdXSd_$p;Q=.9U"EHnI`A^CV3FEoekt"#*UMg0jr_p8cQ;#Me+2eB;HgmZ)NQgr>tQ$$$2,;eM5T-26#\K83";Yuf(2QXeuK`&j!b$BSO-dd+uTj/bUO_bcSr5A7>>U[8PC&7Y@G%8TmagZD=aOa6q/TL_\OM#SPlPJLcBqA!rmuh;$^#GLg8IY>3&QVbFYS(pcTLcA+=1m!M?*Ed3S^$r:2jfVe(fR.AuI9NH=+Z60!WNO+aTf5@W#XiKd=Fj:h"fln6cermsf"0E)ZMX]XA8%NM#j*:`j&r1_L.PgnN%AKtV8li#s0ir>NWk[C%NM%JiE`S-rXbt!'Q#!G"2:kmn9dXN)?u8d2/KFt>[+bI\nZ;'2.]7NY-"jf\[G+K1-)tTl87*nQX!b*[PI"!lB5q`@<6;Ig<-hRLM<"mU/?nZC*c`\PnPXA;9OmP^36Qm(,&i:/gUPJ@2BT[\_.uJ[s!gLllipV[ZEilbVg/DoC=:*`E`mOdLWCMO(Oah._g)T-Zs9>/A4M,'Fj1ZQG2O6WP'o_=kf<9VF"J<"+gb-lX&#QWL886"Kb)c\Frb$,@j>MK6C[OOCXu+i!3q?$Ka9&P.@h?56FiAemj2YH(q4F"cd"5(p\*FI#9,\H42/*oHiI!CMQ14aBp`FILP+=Wl'JQqj7,`a`eOG6t-\;`O[.FSH/A&U>:GeA>Ih1_D)IWi[W66Hg<+;*?!FkJ)Cr1">Ih1_D<9Jddb!"Z`ZYEd&0Q!p3X@D:_gI@*2$bA0ConH!UQW&SqMLXVO`)__Y+IH&%8s7::\6>II3oTIP.4LftZ^jfVQs1!FmCPJJ:E7]MGaqZl=$,Vn]B?A6QlJplNqk<65mP\TjR\k04BW4+rG=]D^9;F.kDR/];f?JC5l',tP*JH&DEc<_rq:SC5el]Rd=B7bc$td$X3E41_=o>FcFeTHH.q?7:j$gEa??D%fDMDAC2&DAEWCr`b&@?;W07KPN*i<`GfB+iWH1"rIi1bATKN_4#G2:A]4[?W-0]#7Jr`fA-C"h)dB>n]6)&g;W?5j4EKEtB,:Z^@,)'b5Z.oHQiB%7udasL`VTbY$,,duN')S70%YO]c&H%TTgKFJCOELn?rgBu_OH][WPIGB"^PQrIFd0e0'fd4bcLI;2"JG#V$UMi`(h,WS*\I-:bb&rOeFpD7GI2A4LVlqO7.a5h1A*QFP36[AcXmG%_V^<+5>nFPUMm,[E9Gb.;,Ym%&g)2XlT9O*C)3WOdQGqlPVS+jY6L>NbLX>E[-8@\XSW][0?A_l(YUCO5G%64n#W\3`ijUa"r"VN`Nj9O)4cN"$Dk_?op`g]_3CZ=/C=1PR?B"%t4uRXFOWJ`10n#6Tou?(rkX@HcqY]GKkdrNWK3U0X\*%CU^1.4B+hgMfT>#9o6?4Ofe\@2+PWg,%C6.rai_mnN*KSc>r\pu`Fssr0'n*W'\hO[,BQBMWsc)45&[U+>[+bIR[CO0nHBNSEhXHEML)BMZG$3GpTCCG[l5!a4agebbkK*&J,6g&qPd90LEC%p-J&r/(l1X-(R'7&SI`/1$bbPhpO$8jR6=3uYhI7FcPWA$\H%A^h2h*Xc7'W?%"(.#:d]Sc^a9P9VmM[?"IkTj(SZ)!\%>90H!BU,1WJdN!BQ7kS:'[3.*V)mlj?BL'S56d2V;!],B#"Q>$m\bPuK3qP3dL0a!jHY8F3'*]6tl9`\JE8+4:s0'=/VpHI+RsI_46YPtf5?#Z7rDL!lJKM:jn?m1Tr90h,8/tcXY-8F,(u!N(8VY9r7F]_)p>#mii?4g'FW8uO%qCA'M,i:_)^OLN2DH-i/E0XQ"qhe//o:%3fpH!F"]jH`$Bpi$82HhTJ@DKd1mVtTlQl0E#T;>@JM[W3=O4UfEc'plC-:Y4lB5q`cPPm#b-fcUNK@qVEJCE-/([fHk'7:[6e>A0k1[tceJB-hGAT3OUJTQCY-#^tr4BCXD<9K/>HY)5>KL,S?$'rVq9!ct[FI^tI.7uI2oTJmrQKH`0&6HbLjIAJEgOn(jUg[212^_[@2B\tBHU!aQ?&;T0Am:,q`abp+d2_cp=6L>6EB>/m?.b$;@E?Z)'t9WKN30f',^[OdHkn$J($cWQZ+euCS6_=!h$?AP0m5"SF9E:hZ)Ot^K57rK`TS#c0s+QH(hp&^D5_N0JAd4*:)[)9b!^n["@kSaQ#\>fZdT)Q^kO8oYk&\LElELRS2?19gNI@WbXt!E,cdQ^?_^7^4nT\sg)aIotj[P']:2%Z80IZ9u.VgQ\D3ntdak*A/(7rrnW9OdmVM6^r,18GY.P2R.>m0gNYdm.+ulAmH[N]OW:[BDr7nCs&/EQHl:],'ncFDIobU)k#e`m5D,f2h-*TrtM&>E,"408saA"ZEV;bI,m!:*?fW/([fWf2gog3lSL,Vn'6VD'a7?jkB!7X?@r@[[O9pW,!p8<[/s;$Y(,SJPBt(Ec!\6'1hKDb-dMY[FI6r:2t.$Bs+RC>KL,S\[K'fCX3_o@Y"e@^rJkB&P1]q`,TO1eK>e5;[>R-&=+&'.:Rl/XH:L;d!N-n:?d*;s+5/[Y\I;D)jk3#?/kuM$A@i@G=KN7f>aG*,?rfpLHrqVr?g0.Z+c_\lggMo><+R[pjrJpZl4V@a*`LN_A/-g1GbOY\k*)W[4?$'PmWKD=CShON6i?^P+YlmT[.DT2r5%_(GQ%'9m'8b#*FZTCEVjOrBM9rcX6[+,ZF4D&'tg4+omkCfn#G*8/"k\@*=+.+GYiCTF^P)qS,]k1Zia>[+bIEc#@qF`$6ob-_uHg<-ggCFe";f@4&0?$:)Hg<-ggCTFKiWp8<\[?\tDQ"qo%<`3r!K$.+3/XB/m.BX.JWh*t&[quSL``[AfEe`TTa3PCG+>jB[R!QW8^,n*(Ckf'MR)S_!cH]?-rf'G!=n\QZOAh92K6h!d)Q!l`9\8h\qL-g27+2-;U)N(1+2L]Tu);9K)J7ZgSV8WA'a-9(@7\TP1i7@7a$JK'$%)n>aQ>Io*(*&niSF)b<5.nhR#HP9]bA&l::ddo+.,Dn:S^=m`Jk/PF`C+Q%p/[L50XcPng<-ggCTHumCTGX]XZg[+X^#(i#[5h\URI0ff2f&V7LX@MPdn/BD)G?E>[*2&Y-"k`.+GYiCFbenk,tgIc*c(jf2f&VN2(1kV`YH+be(<(D)GdigSMirQ#!G*>2e1M<-)o!ogYX=e5e7%63Q7%d>YY*<:(@jkKFW+V';qi?Lbd+4t^_FCr;!M,-"^4(_t#C[+.PDn,@tF`0O,eKlt9*e5g`2A.YS"A`ke[HBNM>nr4NDHu-dg%aCjoI`A^Cg%j=h$CL-Wr+!-78n'l1=_"JE@#TuF8B_QG9",mj[JAHl7Z)]J.'desLZsC7fQGXlG'.1+aGOTk!"533Kp;`u1(baq:;tl`gD/9h%NAU,i`)/U`O]lP;?!/Z#25&"F_9*6"2Gt+,*442Vq?9TB=Ehlm>$D[0B<*BA?Wu9-:@KC2@cq.%bC%P.F`g:R?h#nA\TKTSpW./_hY\X;taCq,\3;%6fQJ8!K+*;)b'*fbV"_F;u's;Vf(X_P^"Nfo&2I'%01_heGc1nopC/AYUM:gl@Ne%f2`P>Wo;[S[?YO.'Haop]&;:Wio\t[lA\,9>Ih0\1$N\s[FGH4Ih3=r9T3L[W64B_KE#`>[,Ih22KXUa=07GRK>$a&&QtdcUT?d=%K]+X_&,J]!O:aE!G10/?pYC2"W"8QQR#&2&W)aUF:S/9N$.i*[iQQK0M&dVk(t:)_$s9ARNae,1,t%O"D&Bal_SEWpfE?Csr#2]V46[%TK#G"Lpcl<\I*6M_k-Qgdh%4>?cb+aV)8kVan;uCJp8!_^Q7_>N[7.'QS0eqD$Eb"22gG%WK28sING`$(^Y"au1pYnka=Tu_q2Nq/jY_Aa:adI38jMMVG'g-*cgYf?eM-YmjN/B@!0E]sV\%7K:]L>68!ni.Lb%6HgU-:WD3!m_N!P\#Kl:.,q+P%T8X)b:Q'`Q0@1rUd\W+'R4@0W,1[b'kR(!T>cYRb9]09k)[*.:%4aAokE'N]EU6g>b_I/E7fVX<#Iu_>M1cggZ3"e>aOnMup0?9`+79,1o8'`Qg'dA$uVV]+pD%cji4e&D4)-1sjO'[+bIEc!ZGZT5Y+Ec'plb-fcRa_Ik`^$r*/KB"-_9B%%sI3tQca_]@^/rF]>R)imN`8%o0":),6;%OD,`IEWNZMQ&^,[%Ic!]sQ4K6Ert`oAuTm'OuiB'2On$JQcQ7MOE%`(a=f#q'XM`X;Aik^q9\'NYa]-gYTB@S6]uj;^",TlH(it5EmUVF6Fpl._IbGV_PigUo"B/r[8ddkiQ)1M@RF!9n2J71^Pg2djW?HE(iAcBm>7r/n]>_)+YWmrZN+=:I4$sXT/?F#PZ^Wnc_'rd:8;u!apUV4YVd39G^'CkU^'tB1RWrC9@N:(1[&Z2g=9@igGmmhj-Q2fUb_E(0jk@kbQ#!GjQtn5(<[6Bd`Q$BqY,s=e[W65MQtn5(<\i9-Y,t0HKH3diXi>(XXfgOIC@9g@R[S"Bf2a-O6H-snn#icF\[HNqQ'c>;f2aZY!hM,,c5E(c90L?^r]3S_5<@auRkCI7aQrB7#\sH8QrD_jm*]UoNKD==o?8B24@^6Rgu_)fq5a6n(oo-KT0AD%S37ni.:m8n',1]7P!U$/aT3Bdno+*5u:7>=D"F9Q>69Z83b?;I%6a^t\_T3!U5c"pSQKV6&g&k"eR-4L%DB;EF4qNTRGn0IPLWa'gB[;r_\;uqR(+ZfKB>1VF0P*(L.1NZQd$Qp5b7qd4>!!\$]Q52;MQe2'-Qd\o0r:AL7DIU*RJBc*b-dLM/([h^1"THm>[)WjmB3Qr>Ih22>\(FS]&_Sf[?WJu`O1tH/"(0'f2e*^<\M/UU'Q?7&VUr3Pg>2bHpNFn7SHW"5nH@S6ppfAKJ=.gOdq`)/Z&MJ=TSSr7DlB7GZUQLg.51j`,I8.2s+qimn9CUp8At[rBjsBCF)om(1JXhtmrZ2,AMg6QYf;*s)QN?l0.X":%7)(^C9PJfkjW5ct,0j4LRLfT$F6ZK&ZajR0s+Cr`t07rBVUP-'c04%l:d;PZia[qiI\X%4!fOfUSV^V,(Ge^u`>f@k"!7?2rh[$oZsZh\Ih>i]DKRK[WokgjBg9;C6.9$%!.2uhuL0K7XoU7W4aO6p'jBHMYi>-P_VVK=,&d<'bYS1>]s9h,th0[f2b8XoutY2]ldBsM_BVM-g6tgRo-(?gR/_41OJha41W/bG\dBE'f,0F_5[PD(KaDA7m[^mU(A%()J>FDV9LfQB;RBFr$CS"SbZ8X84BKa-YFDZ<2@9mD`&6h`DJ=G*^"Y_VOWh\C4^jG?:5eQc#ZPWk1A0DCuq9+$I1NSlrMMmqh;P`am&A`kZ5f`]cMITItD`UE;4&1Vi<=UOSe-_=V099O?f*1X%c$=sU%.)-VZXLfmB?Nn:ZrQk.jlOs%:k0sYK$7>r8`Joo(lLFF(`+3u3G6B<1H0362H^ThD`Vn;1H`=qALi^ZR+rt:oH-:heu2AJ%V$0lDr@^*`7DOD6*LH1BjVlTSqK653#fg<8uU0q57a:KW.&`R4>K=YB.jFi;f+:0gqoGcN>@VVVQjMb7+l;$;pbeu-CG*)qk88D%5$;YfC+:jZr7OB:p5#\q!%#8mJ;C7K=6OcnEKF0%aS;[MdBDob*YA4:jQi[t3RC@:Hd9?%GL1[GM/=[Gp9-]FDU6A@C2G>FDVS(0A^\AugiI/Bh-6AuiC"3&4^+XishrA@;/Z-$mj@C@pqaXsZ_Xisf^'j6p+2U#3?DfB6q10^0KWl]'7\hq8sT!u9SghAEq=1`P4Q1i#lmS^RDSI>1>-LChRDT\1ZdVR[Y.M2,KjGQAILmV0DJ@JgbajH4?0;tkqlnQ0/N1)lK/W_cW@5U'sZ'cjhGd!.Odh)^b`TjXn%5EBcAkgdCtGI1aON8.lHW.Rs^,Yo3",[)lB1A_#=O:K05j+m[.6:V&ra=Z\Rn]WE.h`&VC/'*c6ABO5LBJMef;/(XZ"F)Dc]]MFE'l7>eA3\AufcIJ_=f%lafqM>FDT[Ah12faD>Fr10`9]Zdkr+lKu_CQnC"JLMN70b&"J&.PP'9I9edhAh12faD>Fr$CS$?2.65)SqSUeKT)-q?=E9TR_]cerRTOLqqN-ZOBh'irpYNZMk`rMYfi_9gZVjcBG`6GFU;@rb\(PUQf%Vqo;@9nKaP()8A`-VC`ha0g$Jck/3WghiCT9P\U*Jj!.*JVAl%p4G>H;lY8GO\$eQ>DRakQHnGM?-oTtHis>I&=YWLU-'\l9pN"%h2)K%%_35uMD.Y>]WV-3r?=DhBW,^_o_0-TR4D)Q=)*di/Kt"1ifKo*N1R1=[%W5Qesuu5k,!,b4DcK8Hf@Pr_nJRgiF-'UX_/"2bdp?GX:'g_G6?REMY>b#3XN+qE7C>c#fulNBu-#jFgf[Q,MeRI1M//DQ.[WWAueY4Q.`/KFZ3Nq1L"-YR^1VhCh:%1>FDVYQ.]nokn7^=)QV(_Rq=1WLb71e`bF-Z4pO!E8?fCtu>90+r&:SZgMr>HkYD7W"<&=H9LL(>frVJbmAtJIu(;p)g,@$,.*k:s)n@cU4l^Ya*h544g+'p>D`5=DYXeDe@ig*4:]NbiaA=i!E##SjIWI'.`_>(1IT$9j>252KBq_>r`2j55nd%uC%jLg;5\O%(C=jiKSjM_m6=#@YQc3d4A9R=V]],f^uEp/.%n[a0,RQrn_@X(d:DLkd`6"&QD@,qe_;,f[]8&71LV?:2?^s"SSp>Hc!Y3_fC[(<%fYO`p,8aSh"]i/NpKYk(EUG$:ShU5eAEmR)TQKmm2B*fkkDD;L>JsoS^64S,(j6:T9\hQqld[aL)e067q^hP&BV`i]H4)*pTR@Hfe!R7XZGj]nGV$KkOe]7>$nl-V-'L's\)Xj_k$-3oVM-SH3CtY%WoY"l,o9^q+nsUf/oC9FXji#'ijkF5SVuM-KhMFZN:4,YuTNrOP8CL-2R7B6#@0oqrs+B9"V]"oFf>:%)9At>45.oTaLAUB"n4NFG\6HK#?4?S^9Aqh<0]D9%'ml`So/mQL.3r2HF3\"[YjPo,?s7/j=Q^cS(aV(#g`f[&:QZ]:dFQZ);kHA"]uggIUY@/u1>?(<3\?*;>p![-AuSK]bD=RHd*I.3N.(r$\+H0-"GqR=R);`o7(gJ_Y"1t]:b_SC]#&K<97*(l>5&t`8R?a6Oc$7lX#U]s*0UkTB8+mLQ:F_\?.9@24JOV\Zb/?DLHU)>6oumBb?/#pdicT,f?dR`bEQlGXU;c=^*nK4uW!/A4`S_U8;?rY^MBY@bY="sIXe79d3^@dDl&"5++s,>,_E-e!7B'",=V"j'F@ts@!7ZRs;k2O`Ch:&tOkK$4g$7tDd(8P\Ah14<[PfsHD4%GKR,Z=jAuh$Hb%t',T$:<2MG28qAufdL6__g$YhVYZ5/r1!C:AX)tAkeNrfT/;PC=Bm&9/qQUP7=EM+UPSji#K$!ei%DK(3sqB-X4M#rn]RFk79E1__tZI*"iGRIF-$L>=p%f7%(E,MqOj)p6Q5c;jnK(L0)+gTIuZB&oIe)?rA>,T>aMd,g/;+Ccr&fOAT!,h=mT$B\[0$>N:N(Tfu>kQ*re%)?)+01Hqj?q-\>&rWs1#S/_lF+qS%]95`]`um7ifiU2BRONhnoG0Z1l"[Ak65E8>?8))YWX0!j**fue,B[PD&m9XKQ-lE&\(K$78-/$mb/)Vf/:/P0!enfIpAh12f"h+9W2)g1iR`jZbm=Ekiqr'3ar,:O1(Y6GV*,:6F40OG>i?-nm5()k!E-M+C\C4V"\C2A+],^84NeCKFLVfRslF._k97s?kR(c*Z9?qf5?*/4*jC+ph`+m8eVfT?p8?cfR-jJR::DAaPnE(&gPIk^$&d^$UkYgt^+eI'a'E?%a/mBeW(^hiuLn([e;&U_VeR+3VW@6WOXXk!(oSIH06/>6*$s@8nja76&/0GEC7"!orZd@/(UoYL>h9&V:4W1']4..j%'LJ4d[2*SW1jU5q6j7jA7hZ%.4igoQH;otV[0NL&4.Md29MO#gLT.TI^8R^mUIaluKsZ.$5sSjZ$Uu-$/cF&-mM!+IL7EZ4Of8F7nQR!D'-uAmFc_K9'=1`6GBBKl@rdLmkUA`F=@eZH21`j0^MMgGC8!$)kS.k:A]h2/ndb\10^0KbZ;WWduN,(Ch:''0mdqFVGJE<(iHMrp&&R6(acF?SroMbLO$@T#GiAB]#d5lI$a4]BiK`98SaKamgH-B]D(UNgph7D_5&oS,GW2oCj'?$D)(C?C&2TL3V:3&>Jo1W]7k;[)QDgHoJB<_)acmNn>HD2SH9/dI3nbKU*ShHD"W9]hj_F37G21OARFQk20V`P:8fR&u65gdR(ZJk,?5ITEG/7Ci.^)bZQ9U?`4i!oC.1*<"kqfd_dam?3"hd>cjK?+=*i>X@7:SMf8-;a#E9Z9OF,R^I=3,t2S%$I*%t,^H%XKmdLWQ:?bZ7GKTnoVmk`F3Ik@.n;-Kg3P(qL/8/kheq8Yh+#[1-d$c`:aF[W(WAY.KBMGnY`*oCt;.A@\903+:O\+Po.uYM9DU.R1+OB6q7FUKn%7Fl,ou%iZp^N4lBL>5i[tlbr8u@\'?-+[M9h,lgTmf(o0=Q"V!Lr9n%=gqUC#Ke='5a[4E,eM]E1I[,kU$\KgMCH010`k]Ch:'/QFkgbdqiU(.O25Q>FDU:l??dI10^0K9$(m,]#`B;A[^D^R)B?aHnA@=O3[X.iKA%"-sRB=\6kGkiR\8[ANkI\^lurf]qde97lMRFEaE9,os[Qpc>RLG:4J`fcgfmKe'_X7kAgg!L%Yu^`T'[2DbL4ZJ4+BMmS9#T-o9\]'-d_gFeEHh;%3Cs2oMDRYdP]$e,q?p\$EZL[Ep]n8H20^Um'XA&J$\EFIq(sdKmEgXsXR3M,pIqn:`JmH@1\!`5>PNgQ8n/1_kRaaQWJs1F-%hn9'Uu_WNNL57Vp2O&>M7_?eRI7K7!0Wl*>g[9tT5ePeu%T(:@CF@@D^;C4\A;6FRknJ2G"XisgXWuRP02U#3?YGp3tCpcuLX3AXA>FDV%'n_:dA]h20$%j?[PD'LBf3?1m^a@Sm<1;@mk,DoK\&8eE5/eCnFCt:g[0\j0-1FLpRhF1I,MHJ$K([P^Bl!#]F\E<2T+?oCZ*K9Gbm2\E7&ZQKDjlQ'B,?jX3T""*b0Q4/WQ@*).;AM&u<.-#$W9,jV_B;]h$AJR]4l&_WrSH':CVpEMA4Do*i541?BBJOM]JZ'T>o)9Zuaj.HR6=4@@7r+k*lUBBVr_La51J>._k-/`2+GXB)D41q50t\fA&1d(MJ%1u0bL\(l+[,otga;D4u./%SC4/V]OF3m:,ROUh6kd\6+*58s#PrQ\Wc+jVQ7EJ:mo)sl>]#Im4L;F,%`3Wq\3Y_CFe&p)5!,#^GT*&XH+$s83mh0gH,SETC*9^,L4dZjD1N,HOXQisB;D_VG6BXG)u'9n8oFMCH2lH^&96s:!>Q-9Qt6onIb@j4'"7_s2>Bm!D*N]'t&er/F&BFT,c3gu:/KlXY_Aa2_IC'?KWkr<.;raO=)>4>l`:b_HL_WNL)7t4#q>/A-Q6\$"Rf"Dh6eC.ERAW&*q?CoQtL?VunMBPp)Q.a;rPp!:hnSGWP:kP13Xanq]+J@d%G^ErLO5TR_N"'4k5Oj/Dg5W6IIZjs8nTm9?i/itL-P^+lbiU+GpPRY[UQQ%9$YZ,1G#<4U#Ls4N2kJu]%E.NEf.#b\sb"b9TmJfI:f4%GU=fe*9jK$CJ#)mkUnK]S:T"bb\u@8Q9fo%C?`n5B^tOLnPtp,LQhB0'Vi8FF(+o"%RX,Y/p'h)qcO@;'!'f^#LP)@C6.;4q@8*`BPD_BMbf6*`raM`,"IZC938EsB$,]0$S6B36LHD(&E%/5ij#I']lI:[[Y%B3?f-._'ZVWBB)=QA/37N4[e"IUY)J)Q&>)U=NW6aPk$51so(-_A`ABqf":K=0`M6BmS.NV:a1>dKi/-IGg_='.V176i?kYl'Ue$$$0'!$D[G97qo:QZT1!*^4&Xebu1j4d`_N,P)5;!`ZS$#^,514qb"[1e<0\$%$LE0IXg_p0))tn1m:m1XJT"8As@SA!KM[!huB%QMV&pgS%c;rNtIiS(K=Y^ukq0S[!;QV47+%VB0)=9R>p]6CJ_hY3G.`da*@5$tEGPM2/XY.+!T&N!l0i[)KODoC>RajOPB?)PW9,U7HG";*nOi8;CjQBh3T=2WPW<238:[V$@;=)a#^,$5V4`kZ?+K<_QOt6)HWEkVqf"(Gd(sqAT^LoVWi>7N6A@Io7W#Qrg[24JPY\U1Pp^Q.a;rFfmp:lLbq0hM1`Hi?AL,E:=sND/D,MM0`??IC;FPKH'hf>G@&n',AZ^-&Q>ienX`(YH..rkll7hir?aY$%_5AQK%BHrC.@2Vh"-/R'9I7GH/L07JCJqn'X`94kVJi6:Z'QL&V$$Dp2YVlm#YE7nl=AI)m\gc0PLU!r*U(q2paYOVGCptg$7r[>Fd]WRB=Vf9[-UM/$kMoC;XjfX3=V>MbMArAufc1#@t8(DmhE*RB=\6DkC6I6aN'2C0TN=[MSu??I60b;[;cdMp.`7dl3?ToRejA+=VfQRN6t#aXg<3aKK14Jt`".3X@ll423a&[_TZ&=6L4g$\bu@o4n\m;+'8J,\.S*,-PZq=9.]B+6[h*[NVM;#bN83Zp`+[S%PUf^0D^?%G^t.AiR+HEc)gt1#>]\L7>Hd6iam6`i?1B3Zg+[l/\hWPA!YW$PK7\Ff!YElfpa'q:/$f_*l*>W'hV'6#N5-0ct0&ZFSMR?fscse;9j[(0/qJ69;cE3,iN=10^0KEb)U^2d>[B7"T$O@qMbL10^0KFrF^KA*Xl9Q.[Wt[PD(S,dZ%b10[0qRB:QWdWJ]*I[s'S`,YDpKQU;I-?'6p[!/R4F"V^HRY;k#C:N5TDh@6K%)GW7Eu[0q5H>?oP_ns5m@W]`*N+e!(t6op1R(9E.W=&-T=I5E&[l0)eQ%)#%OC%!;OLgEXUD5'(JGYYW5`dCPY,aq/KDuu/)W\LoJ\TLr;LjV)eQ,Y8d(=N:1Ab;PsitGWfr8%7#Pd'kHn$Z=j0oNPuD9H][fDj:ILcI(XJJNL6b=KJHX4uAh12fNm(Nk?e8bSXgT_,:l2YR8ZSr9KP%7W9(X78bZ7)hOVgeTCpr%O>?t&LOL03E"%9=4PC&dBXYKWg$5SVYI,)4G8fGjQ0%KoDS@QII/S/sf3\j12$\SEEB3shX,Gq<%kWQ`SUnt4K=s,am^Vj8bB-T0\.^hCZO!><5D27F&$M8.Ti[ZE_<;%I-jP5#$2EPe4qHX@*Z?I84TM=R99G$jjB/\]WMbmL/gua,\j>@,0_s,HVS'O9<^$_CN(TIELKX3m-)G?B0o8PV4CMdb13**H+h]m/(O*Fg_6BQ;c=\HM0?&Qntf<#QuaPcZjH9lL`fKF3DGhg7aAoJ7T3'Z)??4dDK6?n9@PK>FF#6QX&NSLbA:au10`k]Cpduc)F9V.Cc/Sd'@kLO1g?5^b\@I8-#F*o,W\]L0jAKpWI\*Mh\3OJ69V6D3ZN/?+d)>O.Q,G\OpKcpGh?i?NNqB[;!&f6'TE+27/\`e^;Gp>Es'LC'iH;D%3Wn3_n-Y>A[B>JQAf.'=fJW4f>/<*-)$&On+;X29`Uo#hjrVfPIrqRZ;9+&d:qX/(&Hb-#otb@rfb/Fa::CFk9t8m^/:t*09CZk/0.7Ht0\63u6])?4FYgjCn=Nf,EW*5//(dG(21#l86DTf]k'0C+k:eS2qP=7bH?U+.b`M_c@GlbH`\BZ7O2Q75A)8XishBA@AcpbH`\BZA-M@%9Nn6=dX0A*;T=U]fE)rD,ipKBNRjNEPPSnFA+^NoD3nBW/'.D4icrS^Lq.BM=sJbT1Spmlp0LBG;48)JI0SRH@V;DMHZQ=X3bAQ_B3[PD'TX\-]OAQb=1=dEV.Q.a;r(%/Gq_Yn?sh!6PH^]'42KV*X3+ahm_Xmdtb)u)W>fcU4]mp6J'k3;\\A#0t_G*ZkdHu-2*?<^PBo?>o\.t$@OnZXp'fugTObH`\BR_$^DAh12f.@I:hbH`\BZE0`T>FDV;Rb%u3gZdj3MIkhF:X`Xj9GNZhM.s,I=)h.4j6MTfYbM`\uh\X#qfu)dHT-%0T$3/q1h[4l$?`sc'>H>G,iF_lGqXLdJK%\;P/Bb=MbF6#dV;DMHZQ=X3bAQ_B3[PD'TX\-]OAQb=1=dEV.Q.a;rFDTca_YNkQ=X3bAIXpXb%tXt.ODEdAQb=1=dCpEAh14<:2I>l>7A!-%u64JG/BgD;RkUi%X4B5iGNE`][C!mGM7+HAZNH3r)rgKX$.:_g2D^I4%f\MRc2_n:55[iu5;+eW/*/H:r%I1XaWqDt6LWGY\,I#rsN)Atad?-n5aK7Frl`p[QKR)L`B1o^8(qe^\,cH%(XYS$3P&.%W.tRB=\63AOfMk,#)DN\5KeX0f6ee]M,kAuj`6ZdmF*e6?)aZdmDRbZ;'O\m!FDVYPM%EA03,E%FKmW+V55K>O=&2XbM"qhU5SpXbLFr[[LdXeRE-k%C;>QWY/MVm5Mo\mUCFKgC4,]WMdTtpcmXB5B,3piRR'g\C3DMjp76X'jk5/)sk93_SF-9/(eTbrE+AP*iI,R"U2%!'.qMEE`Kdast6"iRF8uQY?IQEogB7+Ma5SF"00/UXs*/AQ(8h&0Dluo73`QErWtn[rs6UCn[@S?d?gIjBQ0BR3WC0Ah13Qfd]L(X0g)O6Y3^+0qP9nXcD)7XNX`*OP-Y>bZ:!?[PD'TXish@bAEtK,C)f!5c6COCahV\'QTSCi)9/rHZr1BC2rdg7EW.]6RZ.[iugacll8gg[\>k2i77[7k^BOtqf@1t-ms9b>mVrHFF9PZ*L\$Y^m%O?kc7ch"8<^fq94IMY?`i>P4R&u*TC::E#W^LB<`GB[BZISX">nr*rp`+U\4WhE((I&FKoT+aQ[CbDhF%bK:FDV;<]Mp>NP;bG-6fcrN?WSQ*uFHAnnc[/uhXVo?M&TPP?`rWNYTtLk%'Uq'X?X2U9mDLZg-=DFOg(&hf>5c6-\5%[G-tqbI^;D.6O#eXi@B2>*uFHAnnc[/uhFrb-.K#DRS9db3A"nUo>'"9[-UJ?MbB+u6]<[PD'TX`@s\10`jA:ieR"m<7U`nh/?i$;[O2X0F.P(1sV@R@:7ZM^f=,>VTGgk%rRpK;uf%J\1l3^[S5'_l&PHK[7B>07<2UkJNd9SdHRSkFqCk^\7?iHFFbm[S"']S.FNPeLuYah"sE_B%\YR"WUoAU;%=dl,ZT[Q2&4A,)aCB+Rr&!o--?k`ES0PV=V8r'%1D*e^l1t/4Ro]IHifi,X0Tn$-e'GZ3jY+)C7@$fdP4s+QJ&9-Bhbui\Ri4\4PB#2l`UY:XD+fK&8l^S_CNCRR*n%\iP][h"T9W7BNm`O:Q*eoqLa(V)ml,?C^AQ0GJQTq$F/PBPaVnkpddWcmXP]_3lnSn.@VU"]+d4jjHWP7p+7i\qDXUdRW4"C%jU9X"VFXUnRtVFM"CSoB]Id68gH!)O`5^N1T*-c)'7=pnUqZk5,\mE.hLleJOZ,n`lo?.e[PUpak%)D-@QfpX&S8C+>FDU6A@C2G>J4p?UTNA=_+XishRbA=Rp[X,R07GEY$Du.:XZ"F)]0p83)J-?4>@!JqY.=PsE:;&TS\OEsc9ccP1EZ%.#Ne\DhtlsSiBMbR42^OeS+hY=NZ8IO>>*r:epOtA>931A_Ms7:iA5+ALM*6]oIWLm&XNfi)hfN],-a."PXh'2nq%nU'hZ\%M.Y.(4>DY4>"m+EWe/r!M(B93A.%-!hpm3G%=j/RbA2o_$.JX.2'nMo9Y2kp2]mCJh3AFc#\9cMUKs^.bH!\jgm=ps#7B05@3n\72m%>FDU6A@=6t>uZYSbuS>>frD+d,Iag,&t,2jdUhPYZdh#^.kQh8.T8@d2f#G,W/4"%MV6-gA[]aDfue,R;'dtT>E)WpX0P?Vgq'd^A88PFQ^ML1%bkD8C'O0tlj=+[8(SM.q-)@9f>26dq\FK0/231l@I(:):)HUFS>P9@@02/Jur<(8okCU6\WFDV;<]Mp>%F)7`FgUC&>Wm3jbt68uFih^@ch@Sqh,fhRD!Q"t$ZTUiVof!b[R4_^Cp]gU4gLW3U:%d*46:+WM7A1N5'*#MX_*Ugr09)jBL%n2`:/+Sk'q>l@h:7>@LX"ui;mY"Tl)^`Y_[Va]WlEi)@^b!e10\UaXm4:.fP7h'(l#.,WK-Y`iEiPsm^717^ce%lPF#t="B"0>H-^d']<9Fm(X1:RP!a$dPSl0%aYY!D(S<V*14![::[M194_kHg+&XG\72o#WnNA>[^p"6#SOJ/fd^?@WsC#XQ.a;r[8Sg(,uZB[U9@^Ig^d-h?rFNW-f6a*"4`.=Rr"]OMV6ki!Q^mgO\cC&f,a/*D.*$R1CNE'Skaskr-@&Zg[Dacq*:hX40rA,cq>Hn(W2OlY5idf.X)fJ6omtmKn030rg?Pf/S_cW+!?"'M;bZ8=+ZW3%0r/hN'5MYYo$\.^<=+r`\q/EON'^g/Mm^D8pV:_fYn65Ud`ubdMS'0dHaB!\7IDe9#h9?!q^N4FH/%X9_"Sr)9+"m1fTkYlAA?,ZF]]Pea<0X`Of!Pj#/J9MuY!AU6>E)WpX3)mCQ!gRb@4V=mK0t>>=e9ASXcWN+1a?hUXk>pWQ'd[Ho6ai<#:[Y+KkerW\n%%]9WjbbbZ8>V*1!=,`N%V6Wh;ajElDj+[PD(KaD@+jZdmE8bZ85=frB)8FX:->;mY"Td4An1U!JZNe"!18V8cnPV,",eM>8C8X3)mCQ!gRbbuR21f%JAc20@!C4YNt*XfRF1Z&B;@Auj+>XfhZTn4NRKGdTX&$dV$N5(@H&I-0WG_ah=_KjS2:/3J.7\)EgkHu4,1I5p##*sqNjGE@\<=ZL;@k1%MW2StEWb>?Mc-fue,B[]2u4/$kMoC1_%cWgn*8$'r``Cc/S&bZ7*#AULb_.@[H@MoojI[b?S?Y.sE$n4II[][g3k\!r/i^\lbt_^eC;#s\IVItfo5T-&=FiUDE3h[BJ][m(Z-[r6aNghG&fO0,k-V9W;i5$R7d7NC7&?n?HWM?FUW-r"Bk&h,2C6!iA65:a[SS@fK_>-&H">R2rQUnc"-$4NW(C=V:F`7[)UeQ?CkWgn*8$'r_U2kIKfm(`f$b`&b@.eU^/,aG;s6K9R#=#b,p-.KE*b?VXSkEafDCh:&tOkIln[?GjYCc*f4XX^5R=+[8(2-Xp_/fZqDl\o\hWj*CG0j@fV10^0KbZ5t2Ch:'/8\AWCR[2/uPuFh9_,?\iXgUh<%\Te)f+=@^V9E4n@sD;,N8Og]fV_a..rqAn>Ymn5POF3b:gRHejc#=[K7#+$>E&\[APUA%OKWVQ2Z#1(V@U0SoZ2T0Z;T!BkP.$4CZbg#!u5a9O\m9TqE[6keSc=,q2WQDCG+&+oT.UC8^Om-*oEo0r3!l_)b$I@$^qTOo&'j##I)sgb3S6NDacB\87[Djksj`[?fbq5_RJU6]-Z!5f:7.lpHAen_L4ZO.g?ij_[2;*Y4WOInocFH`)RkLR=8k@1C@u5u[J!8P?E4qr`E!u(3cSs^I-0M3n;u4g%CT^NX1b8=O'%?=bDe]U=H8ZT\4(NQ+!fHnEse5c9:umkI[\7G6L8m*Fh3Ym!b[jA'%VNp(+mO:?<8BtC<@:RYt#.@jk75arrkY'I*K1p]MuWo`0EpV?FslEC@S>kF_1)8+gA?IJ5d-YM/TWECr]C>,$`1ZFP09)nNU/M]CE>qq*L<"VdADA9\PndC$rBE!]AN@oZ+tp=Ys*W,NO]'\8qDLec0"?'8=/*k_FjW%q#N&!E_T(TVel5rAc&0Zdkr+Wr*95[bRB:(-Aucg933uVE10[JMVOEk)C9)"rZ^'2nA@C2K>Etf]bZ5Zp/$mdMbA9%g*G;g\;.clNe5Z#p>AY)aA[X?uKgoXS67]0-ph4:`ghaY>mN5^EpUZ@R3stBRrNF+opAZcCcojT$+7II0qqXWu;J`bpCP5bM"2B<]<-UrLbQ_;9B@V-_?<:s-!Y'Q;0ptu&4b]gNDt-Mq(o:ui_heNhGa(fdN0HUOXYOhVn=XfcY#\fd36B?t((/HD3UKa><"S=J'fI:o9IGoHnrW8Bf/#.l=TqX`Sf&b\NKa=!!Za]nOImQYHT^4_KbdSAdB2V_8[FaVD.Ifue,r,IKrfh]\.%ARBfJrH^Fi<>P]a?KWiNeP`PN%*jZ'+B(+^9IHK$r(O_9S?NC+DtCfR5CnMBR,#QMaUE`C14R)mF#uOD;``rVG_Xo4]7(dI!Yb,X:"fNY)p*NXF5_ldmMT%]^:$I&1:@uh`HC?VHIln\9"X-N?W.:cI$5BMY2)Fob^9MSL`M_3gt;j=\'&+U"O'/O=J4MmC@2N],W_5RB>b>fkRS31Cm?D<[C%IH/[JI1>*uF8]6%:W)u)4`W>(ptbuR3$`GB+oR[D<"*OD$a8i1="L"jd@_W?e\_._XoR.F?+:TfI+Fm"hlg0MKpH_2/M/[cRBb;\&i_MN38S#sn8UW@7_[`Ye6fue+gj-iU!ajb,aZrtURAugd1Cpduc10]UZ:RKm0ZRan76:B)VQ`S/$mdEA@C2K>FDT]j'sUR[CFpp%X4?LiRM6Zr7:TZ"fZaDg3K`_8%W2[me#b-iT[W_IjiU-S100055J=>FU#o9OhOh4B%%Kse3^%9-QYH!W]$pD_pIUm;,57rX9I'H'+*g.L=p=N9-^.ad$kVAV=4nT\O,(\[7[g4%^_a0,^)Q^-+8i(("2[B"`MZOGTeDTXb@N8n[hgs5UO4]cGQL@k9H8tqZQ8K35uFLC:38d(!RERb]GBmD4-3_OFMk++B_B6->`mlQ$#sg/AWp,f5,$,g;[16f@jZY>!Q$GE1C8=<[c;jEMOcMs>1]?'rU6<^UmLt:KV,1KVLG.,PN`_XC0/JmA[X?u+`]MG=Za`AA[X?ueLn2Y:mnFDbuSbLfkOU0Ch:%1>9S#G>?O&0Ch:%)_,eOQcCp`h`P^ZhDu3CVma/[%ch,p!gY>mj)#fk_IOJG.WUM"Eo:=i).X]j=GD:;d>No0qf?2$94IdOe&cW8Dk7,D,"L'.lkH-fQXVK8sWYHR([F')Q[n?%RF)E:-_eca8<@V0a?dgV)Hm+B`2q[e35YQ+Xe06V[2@Ja\:4+hq:a)BqFU$ci:7`@pk=*%KGW$ElS!8YZ80E']/H>Do81rFPURo>PN9u)aj?I74AmT4&^kdFC^3mt6[SDnbs2priEE(B26(08H_[r68I7$$SH=@'tXi;NjM?K[4!.P8!WY0\F%Y:X@p)McO;AS&<=6(+i)bA9&I`lD,n<[3!2hb2p8rp7[6G_^J)b#c@MfeLh1Kb/6$P>8C8X3*2%N@qP;KTb$2CfRq5Aui2ZCpbcMQ,8`afkMK^>EtI3S_7cC10[bEfkPVgO0-"W`POF4aSSPD+G^-XJ%0,?Pr-c*(>R:AU^]0dB\^.Jr*Oga):5*>HXn2t6P8LjrL$6@k"Ho..Eos!aB/F25"WUA[%Nh5m6seRQM+pa>j]Sl&oh)lgOB+C)qt&MIqXCSk+1f2C?dQYtUpkA>HR4Q3o6RfiT!r+.C?\^@'Ri8"b)*]-,5:,OFGZN<``GI93tZUX.Aq7Qb(;,W+9f(/cm#r2T+[34,)_t(NYQlFcs!,@79.b+X[5#k;,(6UUP7p\$02TCeXf2rJ.H'n4"3i'4Z"f4?aXN4CeV-di"DIG0;QL5p=ZHL_'Yi.BV40rUercVm?pm>FDV5,dZ%J@[O:G10[IBAuj'WR'"S5gZAsOQ.a;P-kXd10jC'JbZ6_Z>7E0=fd\S[eRW4!Wgndrb&"J&hCr0%XfR0gn]V`SeRd'-$Xr72[G),](%cG$oTeoQs,Zo/htrc?/UZ`bD\%&Smk;Q%JP$rE4UsH7I@EmV48A@hni=g9*:;IRt*dq.#rglH5/4_Jb\^XN203(:nANuLP<[fKAdU+!bHE@acFaS"WXi?]]l@D9$&72Li$a!Lt=WfWrAAQc$"G;H%H^Bh80%d!i$k3&4X:$])B\$Ve5S4,P-4.;C&gVSZBsc4Bj(2qX$/[Be>\mlD*\n5!@"J+D1hiL=_s-Oa4]]KoP+Z^'4D:^``T=a4=#%':Ban6>F(a=.I0[r+Y&aY5ALc%>?5e-`d'O0YNsH[OF7uuKk=,$'D]p?:JtIRh(]XqFLfMHT%_Yc8S(C57Ma;.J@gH.X/D&;I22HRp7,4LPqUT_ALbUAMZfoWZGq4=/@%i=29XVW[7eMXDIX5PXHFWgV(>@.isFPFK;T=6R[NE^"qXYO+KX_(1;X3*2%RB=\6Auju>>-lBJ>8_Q:_o>T*'FF$f^rBg"V!=Xn'OWsB=ZT!`!\&u.^-C:5m%RB:L?[[OeO<^W^OR]SKlZ$ok/l.n;2U,97/$i5IRB<>=ZdhldVIlkV;DMHZQ=X3bAQ_B3[PD'TX\-]OAQb=1=dEV.Q.a;r[1cd;g'cjMJ+3EqgOAe.n9Xu>n8`Rnr5`CJ*^5#Eeo8+kRrGG(>$0HmH1A<3c!UK;R#Zg$:7kVrYHK#YS#n6bZ7O2)X;R8Ub%tXt.ODEdAQb=1=dCpEAh13QfrC:\PKS<_B6AN5kn](HSp3BD>/dsSV=<$b%rp^RB8$`Z7O2)XJ%CRRB=\6V.@$?/Bb=MbHclFCh:'/M64@kq=(k2r^s]XCPEe!,N1;)qLda>T)ML[QE1!=r7&3Y#bU>I$S+eSouV[nJ+KNjKumO=;bh:?'1oSF5iD$721AQb=1=dCpfRB=\6Auefb>?R8'=dEW%6Y3\]>FDTca_YNkQ=X3bAIXpXb&"I!>AZCj2"9M[JacjP(&ii0r'0/Tqs-HRY;VsZJ,Y2g_eX&4Ybq?E+9#VU^;8*s:3/&Cmk0AkY-3Vg&^4:AAQb=1=k;)6[PD'TX\-]OAQb=1=dEV.Q.a;rA[X'7Z^#*)Q=X3b2,n0DndOpi5<;8YB669$X:jrH6mt5SNdL+>Ou:UC:2Y%T/_9^XGpVrZ7O2)/Bb>rXspX+J>CJ-CkU^$*FCL:FmfEZ_Dg;_5Q%Lm%Ym8jbH'SRCirO`f3&CR]8a&Jb%t(]bZ:$@=dEW%ekhd:bZ8>V;DMHZQ=X3bAQ_B3[PD&moXr^HB;tBNX]C`(_H1+CdI>1@p5s<0IPJLhDhd#;6fDH&n*'31>e%%X.(m9C4A<7u6qs>jC!;R-Ff*O]6>&`jmjuoGMS;i21r2SWgsRtD_g75Kit_rA/+KhZ6c0aT;7Vj'W:M3]7e>'Zck:B\FWgk%eV$MopNCe0rFOH7Fd5cPo,H`02594Kd!OWWO$T=U%FXGN9&:hj[h:\[_-4g/Y+&-+k)3HM$+L28@5(F9g.I&ln9CJ8:)`SE/ld;$&P1Hk1iRfYA.WDN65lA-F,&mQ3J91Ug!19bp"l\9U;g+LOMm%[cbN@DC`BJ=q$n&bZ;-mCj"$>A[^='Sb3b$jK.K)MeXsZ6)+&#JgI#1aYYAV9easGM,qkMF&$ijktj%>eV;cBm5(QklC?OB#:2iN[0..GP^5uTc"pt"WZX&S>FDV%nV+]RMZV=^op2b#]&k=\:9:?S=_UaDP%Z9"?0F)5QaVX7O=OqDTh7F7(-/G+cD"L$7$))qZs\`'E\bm2=VFIc9;5F-b+)D$6ori@Cpd][HM\+b[Q8'0g-LQm=Y7HX(8]m9?o)#TXX]-#-c/mdpH")Ha4BCiS`ZVs(Dap/\udZ9Q)S0QcT_#8\C"Cc:RA3W("*D3V%?ks("%?$I\C?sDB16LZB/B9$Z<']=r6]_=%MLf+\h-ETjp0BB1RgI,9:OA/M.LtE.uoOW*2NjBYb<-jHc*%H]V]M?$*N)EVlE,>`Cp5V=8.dFAq[:#5%e'[IMN$bJ6CW_JbFFYX*Nn8PLlbtH(?)*,#dZg`1G#PkH:A\_``tt/"AW*;JjJhOJ*LE^bFof&b_]]UqRUAmgW&16U?EE;C#\9CQPo+]a8C<9_F>VLTW/1#'L][qqo?oMT9i)q_PS72eXi;NjQ.]oMSZpBPAug'\FCXL!T5C>E]+4rk[4V:*cC22m[Nb%rpB>P1%:n8`S&I.CAq][AtVDD`6JCV<3IZZI&XLB19QaUo,/R)h4dt^!+AY0>sL$F,Ma'5Bl8mo%`LEd_D_.85>)W>_l(!lg[\c\W6\3cUU01>E;K'9BC]MXD2_hm6t"M$kKYniF&WM4-Z3\IEYG^glB;bElR7+F/gnN&b=S52SlH6I[\Xj;a:IHqp4DJ*D9hGW!BA[\U?Ah13Qfo#'^XisiA,%\*Gfd^O@g,*#>OP-X'D&Fd7X&7WuCh:$^RB=\6Ah0u4=dZ>8Fd]WNA,::a!3%Cn]$M#@i=VR+j+L"QEe%`,$cNU@-%`m]X_PZ:3)DAl,+aj`Yd7^O=?^k'CW\4'8;?<&K6/bZm=:>p\,-teC<-CsY6IAkGLKdaS<,]?Ol2XMDdKXqqO.m/3T&6DDjQIjmuFm;CmpD2as@"`!nLkB;%XNNZDi,qAWh(ip5#"HW^YLDF`c4$,u(ZH;B@PBFAiuTg@3i&j`KPCPr)V0HRPaUhc4E"(MNgd^JrnHC1>FPu>p7:58_8u+g-ld)9"=)D/=ftcZVTMG98]%2;JJn]$HZHrk)`q[ZVXpL*#R#Q/JQa\Lb71Q.[Wt[PD'TX[W^rZ^'4dCh:'/0O*'PZW2EJ=ibDj[PD&a0XK;ag$415Z6L)eQ.[LCI>/210`:UhWh.KqJ:CnV&`lJm=a)WO+^khp#Y[Q$VTIIhXaS=E-im)K"^kE3-!eiB%`&+j6$c%Lb1Y4Nk]pR)lDLnA_(>@@unPZ_*3aUS!ep3!rBH>eo%@&6@qm6&76nT(2TK9C\]b12Ms>CJF,Oo[AY,TIoZf)sEJq&(&Aasl//2*"$=&cMcg]MuM"5MXN5joo=8;H==b82tP!mb"U"!&&O4>;>)P[(D#(r@ab&jZ]Y!o1aggZX,[ud8W4`<'dFWZ=)^8R'(at.j6Uq_0A?1\KqY>`hSj*nF4F]!=CFt8_IdkYPb>1>B5-Xe'n@k6\#f#riPMomIf+5`6h1b@geTTU.Xisi=b%tXt10^0KbZ;-)W7f=0A[X?uD47TlOP-X'Of@$VCh:%1>A]h2bZ8=+Z^'4D;F#9ACh:'/<\UkFfr>Hb>oE(=(;b!<"hcc8?L>/;2h1cViF_C@\6o$+f3KJI\9g.3Z1$Nirhg^L'Q,c@Z5(Ock8dYj=@Vrp!F$IKB3o.8eA[chN@,+rbi];6GLJ`l^W3fZd)`!fFd_/*S\AbQ/aAOR\4&Kc=!q0rMkFWOc0GqJ`XhirP,fmn$LnS+IkH--L!tAkl+&$F*]SfAGL6cK*iYMD>:.f7;:bStbD"&4Ndlr)DPD?Q>\A\^QosY":o<5sHgd:1=qe4q;R-lo?(8mc?qIc(+u[lINu9MZ*US%A#QEaJfsRrCn_[0iGo*NI1&9plYIB$L`K@rpZ$d*tKH@U%$pZ_SFDV%MCctPRqA]/10\U_XisfiN@;-`VV16dbZ8>V.Vs7`Q!qs'ot(fDW)@6k\#7aJh9#dn.nYK\3pL7(,FFdg[]"'4A:?[\h8/B;lKr21Lt`t*JhRgrbXcu".`)1(mTIc?T7&RMh3C^:l>HEd,80&3WobuBII/:k]aHcHHns?ThulZ+_CV#"45#8@%G3BMWe:,:.7!/F!/X+SD.R:O.(WL<&FRkX!s#G%S'=\;AZjM`\h>^rD3]VWB(EK!G6Vc6#,VB*Yd$0q=>c&9%:8>;Fm!3)rXJt+UF.?&If+6Ik10C9/G.Agq]k-m-JEnF"=7h=P=FLV70Uqaa;(Zj/)@O050k#@Ft$"H"kq(&@N)V>J`C;%hqX@-7S;@+O^WrLI?@a=&WAA>rEOEPNNZQ.hChjr_-Sp`A]h20$%j?[]72Ff3T3[^%o)-2[runXXo0-H]-j+j%/s[?ZAO0`3HZ-Hggr"Gjb(giHP4942Uk*[DOAQpVQ=Z,N/c02Rh(R,PXktsX5Q[+O!d&.SL2-58bJr**.+=U6#2T\@s`Z]oO>C%Jno3uiMp=%-W<,@ZJBb@*QDW36s7\HFh4YjW,?WsX2CrHaEp]W",Nij2pb=SZci#0\47lYS`X1CuDKd4&OmX+VL@\Zm`'TCZ:\9bOqnkFB-GpLe\>VTHNXisg+10^0KbZ8>V9s`@UU-*%gb_Dk7Ah14<72+`"Z^'2nA@!9l10\UaXkmA;Zdkr+l@R5\AueO?F\TC#=q%TVk/6TK_=1'@DW'O*f=pshnGI;Or1WlbD>;HWp^b6f5B^\LeS0bZ5/$sH+g90hR.F?+erPTab?"J3c6J&bgF%`dSo,\GJJqj-"^uFZZ_TZ5ej1T)k#FQhKh.W&"'IkiCr6l9L`U.O10LFJ%PY@o=F$GX2-EaT[KkS3*Obeu)K4#XCj0S87LBH:a71inLXmSl%bK'^]%8,6[`oK<-Qq\C42W0lik"<.TP8\GN``.G`1`bW,ku(mRdQOK9]c]7`Fb:JH`)OC7Y<9@)rPc]SfobqnQ_bjFPp(J!W\7)6T@/bZ8>V*1bZ5FDV;<]T:#MV2anCh:&t@B8Ng(qNjS=Ut2Ks>[d(TsiWXi(T0=+Ko?`-KR:Rlq1]j/]@+Pk3D[Xs4$5%A4HS+H9\*.CHBZpJN(LiA&io"8$9QH%SXaW6r*>,o$b07c!_cqFbJG'#^\4(10GA]]EqA7j"N4SW),D@NV$d`-%Z610j0_^0q>i?P]QNj@9kS2kl?`Xm.FKQ[,Jr+/II2sYnHF4QJaCJ%R?>YL?&2Cbq"Y"5>Q]h>EVBA[3>%V7(FV,!a9hkDKBGT`C18UrI?p^9LKQS^E\&YtsdZj2OZqnX/5Q%g_"2?H;K'R3;XisgXWuRP0bZ8=+ShXGdR'!Z*[ONf6Q.a;r&eRl>GBnVPU"tmkqFPLW7)*W?:7!N=sMSs`-^G'=u#uPRh>Nm&m=S2rK&kqB3YgSb+A1MLs`#)H5dLsDt>bQ?SY>[,,r,gVLpsIQ]]Z$,P1X3MMb"*:96>L5=0k37u#>(>=7k>hT#'1e2j9G^gBJGm$l0]/,P7Z1c`Lqn[nL%J;*5g*;f$_%ND.L:?q8FaQEXisgX.rLcW2U#4T10[bEfue,r0=-qsb%rr0bZ5b)_+5ln-g[+oO6SMk)]WnlgJ#iXskkn_cFFHVoEi$Xk&kMWnV,`et99nL=M0:R@:.@Vc9(p!gVueg*ul&S@3/VGE"Y0OI8K=1/SG(SV9c/8easo(JulD>&@4o%H^VDd:.pY@PY,f0Z6b"g1$M_hO5']%EuRKn;eT:m_:"Eb-QH3AuhUL;mVbBb%tXt)Ci(Yfue,rOP+BL7LT8P2-Xot,'T#-ZW0'aZkg`![;!(L6Y'r?10^0KbZ7)B[PD'TXV*BnD:OFC5c/.oX\.ZW;.m=0LS*-!RB8BlDF8V:b(cC+J(V/V[%B59ABFQm>o#Ve[/$(,lQSd\l447j$a%PmM(CLX`$3/8h)RT(LhG?l6QGq<^F*^%0L-9B4G-hH@60\hgU0tiV+V-*dr`/W-QW.=#q.8*K[/-$Apf`?]hHW88N33ekS2k.N`[tZ'-%"oFVb8n&kF,[$3"<*hX/qCX#fk7+7Lj`\`/2K0"A-='Ic@8OV!CH.i0TGqNNDULM.t^*CXhAP?9_BQ(9`W":/_i8UotXh48qa6ZWM;lsOX>n,\KQ%5t*QWN,Z;YI4)'b#RP%mCb_hA%t60mGHd,hR1thjYD9+NN;m#_jFqo3TbQmXnaRn[bl1dV-%5Z/1&$hmHHj#^un:tWQYM0E-t$e$3u[4gsI!c_HLnpZ+hVbX9&3GK3M3@JBobb]MRcKlpEX6jl,bC)S0C-159,/UJ!Xes:D(c]JX#Y4@3:WhkeIahmuUEc)6Vn$-l>&0)0jdCq[fWL#5;4POYjSTZqgfbLO_4#\AtLh>4[Z'nLOM5Hbtn9s$K)Z8=e&-tWHi"`=YDktZj9;HcZJaH0?I^:P&9X$&aMt.IrHNl89:?H3h*B0W#_%HnK*NG>m*$k!SB@S4VbA_#@eA]A[;qj"-fJ=m&LAD(N6VQ'Spi@Q';S!Y'+E.i$7nt4jURh[F=,'hkbOb#QUKQgqXAkICQM)^+i+2c0P+F->lnM6fgHSP0Y20>0kHEb,B#(S>NQa9H&'Znk!PY,LikYc@L.@?d2@Nm%/WkVS5Hd.+@0Ddsb\0s(6-%U>99.)m^[Q!80^5#0j_465>heP!rTE3!rYE2u/.[gKUuAajZ>E3!rY54G"q>A]+!>s>H2X)P+YWsKAU2)uL1ga_)/gkpQtXgZ-L_Q>kP>OCZGP_<7p>O@k\\5g%=_&\87Kj.iN>91DVj:Z@<,F#k@Qeks;Y3XtJnrr)u.+q^*.f%D?qBmSM4Sqgo5Q0?m-+D^8,K$?V-$t(&r=-ZH)S\4CUTl5#8pcK"^i6oC3uV?e+:OD]dYc!ipOc25&!`]g0IXbpY7RHY=%13E39/(+YRe"*+82H6aYon-kC"ifSXDPcN/jnp-gAJd=<9=^"S(/43/5m*6SKq>J8LG1nl'D_90,1B-/_.&M$_O>c7`F\o8?i]%a-)#YoW%i+ZSh#"o:MP`^1.2@B;p=51In'5)\gmd-A=TAG@hg]FMDZEN+R`^mCH33n"TL5TR9J,q+hS3$ap&c!p:=1T__b^_".e@%S&OY!N=cKJ[O)J#>'nnos,6J3J(j8Y@`l_)NE'WT.oUdk_p=2$/V;+$29Wp$jO?*0Lr'qemeuSPt7U>59dWTDY,)$'dCM]@%@'1K)mE:>gbOj'^XLCH.=J7:mnUmYB72kF^<.d?#$DO(-t25)uOiOSL2Wi>i.WSQd+.+$(ZHHF`QP>4F#r.blN/WXltK_QC\W_QC\W%KNCriE"o<]-\A4'lFb(2'Ki=-:bSrG.:P^-qKj,RR>MWB_bul"1GHt3=M*M""P.,UZf=TmB10C+uq&fY3^Is%CGAemTmfu'^nt,UU9$->*V36hg`=g1:"*#hHU.5(V8d@u0YrOcL"_:$h#AWB7NI*p,HlRZ1O-9hb?sdJe9'Gd4%[7Mi8=Q%!3Iq\16YAJ+^cmIW+XO)GRgT?^oO2j3T>Q]:q2"R!K'uF\*'VFTjK"@n*\dfBWT-c8:E:k0U/42E#OUL_hLbe&+LA70QM\Pu0T!RrhC5fU'D8;o'%&mbiF`#"^ls_QBKQ\.*T5BXfIO8/*)U*E'DnLoNG(s%gJcau9?LmE%R_`!T58k]oIdk[A]'uKj.7XiDu/[#P;-RlIaLR9;"!)_]:bN2CQ,p5Q5!2>HYT@jIOn0?S\t[7*2F+ITZ04\%f'+rU781jJ`C!?IJ"plc?Vr@0r:5^A,Z#P\e$*VRA/8-_$YH3m=]+N.]9K7O35[f3KDqbSL1m#:H[`FWf:>&ErW,*Q\1M>[]65O8jU0"9!2kOjg$A=WI8LE]jdOEVkA3+=pb"+ai7^,c.k7qnN/Yq)<5t'q'!Kj$nlV/Ipl?4-1l@C.,6<-.bq$7_QC\WG,;23KQ*u2X)P*DcoKl2ga_+%#e/Lr\!dI>&\[2j-"DKR(>2-cS%H/JMU>On'iGM_lOP3(.3-*Os8;mNh/ac[27o(u'TSpIhU/8fTVAT:4$MYC%]:iag$/*E>];/B>MKf\]V;Ee_o:`+@7=VDaH6.^B%lnk/,.(9"%-;kq$(@,uKutk7VLUO#PsrOPh4-@q4Yi0cHke,!*L=fKn=1S`iDYMI)\"'Rs*2:[)[X:l:dRJ9aLB";ko_n%QNP'T;g%?Tn`G)M_htbdR>1(eR+Vl5W013\U^5n==`WTGlj8I1OHfCJDoHfXegFG7cGj1.W9Qn01A!]&L)u6tZHqgg2gk8lR:ucq_jPj*`G"?@J6Vogb(j2T>D6;S6+Bq)8>#Wp&lCj>D68r_QDObkA[Ip@HGD/_QA!$X7_aSP'=S!m3Q_PiPKX^0>G/)nlN=">06.*J#hZ1qKK\RZ8eS%U_U3iIqS(%GCP798+ZlaDqKj-Cc(cM%@TX3EHPsH]Kg&6!]m]Z;65oA*hI$@NJBM"o\V2+)cE(o";!I0)n'``cCklAnbGZ6b.9OgY#lc9/Ka::*Kf5.+(J/We+"L$i=lgs>*)(D%t'K$[.;C0^QTgH1$&O+A*P&*6W2?f>@GE`0c)2PG3hEIP<-EDll=qkWhNVUT4/^r213;231+/#6H&@_/!RNDo>iY[TdhAIEp^m>D6:8>O;Jb&8i5#'lFb('lJ._LSQ3NWf:tumCh)oO2A$9X`e]bdILPa>Mja4aj7Zfk=S3:F![;?f54kG0dG,B]cOWMl.tcM\dbn0DKp*fqeqYR'5.>R.-%R4RBBSh3E1\S\(FB!TR1@J$3"TfsbmlqbaM(K95XZM[AI`^0K:Q8aAAitYc4K%LoYU^SM2'PBSpnbgS6hA^3Wh*:jO"c*d#'=g>kXT:ESLQ#^qe0,iZ0-Tp;gTZ"7V1gG,(LpEZ=HN5PJ2eT==^QZ6U"l6q_0g"f%JHDVFf+',3u;o\bS$(`5AB*NK@1dN6D:r3OU;VM(gA(q6\-e=t@c)L&VIllUtm9?s(GQ/$`@d?5%?b1fQIk3#Bdo@H0.nr8.r9$+s:1F3:db+CK6Wgds$u.kR[f\Sa(u;C@XH0R>oPpA??Q2ZEYId/l*<>3u>g=7'F@pMe5)F\T6OlN!b<;6<"MI"q!7ou\@9W2V$2X(#6SVdIM\3Pf`XU*i&oJG%'lMP,iE"oN&WC@nR*:g'Y=#;V"8-E3%6&X",@KC-13c)XuSi[lRKA>D6:8>D69uKj0Ot/Krna/)9D^=VK&tXZ")!Y(Ubpm;T+?^jB]tghO2Y>I#r4WoU9&SpC1;P4^W/8kqPHABE/)s3?eH`VG[Nd7h[(B:g^m/tFIp)pO_:>Ff%APjg-s(LMQ`jI512^&^O&%YaHH]VbkP1#&3m9q5i%!XM#[L[S>"/maZ5&E9&eVh9%'#"9V@)5&tr%$*B[8`t=$,K"5D0o_8&/]Fa>_1q_Ijs>,u1P^Qp$4/#^UX&6Id$`;[Fa':X"b"a]-[j$u3_W!J`'fgd(^(hqX&F"JAqc:oKk0dX//fBRO;l95h09;h3Utjh5/De?cLBM#oZRsCL8/s1,GT.$_Vp'NqTpNL>D69U&)gRJACUiF#hEdD<%KMTFV5BjQsp#T5gliZ\A^nU>AF'kMQCfgc_?a>8#i]5X51FR!aPYP#Xt=kPuldIQ/@^eH(7eAQTQcI\h\!iT-!_n.g$R7;@7##ND+h/thf[3fkDe$ZL7bJK[@uGiWoNgsH/OTa!k<-l2FKHauDXO`V=cQ-h<>/p^:.a-[%@*tATS`Q-'q8_R<#R_o1L`=.'!TL3)\A"!7P!0Bk#U$%+JPd#`MF^T=VY_>pqQXEN**?n;9b7\b/Ma39dE)AHf6Su`h0JAY(q_/dtnbWGMA5MIA=2@=NS)LL$J;K=_@2@/C*$[<*Ydb,#"PE4pis7?&@W]V!('J]nYB)rr1"YXlo\oJ*Vi6CX/6na0M!iNRU[a%ho=mPiraVm'?%fc%,mUp5he6obd=&\i:Tr76Ut!sJ[9q7h8YkA$)WP/K8*Ta>D6;S6+GI!E3!rY%cLHXiE!WXc\ro_'lFb(76fa3>N&W35e,A*@*iknE2u=8Z_5IVmu5O::*P20R7I^fTG9M_%tj^6*=KmjGsi]K0#=9D,i\kM64\1*qWV]J"@cdN=G(RD-fB-k'_>4jR?E+T(<3/'1s@tCcYbdSFmpJbiKT'0;],Fo&f/I2I1MH1V"$Y"+UI4hI9sm#0q>[,*SM$VhB8'XX5hhD?R:JL5VoIKSIYq*ME^A[Hjn>sK`1".E)XfW:8g:TidQog!*?'5-$UGKBcQ!Chtn8>':cX$]&u9OXW#295OHo1s"i*-``P^7@L(po`(Z]>YC4VJ%]1Cr\M7#IicO+@A)17E2)KE1/tl:TJ9gkq3#NQ>Hs%C1+;!gQ3\diT1[?'25^/Xu"\2lucVo7`W/j.5rgfm/Z&oGii,c?q7JK45d/fFS=TQYi!-\)]^hq8^D3oYB$C*mm6CqgMe_=L0C?>5=,hB'##DE(9kGCT4&2HXhq3WXnj0q.blN/MWWku>N&TrG\4Hc\CH&4"+[H1RGh3$H`_Y)ppi#M?fY^nt^j@X1S%;$9u^o^*LFq"kO;K[4irTu/hQOL*\=_H@k>pd@+g9S`NWCNr[QbQkTt#61P&6dWtfnL**H'[BM#<;rd*9TTaT8@-)/V/*5pq5+dsMe@.hWL:>U3mO5ETQ;?=Jo1=4*0jY@\-(!d44(Jb`TV`15K:"SS>Xkf:;WK&6!Eej^pci?Su*loclYKH]\^1=HmZ@k[Bb\'+Bo'Z7bVrXs#Y3W=#2CSCVJ,+3.E%k@&!jseN/`A21CF+n:8lg]T--nf*VW@F3<[@C'Y_bolH,MB6q+Ws*oBm*i(STcY%d%,BFeBfh4Fb'B.inPUAVP0nKFT[DZ;Yd@>(*.J6_H763;*uN)1iQelS_.%?Y3^P^1Zl97q0g.&0H?6O$;>5E!"6=0gQk#r&O/\/6'WD[s'fB5CF:1K6_b'RmHfR3odS$(FhMaVaH3s/He`"3.RMh2*c4P`tPDh734#+,F$6@g!i^Be%pOHosh2<=,4Z.DV/X,lp_K30T09_n;*D\4CSu/(/0f``Ynd7!CQ[XpO0gt3r7g`),!OVq5k,PDn%j1)N=#jTL6ROH]WYq>[YVJe+A),@b,Jtkl\O,GliO/n&>C^5Eph*Kj078og-)f\5a^-.blN/lI>&\2(iP`DA@%H$,WgeQ,9Z?Xhq2`+l"R&WXs%_DRCSQ2W7]kiDs#H\5g-_9#@^IX`e\7Y"+I@M^:Uf$U8"h[LR8W[rb_US1FEY:OfZ\H"!Sggkm8H5AJsc]!_MlCaOgp5+%qX3#c:3TG.4hrRS<)^88/<>RYm8Bb=]8sHE-t[tIJaObJ%48-XZQu='n'c`pFX\DHtrgD'[V_+Tea/#6]e@TKkX;;;g1dYikZ+cN37Dd45";?m_Vr]Hl/4TpnUO(-%-k2j(4I?oDHE3!rYE2u/.[gKSO[gKUu%(@,sSjg.h\5g%="6!8c<\3#UghIIT>Ep^m>;8OUD6:8>O@8dX6jl,nI]Zh?33a9Xhq2`E@^HBSN-.=aa;q>hNIWHn!?XYAnF]oo5>+BrJjD27'T+W3=`l@:aaU9bl/%O6F_%,+M*")%2c5fFb7hVl_+&p]"V\NWq"-F'bW#1HF_QiN.NIIhD,@V$%`<7'qffMPT*R7US";G>O1-H]S64do,X3i1?E&%(b8n2Z%0rr47L>c;p^.dW43K=#)^fum]dX5KBN]5QdmWda?q5fE1_5O'-KXqYagDA@&s+2Y.sXhq3WXnG/meTSIQp^">9[gKT*(q3[U=Xa*:htaAe5.(H`Bh$/CD!TD?]D988)\&is8:c'S@bmsMY+^\l'CQ9aZZX=fd>N>>/nGi=%l20.T3rT3\+WAUR^Q-&@IO)KM5`5qo(L[`T-ol1:mTP'9Chb+"rAj/?q*IUJ8q2%:F;;%J%q[UOdOrRAA7`UM?3m\C?-.Y=9Y*`(S8*$(s:*)hV8h4*\E7`"Ba6)^^<$o68lh?1tU8WWP^+4lkYhV)0D&pqCA,8A]'uKj/\=LuV@BeU\GC[gKU5":Q2d'lFb('lLE"DA@%(DA@&s&%j=Locf"%i(N't*[GNpqhu2u807c'qV%QCd(J^3b?S)r']Y<5`))g;6a3&[1/!-0W+-@Y)GKs3&$VPU40/Ur%>1B;3?.QV%Aq#Sb`l8GX_:Jko)de7%S7@3N&l2(4,$2kVFG,r-*q'4$jqia1**["]l4gY8)A5r%b(!m#)J&C4CITY],ra8N9N2GSDMhJ)b/W*U`WcKBB#!<383;GP[JGS!3SKu3"*5ea9U/H.:.3OG98N)+-AQ[_@ZJZDm@qqs3q':0iJolA&ijG8t<^m$VoRJ(+[u*]!3gDQniUU%^r6b5g9>j]5IoVDf-Gec^Ibp"bA]e)%2I@'ACfWaaK7:kjY3`X)P+YX0E4R'lFb('lFb(2&1dKKj3pL:FFq4>_H=8>D69%%,k7K9&Wh0Dsct%rAEPG##q048?P",?ct2D:Odf:dVY6)L3mN=^9$9SP^!@=&j2I;lsl?9pPrfPGM)\qI@jQsN7@*5a2_]C+fXM6JSop])6EK3?6'8$8fGE0'Xd0Z0Bo<]hUbXD`b`RSJqM<@5/ngHp"o3X4SicFDCa9C2J+1o\MF,f"La[\]Q(H+Rns!2<+?\lHrfp81QUPKJTGHh_Je)NQ`R$.blN/WXltKp'd3rSOBgl\(V1u$F^AO$F^AO'"lK,XgZ-LXoqp^>D69U!X9+C$F^AOnftUN\(V1u\m16"D!2AHXi?&bpZdE9D2)8#^JS5:-SPsachcM"FFq?\#@/lUcM&A.\apd7P^NLnLJ)5T4^GAee+sklAS"AdK:.lq/o^1`T3hQ(NuotDSZJ*mHqEa1"[N\&5nF1N1;^01Xhq3[6F^#,"@3S%6*M`RXhq3WXi<];<=f:!&-P;'-c3"BjP9%AZ("C@K=MUCeb[F9akXa,aTm=o2bIu"qr*^9B1=1kr7dbgMi0A;_ke"mcYkA$Qs9@j(I\5g%=\CF[e[gI^0#_F0)p-cDj\5g&h=9uACJfk>N+:.[/\CI(=>9,kMA'&[D>6;:n)sj>b6-1eY]3d"tmg!n[F"<_+?bYQlOq7QgYEfT`B1ga0$ROq9:o`L&W=hhIX^6D6I#3goDA<:?&-P91]^?'7$F^AO)@PM)5nF/b&-Th@#e(/M$F^o]iDr5U"@3S%_4CqAHBWEN>EAbLa_5t!A7[SG=WTb21)rDXnt1C25F$WUcTYA"R6UXTajX$M;6mPa>Omp6rq@^SbB"ulB:gg`[gI^0#_F0)Y!I_FKj078NJ2>P+:*QA#_HG[KNj.7Kj0OjE2t)eJfk>N?r)G[^"KsHd@3a_K=R0GY2nGd^/jgds7q!fTDu+0>k3I?]VFOPI-;e$CTFd'17I)H%;tk:g2b="[6_q1o4L_!2/^A[Rar#`FuWOo/Rb`0)U2V*/b(kb,)E-`23`!H,f*-pgMafq#*@;aMGhm?nDkY_3oE;3UoaTZR_lFY6VA8+e4;qur%3tN0kO@WaJ:2Pk<@=<^_9CY\Edc!&,hsm).bq$7_QA,BIpH$EqHAiSf[MDn*ZAeGQkSaIoaY=F*8W4brIeDRbhumc6E>(+6]E&6$?:J8NA[8]&c2-@Gk5Ymh!3(p0$C>>1WM!OYGXQ_R#d&3MRRo]^N(O#XLF"I'fol#nKbAI-Zg35VmT[Bo_RYi]QWmll0/lPN-i1O3_2mem;kVD>JOah'UK9Ld3GQ&a,qjFTR"Z]b&'FY"+H9Jn5CI#09-"pnR$Z'5ZWR%C&3OF'L4,p&`bHK1*kgM=?F]SI)JUsMHX1..L@Sj!]s6Vo1e40m)Lg1+B;WmTk;r7gY[a)T!(&o1,V5-\Gq@F("V9"J=2Q1%$L$/c)LcA=)M<>eDtCs[%L(1&n5sSYa0?SKD=GOdCogAR5P,N75&8k+An+\S(>!7gg.#XtfU+)n[gKSO\*ATbX$%&4FXb20_QEO$11Q#B[?iu1C-14NpY;[,4u;S9Ys,K"\(Ymt)oc\FMTt-ANC_g&ljasj"lWM@FZ\5g&hIT'j[E3&\QLKeVN>P4TbeBqp+I4Wr^(?&;@Y%be@NCC*T>c/0J)jT5fA#:C(l:oR+TT1><_ns-rP8_2mXJ]CjN,A+;0$u"WPg(*h!3i'mk+A'"5bRGNGghVI@SR);jld-W+A=:CnKEXG%9^0NLjF2If(tg-,GMf(^hQJF>r@$UHZ?&cV2%?hQVD:e`V)"e8_oa6UM(r%.6&mNTQ3Cdg/[-jTYrG33\/s[[sT%)K-ecLQ2uPgLuSqJ^OA5S>k=X<+(J*C$gR6F>90Z[/8um/_[uD[T'jD,Qmqum3\Y,W8jD*#@9u`O?r1+!&@X(_&feN63mKu-!\3TIqHO76jjSc(*pl5=LDMT0RG[8eK+(SsLD9MlLW8O[N)itqfYM&p_SX^Uk,#@VgnBdFp[%%%jFfR0*S_ea-Tal'f]9P=MIE^sAO7@tcZ\M^"S)bV'mD_U4Hnd9'?D3ShN!LVPmu_&Y<-C'Sp>hhI6qODd,"cngf;FZ4=6'$sFak!(ndTd%LA0Vo%fB;\/jZPu*PAADmGK--oS=bVJA0d30cg9Jg\qVj_+M`POmiqf<4+ZOCK/T>P'(iso4bFhsi]o8s"MN\U))2fno=e+7)/W@Xf#5Va6bi8@9\1r,>`E:Le55SeUc_Q4q6f+_YjX"RKiJW$l`L&F;MnpM!J7m`hJW^7"SD#&E&gdQb#>/B.\AX^p;"Eu`*oa!2,O[o(3/ZZ6PcuZPjfG`g-clRLCEL%MZ]k]I#m/k4A"?,#<_O&ld30[Y#7$hlLZT^35n/Tnk5aXaN\,A:f10r(&;2(h3"[o?VJ!4J@MI(4iTB9UGK4YP5Lb6F//,@_*ubmjd$uQ6b%@pCm'P_PiE"o!Gg7Cl-\5g%=\5g&h]1crb1K'-Fq>;e*@`"D@?5da.A/Jls[/:I2&l`HR]"(n_IRkKl"h',b->PeRbnOu,?O3r?E#\Ph&@e[`6A]W$d@:j?6V!WFK->VnU9TQfc.t0u`o:%72ZXllXf1:9e6$np9;86PmK/;l\Jo$Uiq/_.;VCMp\>8/=lXS-t&@Z]+=<8)ibBo]l*5$?<`#6Uips9-`G(+'mcYOf_Wq/+rnM&^TG::eKr5D69UJoId4_4]afiE!SM:UjE7SMX:45a?@;9jagK-jfN(+TMT%J$^cDme!3^K`?:SRQ-:4Gf.?%Psjp^e)%[:pb`_jp#ViEDk@2@@3C@osRTJB$#Q)=a(dcuELC?.nK6Z\4.&6.e&F<40tAjJ8.+<4\llgW2T]86Mm^d1uc5fm/$B(6nXGp\T^iW8Mf;"o1l;M.3W:J/M8l/>A#bWQalS+ps,U6lBY5?q(H&^*Q_Crdh2HH+t5(f5iu9QS3o8jaWqZ0@W2G:OMgV.@`_^>UC-?O9E^1MqF.J:%*E]Lpks3?l3])T\=J+tG#sD5_Is,4$I\B,=#`O;_RN[jlgP45J+k=UlW8j8e&?(I.Z:kerNsWM&!?@8cgH+iLiN!u$YO;jKhLQ3,Hb]/XIEl(=d17P5+8_94E=)"'5<9?7k`F0`Nub1Zl/4ILh17lV#IC'Hr=F,l1\#E+,nCAWR1djEedejAWo*#jZhZjsm`.A]R*@r^PVbKPga_)/go:n%Xhq3WXhq3S(N))>(Cdh\[gKSO[gKU50#F_;8%;R0;Rf`:GP=WO%a=W*eZH0q'NE5(BB`3#Pa;40$&I"#!JnKCaT9&/1;U\jt`++/^uf]*VHVdo9$Z.[]8>m&=/+;$I&SjuC6AM`1K`_Hd_Rg9=T?U^HVaW=%S,!5iSAF3?G!B1+`gglO_;p`L^YtT"=?D\T")?3*b'S-u?FR4)'6KkR"kogp3eGBh_;S+fFN6X16t+W'HW[-&3ME3jk2iUMsHVc!0e$dd*SOHVF(YCJgfm$Xgi798]1*gA&lu*j1^d_*F?t^=N!76%Y':BI/p11?P['_^MH:ILLgnN\:mX:,nN)^;aLro\$Cb$$1scbY885U"V.=)+!3U22Ct`Cq&NQ8]m%4hVA9,n62KZ[V/[%"5#6rM7[o+SiE"ol2V+!RN)_SDA@%h#e/MdH*7^=_QC8`XY*u9E2u>03eppn>D6:TL;S&AUUFm+oJ^'I2>4O\H:LIY*<3U#.]\>XJ*J`$uq=h"Wl)Jhkm1FP<%Uj1tU%g%2;4d1g:hnX_Bp'6LK#qUUP@IQ`NJ6&2*4Q9rs97T7UMRt6q+Zuq]GMj'+5TQbh^7j+3090S/1tI(*qg9Kd15,$g$!Fa,@rP$Y@>5S3%CZ\R$Fb%s9#@^IXU=#fiE!Q%DRC@"FV,#oDA@%(DA@&3iLnukefu7e=WK,Zh":LDU#btZ+"I*-Dgf.VV\r1MM8e#.VrlT(^A$,tao+Gm/%PQ)T9Oa%JO`?Sqr.9BejduNX:CRh7\`m.YE>pJq&S]64+I6GagK-j]GBl.7^"f5[8=D(ZR9;!AEb`Q\gO6t^&ajO/p(X.J`*r@eH-k>2,h>Dl.dfVuX0N52g\lD+WK>C="Vo='B&S.OCFsJR/p7N#WbXu,q&mf5HAh,"4?s_`\@]'-"H_1t;%NYM(85.^C!.>Jo:*TJ"4b44ZGm@c`389NUPgH,]f3),>'5eP&'lMP,iDuH,mRnH\(]a<5e'h(qr]*A;^97urq:%\MurLKb3h:6hmiB1eKQ:6r\tcCEQ9\RrC;iurOn0k'U;-.\=!_].K?*-HQ1A$>(@9a\o"8)RGl>VIfJ&Eg@6Qcf]YJ]L-3o)+H=lV[F5ds7SghQkN0`L[WgPNtek-,B(V,5>"?4#W/`a#f!(]^EuaZZnD@EbWgleA:'Rk0+jPTHX.CD:"&RN!r!!_cSH96ZC;-I]1/WUu-sjR7aPeRgs3&MMVrsO6LnB_0P^)l&H-R"4Ii7kh4g>:C"o!oL'.s'm0e@bg]n[gDq[s[mEGSqKuM=d4)nGYm14=64%8?)O+W0^LC[?DVeJ]8fBika+%eX*I#.!5.eS`Tj`qqm6D!#ZZ@9@%XL%_s6=!i[DfA_pC<8`WWUCB`rV1tcuG>nJ)5`BD'(h"m^B$G@t1b9D2:j3lE1V]:mo_9+hQtf!M+/ti*AUi^N=G%_3g7!iE"ol+6n<&lhmf-n@g=keSRDni^;bJ&UTD5U>=7Z#SIT1@.A#Dr5o\K>+0AQ.uacjae03K/V;psT)_hB,a=C!O>qtukFCR/1eL;A^?#=u<%j)u(jP'2=-Q/LS$lu#`=Dg[-j4o8EH:OKqhr[PPK4-5QQgcApef)Z";:PW!MC9.4TiUef$fgJeWki;+NdikUt^4Dt+3Ihe:"D2*&Z_k0u5J_4)kpq<+X)WaroA\C2iNpXaijAc87*c=nDriFQTc22SSTaboFOr[^W>fIWQZO.'6%PSb;OO@LBA^f"9W&%.oBd\j[r;&hf)B?a4*?>lPaDLI/sT#>@tFsY9`&cZa%W\9iKnT!Drq#6n@K(S_Bn>jI?quBGa3PbOT1?'joRgZ.J,%_[n]+;E5u3a'%^2eJ;*l9Bgdf+dp[O&fiHMNuj!A**>!lVipq8).P0'p])E1k>5pkA:ga_*Z&&PG$7C^mkiDu;+'lN\b\CHjp@c:AHC)hn29b%@:[gKUu's,9S_Q=1(s(#NDk47u:hM_CSR\RrAe43kAG)rI&2T3X;li>9Rqf_eq0-]oq>)pVO0XaJ.!q1di"dV4H^$er^s'B1D`9;,ugj2Q)V,AcR+g`Kk2L6r,`3olGB0ai0$rF]<<)DG26A@N`1@@9+&=QRP>-4V/rka^HG_&S,<^#:5Q4mL\qaW[4CUV&ff9QOCj)EtdZ$[,]=El+(>k(L-M/A).7CgL!jRQKoqFTfs++&W]j3]t_V0mq1\_^q%F1QQ@>8E9g3WT;="Z'+e!b0ju\fH"cqe6&iB6-C^3FQ',.1Z4$2(YPi1L0VAX7dDA@'>#N8_BD6:8>A]."9blVfP9\k_>UeGXghJ@plLG[c,i!,jga_)O#e(/M.X:-2>D6:8>D69U^o`W]X:=;bDSG)=9:gV1q^(jW_ic+fXd2*Am%EEDO3a/?qhK5=GbE0**9$ka%X8B711gMU(1ZFcs2@2Qj&cR7;12$:@d.Oo_FV75f7\kR[&=EI4PE!;TEDN.1L$Z\=Eut.?Nk#nPL(\ugh=$/YP9"=*p.bo[fN)k]lt*K'K0G4A!31(slL6p"61H@`!#Ek0XPdC+f(4l,Pin/^mWk(;2TJK`\BF-O;=Jnj@lT!u5X/(-0.!_;*CG*o:/CR",nB_LK+H!*^Jo1o:5Ip1@KgTaU+r^d,;1u!QfHE\;A^V5.blN/WXltK_Q=1()C4ofF>O;Yp%CZ\Rg(b:j"CDtllF;icF3jQ,**aU_0!Q[J8$fol4R?S)#m_`RGNqjoG9eIV[da[c@"@jT0FnjLUrkX8"7qc<#59-nMLqc9A0\57tZc8'Yu]4Z&0@O;f/c(0a%%\JV)nSfE/PDBjG+$#1A!U&a-du&TNUN$XQ6^iA\$nI(+pjkAIITc1(F@aOP*N4@1^<.#El$tWN&?/$9@"SCM0h1*N,MFhMZ9]JPV\Nu5*KE&/Js2YX"JuUWC#f9^a$.Kfhj^:aX?]!DOQj7s/4O[p1VlI$=tpe:3GHdn"'"@i_qfP^7tcocbVob\(6#7D3#%5$F^AOl@X&Vc#B_&X)P+YX7>-h(N't*F[^3T[gKSO[i,Y53TD=t+-oq"#^Fo>WO8VYl_r#aDKI^#;UY1g\dAbqWS1@_[ba6!7_YFf`@;C4rj=2#%#HKXq.[)U`a6bPa;\*O'*%k"H%FZWu%d0hUP1?dtd>I^81?.??FXVO6"-lTR(u=p>S1&^O:6HKH6+Ja9nFVDEp6V[Ec[>AmES\WfAa1o5(%e+"(uOah)rc"1.Aeduk5;M4:mp&[NAWTlDck5`>-Wfl]8dVI*LalN>R-@&1q#Cl[JQX#hIMOA6AfYq:P[^.Ci$JXH_rrW,ffX4)D@uaAEJ/eKJS=Rqs5>!R>%tm)_:-$)F2iX>)`[j/'^bQTWuaiR_u8ocWnnl\IW$hd(GTa4N&DRJF'=XPjglQ=8AfT)oR_7O+bth5mQ3>Uq,qIo>k\9#W5.jWQa**a$UPVS:c9%MP8h!ha5sO.1*Hj[gKV0K5dl1X)P+YX0$?ABt.idEYJQ^h9P/,ANZO-CVIncpI2Nnd`Wld;1oNo#.n-\#*9bL)B9*'J=`ag!'4/c!d)*[t6!=X[Dnc?(hna[.@n(iBLZ!pAjM"YnIr&j)HBe0/]@-$Vh5:=V<3X;J::`2(C=L062GM)8@mfcN?jq>&)]PrUuj*UJCj(lQf;V#2+HoZ7o%SD]\b&8AnIYIF(A"uOL:ElQ@*\lm)#.FY-RE/tf@4A0LdV]l?8N;lL">0hN#!!Viclj_-lppeln6&>=j8!H;`=Qi0>&j)f4:Y_p3J6=?fT6_h/sT;OrrPQEj"kf`D68r_QC8aXY-dZ_QA,.ga_+EM?pZu[gKS_$fP-M_`eiRFf5ST$F_L<>A]."?![bh>P1Co$'lGlE_Q>/?I;CHPFl_3"-#;h),qkl4Q(/`:PRJA#/m04>FE4*dI<;c*F`='c@rS_aD<\SO=[#h@>+R/\/tFEDK3Jd#GGHHdD]irZ5O!>32BuR(VIs*&Rt'TuRf[dj*9)>Y]d-F0?XHak6$_O=Pt(ta7Z;)(khqoBtfIPj/s;1,m`6X'".ga_)/go:n%XgZ*K_Q>kP>D69%!*Cf-.bsD6;K6F^%*XWGE6KTu2mSZ;*MuNsoa+9&IkK8]iI25aS4bj&3Z-Aj^'-F0/p-D0'cM?]9IILR%i8*J;R"sjdGb$e@5_(pM*G3,CYnf;-Qu_&@,-bi5Qra^#o,^)-p$k.R_Zd,A%f:rb`*M=B]9rUGRO,Ji,l5Ae6^GW6^a;3$*%T'#N8_BImX^eH`\d4USbt"X`HBm(nLOQY6`^7e%n]!#srfDCB4./8`/M%l"/Eg+h*2N<9$4/_'9t6mLK2h>'gWIS,8m7!=]LOmTqPb1eN/QWXinK%me:EA"u-r8Lr]YnD-\)e,)5Z#aG,%q!NplhlIj4A659@(KW+!k:/)6h2b.C7foUZ4R5S`Z!`%`A4lu(*7=uC2E@3:;dVsMpS(S[lrC=ILI%9R3(j]uRZVSdARE3!rY4p\WD-/@c0_Q@,N\%7B7Wrm]\\5g&h0)#a_g'kI%h"eji`qSY8X%C.#iE"o<]+AipDH-tOg'Y=#]Us/DX`1=[Wt*u8iDtS5u)`;Z,^LH%X4Lkn8`>#ZgEdEf]Nd$[-n*R5@@k1U=:U1a*Q7mgpd_k;s2>Tb^uLEY$"du%_23M3/rMo3hHDBH:95ukq9RMdYh*.nkD.&!pUjZ3h/"4If5bGmNB1B3s.b.cE^K1T]ZIEs:mm4b?@o//+^c;8J!dP7@5Dd-NBo9Y;teHt1CaJTX\-o_$/T8ja)?=_0YV&h$F0nfkh#iB^"P9gLBJoJM^j:Tk76bf158>3>+kbAT[.KRIBS0>bO_QC\WqB4QCgo:p'[2j.-Gq1oa[q^O=_QC\Wp2aD0_QC\W$?R,&eOI(!jKKk_>9,31Xhq1IiE"^l>5Shd[9d2DCQMTc]t^;a<_p!hdJd&KcO<$Qn(1Bl;YkY]_gM2^[`ls-s9lF/\.[L/'GqGU#aUV+"S9BUER5Lo6O-UXa#Ni$pes!Ve;Iqctj]Kp,\PeO#&V.8/c*\7TJ?9U)sRc0sdn:N'*Q7473:0c3#s4Xo)MBVDB3"qf"'/MO!oI4Q?#GhWt&>I-$hu:@S+1I6e0L;1c,7kVXpBR'Hh.+0eLfj^7YJl=)SD@Lh*r3sA6#9ut?;l1D4&8@MY*AdG(SJ(KJo4'(RjEI]'`h>1P8#*Le04jC6/.-YKNj.7Kj449\CFWieOB8k#e(/Mg?!H0Tq?;)m;T+F/%'EZE3!rY>mRoS,M[$SKNj]lKj078Kj3pGWeO_pLKfI:Kj078m/rCjDA@%(DA@%H3O]nYc]me8FET&I(U"TElQo>t3*#Opl`VsE>aR*G+3j29Z+/?fSP^M#'Kh_BnM&0O@om@p\@4f6amMYZS@+h@=%X$+KEcf1NjFlli)XI^%Bo@9pjL$0jAqLQE5E`tP!er2N^4]\WEV6gY^sXH**!Nq1EF';%>SkH$NhTgf/bT=AoV/PHA@6'md4son@jFS0a(OR1-X8k>UoWBPZO9RKl6=MR5/pO8F.@ug'A1aZBX!r6s;\,97kJL_dom3FG3qQ>D6;S6+Bq)pH8iD@<]6j.b5"0i$XLHaK.@UA\c5#-bR)Q8OS;2:c>1B]FrH'&N.1Db>,fV8t`^s5W/6\-b+kju;lJj=D>7He?Or+UJTN_B\s31rt\V[dbu-AX$GRJR.I&n[i5ET7$Y5P/(WA?ekl>RPd$qWmjR[gKTZj@J61YCp+c#n.D`'lI#bD"DVHc#B`,r?pCc9)]fJ2(@nN@r\PZ7mC1_Z923/H8o-74TB6>b1^mX/Kb#=,p3&E&![Q(<_?C_9-nAkR?I7%a\HG?`k$)r5+F9/)=5H9c^uYs7^s1[LI[Tuh,J$,S?V?t(60#2q#eTp`?T;KT5dgWZ8%Y`^g\AmDHpAYV-p<`$6epA!G-+7/h1Q,Ggeh:mI[:H\,iCW!X?T+Adh%`!3,PJ)&c_pKBP+2GN-kCop\003%bM7lXHLh,!1e&P3b==/>X4O7OD;OT225opu+]KI_6j[VfmVt$QbhH$3aMXc!%29^:&"!*=CRX-2(sVR79e2/_I_K`:1Dn0<4l]TP(^Dn)dI"&X%BP)e*bGL^id>JGVA'R5=^'2\dO)ZqK=\n/Wkt\2p`O9'd14kf?4"FVo_'B,_J,(kQ=.FRs(YO0YtC_o&UnXhq4:+P\I%W^,ZbX)P+F^)Cn>#"+&JKj3s8B*XiDX&m0?_QCiLkA[In_4]afiE!R"VY^\/]!S)KX)P+Fc,6[#Xhq1Y$YSW5\%3,gFh(.u>@$OQiDsklDKY$md?=`23=o9%9QOl6%kUkE^7pucbE9#hB5qX>1c*9#D0NO.BE(KGl@%%r>nrA[7Y^8sFC/AVL@%bV"i!m4Gs/=#5L_BTYrPp!.FraKu:XC0Ek4WcKa&?SI9R'j2*.T3FgqMq/$*p[L^#fllj8^DW.B_nmhfT#Ga'53:#q5h\--^0(XYp3.H:EPh/5T$mRhip\7[j=7!685G3,k)&T/>$'lMP,iDuH,R?;$pu;+4CS+i$bA%8=IKSq"k^D`'"k-9-?AX^LLlVY#UN$CM%U^@@%^?Nj*'cXW]b8X!0R"$nIV>cCs7'/pW=0f?B::pUU:`#R)m0+FlX>)(,mJ#BgW(`$_qd/Y8,;JeSct`;[f91E[p&,VSAKG-/(V5;BJjJ[aPL451$(ln6"Qdqr>G*uIQq:Jr&93"@8J?Fp5R&q\#\GT%,q(aW*s0oV?^R'cV=tl1g\phdE>lWASh4h4`/:!<#`l&%CP(>[osu3Q\6t,3X)P+Y.k64I2le^O5N%4M&(g=3uk7CNp,/k[TjLkkjS!m!B$'Qpb&%?VL'[P)t#(;4.iP3pt$NN]PCkYJZ>1VG&sl.(G`$MDb&IQ9J\T;o3FH`"'T]e$1G.PN#H7KZ,5fBFJl)T+,]"9mq3j3tgK[SR"P^J^neWc-Z_:`t5s-M5iP;4(M0.!*[4.(rD-1a.e5;<'903PQMLVSiAQ6&c=QgpNBq*oZW_T[kO-459PMs5k?Ab;9X6JBuMj\D>_*aKNj.7Kj449\CH:PX)KT.\o=]hX8ZMLiE"oN&U]7C^n/@*iknE3!rYE3&AFX)P+YX)P+YX)S\gFX^um8\!;o\5g&h38Ef?Z&b.Y#4j-[X0pp.P2YDWP-r\H#tt[UF>.UO]raNrpsB`,ef0`UR:nE*(!R&Mrb$1RZ+/Z$eFpjfJ`0L`:LM.f3=\(YIDsU/ZkBqH,*M@,2i?5e'h(j$#)l&+M^\sYJPoThoP9ng3[ph!(D$UWYEq2\2qJjg,\$&q,`si\(.o/FjVqMpiV_kPD#3(_R2%56/Vq2m40beB<7`fN&*">%=l9$:Np@]pY48!VMAW?boqp^1+r\_3H2D9WF$G^c-S*Z79!^*+cPd*qbMVg`]L\h9Je"bIh!gOWi<%!W3M^:[NauYR@U_EKipW(O.C^VWmI>!N1<:aiYs(>Q]I:R%#IgF?k>C(>I4R8lX?6oI$"DH)]-]FuhrHa[pf7V])a2)2CjG<=U&TMVn9nC[]d!6B$u3;4:Dl6EpOrjKNj#tHObdf`h:,k[HG@oPc2EOA:D69eO]rhhG&tc=0OM+?>hG1TCrpuNCVq0\(8^lM^]&;r/P#f=KWi"oE22O*P4Rk_Q+Xidb4fK"KD``\3kdr">5/?u";$q75@AYH`@$mQ;u4+R"aZBG3D;7+s\n,Z1sJ3dp^GH&,IsqX2A+cRA`J;2!:(nr)=Us+.fYkAI`CE'6c0-jfU.1palmo)_t-QVBQ,K:5&)W$i"9s]&p#S\6hJp#"rNSK7$Ne$@o_E;ikAE&#ZPBo8//&@HP/qu"`H_Fe^tZb7ubYL*U0_>8nEKgHt!?9%Jq!_";Bj0oChneA:GjQ>JAAi6RE8FP+)H$h-NugnTm:%eGK*du'od,Fd*FLZ[B'+q\pA*fdVm2`.Xhq3WXnj0q.bq$8DRC3sFV3S5j+8GkXhq3WXW7:)\5g&h!>'-+3>aU..bq$8DA@%hn,_pO"?"&up)LqZ)<"WVJg&"5_QC\W*;r.4m'A9GCYZI6k%\CG4VrUH%HrRn;!E3"%!_\0K0\T;CVY-n.-J5G00BdY&0Z`0otKQK]%mcNiF:'UP'i=8!k*r06\NXp%A;.D_!HG8:\[ZDgu3pPa%;MMP!Qgng_J1/"\&4#A;ZZ@KouTte`6/T0ZgYi@!8-Ei+^R]T2Jd\pYZ3d$37]AYW$'lFb(2(h]hga_)/ga_)/ghOD+\!e;q_QC8`Xhq1ejAncg/fD?KZftIm*R72f4'CcX3o"JW4B$:ooWVkTk38&^kDkn!=W`s"5.t9CNGpBQ&H?kM2?!7+SrW)aNY3Dr8F(-6Z?`2j5\-B4%2)FkN5+kN5N^"g#jg;Z6',IlJDEf(D`OW2R]3jcI6KTR$nY2DIX!_([81QEL,TMH.C9/+ID=2F.X$#ED4a&j?!s%'Vhst8TR?V7TqZ/LkhX9c[pKi3#`9^e_u6m+4IK6/2rXf"aEOR@]t.PDPDeTlUUT+)uC4.2s/Zc#!3h?u\s:_IX\DY6KX-UQZ5^YJJ6pmihNJtj`H[$Y`BOl`"gr^[,chMl4q<'C2kh29B5$e;,M!<]Uo7Vk!H`,5\V/2M&+1(]FkD"ch*f&\bDL52\;Gu(FGRc$%^5H9?4=YcNCKMT,H!'c?>^s^L5ut^.-"17$F^AO$F^AORP)IZ-3o1;&\6Fnrq2mVNd^7)96dg-S1cn92CNk0r4/!BQWoTKp]rS/ghCLJdQ.dt7N!icN\0\GiM&'jCNeTBq*#I6XRkDo/=b2;aqf&'I9C6R?]DTTnc[1rIMe=6fU*>hKDOAC8YkU+8'@)B@)At:H`=D:lJuI4UXc/X6SsA=WQe[fc"Pfdt$V!B4KaXKg!!t2cd.;qH/VPJms^VmPguFgi,JJIc,Xj&E-[K4aO]!tL9LIU&e35)g-:$+f;S=^9"l]c"lU\Ud5?&%C7$[gKSW_QC\W_Q>.Q\CE+ga0#4%Chn9U/-6^C"HS5nF/b&-QnoKNj.7Kj0OjE2t)eJfk>N?r)G[Kj078NJ2>P+:*QA#_HG[KNj.7?(9VaD6P8.$`?U'Gi=$A\5a(C5nF/bE"+#H.blN/C+P$B"[N\&5nF0G,2=['.bnbiKNeUG&-P91"FD?J.bs;-k>j*cq3(cM^&.Sal>HY%5QAN8]jes4"Uc*3/6P;1#RNp*+VZ(E'G1N)q'I:_&s5S8KV'^5eDs@NUd05m0cg#Vl-4?_4O)pS.A#Z3\GKq:HG?ZRB9$hFh]tIs/j0utR5=fcRIbM[pAL*c=E%3u[c69)iSibSiSf'no?=S,pjWm\=9*Hnq;A:)!OWYVE>W+j>BL%W't;`N1u)+o4?P_g4?P_g$P'W\[hZC&MMBlCLPLY?LPLY?B>NQ8ijO.kgPSg3NBMXhaqnK4Ad\Ng(S'6;LPLY?LPLY?B>Jl)D)F="cj]Q%^hbENcd*VccZ24(s5jZ\TDSh4ZepP0%M(sRH[sk.gZllj[hTDa%hB0]%hI!<_emA0`GN#WiO7b)iSibSiSi`uE4E$[XgkK61u)+o4?P_g4?P_g$dQ*0"oD=qFpgPUcALPLY?LPKNYiO7aSijN%Z:!Z6lOiRGu5OE9D@1tJ.iU?"6)7D#3OfF$D7gf@3o\?1"#G^+IXG^+HK*,[9E.rMC&%C[&_%hB0]%hB2sK#;HED=q_R(PCB0G/hG(N`Q?iSibSiSibS=`CmQ\?2@I[S"J)!rWW&TfC7i4bUrI&X]#7#W"9s_Xo6MN=WkLe,sDa)OEolafEb3hWC>bqu,II3amSTZ);L9Jb2c)?F7MUg(eX0B8hRN-EY3P6s?Q\h6>3Nq1i\_Dd9i'OLqCkZ>Nl(SP6^X74(1q.o2n]RI1D@XtU]Sf",\AP%4):0m3gKX%:@a_4AM[6TJ^'/Rh58g3r<$u\1Q/\7j[X6Z5/VDQ-:``W#L^M$O=MugZW^g.9fjO&jZ[F9^"*685OIngp@h_;f(,X*I&hUTB:a=c33c(3sPPu^hq&-`GP8LiO7aSijN=OB*k%DC]TTDQ=Qe[hZ@e\(0JId3-f,C+BW6*c-V*^'G/>a.P($KM*+F#>]sam+,obZIV9n9ac,;.Yh"/Xu[f72:mJ$AbPJ`2g7:K(:*-53m>I(GIecP58%2.OBe`Ho[5L4cmC@1nHe_mKG@@si5oUT*k\Pq#)BLF_I(i2pg)>U^XTV^mI4nN?`h!j&g(*mLdj]FUcS_L;/o$"-UNB?H!p(%uq55,DP*WAK>.@ZZ>ZtBQAU3a2W[6d'nfh8*Y.hh[d)/u2b/st_pT6RH2,mcOFe8?IO[\0V+90Z%:NGQNY.g?iBbUG6j+Eu2*r&me!^BpC!Csg@)Qbm$S3?7s]59"Et'tO?M]/Rka%E>^@G*D.+SKKOT:=K`o-hm*9sUdkj<):JOg=,mgHrs4:$'(*KP;po#Nq=&[rLa't;^$KA2:m.rHkT.rHkT.rHkTWtuM['t4peeY8ed?sacMpusjWN!,h=)M)aG"qsl/mDnhF@^gls8IllSi,T[NgLs4;,H'CltV,s?n6Qk$f'[GR"aUlb/\nVii8J*C&PQk25[(,U7cBP+c/M43&1a$p64fM$TE)o#"8e_fD/0H@4cC#:XOoeNX+ct]*WK:@5+2%0=-!!cEI-'FPk@`o<]pPe&r9;WPb^68Oc)$Coq0)c?/$E@0,,\'XE3_;'3T\,WdOt=R:(=]OKU,(@XD#AR])D4biMhB*ke>B*lP-]?`:gPXaCgPXaCgPXbN`PcW4D8gA"\4ED'ifR"2mG`C.L]h/\cCL%DLYD$S9,E+:lkY?WHqlhLRZ0T2`L_Ddo.#!U/$PN_o\3CK+G-l+'b)6H/QT@/b$SVs'pJ%7JQ(elf)(nIu8k[=r5d;/[=C,(O^DES*I:T81sO+@`cG3T5`=2d$"F8g752baXqe(iH\](#t_juMndPXah5)3p&/(b4oP7Y?Ho@4gr:tU_?Z,cCQH,T?243+)h,o\K"n8dHqlKE*e9P)07"*jokuJVUceeD=t8#C[=Vq:4k)s--Er('^am`-!IV8[8up]6rLEPotgd>Bp-DUpGks2E@(5aFHPA/4"Q:fgn:Ru">-3K308P.%UQW^qfts3n:j`K/f_OlPru*di0KO1\F!H6XeT-hDC5hoDq;7Zd@^1?3-t^EG?biJjF@C_!Mj":7"HqBa(D#1.c*"$LUD+T1<-]UEm#(o@h"GXb0DiEZi]Z!S;+6"BuFTRY=rmiMJ'*d&S9B1.L3)0eA"m!\*OT]:hb39Vi7*\r]0MP.IJb-npeoa>^QD?*dn32kCj<%?FCEATNNdQs-A@G`ATK27Q*O`Q-LBHX@aFH_YWHV^]Yh):*mg'G:E>/8cfV%uip6uE-/X/s(4NrAIeiEf]F9"&quug?>*=C$$5DC2%[tO,crUs7:,:=`VD)`-_/6Z4a!',ik!f`'*4=^GejG@R1b?Z8DM0pO*SPq%'Q$#q[!NgF]VrHe%6a*M']!V4k\4stHk>LX9bAZ<*pE$0K+HD^_m,/Cn4CV(30Cor:9BjG".g%ssP7FM:DM5?/K[3Dk_l'CfTuFVG_OXmSeq^iFr?V_kmY$NDl*1!Y#2#0(0$O=hSBR2]Yj'AXf[62qgRMKE/[/O7eh1e=q/+c++rds1'/o"pKIs*__+R9._CenQluYd,]#F_d#s?kL%JiR9IbXRl,AaP;$e=WSqGgWK92XL"AWJIJhn8d6#L9Ee87*1m3Wd>2k.Xf`<`l@/F_EFoC,Yt#2#65O_R6ECeY`>8oLSFJCcQ0s.g&"Ut=&H_s@a6a"rD89]9*.E)=]C0C',dl0rPeE*g,?OTF?Vb(Qf71LToFKKC-,Hd\J/NKCV(!t6,)_6u'#%%@AUfpE)79cLpYB,B(cc:VO"],MZ4m=M2ohLPHTmt:61&&IePqng/Od!S)lq;P=dqW9U'IdpcaIf1_*^H;n\Da"EXofp6=lO(")(OW[qs0]VW>Asst%0l$p2*n.b!*p?Rpl.>eP+E0<1,B]P2'X,bAnJhoRlA4Md_7;DPH\2_FUi?I$:hS="GaGoTBt>;LUV,TcZei.DmHgh[n5?4_Tj0@0h]$jG;n=3Rg"$1mY747B#1TN?A=rU$g1K:F9"os(AM#mXbOFP,1sVTUI(i^FVDEp3>;CuHRHIt[6rT[4iP.k45eB>4!FLgf7j2#;B1/_5LSj_.pk:4Z1O/tllc4NoHQ?qaTq=U(T66GpKpO"6/M@n^od(?JEu*B#rQq0#ktJ.GOn'Ee_IhB57F#IppC;odR=fg`U.1#J0-lD<^Q`[WO%UfX=(L%gSn?05lA>=[I",3h4ur!QTD\_s-!ochfKU[sdN1e%SN7oaLWW[<*f\YSg%DA>CV;YR-0sA:jNj-?'s]%'JrVi6:$\p?XBh3%W^g?NS7a]>=19?>-cH5r9L5=>U/o_+oeL>51Xa2ZP1g&JDc?^hq&-`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GNS2`GP;7[T-'\%/#Au/PQ\SQ->[SBo>TIB]LHWko#Ss3*KsqS/k8HG%'QoSZr-RrK$XFrjUgf2tt4H@l]H-IcM@,*^9[tSiI%BI^lbPMr4O?Q[ZFM"aBR3W1[g$q1U9_D=u7P];VV'7VJl=JDOZN_LY[KE!0iG+rZ6NGi,6)$&D)\0JYTr_ZQn%,,L.DE>VcE(jcNu%nC#REXZQW-PeKr3Td0KcTEeCc==I2]s/FfO+fiDW&@5V7pd'@NhP)NfL&.cc%0*'#Sjb8$&0(/>3N@h1jg0d/[k`[?GeES/Vo"Y/%'l%gVA%CPI,W)R+pA^Z*N?_Y#@=Gk![p$X#1q!=bRY3I-?X,b#oWc)<:*JGrmYVZLCWmMLaBn&F[8e()d.Te3t9,j[DdV`csPU4^G[,b_RhW.$:D;e!]1X\.G)Qp#rll<_Q_oB-;K@UtfH>$8X+jnqcWV8CK9lX)Bh1J%EHptE(o5$L2]1Z\@P\M[7/0k.U8*R8Z(3G8*s2'g]rk+VVdLY5BJpV\LTqJ(>na_U3f%.'m]"05eQQ#/V&.1iB'o\rE7M68noe.X=d?pctqc3d*_9d:"LFMgd6P.#^dI&hU*)&C):.Nh$_V*1'F#+o@W6`hq>'bd:!0P%KBH0k"a9%3uI`O/>N](G39Jd=\#fTSph?_Je1^'A:6bPCc>eD"Zal:`VP+BbTNgI.T4Y_Xt2hFd1TCbK8=G8^eMn8?r;tJCe5dM&ek%Mde4n)o,.f,SN9O'6/L!]ZFm,_.f;37\Soe22,t?!.fd0h]I?[fo\5XrN+$NB@pOM+`.>co`@?hb0Uh82]LFHqRK.sW\"&*Ob$radE?m]YJ9^``dp[!L24hHEc+2MW.2GE3PJ^I_23qj=^Si@,,f<<$?[60he.ZELqKpgWPRe*2N(aaV_R.bb-[o`(-#TbWq>HLu-(IN&)/l>4-;Ku?u.D;7K#%^&JU2YA%)E>K\4o?Z*.K)[n#aa/H"'oLCe7GG]8p-Pi@,AC"I';rA.]MQYH\GN)l7^J1mm5^];rB`])VWN-&n_/j:@!BoKn6n+&A!8t!dB==9d+]G%Rfb$_1]]8pUr0J5T97%_NI,*r-;dd>/t(1f`F1&\]UVA^dg=2ECk[EsD4,PXrD&;t^!^JpMK%;H@60Gk=N6!"6f44q*G\?39C\?39C\?39C\?39C\?39C\?39C\?39C\?39C\?39C\?39C\?39C\?39C\?2?t[YdSe@%79r84eCN@i6gN5\ej1u0=MAI](Li6b@n#Di(`XTAXT$%"(`;OndI@Ii6\R7'C]Yq1VdXm`AhfLU+,Dp5'@ZHR8e&i&fdI*U_I8]pLS,G/3d.F=67OFqLlN!=1KBN`7/5hrOE4A\Q6XN<)P(1:PT\*aR@-sji7(q,-5@OmX/4lk2W%0VC10S8TXNoM^MaeLq&IWo:)jn,*uAt'5s740WamVDPXI@.Vl([_0EW"cFLKi77%j;;.uB;_ktRfQGrj3-g+!U$Wr<-HWn=S;I/l1O@NAt;2(2(g1.g:/#tZa*tNf5?-`.s]M`iG^\K+4#M+UU`(H,Fpdu@jb'ioZ_/*Ie,To?,$]@\+3ofmlEQZ/qu*Q)j4i88Q.6#9R&\(SC=Rj8p%et[^7mD\MuY?MVe:3SgoqhP8\[ks>KZQ>W]+bto5$J4Z"+,p9Yln&&TjG1_"68DW;hq*pn-0RZ0t\+g@lMq4u`PVF/QhH?_QSOcmJS7Sq[102^*;;2?`T)a;lFM-Qdqa$Xpp6KgD=a`I3dd7XTed;ZdDt?*u"RU@YM8?qWrn]Tfr0fiHO*]<^@3l)dJ=?MtsaBC1FtG6qUtG[EKS]a%oXG6#@=r]#$=DLQX-DFc_$rXNh9ru1*k/8IfhQqO9='!P!jP%$,2Q9`7SKc[u^7@1b0!\LPDbEljMM6j7IVdaLIVZnV"MC^djMq[G2l#;@qNb,/>::rW^O=OUc8[u<2T_#:g^8-ML>?#"P;M.,*"YQcWWnSc.Z\6`8KrP#;o'@jjiEL%6I7'A_^(1!\2h>1?#!G+uL]gr@P7RA>Z+:L$qEe"a;%25\gfE32gfE32gfE32gfE32gfE32gfE32gfE32gfE32gfE32gfE32gfE32gfE32gfE32c[K)haN90MZl7M)I^\QRuak'6oQ"#fht*iV5,BN)$MXAQql'$Zt[^^e>Xl+$CW0kGe^I+n^+H4YE\1e,i&F*=C7a^MXcs2lX)I'onh#:7RSEJpMea<7`#&u2j-oSQfuiG&pdapn>?%XTTcC9WfFq&eKL%;^h'-:?%?AV&Bq("V/^2r77GofT\mSg4Rl&>44q#8Y=K@(HR/G.m!C$>Q\o)rMC^ecNRjdLf+bA[PZ2a"Q9h>OlD@%M=djQoPsE)t?29d;e5jH1UGK"fG(7D5Qs;;'D9dfk4Zd%`pWG8$HP_WP#nsrE!4C@qnImTtj:mR7S:mm%a+P,(@4(H3E:'NAoeoKKc\%Xdf3g/E#c:iZQuTV^02+=:J[.po;Ut'dMFrblcl#rte(!mWg9km1NGr!o1U)nB=TdQb?OqXghZ-a0YD4Xo2o*(a"@M<@W6<6rdPlb06YMR_R@Bjtmlk^(-?rjF%D7ki250-F&"qtTBkTX[FIs2W:7m,udq<+Ml:m)j\t(#gL%!iO^qBddF1\-\`<1`V@DqIIA6V&NeaVYS.RVj[.D24:-1'>3]aW#kg78E9mLnZieU,`VnC;m&(C,WN:S34XkKh'=oA9U1L6-aE#>Q7#^6m\c3Uk_TF)^B!*uFT5q#QB@'aUf%<$`7q'W-t):t79`b[g>P7$AXZJ7m7\P3@Z&(%>bq')&X(TpHdNN+]rf8"Lbb"JP,U4oUb]8oXa[gT`.YVT&nEEFb3fYO_jM/p%NDroeFZS+37K2!(U#W6a#]*FJZB49HA_6FZ2^a5[#[C?#q&F4K>DOkbP5dP4F"$c"_eRlQrr(96Nku44rGWkYDM4TGD3fVK9$k>^qnhWeF*o+"H5N[8OAthLH2PTY)*_pg#TAogiD^[[MAb@#87(Y08M0>O>7[?dHH'NNbQ?%<&@U$h(22hN;KnJ[K:O9_s)1-@Gu$:cP)]*kmj+DTRRkbsI7d.$[CnRl<[i)m=j55M6FQ2dQUPli2O5%mL3cVe98.o2"aXAM.HiUh@#GPEqslQl:T@;^(7g"FD5Ae_Q_b_g"?I:`@&=hPAZ4N3ktm*Qka\`Lda'SC_4NB[iA^#aD#u;gfTQNN]kT76P01:9W7rQ8hG&Y%\(/j'0`5f,7,JU9V_b%eAZqt\h6`id-Qq^sFQ:%FL)OcUgW&"f^M[&Ik>,X5k"LC?0.5b4LYe\eS'KC8'3`"*IWre64\eWKZOLoenBQ[Ba=!f>)FpJlZ1fSQ0X_FO4GELL=[WKVUl@d&AIE89mB-k21[oq:FSS_,Y`)8in%c!%6_:t=d^4rE@C,cV;a6-:Op`gK"DEs'A3`N`[5\]g!aRfE=^BT1TR&Do(o$Vr0T1[Gs@DbC1E$SMhm81^_N3.'>AA%>PgMDQ/9WgDiP\$[uc3_td=<>ckJ&D7(>,L,L_&42>HI95S(8MM&1r!U)@MJp%j.1h0po)$"T#-Zk]#TVnk/3m6@;/$4S7@4T:"G/;P5Ll`tm?B.>r0*FEa:2jpT?oOC(_b^@d@k"pI-/d5[/Q03HPX;FR%,._=+Ac&H_5\[b<#%`?$a2"05kuGaXgeUu1*KgN`6*dIfc!+@A*B:,RSHWJ(ZtUPR=\$I#+()#Si%).Cg[&(-nhX*X&M6-1Qir.LVoIV?jbKMP7_\"PU57?WRF`RSmhLPs`a]_DrZc"h4u+i%S1Gp&pg@Vl=/tC!gQ1c/h_n7;MD+`#Z_^,=(NQ%IC7Z4SQ/!A;[Qef-.&M;X]?Wd[&t"ZT3+ct'3\];[9FTbuVYpjP:[W\dO\66,`r,0O%pR.k@5eL"S"&$:AH.Wp@"BG<:W@+,mB*G9#.'d31h`nc.^3Y;^n`I_SZrkcL2nsb.Y7#^Y$/'T^7KBSH9lI%!1iX$fPKYWd$K>U="Vr.-HW1u%$b4gI3%J"Ba_a,e^WZ4eQ`/f>s?bPMP7#L!pU4AYj&3^d9$H.h-D`!MF"GH!i*.kY`saZ:]ss3.2_\g@*t9l\N4(OQ9_!A0^;6FC;5uJjiTAAo3r8"?(Z/R'h-lg&IY=T7-%gBT,q?lLZB1e!5Ja?OhBl$"tmcTJPI-Z_[s"qR^.b(P#Li%!=Gh@+LYF4]A[tdL#P4&\YU[N&?l.eQ.5q>:o%h_5s\0@F>K`?+$>"V)))$SM6VR`OoMpM@Hs(RAK"_@]g*/hs.:tpbQja^;esD$>;un=oR8aY#I:WbLYtQj:K$d[%#"*A;4cu5+24DeSk<@c^\)DKER0QX>lC+s?O_,@&$Y7`Z,.BGCY:$L&KqhS6V$0Kp%`Z3Ioc;l=uqK1JN'k#IUJ5I[2'^30E3r?$9a.OjcH4fB6+gmJMp.K7_=]5H(>mZnk!\LD%Q@cBI!3DWP<:[Z:VA&5'ARNn"!UVM(/@2D%Tr2DM(5$o++f1iMF1JT%G-s=WNBg."(J-MP)&R.H^bYe5/jd+.dIDs:hTd]AS\?(YF_*fkP\kSBr4eCrUq[<^S`HFQGc7/W7=EkgQZcQ3/-Qduf:Yd8AI>(1SX-Ae,=4coMQJ_Snce)hY!j/;=L&meJ`:TW]dLXhauuUE8VoS[L$3n*PY>=AT>V-4p\R,h*"Q7JQg0G':;@Hd.pb3Q[ugPRUC?ePfNPka4XdT6.GUg5D984==d5F-N0L#P#cY-_J2XA"'kl\'Q8&pNko=m+d*J?HW)b/jlhdKW?-08Zi#.kg^C"M/pMkq%9jQ\o'fo#pKpd8C&Fg'VfNl+gG?!-a&:Rd7=0>kO/E>ZpVSkYinuJl['Fl_N$7G1LDY8]7V<.gt&#Yk!bd+D_@bQ_ac=i#$a5`=/$Y$/YNeNotZ#'RT^SFoA@g'lnTVu_*@\^4G*1fT"':*\E8i2\Y!F0-%E[:XC0#q^9\BUsQUkI;F)@$dCC(3%kE_/IdiMcoORXl.ZtU!6IChDt`q2ep-Ddm6X/IPJRJ<4#6llYF:;?NmUd$>>a\[`T;U\gh[N&`)-^bu"8c=sGFlDoTXnl58si,5JeAZl;.UL8#=K'()<'J@M^:]p@F?+(+0elRL-Nl\-ik[XCDgS+e2>)=$m%7]j;lCbQ$#i8`*plsj*5\FeVlh029eY]!p6!KT.WWfsAGF^odCOHZel`.a5Wtah%0<)&dlH6n@>:S-h8`_C+%>(dg,)*M/Hni>r/L4\',%"[<]Ap$D_a`aX9&dTt!X62<_m4A,t`)00jug],Pjr`7I&`@d\O_d)pH,iKTcM$pYmP\$ZF'+4&V'lMj:7lK#rc>7J]fBRP"1qJPlJ?96,4/'s=(/\.[CqJ,NNPBJMsGmMmSC3/ld=fRVOeBei4+TSqV!3q,$cJZl="=rOM./%_<@TihJ(LB1QsD:$iVF>R`dVK-W5lbMi982]=C(7_NWBQhok=1o)1[9Dd-e3LY,E7G6bj`Tn'2MmaHQ8t"Nl0*2^jD2%miY1Kn'\XJLP!p!V3Z:\T)@''/5H?<'==$("RDa=Z37'Kf,Bd'b[t,(\T:T0nf7mV1o\Q&eGG6W60JpJQr8%tbps;Xu'6\E/"*NEAOE9\Las%VlELF&@s06$\U`G*8$c-s[2Ae"N[5mtJe*b^38&m!;6PK.O8"$M1tY"Q`jljBH>#L":OAXN+N(_*9/FoPNI=A,t^dB&6HEVsl^Ri([*u*5qh:q2nffT;g`o7S2C\]H)h'Ua106P4G8ThOTP[TLY_p^#Wg5n\@7^)n;>iJOE$GLr#sjgE>?3.)`t6N!(]\X*/afL@AWC8%@+W+67\m\)^Zr??o[(+1YP[-dQ-$^Jb4uV\,HDNSo$G"hP(Em$<,%HDW8(1\_qjTH00DAWb2%(X6HDk%;Hg(-G>*[+Y-1G6gC1e>raJZPM=kX"YJ#Je^Dn>/AT3fEIVb!:FGDGbc+Q*np#3d,NQ*dqqq.K;VkFX!bY8jPsrl[Rh6R]Cb$Lm>*c>9f?[i$XT_G4AH9/B+ORrcr9X!"FlWnF:53F2Xi^0\$HiRliOkc^=b,nB!##A?DeZg$M5)nRN'',CkVLO.s*UOTNu;J''Oml+%=kQjr13;I*ET!4&"#PA-Gc8$'K5'glU__of>f4O1BBklK?O[luU[-^I`*SClmqthdfC-[^[*."aj(e+Xr`(#;*K'-ohH,OrDcsDRCBm:kR#ZbDVc#r6).M6h?)CD#jk3Jka"C'G/upU5RU_&VmHk*hr[ktD-heSp[X3Uc/ihUM7ksD2f?`5NUg">;KlL>p1*)iJ3NGo9r-RncJ+Ng[+h9kFl#tflFqt4,tNqm$d+Ck#c+k"#=Hm^Ldf4SP1/B)KX#20%#4`-([V9A.rHkDRG3VRMVF$CMVF$CMVF$CMVF$CMVF$ClIkWjkAb'N.rHkT.rHkT.rHkT.rHkT.rHkTX/FTN-]T3u88g##[lY]RmZmo@U^KNJG.;8QK'\t53-a0aLMltHE*a>kkI%M/[8gAW?0$,6f=DaL/`_$]Zt)TUkHtWJV7bC"]=%bgo,?TC[hka5=UuRc!U*q>B@ju40<#,h?P[:;Q<<_QQ+_>cp`;lN,BTaEG?TPMC2LCFMpnsK?aJ[_h=&U&ZeM.d8SFULh9GIO"CJJAr(\KDfaZ:\[5nHZm$G+f!P4hI2eWE)91V6"H.;5"eq).E%;ej'q!D6uS_\/.Tp%A3Y'TRuC4QkSg6t^^hIM.j??u&p>3o:'D))KB'@=/NCWedY'LFr6k6OJd-+#m_ClcqDfBb8Fh]]A\KbfFEjrK1*Sjd[Vpl_A,8f+n\^3=X]haA)?;cg:C4;-I3IHu0J"i&kCaZpi67I'Vb+j8nl=4$I<6/Z7HZcY7oT:J`^$-1`1O5X5+<\'i`AJ7N%7?UJ9p5q>n0[b=[)9=%T>&\SImTNgF@95Hi8CFS^F\W%n6;8./D2D&M2:r:;kh;k_c"d8bK`@5_N3S0_/6W:W]E[S33j&sq89-2D02c8:SVHVq;/F?hD2o"O>I.\D;Yg>R=EHn_K]9)UR9YSgCX%d;br=A;K>)@Z)<&_tu&+,gMq]AEmqKAO(MTi,D`=E)^g!S+HkTYM_'mt0\oS)$C&a=mB^BaU^]-/6ZJ64'*nRqn8dI%b-[c4aT[c4aT[c4aT[c4aT[c4aT[c4aT[c4aT[c4aT[c4aT[c4aT[c4aT[c4`A/ob*8>EEia:Rj;^CI%C+bJ\G3sS:gIBMPSHJYq-D?K$GTq#L*(=Pi4HU$E:K4u0&8A$KtB2mTh4dF6Lpj4_@#b+>.@WdPpn+7>0Y4Ih:'0KGA;XL7WO@&GILZ3qqKY_HhK7o\beIQhYdiMh7EuI[sithgODN:Enhgf8q/FFEb2MOq!MKcGl&""\T\qT:()"=#pjf!5j>t_:KGTsPj>FE?EPiVXPbQBh"i&TeL8.Q)%(9\!VC+Xlhu.4X_uU6l49@I7om%Lif/r&ePUdP-SKms5%qoZ"?Kd2F@`0+,SdK+'e$fnVt:3.h%hIJY(NmO!34628G>AJ=U8)X^BAtI+KXodX2WDoqL(;##!6EEdEeEEdEeXTl6Lqn$iP1%l.;[c4aT[c4aT[S"MU`GP:/iO33F2f:.cr^#=?gf?(!>9,eg%C&G/KS*UpNs;DAe,t,]:3\J^!!]/p(lYi=:i@]ioEKkqdplWT.*tEQQk50u90H1^K"-W>[DXZCHPeo-LkHg"0!0#&]!&hm!;b_ALdcY5&J8^W$NaU?E&O/Y\]G2<2SDp;faL2fM1T3uL0>VIf,>pJ!aVUSL=n*&=n6"b"Q^8MHE.gMl4)Zf1r3!q#R1qCTWRsf]O-UP`n9S'2k%ouKu$.gOp@LQqa!DPIK588Xag!r?54/%09(7[8j>l"1>jQBg"4.#u#He5F9c-(UPXXh6tl-@hoi5XkCi6JafiR[+_5Z:M_P[2j$1\=1!+kGBW_*A5n,6/%.m%5*9r,PYS6m1HQaF@5U=b]rY?:Y&,!d6fR4Tb3"30I9T22T\O>9X9P>Ub0(-Cp+<'6qk,SXJ9[k/#5c8&(N%;gLQ(j7&Emj4\eaOkpV?FN-p5"(R,\+d!/q?\""g55)B0\g5q=>#8)>AReBi.VN8,M*^:l!(%*%9*r;g=P(#9&LEZu(r>!e9_TK`X&otc2=d#q`gI1)06#K1r#5e4'kSu/u[m6n_PBV_qblb"J@t#L@*a(!3NSOmr"dc)Z&DHrGR9L\+=!OekX:LSdfek'^P-X6$M$)$US2G!-EA[5qDm>GB.^4VPY\Jp95R7-HBP,H4hPP`aD-%St:UlM/eoORY6OfLG1nU![i&qiVlXTL'M2WnGWFC]6tF^&&hqAmj>LY[hZ@e[hZ@e\()//D8d?%X2&SkD8gA2D8gA2D8gA"+Dr]I/&iE1&T0+:Wu%S6EcR1-,h`Fl\FBB6QQR1V!,Z69BLqDc#XBTf$2!Pkq]ai-Ns^`_%44F"BXGRXS_KgBc3PG-0)5+fGEAE1%d4^1dUu^.(\8]fj#860K%(:XE0o&\rNQ@pL,sjV73pXph&Tgp':h2=h9a^?Kh/EMH38"^LEr1=H\A*,0[s6I:fCX([$QSjH_AJ]"-IgF'!W"TqOI'O^-1Cq2aRG64EtH3b7G,*!<(c!g=su,O,(??2p`'/#Q#WZkB;YO\tD:E%Ilt.9TG)4?0gJ=!/q=3i5&5S%/7eNEaf_rjl(cD+P3*f'o(?24cJ5Wf+CpBTWm83[gF]*T.G_^Y!a`SpPu0#0`b#DW(Bco:Es$%VU8%P3D+G*_0\\?AHLC97+H4^67'rPM[ENR;*nGhN[tZ0)JmC2oTr!e&GrI!kF3G^'0,&.*MG/1f/q7BjrGIZGKRiZYNCCS5nF#\qX]Ig#&<3loOt!2jn!_!Ja$]XJga@Ne91!^KEBkm[4gi5Dlf0Jt]pdkaoV+e*4eP0f"2j5Ue<^LNe"N')=b6c6d*]]n\F.@?PFK@;3/6R::nC:+C`/UAhTRg8t/.B*ke>B*ke>aTg'Fug(D^c#c30)hJODlfQ7[_"f3imc9;C.hq/Iko5;>R3W&O;L!$\fTRVMd)bE.9PSW,.F6?<8_1VXDXk3;6]Jg1[W#lY7G*j1t#ZQWP08K/%r!l*m;>B8$GOXlJ=ci=IFso#cLW2A2W)Y;a)2tKgjJ2J.\"A/'_7iHtiVk6a,XnNY-1q&h+,E7^b7Ec2AV7^o#_it#TWA+_gBF8;O?SpX!>1%r*@MZog-?3eTI8pN&>]E:q!'6gWCcmFpKun@SNGekhg^92++=4CT6p^D^:G,@aIsfIN@SFP*)>X,6Z8n2kXXEj*^:A%?\5B%%j4RVrLrh0q6sb\`XJLf8?W5gL:6QYh*Aa?o@;Zb0_)@QlHM72&akC)E"@ne%)Phj*9cahoF:,;c=YdpR/tnlrrMH:Y(]4JhZl3e.f";C@pu%ZUZcp/^:&4roEMpYY"kSj._@"R-:.Gc4:hPi$5aZI"kn9X#GU_.Y8:U'()U<3e,S]DN%rB*ke>;=,7@k5E5`GNS2`GN"*DC]TTDC`^D@r+TDXgkM4"`5!?dit\b:5'\aF4/Q=FNBf_@3*]J5Gu8Dr==8[l1C:fc^b::XceN3#S+TK*YdD?$+06Om8/9qWE+Oq4haV>-dVI4[@nH+j/0"X[6S/]nUTCg9V$1@r[m)R=XVe8N;iR"I),B^2rs#\9[aCTO[>6B31oN9@*\\*On9QNe4R=hN;kacF7hsaeA@"(nj'c@,\Qj>B*ke>B*ke>;=,7qfgu,ijRjTijN#%[hZ@e[hWD30t&:]KR-h\mlU&S7J^NMd*pqXC*MAXKAD!L,nrNNOJcmAT*V?Ss1qM73rD_!)e]7`>:o=`]]I=0;%r0X!'97Lk]gEM2Z8J-q"+5u@E8)$n=S?B*8LX-416n]euSM3&^!d%HW4YYSWdVa?0,u8pM`R-maV^8_%)XN@`rVQ)1Rhkk\4[>W*])&TpIfm&pKEE71D8d?%loCeV.lrBsWk8VGDqb>8&UcJ3>RoDkm3PkuQ3Oa/'6L\Zi;<+Q_/OlDkhA5Lh#YQW*!Z8E]WS+GP.tg$Bp%[.NbE_5ObPObfTMCgEk[l]>n3\9`E+OKuIoJD=oPqX,*9(3DFO/jNue(VQH31[q]]`_qmPg+OnjMs1i9/re7K!Uk;r7[K6>rgQ#;Fr;#Y)TQA%"WLin\_Y[hWD3Z"K]7Xm#Y?8ufLu"m?c)diZ<7oYYto9<9MNCroL#"6*g=TFAKo+C`$ii'#tGN@%o.l\r17*]1`>8]T>#mU7(4;n.MD)u7&3Hg#Hf;"!?ohmb-q.;c8dnOjP6%gks7$jGs]?aD=tBt[c4aT[c4`)N%t%p^hq&-`GNS2od"N]EEdEe0ub&W;/of[>NI*+`@%61Rj%#j;[/qHWq#T0[3Bj^7?Qn[kuUQLr58P1W<[#9oi=]@-_cY#Q<4"Fs7%)Are_4k,2X9&UJ4d7tMr#RZ2-GVC+lOo>@Q76=o![M"a9:r!b_7#6lRr1gG!%k1LF]uk3HjK!0Y;PC3)&(-\!?@BOn(h1H6btC-OH(a9VP!\?,Fuig.GR`.q=Mm=2no(D5FAAeUNOddT5)E(h8N8Ls]8WC2r"n<&mgi/t\HCjc8)6).GB]UMQ+)LiD*,a2TD\SS1Ab/0r7C#uBtnbdcKmbN@uN.^>cG&Zn#g(gp9B$mhAGCmICk9VT=SphJnoj'^b?$"95MT1D.F4668rd"+VnBER/iT$\bI-H#E]#PO9oZ\J&[3gVJ"S`'dBg2mNR)(+.r>H+K\Zj"Mt7JO7U(k]eaMVOOs_.0IE160ccc4Ic15nsn]AD.mk.0Zb!!%Pm/dlr*oITB4j0RBNe^*fY*(V1t)%mP'MM+II,;G?D8['IK&iJB8>6+^h\$VF/!WW3Y:0W_TZfGWW?,h/QiQ765)\84H*-m$ZX5m1#B?QM#iUUBeYMX[K6GZhInEV"TSO=S@4m=b$;:2qgl.!?5IV!TrD>"23)_j4]9n[l7XT`Q*8jiO:+O8^9+)o)e#Y1RWG;kK/TAWiq^nEg\0P'$uCM)fpKQ?s,Jh5e"&+B8t5HT2e,!IrZZ_OCUmM,V'KG8WUg2aDFta4F1:;!>ips"3ea[#J-b6Zk]eTFrOgAc9KZ-D7-87`iF1B\'dasna]u-l]Q=CA.I,0jeJ").W]jl/M#p'TFZAgF+5BA=ZHFH\$EARNR)(+g%T*SO7c9K[X/F?U#Ze/p@cgm\J80B/q&eW6CKZ97P9#>6lD$:<`D?J,%q$4L-XgAhI%X&e!0$Z]./T!AJNN>7j0],NjJe:eQKK[q=ACbTJ^0d!bl*BKA`?&+iY%9f*JcmB'LX4^#NWEp1e*:'1Ir$`i+QgMVoB?E3^rWr=*IISmHe!!"^,[Ml'G!!%Nu[+.Ph[plbu25S&kB)r!_Kf*H)DnDtXW.hsbC'ne]!!%u) +endstream +endobj +54 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 52 0 R +/Annots 55 0 R +>> +endobj +55 0 obj +[ +56 0 R +] +endobj +56 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 211.822 386.842 277.174 378.842 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://downloads.sourceforge.net/kabeja/kabeja-0.3-src.zip?modtime=1165501366&big_mirror=0) +/S /URI >> +/H /I +>> +endobj +57 0 obj +<< /Length 2310 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gat=-=``=U&:W67i:tEcYn5b^14AX(]C%CFa(cumWXk0o8TZ50iSe;;kIVuF@KD=K;IsY=cR<620(5er]+"!&DKjZaL-k7a4=d:rGu;NWm39!YoD?"iVZb<@o$(O'j';YP+`+rL<1afW`"sn<`Y/3'Yp'h<^i8==+^mkYl;$W^R.oS8PB17on-Y=O>r76lhlao)D*8#oMo2eS#]a&>8DUuZY71tY8Wd/3a$4Y[lUY`P8Gn/1n[d?,aGt<"`'Z]e,b.bAI!E9b,1ZQGeVO4^-&Ct;f=>RAto`tAi`lE/D+_Zpmq%PeJcu!I1h9CUqB&<<$s&W]42d`5nkpLn'IXdbqsaDDj^._R2$Gm(it[ar9O@'.C1smXNNG)RA/tg[<0UTeQuAc%;egQ0PZk+<,WL%CW?pI7m(L@CKdQAq^j9034;TahpiO(o7B33Gr6:cJO:WlG-Y]`$=\mLP&Cp99NMDRQBqr)=f:l!,)):-+nT_%5O;0@TN"?RcW?X?2XJ,sa+ZD"$_jjqZsSR)Y"2aMj'[N!J3[@Sn(jOI3NgH>VC%jqKFghZ-LZIP_]Xh@M*u[R3:oetA73$fQ)==\#Tc(GKo]l;DsO^WOYqQ!3^Q9*.mO4[!rAB8#kC[#0H'-9+t^T_Gk#sVj"k1L=Vh9?X_D>j`faoE@2[lV6S+A_%d`Ld#RN)G)VS(@GE4M>Tt:r,kC@A:L[M^XL[PbV+APHU/ZR>k.*,2?/3$/9dAn4?@YUnc=g<219Va0"]c6%dZ9EGJX7r1K+"*h%,F]r"Hm#?.Dtg$Z'mGL$inK%GHOb%Ya;R-(M62A4ZdBkiCXJZjHi5u2,NAKYciVJ=7E6gd)p]e5>9rM/[`(jF(N]F1%cEN.tjSI4,bp4i1BmJ)49V@tb]D>P5>\%U$m/Ot@A3uJ^''S^pf6U8JRE*>.Y(\UV,+Q5VDQ6)i`gFmb3YUJ^.Vc![rK.llWj"@G'Wm$Pqc<1G"1);Pf5(5uQaATX9/H!9G3D4mm?F0E15K2j3o\l?k+q$sU^uFKa@>a\G/b;UY+U\j;Y68FnsSrkC9G;9k.d9Obm-2;4X?Nq*mhP$iEb\0`2i@5'\&,EMTa^5%[X^I1ob2LcakU^"1$8A!SQf5!,E9o6j>@\*kn+YQaP;#A"5e1"!a0DV5Krj+.:g:%8DRP@pu>)g@ihrTWk7k2i0,S?2ro(7%\0-RC!JVNL9O]um=9?'EP4%KZ#nc*[\WSnqE_U`?l\j!f0QMQ);!n>;(2i2a:F/q]c!:*Rk0\a0"&`51c0Qhrr%[5YDr&qf':gibY,7B3;Wp.).pdk"n4sB=C3,!)a@AA&8H"#:.ZuX9W4Pic_%&"<7IHBIJ*Ep\?Tj?3Kb:_Ro`4"IlR[S@uCEKm=>/o^M[E_.:M?m#n/=MOAU8u52X?O%<4NtuELjP*4_l&R!F-\b61rKS4&e;0\VAtt;8P*:2%:fO+DAqHFaXIglHr$`ejOA%;Skh#RlQI=ef\CQPo$9cJ:BU^c]0RCg2Y!67?HT4,5iV3M:;fdl]3,`a0snnXoJWBbm@VZS,#SW+ZeK-E=(J]$<'$bN)V=UC%STmZ[<$ +endstream +endobj +58 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 57 0 R +/Annots 59 0 R +>> +endobj +59 0 obj +[ +60 0 R +61 0 R +] +endobj +60 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 470.239 692.055 489.742 683.055 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://xml.apache.org/batik/) +/S /URI >> +/H /I +>> +endobj +61 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 113.533 407.055 152.53 398.055 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (processing.html) +/S /URI >> +/H /I +>> +endobj +62 0 obj +<< /Length 1590 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gat%$gMYb*&:O:SkV3*IRabVFlpJ+i1lEtE7GX]RH63un[aiHn8l:G)7K7d+=&Q?f36jlZC3V^!1H[JAomCdATDY3e'KPZh2Vlp^,d\/,+tKlbjC-AT*J-fr=AoHOaL25XSgL'WfCR,NcEfijXnd9p!J"8hreO!^<3IY]Z<^qaGLetp#baoW?YfXRB,7pV(qHd!YAkLGZ;K9.AAqI[0/'H,m:"ZFie>E'29Ml=fj1,P`PiWBicLr5jh)/JqVJ';rGSoOjO@B"jIOg8&r^3o."1b0hj_WYmbj5S^`%NZhOO`9pjmY3BQ*D<41?Ld,*%?3"[-JLCfce[tU*;/6rRG9QOo]=i@)SF']U..qI);E,.1+a)OY$l_Q5.u@F-ZYCQfMt&ZAi\>%\_*SR/jVMRUH`uQ!TkV$=,ELKCT\+i>\M=@'Q3?;N-T0jg^=5'Z>#*M@6:"-kjAVd&+QmIP#L._IUqN2(D:aXNMl'Ic>8Jk=QGnsm?)nE;C8?l8Qt`g]4I]tPm/&0MU"3:k'5$:&+&$OS0Z*s<*7;5O@?#m\DS5<11mDJnf1`q>3?q.R)a+/i08\dq=ZJ1PtmlhMtjtbPuMG0O+qQm#D7+?qq#)(JABRHlEY2;"fmNfrX_16^be`"1C]hO*i!(X[2X''q\-/<4:c%5\K-7ik=ZI"+7cQD8/q-.Cut1Zdh6%UdoMoKd">=emAR.&TO"LprE+9O1.h7VY;9[8$<9^)ag_1JX5>VZ,`_0u-(M+-\s(Kn?7fsT>4q%"+c0-'/(^O=.m_dmIDiT5Ad@$9?Z2<'"GLX(@33j.gW8X/A!_1@e:5g]MIMUQ%W83j/IXI6hFX)$`X2Ja"?h-iF(p5WFsqSSk!@Qe_gl2d*fAfD3T3K-0h,3d^?h7OYoa[^p1je$"r\R3LX>.Ni1SUTZ?$H+Sj4M=2Nr6Ap8L_U'9l#29T;;'k*hC)Bd)Xa4Z;K=KEaT`48Ag[>n,PXY\`bkjM)R*BS4TAJ'/I<\8q5_@rjJHE)m75(Rq13`W/Z+kcB"cYk9N@&IY3GNId!W3,%*m#tWCMk/GmSkrXd@iHtDVTt.&bi8/=QhHUJ9Wi"l$ck\Vg\E:3V_po#LEkf*rlVl-P>E-4t\G"0XMkq*sB:s=I.TA6fN]jZtc3)C[^#pI8SPR'.sk.I2ogfQUoa-l!J.@#_1o&Wtlo6DsHsoolUD +endstream +endobj +63 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 62 0 R +>> +endobj +64 0 obj +<< /Length 1990 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gat=,=``=U&:W67i8dJ$`"9bSPNK]dAPZL]EQ?3Z<@7lIOMuqu=;(2P:B#U,Q`r_G\Pr=?`,^nLHXIY;]9peYPJ8G&M-]mZGPe:r8`UH;NNLQaLi<0Vk>FY,coQ>eT/]lnXkUs9PIHIlm+f&o@U"c``!-CpZJgjJ0l=n/9g"J?Mll[LoU;$[09<2Ea1"?D=r?QalEOoK]1]IF01f&^-M\NdZX"p4=3Kk!kk1)2LUHpQ#FdUt6#T\f:J0q;VEioB"Hc4@?=5[,@#],[YkalsKhn.ebA!E[;MNI\T=6Mrg&1d/_r]nDr9EqQft4;C!S!ZT5?+RoZTBe)3k=3aYnG/rS)`*O?]FPem&>0tTKOqP;/[!7T%.S$/i?"KZ0Crk#^_uU@.\&Ij]aE[fci0O%TibtNJUD@fs7KUED)=e;U'/'b;+`XA5??so1G.rV:bbX(K+=glnY])_87nq`_b<)D4\pMVS$*`XuR5B-!;iN1;@#*>C?7Xpi8OtHN!j6bN6@:q<5Qk35F5E+NeWFfL%,I,9'jbV1uMOb(u0.I8S62'4/aZjQ`RRfW9+.e'=&W17j](9QPJ(=n6E,Z@ibNE/2eaP_[!m4Ak8acW(Gnj)KISdpdNjV5V2t7Cp@hO'IV`Cq05d[UZd(C.C6H;TVQk99kmS`s&CV$G;N!&[AK/;J@\+=p,o-d,$Wq;$'$+4*N:A["F1Nmt,s@MS$+`H_-(g7NC!#bOcTobPu*fI4D[ZaJ#Y7Hd08>%kA-@DF^hg]q,di":oq^Ug9h#.nC=&%A$f3S[(l>CL4H_(m3oY_$tfe7A=q1a%l7Co1-5@1/kiFkb,R`B-fL@C^e1gW8r(M&meS4XBl>@c4(lsH@Ob@I(nNaI2]KpI0K`N4O)fO15Im9rE5Hc%53N`Z.PkNbuPg=';kMYC*Rm]^Ge8*eETWl:beYAA1Jq3'd`:<]0*'0!#kYi/DVWT)0(;lOf3KAU@G#em=S:D7$U8u3QNj>[/'RD!XaBfa[f#*<\+,c)SH"HOa)qe4<\=@CFSel)2I%eWBar?ehk@We;iuksmX>ki2lJ4^VAUnR_&OO9,q%%5)@,\nIc"r;$h#lg`!L9IHh8\.L50`Q#_LE$=(XndTIW?U44Zr./ah6H@%[eKl%',Y&IBXOLS`fmF5%10[](l6a8[KZ"SWY@bQ7AC-o(Z9`Bin..nUj^&.cJ[mJDeO_:UeTZIM1MC-F<>!8V;ogugbS=C[WSo#,gnoY6`&QSPa+SMZt6+"sGgt&)lA/_0@I\O8_BGiG>/tCR2,@g/8jE5-aHiuKpB9F(.(u*Fan7=o_]TOt%Wbi#T9[SS!][`0`iM&1fW?:p5E-cQ%98t2&%F@f=T+XPU(lC-C&Hr/CjQSuoPjTK"AA\pg3^dCA8Jm4:Xo$A06^tUYB>\llfenRc/%d]Y%O! +endstream +endobj +65 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 64 0 R +/Annots 66 0 R +>> +endobj +66 0 obj +[ +67 0 R +68 0 R +69 0 R +70 0 R +71 0 R +] +endobj +67 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 179.521 325.755 207.52 316.755 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (http://cocoon.apache.org) +/S /URI >> +/H /I +>> +endobj +68 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 206.473 276.255 261.967 267.255 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/dxf/DXFDocument.html) +/S /URI >> +/H /I +>> +endobj +69 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 100.285 242.055 122.776 233.055 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/parser/Parser.html) +/S /URI >> +/H /I +>> +endobj +70 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 219.526 192.555 275.02 183.555 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/dxf/DXFDocument.html) +/S /URI >> +/H /I +>> +endobj +71 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 100.285 170.955 150.784 161.955 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/processing/PostProcessor.html) +/S /URI >> +/H /I +>> +endobj +72 0 obj +<< /Length 1685 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gatm<968iG&AII3YWTmg#f;3i:Y^mLa.DpCkZF6mVs],!+:9hl."#-?-U53V3J%l>eW,q1`O/RnE=;mlOJI]4*`W//sgmZ$k?EQ6.1X7Hb3+n-N0FRAYmlB3gD/PV-u;o(_\$a>7WQ+I^S9s1(+J,`5e6q"&@p:c]X#Je6kUm:dOqUITl?#@Pk:F[/Hjb(.3-`!*<`rY8'5H3EmX!AmJuCS;L1=d!GKT&$F^:Ih_,^j,ok[>r\#Q=H%hE4LhRR(eJZg'0\`1V2ZY00"$+=#UP=q]]?@N?73dWPf$j&=UK7T9r5@&EAEHOH,\hJE,Cdis-\HU8Dkl($*$=h%JXmfQ?MKFpgZf?-cKtg[0l0FBSOFg#0A(+<>KfD%[D6JR!#:j0F!QEj`JkFeb'L^/iQQ^>8>/:t6:ZY._p"h2Z+OeP*5i`1L>TQSd#k)Jf1FGsSJb>J]*6;DKk+$dG(&Jk$iMd`5f"7)o=W$XuR=)Wc&LDbS[JE)cLu)M<`Pe=VLahDqIe&bSYG!5Q&B5&.`=OckEh!*)5)0!h,crGa^lYW_#6A_:PX[MPYIad3JsgftTuaqDF]fCgifORPr0l-W=8/%W-W$lN:'FhpD#2n"-(,kugb1m6r+V@-qWoQB=#0QgWLd-7l"^[&[_)1[Vbegl[LMfA7@RMS`D?nnC;`2M!!P*#.Mi5$^qcgpe].;%,lT+C_tlI;=^,#QcNOeme3jjC2F3@k_/Ha9P7pnT@h"5DZsPIYdG5\O`#B>9oW=boQ&3Y=.Gap6YU*1pB4B49??.!9m/f+XTrWo.t_l'YDiI9QJ:^Gc!CFR^3J##W2kFC;+HoW,8(hZHh6S^B]*`S&5f3g$RsER?T4:+1UW0CSKTFGCQ&VhtE+bW7`"1&@NOmX(^WVLI:#Q#MS6iER>af52K&4#L8(K2DM3]C^n9l)Qp-V)@hfb)]_`5n@cAeg\do%Jo,]nr"+@cI>24(SlAb023-lSH.-??bL6+.pgq%Y':^-j`42_f<`g6;l(7r'3\SL02VM6UcnlM/lH$,$faN"I2=3JsY^O^SHcCNbPB@@N'+JRD#P+K2qgJ+@bT$')t&+!9fIe1.!8O=1*_71Ef@2cdturfAFfli';1Q_6NEVmleTt+]@5>'V$O2pq2SqH6Ga+chUPJT`HiL[:L9^_g>N5:-<>81H]E#>D66gQg*L&"@O1npa]A%h/g2M"#b4bYd,8hCFj'?o5Sa@daX_2-ju7tDo2Hb10E0XY>6~> +endstream +endobj +73 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 72 0 R +/Annots 74 0 R +>> +endobj +74 0 obj +[ +75 0 R +76 0 R +77 0 R +78 0 R +79 0 R +80 0 R +] +endobj +75 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 259.747 698.355 315.241 689.355 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/dxf/DXFDocument.html) +/S /URI >> +/H /I +>> +endobj +76 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 100.285 676.755 154.267 667.755 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/xml/SAXGenerator.html) +/S /URI >> +/H /I +>> +endobj +77 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 100.285 605.655 137.788 596.655 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/xml/SAXFilter.html) +/S /URI >> +/H /I +>> +endobj +78 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 100.285 534.555 152.773 525.555 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/xml/SAXSerializer.html) +/S /URI >> +/H /I +>> +endobj +79 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 253.762 485.055 309.256 476.055 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/dxf/DXFDocument.html) +/S /URI >> +/H /I +>> +endobj +80 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 100.285 429.255 161.764 420.255 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (javadoc/org/kabeja/io/StreamGenerator.html) +/S /URI >> +/H /I +>> +endobj +81 0 obj +<< /Length 2565 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gatm>;0/Kl&q9SYT]R\%Q,nK;&6HJFQ"24?ZZil747Vb+e`@j.NGU!Z]RZ3frV@7"67iDrLt^pDDU[nM>5biIm$ku\rF5K@bXE-+J'Oq'qClDCEcL/n5"!77:4PLg7A4ea\NXItR5g86?Y26Tg&-ji%(XYm4`gE#T&]Bkc\XbmmR>2-4D1p?rd41QI%=kl;HA9slho(3r:JgiY(p\7F-Vu(S>H6-\f\EUdtic7E;s/*asSg&l!g("CAU>2E>pbDR_UMmaQh-^3]\P2;bp!]Vk+)2kE)f:bY]B%!keaqqJr0U\(+BQ*B#RuE[+b@^1TofO)"R%d9Ss45#*![Q>!5?)D'Qsrnh>d3-K=Z7PC)L@9C=GJl^Q3;^LE4\WQ(Vq2Bl-F0&7^j,rEL,!=gIp/j#h--kMioub#OnNFeX"iS8Wq&V([=UT49JOp+NXF)->QF)WF0&_(ZB'/ec(6qu)Q0j+njNC$8eAWh_BaX5^pi^"Sgp19JtK2a1JZ79lbd`_c)]1p7>t%3AGH':Va_0EG@ZEWGIsPp,bT4<8miURMt3;$&4gPa@o_gqs&R3V;j?O$LQ`_hE\NK+,%%0d>o(&l4J7[Z(j8Z]iqE5>WE>GU\jiRbk"qP)FD]/5]iL@h^1r!@d)Dk1b=a?b7ZLY_EOkf4mE0DLTm3[*djR[)qHg](_OWp8\dte%OEkg0ae\1o7\SO?O1eJYL?bck6tW-kJO.1Fh!\"E%=]%jVC7s"qb`=9NdedWIEY*Bci[AS+AF':OoE.])QhnHhePjI-PQf]RMj0(aDU;3RC"nj28chRg]GRIT(0%W:OMkrq`60`>4YrIeJeC:/#7(/--g]0q^ZO'T^G!a@D;K;?hrf,cVqhJqHt+l=&Q["YaKctpjPcIP[Bdr2R5,qhMY=-5;I7jVBL>HcTSZ*$KTL<7.a>lM-7O+0?#je/E_?:G;I=01Fr_a%+>hc&KHNoe])("=b.&,#CI]U$8u<8)9uFX]o-P*M'L)*n1o%$.>C!##mc)i.8&;>VJWq1@:F"!ais8L^*r!)449W9KG\Bs>o(1l$ir/iO6Lfo(3^o`=Jl0>`W7ek8\rM&mGl'Z=oDH"cAG_QQ2DAr!86J58U`TS`1P[i$5#1(@CE!+QjUjE;=b.IAX4HGP\lsi0[j7'7qE.lpaEnnU,%'?VZG$E&28\\V2+nL_8Wk/k'(\3A0lkpJG_r5,rN7ZsJ-PcWa`.hWqe0@!:>Dj-fNWZa*H%8X&,["t"tY%gJ0bppbVDit!E1V82D95+4`V'<"VlVP*OU&.o[]B+Y51_nkTjJ4#,T1D-8TE75ea6eIliBG6ONEiaF$i,o)#iPL6h=^141IS\Q4p=AF&Belui+F=_+njN*d%*S#^Ap[B&BeT]i+F%Q8)YLZUqZmsa)]@.7DR5/)NNds0QfOu&.(HLlIsn3d$2X#l?X%2+h)?unbUGr);a)?ScV3C]PXZ&n2$*6#4V5s[/iGpKW9=PA5V8t'Q;%NSj\Pe(_gn*Etn^?2S?H(Oh@M!GqQPcXbD`A9q%%$D+G94j\sV#@e&R?c"ZHH!M=tl:cT(3M_EE_r;_W=C[EMVRr)chJb!o8fi-D3,EbNISL*f>lH+mdJOo?H74_=-h'_)b:=B;j'>Qhe+.]a#Y3B]mN@Ja9h,LW)MI8)2/:[G\P%ATokO`G:&/aA^M8EnmY0/ +endstream +endobj +82 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 81 0 R +/Annots 83 0 R +>> +endobj +83 0 obj +[ +84 0 R +] +endobj +84 0 obj +<< /Type /Annot +/Subtype /Link +/Rect [ 154.015 442.955 189.763 433.955 ] +/C [ 0 0 0 ] +/Border [ 0 0 0 ] +/A << /URI (resources/crash.svg) +/S /URI >> +/H /I +>> +endobj +85 0 obj +<< /Length 3018 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gatn+>uTK;'Sc)P'u"K;:b>>+X\0"82`lC=A@q5FpO]5Ub:FqjUc[%T^G8@&#u.MmStWi2)01,s][7tY_Vt0(B/86;GGeJZpeuUol!%0^^?V.nfs\#)m?I=YWg0aTk1/Xchf`?+>[s$026PQ2f%n5ZD5URdD_KLEX/>?ZRQ.ZRZ?^,ehWUt@FZ''/;\+;V3rINn2lcOFeS1p"gJkLteXnK)VFQj1oBFBebNc9Gp?SS!RP7,X$40eo_[H;NcHhS9Rg5;D_fo)KofE)5q>Fpp@6?0$#6L5Wf\3:p4^X@>4;I>LOdtlA8,>'W^V%1i?!]+#<_)pe5">!Ba8#OXEV[r$Q^clUf!;Sm`H/G%]>rM]206_=C=:I))\.X`&"A`UsZAQU'W>!=[/65-4F:a3@gTSq/&gDdZV;o\jN*nRIKg2S@1I9O4;<%5!n8e?utFU&*_b4IdHg$K<8^&r&O3_5n(0_\AH#Qc2D/,nP@MK4-dgLF4^4>NCNl+c?_?j[gOb>c9!,X1de5K8BucUnPa?T"%LmI+('YS<8!\T&FZQ9OuOZkmK=kk2],Ri@20Iorq5itBjO63mbYAWLWme,=RLRnuu6$ES%^Ydm#mZqp7Uuc'Z7dn"1.CQ<(/kk6$K<>9;RP_BR_HKUdJ[\@C/X--9EGH.1QXF>7_70p<_codbi,9CkCC.p2@E9XE=ZOoc[?e&$H+H0A6=*=#W''QnLmd9Q"ToYU=GOIA#5=Mcl'%<&q?q^:RAm%"op!?c7d7%X!X=GHHVH:uYD(BG)W"JOLS+]'Y!=lDm:<=Ua?O&QLMgMS^Lg!5<1qgS/rB_7CXWTH-V%N):F9h/k%FOMh"GCnuN)6Ehj4A>Sae>%LGK\(X1$c5*368->(;Z:ZU`#4_j[^JZ[2`qD((u5[/=MeNI1U%rRcpg\.3!)9$E6TaM^:Ju]2nSWmS^]e:B!49.6SCITh@B9X9\>PU^pC/8mbO6!gc15M%>@&80=G7Pe2$q$Xl[>ZFaLDT(L_0aCeUqR`B&);Zq_!-:D7Y5W^!YpO*!Q[4?[&c02%3D7X\oJo,AXi<_K)D/CFRBkXcIp]0[0p)UaDO+OD6+0CJ7`+'4E(#me.r,7=\;j[^KMRR#7B*XEcl'G,-g6XCJBX?>abqr--Fq#9:-[kR!c(P'oNDdEE;n%ss?D35u!EG2>)Fm_2;.#RmJk('^.#*DP4Os+LDL@jGm^'7q.ocrB-Lnk:pQ6Uf[R]g]I:]1R-"%/iUlcTYTjC(9.7(q?s8.a8*,NW+`7TSRe18qL@eoC9@:rF,2a)i2!`Pn*9k?sQc1P>6c+r/7C2Q\&+d/(_=+RF0$3/9[BcR*lL@VRI.(8#3c#H?WC]I8,qRrC5.j6HmVo&acWW,T%scm9ZWhLg(kdYB8)V([6H"QG_$jEV8Jj[^Jb]5-'js5nM/HP(9)7CF"+bEG,O]hhG1f7[?AO$2iae>/eW&tZefW&iceSa@/8dNN916([[U;MOgPH:tckk?N[E_N8CmR$AnEGi!JF7:&LrZF""=T(IT0Kkd?h3aA2afY/,!PD0iGGg\KEQt"1kakPgq0HkBA7@s-Z>))ZXMG)XGjs&^rLck(@YT2oF1RE-KIKTj`9+\D>?rW`iiS>KWEJ$IW)t1/eG9%[p)VYZfC?!T<$.&@W;;.m[RSM&<@1]r%,,p0kAOmo?n!(NP3s%$c8@"ms3RW]G4,]Tke2&d(iR+_hl,+4,JqL[Dj.3Uahh>:&*nq,kC=:I<#toO!CXpsTCLe2uWmCC!9-6QQfHhYC(GIO1qXC"^__4%]JP.,k047nBoO0bp`a(XG6eE$)X?7>b-[h)WF0$_2gP5SCMf"7n2/-a/KIT*"qi>$4e5/1Fn__YqU(V3)dX7$A,6(PfOEWQg3U7=Gl.I)dsO=>-UZ +endstream +endobj +86 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 85 0 R +>> +endobj +87 0 obj +<< /Length 2061 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gatn*9lo&I&;KZM'g*fJ,6U8^^sPaPeT!dA.SVsp*\rSBd>VqQZBIu]I6j9OQ3g.LMii(;CbBq(=*U(Ig3UJ<4?M)Y<2-O]=,XZdZB/',rlN;#;/9OH[2%9gC3`bVoAm@kVba?5_YWIp\]s(]Q(%@Cr^^LG%"tOgQm_<&35pH=,2hI=r=G0S.iJ2,@[`l+4^re`qAO&eY,f1O:jV9>@CbEX/JU]n`$8Qi?uKf3>CJta6iijo/M(uOpr^'lm3WGXbCg3f#s4=oB^etdinR[J";R?GNJTr%`DYi?t?di)-ACbo#u/6TfY+!-h%qAS"$YEB,eYam3`g&n\V^UCB-Un/?KGN-]bF>XmgK)#_)=7q!;PJk7DhD7.LR2Q6pmE5,[U/?W9g0A!'^<\`lflAF.K(_Mg&o.h>9J!:ViAH=d'hsM@$$C^0HuY`l$4(h^7.M!>Q6pmE9nB&%RfWXt!g*lpMIf@#?;k6Oo6b`^L=?o&XZX_CC^LmSIXV*-[C:N8oXs'o1JRXM3oOh5q&P9JV=buo^T1DbausKYq>SY)bJ,\`?KH>3#^cqMndDC`-@(uUVu1hh,N'jZaY9AiQK7"mT#JtGeH$MMks;F6ahtG/a!9X<2*MuoXF]_r`:TnF&>"m.bB+YJ+@.SK@%X@oNohcAKjG7j1`\p,9Z2'rjl[&9PD2\j`I;FEM?p_KD#'`[4/?KFK#C*,N6CH7&*[F8_?*Y-BU*b/1*FU&nB7L5lQZ+3?JU1I^LXd.Ekh,tX`*L6A\cSgq-[Bskp]3?eJ2_uTM$>*7[iQLH+Yg7/5(rUu2p)CRqk;$ajiN9h`odVO#t4=h.$c3*Qp.G3\OSm&?,D^$!GZ1;*hLD4fK9rj!$PJbPff1PaJKu9H1YqeA7&ag9d\Em(p/BPeN/dK#0*$km<\YrK!jC(6B.JNMULNH^fg"SGdLP9nB[r+tY^N$[;h!AD8P%Dh#S_t1C2;.PB0LA^%*ZgO&Y.j@3m.Ti41maUZ7u*;TUfqAR,G`4(:eeZhisf#S2EZSq+XRg89C"slPE69D_-4IfP7T!1$!lmpW/@&)iUtlT&=epq`*U:m)\oB>-$`V+G(?/I#sm>m%'eK[>'Z9df5(]MSZTI\lR<%S&HR+I;(Eh[0)OTS9%\[W]NGU]_ITY3Po&'&cI9mSAS_@ZZsC1TsXQH*.\4;T"<+^,kNb*+s///F0.I;<]p(,h(>@Ua&"#g]tsZd\d@n"25Xc81YdLq1g>RO0c8Y4Vp>TLP)CNQ1LZr49FXVtb;9XfT)K?P:X/p/TdoP#m9D-J@+PZ<6q5EPiqsINAnaM&%Fo?SC'`"YiUt!5gc"'Cdo[B/L8`?eN]G&H]n)i$sKIkCIs$utYrrZp^lE1~> +endstream +endobj +88 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 87 0 R +>> +endobj +89 0 obj +<< /Length 2581 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gau0F=``U]&q9SY@&YVUSuONiqq/BGZ(7>"G.d@MWDoAmLkI$IGUNQ+NVD%CK+u9/"XoOs[3*Tpa4K-S?_BVI?/.VLr,L]JOo2JM(J/:%8SZ4N@L$=T\P?\IBkfZ:CN4)@/q1D,\3D@F;`VliCr_OIZ(>H\IU\o.VQT;4a[pOXB\Ot^B\.I2"n/Rk`J#Q2YoNO]Xjjhte?`UCZG"&[SkA>#bK&e$]+:NOhc[]s:I"%Cq@_^8ME"*U09,?QM,2]oO7ptR)e=^_G*9G:n5ZTW>Jc4BS5\K47u"hLm3IN`el@Cs3@qYs]ff,,M'eL$:(d@C&OI:'-/ltG9$ogLk51J1p!b'_+C2u_XXFZq06DOUr0,@h=*!sYb@i3cqeRFN99/a[`U$@DjqI^Da(6oL@65M7C+-W4k\d5*e7q(m8>$T5X!$8pD8\<6Ok;%N++=,?-lMd?%idX7]L2eW%&d=`6Lq@\"=$2#T^[HGD];Kfl!g^p/>8De1gP[PRCMn$N0YYh%-;r$%G=G*@KKDfAE_=&e=61RV)MZlg)f-A!7Cn?1[0#d/t'6P9nX`W"?h<5HO?rqs^dZA;Mruj3=M!0/oMq52UiU"7GS!`gc/3>9q2*mCsb2Dk928)=J#-hL'd"HMIF.=cP50Mo/D1Y)T=,"fk`-C)$A`C>;So'AFP)cF2l'N@Tf".>mZ(UnfaWZD"p!CaKl@E`Q7e%qC!qW"HFA6':r4Y'HSIR@Ng(J3-:lK.)*.9Ji9agI<=s5s+7-/(i21LdmF^RfIT9^q=QOX78J:?IfKH%Qei?B5L5@`af-iZ?Ti1R\+/DXBrY][TkZqeu$;="=kK8Ym-%[g1F?+p>;ia[%KR#FK#p.1b4/a@SJF7!DM%l+PrEU-9XEK8;Z#\F@hSBDED"I;JKDb9N(8:`fWrK^8G;]dVa,s'LY6C8>h8&V\RQ9@lST/M9%`Q)'WVL#DhWZeEmZ3_8,,)5/YGO`_1\2H2YnVg#!O,b;s:O&CM:BL5=uiW/bIi(Tfn:)i"Zc[*(;]bYoWQ>/=IU\HH9hLT/9)"UTK$4UDKr?NVZ!RkI4dY-O'X3Dp]^+Q4F0F[*HEp5DT1hCtQKP?(>'.eTNWOB?QFS3rpH/RZ36@s"bbJlhRl@T"3JSUiWXBAg/0dprLdie;"GT`hVf='&H+]NW\uT/F&`BY1OIW^X&bN'[>;6L9]p>-lW&hCB?Nncfr7oBNoq+($o(eg="fbYigKH=pTSX^388FaAcNltUG#E')\4cs(^;Rb4Q85?R:p+"q`-)6nUAA%U^AWO/DFq*eAsE$!LadIkaPh%YPM>#%."6/P''hjFD`[jBN)>'<83CI"UIrbD%IdrO%Mm(&6^4\=2@:WU$KupnD3/Y>eGoJQFi?Om?cPFJY2=ZDufAeK'k"GXhY=Vn$A&A/)RUATTn:4$]",IOX!AL8`KR82iaXU[Of/"VB;hu=H;*ajF.lS')]IT3B[YiFa`"9![At7pLtZJ=,E9RFrH'8Rb1r2oK-F%D.EBaq9k8Bl`5%&rrK?]Jsc~> +endstream +endobj +90 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 89 0 R +>> +endobj +91 0 obj +<< /Length 2648 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gb!;f?*E:s&UjDW&FS!VYZ<&QZK1'ug[/I.+DHuX"@[5NBSj1NPspImm.fJ)ne]WnUfYeFBQEiUD4)T'B?n_kU%J$$jPA#?QUqlDB'(aKh`e`G'M0.d(."N+@2qM619:,&!7K?tZmkDLT:XsR1SMflp@S4eB@#:3QZJ`Y:3:apTY-.X$fLHIC5lsd3$Vf*lec$k$jRoTiJYJDT6o'@LF/FB'IG=_B0r&3W:!AD`+=80?OA73XodAXui<#r$qBRdqOpsZjP(%'CYpO$khrA[cl!unfL,Z=@$##S]I%R2CKEj;N^r(0SPqoEeNEnr<)s/"aM>8,LYC#VueAfX:O&WMQ2I>ETp"lo3+W>T\]0F@,0mhKVA2fWEd_,/Qs/N--',-FO40BRGZcH6pTe>Qg6]8-R3eCKg!j[,gcJTmV"^l>EQ+KZ8BT^p\Is7QR.g\\'!M-SMGfpCGMU\LKAg5'c`Uk^2=JR&0:;%5Ke`E\B#"_i4>ZGo&purKQ]9[-DPO/fQtK=Q+mVUjJg()flr8gA(qBFu+P?PXH6PPr$VS%`\;:0?8N+g8/DRT-_Qrl2'(4F8Z<[BYKmT+3QE7:'Pi=c(%'XC#qXk5M>T;iF^V,'s?joTt0TBo%8)2%;m>4G!J`PT[3jVDm,S#/Khgm(\"!m1o,pq-uVST]Ibje9ZEb]A)/sP/X\d#WNdF@(')NafBnK;eG''`HLS[R\-nPUoV_12*`i>UNVF-ReT1`eQ"MMh+p2c":4SI.CZj/qNN;pf.D&/R`Mq)hF"*Al'T&F)'/-d/A)[,PmELn)2\=Snb=grCH'C*i.Dn@KBE3eO:dKadJR^T$;n9YlADQ@]'Rm=M7I\n&9a8SFe:!oS_b.4d9S+4+@>1jEBr3NafYjP1Y93c$Tc6H=6G?_m.h.nq3\gT@Qql>iu&IA5eDq?56Vah8:^(aF^[r\>$Pn%IiLqXd(_?o0`\*eNi?B0]CA=`F&GbucbV,&8+I]6k8PQ<()js,/aOfd<^0TFu:bb/V9S!""VQL)XK9iO5Q2YIoI_CpVWmIe"0M4`e0;)['0pr`([B)B)[F+?7/!O:E>cCjiW!1V6MQuK9Sh2[=GH^nh,eo>7>\,JLetI#",e:aen-&JE,5TDfm:K`7c'mZ!`1YAdZ^(Z!8MUufjJo,;4-BeW8.?&Fgic1*Ss50oQQ$SP8Q"D+6A7_q@9iXk.s^R.K2:BRp[[;14*^>CnmAYFM&MSAIY>m]_:BD@8Ig^gb*m=]FHhe&&T>Qdiis6PRL=jF#Sh"&\W7h2>]>^#iRa!8_c6&^k[Y0obchPMqXj,il2dqT8HKDC.p7%D)p8FG6\*_]o"%&5>#Qq9A!9gd8llYgr^^S<=oHe`HXY/<4uc@-5,TI@D^&c*N/4-P3us7I;6\O!@5am\C!RMJln0;8`hu;B^_!s/EMfCEIA%2-S+bVMGV"eCKUF?kJH:XK%^SDr_%W+'$2EUN%.BUf+4,65rL$`4S2@q*]D'X!r*;Le.P_E>TfA,B#A(nlGQA=Gn!lFLo']S4MQc#&<#t7)hkRJQUfkJ-*P><\o8\/*F6HUQ4uC]Hl!h`UO\10^KP='tBa4=WDdEVY +endstream +endobj +92 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 91 0 R +>> +endobj +93 0 obj +<< /Length 3053 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +GauHN?$"c3&UjDW@/\Ma-KZU';53oa`,_U'O^21_1in'e+:=8cQQgZ?d^&k#6%'S_.6uMPFQttVPX+YGp[%>$"[>d97am8[/cpOLd=:$DmF0[F,k?T5_!=LI*s](&m=]pJk^-BNddn,JEGp$jc\p,uMdL@20C]-_]!r%<"%"Zfs$CYNhqoIbr2:Q\e$\r9LS(mOkZpVsTU1.1Z`UcGo=;EYbETQ#S(q8EZIgY3>ZKpeZ=4PUo,PKEV!DH)3>W'cZ:`3N"S'#4@+oU1YfNSsSr*MQ:l(/[P+t0;*Ec)MES.W9OF1f-UH-Xq]Kfcg.r`e0gT_AYm>HDO/(q`Oi5*HDXEehB;A&X/[]U':3jQ10<(4M&.c'"mknLWo)31pt:&MXCR&$34R7j\@oSWMC2[o3%F>M,]VP1>I%G?p&iM1De^L.+K8T^RGb(]7:&,8F4eD=,8N7@-f^M#ej;+)6I`WH8^?!hDl![T=%S&nHn_c0DV-UpDbZ.iT<*cF+4`@/_A]hRa9J.T^p8k&LZal[7!Cj$E-.<9S#]IWSQjN*9TnOju^&eeO(=-0-?O[a`6T)_Fj9Hr)DP9^87kWfaHXV=2Qn%]ch%HpNI-NBORN,E\bQ>LkInJub&E`]H"'Fc>GZN//En[>R@:n][,+6,dPnu-6+WI62WnkQlO&)T6RH>hM&BHCh-;KG6ZZuASg6U\es`fDil4G@]Ck04@Z[%b29-V?^$XtrqHCSr9q^\5!jq]qb/"9$&auZ18(Ta6Dql9KaR[rI(DtjP3rG%B-td-lSD?f:kqp-Iu9(:uDk])LQJLPj;92@G,*Y;no=#1:ElA[$n_X243:_-'3WhKeD%,Sal:ti;>FD*6;Ra0'>ArpMlK[\6'`i#4$4'l+C7u_$.qpcQBtg3F^*X^)T>*Mt,i(\bJ:7*'_#D1@,lHrtnPHh*"J@o>??=iFFtj_5$H?5fpX[olrO3S)E`ok4u.812pA:+,C3FpHA!@gGfLe(YI*S_QrB`flmIn`9$"qe.a=T>$@-^3nE'++>9gNi,)^l2#!SSW"W+"#oGEV#=D5SX''1Bmc[!E+7/jp-gJ+?ieJUcs64(nAEf(YeZ6nH'A6M,iO64ZtB2UW9Ef:K-k2mkWb,0Z-&j)9erU:OEPgkqhpQXWBI"65D``]5?'/@-Ag.na5)`oe%XFMXOKq>lgsR3]b;:*\LtAHV3g*^VgG9u0X>ip6U`5L)FEoc9"I.if9ItI\o&l&FM+rD!/?Ko.q.Irc[fbH-rP'q\cRkTE'PkuM1#nMt',N3b/Bc6@m0HnZULDN;BgleQ:43',g>-M8m&`@,R^qu\'UT5j$#7?./CB`ufU=Aun$YK9BK4V8,VTi+a]E&iF]QRg=:([Ff&AN5aK+-37tE-II[\Xf#0]AQHi+M1dhQYKN?Q2])P]Bi"$!@4!OUCg1=V_Ubb"4486"..+iLeSG**lpPhkZ'4dg.oSH1S*D3ei9_[LZ7/`VkM\3f2n?Nc+OFB-,QPk0mU>Zg8:fROY&Fmi9D=scg]l_5^s=>5lfb$j0bb8,5LDW"1n3Ma;G+`>i?h_RPKBe%a2Xd]B;*p>2fnWG0gVB,b+^m'jfK8Z@FH8'&8@>)iaMI?#l>o2XHpCSMa>$KBDXE83%fX[ceGIl.T&"l`0e#"?;Qp%m)Fs@JK"#q5%potI!@+th.C;VY\g?0gFT[#XE$Q@N6\H&hF:T2^,Pbk--aQ@$R'j7*Ki096JF@'8B]nLFbPUU*DZ?$Ds;[<+Kl_;bm"hU=Xf4_;FlWdCAVUUH1+E52)0NFZS:-$eRhf?I)$R+?N&K^l,'IO=k65h9Ph,a]ZXs$I?%$<^0pe>XJ-nDV![PcCT&n*ljJdK=\RESrqW>!'0!9s*CZd0N@KSNN>9GYod1u0!7G*Y?&)+ZrA)C,"fYT$L]bXCQK0j0<4r[i:]<;s*L3j+I]DWnAI*N`W7ss*(`]AnjgT9WeZ#?qVj;P-@Z)>r2$_8^5oing%FlTY`B3=cM398jfE!PBbM#C:CZSO$&@c:6fS='aW9h?%T.+d8,VYn__%dqL6L>SaB;B>BoUiV*8E0SP=M<)M&,KTkMKc8I"b*@p=)N#*=0A`$k3lZCo/hS2d&`%e,jOUnqu'j1ms/[4^$XhSe:+ahY`#Clg!nVW]LB/4V(h926.0nU'RF3KT=hoT-)!Qe`SMa-UL(6mI+=&?2_Y&V#SZh*b)$'V+aE-h~> +endstream +endobj +94 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 93 0 R +>> +endobj +95 0 obj +<< /Length 840 /Filter [ /ASCII85Decode /FlateDecode ] + >> +stream +Gasan9iKe#&A@sBBQA\BU.G9JgJ`Vf?"c"4V@6CLE#dQY9O\rDY2S9i-8A[rbhsJ8B5:RehsP5T,@_K,NsNl=\69uL5:HC-c7bmDmJU@LK]a(WC!/PEEN,X8Et,!XS3X`r51+:tEENT=Um49!LUZ\@Hi)4.n^kZ`?/NT%kPAH5g3+E"CQK>tQb)1<^8Nk\`h+[duS2C([?K>rf3-,@_69[%VNZ+kDg2F2Qi+*(&f0+46kYigb"97!C"^E6#SiS5S4O22WT%mb)C^ol1Jj?:OfBaoI#(#7kuij88[5AIB7&X/k-3bRH@tSsKCrmrC(Q%C%8Ng0&=s<7Df:uoCZ6t&^+F4ID0\(R\XCarB"d?;3TM7"dQ#=N@W*$_jrC#c>P3g3q,ONrT"6SrfCR8M6*?MZR]F5C(X_r`dr<2X%Fn[*`>J1V`Cj5H[44`^ei">YTHE<2-#=e9rV>~> +endstream +endobj +96 0 obj +<< /Type /Page +/Parent 1 0 R +/MediaBox [ 0 0 595 842 ] +/Resources 3 0 R +/Contents 95 0 R +>> +endobj +97 0 obj +<< /Type /Font +/Subtype /Type1 +/Name /F1 +/BaseFont /Helvetica +/Encoding /WinAnsiEncoding >> +endobj +98 0 obj +<< /Type /Font +/Subtype /Type1 +/Name /F5 +/BaseFont /Times-Roman +/Encoding /WinAnsiEncoding >> +endobj +99 0 obj +<< /Type /Font +/Subtype /Type1 +/Name /F3 +/BaseFont /Helvetica-Bold +/Encoding /WinAnsiEncoding >> +endobj +100 0 obj +<< /Type /Font +/Subtype /Type1 +/Name /F7 +/BaseFont /Times-Bold +/Encoding /WinAnsiEncoding >> +endobj +1 0 obj +<< /Type /Pages +/Count 23 +/Kids [6 0 R 8 0 R 10 0 R 12 0 R 14 0 R 19 0 R 22 0 R 30 0 R 36 0 R 45 0 R 49 0 R 54 0 R 58 0 R 63 0 R 65 0 R 73 0 R 82 0 R 86 0 R 88 0 R 90 0 R 92 0 R 94 0 R 96 0 R ] >> +endobj +2 0 obj +<< /Type /Catalog +/Pages 1 0 R + >> +endobj +3 0 obj +<< +/Font << /F1 97 0 R /F5 98 0 R /F3 99 0 R /F7 100 0 R >> +/ProcSet [ /PDF /ImageC /Text ] /XObject <> +>> +endobj +xref +0 101 +0000000000 65535 f +0000648387 00000 n +0000648599 00000 n +0000648649 00000 n +0000000015 00000 n +0000000071 00000 n +0000000274 00000 n +0000000380 00000 n +0000001978 00000 n +0000002084 00000 n +0000003058 00000 n +0000003165 00000 n +0000003424 00000 n +0000003532 00000 n +0000005537 00000 n +0000005660 00000 n +0000005687 00000 n +0000005862 00000 n +0000006847 00000 n +0000121846 00000 n +0000121954 00000 n +0000124245 00000 n +0000218851 00000 n +0000218974 00000 n +0000219022 00000 n +0000219203 00000 n +0000219379 00000 n +0000219555 00000 n +0000219744 00000 n +0000221694 00000 n +0000294242 00000 n +0000294365 00000 n +0000294392 00000 n +0000294529 00000 n +0000294597 00000 n +0000294669 00000 n +0000297217 00000 n +0000297340 00000 n +0000297388 00000 n +0000297569 00000 n +0000297748 00000 n +0000297919 00000 n +0000298100 00000 n +0000299115 00000 n +0000383556 00000 n +0000468482 00000 n +0000468605 00000 n +0000468632 00000 n +0000468819 00000 n +0000470245 00000 n +0000470368 00000 n +0000470395 00000 n +0000470572 00000 n +0000472235 00000 n +0000618123 00000 n +0000618246 00000 n +0000618273 00000 n +0000618517 00000 n +0000620920 00000 n +0000621043 00000 n +0000621077 00000 n +0000621259 00000 n +0000621427 00000 n +0000623110 00000 n +0000623218 00000 n +0000625301 00000 n +0000625424 00000 n +0000625479 00000 n +0000625656 00000 n +0000625849 00000 n +0000626040 00000 n +0000626232 00000 n +0000626434 00000 n +0000628212 00000 n +0000628335 00000 n +0000628397 00000 n +0000628590 00000 n +0000628784 00000 n +0000628975 00000 n +0000629170 00000 n +0000629363 00000 n +0000629559 00000 n +0000632217 00000 n +0000632340 00000 n +0000632367 00000 n +0000632540 00000 n +0000635651 00000 n +0000635759 00000 n +0000637913 00000 n +0000638021 00000 n +0000640695 00000 n +0000640803 00000 n +0000643544 00000 n +0000643652 00000 n +0000646798 00000 n +0000646906 00000 n +0000647838 00000 n +0000647946 00000 n +0000648054 00000 n +0000648164 00000 n +0000648277 00000 n +trailer +<< +/Size 101 +/Root 2 0 R +/Info 4 0 R +>> +startxref +648855 +%%EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/font.xml b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/font.xml new file mode 100644 index 0000000..37977be --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/font.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/kabeja.exe b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/kabeja.exe new file mode 100644 index 0000000..2508e78 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/kabeja.exe differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/kabeja.sh b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/kabeja.sh new file mode 100755 index 0000000..e0e1fdc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/kabeja.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +JAVA_MEM=256m + + + +java -Xmx$JAVA_MEM -jar launcher.jar $@ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/launcher.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/launcher.jar new file mode 100644 index 0000000..72685e7 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/launcher.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.ant-contib b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.ant-contib new file mode 100644 index 0000000..4d8c2fb --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.ant-contib @@ -0,0 +1,47 @@ +/* + * The Apache Software License, Version 1.1 + * + * Copyright (c) 2001-2003 Ant-Contrib project. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. The end-user documentation included with the redistribution, if + * any, must include the following acknowlegement: + * "This product includes software developed by the + * Ant-Contrib project (http://sourceforge.net/projects/ant-contrib)." + * Alternately, this acknowlegement may appear in the software itself, + * if and wherever such third-party acknowlegements normally appear. + * + * 4. The name Ant-Contrib must not be used to endorse or promote products + * derived from this software without prior written permission. For + * written permission, please contact + * ant-contrib-developers@lists.sourceforge.net. + * + * 5. Products derived from this software may not be called "Ant-Contrib" + * nor may "Ant-Contrib" appear in their names without prior written + * permission of the Ant-Contrib project. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE ANT-CONTRIB PROJECT OR ITS + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * ==================================================================== + */ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.batik b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.batik new file mode 100644 index 0000000..3e4e3d0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.batik @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.js.txt b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.js.txt new file mode 100644 index 0000000..a554929 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.js.txt @@ -0,0 +1,584 @@ + +This distribution includes the Mozilla Rhino 1.5 release 4.1 binary +distribution without code modifications. +You can also get that distribution from the following URL: +ftp://ftp.mozilla.org/pub/js/ +Source code for Rhino is available on Mozilla web site: +http://www.mozilla.org/rhino +Rhino is licensed under the NPL (Netscape Public License) which +is duplicated below. + +============================================================================== + +AMENDMENTS + + The Netscape Public License Version 1.1 ("NPL") consists of the + Mozilla Public License Version 1.1 with the following Amendments, + including Exhibit A-Netscape Public License. Files identified with + "Exhibit A-Netscape Public License" are governed by the Netscape + Public License Version 1.1. + + Additional Terms applicable to the Netscape Public License. + I. Effect. + These additional terms described in this Netscape Public + License -- Amendments shall apply to the Mozilla Communicator + client code and to all Covered Code under this License. + + II. "Netscape's Branded Code" means Covered Code that Netscape + distributes and/or permits others to distribute under one or more + trademark(s) which are controlled by Netscape but which are not + licensed for use under this License. + + III. Netscape and logo. + This License does not grant any rights to use the trademarks + "Netscape", the "Netscape N and horizon" logo or the "Netscape + lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript", + "Smart Browsing" even if such marks are included in the Original + Code or Modifications. + + IV. Inability to Comply Due to Contractual Obligation. + Prior to licensing the Original Code under this License, Netscape + has licensed third party code for use in Netscape's Branded Code. + To the extent that Netscape is limited contractually from making + such third party code available under this License, Netscape may + choose to reintegrate such code into Covered Code without being + required to distribute such code in Source Code form, even if + such code would otherwise be considered "Modifications" under + this License. + + V. Use of Modifications and Covered Code by Initial Developer. + V.1. In General. + The obligations of Section 3 apply to Netscape, except to + the extent specified in this Amendment, Section V.2 and V.3. + + V.2. Other Products. + Netscape may include Covered Code in products other than the + Netscape's Branded Code which are released by Netscape + during the two (2) years following the release date of the + Original Code, without such additional products becoming + subject to the terms of this License, and may license such + additional products on different terms from those contained + in this License. + + V.3. Alternative Licensing. + Netscape may license the Source Code of Netscape's Branded + Code, including Modifications incorporated therein, without + such Netscape Branded Code becoming subject to the terms of + this License, and may license such Netscape Branded Code on + different terms from those contained in this License. + + VI. Litigation. + Notwithstanding the limitations of Section 11 above, the + provisions regarding litigation in Section 11(a), (b) and (c) of + the License shall apply to all disputes relating to this License. + + EXHIBIT A-Netscape Public License. + + "The contents of this file are subject to the Netscape Public + License Version 1.1 (the "License"); you may not use this file + except in compliance with the License. You may obtain a copy of + the License at http://www.mozilla.org/NPL/ + + Software distributed under the License is distributed on an "AS + IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or + implied. See the License for the specific language governing + rights and limitations under the License. + + The Original Code is Mozilla Communicator client code, released + March 31, 1998. + + The Initial Developer of the Original Code is Netscape + Communications Corporation. Portions created by Netscape are + Copyright (C) 1998-1999 Netscape Communications Corporation. All + Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the + terms of the _____ license (the "[___] License"), in which case + the provisions of [______] License are applicable instead of + those above. If you wish to allow use of your version of this + file only under the terms of the [____] License and not to allow + others to use your version of this file under the NPL, indicate + your decision by deleting the provisions above and replace them + with the notice and other provisions required by the [___] + License. If you do not delete the provisions above, a recipient + may use your version of this file under either the NPL or the + [___] License." + + ---------------------------------------------------------------------- + + MOZILLA PUBLIC LICENSE + Version 1.1 + + --------------- + +1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to + the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications + made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source + Code. + + 1.6. "Initial Developer" means the individual or entity identified + as the Initial Developer in the Source Code notice required by Exhibit + A. + + 1.7. "Larger Work" means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, + and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus + any associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or another + well known, available Covered Code of the Contributor's choice. The + Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available + for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control" means (a) the power, direct or indirect, + to cause the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such + entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original + Code (or portions thereof) with or without Modifications, and/or + as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or + selling of Original Code, to make, have made, use, practice, + sell, and offer for sale, and/or otherwise dispose of the + Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are + effective on the date Initial Developer first distributes + Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused + by: i) the modification of the Original Code or ii) the + combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an + unmodified basis, with other Modifications, as Covered Code + and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either alone + and/or in combination with its Contributor Version (or portions + of such combination), to make, use, sell, offer for sale, have + made, and/or otherwise dispose of: 1) Modifications made by that + Contributor (or portions thereof); and 2) the combination of + Modifications made by that Contributor with its Contributor + Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first makes Commercial Use of + the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; + 3) for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made + by that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + +3. Distribution Obligations. + + 3.1. Application of License. + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be + distributed only under the terms of this License or a future version + of this License released under Section 6.1, and You must include a + copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of this + License or the recipients' rights hereunder. However, You may include + an additional document offering the additional rights described in + Section 3.5. + + 3.2. Availability of Source Code. + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Code provided by the Initial Developer and including the name of the + Initial Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + (a) Third Party Claims. + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, + Contributor must include a text file with the Source Code + distribution titled "LEGAL" which describes the claim and the + party making the claim in sufficient detail that a recipient will + know whom to contact. If Contributor obtains such knowledge after + the Modification is made available as described in Section 3.2, + Contributor shall promptly modify the LEGAL file in all copies + Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Covered + Code that new knowledge has been obtained. + + (b) Contributor APIs. + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which + are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + + (c) Representations. + Contributor represents that, except as disclosed pursuant to + Section 3.4(a) above, Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or + Contributor has sufficient rights to grant the rights conveyed by + this License. + + 3.5. Required Notices. + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely + to look for such a notice. If You created one or more Modification(s) + You may add your name as a Contributor to the notice described in + Exhibit A. You must also duplicate this License in any documentation + for the Source Code where You describe recipients' rights or ownership + rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear than + any such warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the Initial + Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, + support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of + the Covered Code is available under the terms of this License, + including a description of how and where You have fulfilled the + obligations of Section 3.2. The notice must be conspicuously included + in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may + contain terms different from this License, provided that You are in + compliance with the terms of this License and that the license for the + Executable version does not attempt to limit or alter the recipient's + rights in the Source Code version from the rights set forth in this + License. If You distribute the Executable version under a different + license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial + Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such + terms You offer. + + 3.7. Larger Works. + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be included in the LEGAL file described in Section 3.4 and must + be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions. + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version + will be given a distinguishing version number. + + 6.2. Effect of New Versions. + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works. + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that + the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", + "MPL", "NPL" or any confusingly similar phrase do not appear in your + license (except to note that your license differs from this License) + and (b) otherwise make it clear that Your version of the license + contains terms which differ from the Mozilla Public License and + Netscape Public License. (Filling in the name of the Initial + Developer, Original Code or Contributor in the notice described in + Exhibit A shall not of themselves be deemed to be modifications of + this License.) + +7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declatory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation claim + is not withdrawn, the rights granted by Participant to You under + Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, then + any rights granted to You by such Participant under Sections 2.1(b) + and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that + Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, + all end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" and "commercial computer software documentation," as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 + C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), + all U.S. Government End Users acquire Covered Code with only those + rights set forth herein. + +11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. + With respect to disputes in which at least one party is a citizen of, + or an entity chartered or registered to do business in the United + States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, + California, with the losing party responsible for costs, including + without limitation, court costs and reasonable attorneys' fees and + expenses. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this + License. + +12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, + out of its utilization of rights under this License and You agree to + work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the NPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + +EXHIBIT A -Mozilla Public License. + + ``The contents of this file are subject to the Mozilla Public License + Version 1.1 (the "License"); you may not use this file except in + compliance with the License. You may obtain a copy of the License at + http://www.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + + The Original Code is ______________________________________. + + The Initial Developer of the Original Code is ________________________. + Portions created by ______________________ are Copyright (C) ______ + _______________________. All Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the terms + of the _____ license (the "[___] License"), in which case the + provisions of [______] License are applicable instead of those + above. If you wish to allow use of your version of this file only + under the terms of the [____] License and not to allow others to use + your version of this file under the MPL, indicate your decision by + deleting the provisions above and replace them with the notice and + other provisions required by the [___] License. If you do not delete + the provisions above, a recipient may use your version of this file + under either the MPL or the [___] License." + + [NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications.] + + +============================================================================== + + diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.miethxml-toolkit.txt b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.miethxml-toolkit.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.miethxml-toolkit.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.pdf-transcoder.txt b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.pdf-transcoder.txt new file mode 100644 index 0000000..3e4e3d0 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.pdf-transcoder.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.txt b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/legal/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/batik-all.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/batik-all.jar new file mode 100644 index 0000000..dd9588b Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/batik-all.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/js.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/js.jar new file mode 100644 index 0000000..2b92650 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/js.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-0.4.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-0.4.jar new file mode 100644 index 0000000..49ce629 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-0.4.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-svg-0.4.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-svg-0.4.jar new file mode 100644 index 0000000..bc6f444 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-svg-0.4.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-xslt.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-xslt.jar new file mode 100644 index 0000000..c9ba655 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/kabeja-xslt.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/miethxml-toolkit.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/miethxml-toolkit.jar new file mode 100644 index 0000000..337ad86 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/miethxml-toolkit.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/miethxml-ui.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/miethxml-ui.jar new file mode 100644 index 0000000..6363530 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/miethxml-ui.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/nothing b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/nothing new file mode 100644 index 0000000..e69de29 diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/pdf-transcoder.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/pdf-transcoder.jar new file mode 100644 index 0000000..1a8666e Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/pdf-transcoder.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/xml-apis-ext.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/xml-apis-ext.jar new file mode 100644 index 0000000..a7869d6 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/xml-apis-ext.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/xml-apis.jar b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/xml-apis.jar new file mode 100644 index 0000000..d42c0ea Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/lib/xml-apis.jar differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft1.dxf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft1.dxf new file mode 100644 index 0000000..3e16efc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft1.dxf @@ -0,0 +1,255532 @@ + 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 +42050.0 + 20 +29700.0 + 30 +0.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +42050.0 + 20 +29700.0 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$DRAGMODE + 70 + 2 + 9 +$LTSCALE + 40 +1000.0 + 9 +$OSMODE + 70 + 0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +175.0 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +STANDART + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +1.0 + 9 +$DIMEXO + 40 +1650.0 + 9 +$DIMDLI + 40 +0.0 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +150.0 + 9 +$DIMEXE + 40 +150.0 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +175.0 + 9 +$DIMCEN + 40 +12.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 1 + 9 +$DIMSE2 + 70 + 1 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 +MASSHILFSLINIE + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 0 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 2 + 9 +$DIMALTF + 40 +25.4 + 9 +$DIMLFAC + 40 +0.0001 + 9 +$DIMTOFL + 70 + 0 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +ENTWURFSBEMASSUNG + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 2 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +0.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 0 + 9 +$MENU + 1 +acad + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$BLIPMODE + 70 + 1 + 9 +$CHAMFERA + 40 +0.0 + 9 +$CHAMFERB + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2450793.70898 + 9 +$TDUPDATE + 40 +2450818.501965 + 9 +$TDINDWG + 40 +1.433361 + 9 +$TDUSRTIMER + 40 +1.433361 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +0.0 + 9 +$COORDS + 70 + 2 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$ATTDIA + 70 + 0 + 9 +$ATTREQ + 70 + 1 + 9 +$HANDLING + 70 + 1 + 9 +$HANDSEED + 5 +3861 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSNAME + 2 +WELT + 9 +$UCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 16 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+020 + 20 +1.000000E+020 + 30 +1.000000E+020 + 9 +$PEXTMAX + 10 +-1.000000E+020 + 20 +-1.000000E+020 + 30 +-1.000000E+020 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +12.0 + 20 +9.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 0 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 70 + 3 + 0 +VPORT + 2 +*ACTIVE + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +23706.449376 + 22 +15278.084191 + 13 +0.0 + 23 +0.0 + 14 +5.0 + 24 +5.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +30883.554814 + 41 +1.551664 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 1 + 75 + 1 + 76 + 0 + 77 + 0 + 78 + 2 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 70 + 25 + 0 +LTYPE + 2 +CONTINUOUS + 70 + 0 + 3 +Solid Line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 2 +RAND + 70 + 0 + 3 +__ __ . __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +1.75 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +RAND2 + 70 + 0 + 3 +__.__.__.__.__.__.__.__.__.__.__.__.__.__.__.__ + 72 + 65 + 73 + 6 + 40 +0.875 + 49 +0.25 + 49 +-0.125 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +RANDX2 + 70 + 0 + 3 +____ ____ . ____ ____ . ____ ____ . __ + 72 + 65 + 73 + 6 + 40 +3.5 + 49 +1.0 + 49 +-0.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +MITTE + 70 + 0 + 3 +____ _ ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +MITTE2 + 70 + 0 + 3 +___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ + 72 + 65 + 73 + 4 + 40 +1.125 + 49 +0.75 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +MITTEX2 + 70 + 0 + 3 +________ __ ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +4.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +LTYPE + 2 +STRICHPUNKT + 70 + 0 + 3 +__ . __ . __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +1.0 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +STRICHPUNKT2 + 70 + 0 + 3 +_._._._._._._._._._._._._._._._._._._._._._._._ + 72 + 65 + 73 + 4 + 40 +0.5 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +STRICHPUNKTX2 + 70 + 0 + 3 +____ . ____ . ____ . ____ . ____ . __ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +GESTRICHELT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +GESTRICHELT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +GESTRICHELTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ + 72 + 65 + 73 + 2 + 40 +1.5 + 49 +1.0 + 49 +-0.5 + 0 +LTYPE + 2 +GETRENNT + 70 + 0 + 3 +____ . . ____ . . ____ . . ____ . . ____ . . __ + 72 + 65 + 73 + 6 + 40 +1.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +GETRENNT2 + 70 + 0 + 3 +__..__..__..__..__..__..__..__..__..__..__..__. + 72 + 65 + 73 + 6 + 40 +0.625 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +GETRENNTX2 + 70 + 0 + 3 +________ . . ________ . . ________ . . + 72 + 65 + 73 + 6 + 40 +2.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +PUNKT + 70 + 0 + 3 +. . . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +PUNKT2 + 70 + 0 + 3 +............................................... + 72 + 65 + 73 + 2 + 40 +0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +PUNKTX2 + 70 + 0 + 3 +. . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +VERDECKT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +VERDECKT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.1875 + 49 +0.125 + 49 +-0.0625 + 0 +LTYPE + 2 +VERDECKTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ ____ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM + 70 + 0 + 3 +______ __ __ ______ __ __ ______ __ __ + 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 +PHANTOM2 + 70 + 0 + 3 +___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ + 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 +PHANTOMX2 + 70 + 0 + 3 +____________ ____ ____ ____________ + 72 + 65 + 73 + 6 + 40 +5.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 + 21 + 0 +LAYER + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +MAUERWERK + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +TRENNWAENDE + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +FENSTER + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +VORSATZSCHALLE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DAEMMUNG + 70 + 0 + 62 + 6 + 6 +CONTINUOUS + 0 +LAYER + 2 +BALKONE + 70 + 0 + 62 + 1 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHORNSTEINE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR-MAUER + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR-VORMAUER + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR-TRENNWAND + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR-DAEMMUNG + 70 + 0 + 62 + 6 + 6 +CONTINUOUS + 0 +LAYER + 2 +BEMASSUNG + 70 + 0 + 62 + 3 + 6 +CONTINUOUS + 0 +LAYER + 2 +DEFPOINTS + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +TREPPE + 70 + 0 + 62 + 3 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHNITTLINIEN + 70 + 0 + 62 + 1 + 6 +STRICHPUNKT + 0 +LAYER + 2 +LEGENDE-35 + 70 + 0 + 62 + 2 + 6 +CONTINUOUS + 0 +LAYER + 2 +SPANNRICHTUNG + 70 + 0 + 62 + 2 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-70 + 70 + 0 + 62 + 1 + 6 +CONTINUOUS + 0 +LAYER + 2 +DETAILS + 70 + 0 + 62 + 1 + 6 +GESTRICHELT2 + 0 +LAYER + 2 +LEGENDE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 + 2 + 0 +STYLE + 2 +STANDARD + 70 + 0 + 40 +175.0 + 41 +0.75 + 50 +0.0 + 71 + 0 + 42 +175.0 + 3 +C:\ACADWIN\FONTS\TXT.SHX + 4 + + 0 +STYLE + 2 +STANDART + 70 + 0 + 40 +175.0 + 41 +0.75 + 50 +0.0 + 71 + 0 + 42 +175.0 + 3 +C:\ACADWIN\FONTS\TXT.SHX + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 + 2 + 0 +UCS + 2 +WELT + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +UCS + 2 +MAUER + 70 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 + 1 + 0 +APPID + 2 +ACAD + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 70 + 2 + 0 +DIMSTYLE + 2 +ENTWURFSBEMASSUNG + 70 + 0 + 3 + + 4 + + 5 +MASSHILFSLINIE + 6 + + 7 + + 40 +1.0 + 41 +1.0 + 42 +1650.0 + 43 +0.0 + 44 +150.0 + 45 +0.0 + 46 +150.0 + 47 +0.0 + 48 +0.0 +140 +175.0 +141 +12.5 +142 +0.0 +143 +25.4 +144 +0.0001 +145 +0.0 +146 +1.0 +147 +0.0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 0 + 75 + 1 + 76 + 1 + 77 + 1 + 78 + 8 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 1 +175 + 0 +176 + 0 +177 + 0 +178 + 0 + 0 +DIMSTYLE + 2 +ENTWURF2 + 70 + 0 + 3 + + 4 + + 5 +MASSHILFSLINIE + 6 + + 7 + + 40 +1.0 + 41 +0.0 + 42 +2150.0 + 43 +0.0 + 44 +150.0 + 45 +0.0 + 46 +150.0 + 47 +0.0 + 48 +0.0 +140 +175.0 +141 +12.5 +142 +75.0 +143 +25.4 +144 +0.0001 +145 +0.0 +146 +1.0 +147 +0.0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 0 + 75 + 0 + 76 + 0 + 77 + 1 + 78 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 1 +175 + 0 +176 + 0 +177 + 0 +178 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 8 +0 + 2 +$MODEL_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$MODEL_SPACE + 1 + + 0 +ENDBLK + 5 +134 + 8 +0 + 0 +BLOCK + 67 + 1 + 8 +0 + 2 +$PAPER_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$PAPER_SPACE + 1 + + 0 +ENDBLK + 5 +132 + 67 + 1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X0 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X0 + 1 + + 0 +LINE + 5 +138 + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +20892.766953 + 30 +0.0 + 11 +15240.0 + 21 +21257.766953 + 31 +0.0 + 0 +LINE + 5 +139 + 8 +0 + 62 + 0 + 10 +15732.233047 + 20 +21750.0 + 30 +0.0 + 11 +15865.0 + 21 +21882.766953 + 31 +0.0 + 0 +LINE + 5 +13A + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +21246.320344 + 30 +0.0 + 11 +15240.0 + 21 +21611.320344 + 31 +0.0 + 0 +LINE + 5 +13B + 8 +0 + 62 + 0 + 10 +15378.679656 + 20 +21750.0 + 30 +0.0 + 11 +15743.679656 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +13C + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +21599.873734 + 30 +0.0 + 11 +15390.126266 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +13D + 8 +0 + 62 + 0 + 10 +14671.572875 + 20 +21750.0 + 30 +0.0 + 11 +15036.572875 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +13E + 8 +0 + 62 + 0 + 10 +14318.019485 + 20 +21750.0 + 30 +0.0 + 11 +14683.019485 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +13F + 8 +0 + 62 + 0 + 10 +13964.466094 + 20 +21750.0 + 30 +0.0 + 11 +14329.466094 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +140 + 8 +0 + 62 + 0 + 10 +13610.912703 + 20 +21750.0 + 30 +0.0 + 11 +13975.912703 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +141 + 8 +0 + 62 + 0 + 10 +13257.359313 + 20 +21750.0 + 30 +0.0 + 11 +13622.359313 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +142 + 8 +0 + 62 + 0 + 10 +12903.805922 + 20 +21750.0 + 30 +0.0 + 11 +13268.805922 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +143 + 8 +0 + 62 + 0 + 10 +12550.252532 + 20 +21750.0 + 30 +0.0 + 11 +12915.252532 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +144 + 8 +0 + 62 + 0 + 10 +12196.699141 + 20 +21750.0 + 30 +0.0 + 11 +12561.699141 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +145 + 8 +0 + 62 + 0 + 10 +11843.145751 + 20 +21750.0 + 30 +0.0 + 11 +12208.145751 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +146 + 8 +0 + 62 + 0 + 10 +11489.59236 + 20 +21750.0 + 30 +0.0 + 11 +11854.59236 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +147 + 8 +0 + 62 + 0 + 10 +11250.0 + 20 +21863.961031 + 30 +0.0 + 11 +11501.038969 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +148 + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +20539.213562 + 30 +0.0 + 11 +15240.0 + 21 +20904.213562 + 31 +0.0 + 0 +LINE + 5 +149 + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +20185.660172 + 30 +0.0 + 11 +15240.0 + 21 +20550.660172 + 31 +0.0 + 0 +LINE + 5 +14A + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +19832.106781 + 30 +0.0 + 11 +15240.0 + 21 +20197.106781 + 31 +0.0 + 0 +LINE + 5 +14B + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +19478.553391 + 30 +0.0 + 11 +15240.0 + 21 +19843.553391 + 31 +0.0 + 0 +LINE + 5 +14C + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +19125.0 + 30 +0.0 + 11 +15240.0 + 21 +19490.0 + 31 +0.0 + 0 +LINE + 5 +14D + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +18771.446609 + 30 +0.0 + 11 +15240.0 + 21 +19136.446609 + 31 +0.0 + 0 +LINE + 5 +14E + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +18417.893219 + 30 +0.0 + 11 +15240.0 + 21 +18782.893219 + 31 +0.0 + 0 +LINE + 5 +14F + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +18064.339828 + 30 +0.0 + 11 +15240.0 + 21 +18429.339828 + 31 +0.0 + 0 +LINE + 5 +150 + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +17710.786438 + 30 +0.0 + 11 +15240.0 + 21 +18075.786438 + 31 +0.0 + 0 +LINE + 5 +151 + 8 +0 + 62 + 0 + 10 +14875.0 + 20 +17357.233047 + 30 +0.0 + 11 +15240.0 + 21 +17722.233047 + 31 +0.0 + 0 +LINE + 5 +152 + 8 +0 + 62 + 0 + 10 +15121.320344 + 20 +17250.0 + 30 +0.0 + 11 +15240.0 + 21 +17368.679656 + 31 +0.0 + 0 +ENDBLK + 5 +153 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X1 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X1 + 1 + + 0 +LINE + 5 +155 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +19856.601718 + 30 +0.0 + 11 +5365.0 + 21 +20221.601718 + 31 +0.0 + 0 +LINE + 5 +156 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +20210.155108 + 30 +0.0 + 11 +5365.0 + 21 +20575.155108 + 31 +0.0 + 0 +LINE + 5 +157 + 8 +0 + 62 + 0 + 10 +6539.844892 + 20 +21750.0 + 30 +0.0 + 11 +6740.0 + 21 +21950.155108 + 31 +0.0 + 0 +LINE + 5 +158 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +20563.708499 + 30 +0.0 + 11 +5365.0 + 21 +20928.708499 + 31 +0.0 + 0 +LINE + 5 +159 + 8 +0 + 62 + 0 + 10 +6186.291501 + 20 +21750.0 + 30 +0.0 + 11 +6551.291501 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +15A + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +20917.26189 + 30 +0.0 + 11 +5365.0 + 21 +21282.26189 + 31 +0.0 + 0 +LINE + 5 +15B + 8 +0 + 62 + 0 + 10 +5832.73811 + 20 +21750.0 + 30 +0.0 + 11 +6197.73811 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +15C + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +21270.81528 + 30 +0.0 + 11 +5365.0 + 21 +21635.81528 + 31 +0.0 + 0 +LINE + 5 +15D + 8 +0 + 62 + 0 + 10 +5479.18472 + 20 +21750.0 + 30 +0.0 + 11 +5844.18472 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +15E + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +21624.368671 + 30 +0.0 + 11 +5490.631329 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +15F + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +21977.922061 + 30 +0.0 + 11 +5137.077939 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +160 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +19503.048327 + 30 +0.0 + 11 +5365.0 + 21 +19868.048327 + 31 +0.0 + 0 +LINE + 5 +161 + 8 +0 + 62 + 0 + 10 +5225.505063 + 20 +19375.0 + 30 +0.0 + 11 +5365.0 + 21 +19514.494937 + 31 +0.0 + 0 +ENDBLK + 5 +162 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X2 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X2 + 1 + + 0 +LINE + 5 +164 + 8 +0 + 62 + 0 + 10 +9721.825407 + 20 +21750.0 + 30 +0.0 + 11 +10086.825407 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +165 + 8 +0 + 62 + 0 + 10 +9368.272016 + 20 +21750.0 + 30 +0.0 + 11 +9733.272016 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +166 + 8 +0 + 62 + 0 + 10 +9014.718626 + 20 +21750.0 + 30 +0.0 + 11 +9379.718626 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +167 + 8 +0 + 62 + 0 + 10 +8661.165235 + 20 +21750.0 + 30 +0.0 + 11 +9026.165235 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +168 + 8 +0 + 62 + 0 + 10 +8500.0 + 20 +21942.388155 + 30 +0.0 + 11 +8672.611845 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +169 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +21424.621202 + 30 +0.0 + 11 +10240.0 + 21 +21914.621202 + 31 +0.0 + 0 +LINE + 5 +16A + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +21071.067812 + 30 +0.0 + 11 +10115.0 + 21 +21436.067812 + 31 +0.0 + 0 +LINE + 5 +16B + 8 +0 + 62 + 0 + 10 +9907.485579 + 20 +20875.0 + 30 +0.0 + 11 +10115.0 + 21 +21082.514421 + 31 +0.0 + 0 +ENDBLK + 5 +16C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X3 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X3 + 1 + + 0 +LINE + 5 +16E + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +20739.59236 + 30 +0.0 + 11 +22865.0 + 21 +21104.59236 + 31 +0.0 + 0 +LINE + 5 +16F + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +21093.145751 + 30 +0.0 + 11 +22865.0 + 21 +21458.145751 + 31 +0.0 + 0 +LINE + 5 +170 + 8 +0 + 62 + 0 + 10 +23156.854249 + 20 +21750.0 + 30 +0.0 + 11 +23365.0 + 21 +21958.145751 + 31 +0.0 + 0 +LINE + 5 +171 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +21446.699141 + 30 +0.0 + 11 +23168.300859 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +172 + 8 +0 + 62 + 0 + 10 +22449.747468 + 20 +21750.0 + 30 +0.0 + 11 +22814.747468 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +173 + 8 +0 + 62 + 0 + 10 +22096.194078 + 20 +21750.0 + 30 +0.0 + 11 +22461.194078 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +174 + 8 +0 + 62 + 0 + 10 +21742.640687 + 20 +21750.0 + 30 +0.0 + 11 +22107.640687 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +175 + 8 +0 + 62 + 0 + 10 +21389.087297 + 20 +21750.0 + 30 +0.0 + 11 +21754.087297 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +176 + 8 +0 + 62 + 0 + 10 +21035.533906 + 20 +21750.0 + 30 +0.0 + 11 +21400.533906 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +177 + 8 +0 + 62 + 0 + 10 +20681.980515 + 20 +21750.0 + 30 +0.0 + 11 +21046.980515 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +178 + 8 +0 + 62 + 0 + 10 +20328.427125 + 20 +21750.0 + 30 +0.0 + 11 +20693.427125 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +179 + 8 +0 + 62 + 0 + 10 +19974.873734 + 20 +21750.0 + 30 +0.0 + 11 +20339.873734 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +17A + 8 +0 + 62 + 0 + 10 +19750.0 + 20 +21878.679656 + 30 +0.0 + 11 +19986.320344 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +17B + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +20386.038969 + 30 +0.0 + 11 +22865.0 + 21 +20751.038969 + 31 +0.0 + 0 +LINE + 5 +17C + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +20032.485579 + 30 +0.0 + 11 +22865.0 + 21 +20397.485579 + 31 +0.0 + 0 +LINE + 5 +17D + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +19678.932188 + 30 +0.0 + 11 +22865.0 + 21 +20043.932188 + 31 +0.0 + 0 +LINE + 5 +17E + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +19325.378798 + 30 +0.0 + 11 +22865.0 + 21 +19690.378798 + 31 +0.0 + 0 +LINE + 5 +17F + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +18971.825407 + 30 +0.0 + 11 +22865.0 + 21 +19336.825407 + 31 +0.0 + 0 +LINE + 5 +180 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +18618.272016 + 30 +0.0 + 11 +22865.0 + 21 +18983.272016 + 31 +0.0 + 0 +LINE + 5 +181 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +18264.718626 + 30 +0.0 + 11 +22865.0 + 21 +18629.718626 + 31 +0.0 + 0 +LINE + 5 +182 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +17911.165235 + 30 +0.0 + 11 +22865.0 + 21 +18276.165235 + 31 +0.0 + 0 +LINE + 5 +183 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +17557.611845 + 30 +0.0 + 11 +22865.0 + 21 +17922.611845 + 31 +0.0 + 0 +LINE + 5 +184 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +17204.058454 + 30 +0.0 + 11 +22865.0 + 21 +17569.058454 + 31 +0.0 + 0 +LINE + 5 +185 + 8 +0 + 62 + 0 + 10 +22774.494937 + 20 +17125.0 + 30 +0.0 + 11 +22865.0 + 21 +17215.505063 + 31 +0.0 + 0 +ENDBLK + 5 +186 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X4 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X4 + 1 + + 0 +LINE + 5 +188 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +20725.505063 + 30 +0.0 + 11 +26740.0 + 21 +21090.505063 + 31 +0.0 + 0 +LINE + 5 +189 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +21079.058454 + 30 +0.0 + 11 +26740.0 + 21 +21444.058454 + 31 +0.0 + 0 +LINE + 5 +18A + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +21432.611845 + 30 +0.0 + 11 +26740.0 + 21 +21797.611845 + 31 +0.0 + 0 +LINE + 5 +18B + 8 +0 + 62 + 0 + 10 +26338.834765 + 20 +21750.0 + 30 +0.0 + 11 +26703.834765 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +18C + 8 +0 + 62 + 0 + 10 +25985.281374 + 20 +21750.0 + 30 +0.0 + 11 +26350.281374 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +18D + 8 +0 + 62 + 0 + 10 +25631.727984 + 20 +21750.0 + 30 +0.0 + 11 +25996.727984 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +18E + 8 +0 + 62 + 0 + 10 +25278.174593 + 20 +21750.0 + 30 +0.0 + 11 +25643.174593 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +18F + 8 +0 + 62 + 0 + 10 +25250.0 + 20 +22075.378798 + 30 +0.0 + 11 +25289.621202 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +190 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +20371.951673 + 30 +0.0 + 11 +26740.0 + 21 +20736.951673 + 31 +0.0 + 0 +LINE + 5 +191 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +20018.398282 + 30 +0.0 + 11 +26740.0 + 21 +20383.398282 + 31 +0.0 + 0 +LINE + 5 +192 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +19664.844892 + 30 +0.0 + 11 +26740.0 + 21 +20029.844892 + 31 +0.0 + 0 +LINE + 5 +193 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +19311.291501 + 30 +0.0 + 11 +26740.0 + 21 +19676.291501 + 31 +0.0 + 0 +LINE + 5 +194 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +18957.73811 + 30 +0.0 + 11 +26740.0 + 21 +19322.73811 + 31 +0.0 + 0 +LINE + 5 +195 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +18604.18472 + 30 +0.0 + 11 +26740.0 + 21 +18969.18472 + 31 +0.0 + 0 +LINE + 5 +196 + 8 +0 + 62 + 0 + 10 +26499.368671 + 20 +18375.0 + 30 +0.0 + 11 +26740.0 + 21 +18615.631329 + 31 +0.0 + 0 +ENDBLK + 5 +197 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X5 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X5 + 1 + + 0 +LINE + 5 +199 + 8 +0 + 62 + 0 + 10 +25163.582233 + 20 +15625.0 + 30 +0.0 + 11 +25528.582233 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +19A + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +16836.417767 + 30 +0.0 + 11 +26740.0 + 21 +17201.417767 + 31 +0.0 + 0 +LINE + 5 +19B + 8 +0 + 62 + 0 + 10 +24810.028843 + 20 +15625.0 + 30 +0.0 + 11 +25175.028843 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +19C + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +17189.971157 + 30 +0.0 + 11 +26740.0 + 21 +17554.971157 + 31 +0.0 + 0 +LINE + 5 +19D + 8 +0 + 62 + 0 + 10 +24456.475452 + 20 +15625.0 + 30 +0.0 + 11 +24821.475452 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +19E + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +17543.524548 + 30 +0.0 + 11 +26571.475452 + 21 +17740.0 + 31 +0.0 + 0 +LINE + 5 +19F + 8 +0 + 62 + 0 + 10 +24102.922061 + 20 +15625.0 + 30 +0.0 + 11 +24467.922061 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A0 + 8 +0 + 62 + 0 + 10 +23749.368671 + 20 +15625.0 + 30 +0.0 + 11 +24114.368671 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A1 + 8 +0 + 62 + 0 + 10 +23395.81528 + 20 +15625.0 + 30 +0.0 + 11 +23760.81528 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A2 + 8 +0 + 62 + 0 + 10 +23042.26189 + 20 +15625.0 + 30 +0.0 + 11 +23407.26189 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A3 + 8 +0 + 62 + 0 + 10 +22688.708499 + 20 +15625.0 + 30 +0.0 + 11 +23053.708499 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A4 + 8 +0 + 62 + 0 + 10 +22335.155108 + 20 +15625.0 + 30 +0.0 + 11 +22865.0 + 21 +16154.844892 + 31 +0.0 + 0 +LINE + 5 +1A5 + 8 +0 + 62 + 0 + 10 +22250.0 + 20 +15893.398282 + 30 +0.0 + 11 +22346.601718 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A6 + 8 +0 + 62 + 0 + 10 +22500.0 + 20 +16143.398282 + 30 +0.0 + 11 +22596.601718 + 21 +16240.0 + 31 +0.0 + 0 +LINE + 5 +1A7 + 8 +0 + 62 + 0 + 10 +25517.135624 + 20 +15625.0 + 30 +0.0 + 11 +25882.135624 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1A8 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +16482.864376 + 30 +0.0 + 11 +26740.0 + 21 +16847.864376 + 31 +0.0 + 0 +LINE + 5 +1A9 + 8 +0 + 62 + 0 + 10 +25870.689014 + 20 +15625.0 + 30 +0.0 + 11 +26235.689014 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +1AA + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +16129.310986 + 30 +0.0 + 11 +26740.0 + 21 +16494.310986 + 31 +0.0 + 0 +LINE + 5 +1AB + 8 +0 + 62 + 0 + 10 +26224.242405 + 20 +15625.0 + 30 +0.0 + 11 +26740.0 + 21 +16140.757595 + 31 +0.0 + 0 +LINE + 5 +1AC + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +15422.204204 + 30 +0.0 + 11 +26740.0 + 21 +15787.204204 + 31 +0.0 + 0 +LINE + 5 +1AD + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +15068.650814 + 30 +0.0 + 11 +26740.0 + 21 +15433.650814 + 31 +0.0 + 0 +LINE + 5 +1AE + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +14715.097423 + 30 +0.0 + 11 +26740.0 + 21 +15080.097423 + 31 +0.0 + 0 +LINE + 5 +1AF + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +14361.544033 + 30 +0.0 + 11 +26740.0 + 21 +14726.544033 + 31 +0.0 + 0 +LINE + 5 +1B0 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +14007.990642 + 30 +0.0 + 11 +26740.0 + 21 +14372.990642 + 31 +0.0 + 0 +LINE + 5 +1B1 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +13654.437252 + 30 +0.0 + 11 +26740.0 + 21 +14019.437252 + 31 +0.0 + 0 +LINE + 5 +1B2 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +13300.883861 + 30 +0.0 + 11 +26740.0 + 21 +13665.883861 + 31 +0.0 + 0 +LINE + 5 +1B3 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +12947.33047 + 30 +0.0 + 11 +26740.0 + 21 +13312.33047 + 31 +0.0 + 0 +LINE + 5 +1B4 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +12593.77708 + 30 +0.0 + 11 +26740.0 + 21 +12958.77708 + 31 +0.0 + 0 +LINE + 5 +1B5 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +12240.223689 + 30 +0.0 + 11 +26740.0 + 21 +12605.223689 + 31 +0.0 + 0 +LINE + 5 +1B6 + 8 +0 + 62 + 0 + 10 +26488.329701 + 20 +12000.0 + 30 +0.0 + 11 +26740.0 + 21 +12251.670299 + 31 +0.0 + 0 +ENDBLK + 5 +1B7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X6 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X6 + 1 + + 0 +LINE + 5 +1B9 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +18242.640687 + 30 +0.0 + 11 +10115.0 + 21 +18607.640687 + 31 +0.0 + 0 +LINE + 5 +1BA + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +18596.194078 + 30 +0.0 + 11 +10115.0 + 21 +18961.194078 + 31 +0.0 + 0 +LINE + 5 +1BB + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +18949.747468 + 30 +0.0 + 11 +10115.0 + 21 +19314.747468 + 31 +0.0 + 0 +LINE + 5 +1BC + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +19303.300859 + 30 +0.0 + 11 +10115.0 + 21 +19668.300859 + 31 +0.0 + 0 +LINE + 5 +1BD + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +19656.854249 + 30 +0.0 + 11 +10083.145751 + 21 +19990.0 + 31 +0.0 + 0 +LINE + 5 +1BE + 8 +0 + 62 + 0 + 10 +9000.0 + 20 +17139.087297 + 30 +0.0 + 11 +9100.912703 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1BF + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +17889.087297 + 30 +0.0 + 11 +10115.0 + 21 +18254.087297 + 31 +0.0 + 0 +LINE + 5 +1C0 + 8 +0 + 62 + 0 + 10 +9089.466094 + 20 +16875.0 + 30 +0.0 + 11 +9454.466094 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1C1 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +17535.533906 + 30 +0.0 + 11 +10115.0 + 21 +17900.533906 + 31 +0.0 + 0 +LINE + 5 +1C2 + 8 +0 + 62 + 0 + 10 +9443.019485 + 20 +16875.0 + 30 +0.0 + 11 +10115.0 + 21 +17546.980515 + 31 +0.0 + 0 +LINE + 5 +1C3 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +16828.427125 + 30 +0.0 + 11 +10115.0 + 21 +17193.427125 + 31 +0.0 + 0 +LINE + 5 +1C4 + 8 +0 + 62 + 0 + 10 +9900.126266 + 20 +16625.0 + 30 +0.0 + 11 +10115.0 + 21 +16839.873734 + 31 +0.0 + 0 +ENDBLK + 5 +1C5 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X7 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X7 + 1 + + 0 +LINE + 5 +1C7 + 8 +0 + 62 + 0 + 10 +6261.038969 + 20 +16875.0 + 30 +0.0 + 11 +6626.038969 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1C8 + 8 +0 + 62 + 0 + 10 +5157.485579 + 20 +16125.0 + 30 +0.0 + 11 +5365.0 + 21 +16332.514421 + 31 +0.0 + 0 +LINE + 5 +1C9 + 8 +0 + 62 + 0 + 10 +5907.485579 + 20 +16875.0 + 30 +0.0 + 11 +6272.485579 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1CA + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +16321.067812 + 30 +0.0 + 11 +5365.0 + 21 +16686.067812 + 31 +0.0 + 0 +LINE + 5 +1CB + 8 +0 + 62 + 0 + 10 +5553.932188 + 20 +16875.0 + 30 +0.0 + 11 +5918.932188 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1CC + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +16674.621202 + 30 +0.0 + 11 +5565.378798 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1CD + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +17028.174593 + 30 +0.0 + 11 +5365.0 + 21 +17393.174593 + 31 +0.0 + 0 +LINE + 5 +1CE + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +17381.727984 + 30 +0.0 + 11 +5365.0 + 21 +17746.727984 + 31 +0.0 + 0 +LINE + 5 +1CF + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +17735.281374 + 30 +0.0 + 11 +5365.0 + 21 +18100.281374 + 31 +0.0 + 0 +LINE + 5 +1D0 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +18088.834765 + 30 +0.0 + 11 +5151.165235 + 21 +18240.0 + 31 +0.0 + 0 +LINE + 5 +1D1 + 8 +0 + 62 + 0 + 10 +6614.59236 + 20 +16875.0 + 30 +0.0 + 11 +6979.59236 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1D2 + 8 +0 + 62 + 0 + 10 +6968.145751 + 20 +16875.0 + 30 +0.0 + 11 +7333.145751 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1D3 + 8 +0 + 62 + 0 + 10 +7321.699141 + 20 +16875.0 + 30 +0.0 + 11 +7686.699141 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1D4 + 8 +0 + 62 + 0 + 10 +7675.252532 + 20 +16875.0 + 30 +0.0 + 11 +8040.252532 + 21 +17240.0 + 31 +0.0 + 0 +LINE + 5 +1D5 + 8 +0 + 62 + 0 + 10 +8028.805922 + 20 +16875.0 + 30 +0.0 + 11 +8115.0 + 21 +16961.194078 + 31 +0.0 + 0 +ENDBLK + 5 +1D6 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X8 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X8 + 1 + + 0 +LINE + 5 +1D8 + 8 +0 + 62 + 0 + 10 +8750.0 + 20 +9464.466094 + 30 +0.0 + 11 +8900.533906 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1D9 + 8 +0 + 62 + 0 + 10 +11660.533906 + 20 +12375.0 + 30 +0.0 + 11 +12025.533906 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1DA + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +10089.466094 + 30 +0.0 + 11 +9740.0 + 21 +10454.466094 + 31 +0.0 + 0 +LINE + 5 +1DB + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +10443.019485 + 30 +0.0 + 11 +9740.0 + 21 +10808.019485 + 31 +0.0 + 0 +LINE + 5 +1DC + 8 +0 + 62 + 0 + 10 +11306.980515 + 20 +12375.0 + 30 +0.0 + 11 +11671.980515 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1DD + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +10796.572875 + 30 +0.0 + 11 +9740.0 + 21 +11161.572875 + 31 +0.0 + 0 +LINE + 5 +1DE + 8 +0 + 62 + 0 + 10 +10953.427125 + 20 +12375.0 + 30 +0.0 + 11 +11318.427125 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1DF + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +11150.126266 + 30 +0.0 + 11 +9740.0 + 21 +11515.126266 + 31 +0.0 + 0 +LINE + 5 +1E0 + 8 +0 + 62 + 0 + 10 +10599.873734 + 20 +12375.0 + 30 +0.0 + 11 +10964.873734 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1E1 + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +11503.679656 + 30 +0.0 + 11 +9740.0 + 21 +11868.679656 + 31 +0.0 + 0 +LINE + 5 +1E2 + 8 +0 + 62 + 0 + 10 +10246.320344 + 20 +12375.0 + 30 +0.0 + 11 +10611.320344 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1E3 + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +11857.233047 + 30 +0.0 + 11 +9740.0 + 21 +12222.233047 + 31 +0.0 + 0 +LINE + 5 +1E4 + 8 +0 + 62 + 0 + 10 +9892.766953 + 20 +12375.0 + 30 +0.0 + 11 +10257.766953 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1E5 + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +12210.786438 + 30 +0.0 + 11 +10115.0 + 21 +12950.786438 + 31 +0.0 + 0 +LINE + 5 +1E6 + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +12564.339828 + 30 +0.0 + 11 +9550.660172 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1E7 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +12939.339828 + 30 +0.0 + 11 +9800.660172 + 21 +12990.0 + 31 +0.0 + 0 +LINE + 5 +1E8 + 8 +0 + 62 + 0 + 10 +8889.087297 + 20 +9250.0 + 30 +0.0 + 11 +9254.087297 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1E9 + 8 +0 + 62 + 0 + 10 +12014.087297 + 20 +12375.0 + 30 +0.0 + 11 +12379.087297 + 21 +12740.0 + 31 +0.0 + 0 +LINE + 5 +1EA + 8 +0 + 62 + 0 + 10 +9375.0 + 20 +9735.912703 + 30 +0.0 + 11 +9740.0 + 21 +10100.912703 + 31 +0.0 + 0 +LINE + 5 +1EB + 8 +0 + 62 + 0 + 10 +9242.640687 + 20 +9250.0 + 30 +0.0 + 11 +9740.0 + 21 +9747.359313 + 31 +0.0 + 0 +LINE + 5 +1EC + 8 +0 + 62 + 0 + 10 +12367.640687 + 20 +12375.0 + 30 +0.0 + 11 +12615.0 + 21 +12622.359313 + 31 +0.0 + 0 +LINE + 5 +1ED + 8 +0 + 62 + 0 + 10 +9596.194078 + 20 +9250.0 + 30 +0.0 + 11 +9865.0 + 21 +9518.805922 + 31 +0.0 + 0 +ENDBLK + 5 +1EE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X9 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X9 + 1 + + 0 +LINE + 5 +1F0 + 8 +0 + 62 + 0 + 10 +11363.961031 + 20 +9250.0 + 30 +0.0 + 11 +11728.961031 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1F1 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +12011.038969 + 30 +0.0 + 11 +14490.0 + 21 +12376.038969 + 31 +0.0 + 0 +LINE + 5 +1F2 + 8 +0 + 62 + 0 + 10 +11250.0 + 20 +9489.59236 + 30 +0.0 + 11 +11375.40764 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1F3 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +12364.59236 + 30 +0.0 + 11 +14490.0 + 21 +12729.59236 + 31 +0.0 + 0 +LINE + 5 +1F4 + 8 +0 + 62 + 0 + 10 +13875.0 + 20 +12468.145751 + 30 +0.0 + 11 +14490.0 + 21 +13083.145751 + 31 +0.0 + 0 +LINE + 5 +1F5 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +13071.699141 + 30 +0.0 + 11 +14490.0 + 21 +13436.699141 + 31 +0.0 + 0 +LINE + 5 +1F6 + 8 +0 + 62 + 0 + 10 +14553.300859 + 20 +13500.0 + 30 +0.0 + 11 +14615.0 + 21 +13561.699141 + 31 +0.0 + 0 +LINE + 5 +1F7 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +13425.252532 + 30 +0.0 + 11 +14564.747468 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +1F8 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +13778.805922 + 30 +0.0 + 11 +14211.194078 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +1F9 + 8 +0 + 62 + 0 + 10 +11717.514421 + 20 +9250.0 + 30 +0.0 + 11 +12082.514421 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1FA + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +11657.485579 + 30 +0.0 + 11 +14490.0 + 21 +12022.485579 + 31 +0.0 + 0 +LINE + 5 +1FB + 8 +0 + 62 + 0 + 10 +12071.067812 + 20 +9250.0 + 30 +0.0 + 11 +12436.067812 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1FC + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +11303.932188 + 30 +0.0 + 11 +14490.0 + 21 +11668.932188 + 31 +0.0 + 0 +LINE + 5 +1FD + 8 +0 + 62 + 0 + 10 +12424.621202 + 20 +9250.0 + 30 +0.0 + 11 +12789.621202 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +1FE + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +10950.378798 + 30 +0.0 + 11 +14490.0 + 21 +11315.378798 + 31 +0.0 + 0 +LINE + 5 +1FF + 8 +0 + 62 + 0 + 10 +12778.174593 + 20 +9250.0 + 30 +0.0 + 11 +13143.174593 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +200 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +10596.825407 + 30 +0.0 + 11 +14490.0 + 21 +10961.825407 + 31 +0.0 + 0 +LINE + 5 +201 + 8 +0 + 62 + 0 + 10 +13131.727984 + 20 +9250.0 + 30 +0.0 + 11 +13496.727984 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +202 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +10243.272016 + 30 +0.0 + 11 +14490.0 + 21 +10608.272016 + 31 +0.0 + 0 +LINE + 5 +203 + 8 +0 + 62 + 0 + 10 +13485.281374 + 20 +9250.0 + 30 +0.0 + 11 +13850.281374 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +204 + 8 +0 + 62 + 0 + 10 +14125.0 + 20 +9889.718626 + 30 +0.0 + 11 +14490.0 + 21 +10254.718626 + 31 +0.0 + 0 +LINE + 5 +205 + 8 +0 + 62 + 0 + 10 +13838.834765 + 20 +9250.0 + 30 +0.0 + 11 +14490.0 + 21 +9901.165235 + 31 +0.0 + 0 +LINE + 5 +206 + 8 +0 + 62 + 0 + 10 +14192.388155 + 20 +9250.0 + 30 +0.0 + 11 +14557.388155 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +207 + 8 +0 + 62 + 0 + 10 +14545.941546 + 20 +9250.0 + 30 +0.0 + 11 +14910.941546 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +208 + 8 +0 + 62 + 0 + 10 +14899.494937 + 20 +9250.0 + 30 +0.0 + 11 +15264.494937 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +209 + 8 +0 + 62 + 0 + 10 +15253.048327 + 20 +9250.0 + 30 +0.0 + 11 +15618.048327 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +20A + 8 +0 + 62 + 0 + 10 +15606.601718 + 20 +9250.0 + 30 +0.0 + 11 +15971.601718 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +20B + 8 +0 + 62 + 0 + 10 +15960.155108 + 20 +9250.0 + 30 +0.0 + 11 +16115.0 + 21 +9404.844892 + 31 +0.0 + 0 +ENDBLK + 5 +20C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X10 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X10 + 1 + + 0 +LINE + 5 +20E + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +12329.058454 + 30 +0.0 + 11 +17990.0 + 21 +12694.058454 + 31 +0.0 + 0 +LINE + 5 +20F + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +12682.611845 + 30 +0.0 + 11 +17990.0 + 21 +13047.611845 + 31 +0.0 + 0 +LINE + 5 +210 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +13036.165235 + 30 +0.0 + 11 +17990.0 + 21 +13401.165235 + 31 +0.0 + 0 +LINE + 5 +211 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +13389.718626 + 30 +0.0 + 11 +17990.0 + 21 +13754.718626 + 31 +0.0 + 0 +LINE + 5 +212 + 8 +0 + 62 + 0 + 10 +17381.727984 + 20 +13500.0 + 30 +0.0 + 11 +17746.727984 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +213 + 8 +0 + 62 + 0 + 10 +17028.174593 + 20 +13500.0 + 30 +0.0 + 11 +17393.174593 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +214 + 8 +0 + 62 + 0 + 10 +16674.621202 + 20 +13500.0 + 30 +0.0 + 11 +17039.621202 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +215 + 8 +0 + 62 + 0 + 10 +16321.067812 + 20 +13500.0 + 30 +0.0 + 11 +16686.067812 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +216 + 8 +0 + 62 + 0 + 10 +15967.514421 + 20 +13500.0 + 30 +0.0 + 11 +16332.514421 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +217 + 8 +0 + 62 + 0 + 10 +15613.961031 + 20 +13500.0 + 30 +0.0 + 11 +16103.961031 + 21 +13990.0 + 31 +0.0 + 0 +LINE + 5 +218 + 8 +0 + 62 + 0 + 10 +15500.0 + 20 +13739.59236 + 30 +0.0 + 11 +15625.40764 + 21 +13865.0 + 31 +0.0 + 0 +LINE + 5 +219 + 8 +0 + 62 + 0 + 10 +15750.0 + 20 +13989.59236 + 30 +0.0 + 11 +15750.40764 + 21 +13990.0 + 31 +0.0 + 0 +LINE + 5 +21A + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +11975.505063 + 30 +0.0 + 11 +17990.0 + 21 +12340.505063 + 31 +0.0 + 0 +LINE + 5 +21B + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +11621.951673 + 30 +0.0 + 11 +17990.0 + 21 +11986.951673 + 31 +0.0 + 0 +LINE + 5 +21C + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +11268.398282 + 30 +0.0 + 11 +17990.0 + 21 +11633.398282 + 31 +0.0 + 0 +LINE + 5 +21D + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +10914.844892 + 30 +0.0 + 11 +17990.0 + 21 +11279.844892 + 31 +0.0 + 0 +LINE + 5 +21E + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +10561.291501 + 30 +0.0 + 11 +17990.0 + 21 +10926.291501 + 31 +0.0 + 0 +LINE + 5 +21F + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +10207.73811 + 30 +0.0 + 11 +17990.0 + 21 +10572.73811 + 31 +0.0 + 0 +LINE + 5 +220 + 8 +0 + 62 + 0 + 10 +17375.0 + 20 +9604.18472 + 30 +0.0 + 11 +17385.81528 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +221 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +9854.18472 + 30 +0.0 + 11 +17990.0 + 21 +10219.18472 + 31 +0.0 + 0 +LINE + 5 +222 + 8 +0 + 62 + 0 + 10 +17375.0 + 20 +9250.631329 + 30 +0.0 + 11 +17990.0 + 21 +9865.631329 + 31 +0.0 + 0 +LINE + 5 +223 + 8 +0 + 62 + 0 + 10 +17727.922061 + 20 +9250.0 + 30 +0.0 + 11 +18092.922061 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +224 + 8 +0 + 62 + 0 + 10 +18081.475452 + 20 +9250.0 + 30 +0.0 + 11 +18446.475452 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +225 + 8 +0 + 62 + 0 + 10 +18435.028843 + 20 +9250.0 + 30 +0.0 + 11 +18490.0 + 21 +9304.971157 + 31 +0.0 + 0 +ENDBLK + 5 +226 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X11 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X11 + 1 + + 0 +LINE + 5 +228 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +12043.524548 + 30 +0.0 + 11 +21240.0 + 21 +12408.524548 + 31 +0.0 + 0 +LINE + 5 +229 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +12397.077939 + 30 +0.0 + 11 +21240.0 + 21 +12762.077939 + 31 +0.0 + 0 +LINE + 5 +22A + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +12750.631329 + 30 +0.0 + 11 +21240.0 + 21 +13115.631329 + 31 +0.0 + 0 +LINE + 5 +22B + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +13104.18472 + 30 +0.0 + 11 +21240.0 + 21 +13469.18472 + 31 +0.0 + 0 +LINE + 5 +22C + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +13457.73811 + 30 +0.0 + 11 +21240.0 + 21 +13822.73811 + 31 +0.0 + 0 +LINE + 5 +22D + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +13811.291501 + 30 +0.0 + 11 +21240.0 + 21 +14176.291501 + 31 +0.0 + 0 +LINE + 5 +22E + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +14164.844892 + 30 +0.0 + 11 +20950.155108 + 21 +14240.0 + 31 +0.0 + 0 +LINE + 5 +22F + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +11689.971157 + 30 +0.0 + 11 +21240.0 + 21 +12054.971157 + 31 +0.0 + 0 +LINE + 5 +230 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +11336.417767 + 30 +0.0 + 11 +21240.0 + 21 +11701.417767 + 31 +0.0 + 0 +LINE + 5 +231 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +10982.864376 + 30 +0.0 + 11 +21240.0 + 21 +11347.864376 + 31 +0.0 + 0 +LINE + 5 +232 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +10629.310986 + 30 +0.0 + 11 +21240.0 + 21 +10994.310986 + 31 +0.0 + 0 +LINE + 5 +233 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +10275.757595 + 30 +0.0 + 11 +21240.0 + 21 +10640.757595 + 31 +0.0 + 0 +LINE + 5 +234 + 8 +0 + 62 + 0 + 10 +20375.0 + 20 +9422.204204 + 30 +0.0 + 11 +20567.795796 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +235 + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +9922.204204 + 30 +0.0 + 11 +21240.0 + 21 +10287.204204 + 31 +0.0 + 0 +LINE + 5 +236 + 8 +0 + 62 + 0 + 10 +20556.349186 + 20 +9250.0 + 30 +0.0 + 11 +21240.0 + 21 +9933.650814 + 31 +0.0 + 0 +LINE + 5 +237 + 8 +0 + 62 + 0 + 10 +20909.902577 + 20 +9250.0 + 30 +0.0 + 11 +21274.902577 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +238 + 8 +0 + 62 + 0 + 10 +21263.455967 + 20 +9250.0 + 30 +0.0 + 11 +21365.0 + 21 +9351.544033 + 31 +0.0 + 0 +ENDBLK + 5 +239 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X12 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X12 + 1 + + 0 +LINE + 5 +23B + 8 +0 + 62 + 0 + 10 +22324.116139 + 20 +9250.0 + 30 +0.0 + 11 +22689.116139 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +23C + 8 +0 + 62 + 0 + 10 +21970.562748 + 20 +9250.0 + 30 +0.0 + 11 +22335.562748 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +23D + 8 +0 + 62 + 0 + 10 +21875.0 + 20 +9507.990642 + 30 +0.0 + 11 +21982.009358 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +23E + 8 +0 + 62 + 0 + 10 +22677.66953 + 20 +9250.0 + 30 +0.0 + 11 +23042.66953 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +23F + 8 +0 + 62 + 0 + 10 +23031.22292 + 20 +9250.0 + 30 +0.0 + 11 +23240.0 + 21 +9458.77708 + 31 +0.0 + 0 +ENDBLK + 5 +240 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X13 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X13 + 1 + + 0 +LINE + 5 +242 + 8 +0 + 62 + 0 + 10 +25375.0 + 20 +9472.456736 + 30 +0.0 + 11 +25517.543264 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +243 + 8 +0 + 62 + 0 + 10 +25506.096654 + 20 +9250.0 + 30 +0.0 + 11 +25871.096654 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +244 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +10118.903346 + 30 +0.0 + 11 +26621.096654 + 21 +10365.0 + 31 +0.0 + 0 +LINE + 5 +245 + 8 +0 + 62 + 0 + 10 +25859.650045 + 20 +9250.0 + 30 +0.0 + 11 +26224.650045 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +246 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +9765.349955 + 30 +0.0 + 11 +26740.0 + 21 +10130.349955 + 31 +0.0 + 0 +LINE + 5 +247 + 8 +0 + 62 + 0 + 10 +26213.203436 + 20 +9250.0 + 30 +0.0 + 11 +26740.0 + 21 +9776.796564 + 31 +0.0 + 0 +LINE + 5 +248 + 8 +0 + 62 + 0 + 10 +26566.756826 + 20 +9250.0 + 30 +0.0 + 11 +26740.0 + 21 +9423.243174 + 31 +0.0 + 0 +ENDBLK + 5 +249 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X14 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X14 + 1 + + 0 +LINE + 5 +24B + 8 +0 + 62 + 0 + 10 +7121.320344 + 20 +9250.0 + 30 +0.0 + 11 +7486.320344 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +24C + 8 +0 + 62 + 0 + 10 +12996.320344 + 20 +15125.0 + 30 +0.0 + 11 +13361.320344 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +24D + 8 +0 + 62 + 0 + 10 +6767.766953 + 20 +9250.0 + 30 +0.0 + 11 +7132.766953 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +24E + 8 +0 + 62 + 0 + 10 +12642.766953 + 20 +15125.0 + 30 +0.0 + 11 +13007.766953 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +24F + 8 +0 + 62 + 0 + 10 +6414.213562 + 20 +9250.0 + 30 +0.0 + 11 +6779.213562 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +250 + 8 +0 + 62 + 0 + 10 +12289.213562 + 20 +15125.0 + 30 +0.0 + 11 +12654.213562 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +251 + 8 +0 + 62 + 0 + 10 +6060.660172 + 20 +9250.0 + 30 +0.0 + 11 +6425.660172 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +252 + 8 +0 + 62 + 0 + 10 +11935.660172 + 20 +15125.0 + 30 +0.0 + 11 +12300.660172 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +253 + 8 +0 + 62 + 0 + 10 +5707.106781 + 20 +9250.0 + 30 +0.0 + 11 +6072.106781 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +254 + 8 +0 + 62 + 0 + 10 +11582.106781 + 20 +15125.0 + 30 +0.0 + 11 +11947.106781 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +255 + 8 +0 + 62 + 0 + 10 +5353.553391 + 20 +9250.0 + 30 +0.0 + 11 +5718.553391 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +256 + 8 +0 + 62 + 0 + 10 +11228.553391 + 20 +15125.0 + 30 +0.0 + 11 +11593.553391 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +257 + 8 +0 + 62 + 0 + 10 +9978.553391 + 20 +13875.0 + 30 +0.0 + 11 +10115.0 + 21 +14011.446609 + 31 +0.0 + 0 +LINE + 5 +258 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 11 +5365.0 + 21 +9615.0 + 31 +0.0 + 0 +LINE + 5 +259 + 8 +0 + 62 + 0 + 10 +10875.0 + 20 +15125.0 + 30 +0.0 + 11 +11240.0 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +25A + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +14000.0 + 30 +0.0 + 11 +10115.0 + 21 +14365.0 + 31 +0.0 + 0 +LINE + 5 +25B + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9603.553391 + 30 +0.0 + 11 +5365.0 + 21 +9968.553391 + 31 +0.0 + 0 +LINE + 5 +25C + 8 +0 + 62 + 0 + 10 +10521.446609 + 20 +15125.0 + 30 +0.0 + 11 +10886.446609 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +25D + 8 +0 + 62 + 0 + 10 +9521.446609 + 20 +14125.0 + 30 +0.0 + 11 +10115.0 + 21 +14718.553391 + 31 +0.0 + 0 +LINE + 5 +25E + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9957.106781 + 30 +0.0 + 11 +5365.0 + 21 +10322.106781 + 31 +0.0 + 0 +LINE + 5 +25F + 8 +0 + 62 + 0 + 10 +10167.893219 + 20 +15125.0 + 30 +0.0 + 11 +10532.893219 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +260 + 8 +0 + 62 + 0 + 10 +9167.893219 + 20 +14125.0 + 30 +0.0 + 11 +9532.893219 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +261 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +14707.106781 + 30 +0.0 + 11 +10115.0 + 21 +15072.106781 + 31 +0.0 + 0 +LINE + 5 +262 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +10310.660172 + 30 +0.0 + 11 +5365.0 + 21 +10675.660172 + 31 +0.0 + 0 +LINE + 5 +263 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +15060.660172 + 30 +0.0 + 11 +10179.339828 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +264 + 8 +0 + 62 + 0 + 10 +8814.339828 + 20 +14125.0 + 30 +0.0 + 11 +9179.339828 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +265 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +10664.213562 + 30 +0.0 + 11 +5365.0 + 21 +11029.213562 + 31 +0.0 + 0 +LINE + 5 +266 + 8 +0 + 62 + 0 + 10 +9750.0 + 20 +15414.213562 + 30 +0.0 + 11 +10075.786438 + 21 +15740.0 + 31 +0.0 + 0 +LINE + 5 +267 + 8 +0 + 62 + 0 + 10 +8460.786438 + 20 +14125.0 + 30 +0.0 + 11 +8825.786438 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +268 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +11017.766953 + 30 +0.0 + 11 +5365.0 + 21 +11382.766953 + 31 +0.0 + 0 +LINE + 5 +269 + 8 +0 + 62 + 0 + 10 +8107.233047 + 20 +14125.0 + 30 +0.0 + 11 +8472.233047 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +26A + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +11371.320344 + 30 +0.0 + 11 +5365.0 + 21 +11736.320344 + 31 +0.0 + 0 +LINE + 5 +26B + 8 +0 + 62 + 0 + 10 +7753.679656 + 20 +14125.0 + 30 +0.0 + 11 +8118.679656 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +26C + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +11724.873734 + 30 +0.0 + 11 +5365.0 + 21 +12089.873734 + 31 +0.0 + 0 +LINE + 5 +26D + 8 +0 + 62 + 0 + 10 +7400.126266 + 20 +14125.0 + 30 +0.0 + 11 +7765.126266 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +26E + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +12078.427125 + 30 +0.0 + 11 +5365.0 + 21 +12443.427125 + 31 +0.0 + 0 +LINE + 5 +26F + 8 +0 + 62 + 0 + 10 +7046.572875 + 20 +14125.0 + 30 +0.0 + 11 +7411.572875 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +270 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +12431.980515 + 30 +0.0 + 11 +5365.0 + 21 +12796.980515 + 31 +0.0 + 0 +LINE + 5 +271 + 8 +0 + 62 + 0 + 10 +6693.019485 + 20 +14125.0 + 30 +0.0 + 11 +7058.019485 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +272 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +12785.533906 + 30 +0.0 + 11 +5365.0 + 21 +13150.533906 + 31 +0.0 + 0 +LINE + 5 +273 + 8 +0 + 62 + 0 + 10 +6339.466094 + 20 +14125.0 + 30 +0.0 + 11 +6704.466094 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +274 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +13139.087297 + 30 +0.0 + 11 +5365.0 + 21 +13504.087297 + 31 +0.0 + 0 +LINE + 5 +275 + 8 +0 + 62 + 0 + 10 +5985.912703 + 20 +14125.0 + 30 +0.0 + 11 +6350.912703 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +276 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +13492.640687 + 30 +0.0 + 11 +5365.0 + 21 +13857.640687 + 31 +0.0 + 0 +LINE + 5 +277 + 8 +0 + 62 + 0 + 10 +5632.359313 + 20 +14125.0 + 30 +0.0 + 11 +5997.359313 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +278 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +13846.194078 + 30 +0.0 + 11 +5643.805922 + 21 +14490.0 + 31 +0.0 + 0 +LINE + 5 +279 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +14199.747468 + 30 +0.0 + 11 +5365.0 + 21 +14564.747468 + 31 +0.0 + 0 +LINE + 5 +27A + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +14553.300859 + 30 +0.0 + 11 +5061.699141 + 21 +14615.0 + 31 +0.0 + 0 +LINE + 5 +27B + 8 +0 + 62 + 0 + 10 +7474.873734 + 20 +9250.0 + 30 +0.0 + 11 +7740.0 + 21 +9515.126266 + 31 +0.0 + 0 +LINE + 5 +27C + 8 +0 + 62 + 0 + 10 +13349.873734 + 20 +15125.0 + 30 +0.0 + 11 +13714.873734 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +27D + 8 +0 + 62 + 0 + 10 +13703.427125 + 20 +15125.0 + 30 +0.0 + 11 +14068.427125 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +27E + 8 +0 + 62 + 0 + 10 +14056.980515 + 20 +15125.0 + 30 +0.0 + 11 +14421.980515 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +27F + 8 +0 + 62 + 0 + 10 +14410.533906 + 20 +15125.0 + 30 +0.0 + 11 +14775.533906 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +280 + 8 +0 + 62 + 0 + 10 +14764.087297 + 20 +15125.0 + 30 +0.0 + 11 +15129.087297 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +281 + 8 +0 + 62 + 0 + 10 +15117.640687 + 20 +15125.0 + 30 +0.0 + 11 +15482.640687 + 21 +15490.0 + 31 +0.0 + 0 +LINE + 5 +282 + 8 +0 + 62 + 0 + 10 +15750.0 + 20 +15757.359313 + 30 +0.0 + 11 +15982.640687 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +283 + 8 +0 + 62 + 0 + 10 +15471.194078 + 20 +15125.0 + 30 +0.0 + 11 +16336.194078 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +284 + 8 +0 + 62 + 0 + 10 +15750.0 + 20 +15050.252532 + 30 +0.0 + 11 +16115.0 + 21 +15415.252532 + 31 +0.0 + 0 +LINE + 5 +285 + 8 +0 + 62 + 0 + 10 +16324.747468 + 20 +15625.0 + 30 +0.0 + 11 +16365.0 + 21 +15665.252532 + 31 +0.0 + 0 +LINE + 5 +286 + 8 +0 + 62 + 0 + 10 +16053.300859 + 20 +15000.0 + 30 +0.0 + 11 +16115.0 + 21 +15061.699141 + 31 +0.0 + 0 +ENDBLK + 5 +287 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X15 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X15 + 1 + + 0 +LINE + 5 +289 + 8 +0 + 62 + 0 + 10 +9342.94193 + 20 +22255.0 + 30 +0.0 + 11 +9457.94193 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +28A + 8 +0 + 62 + 0 + 10 +9166.165235 + 20 +22255.0 + 30 +0.0 + 11 +9281.165235 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +28B + 8 +0 + 62 + 0 + 10 +8989.38854 + 20 +22255.0 + 30 +0.0 + 11 +9104.38854 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +28C + 8 +0 + 62 + 0 + 10 +8812.611845 + 20 +22255.0 + 30 +0.0 + 11 +8927.611845 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +28D + 8 +0 + 62 + 0 + 10 +8635.835149 + 20 +22255.0 + 30 +0.0 + 11 +8750.835149 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +28E + 8 +0 + 62 + 0 + 10 +8500.0 + 20 +22295.941546 + 30 +0.0 + 11 +8574.058454 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +28F + 8 +0 + 62 + 0 + 10 +9519.718626 + 20 +22255.0 + 30 +0.0 + 11 +9634.718626 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +290 + 8 +0 + 62 + 0 + 10 +9696.495321 + 20 +22255.0 + 30 +0.0 + 11 +9811.495321 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +291 + 8 +0 + 62 + 0 + 10 +9873.272016 + 20 +22255.0 + 30 +0.0 + 11 +9988.272016 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +292 + 8 +0 + 62 + 0 + 10 +10050.048712 + 20 +22255.0 + 30 +0.0 + 11 +10165.048712 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +293 + 8 +0 + 62 + 0 + 10 +10226.825407 + 20 +22255.0 + 30 +0.0 + 11 +10240.0 + 21 +22268.174593 + 31 +0.0 + 0 +ENDBLK + 5 +294 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X16 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X16 + 1 + + 0 +LINE + 5 +296 + 8 +0 + 62 + 0 + 10 +13585.582618 + 20 +22255.0 + 30 +0.0 + 11 +13700.582618 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +297 + 8 +0 + 62 + 0 + 10 +13408.805922 + 20 +22255.0 + 30 +0.0 + 11 +13523.805922 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +298 + 8 +0 + 62 + 0 + 10 +13232.029227 + 20 +22255.0 + 30 +0.0 + 11 +13347.029227 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +299 + 8 +0 + 62 + 0 + 10 +13055.252532 + 20 +22255.0 + 30 +0.0 + 11 +13170.252532 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +29A + 8 +0 + 62 + 0 + 10 +12878.475836 + 20 +22255.0 + 30 +0.0 + 11 +12993.475836 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +29B + 8 +0 + 62 + 0 + 10 +12701.699141 + 20 +22255.0 + 30 +0.0 + 11 +12816.699141 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +29C + 8 +0 + 62 + 0 + 10 +12524.922446 + 20 +22255.0 + 30 +0.0 + 11 +12639.922446 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +29D + 8 +0 + 62 + 0 + 10 +12348.145751 + 20 +22255.0 + 30 +0.0 + 11 +12463.145751 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +29E + 8 +0 + 62 + 0 + 10 +12171.369055 + 20 +22255.0 + 30 +0.0 + 11 +12286.369055 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +29F + 8 +0 + 62 + 0 + 10 +11994.59236 + 20 +22255.0 + 30 +0.0 + 11 +12109.59236 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A0 + 8 +0 + 62 + 0 + 10 +11817.815665 + 20 +22255.0 + 30 +0.0 + 11 +11932.815665 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A1 + 8 +0 + 62 + 0 + 10 +11641.038969 + 20 +22255.0 + 30 +0.0 + 11 +11756.038969 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A2 + 8 +0 + 62 + 0 + 10 +11464.262274 + 20 +22255.0 + 30 +0.0 + 11 +11579.262274 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A3 + 8 +0 + 62 + 0 + 10 +11287.485579 + 20 +22255.0 + 30 +0.0 + 11 +11402.485579 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A4 + 8 +0 + 62 + 0 + 10 +13762.359313 + 20 +22255.0 + 30 +0.0 + 11 +13877.359313 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A5 + 8 +0 + 62 + 0 + 10 +13939.136008 + 20 +22255.0 + 30 +0.0 + 11 +14054.136008 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A6 + 8 +0 + 62 + 0 + 10 +14115.912703 + 20 +22255.0 + 30 +0.0 + 11 +14230.912703 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A7 + 8 +0 + 62 + 0 + 10 +14292.689399 + 20 +22255.0 + 30 +0.0 + 11 +14407.689399 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A8 + 8 +0 + 62 + 0 + 10 +14469.466094 + 20 +22255.0 + 30 +0.0 + 11 +14584.466094 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2A9 + 8 +0 + 62 + 0 + 10 +14646.242789 + 20 +22255.0 + 30 +0.0 + 11 +14761.242789 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2AA + 8 +0 + 62 + 0 + 10 +14823.019485 + 20 +22255.0 + 30 +0.0 + 11 +14938.019485 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2AB + 8 +0 + 62 + 0 + 10 +14999.79618 + 20 +22255.0 + 30 +0.0 + 11 +15114.79618 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2AC + 8 +0 + 62 + 0 + 10 +15176.572875 + 20 +22255.0 + 30 +0.0 + 11 +15291.572875 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2AD + 8 +0 + 62 + 0 + 10 +15353.349571 + 20 +22255.0 + 30 +0.0 + 11 +15468.349571 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2AE + 8 +0 + 62 + 0 + 10 +15530.126266 + 20 +22255.0 + 30 +0.0 + 11 +15645.126266 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2AF + 8 +0 + 62 + 0 + 10 +15706.902961 + 20 +22255.0 + 30 +0.0 + 11 +15821.902961 + 21 +22370.0 + 31 +0.0 + 0 +ENDBLK + 5 +2B0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X17 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X17 + 1 + + 0 +LINE + 5 +2B2 + 8 +0 + 62 + 0 + 10 +17828.223305 + 20 +22255.0 + 30 +0.0 + 11 +17943.223305 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B3 + 8 +0 + 62 + 0 + 10 +17651.446609 + 20 +22255.0 + 30 +0.0 + 11 +17766.446609 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B4 + 8 +0 + 62 + 0 + 10 +17474.669914 + 20 +22255.0 + 30 +0.0 + 11 +17589.669914 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B5 + 8 +0 + 62 + 0 + 10 +17297.893219 + 20 +22255.0 + 30 +0.0 + 11 +17412.893219 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B6 + 8 +0 + 62 + 0 + 10 +17121.116524 + 20 +22255.0 + 30 +0.0 + 11 +17236.116524 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B7 + 8 +0 + 62 + 0 + 10 +16944.339828 + 20 +22255.0 + 30 +0.0 + 11 +17059.339828 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B8 + 8 +0 + 62 + 0 + 10 +16875.0 + 20 +22362.436867 + 30 +0.0 + 11 +16882.563133 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2B9 + 8 +0 + 62 + 0 + 10 +18005.0 + 20 +22255.0 + 30 +0.0 + 11 +18120.0 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2BA + 8 +0 + 62 + 0 + 10 +18181.776695 + 20 +22255.0 + 30 +0.0 + 11 +18296.776695 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2BB + 8 +0 + 62 + 0 + 10 +18358.553391 + 20 +22255.0 + 30 +0.0 + 11 +18473.553391 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2BC + 8 +0 + 62 + 0 + 10 +18535.330086 + 20 +22255.0 + 30 +0.0 + 11 +18650.330086 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2BD + 8 +0 + 62 + 0 + 10 +18712.106781 + 20 +22255.0 + 30 +0.0 + 11 +18740.0 + 21 +22282.893219 + 31 +0.0 + 0 +ENDBLK + 5 +2BE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X18 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X18 + 1 + + 0 +LINE + 5 +2C0 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +19778.378413 + 30 +0.0 + 11 +4860.0 + 21 +19893.378413 + 31 +0.0 + 0 +LINE + 5 +2C1 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +19955.155108 + 30 +0.0 + 11 +4860.0 + 21 +20070.155108 + 31 +0.0 + 0 +LINE + 5 +2C2 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +20131.931804 + 30 +0.0 + 11 +4860.0 + 21 +20246.931804 + 31 +0.0 + 0 +LINE + 5 +2C3 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +20308.708499 + 30 +0.0 + 11 +4860.0 + 21 +20423.708499 + 31 +0.0 + 0 +LINE + 5 +2C4 + 8 +0 + 62 + 0 + 10 +6691.291501 + 20 +22255.0 + 30 +0.0 + 11 +6740.0 + 21 +22303.708499 + 31 +0.0 + 0 +LINE + 5 +2C5 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +20485.485194 + 30 +0.0 + 11 +4860.0 + 21 +20600.485194 + 31 +0.0 + 0 +LINE + 5 +2C6 + 8 +0 + 62 + 0 + 10 +6514.514806 + 20 +22255.0 + 30 +0.0 + 11 +6629.514806 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2C7 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +20662.26189 + 30 +0.0 + 11 +4860.0 + 21 +20777.26189 + 31 +0.0 + 0 +LINE + 5 +2C8 + 8 +0 + 62 + 0 + 10 +6337.73811 + 20 +22255.0 + 30 +0.0 + 11 +6452.73811 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2C9 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +20839.038585 + 30 +0.0 + 11 +4860.0 + 21 +20954.038585 + 31 +0.0 + 0 +LINE + 5 +2CA + 8 +0 + 62 + 0 + 10 +6160.961415 + 20 +22255.0 + 30 +0.0 + 11 +6275.961415 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2CB + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +21015.81528 + 30 +0.0 + 11 +4860.0 + 21 +21130.81528 + 31 +0.0 + 0 +LINE + 5 +2CC + 8 +0 + 62 + 0 + 10 +5984.18472 + 20 +22255.0 + 30 +0.0 + 11 +6099.18472 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2CD + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +21192.591975 + 30 +0.0 + 11 +4860.0 + 21 +21307.591975 + 31 +0.0 + 0 +LINE + 5 +2CE + 8 +0 + 62 + 0 + 10 +5807.408025 + 20 +22255.0 + 30 +0.0 + 11 +5922.408025 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2CF + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +21369.368671 + 30 +0.0 + 11 +4860.0 + 21 +21484.368671 + 31 +0.0 + 0 +LINE + 5 +2D0 + 8 +0 + 62 + 0 + 10 +5630.631329 + 20 +22255.0 + 30 +0.0 + 11 +5745.631329 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2D1 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +21546.145366 + 30 +0.0 + 11 +4860.0 + 21 +21661.145366 + 31 +0.0 + 0 +LINE + 5 +2D2 + 8 +0 + 62 + 0 + 10 +5453.854634 + 20 +22255.0 + 30 +0.0 + 11 +5568.854634 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2D3 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +21722.922061 + 30 +0.0 + 11 +4860.0 + 21 +21837.922061 + 31 +0.0 + 0 +LINE + 5 +2D4 + 8 +0 + 62 + 0 + 10 +5277.077939 + 20 +22255.0 + 30 +0.0 + 11 +5392.077939 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2D5 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +21899.698757 + 30 +0.0 + 11 +4860.0 + 21 +22014.698757 + 31 +0.0 + 0 +LINE + 5 +2D6 + 8 +0 + 62 + 0 + 10 +5100.301243 + 20 +22255.0 + 30 +0.0 + 11 +5215.301243 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2D7 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +22076.475452 + 30 +0.0 + 11 +4860.0 + 21 +22191.475452 + 31 +0.0 + 0 +LINE + 5 +2D8 + 8 +0 + 62 + 0 + 10 +4923.524548 + 20 +22255.0 + 30 +0.0 + 11 +5038.524548 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2D9 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +22253.252147 + 30 +0.0 + 11 +4861.747853 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +2DA + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +19601.601718 + 30 +0.0 + 11 +4860.0 + 21 +19716.601718 + 31 +0.0 + 0 +LINE + 5 +2DB + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +19424.825023 + 30 +0.0 + 11 +4860.0 + 21 +19539.825023 + 31 +0.0 + 0 +ENDBLK + 5 +2DC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X19 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X19 + 1 + + 0 +LINE + 5 +2DE + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +16949.951288 + 30 +0.0 + 11 +4860.0 + 21 +17064.951288 + 31 +0.0 + 0 +LINE + 5 +2DF + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +17126.727984 + 30 +0.0 + 11 +4860.0 + 21 +17241.727984 + 31 +0.0 + 0 +LINE + 5 +2E0 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +17303.504679 + 30 +0.0 + 11 +4860.0 + 21 +17418.504679 + 31 +0.0 + 0 +LINE + 5 +2E1 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +17480.281374 + 30 +0.0 + 11 +4860.0 + 21 +17595.281374 + 31 +0.0 + 0 +LINE + 5 +2E2 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +17657.05807 + 30 +0.0 + 11 +4860.0 + 21 +17772.05807 + 31 +0.0 + 0 +LINE + 5 +2E3 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +17833.834765 + 30 +0.0 + 11 +4860.0 + 21 +17948.834765 + 31 +0.0 + 0 +LINE + 5 +2E4 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +18010.61146 + 30 +0.0 + 11 +4860.0 + 21 +18125.61146 + 31 +0.0 + 0 +LINE + 5 +2E5 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +18187.388155 + 30 +0.0 + 11 +4797.611845 + 21 +18240.0 + 31 +0.0 + 0 +LINE + 5 +2E6 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +16773.174593 + 30 +0.0 + 11 +4860.0 + 21 +16888.174593 + 31 +0.0 + 0 +LINE + 5 +2E7 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +16596.397898 + 30 +0.0 + 11 +4860.0 + 21 +16711.397898 + 31 +0.0 + 0 +LINE + 5 +2E8 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +16419.621202 + 30 +0.0 + 11 +4860.0 + 21 +16534.621202 + 31 +0.0 + 0 +LINE + 5 +2E9 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +16242.844507 + 30 +0.0 + 11 +4860.0 + 21 +16357.844507 + 31 +0.0 + 0 +LINE + 5 +2EA + 8 +0 + 62 + 0 + 10 +4803.932188 + 20 +16125.0 + 30 +0.0 + 11 +4860.0 + 21 +16181.067812 + 31 +0.0 + 0 +ENDBLK + 5 +2EB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X20 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X20 + 1 + + 0 +LINE + 5 +2ED + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +10232.436867 + 30 +0.0 + 11 +4860.0 + 21 +10347.436867 + 31 +0.0 + 0 +LINE + 5 +2EE + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +10409.213562 + 30 +0.0 + 11 +4860.0 + 21 +10524.213562 + 31 +0.0 + 0 +LINE + 5 +2EF + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +10585.990258 + 30 +0.0 + 11 +4860.0 + 21 +10700.990258 + 31 +0.0 + 0 +LINE + 5 +2F0 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +10762.766953 + 30 +0.0 + 11 +4860.0 + 21 +10877.766953 + 31 +0.0 + 0 +LINE + 5 +2F1 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +10939.543648 + 30 +0.0 + 11 +4860.0 + 21 +11054.543648 + 31 +0.0 + 0 +LINE + 5 +2F2 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +11116.320344 + 30 +0.0 + 11 +4860.0 + 21 +11231.320344 + 31 +0.0 + 0 +LINE + 5 +2F3 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +11293.097039 + 30 +0.0 + 11 +4860.0 + 21 +11408.097039 + 31 +0.0 + 0 +LINE + 5 +2F4 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +11469.873734 + 30 +0.0 + 11 +4860.0 + 21 +11584.873734 + 31 +0.0 + 0 +LINE + 5 +2F5 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +11646.650429 + 30 +0.0 + 11 +4860.0 + 21 +11761.650429 + 31 +0.0 + 0 +LINE + 5 +2F6 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +11823.427125 + 30 +0.0 + 11 +4860.0 + 21 +11938.427125 + 31 +0.0 + 0 +LINE + 5 +2F7 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +12000.20382 + 30 +0.0 + 11 +4860.0 + 21 +12115.20382 + 31 +0.0 + 0 +LINE + 5 +2F8 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +12176.980515 + 30 +0.0 + 11 +4860.0 + 21 +12291.980515 + 31 +0.0 + 0 +LINE + 5 +2F9 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +12353.757211 + 30 +0.0 + 11 +4860.0 + 21 +12468.757211 + 31 +0.0 + 0 +LINE + 5 +2FA + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +12530.533906 + 30 +0.0 + 11 +4860.0 + 21 +12645.533906 + 31 +0.0 + 0 +LINE + 5 +2FB + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +12707.310601 + 30 +0.0 + 11 +4860.0 + 21 +12822.310601 + 31 +0.0 + 0 +LINE + 5 +2FC + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +12884.087297 + 30 +0.0 + 11 +4860.0 + 21 +12999.087297 + 31 +0.0 + 0 +LINE + 5 +2FD + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +13060.863992 + 30 +0.0 + 11 +4860.0 + 21 +13175.863992 + 31 +0.0 + 0 +LINE + 5 +2FE + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +13237.640687 + 30 +0.0 + 11 +4860.0 + 21 +13352.640687 + 31 +0.0 + 0 +LINE + 5 +2FF + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +13414.417382 + 30 +0.0 + 11 +4860.0 + 21 +13529.417382 + 31 +0.0 + 0 +LINE + 5 +300 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +13591.194078 + 30 +0.0 + 11 +4860.0 + 21 +13706.194078 + 31 +0.0 + 0 +LINE + 5 +301 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +13767.970773 + 30 +0.0 + 11 +4860.0 + 21 +13882.970773 + 31 +0.0 + 0 +LINE + 5 +302 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +13944.747468 + 30 +0.0 + 11 +4860.0 + 21 +14059.747468 + 31 +0.0 + 0 +LINE + 5 +303 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +14121.524164 + 30 +0.0 + 11 +4860.0 + 21 +14236.524164 + 31 +0.0 + 0 +LINE + 5 +304 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +14298.300859 + 30 +0.0 + 11 +4860.0 + 21 +14413.300859 + 31 +0.0 + 0 +LINE + 5 +305 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +14475.077554 + 30 +0.0 + 11 +4860.0 + 21 +14590.077554 + 31 +0.0 + 0 +LINE + 5 +306 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +10055.660172 + 30 +0.0 + 11 +4860.0 + 21 +10170.660172 + 31 +0.0 + 0 +LINE + 5 +307 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +9878.883476 + 30 +0.0 + 11 +4860.0 + 21 +9993.883476 + 31 +0.0 + 0 +LINE + 5 +308 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +9702.106781 + 30 +0.0 + 11 +4860.0 + 21 +9817.106781 + 31 +0.0 + 0 +LINE + 5 +309 + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +9525.330086 + 30 +0.0 + 11 +4860.0 + 21 +9640.330086 + 31 +0.0 + 0 +LINE + 5 +30A + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +9348.553391 + 30 +0.0 + 11 +4860.0 + 21 +9463.553391 + 31 +0.0 + 0 +LINE + 5 +30B + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +9171.776695 + 30 +0.0 + 11 +4860.0 + 21 +9286.776695 + 31 +0.0 + 0 +LINE + 5 +30C + 8 +0 + 62 + 0 + 10 +4745.0 + 20 +8995.0 + 30 +0.0 + 11 +4860.0 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +30D + 8 +0 + 62 + 0 + 10 +4921.776695 + 20 +8995.0 + 30 +0.0 + 11 +5036.776695 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +30E + 8 +0 + 62 + 0 + 10 +5098.553391 + 20 +8995.0 + 30 +0.0 + 11 +5213.553391 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +30F + 8 +0 + 62 + 0 + 10 +5275.330086 + 20 +8995.0 + 30 +0.0 + 11 +5390.330086 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +310 + 8 +0 + 62 + 0 + 10 +5452.106781 + 20 +8995.0 + 30 +0.0 + 11 +5567.106781 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +311 + 8 +0 + 62 + 0 + 10 +5628.883476 + 20 +8995.0 + 30 +0.0 + 11 +5743.883476 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +312 + 8 +0 + 62 + 0 + 10 +5805.660172 + 20 +8995.0 + 30 +0.0 + 11 +5920.660172 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +313 + 8 +0 + 62 + 0 + 10 +5982.436867 + 20 +8995.0 + 30 +0.0 + 11 +6097.436867 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +314 + 8 +0 + 62 + 0 + 10 +6159.213562 + 20 +8995.0 + 30 +0.0 + 11 +6274.213562 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +315 + 8 +0 + 62 + 0 + 10 +6335.990258 + 20 +8995.0 + 30 +0.0 + 11 +6450.990258 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +316 + 8 +0 + 62 + 0 + 10 +6512.766953 + 20 +8995.0 + 30 +0.0 + 11 +6627.766953 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +317 + 8 +0 + 62 + 0 + 10 +6689.543648 + 20 +8995.0 + 30 +0.0 + 11 +6804.543648 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +318 + 8 +0 + 62 + 0 + 10 +6866.320344 + 20 +8995.0 + 30 +0.0 + 11 +6981.320344 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +319 + 8 +0 + 62 + 0 + 10 +7043.097039 + 20 +8995.0 + 30 +0.0 + 11 +7158.097039 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +31A + 8 +0 + 62 + 0 + 10 +7219.873734 + 20 +8995.0 + 30 +0.0 + 11 +7334.873734 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +31B + 8 +0 + 62 + 0 + 10 +7396.650429 + 20 +8995.0 + 30 +0.0 + 11 +7511.650429 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +31C + 8 +0 + 62 + 0 + 10 +7573.427125 + 20 +8995.0 + 30 +0.0 + 11 +7688.427125 + 21 +9110.0 + 31 +0.0 + 0 +ENDBLK + 5 +31D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X21 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X21 + 1 + + 0 +LINE + 5 +31F + 8 +0 + 62 + 0 + 10 +9164.417382 + 20 +8995.0 + 30 +0.0 + 11 +9279.417382 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +320 + 8 +0 + 62 + 0 + 10 +8987.640687 + 20 +8995.0 + 30 +0.0 + 11 +9102.640687 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +321 + 8 +0 + 62 + 0 + 10 +8810.863992 + 20 +8995.0 + 30 +0.0 + 11 +8925.863992 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +322 + 8 +0 + 62 + 0 + 10 +9341.194078 + 20 +8995.0 + 30 +0.0 + 11 +9456.194078 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +323 + 8 +0 + 62 + 0 + 10 +9517.970773 + 20 +8995.0 + 30 +0.0 + 11 +9632.970773 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +324 + 8 +0 + 62 + 0 + 10 +9694.747468 + 20 +8995.0 + 30 +0.0 + 11 +9809.747468 + 21 +9110.0 + 31 +0.0 + 0 +ENDBLK + 5 +325 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X22 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X22 + 1 + + 0 +LINE + 5 +327 + 8 +0 + 62 + 0 + 10 +13583.834765 + 20 +8995.0 + 30 +0.0 + 11 +13698.834765 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +328 + 8 +0 + 62 + 0 + 10 +13407.05807 + 20 +8995.0 + 30 +0.0 + 11 +13522.05807 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +329 + 8 +0 + 62 + 0 + 10 +13230.281374 + 20 +8995.0 + 30 +0.0 + 11 +13345.281374 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +32A + 8 +0 + 62 + 0 + 10 +13053.504679 + 20 +8995.0 + 30 +0.0 + 11 +13168.504679 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +32B + 8 +0 + 62 + 0 + 10 +12876.727984 + 20 +8995.0 + 30 +0.0 + 11 +12991.727984 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +32C + 8 +0 + 62 + 0 + 10 +12699.951288 + 20 +8995.0 + 30 +0.0 + 11 +12814.951288 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +32D + 8 +0 + 62 + 0 + 10 +12523.174593 + 20 +8995.0 + 30 +0.0 + 11 +12638.174593 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +32E + 8 +0 + 62 + 0 + 10 +12346.397898 + 20 +8995.0 + 30 +0.0 + 11 +12461.397898 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +32F + 8 +0 + 62 + 0 + 10 +12169.621202 + 20 +8995.0 + 30 +0.0 + 11 +12284.621202 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +330 + 8 +0 + 62 + 0 + 10 +11992.844507 + 20 +8995.0 + 30 +0.0 + 11 +12107.844507 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +331 + 8 +0 + 62 + 0 + 10 +11816.067812 + 20 +8995.0 + 30 +0.0 + 11 +11931.067812 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +332 + 8 +0 + 62 + 0 + 10 +11639.291117 + 20 +8995.0 + 30 +0.0 + 11 +11754.291117 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +333 + 8 +0 + 62 + 0 + 10 +11462.514421 + 20 +8995.0 + 30 +0.0 + 11 +11577.514421 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +334 + 8 +0 + 62 + 0 + 10 +11285.737726 + 20 +8995.0 + 30 +0.0 + 11 +11400.737726 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +335 + 8 +0 + 62 + 0 + 10 +13760.61146 + 20 +8995.0 + 30 +0.0 + 11 +13875.61146 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +336 + 8 +0 + 62 + 0 + 10 +13937.388155 + 20 +8995.0 + 30 +0.0 + 11 +14052.388155 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +337 + 8 +0 + 62 + 0 + 10 +14114.164851 + 20 +8995.0 + 30 +0.0 + 11 +14229.164851 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +338 + 8 +0 + 62 + 0 + 10 +14290.941546 + 20 +8995.0 + 30 +0.0 + 11 +14405.941546 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +339 + 8 +0 + 62 + 0 + 10 +14467.718241 + 20 +8995.0 + 30 +0.0 + 11 +14582.718241 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +33A + 8 +0 + 62 + 0 + 10 +14644.494937 + 20 +8995.0 + 30 +0.0 + 11 +14759.494937 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +33B + 8 +0 + 62 + 0 + 10 +14821.271632 + 20 +8995.0 + 30 +0.0 + 11 +14936.271632 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +33C + 8 +0 + 62 + 0 + 10 +14998.048327 + 20 +8995.0 + 30 +0.0 + 11 +15113.048327 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +33D + 8 +0 + 62 + 0 + 10 +15174.825023 + 20 +8995.0 + 30 +0.0 + 11 +15289.825023 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +33E + 8 +0 + 62 + 0 + 10 +15351.601718 + 20 +8995.0 + 30 +0.0 + 11 +15466.601718 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +33F + 8 +0 + 62 + 0 + 10 +15528.378413 + 20 +8995.0 + 30 +0.0 + 11 +15643.378413 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +340 + 8 +0 + 62 + 0 + 10 +15705.155108 + 20 +8995.0 + 30 +0.0 + 11 +15820.155108 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +341 + 8 +0 + 62 + 0 + 10 +15881.931804 + 20 +8995.0 + 30 +0.0 + 11 +15996.931804 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +342 + 8 +0 + 62 + 0 + 10 +16058.708499 + 20 +8995.0 + 30 +0.0 + 11 +16115.0 + 21 +9051.291501 + 31 +0.0 + 0 +ENDBLK + 5 +343 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X23 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X23 + 1 + + 0 +LINE + 5 +345 + 8 +0 + 62 + 0 + 10 +17826.475452 + 20 +8995.0 + 30 +0.0 + 11 +17941.475452 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +346 + 8 +0 + 62 + 0 + 10 +17649.698757 + 20 +8995.0 + 30 +0.0 + 11 +17764.698757 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +347 + 8 +0 + 62 + 0 + 10 +17472.922061 + 20 +8995.0 + 30 +0.0 + 11 +17587.922061 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +348 + 8 +0 + 62 + 0 + 10 +17375.0 + 20 +9073.854634 + 30 +0.0 + 11 +17411.145366 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +349 + 8 +0 + 62 + 0 + 10 +18003.252147 + 20 +8995.0 + 30 +0.0 + 11 +18118.252147 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +34A + 8 +0 + 62 + 0 + 10 +18180.028843 + 20 +8995.0 + 30 +0.0 + 11 +18295.028843 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +34B + 8 +0 + 62 + 0 + 10 +18356.805538 + 20 +8995.0 + 30 +0.0 + 11 +18471.805538 + 21 +9110.0 + 31 +0.0 + 0 +ENDBLK + 5 +34C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X24 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X24 + 1 + + 0 +LINE + 5 +34E + 8 +0 + 62 + 0 + 10 +20654.902577 + 20 +8995.0 + 30 +0.0 + 11 +20769.902577 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +34F + 8 +0 + 62 + 0 + 10 +20478.125881 + 20 +8995.0 + 30 +0.0 + 11 +20593.125881 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +350 + 8 +0 + 62 + 0 + 10 +20375.0 + 20 +9068.650814 + 30 +0.0 + 11 +20416.349186 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +351 + 8 +0 + 62 + 0 + 10 +20831.679272 + 20 +8995.0 + 30 +0.0 + 11 +20946.679272 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +352 + 8 +0 + 62 + 0 + 10 +21008.455967 + 20 +8995.0 + 30 +0.0 + 11 +21123.455967 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +353 + 8 +0 + 62 + 0 + 10 +21185.232663 + 20 +8995.0 + 30 +0.0 + 11 +21300.232663 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +354 + 8 +0 + 62 + 0 + 10 +21362.009358 + 20 +8995.0 + 30 +0.0 + 11 +21365.0 + 21 +8997.990642 + 31 +0.0 + 0 +ENDBLK + 5 +355 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X25 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X25 + 1 + + 0 +LINE + 5 +357 + 8 +0 + 62 + 0 + 10 +22422.66953 + 20 +8995.0 + 30 +0.0 + 11 +22537.66953 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +358 + 8 +0 + 62 + 0 + 10 +22245.892834 + 20 +8995.0 + 30 +0.0 + 11 +22360.892834 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +359 + 8 +0 + 62 + 0 + 10 +22069.116139 + 20 +8995.0 + 30 +0.0 + 11 +22184.116139 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +35A + 8 +0 + 62 + 0 + 10 +21892.339444 + 20 +8995.0 + 30 +0.0 + 11 +22007.339444 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +35B + 8 +0 + 62 + 0 + 10 +22599.446225 + 20 +8995.0 + 30 +0.0 + 11 +22714.446225 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +35C + 8 +0 + 62 + 0 + 10 +22776.22292 + 20 +8995.0 + 30 +0.0 + 11 +22891.22292 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +35D + 8 +0 + 62 + 0 + 10 +22952.999616 + 20 +8995.0 + 30 +0.0 + 11 +23067.999616 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +35E + 8 +0 + 62 + 0 + 10 +23129.776311 + 20 +8995.0 + 30 +0.0 + 11 +23240.0 + 21 +9105.223689 + 31 +0.0 + 0 +ENDBLK + 5 +35F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X26 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X26 + 1 + + 0 +LINE + 5 +361 + 8 +0 + 62 + 0 + 10 +21363.757211 + 20 +22255.0 + 30 +0.0 + 11 +21478.757211 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +362 + 8 +0 + 62 + 0 + 10 +21186.980515 + 20 +22255.0 + 30 +0.0 + 11 +21301.980515 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +363 + 8 +0 + 62 + 0 + 10 +21010.20382 + 20 +22255.0 + 30 +0.0 + 11 +21125.20382 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +364 + 8 +0 + 62 + 0 + 10 +20833.427125 + 20 +22255.0 + 30 +0.0 + 11 +20948.427125 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +365 + 8 +0 + 62 + 0 + 10 +20656.650429 + 20 +22255.0 + 30 +0.0 + 11 +20771.650429 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +366 + 8 +0 + 62 + 0 + 10 +20479.873734 + 20 +22255.0 + 30 +0.0 + 11 +20594.873734 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +367 + 8 +0 + 62 + 0 + 10 +20303.097039 + 20 +22255.0 + 30 +0.0 + 11 +20418.097039 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +368 + 8 +0 + 62 + 0 + 10 +20126.320344 + 20 +22255.0 + 30 +0.0 + 11 +20241.320344 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +369 + 8 +0 + 62 + 0 + 10 +19949.543648 + 20 +22255.0 + 30 +0.0 + 11 +20064.543648 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +36A + 8 +0 + 62 + 0 + 10 +19772.766953 + 20 +22255.0 + 30 +0.0 + 11 +19887.766953 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +36B + 8 +0 + 62 + 0 + 10 +21540.533906 + 20 +22255.0 + 30 +0.0 + 11 +21655.533906 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +36C + 8 +0 + 62 + 0 + 10 +21717.310601 + 20 +22255.0 + 30 +0.0 + 11 +21832.310601 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +36D + 8 +0 + 62 + 0 + 10 +21894.087297 + 20 +22255.0 + 30 +0.0 + 11 +22009.087297 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +36E + 8 +0 + 62 + 0 + 10 +22070.863992 + 20 +22255.0 + 30 +0.0 + 11 +22185.863992 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +36F + 8 +0 + 62 + 0 + 10 +22247.640687 + 20 +22255.0 + 30 +0.0 + 11 +22362.640687 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +370 + 8 +0 + 62 + 0 + 10 +22424.417382 + 20 +22255.0 + 30 +0.0 + 11 +22539.417382 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +371 + 8 +0 + 62 + 0 + 10 +22601.194078 + 20 +22255.0 + 30 +0.0 + 11 +22716.194078 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +372 + 8 +0 + 62 + 0 + 10 +22777.970773 + 20 +22255.0 + 30 +0.0 + 11 +22892.970773 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +373 + 8 +0 + 62 + 0 + 10 +22954.747468 + 20 +22255.0 + 30 +0.0 + 11 +23069.747468 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +374 + 8 +0 + 62 + 0 + 10 +23131.524164 + 20 +22255.0 + 30 +0.0 + 11 +23246.524164 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +375 + 8 +0 + 62 + 0 + 10 +23308.300859 + 20 +22255.0 + 30 +0.0 + 11 +23365.0 + 21 +22311.699141 + 31 +0.0 + 0 +ENDBLK + 5 +376 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X27 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X27 + 1 + + 0 +LINE + 5 +378 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +21230.505063 + 30 +0.0 + 11 +26995.0 + 21 +21345.505063 + 31 +0.0 + 0 +LINE + 5 +379 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +21407.281759 + 30 +0.0 + 11 +26995.0 + 21 +21522.281759 + 31 +0.0 + 0 +LINE + 5 +37A + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +21584.058454 + 30 +0.0 + 11 +26995.0 + 21 +21699.058454 + 31 +0.0 + 0 +LINE + 5 +37B + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +21760.835149 + 30 +0.0 + 11 +26995.0 + 21 +21875.835149 + 31 +0.0 + 0 +LINE + 5 +37C + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +21937.611845 + 30 +0.0 + 11 +26995.0 + 21 +22052.611845 + 31 +0.0 + 0 +LINE + 5 +37D + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +22114.38854 + 30 +0.0 + 11 +26995.0 + 21 +22229.38854 + 31 +0.0 + 0 +LINE + 5 +37E + 8 +0 + 62 + 0 + 10 +26843.834765 + 20 +22255.0 + 30 +0.0 + 11 +26958.834765 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +37F + 8 +0 + 62 + 0 + 10 +26667.05807 + 20 +22255.0 + 30 +0.0 + 11 +26782.05807 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +380 + 8 +0 + 62 + 0 + 10 +26490.281374 + 20 +22255.0 + 30 +0.0 + 11 +26605.281374 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +381 + 8 +0 + 62 + 0 + 10 +26313.504679 + 20 +22255.0 + 30 +0.0 + 11 +26428.504679 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +382 + 8 +0 + 62 + 0 + 10 +26136.727984 + 20 +22255.0 + 30 +0.0 + 11 +26251.727984 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +383 + 8 +0 + 62 + 0 + 10 +25959.951288 + 20 +22255.0 + 30 +0.0 + 11 +26074.951288 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +384 + 8 +0 + 62 + 0 + 10 +25783.174593 + 20 +22255.0 + 30 +0.0 + 11 +25898.174593 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +385 + 8 +0 + 62 + 0 + 10 +25606.397898 + 20 +22255.0 + 30 +0.0 + 11 +25721.397898 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +386 + 8 +0 + 62 + 0 + 10 +25429.621202 + 20 +22255.0 + 30 +0.0 + 11 +25544.621202 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +387 + 8 +0 + 62 + 0 + 10 +25252.844507 + 20 +22255.0 + 30 +0.0 + 11 +25367.844507 + 21 +22370.0 + 31 +0.0 + 0 +LINE + 5 +388 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +21053.728368 + 30 +0.0 + 11 +26995.0 + 21 +21168.728368 + 31 +0.0 + 0 +LINE + 5 +389 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +20876.951673 + 30 +0.0 + 11 +26995.0 + 21 +20991.951673 + 31 +0.0 + 0 +LINE + 5 +38A + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +20700.174977 + 30 +0.0 + 11 +26995.0 + 21 +20815.174977 + 31 +0.0 + 0 +LINE + 5 +38B + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +20523.398282 + 30 +0.0 + 11 +26995.0 + 21 +20638.398282 + 31 +0.0 + 0 +LINE + 5 +38C + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +20346.621587 + 30 +0.0 + 11 +26995.0 + 21 +20461.621587 + 31 +0.0 + 0 +LINE + 5 +38D + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +20169.844892 + 30 +0.0 + 11 +26995.0 + 21 +20284.844892 + 31 +0.0 + 0 +LINE + 5 +38E + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +19993.068196 + 30 +0.0 + 11 +26995.0 + 21 +20108.068196 + 31 +0.0 + 0 +LINE + 5 +38F + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +19816.291501 + 30 +0.0 + 11 +26995.0 + 21 +19931.291501 + 31 +0.0 + 0 +LINE + 5 +390 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +19639.514806 + 30 +0.0 + 11 +26995.0 + 21 +19754.514806 + 31 +0.0 + 0 +LINE + 5 +391 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +19462.73811 + 30 +0.0 + 11 +26995.0 + 21 +19577.73811 + 31 +0.0 + 0 +LINE + 5 +392 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +19285.961415 + 30 +0.0 + 11 +26995.0 + 21 +19400.961415 + 31 +0.0 + 0 +LINE + 5 +393 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +19109.18472 + 30 +0.0 + 11 +26995.0 + 21 +19224.18472 + 31 +0.0 + 0 +LINE + 5 +394 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +18932.408025 + 30 +0.0 + 11 +26995.0 + 21 +19047.408025 + 31 +0.0 + 0 +LINE + 5 +395 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +18755.631329 + 30 +0.0 + 11 +26995.0 + 21 +18870.631329 + 31 +0.0 + 0 +LINE + 5 +396 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +18578.854634 + 30 +0.0 + 11 +26995.0 + 21 +18693.854634 + 31 +0.0 + 0 +LINE + 5 +397 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +18402.077939 + 30 +0.0 + 11 +26995.0 + 21 +18517.077939 + 31 +0.0 + 0 +ENDBLK + 5 +398 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X28 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X28 + 1 + + 0 +LINE + 5 +39A + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +14866.544033 + 30 +0.0 + 11 +26995.0 + 21 +14981.544033 + 31 +0.0 + 0 +LINE + 5 +39B + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +15043.320728 + 30 +0.0 + 11 +26995.0 + 21 +15158.320728 + 31 +0.0 + 0 +LINE + 5 +39C + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +15220.097423 + 30 +0.0 + 11 +26995.0 + 21 +15335.097423 + 31 +0.0 + 0 +LINE + 5 +39D + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +15396.874119 + 30 +0.0 + 11 +26995.0 + 21 +15511.874119 + 31 +0.0 + 0 +LINE + 5 +39E + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +15573.650814 + 30 +0.0 + 11 +26995.0 + 21 +15688.650814 + 31 +0.0 + 0 +LINE + 5 +39F + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +15750.427509 + 30 +0.0 + 11 +26995.0 + 21 +15865.427509 + 31 +0.0 + 0 +LINE + 5 +3A0 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +15927.204204 + 30 +0.0 + 11 +26995.0 + 21 +16042.204204 + 31 +0.0 + 0 +LINE + 5 +3A1 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +16103.9809 + 30 +0.0 + 11 +26995.0 + 21 +16218.9809 + 31 +0.0 + 0 +LINE + 5 +3A2 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +16280.757595 + 30 +0.0 + 11 +26995.0 + 21 +16395.757595 + 31 +0.0 + 0 +LINE + 5 +3A3 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +16457.53429 + 30 +0.0 + 11 +26995.0 + 21 +16572.53429 + 31 +0.0 + 0 +LINE + 5 +3A4 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +16634.310986 + 30 +0.0 + 11 +26995.0 + 21 +16749.310986 + 31 +0.0 + 0 +LINE + 5 +3A5 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +16811.087681 + 30 +0.0 + 11 +26995.0 + 21 +16926.087681 + 31 +0.0 + 0 +LINE + 5 +3A6 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +16987.864376 + 30 +0.0 + 11 +26995.0 + 21 +17102.864376 + 31 +0.0 + 0 +LINE + 5 +3A7 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +17164.641072 + 30 +0.0 + 11 +26995.0 + 21 +17279.641072 + 31 +0.0 + 0 +LINE + 5 +3A8 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +17341.417767 + 30 +0.0 + 11 +26995.0 + 21 +17456.417767 + 31 +0.0 + 0 +LINE + 5 +3A9 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +17518.194462 + 30 +0.0 + 11 +26995.0 + 21 +17633.194462 + 31 +0.0 + 0 +LINE + 5 +3AA + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +17694.971157 + 30 +0.0 + 11 +26925.028843 + 21 +17740.0 + 31 +0.0 + 0 +LINE + 5 +3AB + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +14689.767337 + 30 +0.0 + 11 +26995.0 + 21 +14804.767337 + 31 +0.0 + 0 +LINE + 5 +3AC + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +14512.990642 + 30 +0.0 + 11 +26995.0 + 21 +14627.990642 + 31 +0.0 + 0 +LINE + 5 +3AD + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +14336.213947 + 30 +0.0 + 11 +26995.0 + 21 +14451.213947 + 31 +0.0 + 0 +LINE + 5 +3AE + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +14159.437252 + 30 +0.0 + 11 +26995.0 + 21 +14274.437252 + 31 +0.0 + 0 +LINE + 5 +3AF + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +13982.660556 + 30 +0.0 + 11 +26995.0 + 21 +14097.660556 + 31 +0.0 + 0 +LINE + 5 +3B0 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +13805.883861 + 30 +0.0 + 11 +26995.0 + 21 +13920.883861 + 31 +0.0 + 0 +LINE + 5 +3B1 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +13629.107166 + 30 +0.0 + 11 +26995.0 + 21 +13744.107166 + 31 +0.0 + 0 +LINE + 5 +3B2 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +13452.33047 + 30 +0.0 + 11 +26995.0 + 21 +13567.33047 + 31 +0.0 + 0 +LINE + 5 +3B3 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +13275.553775 + 30 +0.0 + 11 +26995.0 + 21 +13390.553775 + 31 +0.0 + 0 +LINE + 5 +3B4 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +13098.77708 + 30 +0.0 + 11 +26995.0 + 21 +13213.77708 + 31 +0.0 + 0 +LINE + 5 +3B5 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +12922.000384 + 30 +0.0 + 11 +26995.0 + 21 +13037.000384 + 31 +0.0 + 0 +LINE + 5 +3B6 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +12745.223689 + 30 +0.0 + 11 +26995.0 + 21 +12860.223689 + 31 +0.0 + 0 +LINE + 5 +3B7 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +12568.446994 + 30 +0.0 + 11 +26995.0 + 21 +12683.446994 + 31 +0.0 + 0 +LINE + 5 +3B8 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +12391.670299 + 30 +0.0 + 11 +26995.0 + 21 +12506.670299 + 31 +0.0 + 0 +LINE + 5 +3B9 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +12214.893603 + 30 +0.0 + 11 +26995.0 + 21 +12329.893603 + 31 +0.0 + 0 +LINE + 5 +3BA + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +12038.116908 + 30 +0.0 + 11 +26995.0 + 21 +12153.116908 + 31 +0.0 + 0 +ENDBLK + 5 +3BB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X29 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X29 + 1 + + 0 +LINE + 5 +3BD + 8 +0 + 62 + 0 + 10 +25427.87335 + 20 +8995.0 + 30 +0.0 + 11 +25542.87335 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3BE + 8 +0 + 62 + 0 + 10 +25604.650045 + 20 +8995.0 + 30 +0.0 + 11 +25719.650045 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3BF + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +10270.349955 + 30 +0.0 + 11 +26974.650045 + 21 +10365.0 + 31 +0.0 + 0 +LINE + 5 +3C0 + 8 +0 + 62 + 0 + 10 +25781.42674 + 20 +8995.0 + 30 +0.0 + 11 +25896.42674 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3C1 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +10093.57326 + 30 +0.0 + 11 +26995.0 + 21 +10208.57326 + 31 +0.0 + 0 +LINE + 5 +3C2 + 8 +0 + 62 + 0 + 10 +25958.203436 + 20 +8995.0 + 30 +0.0 + 11 +26073.203436 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3C3 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +9916.796564 + 30 +0.0 + 11 +26995.0 + 21 +10031.796564 + 31 +0.0 + 0 +LINE + 5 +3C4 + 8 +0 + 62 + 0 + 10 +26134.980131 + 20 +8995.0 + 30 +0.0 + 11 +26249.980131 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3C5 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +9740.019869 + 30 +0.0 + 11 +26995.0 + 21 +9855.019869 + 31 +0.0 + 0 +LINE + 5 +3C6 + 8 +0 + 62 + 0 + 10 +26311.756826 + 20 +8995.0 + 30 +0.0 + 11 +26426.756826 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3C7 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +9563.243174 + 30 +0.0 + 11 +26995.0 + 21 +9678.243174 + 31 +0.0 + 0 +LINE + 5 +3C8 + 8 +0 + 62 + 0 + 10 +26488.533521 + 20 +8995.0 + 30 +0.0 + 11 +26603.533521 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3C9 + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +9386.466479 + 30 +0.0 + 11 +26995.0 + 21 +9501.466479 + 31 +0.0 + 0 +LINE + 5 +3CA + 8 +0 + 62 + 0 + 10 +26665.310217 + 20 +8995.0 + 30 +0.0 + 11 +26780.310217 + 21 +9110.0 + 31 +0.0 + 0 +LINE + 5 +3CB + 8 +0 + 62 + 0 + 10 +26880.0 + 20 +9209.689783 + 30 +0.0 + 11 +26995.0 + 21 +9324.689783 + 31 +0.0 + 0 +LINE + 5 +3CC + 8 +0 + 62 + 0 + 10 +26842.086912 + 20 +8995.0 + 30 +0.0 + 11 +26995.0 + 21 +9147.913088 + 31 +0.0 + 0 +ENDBLK + 5 +3CD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X30 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X30 + 1 + + 0 +LINE + 5 +3CF + 8 +0 + 62 + 0 + 10 +21332.26189 + 20 +13915.0 + 30 +0.0 + 11 +21457.26189 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +3D0 + 8 +0 + 62 + 0 + 10 +21240.0 + 20 +13999.514806 + 30 +0.0 + 11 +21280.485194 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +3D1 + 8 +0 + 62 + 0 + 10 +21509.038585 + 20 +13915.0 + 30 +0.0 + 11 +21565.0 + 21 +13970.961415 + 31 +0.0 + 0 +LINE + 5 +3D2 + 8 +0 + 62 + 0 + 10 +21371.42674 + 20 +13915.0 + 30 +0.0 + 11 +21246.42674 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +3D3 + 8 +0 + 62 + 0 + 10 +21548.203436 + 20 +13915.0 + 30 +0.0 + 11 +21423.203436 + 21 +14040.0 + 31 +0.0 + 0 +ENDBLK + 5 +3D4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X31 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X31 + 1 + + 0 +LINE + 5 +3D6 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +15432.73811 + 30 +0.0 + 11 +22975.0 + 21 +15557.73811 + 31 +0.0 + 0 +LINE + 5 +3D7 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +15609.514806 + 30 +0.0 + 11 +22865.485194 + 21 +15625.0 + 31 +0.0 + 0 +LINE + 5 +3D8 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +15255.961415 + 30 +0.0 + 11 +22975.0 + 21 +15380.961415 + 31 +0.0 + 0 +LINE + 5 +3D9 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +15316.63056 + 30 +0.0 + 11 +22850.0 + 21 +15441.63056 + 31 +0.0 + 0 +LINE + 5 +3DA + 8 +0 + 62 + 0 + 10 +22889.853865 + 20 +15225.0 + 30 +0.0 + 11 +22850.0 + 21 +15264.853865 + 31 +0.0 + 0 +LINE + 5 +3DB + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +15493.407256 + 30 +0.0 + 11 +22850.0 + 21 +15618.407256 + 31 +0.0 + 0 +ENDBLK + 5 +3DC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X32 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X32 + 1 + + 0 +LINE + 5 +3DE + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +12250.757595 + 30 +0.0 + 11 +22975.0 + 21 +12375.757595 + 31 +0.0 + 0 +LINE + 5 +3DF + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +12427.53429 + 30 +0.0 + 11 +22975.0 + 21 +12552.53429 + 31 +0.0 + 0 +LINE + 5 +3E0 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +12604.310986 + 30 +0.0 + 11 +22975.0 + 21 +12729.310986 + 31 +0.0 + 0 +LINE + 5 +3E1 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +12781.087681 + 30 +0.0 + 11 +22975.0 + 21 +12906.087681 + 31 +0.0 + 0 +LINE + 5 +3E2 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +12957.864376 + 30 +0.0 + 11 +22975.0 + 21 +13082.864376 + 31 +0.0 + 0 +LINE + 5 +3E3 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +13134.641072 + 30 +0.0 + 11 +22975.0 + 21 +13259.641072 + 31 +0.0 + 0 +LINE + 5 +3E4 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +13311.417767 + 30 +0.0 + 11 +22975.0 + 21 +13436.417767 + 31 +0.0 + 0 +LINE + 5 +3E5 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +13488.194462 + 30 +0.0 + 11 +22975.0 + 21 +13613.194462 + 31 +0.0 + 0 +LINE + 5 +3E6 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +13664.971157 + 30 +0.0 + 11 +22975.0 + 21 +13789.971157 + 31 +0.0 + 0 +LINE + 5 +3E7 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +13841.747853 + 30 +0.0 + 11 +22975.0 + 21 +13966.747853 + 31 +0.0 + 0 +LINE + 5 +3E8 + 8 +0 + 62 + 0 + 10 +22746.475452 + 20 +13915.0 + 30 +0.0 + 11 +22975.0 + 21 +14143.524548 + 31 +0.0 + 0 +LINE + 5 +3E9 + 8 +0 + 62 + 0 + 10 +22569.698757 + 20 +13915.0 + 30 +0.0 + 11 +22694.698757 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +3EA + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +14195.301243 + 30 +0.0 + 11 +22975.0 + 21 +14320.301243 + 31 +0.0 + 0 +LINE + 5 +3EB + 8 +0 + 62 + 0 + 10 +22450.0 + 20 +13972.077939 + 30 +0.0 + 11 +22517.922061 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +3EC + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +12073.9809 + 30 +0.0 + 11 +22975.0 + 21 +12198.9809 + 31 +0.0 + 0 +LINE + 5 +3ED + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +11897.204204 + 30 +0.0 + 11 +22975.0 + 21 +12022.204204 + 31 +0.0 + 0 +LINE + 5 +3EE + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +11720.427509 + 30 +0.0 + 11 +22975.0 + 21 +11845.427509 + 31 +0.0 + 0 +LINE + 5 +3EF + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +11543.650814 + 30 +0.0 + 11 +22975.0 + 21 +11668.650814 + 31 +0.0 + 0 +LINE + 5 +3F0 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +11366.874119 + 30 +0.0 + 11 +22975.0 + 21 +11491.874119 + 31 +0.0 + 0 +LINE + 5 +3F1 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +11190.097423 + 30 +0.0 + 11 +22975.0 + 21 +11315.097423 + 31 +0.0 + 0 +LINE + 5 +3F2 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +11013.320728 + 30 +0.0 + 11 +22975.0 + 21 +11138.320728 + 31 +0.0 + 0 +LINE + 5 +3F3 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +10836.544033 + 30 +0.0 + 11 +22975.0 + 21 +10961.544033 + 31 +0.0 + 0 +LINE + 5 +3F4 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +10659.767337 + 30 +0.0 + 11 +22975.0 + 21 +10784.767337 + 31 +0.0 + 0 +LINE + 5 +3F5 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +10482.990642 + 30 +0.0 + 11 +22975.0 + 21 +10607.990642 + 31 +0.0 + 0 +LINE + 5 +3F6 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +10306.213947 + 30 +0.0 + 11 +22975.0 + 21 +10431.213947 + 31 +0.0 + 0 +LINE + 5 +3F7 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +10129.437252 + 30 +0.0 + 11 +22975.0 + 21 +10254.437252 + 31 +0.0 + 0 +LINE + 5 +3F8 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +9952.660556 + 30 +0.0 + 11 +22975.0 + 21 +10077.660556 + 31 +0.0 + 0 +LINE + 5 +3F9 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +9775.883861 + 30 +0.0 + 11 +22975.0 + 21 +9900.883861 + 31 +0.0 + 0 +LINE + 5 +3FA + 8 +0 + 62 + 0 + 10 +22865.892834 + 20 +9615.0 + 30 +0.0 + 11 +22975.0 + 21 +9724.107166 + 31 +0.0 + 0 +LINE + 5 +3FB + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +11604.319959 + 30 +0.0 + 11 +22850.0 + 21 +11729.319959 + 31 +0.0 + 0 +LINE + 5 +3FC + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +11427.543264 + 30 +0.0 + 11 +22850.0 + 21 +11552.543264 + 31 +0.0 + 0 +LINE + 5 +3FD + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +11250.766569 + 30 +0.0 + 11 +22850.0 + 21 +11375.766569 + 31 +0.0 + 0 +LINE + 5 +3FE + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +11073.989873 + 30 +0.0 + 11 +22850.0 + 21 +11198.989873 + 31 +0.0 + 0 +LINE + 5 +3FF + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +10897.213178 + 30 +0.0 + 11 +22850.0 + 21 +11022.213178 + 31 +0.0 + 0 +LINE + 5 +400 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +10720.436483 + 30 +0.0 + 11 +22850.0 + 21 +10845.436483 + 31 +0.0 + 0 +LINE + 5 +401 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +10543.659787 + 30 +0.0 + 11 +22850.0 + 21 +10668.659787 + 31 +0.0 + 0 +LINE + 5 +402 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +10366.883092 + 30 +0.0 + 11 +22850.0 + 21 +10491.883092 + 31 +0.0 + 0 +LINE + 5 +403 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +10190.106397 + 30 +0.0 + 11 +22850.0 + 21 +10315.106397 + 31 +0.0 + 0 +LINE + 5 +404 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +10013.329701 + 30 +0.0 + 11 +22850.0 + 21 +10138.329701 + 31 +0.0 + 0 +LINE + 5 +405 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +9836.553006 + 30 +0.0 + 11 +22850.0 + 21 +9961.553006 + 31 +0.0 + 0 +LINE + 5 +406 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +9659.776311 + 30 +0.0 + 11 +22850.0 + 21 +9784.776311 + 31 +0.0 + 0 +LINE + 5 +407 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +11781.096654 + 30 +0.0 + 11 +22850.0 + 21 +11906.096654 + 31 +0.0 + 0 +LINE + 5 +408 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +11957.87335 + 30 +0.0 + 11 +22850.0 + 21 +12082.87335 + 31 +0.0 + 0 +LINE + 5 +409 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +12134.650045 + 30 +0.0 + 11 +22850.0 + 21 +12259.650045 + 31 +0.0 + 0 +LINE + 5 +40A + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +12311.42674 + 30 +0.0 + 11 +22850.0 + 21 +12436.42674 + 31 +0.0 + 0 +LINE + 5 +40B + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +12488.203436 + 30 +0.0 + 11 +22850.0 + 21 +12613.203436 + 31 +0.0 + 0 +LINE + 5 +40C + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +12664.980131 + 30 +0.0 + 11 +22850.0 + 21 +12789.980131 + 31 +0.0 + 0 +LINE + 5 +40D + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +12841.756826 + 30 +0.0 + 11 +22850.0 + 21 +12966.756826 + 31 +0.0 + 0 +LINE + 5 +40E + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +13018.533521 + 30 +0.0 + 11 +22850.0 + 21 +13143.533521 + 31 +0.0 + 0 +LINE + 5 +40F + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +13195.310217 + 30 +0.0 + 11 +22850.0 + 21 +13320.310217 + 31 +0.0 + 0 +LINE + 5 +410 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +13372.086912 + 30 +0.0 + 11 +22850.0 + 21 +13497.086912 + 31 +0.0 + 0 +LINE + 5 +411 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +13548.863607 + 30 +0.0 + 11 +22850.0 + 21 +13673.863607 + 31 +0.0 + 0 +LINE + 5 +412 + 8 +0 + 62 + 0 + 10 +22608.863607 + 20 +13915.0 + 30 +0.0 + 11 +22483.863607 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +413 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +13725.640303 + 30 +0.0 + 11 +22850.0 + 21 +13850.640303 + 31 +0.0 + 0 +LINE + 5 +414 + 8 +0 + 62 + 0 + 10 +22785.640303 + 20 +13915.0 + 30 +0.0 + 11 +22660.640303 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +415 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +13902.416998 + 30 +0.0 + 11 +22837.416998 + 21 +14040.0 + 31 +0.0 + 0 +LINE + 5 +416 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +14079.193693 + 30 +0.0 + 11 +22850.0 + 21 +14204.193693 + 31 +0.0 + 0 +LINE + 5 +417 + 8 +0 + 62 + 0 + 10 +22975.0 + 20 +14255.970389 + 30 +0.0 + 11 +22890.970389 + 21 +14340.0 + 31 +0.0 + 0 +ENDBLK + 5 +418 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X33 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X33 + 1 + + 0 +LINE + 5 +41A + 8 +0 + 62 + 0 + 10 +7628.805922 + 20 +16475.0 + 30 +0.0 + 11 +7740.0 + 21 +16586.194078 + 31 +0.0 + 0 +LINE + 5 +41B + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +16637.970773 + 30 +0.0 + 11 +7740.0 + 21 +16762.970773 + 31 +0.0 + 0 +LINE + 5 +41C + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +16814.747468 + 30 +0.0 + 11 +7675.252532 + 21 +16875.0 + 31 +0.0 + 0 +LINE + 5 +41D + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +16586.271632 + 30 +0.0 + 11 +7615.0 + 21 +16711.271632 + 31 +0.0 + 0 +LINE + 5 +41E + 8 +0 + 62 + 0 + 10 +7674.494937 + 20 +16475.0 + 30 +0.0 + 11 +7615.0 + 21 +16534.494937 + 31 +0.0 + 0 +LINE + 5 +41F + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +16763.048327 + 30 +0.0 + 11 +7628.048327 + 21 +16875.0 + 31 +0.0 + 0 +ENDBLK + 5 +420 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X34 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X34 + 1 + + 0 +LINE + 5 +422 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +14870.20382 + 30 +0.0 + 11 +7740.0 + 21 +14995.20382 + 31 +0.0 + 0 +LINE + 5 +423 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +15046.980515 + 30 +0.0 + 11 +7740.0 + 21 +15171.980515 + 31 +0.0 + 0 +LINE + 5 +424 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +15223.757211 + 30 +0.0 + 11 +7740.0 + 21 +15348.757211 + 31 +0.0 + 0 +LINE + 5 +425 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +15400.533906 + 30 +0.0 + 11 +7740.0 + 21 +15525.533906 + 31 +0.0 + 0 +LINE + 5 +426 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +15577.310601 + 30 +0.0 + 11 +7627.689399 + 21 +15590.0 + 31 +0.0 + 0 +LINE + 5 +427 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +14693.427125 + 30 +0.0 + 11 +7740.0 + 21 +14818.427125 + 31 +0.0 + 0 +LINE + 5 +428 + 8 +0 + 62 + 0 + 10 +7615.0 + 20 +14516.650429 + 30 +0.0 + 11 +7740.0 + 21 +14641.650429 + 31 +0.0 + 0 +LINE + 5 +429 + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +14818.504679 + 30 +0.0 + 11 +7615.0 + 21 +14943.504679 + 31 +0.0 + 0 +LINE + 5 +42A + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +14641.727984 + 30 +0.0 + 11 +7615.0 + 21 +14766.727984 + 31 +0.0 + 0 +LINE + 5 +42B + 8 +0 + 62 + 0 + 10 +7714.951288 + 20 +14490.0 + 30 +0.0 + 11 +7615.0 + 21 +14589.951288 + 31 +0.0 + 0 +LINE + 5 +42C + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +14995.281374 + 30 +0.0 + 11 +7615.0 + 21 +15120.281374 + 31 +0.0 + 0 +LINE + 5 +42D + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +15172.05807 + 30 +0.0 + 11 +7615.0 + 21 +15297.05807 + 31 +0.0 + 0 +LINE + 5 +42E + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +15348.834765 + 30 +0.0 + 11 +7615.0 + 21 +15473.834765 + 31 +0.0 + 0 +LINE + 5 +42F + 8 +0 + 62 + 0 + 10 +7740.0 + 20 +15525.61146 + 30 +0.0 + 11 +7675.61146 + 21 +15590.0 + 31 +0.0 + 0 +ENDBLK + 5 +430 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X35 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X35 + 1 + + 0 +LINE + 5 +432 + 8 +0 + 62 + 0 + 10 +11762.563133 + 20 +17250.0 + 30 +0.0 + 11 +11887.563133 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +433 + 8 +0 + 62 + 0 + 10 +11585.786438 + 20 +17250.0 + 30 +0.0 + 11 +11710.786438 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +434 + 8 +0 + 62 + 0 + 10 +11409.009742 + 20 +17250.0 + 30 +0.0 + 11 +11534.009742 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +435 + 8 +0 + 62 + 0 + 10 +11232.233047 + 20 +17250.0 + 30 +0.0 + 11 +11357.233047 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +436 + 8 +0 + 62 + 0 + 10 +11055.456352 + 20 +17250.0 + 30 +0.0 + 11 +11180.456352 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +437 + 8 +0 + 62 + 0 + 10 +10878.679656 + 20 +17250.0 + 30 +0.0 + 11 +11003.679656 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +438 + 8 +0 + 62 + 0 + 10 +10701.902961 + 20 +17250.0 + 30 +0.0 + 11 +10826.902961 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +439 + 8 +0 + 62 + 0 + 10 +10525.126266 + 20 +17250.0 + 30 +0.0 + 11 +10650.126266 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +43A + 8 +0 + 62 + 0 + 10 +10348.349571 + 20 +17250.0 + 30 +0.0 + 11 +10473.349571 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +43B + 8 +0 + 62 + 0 + 10 +10171.572875 + 20 +17250.0 + 30 +0.0 + 11 +10296.572875 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +43C + 8 +0 + 62 + 0 + 10 +10115.0 + 20 +17370.20382 + 30 +0.0 + 11 +10119.79618 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +43D + 8 +0 + 62 + 0 + 10 +11939.339828 + 20 +17250.0 + 30 +0.0 + 11 +12064.339828 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +43E + 8 +0 + 62 + 0 + 10 +12116.116524 + 20 +17250.0 + 30 +0.0 + 11 +12241.116524 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +43F + 8 +0 + 62 + 0 + 10 +12292.893219 + 20 +17250.0 + 30 +0.0 + 11 +12417.893219 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +440 + 8 +0 + 62 + 0 + 10 +12469.669914 + 20 +17250.0 + 30 +0.0 + 11 +12594.669914 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +441 + 8 +0 + 62 + 0 + 10 +12646.446609 + 20 +17250.0 + 30 +0.0 + 11 +12771.446609 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +442 + 8 +0 + 62 + 0 + 10 +12823.223305 + 20 +17250.0 + 30 +0.0 + 11 +12948.223305 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +443 + 8 +0 + 62 + 0 + 10 +13000.0 + 20 +17250.0 + 30 +0.0 + 11 +13125.0 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +444 + 8 +0 + 62 + 0 + 10 +13176.776695 + 20 +17250.0 + 30 +0.0 + 11 +13301.776695 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +445 + 8 +0 + 62 + 0 + 10 +13353.553391 + 20 +17250.0 + 30 +0.0 + 11 +13478.553391 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +446 + 8 +0 + 62 + 0 + 10 +11849.242405 + 20 +17250.0 + 30 +0.0 + 11 +11724.242405 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +447 + 8 +0 + 62 + 0 + 10 +11672.46571 + 20 +17250.0 + 30 +0.0 + 11 +11547.46571 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +448 + 8 +0 + 62 + 0 + 10 +11495.689014 + 20 +17250.0 + 30 +0.0 + 11 +11370.689014 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +449 + 8 +0 + 62 + 0 + 10 +11318.912319 + 20 +17250.0 + 30 +0.0 + 11 +11193.912319 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +44A + 8 +0 + 62 + 0 + 10 +11142.135624 + 20 +17250.0 + 30 +0.0 + 11 +11017.135624 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +44B + 8 +0 + 62 + 0 + 10 +10965.358928 + 20 +17250.0 + 30 +0.0 + 11 +10840.358928 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +44C + 8 +0 + 62 + 0 + 10 +10788.582233 + 20 +17250.0 + 30 +0.0 + 11 +10663.582233 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +44D + 8 +0 + 62 + 0 + 10 +10611.805538 + 20 +17250.0 + 30 +0.0 + 11 +10486.805538 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +44E + 8 +0 + 62 + 0 + 10 +10435.028843 + 20 +17250.0 + 30 +0.0 + 11 +10310.028843 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +44F + 8 +0 + 62 + 0 + 10 +10258.252147 + 20 +17250.0 + 30 +0.0 + 11 +10133.252147 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +450 + 8 +0 + 62 + 0 + 10 +12026.0191 + 20 +17250.0 + 30 +0.0 + 11 +11901.0191 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +451 + 8 +0 + 62 + 0 + 10 +12202.795796 + 20 +17250.0 + 30 +0.0 + 11 +12077.795796 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +452 + 8 +0 + 62 + 0 + 10 +12379.572491 + 20 +17250.0 + 30 +0.0 + 11 +12254.572491 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +453 + 8 +0 + 62 + 0 + 10 +12556.349186 + 20 +17250.0 + 30 +0.0 + 11 +12431.349186 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +454 + 8 +0 + 62 + 0 + 10 +12733.125881 + 20 +17250.0 + 30 +0.0 + 11 +12608.125881 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +455 + 8 +0 + 62 + 0 + 10 +12909.902577 + 20 +17250.0 + 30 +0.0 + 11 +12784.902577 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +456 + 8 +0 + 62 + 0 + 10 +13086.679272 + 20 +17250.0 + 30 +0.0 + 11 +12961.679272 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +457 + 8 +0 + 62 + 0 + 10 +13263.455967 + 20 +17250.0 + 30 +0.0 + 11 +13138.455967 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +458 + 8 +0 + 62 + 0 + 10 +13440.232663 + 20 +17250.0 + 30 +0.0 + 11 +13315.232663 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +459 + 8 +0 + 62 + 0 + 10 +13525.0 + 20 +17342.009358 + 30 +0.0 + 11 +13492.009358 + 21 +17375.0 + 31 +0.0 + 0 +ENDBLK + 5 +45A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X36 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X36 + 1 + + 0 +LINE + 5 +45C + 8 +0 + 62 + 0 + 10 +14590.990258 + 20 +17250.0 + 30 +0.0 + 11 +14715.990258 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +45D + 8 +0 + 62 + 0 + 10 +14767.766953 + 20 +17250.0 + 30 +0.0 + 11 +14875.0 + 21 +17357.233047 + 31 +0.0 + 0 +LINE + 5 +45E + 8 +0 + 62 + 0 + 10 +14677.66953 + 20 +17250.0 + 30 +0.0 + 11 +14555.0 + 21 +17372.66953 + 31 +0.0 + 0 +LINE + 5 +45F + 8 +0 + 62 + 0 + 10 +14854.446225 + 20 +17250.0 + 30 +0.0 + 11 +14729.446225 + 21 +17375.0 + 31 +0.0 + 0 +ENDBLK + 5 +460 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X37 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X37 + 1 + + 0 +LINE + 5 +462 + 8 +0 + 62 + 0 + 10 +15474.873734 + 20 +17250.0 + 30 +0.0 + 11 +15599.873734 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +463 + 8 +0 + 62 + 0 + 10 +15298.097039 + 20 +17250.0 + 30 +0.0 + 11 +15423.097039 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +464 + 8 +0 + 62 + 0 + 10 +15240.0 + 20 +17368.679656 + 30 +0.0 + 11 +15246.320344 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +465 + 8 +0 + 62 + 0 + 10 +15651.650429 + 20 +17250.0 + 30 +0.0 + 11 +15776.650429 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +466 + 8 +0 + 62 + 0 + 10 +15828.427125 + 20 +17250.0 + 30 +0.0 + 11 +15953.427125 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +467 + 8 +0 + 62 + 0 + 10 +15561.553006 + 20 +17250.0 + 30 +0.0 + 11 +15436.553006 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +468 + 8 +0 + 62 + 0 + 10 +15384.776311 + 20 +17250.0 + 30 +0.0 + 11 +15259.776311 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +469 + 8 +0 + 62 + 0 + 10 +15738.329701 + 20 +17250.0 + 30 +0.0 + 11 +15613.329701 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +46A + 8 +0 + 62 + 0 + 10 +15915.106397 + 20 +17250.0 + 30 +0.0 + 11 +15790.106397 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +46B + 8 +0 + 62 + 0 + 10 +15990.0 + 20 +17351.883092 + 30 +0.0 + 11 +15966.883092 + 21 +17375.0 + 31 +0.0 + 0 +ENDBLK + 5 +46C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X38 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X38 + 1 + + 0 +LINE + 5 +46E + 8 +0 + 62 + 0 + 10 +17065.863992 + 20 +17250.0 + 30 +0.0 + 11 +17190.863992 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +46F + 8 +0 + 62 + 0 + 10 +16889.087297 + 20 +17250.0 + 30 +0.0 + 11 +17014.087297 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +470 + 8 +0 + 62 + 0 + 10 +17242.640687 + 20 +17250.0 + 30 +0.0 + 11 +17367.640687 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +471 + 8 +0 + 62 + 0 + 10 +17419.417382 + 20 +17250.0 + 30 +0.0 + 11 +17544.417382 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +472 + 8 +0 + 62 + 0 + 10 +17596.194078 + 20 +17250.0 + 30 +0.0 + 11 +17625.0 + 21 +17278.805922 + 31 +0.0 + 0 +LINE + 5 +473 + 8 +0 + 62 + 0 + 10 +17152.543264 + 20 +17250.0 + 30 +0.0 + 11 +17027.543264 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +474 + 8 +0 + 62 + 0 + 10 +16975.766569 + 20 +17250.0 + 30 +0.0 + 11 +16875.0 + 21 +17350.766569 + 31 +0.0 + 0 +LINE + 5 +475 + 8 +0 + 62 + 0 + 10 +17329.319959 + 20 +17250.0 + 30 +0.0 + 11 +17204.319959 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +476 + 8 +0 + 62 + 0 + 10 +17506.096654 + 20 +17250.0 + 30 +0.0 + 11 +17381.096654 + 21 +17375.0 + 31 +0.0 + 0 +LINE + 5 +477 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +17307.87335 + 30 +0.0 + 11 +17557.87335 + 21 +17375.0 + 31 +0.0 + 0 +ENDBLK + 5 +478 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X39 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X39 + 1 + + 0 +LINE + 5 +47A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20768.13782 + 30 +0.0 + 11 +4950.0 + 21 +20768.13782 + 31 +0.0 + 0 +LINE + 5 +47B + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20789.788455 + 30 +0.0 + 11 +4987.5 + 21 +20789.788455 + 31 +0.0 + 0 +LINE + 5 +47C + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20811.43909 + 30 +0.0 + 11 +4950.0 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +47D + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20833.089725 + 30 +0.0 + 11 +4987.5 + 21 +20833.089725 + 31 +0.0 + 0 +LINE + 5 +47E + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20854.74036 + 30 +0.0 + 11 +4950.0 + 21 +20854.74036 + 31 +0.0 + 0 +LINE + 5 +47F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20876.390995 + 30 +0.0 + 11 +4987.5 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +480 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20898.04163 + 30 +0.0 + 11 +4950.0 + 21 +20898.04163 + 31 +0.0 + 0 +LINE + 5 +481 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20919.692265 + 30 +0.0 + 11 +4987.5 + 21 +20919.692265 + 31 +0.0 + 0 +LINE + 5 +482 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20941.3429 + 30 +0.0 + 11 +4950.0 + 21 +20941.3429 + 31 +0.0 + 0 +LINE + 5 +483 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20962.993535 + 30 +0.0 + 11 +4987.5 + 21 +20962.993535 + 31 +0.0 + 0 +LINE + 5 +484 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20984.64417 + 30 +0.0 + 11 +4950.0 + 21 +20984.64417 + 31 +0.0 + 0 +LINE + 5 +485 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21006.294805 + 30 +0.0 + 11 +4987.5 + 21 +21006.294805 + 31 +0.0 + 0 +LINE + 5 +486 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21027.94544 + 30 +0.0 + 11 +4950.0 + 21 +21027.94544 + 31 +0.0 + 0 +LINE + 5 +487 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21049.596075 + 30 +0.0 + 11 +4987.5 + 21 +21049.596075 + 31 +0.0 + 0 +LINE + 5 +488 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21071.24671 + 30 +0.0 + 11 +4950.0 + 21 +21071.24671 + 31 +0.0 + 0 +LINE + 5 +489 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21092.897345 + 30 +0.0 + 11 +4987.5 + 21 +21092.897345 + 31 +0.0 + 0 +LINE + 5 +48A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21114.54798 + 30 +0.0 + 11 +4950.0 + 21 +21114.54798 + 31 +0.0 + 0 +LINE + 5 +48B + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21136.198615 + 30 +0.0 + 11 +4987.5 + 21 +21136.198615 + 31 +0.0 + 0 +LINE + 5 +48C + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21157.84925 + 30 +0.0 + 11 +4950.0 + 21 +21157.84925 + 31 +0.0 + 0 +LINE + 5 +48D + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21179.499885 + 30 +0.0 + 11 +4987.5 + 21 +21179.499885 + 31 +0.0 + 0 +LINE + 5 +48E + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21201.15052 + 30 +0.0 + 11 +4950.0 + 21 +21201.15052 + 31 +0.0 + 0 +LINE + 5 +48F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21222.801155 + 30 +0.0 + 11 +4987.5 + 21 +21222.801155 + 31 +0.0 + 0 +LINE + 5 +490 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21244.45179 + 30 +0.0 + 11 +4950.0 + 21 +21244.45179 + 31 +0.0 + 0 +LINE + 5 +491 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21266.102425 + 30 +0.0 + 11 +4987.5 + 21 +21266.102425 + 31 +0.0 + 0 +LINE + 5 +492 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21287.75306 + 30 +0.0 + 11 +4950.0 + 21 +21287.75306 + 31 +0.0 + 0 +LINE + 5 +493 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21309.403695 + 30 +0.0 + 11 +4987.5 + 21 +21309.403695 + 31 +0.0 + 0 +LINE + 5 +494 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21331.05433 + 30 +0.0 + 11 +4950.0 + 21 +21331.05433 + 31 +0.0 + 0 +LINE + 5 +495 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21352.704965 + 30 +0.0 + 11 +4987.5 + 21 +21352.704965 + 31 +0.0 + 0 +LINE + 5 +496 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21374.3556 + 30 +0.0 + 11 +4950.0 + 21 +21374.3556 + 31 +0.0 + 0 +LINE + 5 +497 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21396.006235 + 30 +0.0 + 11 +4987.5 + 21 +21396.006235 + 31 +0.0 + 0 +LINE + 5 +498 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21417.65687 + 30 +0.0 + 11 +4950.0 + 21 +21417.65687 + 31 +0.0 + 0 +LINE + 5 +499 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21439.307505 + 30 +0.0 + 11 +4987.5 + 21 +21439.307505 + 31 +0.0 + 0 +LINE + 5 +49A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21460.95814 + 30 +0.0 + 11 +4950.0 + 21 +21460.95814 + 31 +0.0 + 0 +LINE + 5 +49B + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21482.608775 + 30 +0.0 + 11 +4987.5 + 21 +21482.608775 + 31 +0.0 + 0 +LINE + 5 +49C + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21504.25941 + 30 +0.0 + 11 +4950.0 + 21 +21504.25941 + 31 +0.0 + 0 +LINE + 5 +49D + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21525.910045 + 30 +0.0 + 11 +4987.5 + 21 +21525.910045 + 31 +0.0 + 0 +LINE + 5 +49E + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21547.56068 + 30 +0.0 + 11 +4950.0 + 21 +21547.56068 + 31 +0.0 + 0 +LINE + 5 +49F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21569.211315 + 30 +0.0 + 11 +4987.5 + 21 +21569.211315 + 31 +0.0 + 0 +LINE + 5 +4A0 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21590.86195 + 30 +0.0 + 11 +4950.0 + 21 +21590.86195 + 31 +0.0 + 0 +LINE + 5 +4A1 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21612.512585 + 30 +0.0 + 11 +4987.5 + 21 +21612.512585 + 31 +0.0 + 0 +LINE + 5 +4A2 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21634.16322 + 30 +0.0 + 11 +4950.0 + 21 +21634.16322 + 31 +0.0 + 0 +LINE + 5 +4A3 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21655.813855 + 30 +0.0 + 11 +4987.5 + 21 +21655.813855 + 31 +0.0 + 0 +LINE + 5 +4A4 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21677.46449 + 30 +0.0 + 11 +4950.0 + 21 +21677.46449 + 31 +0.0 + 0 +LINE + 5 +4A5 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21699.115125 + 30 +0.0 + 11 +4987.5 + 21 +21699.115125 + 31 +0.0 + 0 +LINE + 5 +4A6 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21720.76576 + 30 +0.0 + 11 +4950.0 + 21 +21720.76576 + 31 +0.0 + 0 +LINE + 5 +4A7 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21742.416395 + 30 +0.0 + 11 +4987.5 + 21 +21742.416395 + 31 +0.0 + 0 +LINE + 5 +4A8 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21764.06703 + 30 +0.0 + 11 +4950.0 + 21 +21764.06703 + 31 +0.0 + 0 +LINE + 5 +4A9 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21785.717665 + 30 +0.0 + 11 +4987.5 + 21 +21785.717665 + 31 +0.0 + 0 +LINE + 5 +4AA + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21807.3683 + 30 +0.0 + 11 +4950.0 + 21 +21807.3683 + 31 +0.0 + 0 +LINE + 5 +4AB + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21829.018935 + 30 +0.0 + 11 +4987.5 + 21 +21829.018935 + 31 +0.0 + 0 +LINE + 5 +4AC + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21850.66957 + 30 +0.0 + 11 +4950.0 + 21 +21850.66957 + 31 +0.0 + 0 +LINE + 5 +4AD + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21872.320205 + 30 +0.0 + 11 +4987.5 + 21 +21872.320205 + 31 +0.0 + 0 +LINE + 5 +4AE + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21893.97084 + 30 +0.0 + 11 +4950.0 + 21 +21893.97084 + 31 +0.0 + 0 +LINE + 5 +4AF + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21915.621475 + 30 +0.0 + 11 +4987.5 + 21 +21915.621475 + 31 +0.0 + 0 +LINE + 5 +4B0 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21937.27211 + 30 +0.0 + 11 +4950.0 + 21 +21937.27211 + 31 +0.0 + 0 +LINE + 5 +4B1 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +21958.922745 + 30 +0.0 + 11 +4987.5 + 21 +21958.922745 + 31 +0.0 + 0 +LINE + 5 +4B2 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +21980.57338 + 30 +0.0 + 11 +4950.0 + 21 +21980.57338 + 31 +0.0 + 0 +LINE + 5 +4B3 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +22002.224015 + 30 +0.0 + 11 +4987.5 + 21 +22002.224015 + 31 +0.0 + 0 +LINE + 5 +4B4 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +22023.87465 + 30 +0.0 + 11 +4950.0 + 21 +22023.87465 + 31 +0.0 + 0 +LINE + 5 +4B5 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +22045.525285 + 30 +0.0 + 11 +4987.5 + 21 +22045.525285 + 31 +0.0 + 0 +LINE + 5 +4B6 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +22067.17592 + 30 +0.0 + 11 +4950.0 + 21 +22067.17592 + 31 +0.0 + 0 +LINE + 5 +4B7 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +22088.826555 + 30 +0.0 + 11 +4987.5 + 21 +22088.826555 + 31 +0.0 + 0 +LINE + 5 +4B8 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +22110.47719 + 30 +0.0 + 11 +4950.0 + 21 +22110.47719 + 31 +0.0 + 0 +LINE + 5 +4B9 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +22132.127825 + 30 +0.0 + 11 +4987.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4BA + 8 +0 + 62 + 0 + 10 +5037.5 + 20 +22132.127825 + 30 +0.0 + 11 +5062.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4BB + 8 +0 + 62 + 0 + 10 +5112.5 + 20 +22132.127825 + 30 +0.0 + 11 +5137.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4BC + 8 +0 + 62 + 0 + 10 +5187.5 + 20 +22132.127825 + 30 +0.0 + 11 +5212.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4BD + 8 +0 + 62 + 0 + 10 +5262.5 + 20 +22132.127825 + 30 +0.0 + 11 +5287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4BE + 8 +0 + 62 + 0 + 10 +5337.5 + 20 +22132.127825 + 30 +0.0 + 11 +5362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4BF + 8 +0 + 62 + 0 + 10 +5412.5 + 20 +22132.127825 + 30 +0.0 + 11 +5437.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C0 + 8 +0 + 62 + 0 + 10 +5487.5 + 20 +22132.127825 + 30 +0.0 + 11 +5512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C1 + 8 +0 + 62 + 0 + 10 +5562.5 + 20 +22132.127825 + 30 +0.0 + 11 +5587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C2 + 8 +0 + 62 + 0 + 10 +5637.5 + 20 +22132.127825 + 30 +0.0 + 11 +5662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C3 + 8 +0 + 62 + 0 + 10 +5712.5 + 20 +22132.127825 + 30 +0.0 + 11 +5737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C4 + 8 +0 + 62 + 0 + 10 +5787.5 + 20 +22132.127825 + 30 +0.0 + 11 +5812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C5 + 8 +0 + 62 + 0 + 10 +5862.5 + 20 +22132.127825 + 30 +0.0 + 11 +5887.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C6 + 8 +0 + 62 + 0 + 10 +5937.5 + 20 +22132.127825 + 30 +0.0 + 11 +5962.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C7 + 8 +0 + 62 + 0 + 10 +6012.5 + 20 +22132.127825 + 30 +0.0 + 11 +6037.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C8 + 8 +0 + 62 + 0 + 10 +6087.5 + 20 +22132.127825 + 30 +0.0 + 11 +6112.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4C9 + 8 +0 + 62 + 0 + 10 +6162.5 + 20 +22132.127825 + 30 +0.0 + 11 +6187.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4CA + 8 +0 + 62 + 0 + 10 +6237.5 + 20 +22132.127825 + 30 +0.0 + 11 +6262.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4CB + 8 +0 + 62 + 0 + 10 +6312.5 + 20 +22132.127825 + 30 +0.0 + 11 +6337.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4CC + 8 +0 + 62 + 0 + 10 +6387.5 + 20 +22132.127825 + 30 +0.0 + 11 +6412.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4CD + 8 +0 + 62 + 0 + 10 +6462.5 + 20 +22132.127825 + 30 +0.0 + 11 +6487.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4CE + 8 +0 + 62 + 0 + 10 +6537.5 + 20 +22132.127825 + 30 +0.0 + 11 +6562.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4CF + 8 +0 + 62 + 0 + 10 +6612.5 + 20 +22132.127825 + 30 +0.0 + 11 +6637.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4D0 + 8 +0 + 62 + 0 + 10 +6687.5 + 20 +22132.127825 + 30 +0.0 + 11 +6712.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +4D1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +22153.77846 + 30 +0.0 + 11 +4950.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D2 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +22153.77846 + 30 +0.0 + 11 +5025.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D3 + 8 +0 + 62 + 0 + 10 +5075.0 + 20 +22153.77846 + 30 +0.0 + 11 +5100.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D4 + 8 +0 + 62 + 0 + 10 +5150.0 + 20 +22153.77846 + 30 +0.0 + 11 +5175.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D5 + 8 +0 + 62 + 0 + 10 +5225.0 + 20 +22153.77846 + 30 +0.0 + 11 +5250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D6 + 8 +0 + 62 + 0 + 10 +5300.0 + 20 +22153.77846 + 30 +0.0 + 11 +5325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D7 + 8 +0 + 62 + 0 + 10 +5375.0 + 20 +22153.77846 + 30 +0.0 + 11 +5400.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D8 + 8 +0 + 62 + 0 + 10 +5450.0 + 20 +22153.77846 + 30 +0.0 + 11 +5475.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4D9 + 8 +0 + 62 + 0 + 10 +5525.0 + 20 +22153.77846 + 30 +0.0 + 11 +5550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4DA + 8 +0 + 62 + 0 + 10 +5600.0 + 20 +22153.77846 + 30 +0.0 + 11 +5625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4DB + 8 +0 + 62 + 0 + 10 +5675.0 + 20 +22153.77846 + 30 +0.0 + 11 +5700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4DC + 8 +0 + 62 + 0 + 10 +5750.0 + 20 +22153.77846 + 30 +0.0 + 11 +5775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4DD + 8 +0 + 62 + 0 + 10 +5825.0 + 20 +22153.77846 + 30 +0.0 + 11 +5850.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4DE + 8 +0 + 62 + 0 + 10 +5900.0 + 20 +22153.77846 + 30 +0.0 + 11 +5925.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4DF + 8 +0 + 62 + 0 + 10 +5975.0 + 20 +22153.77846 + 30 +0.0 + 11 +6000.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E0 + 8 +0 + 62 + 0 + 10 +6050.0 + 20 +22153.77846 + 30 +0.0 + 11 +6075.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E1 + 8 +0 + 62 + 0 + 10 +6125.0 + 20 +22153.77846 + 30 +0.0 + 11 +6150.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E2 + 8 +0 + 62 + 0 + 10 +6200.0 + 20 +22153.77846 + 30 +0.0 + 11 +6225.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E3 + 8 +0 + 62 + 0 + 10 +6275.0 + 20 +22153.77846 + 30 +0.0 + 11 +6300.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E4 + 8 +0 + 62 + 0 + 10 +6350.0 + 20 +22153.77846 + 30 +0.0 + 11 +6375.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E5 + 8 +0 + 62 + 0 + 10 +6425.0 + 20 +22153.77846 + 30 +0.0 + 11 +6450.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E6 + 8 +0 + 62 + 0 + 10 +6500.0 + 20 +22153.77846 + 30 +0.0 + 11 +6525.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E7 + 8 +0 + 62 + 0 + 10 +6575.0 + 20 +22153.77846 + 30 +0.0 + 11 +6600.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E8 + 8 +0 + 62 + 0 + 10 +6650.0 + 20 +22153.77846 + 30 +0.0 + 11 +6675.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4E9 + 8 +0 + 62 + 0 + 10 +6725.0 + 20 +22153.77846 + 30 +0.0 + 11 +6750.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +4EA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +22175.429095 + 30 +0.0 + 11 +4987.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4EB + 8 +0 + 62 + 0 + 10 +5037.5 + 20 +22175.429095 + 30 +0.0 + 11 +5062.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4EC + 8 +0 + 62 + 0 + 10 +5112.5 + 20 +22175.429095 + 30 +0.0 + 11 +5137.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4ED + 8 +0 + 62 + 0 + 10 +5187.5 + 20 +22175.429095 + 30 +0.0 + 11 +5212.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4EE + 8 +0 + 62 + 0 + 10 +5262.5 + 20 +22175.429095 + 30 +0.0 + 11 +5287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4EF + 8 +0 + 62 + 0 + 10 +5337.5 + 20 +22175.429095 + 30 +0.0 + 11 +5362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F0 + 8 +0 + 62 + 0 + 10 +5412.5 + 20 +22175.429095 + 30 +0.0 + 11 +5437.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F1 + 8 +0 + 62 + 0 + 10 +5487.5 + 20 +22175.429095 + 30 +0.0 + 11 +5512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F2 + 8 +0 + 62 + 0 + 10 +5562.5 + 20 +22175.429095 + 30 +0.0 + 11 +5587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F3 + 8 +0 + 62 + 0 + 10 +5637.5 + 20 +22175.429095 + 30 +0.0 + 11 +5662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F4 + 8 +0 + 62 + 0 + 10 +5712.5 + 20 +22175.429095 + 30 +0.0 + 11 +5737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F5 + 8 +0 + 62 + 0 + 10 +5787.5 + 20 +22175.429095 + 30 +0.0 + 11 +5812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F6 + 8 +0 + 62 + 0 + 10 +5862.5 + 20 +22175.429095 + 30 +0.0 + 11 +5887.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F7 + 8 +0 + 62 + 0 + 10 +5937.5 + 20 +22175.429095 + 30 +0.0 + 11 +5962.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F8 + 8 +0 + 62 + 0 + 10 +6012.5 + 20 +22175.429095 + 30 +0.0 + 11 +6037.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4F9 + 8 +0 + 62 + 0 + 10 +6087.5 + 20 +22175.429095 + 30 +0.0 + 11 +6112.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4FA + 8 +0 + 62 + 0 + 10 +6162.5 + 20 +22175.429095 + 30 +0.0 + 11 +6187.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4FB + 8 +0 + 62 + 0 + 10 +6237.5 + 20 +22175.429095 + 30 +0.0 + 11 +6262.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4FC + 8 +0 + 62 + 0 + 10 +6312.5 + 20 +22175.429095 + 30 +0.0 + 11 +6337.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4FD + 8 +0 + 62 + 0 + 10 +6387.5 + 20 +22175.429095 + 30 +0.0 + 11 +6412.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4FE + 8 +0 + 62 + 0 + 10 +6462.5 + 20 +22175.429095 + 30 +0.0 + 11 +6487.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +4FF + 8 +0 + 62 + 0 + 10 +6537.5 + 20 +22175.429095 + 30 +0.0 + 11 +6562.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +500 + 8 +0 + 62 + 0 + 10 +6612.5 + 20 +22175.429095 + 30 +0.0 + 11 +6637.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +501 + 8 +0 + 62 + 0 + 10 +6687.5 + 20 +22175.429095 + 30 +0.0 + 11 +6712.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +502 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20746.487185 + 30 +0.0 + 11 +4987.5 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +503 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20724.83655 + 30 +0.0 + 11 +4950.0 + 21 +20724.83655 + 31 +0.0 + 0 +LINE + 5 +504 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20703.185915 + 30 +0.0 + 11 +4987.5 + 21 +20703.185915 + 31 +0.0 + 0 +LINE + 5 +505 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20681.53528 + 30 +0.0 + 11 +4950.0 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +506 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20659.884645 + 30 +0.0 + 11 +4987.5 + 21 +20659.884645 + 31 +0.0 + 0 +LINE + 5 +507 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20638.23401 + 30 +0.0 + 11 +4950.0 + 21 +20638.23401 + 31 +0.0 + 0 +LINE + 5 +508 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20616.583375 + 30 +0.0 + 11 +4987.5 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +509 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20594.93274 + 30 +0.0 + 11 +4950.0 + 21 +20594.93274 + 31 +0.0 + 0 +LINE + 5 +50A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20573.282105 + 30 +0.0 + 11 +4987.5 + 21 +20573.282105 + 31 +0.0 + 0 +LINE + 5 +50B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20551.63147 + 30 +0.0 + 11 +4950.0 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +50C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20529.980835 + 30 +0.0 + 11 +4987.5 + 21 +20529.980835 + 31 +0.0 + 0 +LINE + 5 +50D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20508.3302 + 30 +0.0 + 11 +4950.0 + 21 +20508.3302 + 31 +0.0 + 0 +LINE + 5 +50E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20486.679565 + 30 +0.0 + 11 +4987.5 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +50F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20465.02893 + 30 +0.0 + 11 +4950.0 + 21 +20465.02893 + 31 +0.0 + 0 +LINE + 5 +510 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20443.378295 + 30 +0.0 + 11 +4987.5 + 21 +20443.378295 + 31 +0.0 + 0 +LINE + 5 +511 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20421.72766 + 30 +0.0 + 11 +4950.0 + 21 +20421.72766 + 31 +0.0 + 0 +LINE + 5 +512 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20400.077025 + 30 +0.0 + 11 +4987.5 + 21 +20400.077025 + 31 +0.0 + 0 +LINE + 5 +513 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20378.42639 + 30 +0.0 + 11 +4950.0 + 21 +20378.42639 + 31 +0.0 + 0 +LINE + 5 +514 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20356.775755 + 30 +0.0 + 11 +4987.5 + 21 +20356.775755 + 31 +0.0 + 0 +LINE + 5 +515 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20335.12512 + 30 +0.0 + 11 +4950.0 + 21 +20335.12512 + 31 +0.0 + 0 +LINE + 5 +516 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20313.474485 + 30 +0.0 + 11 +4987.5 + 21 +20313.474485 + 31 +0.0 + 0 +LINE + 5 +517 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20291.82385 + 30 +0.0 + 11 +4950.0 + 21 +20291.82385 + 31 +0.0 + 0 +LINE + 5 +518 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20270.173215 + 30 +0.0 + 11 +4987.5 + 21 +20270.173215 + 31 +0.0 + 0 +LINE + 5 +519 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20248.52258 + 30 +0.0 + 11 +4950.0 + 21 +20248.52258 + 31 +0.0 + 0 +LINE + 5 +51A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20226.871945 + 30 +0.0 + 11 +4987.5 + 21 +20226.871945 + 31 +0.0 + 0 +LINE + 5 +51B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20205.22131 + 30 +0.0 + 11 +4950.0 + 21 +20205.22131 + 31 +0.0 + 0 +LINE + 5 +51C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20183.570675 + 30 +0.0 + 11 +4987.5 + 21 +20183.570675 + 31 +0.0 + 0 +LINE + 5 +51D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20161.92004 + 30 +0.0 + 11 +4950.0 + 21 +20161.92004 + 31 +0.0 + 0 +LINE + 5 +51E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20140.269405 + 30 +0.0 + 11 +4987.5 + 21 +20140.269405 + 31 +0.0 + 0 +LINE + 5 +51F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20118.61877 + 30 +0.0 + 11 +4950.0 + 21 +20118.61877 + 31 +0.0 + 0 +LINE + 5 +520 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20096.968135 + 30 +0.0 + 11 +4987.5 + 21 +20096.968135 + 31 +0.0 + 0 +LINE + 5 +521 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20075.3175 + 30 +0.0 + 11 +4950.0 + 21 +20075.3175 + 31 +0.0 + 0 +LINE + 5 +522 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20053.666865 + 30 +0.0 + 11 +4987.5 + 21 +20053.666865 + 31 +0.0 + 0 +LINE + 5 +523 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +20032.01623 + 30 +0.0 + 11 +4950.0 + 21 +20032.01623 + 31 +0.0 + 0 +LINE + 5 +524 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +20010.365595 + 30 +0.0 + 11 +4987.5 + 21 +20010.365595 + 31 +0.0 + 0 +LINE + 5 +525 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19988.71496 + 30 +0.0 + 11 +4950.0 + 21 +19988.71496 + 31 +0.0 + 0 +LINE + 5 +526 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19967.064325 + 30 +0.0 + 11 +4987.5 + 21 +19967.064325 + 31 +0.0 + 0 +LINE + 5 +527 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19945.41369 + 30 +0.0 + 11 +4950.0 + 21 +19945.41369 + 31 +0.0 + 0 +LINE + 5 +528 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19923.763055 + 30 +0.0 + 11 +4987.5 + 21 +19923.763055 + 31 +0.0 + 0 +LINE + 5 +529 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19902.11242 + 30 +0.0 + 11 +4950.0 + 21 +19902.11242 + 31 +0.0 + 0 +LINE + 5 +52A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19880.461785 + 30 +0.0 + 11 +4987.5 + 21 +19880.461785 + 31 +0.0 + 0 +LINE + 5 +52B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19858.81115 + 30 +0.0 + 11 +4950.0 + 21 +19858.81115 + 31 +0.0 + 0 +LINE + 5 +52C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19837.160515 + 30 +0.0 + 11 +4987.5 + 21 +19837.160515 + 31 +0.0 + 0 +LINE + 5 +52D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19815.50988 + 30 +0.0 + 11 +4950.0 + 21 +19815.50988 + 31 +0.0 + 0 +LINE + 5 +52E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19793.859245 + 30 +0.0 + 11 +4987.5 + 21 +19793.859245 + 31 +0.0 + 0 +LINE + 5 +52F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19772.20861 + 30 +0.0 + 11 +4950.0 + 21 +19772.20861 + 31 +0.0 + 0 +LINE + 5 +530 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19750.557975 + 30 +0.0 + 11 +4987.5 + 21 +19750.557975 + 31 +0.0 + 0 +LINE + 5 +531 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19728.90734 + 30 +0.0 + 11 +4950.0 + 21 +19728.90734 + 31 +0.0 + 0 +LINE + 5 +532 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19707.256705 + 30 +0.0 + 11 +4987.5 + 21 +19707.256705 + 31 +0.0 + 0 +LINE + 5 +533 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19685.60607 + 30 +0.0 + 11 +4950.0 + 21 +19685.60607 + 31 +0.0 + 0 +LINE + 5 +534 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19663.955435 + 30 +0.0 + 11 +4987.5 + 21 +19663.955435 + 31 +0.0 + 0 +LINE + 5 +535 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19642.3048 + 30 +0.0 + 11 +4950.0 + 21 +19642.3048 + 31 +0.0 + 0 +LINE + 5 +536 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19620.654165 + 30 +0.0 + 11 +4987.5 + 21 +19620.654165 + 31 +0.0 + 0 +LINE + 5 +537 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19599.00353 + 30 +0.0 + 11 +4950.0 + 21 +19599.00353 + 31 +0.0 + 0 +LINE + 5 +538 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19577.352895 + 30 +0.0 + 11 +4987.5 + 21 +19577.352895 + 31 +0.0 + 0 +LINE + 5 +539 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19555.70226 + 30 +0.0 + 11 +4950.0 + 21 +19555.70226 + 31 +0.0 + 0 +LINE + 5 +53A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19534.051625 + 30 +0.0 + 11 +4987.5 + 21 +19534.051625 + 31 +0.0 + 0 +LINE + 5 +53B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19512.40099 + 30 +0.0 + 11 +4950.0 + 21 +19512.40099 + 31 +0.0 + 0 +LINE + 5 +53C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19490.750355 + 30 +0.0 + 11 +4987.5 + 21 +19490.750355 + 31 +0.0 + 0 +LINE + 5 +53D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19469.09972 + 30 +0.0 + 11 +4950.0 + 21 +19469.09972 + 31 +0.0 + 0 +LINE + 5 +53E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19447.449085 + 30 +0.0 + 11 +4987.5 + 21 +19447.449085 + 31 +0.0 + 0 +LINE + 5 +53F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19425.79845 + 30 +0.0 + 11 +4950.0 + 21 +19425.79845 + 31 +0.0 + 0 +LINE + 5 +540 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +19404.147815 + 30 +0.0 + 11 +4987.5 + 21 +19404.147815 + 31 +0.0 + 0 +LINE + 5 +541 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +19382.49718 + 30 +0.0 + 11 +4950.0 + 21 +19382.49718 + 31 +0.0 + 0 +LINE + 5 +542 + 8 +0 + 62 + 0 + 10 +5037.499976 + 20 +22132.127867 + 30 +0.0 + 11 +5024.999976 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +543 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +22153.778502 + 30 +0.0 + 11 +4987.499976 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +544 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +22110.477232 + 30 +0.0 + 11 +4987.499976 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +545 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +22175.429137 + 30 +0.0 + 11 +4951.200733 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +546 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +22067.175962 + 30 +0.0 + 11 +4987.499976 + 21 +22088.826597 + 31 +0.0 + 0 +LINE + 5 +547 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +22132.127867 + 30 +0.0 + 11 +4949.999976 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +548 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +22023.874692 + 30 +0.0 + 11 +4987.499976 + 21 +22045.525327 + 31 +0.0 + 0 +LINE + 5 +549 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +22088.826597 + 30 +0.0 + 11 +4949.999976 + 21 +22110.477232 + 31 +0.0 + 0 +LINE + 5 +54A + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +22153.778502 + 30 +0.0 + 11 +4920.0 + 21 +22162.438715 + 31 +0.0 + 0 +LINE + 5 +54B + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21980.573422 + 30 +0.0 + 11 +4987.499976 + 21 +22002.224057 + 31 +0.0 + 0 +LINE + 5 +54C + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +22045.525327 + 30 +0.0 + 11 +4949.999976 + 21 +22067.175962 + 31 +0.0 + 0 +LINE + 5 +54D + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +22110.477232 + 30 +0.0 + 11 +4920.0 + 21 +22119.137445 + 31 +0.0 + 0 +LINE + 5 +54E + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21937.272152 + 30 +0.0 + 11 +4987.499976 + 21 +21958.922787 + 31 +0.0 + 0 +LINE + 5 +54F + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +22002.224057 + 30 +0.0 + 11 +4949.999976 + 21 +22023.874692 + 31 +0.0 + 0 +LINE + 5 +550 + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +22067.175962 + 30 +0.0 + 11 +4920.0 + 21 +22075.836175 + 31 +0.0 + 0 +LINE + 5 +551 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21893.970881 + 30 +0.0 + 11 +4987.499976 + 21 +21915.621517 + 31 +0.0 + 0 +LINE + 5 +552 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +21958.922787 + 30 +0.0 + 11 +4949.999976 + 21 +21980.573422 + 31 +0.0 + 0 +LINE + 5 +553 + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +22023.874692 + 30 +0.0 + 11 +4920.0 + 21 +22032.534905 + 31 +0.0 + 0 +LINE + 5 +554 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21850.669611 + 30 +0.0 + 11 +4987.499976 + 21 +21872.320246 + 31 +0.0 + 0 +LINE + 5 +555 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +21915.621517 + 30 +0.0 + 11 +4949.999976 + 21 +21937.272152 + 31 +0.0 + 0 +LINE + 5 +556 + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +21980.573422 + 30 +0.0 + 11 +4920.0 + 21 +21989.233635 + 31 +0.0 + 0 +LINE + 5 +557 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21807.368341 + 30 +0.0 + 11 +4987.499976 + 21 +21829.018976 + 31 +0.0 + 0 +LINE + 5 +558 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +21872.320246 + 30 +0.0 + 11 +4949.999976 + 21 +21893.970882 + 31 +0.0 + 0 +LINE + 5 +559 + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +21937.272152 + 30 +0.0 + 11 +4920.0 + 21 +21945.932365 + 31 +0.0 + 0 +LINE + 5 +55A + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21764.067071 + 30 +0.0 + 11 +4987.499976 + 21 +21785.717706 + 31 +0.0 + 0 +LINE + 5 +55B + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +21829.018976 + 30 +0.0 + 11 +4949.999976 + 21 +21850.669611 + 31 +0.0 + 0 +LINE + 5 +55C + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +21893.970882 + 30 +0.0 + 11 +4920.0 + 21 +21902.631095 + 31 +0.0 + 0 +LINE + 5 +55D + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21720.765801 + 30 +0.0 + 11 +4987.499976 + 21 +21742.416436 + 31 +0.0 + 0 +LINE + 5 +55E + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +21785.717706 + 30 +0.0 + 11 +4949.999976 + 21 +21807.368341 + 31 +0.0 + 0 +LINE + 5 +55F + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +21850.669611 + 30 +0.0 + 11 +4920.0 + 21 +21859.329825 + 31 +0.0 + 0 +LINE + 5 +560 + 8 +0 + 62 + 0 + 10 +4999.999976 + 20 +21677.464531 + 30 +0.0 + 11 +4987.499976 + 21 +21699.115166 + 31 +0.0 + 0 +LINE + 5 +561 + 8 +0 + 62 + 0 + 10 +4962.499976 + 20 +21742.416436 + 30 +0.0 + 11 +4949.999976 + 21 +21764.067071 + 31 +0.0 + 0 +LINE + 5 +562 + 8 +0 + 62 + 0 + 10 +4924.999976 + 20 +21807.368341 + 30 +0.0 + 11 +4920.0 + 21 +21816.028555 + 31 +0.0 + 0 +LINE + 5 +563 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21634.163261 + 30 +0.0 + 11 +4987.499977 + 21 +21655.813896 + 31 +0.0 + 0 +LINE + 5 +564 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21699.115166 + 30 +0.0 + 11 +4949.999977 + 21 +21720.765801 + 31 +0.0 + 0 +LINE + 5 +565 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21764.067071 + 30 +0.0 + 11 +4920.0 + 21 +21772.727285 + 31 +0.0 + 0 +LINE + 5 +566 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21590.86199 + 30 +0.0 + 11 +4987.499977 + 21 +21612.512626 + 31 +0.0 + 0 +LINE + 5 +567 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21655.813896 + 30 +0.0 + 11 +4949.999977 + 21 +21677.464531 + 31 +0.0 + 0 +LINE + 5 +568 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21720.765801 + 30 +0.0 + 11 +4920.0 + 21 +21729.426015 + 31 +0.0 + 0 +LINE + 5 +569 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21547.56072 + 30 +0.0 + 11 +4987.499977 + 21 +21569.211355 + 31 +0.0 + 0 +LINE + 5 +56A + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21612.512626 + 30 +0.0 + 11 +4949.999977 + 21 +21634.163261 + 31 +0.0 + 0 +LINE + 5 +56B + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21677.464531 + 30 +0.0 + 11 +4920.0 + 21 +21686.124745 + 31 +0.0 + 0 +LINE + 5 +56C + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21504.25945 + 30 +0.0 + 11 +4987.499977 + 21 +21525.910085 + 31 +0.0 + 0 +LINE + 5 +56D + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21569.211355 + 30 +0.0 + 11 +4949.999977 + 21 +21590.861991 + 31 +0.0 + 0 +LINE + 5 +56E + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21634.163261 + 30 +0.0 + 11 +4920.0 + 21 +21642.823475 + 31 +0.0 + 0 +LINE + 5 +56F + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21460.95818 + 30 +0.0 + 11 +4987.499977 + 21 +21482.608815 + 31 +0.0 + 0 +LINE + 5 +570 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21525.910085 + 30 +0.0 + 11 +4949.999977 + 21 +21547.56072 + 31 +0.0 + 0 +LINE + 5 +571 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21590.861991 + 30 +0.0 + 11 +4920.0 + 21 +21599.522205 + 31 +0.0 + 0 +LINE + 5 +572 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21417.65691 + 30 +0.0 + 11 +4987.499977 + 21 +21439.307545 + 31 +0.0 + 0 +LINE + 5 +573 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21482.608815 + 30 +0.0 + 11 +4949.999977 + 21 +21504.25945 + 31 +0.0 + 0 +LINE + 5 +574 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21547.56072 + 30 +0.0 + 11 +4920.0 + 21 +21556.220935 + 31 +0.0 + 0 +LINE + 5 +575 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21374.35564 + 30 +0.0 + 11 +4987.499977 + 21 +21396.006275 + 31 +0.0 + 0 +LINE + 5 +576 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21439.307545 + 30 +0.0 + 11 +4949.999977 + 21 +21460.95818 + 31 +0.0 + 0 +LINE + 5 +577 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21504.25945 + 30 +0.0 + 11 +4920.0 + 21 +21512.919665 + 31 +0.0 + 0 +LINE + 5 +578 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21331.05437 + 30 +0.0 + 11 +4987.499977 + 21 +21352.705005 + 31 +0.0 + 0 +LINE + 5 +579 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21396.006275 + 30 +0.0 + 11 +4949.999977 + 21 +21417.65691 + 31 +0.0 + 0 +LINE + 5 +57A + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21460.95818 + 30 +0.0 + 11 +4920.0 + 21 +21469.618395 + 31 +0.0 + 0 +LINE + 5 +57B + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21287.753099 + 30 +0.0 + 11 +4987.499977 + 21 +21309.403735 + 31 +0.0 + 0 +LINE + 5 +57C + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21352.705005 + 30 +0.0 + 11 +4949.999977 + 21 +21374.35564 + 31 +0.0 + 0 +LINE + 5 +57D + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21417.65691 + 30 +0.0 + 11 +4920.0 + 21 +21426.317125 + 31 +0.0 + 0 +LINE + 5 +57E + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21244.451829 + 30 +0.0 + 11 +4987.499977 + 21 +21266.102464 + 31 +0.0 + 0 +LINE + 5 +57F + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21309.403735 + 30 +0.0 + 11 +4949.999977 + 21 +21331.05437 + 31 +0.0 + 0 +LINE + 5 +580 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21374.35564 + 30 +0.0 + 11 +4920.0 + 21 +21383.015855 + 31 +0.0 + 0 +LINE + 5 +581 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21201.150559 + 30 +0.0 + 11 +4987.499977 + 21 +21222.801194 + 31 +0.0 + 0 +LINE + 5 +582 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21266.102464 + 30 +0.0 + 11 +4949.999977 + 21 +21287.7531 + 31 +0.0 + 0 +LINE + 5 +583 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21331.05437 + 30 +0.0 + 11 +4920.0 + 21 +21339.714585 + 31 +0.0 + 0 +LINE + 5 +584 + 8 +0 + 62 + 0 + 10 +4999.999977 + 20 +21157.849289 + 30 +0.0 + 11 +4987.499977 + 21 +21179.499924 + 31 +0.0 + 0 +LINE + 5 +585 + 8 +0 + 62 + 0 + 10 +4962.499977 + 20 +21222.801194 + 30 +0.0 + 11 +4949.999977 + 21 +21244.451829 + 31 +0.0 + 0 +LINE + 5 +586 + 8 +0 + 62 + 0 + 10 +4924.999977 + 20 +21287.7531 + 30 +0.0 + 11 +4920.0 + 21 +21296.413315 + 31 +0.0 + 0 +LINE + 5 +587 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +21114.548019 + 30 +0.0 + 11 +4987.499978 + 21 +21136.198654 + 31 +0.0 + 0 +LINE + 5 +588 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +21179.499924 + 30 +0.0 + 11 +4949.999978 + 21 +21201.150559 + 31 +0.0 + 0 +LINE + 5 +589 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +21244.451829 + 30 +0.0 + 11 +4920.0 + 21 +21253.112045 + 31 +0.0 + 0 +LINE + 5 +58A + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +21071.246749 + 30 +0.0 + 11 +4987.499978 + 21 +21092.897384 + 31 +0.0 + 0 +LINE + 5 +58B + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +21136.198654 + 30 +0.0 + 11 +4949.999978 + 21 +21157.849289 + 31 +0.0 + 0 +LINE + 5 +58C + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +21201.150559 + 30 +0.0 + 11 +4920.0 + 21 +21209.810775 + 31 +0.0 + 0 +LINE + 5 +58D + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +21027.945479 + 30 +0.0 + 11 +4987.499978 + 21 +21049.596114 + 31 +0.0 + 0 +LINE + 5 +58E + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +21092.897384 + 30 +0.0 + 11 +4949.999978 + 21 +21114.548019 + 31 +0.0 + 0 +LINE + 5 +58F + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +21157.849289 + 30 +0.0 + 11 +4920.0 + 21 +21166.509505 + 31 +0.0 + 0 +LINE + 5 +590 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20984.644208 + 30 +0.0 + 11 +4987.499978 + 21 +21006.294844 + 31 +0.0 + 0 +LINE + 5 +591 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +21049.596114 + 30 +0.0 + 11 +4949.999978 + 21 +21071.246749 + 31 +0.0 + 0 +LINE + 5 +592 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +21114.548019 + 30 +0.0 + 11 +4920.0 + 21 +21123.208235 + 31 +0.0 + 0 +LINE + 5 +593 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20941.342938 + 30 +0.0 + 11 +4987.499978 + 21 +20962.993573 + 31 +0.0 + 0 +LINE + 5 +594 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +21006.294844 + 30 +0.0 + 11 +4949.999978 + 21 +21027.945479 + 31 +0.0 + 0 +LINE + 5 +595 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +21071.246749 + 30 +0.0 + 11 +4920.0 + 21 +21079.906965 + 31 +0.0 + 0 +LINE + 5 +596 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20898.041668 + 30 +0.0 + 11 +4987.499978 + 21 +20919.692303 + 31 +0.0 + 0 +LINE + 5 +597 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20962.993573 + 30 +0.0 + 11 +4949.999978 + 21 +20984.644209 + 31 +0.0 + 0 +LINE + 5 +598 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +21027.945479 + 30 +0.0 + 11 +4920.0 + 21 +21036.605695 + 31 +0.0 + 0 +LINE + 5 +599 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20854.740398 + 30 +0.0 + 11 +4987.499978 + 21 +20876.391033 + 31 +0.0 + 0 +LINE + 5 +59A + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20919.692303 + 30 +0.0 + 11 +4949.999978 + 21 +20941.342938 + 31 +0.0 + 0 +LINE + 5 +59B + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +20984.644209 + 30 +0.0 + 11 +4920.0 + 21 +20993.304425 + 31 +0.0 + 0 +LINE + 5 +59C + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20811.439128 + 30 +0.0 + 11 +4987.499978 + 21 +20833.089763 + 31 +0.0 + 0 +LINE + 5 +59D + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20876.391033 + 30 +0.0 + 11 +4949.999978 + 21 +20898.041668 + 31 +0.0 + 0 +LINE + 5 +59E + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +20941.342938 + 30 +0.0 + 11 +4920.0 + 21 +20950.003155 + 31 +0.0 + 0 +LINE + 5 +59F + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20768.137858 + 30 +0.0 + 11 +4987.499978 + 21 +20789.788493 + 31 +0.0 + 0 +LINE + 5 +5A0 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20833.089763 + 30 +0.0 + 11 +4949.999978 + 21 +20854.740398 + 31 +0.0 + 0 +LINE + 5 +5A1 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +20898.041668 + 30 +0.0 + 11 +4920.0 + 21 +20906.701885 + 31 +0.0 + 0 +LINE + 5 +5A2 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20724.836588 + 30 +0.0 + 11 +4987.499978 + 21 +20746.487223 + 31 +0.0 + 0 +LINE + 5 +5A3 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20789.788493 + 30 +0.0 + 11 +4949.999978 + 21 +20811.439128 + 31 +0.0 + 0 +LINE + 5 +5A4 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +20854.740398 + 30 +0.0 + 11 +4920.0 + 21 +20863.400615 + 31 +0.0 + 0 +LINE + 5 +5A5 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20681.535317 + 30 +0.0 + 11 +4987.499978 + 21 +20703.185953 + 31 +0.0 + 0 +LINE + 5 +5A6 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20746.487223 + 30 +0.0 + 11 +4949.999978 + 21 +20768.137858 + 31 +0.0 + 0 +LINE + 5 +5A7 + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +20811.439128 + 30 +0.0 + 11 +4920.0 + 21 +20820.099345 + 31 +0.0 + 0 +LINE + 5 +5A8 + 8 +0 + 62 + 0 + 10 +4999.999978 + 20 +20638.234047 + 30 +0.0 + 11 +4987.499978 + 21 +20659.884682 + 31 +0.0 + 0 +LINE + 5 +5A9 + 8 +0 + 62 + 0 + 10 +4962.499978 + 20 +20703.185953 + 30 +0.0 + 11 +4949.999978 + 21 +20724.836588 + 31 +0.0 + 0 +LINE + 5 +5AA + 8 +0 + 62 + 0 + 10 +4924.999978 + 20 +20768.137858 + 30 +0.0 + 11 +4920.0 + 21 +20776.798075 + 31 +0.0 + 0 +LINE + 5 +5AB + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20594.932777 + 30 +0.0 + 11 +4987.499979 + 21 +20616.583412 + 31 +0.0 + 0 +LINE + 5 +5AC + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20659.884682 + 30 +0.0 + 11 +4949.999979 + 21 +20681.535318 + 31 +0.0 + 0 +LINE + 5 +5AD + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20724.836588 + 30 +0.0 + 11 +4920.0 + 21 +20733.496805 + 31 +0.0 + 0 +LINE + 5 +5AE + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20551.631507 + 30 +0.0 + 11 +4987.499979 + 21 +20573.282142 + 31 +0.0 + 0 +LINE + 5 +5AF + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20616.583412 + 30 +0.0 + 11 +4949.999979 + 21 +20638.234047 + 31 +0.0 + 0 +LINE + 5 +5B0 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20681.535318 + 30 +0.0 + 11 +4920.0 + 21 +20690.195535 + 31 +0.0 + 0 +LINE + 5 +5B1 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20508.330237 + 30 +0.0 + 11 +4987.499979 + 21 +20529.980872 + 31 +0.0 + 0 +LINE + 5 +5B2 + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20573.282142 + 30 +0.0 + 11 +4949.999979 + 21 +20594.932777 + 31 +0.0 + 0 +LINE + 5 +5B3 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20638.234047 + 30 +0.0 + 11 +4920.0 + 21 +20646.894265 + 31 +0.0 + 0 +LINE + 5 +5B4 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20465.028967 + 30 +0.0 + 11 +4987.499979 + 21 +20486.679602 + 31 +0.0 + 0 +LINE + 5 +5B5 + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20529.980872 + 30 +0.0 + 11 +4949.999979 + 21 +20551.631507 + 31 +0.0 + 0 +LINE + 5 +5B6 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20594.932777 + 30 +0.0 + 11 +4920.0 + 21 +20603.592995 + 31 +0.0 + 0 +LINE + 5 +5B7 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20421.727697 + 30 +0.0 + 11 +4987.499979 + 21 +20443.378332 + 31 +0.0 + 0 +LINE + 5 +5B8 + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20486.679602 + 30 +0.0 + 11 +4949.999979 + 21 +20508.330237 + 31 +0.0 + 0 +LINE + 5 +5B9 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20551.631507 + 30 +0.0 + 11 +4920.0 + 21 +20560.291725 + 31 +0.0 + 0 +LINE + 5 +5BA + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20378.426426 + 30 +0.0 + 11 +4987.499979 + 21 +20400.077062 + 31 +0.0 + 0 +LINE + 5 +5BB + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20443.378332 + 30 +0.0 + 11 +4949.999979 + 21 +20465.028967 + 31 +0.0 + 0 +LINE + 5 +5BC + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20508.330237 + 30 +0.0 + 11 +4920.0 + 21 +20516.990455 + 31 +0.0 + 0 +LINE + 5 +5BD + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20335.125156 + 30 +0.0 + 11 +4987.499979 + 21 +20356.775791 + 31 +0.0 + 0 +LINE + 5 +5BE + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20400.077062 + 30 +0.0 + 11 +4949.999979 + 21 +20421.727697 + 31 +0.0 + 0 +LINE + 5 +5BF + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20465.028967 + 30 +0.0 + 11 +4920.0 + 21 +20473.689185 + 31 +0.0 + 0 +LINE + 5 +5C0 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20291.823886 + 30 +0.0 + 11 +4987.499979 + 21 +20313.474521 + 31 +0.0 + 0 +LINE + 5 +5C1 + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20356.775791 + 30 +0.0 + 11 +4949.999979 + 21 +20378.426427 + 31 +0.0 + 0 +LINE + 5 +5C2 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20421.727697 + 30 +0.0 + 11 +4920.0 + 21 +20430.387915 + 31 +0.0 + 0 +LINE + 5 +5C3 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20248.522616 + 30 +0.0 + 11 +4987.499979 + 21 +20270.173251 + 31 +0.0 + 0 +LINE + 5 +5C4 + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20313.474521 + 30 +0.0 + 11 +4949.999979 + 21 +20335.125156 + 31 +0.0 + 0 +LINE + 5 +5C5 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20378.426427 + 30 +0.0 + 11 +4920.0 + 21 +20387.086645 + 31 +0.0 + 0 +LINE + 5 +5C6 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20205.221346 + 30 +0.0 + 11 +4987.499979 + 21 +20226.871981 + 31 +0.0 + 0 +LINE + 5 +5C7 + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20270.173251 + 30 +0.0 + 11 +4949.999979 + 21 +20291.823886 + 31 +0.0 + 0 +LINE + 5 +5C8 + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20335.125156 + 30 +0.0 + 11 +4920.0 + 21 +20343.785375 + 31 +0.0 + 0 +LINE + 5 +5C9 + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20161.920076 + 30 +0.0 + 11 +4987.499979 + 21 +20183.570711 + 31 +0.0 + 0 +LINE + 5 +5CA + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20226.871981 + 30 +0.0 + 11 +4949.999979 + 21 +20248.522616 + 31 +0.0 + 0 +LINE + 5 +5CB + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20291.823886 + 30 +0.0 + 11 +4920.0 + 21 +20300.484105 + 31 +0.0 + 0 +LINE + 5 +5CC + 8 +0 + 62 + 0 + 10 +4999.999979 + 20 +20118.618806 + 30 +0.0 + 11 +4987.499979 + 21 +20140.269441 + 31 +0.0 + 0 +LINE + 5 +5CD + 8 +0 + 62 + 0 + 10 +4962.499979 + 20 +20183.570711 + 30 +0.0 + 11 +4949.999979 + 21 +20205.221346 + 31 +0.0 + 0 +LINE + 5 +5CE + 8 +0 + 62 + 0 + 10 +4924.999979 + 20 +20248.522616 + 30 +0.0 + 11 +4920.0 + 21 +20257.182835 + 31 +0.0 + 0 +LINE + 5 +5CF + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +20075.317535 + 30 +0.0 + 11 +4987.49998 + 21 +20096.968171 + 31 +0.0 + 0 +LINE + 5 +5D0 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +20140.269441 + 30 +0.0 + 11 +4949.99998 + 21 +20161.920076 + 31 +0.0 + 0 +LINE + 5 +5D1 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +20205.221346 + 30 +0.0 + 11 +4920.0 + 21 +20213.881565 + 31 +0.0 + 0 +LINE + 5 +5D2 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +20032.016265 + 30 +0.0 + 11 +4987.49998 + 21 +20053.6669 + 31 +0.0 + 0 +LINE + 5 +5D3 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +20096.968171 + 30 +0.0 + 11 +4949.99998 + 21 +20118.618806 + 31 +0.0 + 0 +LINE + 5 +5D4 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +20161.920076 + 30 +0.0 + 11 +4920.0 + 21 +20170.580295 + 31 +0.0 + 0 +LINE + 5 +5D5 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19988.714995 + 30 +0.0 + 11 +4987.49998 + 21 +20010.36563 + 31 +0.0 + 0 +LINE + 5 +5D6 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +20053.6669 + 30 +0.0 + 11 +4949.99998 + 21 +20075.317536 + 31 +0.0 + 0 +LINE + 5 +5D7 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +20118.618806 + 30 +0.0 + 11 +4920.0 + 21 +20127.279025 + 31 +0.0 + 0 +LINE + 5 +5D8 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19945.413725 + 30 +0.0 + 11 +4987.49998 + 21 +19967.06436 + 31 +0.0 + 0 +LINE + 5 +5D9 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +20010.36563 + 30 +0.0 + 11 +4949.99998 + 21 +20032.016265 + 31 +0.0 + 0 +LINE + 5 +5DA + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +20075.317536 + 30 +0.0 + 11 +4920.0 + 21 +20083.977755 + 31 +0.0 + 0 +LINE + 5 +5DB + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19902.112455 + 30 +0.0 + 11 +4987.49998 + 21 +19923.76309 + 31 +0.0 + 0 +LINE + 5 +5DC + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19967.06436 + 30 +0.0 + 11 +4949.99998 + 21 +19988.714995 + 31 +0.0 + 0 +LINE + 5 +5DD + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +20032.016265 + 30 +0.0 + 11 +4920.0 + 21 +20040.676485 + 31 +0.0 + 0 +LINE + 5 +5DE + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19858.811185 + 30 +0.0 + 11 +4987.49998 + 21 +19880.46182 + 31 +0.0 + 0 +LINE + 5 +5DF + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19923.76309 + 30 +0.0 + 11 +4949.99998 + 21 +19945.413725 + 31 +0.0 + 0 +LINE + 5 +5E0 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19988.714995 + 30 +0.0 + 11 +4920.0 + 21 +19997.375215 + 31 +0.0 + 0 +LINE + 5 +5E1 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19815.509915 + 30 +0.0 + 11 +4987.49998 + 21 +19837.16055 + 31 +0.0 + 0 +LINE + 5 +5E2 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19880.46182 + 30 +0.0 + 11 +4949.99998 + 21 +19902.112455 + 31 +0.0 + 0 +LINE + 5 +5E3 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19945.413725 + 30 +0.0 + 11 +4920.0 + 21 +19954.073945 + 31 +0.0 + 0 +LINE + 5 +5E4 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19772.208644 + 30 +0.0 + 11 +4987.49998 + 21 +19793.85928 + 31 +0.0 + 0 +LINE + 5 +5E5 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19837.16055 + 30 +0.0 + 11 +4949.99998 + 21 +19858.811185 + 31 +0.0 + 0 +LINE + 5 +5E6 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19902.112455 + 30 +0.0 + 11 +4920.0 + 21 +19910.772675 + 31 +0.0 + 0 +LINE + 5 +5E7 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19728.907374 + 30 +0.0 + 11 +4987.49998 + 21 +19750.558009 + 31 +0.0 + 0 +LINE + 5 +5E8 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19793.85928 + 30 +0.0 + 11 +4949.99998 + 21 +19815.509915 + 31 +0.0 + 0 +LINE + 5 +5E9 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19858.811185 + 30 +0.0 + 11 +4920.0 + 21 +19867.471405 + 31 +0.0 + 0 +LINE + 5 +5EA + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19685.606104 + 30 +0.0 + 11 +4987.49998 + 21 +19707.256739 + 31 +0.0 + 0 +LINE + 5 +5EB + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19750.558009 + 30 +0.0 + 11 +4949.99998 + 21 +19772.208645 + 31 +0.0 + 0 +LINE + 5 +5EC + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19815.509915 + 30 +0.0 + 11 +4920.0 + 21 +19824.170135 + 31 +0.0 + 0 +LINE + 5 +5ED + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19642.304834 + 30 +0.0 + 11 +4987.49998 + 21 +19663.955469 + 31 +0.0 + 0 +LINE + 5 +5EE + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19707.256739 + 30 +0.0 + 11 +4949.99998 + 21 +19728.907374 + 31 +0.0 + 0 +LINE + 5 +5EF + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19772.208645 + 30 +0.0 + 11 +4920.0 + 21 +19780.868865 + 31 +0.0 + 0 +LINE + 5 +5F0 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19599.003564 + 30 +0.0 + 11 +4987.49998 + 21 +19620.654199 + 31 +0.0 + 0 +LINE + 5 +5F1 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19663.955469 + 30 +0.0 + 11 +4949.99998 + 21 +19685.606104 + 31 +0.0 + 0 +LINE + 5 +5F2 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19728.907374 + 30 +0.0 + 11 +4920.0 + 21 +19737.567595 + 31 +0.0 + 0 +LINE + 5 +5F3 + 8 +0 + 62 + 0 + 10 +4999.99998 + 20 +19555.702294 + 30 +0.0 + 11 +4987.49998 + 21 +19577.352929 + 31 +0.0 + 0 +LINE + 5 +5F4 + 8 +0 + 62 + 0 + 10 +4962.49998 + 20 +19620.654199 + 30 +0.0 + 11 +4949.99998 + 21 +19642.304834 + 31 +0.0 + 0 +LINE + 5 +5F5 + 8 +0 + 62 + 0 + 10 +4924.99998 + 20 +19685.606104 + 30 +0.0 + 11 +4920.0 + 21 +19694.266325 + 31 +0.0 + 0 +LINE + 5 +5F6 + 8 +0 + 62 + 0 + 10 +4999.999981 + 20 +19512.401024 + 30 +0.0 + 11 +4987.499981 + 21 +19534.051659 + 31 +0.0 + 0 +LINE + 5 +5F7 + 8 +0 + 62 + 0 + 10 +4962.499981 + 20 +19577.352929 + 30 +0.0 + 11 +4949.999981 + 21 +19599.003564 + 31 +0.0 + 0 +LINE + 5 +5F8 + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19642.304834 + 30 +0.0 + 11 +4920.0 + 21 +19650.965055 + 31 +0.0 + 0 +LINE + 5 +5F9 + 8 +0 + 62 + 0 + 10 +4999.999981 + 20 +19469.099753 + 30 +0.0 + 11 +4987.499981 + 21 +19490.750389 + 31 +0.0 + 0 +LINE + 5 +5FA + 8 +0 + 62 + 0 + 10 +4962.499981 + 20 +19534.051659 + 30 +0.0 + 11 +4949.999981 + 21 +19555.702294 + 31 +0.0 + 0 +LINE + 5 +5FB + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19599.003564 + 30 +0.0 + 11 +4920.0 + 21 +19607.663785 + 31 +0.0 + 0 +LINE + 5 +5FC + 8 +0 + 62 + 0 + 10 +4999.999981 + 20 +19425.798483 + 30 +0.0 + 11 +4987.499981 + 21 +19447.449118 + 31 +0.0 + 0 +LINE + 5 +5FD + 8 +0 + 62 + 0 + 10 +4962.499981 + 20 +19490.750389 + 30 +0.0 + 11 +4949.999981 + 21 +19512.401024 + 31 +0.0 + 0 +LINE + 5 +5FE + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19555.702294 + 30 +0.0 + 11 +4920.0 + 21 +19564.362515 + 31 +0.0 + 0 +LINE + 5 +5FF + 8 +0 + 62 + 0 + 10 +4999.999981 + 20 +19382.497213 + 30 +0.0 + 11 +4987.499981 + 21 +19404.147848 + 31 +0.0 + 0 +LINE + 5 +600 + 8 +0 + 62 + 0 + 10 +4962.499981 + 20 +19447.449118 + 30 +0.0 + 11 +4949.999981 + 21 +19469.099754 + 31 +0.0 + 0 +LINE + 5 +601 + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19512.401024 + 30 +0.0 + 11 +4920.0 + 21 +19521.061245 + 31 +0.0 + 0 +LINE + 5 +602 + 8 +0 + 62 + 0 + 10 +4962.499981 + 20 +19404.147848 + 30 +0.0 + 11 +4949.999981 + 21 +19425.798483 + 31 +0.0 + 0 +LINE + 5 +603 + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19469.099754 + 30 +0.0 + 11 +4920.0 + 21 +19477.759975 + 31 +0.0 + 0 +LINE + 5 +604 + 8 +0 + 62 + 0 + 10 +4960.82369 + 20 +19363.75 + 30 +0.0 + 11 +4949.999981 + 21 +19382.497213 + 31 +0.0 + 0 +LINE + 5 +605 + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19425.798483 + 30 +0.0 + 11 +4920.0 + 21 +19434.458705 + 31 +0.0 + 0 +LINE + 5 +606 + 8 +0 + 62 + 0 + 10 +4924.999981 + 20 +19382.497213 + 30 +0.0 + 11 +4920.0 + 21 +19391.157435 + 31 +0.0 + 0 +LINE + 5 +607 + 8 +0 + 62 + 0 + 10 +5072.388754 + 20 +22115.0 + 30 +0.0 + 11 +5062.499975 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +608 + 8 +0 + 62 + 0 + 10 +5037.499975 + 20 +22175.429137 + 30 +0.0 + 11 +5026.200733 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +609 + 8 +0 + 62 + 0 + 10 +5074.999975 + 20 +22153.778502 + 30 +0.0 + 11 +5062.499975 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +60A + 8 +0 + 62 + 0 + 10 +5112.499975 + 20 +22132.127867 + 30 +0.0 + 11 +5099.999975 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +60B + 8 +0 + 62 + 0 + 10 +5147.388754 + 20 +22115.0 + 30 +0.0 + 11 +5137.499975 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +60C + 8 +0 + 62 + 0 + 10 +5112.499975 + 20 +22175.429137 + 30 +0.0 + 11 +5101.200732 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +60D + 8 +0 + 62 + 0 + 10 +5149.999975 + 20 +22153.778502 + 30 +0.0 + 11 +5137.499975 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +60E + 8 +0 + 62 + 0 + 10 +5187.499975 + 20 +22132.127867 + 30 +0.0 + 11 +5174.999975 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +60F + 8 +0 + 62 + 0 + 10 +5222.388753 + 20 +22115.0 + 30 +0.0 + 11 +5212.499975 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +610 + 8 +0 + 62 + 0 + 10 +5187.499975 + 20 +22175.429137 + 30 +0.0 + 11 +5176.200732 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +611 + 8 +0 + 62 + 0 + 10 +5224.999975 + 20 +22153.778502 + 30 +0.0 + 11 +5212.499975 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +612 + 8 +0 + 62 + 0 + 10 +5262.499975 + 20 +22132.127867 + 30 +0.0 + 11 +5249.999975 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +613 + 8 +0 + 62 + 0 + 10 +5297.388753 + 20 +22115.0 + 30 +0.0 + 11 +5287.499975 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +614 + 8 +0 + 62 + 0 + 10 +5262.499975 + 20 +22175.429137 + 30 +0.0 + 11 +5251.200732 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +615 + 8 +0 + 62 + 0 + 10 +5299.999975 + 20 +22153.778502 + 30 +0.0 + 11 +5287.499975 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +616 + 8 +0 + 62 + 0 + 10 +5337.499975 + 20 +22132.127867 + 30 +0.0 + 11 +5324.999975 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +617 + 8 +0 + 62 + 0 + 10 +5372.388753 + 20 +22115.0 + 30 +0.0 + 11 +5362.499974 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +618 + 8 +0 + 62 + 0 + 10 +5337.499974 + 20 +22175.429137 + 30 +0.0 + 11 +5326.200731 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +619 + 8 +0 + 62 + 0 + 10 +5374.999974 + 20 +22153.778502 + 30 +0.0 + 11 +5362.499974 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +61A + 8 +0 + 62 + 0 + 10 +5412.499974 + 20 +22132.127866 + 30 +0.0 + 11 +5399.999974 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +61B + 8 +0 + 62 + 0 + 10 +5447.388752 + 20 +22115.0 + 30 +0.0 + 11 +5437.499974 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +61C + 8 +0 + 62 + 0 + 10 +5412.499974 + 20 +22175.429137 + 30 +0.0 + 11 +5401.200731 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +61D + 8 +0 + 62 + 0 + 10 +5449.999974 + 20 +22153.778501 + 30 +0.0 + 11 +5437.499974 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +61E + 8 +0 + 62 + 0 + 10 +5487.499974 + 20 +22132.127866 + 30 +0.0 + 11 +5474.999974 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +61F + 8 +0 + 62 + 0 + 10 +5522.388752 + 20 +22115.0 + 30 +0.0 + 11 +5512.499974 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +620 + 8 +0 + 62 + 0 + 10 +5487.499974 + 20 +22175.429136 + 30 +0.0 + 11 +5476.200731 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +621 + 8 +0 + 62 + 0 + 10 +5524.999974 + 20 +22153.778501 + 30 +0.0 + 11 +5512.499974 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +622 + 8 +0 + 62 + 0 + 10 +5562.499974 + 20 +22132.127866 + 30 +0.0 + 11 +5549.999974 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +623 + 8 +0 + 62 + 0 + 10 +5597.388752 + 20 +22115.0 + 30 +0.0 + 11 +5587.499974 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +624 + 8 +0 + 62 + 0 + 10 +5562.499974 + 20 +22175.429136 + 30 +0.0 + 11 +5551.20073 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +625 + 8 +0 + 62 + 0 + 10 +5599.999974 + 20 +22153.778501 + 30 +0.0 + 11 +5587.499974 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +626 + 8 +0 + 62 + 0 + 10 +5637.499974 + 20 +22132.127866 + 30 +0.0 + 11 +5624.999974 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +627 + 8 +0 + 62 + 0 + 10 +5672.388751 + 20 +22115.0 + 30 +0.0 + 11 +5662.499973 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +628 + 8 +0 + 62 + 0 + 10 +5637.499973 + 20 +22175.429136 + 30 +0.0 + 11 +5626.20073 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +629 + 8 +0 + 62 + 0 + 10 +5674.999973 + 20 +22153.778501 + 30 +0.0 + 11 +5662.499973 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +62A + 8 +0 + 62 + 0 + 10 +5712.499973 + 20 +22132.127866 + 30 +0.0 + 11 +5699.999973 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +62B + 8 +0 + 62 + 0 + 10 +5747.388751 + 20 +22115.0 + 30 +0.0 + 11 +5737.499973 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +62C + 8 +0 + 62 + 0 + 10 +5712.499973 + 20 +22175.429136 + 30 +0.0 + 11 +5701.20073 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +62D + 8 +0 + 62 + 0 + 10 +5749.999973 + 20 +22153.778501 + 30 +0.0 + 11 +5737.499973 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +62E + 8 +0 + 62 + 0 + 10 +5787.499973 + 20 +22132.127866 + 30 +0.0 + 11 +5774.999973 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +62F + 8 +0 + 62 + 0 + 10 +5822.388751 + 20 +22115.0 + 30 +0.0 + 11 +5812.499973 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +630 + 8 +0 + 62 + 0 + 10 +5787.499973 + 20 +22175.429136 + 30 +0.0 + 11 +5776.200729 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +631 + 8 +0 + 62 + 0 + 10 +5824.999973 + 20 +22153.778501 + 30 +0.0 + 11 +5812.499973 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +632 + 8 +0 + 62 + 0 + 10 +5862.499973 + 20 +22132.127866 + 30 +0.0 + 11 +5849.999973 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +633 + 8 +0 + 62 + 0 + 10 +5897.38875 + 20 +22115.0 + 30 +0.0 + 11 +5887.499973 + 21 +22132.127866 + 31 +0.0 + 0 +LINE + 5 +634 + 8 +0 + 62 + 0 + 10 +5862.499973 + 20 +22175.429136 + 30 +0.0 + 11 +5851.200729 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +635 + 8 +0 + 62 + 0 + 10 +5899.999973 + 20 +22153.778501 + 30 +0.0 + 11 +5887.499973 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +636 + 8 +0 + 62 + 0 + 10 +5937.499973 + 20 +22132.127865 + 30 +0.0 + 11 +5924.999973 + 21 +22153.778501 + 31 +0.0 + 0 +LINE + 5 +637 + 8 +0 + 62 + 0 + 10 +5972.38875 + 20 +22115.0 + 30 +0.0 + 11 +5962.499972 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +638 + 8 +0 + 62 + 0 + 10 +5937.499972 + 20 +22175.429136 + 30 +0.0 + 11 +5926.200729 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +639 + 8 +0 + 62 + 0 + 10 +5974.999972 + 20 +22153.7785 + 30 +0.0 + 11 +5962.499972 + 21 +22175.429136 + 31 +0.0 + 0 +LINE + 5 +63A + 8 +0 + 62 + 0 + 10 +6012.499972 + 20 +22132.127865 + 30 +0.0 + 11 +5999.999972 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +63B + 8 +0 + 62 + 0 + 10 +6047.38875 + 20 +22115.0 + 30 +0.0 + 11 +6037.499972 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +63C + 8 +0 + 62 + 0 + 10 +6012.499972 + 20 +22175.429135 + 30 +0.0 + 11 +6001.200728 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +63D + 8 +0 + 62 + 0 + 10 +6049.999972 + 20 +22153.7785 + 30 +0.0 + 11 +6037.499972 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +63E + 8 +0 + 62 + 0 + 10 +6087.499972 + 20 +22132.127865 + 30 +0.0 + 11 +6074.999972 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +63F + 8 +0 + 62 + 0 + 10 +6122.38875 + 20 +22115.0 + 30 +0.0 + 11 +6112.499972 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +640 + 8 +0 + 62 + 0 + 10 +6087.499972 + 20 +22175.429135 + 30 +0.0 + 11 +6076.200728 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +641 + 8 +0 + 62 + 0 + 10 +6124.999972 + 20 +22153.7785 + 30 +0.0 + 11 +6112.499972 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +642 + 8 +0 + 62 + 0 + 10 +6162.499972 + 20 +22132.127865 + 30 +0.0 + 11 +6149.999972 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +643 + 8 +0 + 62 + 0 + 10 +6197.388749 + 20 +22115.0 + 30 +0.0 + 11 +6187.499972 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +644 + 8 +0 + 62 + 0 + 10 +6162.499972 + 20 +22175.429135 + 30 +0.0 + 11 +6151.200728 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +645 + 8 +0 + 62 + 0 + 10 +6199.999972 + 20 +22153.7785 + 30 +0.0 + 11 +6187.499972 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +646 + 8 +0 + 62 + 0 + 10 +6237.499972 + 20 +22132.127865 + 30 +0.0 + 11 +6224.999972 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +647 + 8 +0 + 62 + 0 + 10 +6272.388749 + 20 +22115.0 + 30 +0.0 + 11 +6262.499971 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +648 + 8 +0 + 62 + 0 + 10 +6237.499971 + 20 +22175.429135 + 30 +0.0 + 11 +6226.200727 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +649 + 8 +0 + 62 + 0 + 10 +6274.999971 + 20 +22153.7785 + 30 +0.0 + 11 +6262.499971 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +64A + 8 +0 + 62 + 0 + 10 +6312.499971 + 20 +22132.127865 + 30 +0.0 + 11 +6299.999971 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +64B + 8 +0 + 62 + 0 + 10 +6347.388749 + 20 +22115.0 + 30 +0.0 + 11 +6337.499971 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +64C + 8 +0 + 62 + 0 + 10 +6312.499971 + 20 +22175.429135 + 30 +0.0 + 11 +6301.200727 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +64D + 8 +0 + 62 + 0 + 10 +6349.999971 + 20 +22153.7785 + 30 +0.0 + 11 +6337.499971 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +64E + 8 +0 + 62 + 0 + 10 +6387.499971 + 20 +22132.127865 + 30 +0.0 + 11 +6374.999971 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +64F + 8 +0 + 62 + 0 + 10 +6422.388748 + 20 +22115.0 + 30 +0.0 + 11 +6412.499971 + 21 +22132.127865 + 31 +0.0 + 0 +LINE + 5 +650 + 8 +0 + 62 + 0 + 10 +6387.499971 + 20 +22175.429135 + 30 +0.0 + 11 +6376.200727 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +651 + 8 +0 + 62 + 0 + 10 +6424.999971 + 20 +22153.7785 + 30 +0.0 + 11 +6412.499971 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +652 + 8 +0 + 62 + 0 + 10 +6462.499971 + 20 +22132.127864 + 30 +0.0 + 11 +6449.999971 + 21 +22153.7785 + 31 +0.0 + 0 +LINE + 5 +653 + 8 +0 + 62 + 0 + 10 +6497.388748 + 20 +22115.0 + 30 +0.0 + 11 +6487.499971 + 21 +22132.127864 + 31 +0.0 + 0 +LINE + 5 +654 + 8 +0 + 62 + 0 + 10 +6462.499971 + 20 +22175.429135 + 30 +0.0 + 11 +6451.200726 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +655 + 8 +0 + 62 + 0 + 10 +6499.999971 + 20 +22153.778499 + 30 +0.0 + 11 +6487.499971 + 21 +22175.429135 + 31 +0.0 + 0 +LINE + 5 +656 + 8 +0 + 62 + 0 + 10 +6537.499971 + 20 +22132.127864 + 30 +0.0 + 11 +6524.999971 + 21 +22153.778499 + 31 +0.0 + 0 +LINE + 5 +657 + 8 +0 + 62 + 0 + 10 +6572.388748 + 20 +22115.0 + 30 +0.0 + 11 +6562.499971 + 21 +22132.127864 + 31 +0.0 + 0 +LINE + 5 +658 + 8 +0 + 62 + 0 + 10 +6537.499971 + 20 +22175.429134 + 30 +0.0 + 11 +6526.200726 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +659 + 8 +0 + 62 + 0 + 10 +6574.99997 + 20 +22153.778499 + 30 +0.0 + 11 +6562.49997 + 21 +22175.429134 + 31 +0.0 + 0 +LINE + 5 +65A + 8 +0 + 62 + 0 + 10 +6612.49997 + 20 +22132.127864 + 30 +0.0 + 11 +6599.99997 + 21 +22153.778499 + 31 +0.0 + 0 +LINE + 5 +65B + 8 +0 + 62 + 0 + 10 +6647.388747 + 20 +22115.0 + 30 +0.0 + 11 +6637.49997 + 21 +22132.127864 + 31 +0.0 + 0 +LINE + 5 +65C + 8 +0 + 62 + 0 + 10 +6612.49997 + 20 +22175.429134 + 30 +0.0 + 11 +6601.200726 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +65D + 8 +0 + 62 + 0 + 10 +6649.99997 + 20 +22153.778499 + 30 +0.0 + 11 +6637.49997 + 21 +22175.429134 + 31 +0.0 + 0 +LINE + 5 +65E + 8 +0 + 62 + 0 + 10 +6687.49997 + 20 +22132.127864 + 30 +0.0 + 11 +6674.99997 + 21 +22153.778499 + 31 +0.0 + 0 +LINE + 5 +65F + 8 +0 + 62 + 0 + 10 +6722.388747 + 20 +22115.0 + 30 +0.0 + 11 +6712.49997 + 21 +22132.127864 + 31 +0.0 + 0 +LINE + 5 +660 + 8 +0 + 62 + 0 + 10 +6687.49997 + 20 +22175.429134 + 30 +0.0 + 11 +6676.200725 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +661 + 8 +0 + 62 + 0 + 10 +6724.99997 + 20 +22153.778499 + 30 +0.0 + 11 +6712.49997 + 21 +22175.429134 + 31 +0.0 + 0 +LINE + 5 +662 + 8 +0 + 62 + 0 + 10 +6751.25 + 20 +22151.613383 + 30 +0.0 + 11 +6749.99997 + 21 +22153.778499 + 31 +0.0 + 0 +LINE + 5 +663 + 8 +0 + 62 + 0 + 10 +6751.25 + 20 +22194.914653 + 30 +0.0 + 11 +6751.200725 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +664 + 8 +0 + 62 + 0 + 10 +6637.500019 + 20 +22132.12787 + 30 +0.0 + 11 +6650.000019 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +665 + 8 +0 + 62 + 0 + 10 +6602.611239 + 20 +22115.0 + 30 +0.0 + 11 +6612.500019 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +666 + 8 +0 + 62 + 0 + 10 +6637.500019 + 20 +22175.42914 + 30 +0.0 + 11 +6648.79926 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +667 + 8 +0 + 62 + 0 + 10 +4989.176311 + 20 +19363.75 + 30 +0.0 + 11 +5000.0 + 21 +19382.49718 + 31 +0.0 + 0 +LINE + 5 +668 + 8 +0 + 62 + 0 + 10 +6600.000019 + 20 +22153.778505 + 30 +0.0 + 11 +6612.500019 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +669 + 8 +0 + 62 + 0 + 10 +4987.500019 + 20 +19404.147848 + 30 +0.0 + 11 +5000.0 + 21 +19425.79845 + 31 +0.0 + 0 +LINE + 5 +66A + 8 +0 + 62 + 0 + 10 +6562.500019 + 20 +22132.12787 + 30 +0.0 + 11 +6575.000019 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +66B + 8 +0 + 62 + 0 + 10 +4950.000019 + 20 +19382.497213 + 30 +0.0 + 11 +4962.500019 + 21 +19404.147848 + 31 +0.0 + 0 +LINE + 5 +66C + 8 +0 + 62 + 0 + 10 +4987.500019 + 20 +19447.449118 + 30 +0.0 + 11 +5000.0 + 21 +19469.09972 + 31 +0.0 + 0 +LINE + 5 +66D + 8 +0 + 62 + 0 + 10 +6527.611239 + 20 +22115.0 + 30 +0.0 + 11 +6537.500019 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +66E + 8 +0 + 62 + 0 + 10 +6562.500019 + 20 +22175.42914 + 30 +0.0 + 11 +6573.79926 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +66F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19373.836925 + 30 +0.0 + 11 +4925.000019 + 21 +19382.497213 + 31 +0.0 + 0 +LINE + 5 +670 + 8 +0 + 62 + 0 + 10 +4950.000019 + 20 +19425.798483 + 30 +0.0 + 11 +4962.500019 + 21 +19447.449118 + 31 +0.0 + 0 +LINE + 5 +671 + 8 +0 + 62 + 0 + 10 +4987.500019 + 20 +19490.750389 + 30 +0.0 + 11 +5000.0 + 21 +19512.40099 + 31 +0.0 + 0 +LINE + 5 +672 + 8 +0 + 62 + 0 + 10 +6525.000019 + 20 +22153.778505 + 30 +0.0 + 11 +6537.500019 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +673 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19417.138195 + 30 +0.0 + 11 +4925.00002 + 21 +19425.798483 + 31 +0.0 + 0 +LINE + 5 +674 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19469.099753 + 30 +0.0 + 11 +4962.50002 + 21 +19490.750388 + 31 +0.0 + 0 +LINE + 5 +675 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19534.051659 + 30 +0.0 + 11 +5000.0 + 21 +19555.70226 + 31 +0.0 + 0 +LINE + 5 +676 + 8 +0 + 62 + 0 + 10 +6487.50002 + 20 +22132.12787 + 30 +0.0 + 11 +6500.00002 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +677 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19460.439465 + 30 +0.0 + 11 +4925.00002 + 21 +19469.099753 + 31 +0.0 + 0 +LINE + 5 +678 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19512.401024 + 30 +0.0 + 11 +4962.50002 + 21 +19534.051659 + 31 +0.0 + 0 +LINE + 5 +679 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19577.352929 + 30 +0.0 + 11 +5000.0 + 21 +19599.00353 + 31 +0.0 + 0 +LINE + 5 +67A + 8 +0 + 62 + 0 + 10 +6452.611239 + 20 +22115.0 + 30 +0.0 + 11 +6462.50002 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +67B + 8 +0 + 62 + 0 + 10 +6487.50002 + 20 +22175.42914 + 30 +0.0 + 11 +6498.799261 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +67C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19503.740735 + 30 +0.0 + 11 +4925.00002 + 21 +19512.401023 + 31 +0.0 + 0 +LINE + 5 +67D + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19555.702294 + 30 +0.0 + 11 +4962.50002 + 21 +19577.352929 + 31 +0.0 + 0 +LINE + 5 +67E + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19620.654199 + 30 +0.0 + 11 +5000.0 + 21 +19642.3048 + 31 +0.0 + 0 +LINE + 5 +67F + 8 +0 + 62 + 0 + 10 +6450.00002 + 20 +22153.778505 + 30 +0.0 + 11 +6462.50002 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +680 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19547.042005 + 30 +0.0 + 11 +4925.00002 + 21 +19555.702294 + 31 +0.0 + 0 +LINE + 5 +681 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19599.003564 + 30 +0.0 + 11 +4962.50002 + 21 +19620.654199 + 31 +0.0 + 0 +LINE + 5 +682 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19663.955469 + 30 +0.0 + 11 +5000.0 + 21 +19685.60607 + 31 +0.0 + 0 +LINE + 5 +683 + 8 +0 + 62 + 0 + 10 +6412.50002 + 20 +22132.12787 + 30 +0.0 + 11 +6425.00002 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +684 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19590.343275 + 30 +0.0 + 11 +4925.00002 + 21 +19599.003564 + 31 +0.0 + 0 +LINE + 5 +685 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19642.304834 + 30 +0.0 + 11 +4962.50002 + 21 +19663.955469 + 31 +0.0 + 0 +LINE + 5 +686 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19707.256739 + 30 +0.0 + 11 +5000.0 + 21 +19728.90734 + 31 +0.0 + 0 +LINE + 5 +687 + 8 +0 + 62 + 0 + 10 +6377.61124 + 20 +22115.0 + 30 +0.0 + 11 +6387.50002 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +688 + 8 +0 + 62 + 0 + 10 +6412.50002 + 20 +22175.42914 + 30 +0.0 + 11 +6423.799261 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +689 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19633.644545 + 30 +0.0 + 11 +4925.00002 + 21 +19642.304834 + 31 +0.0 + 0 +LINE + 5 +68A + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19685.606104 + 30 +0.0 + 11 +4962.50002 + 21 +19707.256739 + 31 +0.0 + 0 +LINE + 5 +68B + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19750.558009 + 30 +0.0 + 11 +5000.0 + 21 +19772.20861 + 31 +0.0 + 0 +LINE + 5 +68C + 8 +0 + 62 + 0 + 10 +6375.00002 + 20 +22153.778505 + 30 +0.0 + 11 +6387.50002 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +68D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19676.945815 + 30 +0.0 + 11 +4925.00002 + 21 +19685.606104 + 31 +0.0 + 0 +LINE + 5 +68E + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19728.907374 + 30 +0.0 + 11 +4962.50002 + 21 +19750.558009 + 31 +0.0 + 0 +LINE + 5 +68F + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19793.85928 + 30 +0.0 + 11 +5000.0 + 21 +19815.50988 + 31 +0.0 + 0 +LINE + 5 +690 + 8 +0 + 62 + 0 + 10 +6337.50002 + 20 +22132.12787 + 30 +0.0 + 11 +6350.00002 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +691 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19720.247085 + 30 +0.0 + 11 +4925.00002 + 21 +19728.907374 + 31 +0.0 + 0 +LINE + 5 +692 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19772.208644 + 30 +0.0 + 11 +4962.50002 + 21 +19793.859279 + 31 +0.0 + 0 +LINE + 5 +693 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19837.16055 + 30 +0.0 + 11 +5000.0 + 21 +19858.81115 + 31 +0.0 + 0 +LINE + 5 +694 + 8 +0 + 62 + 0 + 10 +6302.61124 + 20 +22115.0 + 30 +0.0 + 11 +6312.50002 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +695 + 8 +0 + 62 + 0 + 10 +6337.50002 + 20 +22175.42914 + 30 +0.0 + 11 +6348.799261 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +696 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19763.548355 + 30 +0.0 + 11 +4925.00002 + 21 +19772.208644 + 31 +0.0 + 0 +LINE + 5 +697 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19815.509915 + 30 +0.0 + 11 +4962.50002 + 21 +19837.16055 + 31 +0.0 + 0 +LINE + 5 +698 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19880.46182 + 30 +0.0 + 11 +5000.0 + 21 +19902.11242 + 31 +0.0 + 0 +LINE + 5 +699 + 8 +0 + 62 + 0 + 10 +6300.00002 + 20 +22153.778505 + 30 +0.0 + 11 +6312.50002 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +69A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19806.849625 + 30 +0.0 + 11 +4925.00002 + 21 +19815.509914 + 31 +0.0 + 0 +LINE + 5 +69B + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19858.811185 + 30 +0.0 + 11 +4962.50002 + 21 +19880.46182 + 31 +0.0 + 0 +LINE + 5 +69C + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19923.76309 + 30 +0.0 + 11 +5000.0 + 21 +19945.41369 + 31 +0.0 + 0 +LINE + 5 +69D + 8 +0 + 62 + 0 + 10 +6262.50002 + 20 +22132.12787 + 30 +0.0 + 11 +6275.00002 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +69E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19850.150895 + 30 +0.0 + 11 +4925.00002 + 21 +19858.811185 + 31 +0.0 + 0 +LINE + 5 +69F + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19902.112455 + 30 +0.0 + 11 +4962.50002 + 21 +19923.76309 + 31 +0.0 + 0 +LINE + 5 +6A0 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +19967.06436 + 30 +0.0 + 11 +5000.0 + 21 +19988.71496 + 31 +0.0 + 0 +LINE + 5 +6A1 + 8 +0 + 62 + 0 + 10 +6227.61124 + 20 +22115.0 + 30 +0.0 + 11 +6237.50002 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +6A2 + 8 +0 + 62 + 0 + 10 +6262.50002 + 20 +22175.42914 + 30 +0.0 + 11 +6273.799262 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6A3 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19893.452165 + 30 +0.0 + 11 +4925.00002 + 21 +19902.112455 + 31 +0.0 + 0 +LINE + 5 +6A4 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19945.413725 + 30 +0.0 + 11 +4962.50002 + 21 +19967.06436 + 31 +0.0 + 0 +LINE + 5 +6A5 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +20010.36563 + 30 +0.0 + 11 +5000.0 + 21 +20032.01623 + 31 +0.0 + 0 +LINE + 5 +6A6 + 8 +0 + 62 + 0 + 10 +6225.00002 + 20 +22153.778505 + 30 +0.0 + 11 +6237.50002 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +6A7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19936.753435 + 30 +0.0 + 11 +4925.00002 + 21 +19945.413725 + 31 +0.0 + 0 +LINE + 5 +6A8 + 8 +0 + 62 + 0 + 10 +4950.00002 + 20 +19988.714995 + 30 +0.0 + 11 +4962.50002 + 21 +20010.36563 + 31 +0.0 + 0 +LINE + 5 +6A9 + 8 +0 + 62 + 0 + 10 +4987.50002 + 20 +20053.6669 + 30 +0.0 + 11 +5000.0 + 21 +20075.3175 + 31 +0.0 + 0 +LINE + 5 +6AA + 8 +0 + 62 + 0 + 10 +6187.50002 + 20 +22132.127869 + 30 +0.0 + 11 +6200.00002 + 21 +22153.778505 + 31 +0.0 + 0 +LINE + 5 +6AB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +19980.054705 + 30 +0.0 + 11 +4925.000021 + 21 +19988.714995 + 31 +0.0 + 0 +LINE + 5 +6AC + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20032.016265 + 30 +0.0 + 11 +4962.500021 + 21 +20053.6669 + 31 +0.0 + 0 +LINE + 5 +6AD + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20096.968171 + 30 +0.0 + 11 +5000.0 + 21 +20118.61877 + 31 +0.0 + 0 +LINE + 5 +6AE + 8 +0 + 62 + 0 + 10 +6152.611241 + 20 +22115.0 + 30 +0.0 + 11 +6162.500021 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6AF + 8 +0 + 62 + 0 + 10 +6187.500021 + 20 +22175.42914 + 30 +0.0 + 11 +6198.799262 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6B0 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20023.355975 + 30 +0.0 + 11 +4925.000021 + 21 +20032.016265 + 31 +0.0 + 0 +LINE + 5 +6B1 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20075.317535 + 30 +0.0 + 11 +4962.500021 + 21 +20096.96817 + 31 +0.0 + 0 +LINE + 5 +6B2 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20140.269441 + 30 +0.0 + 11 +5000.0 + 21 +20161.92004 + 31 +0.0 + 0 +LINE + 5 +6B3 + 8 +0 + 62 + 0 + 10 +6150.000021 + 20 +22153.778504 + 30 +0.0 + 11 +6162.500021 + 21 +22175.42914 + 31 +0.0 + 0 +LINE + 5 +6B4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20066.657245 + 30 +0.0 + 11 +4925.000021 + 21 +20075.317535 + 31 +0.0 + 0 +LINE + 5 +6B5 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20118.618806 + 30 +0.0 + 11 +4962.500021 + 21 +20140.269441 + 31 +0.0 + 0 +LINE + 5 +6B6 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20183.570711 + 30 +0.0 + 11 +5000.0 + 21 +20205.22131 + 31 +0.0 + 0 +LINE + 5 +6B7 + 8 +0 + 62 + 0 + 10 +6112.500021 + 20 +22132.127869 + 30 +0.0 + 11 +6125.000021 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +6B8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20109.958515 + 30 +0.0 + 11 +4925.000021 + 21 +20118.618805 + 31 +0.0 + 0 +LINE + 5 +6B9 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20161.920076 + 30 +0.0 + 11 +4962.500021 + 21 +20183.570711 + 31 +0.0 + 0 +LINE + 5 +6BA + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20226.871981 + 30 +0.0 + 11 +5000.0 + 21 +20248.52258 + 31 +0.0 + 0 +LINE + 5 +6BB + 8 +0 + 62 + 0 + 10 +6077.611241 + 20 +22115.0 + 30 +0.0 + 11 +6087.500021 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6BC + 8 +0 + 62 + 0 + 10 +6112.500021 + 20 +22175.429139 + 30 +0.0 + 11 +6123.799262 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6BD + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20153.259785 + 30 +0.0 + 11 +4925.000021 + 21 +20161.920076 + 31 +0.0 + 0 +LINE + 5 +6BE + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20205.221346 + 30 +0.0 + 11 +4962.500021 + 21 +20226.871981 + 31 +0.0 + 0 +LINE + 5 +6BF + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20270.173251 + 30 +0.0 + 11 +5000.0 + 21 +20291.82385 + 31 +0.0 + 0 +LINE + 5 +6C0 + 8 +0 + 62 + 0 + 10 +6075.000021 + 20 +22153.778504 + 30 +0.0 + 11 +6087.500021 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +6C1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20196.561055 + 30 +0.0 + 11 +4925.000021 + 21 +20205.221346 + 31 +0.0 + 0 +LINE + 5 +6C2 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20248.522616 + 30 +0.0 + 11 +4962.500021 + 21 +20270.173251 + 31 +0.0 + 0 +LINE + 5 +6C3 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20313.474521 + 30 +0.0 + 11 +5000.0 + 21 +20335.12512 + 31 +0.0 + 0 +LINE + 5 +6C4 + 8 +0 + 62 + 0 + 10 +6037.500021 + 20 +22132.127869 + 30 +0.0 + 11 +6050.000021 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +6C5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20239.862325 + 30 +0.0 + 11 +4925.000021 + 21 +20248.522616 + 31 +0.0 + 0 +LINE + 5 +6C6 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20291.823886 + 30 +0.0 + 11 +4962.500021 + 21 +20313.474521 + 31 +0.0 + 0 +LINE + 5 +6C7 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20356.775791 + 30 +0.0 + 11 +5000.0 + 21 +20378.42639 + 31 +0.0 + 0 +LINE + 5 +6C8 + 8 +0 + 62 + 0 + 10 +6002.611241 + 20 +22115.0 + 30 +0.0 + 11 +6012.500021 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6C9 + 8 +0 + 62 + 0 + 10 +6037.500021 + 20 +22175.429139 + 30 +0.0 + 11 +6048.799263 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6CA + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20283.163595 + 30 +0.0 + 11 +4925.000021 + 21 +20291.823886 + 31 +0.0 + 0 +LINE + 5 +6CB + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20335.125156 + 30 +0.0 + 11 +4962.500021 + 21 +20356.775791 + 31 +0.0 + 0 +LINE + 5 +6CC + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20400.077062 + 30 +0.0 + 11 +5000.0 + 21 +20421.72766 + 31 +0.0 + 0 +LINE + 5 +6CD + 8 +0 + 62 + 0 + 10 +6000.000021 + 20 +22153.778504 + 30 +0.0 + 11 +6012.500021 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +6CE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20326.464865 + 30 +0.0 + 11 +4925.000021 + 21 +20335.125156 + 31 +0.0 + 0 +LINE + 5 +6CF + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20378.426426 + 30 +0.0 + 11 +4962.500021 + 21 +20400.077061 + 31 +0.0 + 0 +LINE + 5 +6D0 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20443.378332 + 30 +0.0 + 11 +5000.0 + 21 +20465.02893 + 31 +0.0 + 0 +LINE + 5 +6D1 + 8 +0 + 62 + 0 + 10 +5962.500021 + 20 +22132.127869 + 30 +0.0 + 11 +5975.000021 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +6D2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20369.766135 + 30 +0.0 + 11 +4925.000021 + 21 +20378.426426 + 31 +0.0 + 0 +LINE + 5 +6D3 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20421.727697 + 30 +0.0 + 11 +4962.500021 + 21 +20443.378332 + 31 +0.0 + 0 +LINE + 5 +6D4 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20486.679602 + 30 +0.0 + 11 +5000.0 + 21 +20508.3302 + 31 +0.0 + 0 +LINE + 5 +6D5 + 8 +0 + 62 + 0 + 10 +5927.611242 + 20 +22115.0 + 30 +0.0 + 11 +5937.500021 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6D6 + 8 +0 + 62 + 0 + 10 +5962.500021 + 20 +22175.429139 + 30 +0.0 + 11 +5973.799263 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6D7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20413.067405 + 30 +0.0 + 11 +4925.000021 + 21 +20421.727696 + 31 +0.0 + 0 +LINE + 5 +6D8 + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20465.028967 + 30 +0.0 + 11 +4962.500021 + 21 +20486.679602 + 31 +0.0 + 0 +LINE + 5 +6D9 + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20529.980872 + 30 +0.0 + 11 +5000.0 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +6DA + 8 +0 + 62 + 0 + 10 +5925.000021 + 20 +22153.778504 + 30 +0.0 + 11 +5937.500021 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +6DB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20456.368675 + 30 +0.0 + 11 +4925.000021 + 21 +20465.028967 + 31 +0.0 + 0 +LINE + 5 +6DC + 8 +0 + 62 + 0 + 10 +4950.000021 + 20 +20508.330237 + 30 +0.0 + 11 +4962.500021 + 21 +20529.980872 + 31 +0.0 + 0 +LINE + 5 +6DD + 8 +0 + 62 + 0 + 10 +4987.500021 + 20 +20573.282142 + 30 +0.0 + 11 +5000.0 + 21 +20594.93274 + 31 +0.0 + 0 +LINE + 5 +6DE + 8 +0 + 62 + 0 + 10 +5887.500021 + 20 +22132.127869 + 30 +0.0 + 11 +5900.000021 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +6DF + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20499.669945 + 30 +0.0 + 11 +4925.000022 + 21 +20508.330237 + 31 +0.0 + 0 +LINE + 5 +6E0 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20551.631507 + 30 +0.0 + 11 +4962.500022 + 21 +20573.282142 + 31 +0.0 + 0 +LINE + 5 +6E1 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20616.583412 + 30 +0.0 + 11 +5000.0 + 21 +20638.23401 + 31 +0.0 + 0 +LINE + 5 +6E2 + 8 +0 + 62 + 0 + 10 +5852.611242 + 20 +22115.0 + 30 +0.0 + 11 +5862.500022 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6E3 + 8 +0 + 62 + 0 + 10 +5887.500022 + 20 +22175.429139 + 30 +0.0 + 11 +5898.799263 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6E4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20542.971215 + 30 +0.0 + 11 +4925.000022 + 21 +20551.631507 + 31 +0.0 + 0 +LINE + 5 +6E5 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20594.932777 + 30 +0.0 + 11 +4962.500022 + 21 +20616.583412 + 31 +0.0 + 0 +LINE + 5 +6E6 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20659.884682 + 30 +0.0 + 11 +5000.0 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +6E7 + 8 +0 + 62 + 0 + 10 +5850.000022 + 20 +22153.778504 + 30 +0.0 + 11 +5862.500022 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +6E8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20586.272485 + 30 +0.0 + 11 +4925.000022 + 21 +20594.932777 + 31 +0.0 + 0 +LINE + 5 +6E9 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20638.234047 + 30 +0.0 + 11 +4962.500022 + 21 +20659.884682 + 31 +0.0 + 0 +LINE + 5 +6EA + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20703.185953 + 30 +0.0 + 11 +5000.0 + 21 +20724.83655 + 31 +0.0 + 0 +LINE + 5 +6EB + 8 +0 + 62 + 0 + 10 +5812.500022 + 20 +22132.127869 + 30 +0.0 + 11 +5825.000022 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +6EC + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20629.573755 + 30 +0.0 + 11 +4925.000022 + 21 +20638.234047 + 31 +0.0 + 0 +LINE + 5 +6ED + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20681.535317 + 30 +0.0 + 11 +4962.500022 + 21 +20703.185952 + 31 +0.0 + 0 +LINE + 5 +6EE + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20746.487223 + 30 +0.0 + 11 +5000.0 + 21 +20768.13782 + 31 +0.0 + 0 +LINE + 5 +6EF + 8 +0 + 62 + 0 + 10 +5777.611242 + 20 +22115.0 + 30 +0.0 + 11 +5787.500022 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6F0 + 8 +0 + 62 + 0 + 10 +5812.500022 + 20 +22175.429139 + 30 +0.0 + 11 +5823.799264 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6F1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20672.875025 + 30 +0.0 + 11 +4925.000022 + 21 +20681.535317 + 31 +0.0 + 0 +LINE + 5 +6F2 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20724.836588 + 30 +0.0 + 11 +4962.500022 + 21 +20746.487223 + 31 +0.0 + 0 +LINE + 5 +6F3 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20789.788493 + 30 +0.0 + 11 +5000.0 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +6F4 + 8 +0 + 62 + 0 + 10 +5775.000022 + 20 +22153.778504 + 30 +0.0 + 11 +5787.500022 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +6F5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20716.176295 + 30 +0.0 + 11 +4925.000022 + 21 +20724.836587 + 31 +0.0 + 0 +LINE + 5 +6F6 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20768.137858 + 30 +0.0 + 11 +4962.500022 + 21 +20789.788493 + 31 +0.0 + 0 +LINE + 5 +6F7 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20833.089763 + 30 +0.0 + 11 +5000.0 + 21 +20854.74036 + 31 +0.0 + 0 +LINE + 5 +6F8 + 8 +0 + 62 + 0 + 10 +5737.500022 + 20 +22132.127869 + 30 +0.0 + 11 +5750.000022 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +6F9 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20759.477565 + 30 +0.0 + 11 +4925.000022 + 21 +20768.137858 + 31 +0.0 + 0 +LINE + 5 +6FA + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20811.439128 + 30 +0.0 + 11 +4962.500022 + 21 +20833.089763 + 31 +0.0 + 0 +LINE + 5 +6FB + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20876.391033 + 30 +0.0 + 11 +5000.0 + 21 +20898.04163 + 31 +0.0 + 0 +LINE + 5 +6FC + 8 +0 + 62 + 0 + 10 +5702.611243 + 20 +22115.0 + 30 +0.0 + 11 +5712.500022 + 21 +22132.127869 + 31 +0.0 + 0 +LINE + 5 +6FD + 8 +0 + 62 + 0 + 10 +5737.500022 + 20 +22175.429139 + 30 +0.0 + 11 +5748.799264 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +6FE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20802.778835 + 30 +0.0 + 11 +4925.000022 + 21 +20811.439128 + 31 +0.0 + 0 +LINE + 5 +6FF + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20854.740398 + 30 +0.0 + 11 +4962.500022 + 21 +20876.391033 + 31 +0.0 + 0 +LINE + 5 +700 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20919.692303 + 30 +0.0 + 11 +5000.0 + 21 +20941.3429 + 31 +0.0 + 0 +LINE + 5 +701 + 8 +0 + 62 + 0 + 10 +5700.000022 + 20 +22153.778504 + 30 +0.0 + 11 +5712.500022 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +702 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20846.080105 + 30 +0.0 + 11 +4925.000022 + 21 +20854.740398 + 31 +0.0 + 0 +LINE + 5 +703 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20898.041668 + 30 +0.0 + 11 +4962.500022 + 21 +20919.692303 + 31 +0.0 + 0 +LINE + 5 +704 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +20962.993573 + 30 +0.0 + 11 +5000.0 + 21 +20984.64417 + 31 +0.0 + 0 +LINE + 5 +705 + 8 +0 + 62 + 0 + 10 +5662.500022 + 20 +22132.127868 + 30 +0.0 + 11 +5675.000022 + 21 +22153.778504 + 31 +0.0 + 0 +LINE + 5 +706 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20889.381375 + 30 +0.0 + 11 +4925.000022 + 21 +20898.041668 + 31 +0.0 + 0 +LINE + 5 +707 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20941.342938 + 30 +0.0 + 11 +4962.500022 + 21 +20962.993573 + 31 +0.0 + 0 +LINE + 5 +708 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +21006.294844 + 30 +0.0 + 11 +5000.0 + 21 +21027.94544 + 31 +0.0 + 0 +LINE + 5 +709 + 8 +0 + 62 + 0 + 10 +5627.611243 + 20 +22115.0 + 30 +0.0 + 11 +5637.500022 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +70A + 8 +0 + 62 + 0 + 10 +5662.500022 + 20 +22175.429139 + 30 +0.0 + 11 +5673.799264 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +70B + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20932.682645 + 30 +0.0 + 11 +4925.000022 + 21 +20941.342938 + 31 +0.0 + 0 +LINE + 5 +70C + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +20984.644208 + 30 +0.0 + 11 +4962.500022 + 21 +21006.294843 + 31 +0.0 + 0 +LINE + 5 +70D + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +21049.596114 + 30 +0.0 + 11 +5000.0 + 21 +21071.24671 + 31 +0.0 + 0 +LINE + 5 +70E + 8 +0 + 62 + 0 + 10 +5625.000022 + 20 +22153.778503 + 30 +0.0 + 11 +5637.500022 + 21 +22175.429139 + 31 +0.0 + 0 +LINE + 5 +70F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +20975.983915 + 30 +0.0 + 11 +4925.000022 + 21 +20984.644208 + 31 +0.0 + 0 +LINE + 5 +710 + 8 +0 + 62 + 0 + 10 +4950.000022 + 20 +21027.945479 + 30 +0.0 + 11 +4962.500022 + 21 +21049.596114 + 31 +0.0 + 0 +LINE + 5 +711 + 8 +0 + 62 + 0 + 10 +4987.500022 + 20 +21092.897384 + 30 +0.0 + 11 +5000.0 + 21 +21114.54798 + 31 +0.0 + 0 +LINE + 5 +712 + 8 +0 + 62 + 0 + 10 +5587.500022 + 20 +22132.127868 + 30 +0.0 + 11 +5600.000022 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +713 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21019.285185 + 30 +0.0 + 11 +4925.000023 + 21 +21027.945478 + 31 +0.0 + 0 +LINE + 5 +714 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21071.246749 + 30 +0.0 + 11 +4962.500023 + 21 +21092.897384 + 31 +0.0 + 0 +LINE + 5 +715 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21136.198654 + 30 +0.0 + 11 +5000.0 + 21 +21157.84925 + 31 +0.0 + 0 +LINE + 5 +716 + 8 +0 + 62 + 0 + 10 +5552.611243 + 20 +22115.0 + 30 +0.0 + 11 +5562.500023 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +717 + 8 +0 + 62 + 0 + 10 +5587.500023 + 20 +22175.429138 + 30 +0.0 + 11 +5598.799265 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +718 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21062.586455 + 30 +0.0 + 11 +4925.000023 + 21 +21071.246749 + 31 +0.0 + 0 +LINE + 5 +719 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21114.548019 + 30 +0.0 + 11 +4962.500023 + 21 +21136.198654 + 31 +0.0 + 0 +LINE + 5 +71A + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21179.499924 + 30 +0.0 + 11 +5000.0 + 21 +21201.15052 + 31 +0.0 + 0 +LINE + 5 +71B + 8 +0 + 62 + 0 + 10 +5550.000023 + 20 +22153.778503 + 30 +0.0 + 11 +5562.500023 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +71C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21105.887725 + 30 +0.0 + 11 +4925.000023 + 21 +21114.548019 + 31 +0.0 + 0 +LINE + 5 +71D + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21157.849289 + 30 +0.0 + 11 +4962.500023 + 21 +21179.499924 + 31 +0.0 + 0 +LINE + 5 +71E + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21222.801194 + 30 +0.0 + 11 +5000.0 + 21 +21244.45179 + 31 +0.0 + 0 +LINE + 5 +71F + 8 +0 + 62 + 0 + 10 +5512.500023 + 20 +22132.127868 + 30 +0.0 + 11 +5525.000023 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +720 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21149.188995 + 30 +0.0 + 11 +4925.000023 + 21 +21157.849289 + 31 +0.0 + 0 +LINE + 5 +721 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21201.150559 + 30 +0.0 + 11 +4962.500023 + 21 +21222.801194 + 31 +0.0 + 0 +LINE + 5 +722 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21266.102464 + 30 +0.0 + 11 +5000.0 + 21 +21287.75306 + 31 +0.0 + 0 +LINE + 5 +723 + 8 +0 + 62 + 0 + 10 +5477.611243 + 20 +22115.0 + 30 +0.0 + 11 +5487.500023 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +724 + 8 +0 + 62 + 0 + 10 +5512.500023 + 20 +22175.429138 + 30 +0.0 + 11 +5523.799265 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +725 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21192.490265 + 30 +0.0 + 11 +4925.000023 + 21 +21201.150559 + 31 +0.0 + 0 +LINE + 5 +726 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21244.451829 + 30 +0.0 + 11 +4962.500023 + 21 +21266.102464 + 31 +0.0 + 0 +LINE + 5 +727 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21309.403735 + 30 +0.0 + 11 +5000.0 + 21 +21331.05433 + 31 +0.0 + 0 +LINE + 5 +728 + 8 +0 + 62 + 0 + 10 +5475.000023 + 20 +22153.778503 + 30 +0.0 + 11 +5487.500023 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +729 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21235.791535 + 30 +0.0 + 11 +4925.000023 + 21 +21244.451829 + 31 +0.0 + 0 +LINE + 5 +72A + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21287.753099 + 30 +0.0 + 11 +4962.500023 + 21 +21309.403734 + 31 +0.0 + 0 +LINE + 5 +72B + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21352.705005 + 30 +0.0 + 11 +5000.0 + 21 +21374.3556 + 31 +0.0 + 0 +LINE + 5 +72C + 8 +0 + 62 + 0 + 10 +5437.500023 + 20 +22132.127868 + 30 +0.0 + 11 +5450.000023 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +72D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21279.092805 + 30 +0.0 + 11 +4925.000023 + 21 +21287.753099 + 31 +0.0 + 0 +LINE + 5 +72E + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21331.05437 + 30 +0.0 + 11 +4962.500023 + 21 +21352.705005 + 31 +0.0 + 0 +LINE + 5 +72F + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21396.006275 + 30 +0.0 + 11 +5000.0 + 21 +21417.65687 + 31 +0.0 + 0 +LINE + 5 +730 + 8 +0 + 62 + 0 + 10 +5402.611244 + 20 +22115.0 + 30 +0.0 + 11 +5412.500023 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +731 + 8 +0 + 62 + 0 + 10 +5437.500023 + 20 +22175.429138 + 30 +0.0 + 11 +5448.799265 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +732 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21322.394075 + 30 +0.0 + 11 +4925.000023 + 21 +21331.054369 + 31 +0.0 + 0 +LINE + 5 +733 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21374.35564 + 30 +0.0 + 11 +4962.500023 + 21 +21396.006275 + 31 +0.0 + 0 +LINE + 5 +734 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21439.307545 + 30 +0.0 + 11 +5000.0 + 21 +21460.95814 + 31 +0.0 + 0 +LINE + 5 +735 + 8 +0 + 62 + 0 + 10 +5400.000023 + 20 +22153.778503 + 30 +0.0 + 11 +5412.500023 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +736 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21365.695345 + 30 +0.0 + 11 +4925.000023 + 21 +21374.35564 + 31 +0.0 + 0 +LINE + 5 +737 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21417.65691 + 30 +0.0 + 11 +4962.500023 + 21 +21439.307545 + 31 +0.0 + 0 +LINE + 5 +738 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21482.608815 + 30 +0.0 + 11 +5000.0 + 21 +21504.25941 + 31 +0.0 + 0 +LINE + 5 +739 + 8 +0 + 62 + 0 + 10 +5362.500023 + 20 +22132.127868 + 30 +0.0 + 11 +5375.000023 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +73A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21408.996615 + 30 +0.0 + 11 +4925.000023 + 21 +21417.65691 + 31 +0.0 + 0 +LINE + 5 +73B + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21460.95818 + 30 +0.0 + 11 +4962.500023 + 21 +21482.608815 + 31 +0.0 + 0 +LINE + 5 +73C + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21525.910085 + 30 +0.0 + 11 +5000.0 + 21 +21547.56068 + 31 +0.0 + 0 +LINE + 5 +73D + 8 +0 + 62 + 0 + 10 +5327.611244 + 20 +22115.0 + 30 +0.0 + 11 +5337.500023 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +73E + 8 +0 + 62 + 0 + 10 +5362.500023 + 20 +22175.429138 + 30 +0.0 + 11 +5373.799266 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +73F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21452.297885 + 30 +0.0 + 11 +4925.000023 + 21 +21460.95818 + 31 +0.0 + 0 +LINE + 5 +740 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21504.25945 + 30 +0.0 + 11 +4962.500023 + 21 +21525.910085 + 31 +0.0 + 0 +LINE + 5 +741 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21569.211355 + 30 +0.0 + 11 +5000.0 + 21 +21590.86195 + 31 +0.0 + 0 +LINE + 5 +742 + 8 +0 + 62 + 0 + 10 +5325.000023 + 20 +22153.778503 + 30 +0.0 + 11 +5337.500023 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +743 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21495.599155 + 30 +0.0 + 11 +4925.000023 + 21 +21504.25945 + 31 +0.0 + 0 +LINE + 5 +744 + 8 +0 + 62 + 0 + 10 +4950.000023 + 20 +21547.56072 + 30 +0.0 + 11 +4962.500023 + 21 +21569.211355 + 31 +0.0 + 0 +LINE + 5 +745 + 8 +0 + 62 + 0 + 10 +4987.500023 + 20 +21612.512625 + 30 +0.0 + 11 +5000.0 + 21 +21634.16322 + 31 +0.0 + 0 +LINE + 5 +746 + 8 +0 + 62 + 0 + 10 +5287.500023 + 20 +22132.127868 + 30 +0.0 + 11 +5300.000023 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +747 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21538.900425 + 30 +0.0 + 11 +4925.000024 + 21 +21547.56072 + 31 +0.0 + 0 +LINE + 5 +748 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21590.86199 + 30 +0.0 + 11 +4962.500024 + 21 +21612.512625 + 31 +0.0 + 0 +LINE + 5 +749 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21655.813896 + 30 +0.0 + 11 +5000.0 + 21 +21677.46449 + 31 +0.0 + 0 +LINE + 5 +74A + 8 +0 + 62 + 0 + 10 +5252.611244 + 20 +22115.0 + 30 +0.0 + 11 +5262.500024 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +74B + 8 +0 + 62 + 0 + 10 +5287.500024 + 20 +22175.429138 + 30 +0.0 + 11 +5298.799266 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +74C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21582.201695 + 30 +0.0 + 11 +4925.000024 + 21 +21590.86199 + 31 +0.0 + 0 +LINE + 5 +74D + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21634.16326 + 30 +0.0 + 11 +4962.500024 + 21 +21655.813896 + 31 +0.0 + 0 +LINE + 5 +74E + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21699.115166 + 30 +0.0 + 11 +5000.0 + 21 +21720.76576 + 31 +0.0 + 0 +LINE + 5 +74F + 8 +0 + 62 + 0 + 10 +5250.000024 + 20 +22153.778503 + 30 +0.0 + 11 +5262.500024 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +750 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21625.502965 + 30 +0.0 + 11 +4925.000024 + 21 +21634.16326 + 31 +0.0 + 0 +LINE + 5 +751 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21677.464531 + 30 +0.0 + 11 +4962.500024 + 21 +21699.115166 + 31 +0.0 + 0 +LINE + 5 +752 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21742.416436 + 30 +0.0 + 11 +5000.0 + 21 +21764.06703 + 31 +0.0 + 0 +LINE + 5 +753 + 8 +0 + 62 + 0 + 10 +5212.500024 + 20 +22132.127868 + 30 +0.0 + 11 +5225.000024 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +754 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21668.804235 + 30 +0.0 + 11 +4925.000024 + 21 +21677.464531 + 31 +0.0 + 0 +LINE + 5 +755 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21720.765801 + 30 +0.0 + 11 +4962.500024 + 21 +21742.416436 + 31 +0.0 + 0 +LINE + 5 +756 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21785.717706 + 30 +0.0 + 11 +5000.0 + 21 +21807.3683 + 31 +0.0 + 0 +LINE + 5 +757 + 8 +0 + 62 + 0 + 10 +5177.611245 + 20 +22115.0 + 30 +0.0 + 11 +5187.500024 + 21 +22132.127868 + 31 +0.0 + 0 +LINE + 5 +758 + 8 +0 + 62 + 0 + 10 +5212.500024 + 20 +22175.429138 + 30 +0.0 + 11 +5223.799266 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +759 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21712.105505 + 30 +0.0 + 11 +4925.000024 + 21 +21720.765801 + 31 +0.0 + 0 +LINE + 5 +75A + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21764.067071 + 30 +0.0 + 11 +4962.500024 + 21 +21785.717706 + 31 +0.0 + 0 +LINE + 5 +75B + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21829.018976 + 30 +0.0 + 11 +5000.0 + 21 +21850.66957 + 31 +0.0 + 0 +LINE + 5 +75C + 8 +0 + 62 + 0 + 10 +5175.000024 + 20 +22153.778503 + 30 +0.0 + 11 +5187.500024 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +75D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21755.406775 + 30 +0.0 + 11 +4925.000024 + 21 +21764.067071 + 31 +0.0 + 0 +LINE + 5 +75E + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21807.368341 + 30 +0.0 + 11 +4962.500024 + 21 +21829.018976 + 31 +0.0 + 0 +LINE + 5 +75F + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21872.320246 + 30 +0.0 + 11 +5000.0 + 21 +21893.97084 + 31 +0.0 + 0 +LINE + 5 +760 + 8 +0 + 62 + 0 + 10 +5137.500024 + 20 +22132.127867 + 30 +0.0 + 11 +5150.000024 + 21 +22153.778503 + 31 +0.0 + 0 +LINE + 5 +761 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21798.708045 + 30 +0.0 + 11 +4925.000024 + 21 +21807.368341 + 31 +0.0 + 0 +LINE + 5 +762 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21850.669611 + 30 +0.0 + 11 +4962.500024 + 21 +21872.320246 + 31 +0.0 + 0 +LINE + 5 +763 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21915.621516 + 30 +0.0 + 11 +5000.0 + 21 +21937.27211 + 31 +0.0 + 0 +LINE + 5 +764 + 8 +0 + 62 + 0 + 10 +5102.611245 + 20 +22115.0 + 30 +0.0 + 11 +5112.500024 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +765 + 8 +0 + 62 + 0 + 10 +5137.500024 + 20 +22175.429138 + 30 +0.0 + 11 +5148.799267 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +766 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21842.009315 + 30 +0.0 + 11 +4925.000024 + 21 +21850.669611 + 31 +0.0 + 0 +LINE + 5 +767 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21893.970881 + 30 +0.0 + 11 +4962.500024 + 21 +21915.621516 + 31 +0.0 + 0 +LINE + 5 +768 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +21958.922787 + 30 +0.0 + 11 +5000.0 + 21 +21980.57338 + 31 +0.0 + 0 +LINE + 5 +769 + 8 +0 + 62 + 0 + 10 +5100.000024 + 20 +22153.778502 + 30 +0.0 + 11 +5112.500024 + 21 +22175.429138 + 31 +0.0 + 0 +LINE + 5 +76A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21885.310585 + 30 +0.0 + 11 +4925.000024 + 21 +21893.970881 + 31 +0.0 + 0 +LINE + 5 +76B + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21937.272151 + 30 +0.0 + 11 +4962.500024 + 21 +21958.922787 + 31 +0.0 + 0 +LINE + 5 +76C + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +22002.224057 + 30 +0.0 + 11 +5000.0 + 21 +22023.87465 + 31 +0.0 + 0 +LINE + 5 +76D + 8 +0 + 62 + 0 + 10 +5062.500024 + 20 +22132.127867 + 30 +0.0 + 11 +5075.000024 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +76E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21928.611855 + 30 +0.0 + 11 +4925.000024 + 21 +21937.272151 + 31 +0.0 + 0 +LINE + 5 +76F + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +21980.573422 + 30 +0.0 + 11 +4962.500024 + 21 +22002.224057 + 31 +0.0 + 0 +LINE + 5 +770 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +22045.525327 + 30 +0.0 + 11 +5000.0 + 21 +22067.17592 + 31 +0.0 + 0 +LINE + 5 +771 + 8 +0 + 62 + 0 + 10 +5027.611245 + 20 +22115.0 + 30 +0.0 + 11 +5037.500024 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +772 + 8 +0 + 62 + 0 + 10 +5062.500024 + 20 +22175.429137 + 30 +0.0 + 11 +5073.799267 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +773 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +21971.913125 + 30 +0.0 + 11 +4925.000024 + 21 +21980.573422 + 31 +0.0 + 0 +LINE + 5 +774 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +22023.874692 + 30 +0.0 + 11 +4962.500024 + 21 +22045.525327 + 31 +0.0 + 0 +LINE + 5 +775 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +22088.826597 + 30 +0.0 + 11 +5000.0 + 21 +22110.47719 + 31 +0.0 + 0 +LINE + 5 +776 + 8 +0 + 62 + 0 + 10 +5025.000024 + 20 +22153.778502 + 30 +0.0 + 11 +5037.500024 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +777 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +22015.214395 + 30 +0.0 + 11 +4925.000024 + 21 +22023.874692 + 31 +0.0 + 0 +LINE + 5 +778 + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +22067.175962 + 30 +0.0 + 11 +4962.500024 + 21 +22088.826597 + 31 +0.0 + 0 +LINE + 5 +779 + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +22132.127867 + 30 +0.0 + 11 +5000.000024 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +77A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +22058.515665 + 30 +0.0 + 11 +4925.000024 + 21 +22067.175962 + 31 +0.0 + 0 +LINE + 5 +77B + 8 +0 + 62 + 0 + 10 +4950.000024 + 20 +22110.477232 + 30 +0.0 + 11 +4962.500024 + 21 +22132.127867 + 31 +0.0 + 0 +LINE + 5 +77C + 8 +0 + 62 + 0 + 10 +4987.500024 + 20 +22175.429137 + 30 +0.0 + 11 +4998.799267 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +77D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +22101.816935 + 30 +0.0 + 11 +4925.000025 + 21 +22110.477232 + 31 +0.0 + 0 +LINE + 5 +77E + 8 +0 + 62 + 0 + 10 +4950.000025 + 20 +22153.778502 + 30 +0.0 + 11 +4962.500025 + 21 +22175.429137 + 31 +0.0 + 0 +LINE + 5 +77F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +22145.118205 + 30 +0.0 + 11 +4925.000025 + 21 +22153.778502 + 31 +0.0 + 0 +LINE + 5 +780 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +22188.419475 + 30 +0.0 + 11 +4923.799268 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +781 + 8 +0 + 62 + 0 + 10 +6675.000019 + 20 +22153.778505 + 30 +0.0 + 11 +6687.500019 + 21 +22175.429141 + 31 +0.0 + 0 +LINE + 5 +782 + 8 +0 + 62 + 0 + 10 +6677.611238 + 20 +22115.0 + 30 +0.0 + 11 +6687.500019 + 21 +22132.12787 + 31 +0.0 + 0 +LINE + 5 +783 + 8 +0 + 62 + 0 + 10 +6712.500019 + 20 +22175.429141 + 30 +0.0 + 11 +6723.79926 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +784 + 8 +0 + 62 + 0 + 10 +6712.500019 + 20 +22132.12787 + 30 +0.0 + 11 +6725.000019 + 21 +22153.778506 + 31 +0.0 + 0 +LINE + 5 +785 + 8 +0 + 62 + 0 + 10 +6750.000019 + 20 +22153.778506 + 30 +0.0 + 11 +6751.25 + 21 +22155.943537 + 31 +0.0 + 0 +ENDBLK + 5 +786 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X40 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X40 + 1 + + 0 +LINE + 5 +788 + 8 +0 + 62 + 0 + 10 +8525.0 + 20 +22153.77846 + 30 +0.0 + 11 +8550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +789 + 8 +0 + 62 + 0 + 10 +8600.0 + 20 +22153.77846 + 30 +0.0 + 11 +8625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +78A + 8 +0 + 62 + 0 + 10 +8675.0 + 20 +22153.77846 + 30 +0.0 + 11 +8700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +78B + 8 +0 + 62 + 0 + 10 +8750.0 + 20 +22153.77846 + 30 +0.0 + 11 +8775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +78C + 8 +0 + 62 + 0 + 10 +8825.0 + 20 +22153.77846 + 30 +0.0 + 11 +8850.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +78D + 8 +0 + 62 + 0 + 10 +8900.0 + 20 +22153.77846 + 30 +0.0 + 11 +8925.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +78E + 8 +0 + 62 + 0 + 10 +8975.0 + 20 +22153.77846 + 30 +0.0 + 11 +9000.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +78F + 8 +0 + 62 + 0 + 10 +9050.0 + 20 +22153.77846 + 30 +0.0 + 11 +9075.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +790 + 8 +0 + 62 + 0 + 10 +9125.0 + 20 +22153.77846 + 30 +0.0 + 11 +9150.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +791 + 8 +0 + 62 + 0 + 10 +9200.0 + 20 +22153.77846 + 30 +0.0 + 11 +9225.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +792 + 8 +0 + 62 + 0 + 10 +9275.0 + 20 +22153.77846 + 30 +0.0 + 11 +9300.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +793 + 8 +0 + 62 + 0 + 10 +9350.0 + 20 +22153.77846 + 30 +0.0 + 11 +9375.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +794 + 8 +0 + 62 + 0 + 10 +9425.0 + 20 +22153.77846 + 30 +0.0 + 11 +9450.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +795 + 8 +0 + 62 + 0 + 10 +9500.0 + 20 +22153.77846 + 30 +0.0 + 11 +9525.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +796 + 8 +0 + 62 + 0 + 10 +9575.0 + 20 +22153.77846 + 30 +0.0 + 11 +9600.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +797 + 8 +0 + 62 + 0 + 10 +9650.0 + 20 +22153.77846 + 30 +0.0 + 11 +9675.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +798 + 8 +0 + 62 + 0 + 10 +9725.0 + 20 +22153.77846 + 30 +0.0 + 11 +9750.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +799 + 8 +0 + 62 + 0 + 10 +9800.0 + 20 +22153.77846 + 30 +0.0 + 11 +9825.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +79A + 8 +0 + 62 + 0 + 10 +9875.0 + 20 +22153.77846 + 30 +0.0 + 11 +9900.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +79B + 8 +0 + 62 + 0 + 10 +9950.0 + 20 +22153.77846 + 30 +0.0 + 11 +9975.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +79C + 8 +0 + 62 + 0 + 10 +10025.0 + 20 +22153.77846 + 30 +0.0 + 11 +10050.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +79D + 8 +0 + 62 + 0 + 10 +10100.0 + 20 +22153.77846 + 30 +0.0 + 11 +10125.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +79E + 8 +0 + 62 + 0 + 10 +10175.0 + 20 +22153.77846 + 30 +0.0 + 11 +10200.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +79F + 8 +0 + 62 + 0 + 10 +10250.0 + 20 +22153.77846 + 30 +0.0 + 11 +10251.25 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +7A0 + 8 +0 + 62 + 0 + 10 +8488.75 + 20 +22175.429095 + 30 +0.0 + 11 +8512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A1 + 8 +0 + 62 + 0 + 10 +8562.5 + 20 +22175.429095 + 30 +0.0 + 11 +8587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A2 + 8 +0 + 62 + 0 + 10 +8637.5 + 20 +22175.429095 + 30 +0.0 + 11 +8662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A3 + 8 +0 + 62 + 0 + 10 +8712.5 + 20 +22175.429095 + 30 +0.0 + 11 +8737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A4 + 8 +0 + 62 + 0 + 10 +8787.5 + 20 +22175.429095 + 30 +0.0 + 11 +8812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A5 + 8 +0 + 62 + 0 + 10 +8862.5 + 20 +22175.429095 + 30 +0.0 + 11 +8887.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A6 + 8 +0 + 62 + 0 + 10 +8937.5 + 20 +22175.429095 + 30 +0.0 + 11 +8962.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A7 + 8 +0 + 62 + 0 + 10 +9012.5 + 20 +22175.429095 + 30 +0.0 + 11 +9037.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A8 + 8 +0 + 62 + 0 + 10 +9087.5 + 20 +22175.429095 + 30 +0.0 + 11 +9112.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7A9 + 8 +0 + 62 + 0 + 10 +9162.5 + 20 +22175.429095 + 30 +0.0 + 11 +9187.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7AA + 8 +0 + 62 + 0 + 10 +9237.5 + 20 +22175.429095 + 30 +0.0 + 11 +9262.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7AB + 8 +0 + 62 + 0 + 10 +9312.5 + 20 +22175.429095 + 30 +0.0 + 11 +9337.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7AC + 8 +0 + 62 + 0 + 10 +9387.5 + 20 +22175.429095 + 30 +0.0 + 11 +9412.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7AD + 8 +0 + 62 + 0 + 10 +9462.5 + 20 +22175.429095 + 30 +0.0 + 11 +9487.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7AE + 8 +0 + 62 + 0 + 10 +9537.5 + 20 +22175.429095 + 30 +0.0 + 11 +9562.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7AF + 8 +0 + 62 + 0 + 10 +9612.5 + 20 +22175.429095 + 30 +0.0 + 11 +9637.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B0 + 8 +0 + 62 + 0 + 10 +9687.5 + 20 +22175.429095 + 30 +0.0 + 11 +9712.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B1 + 8 +0 + 62 + 0 + 10 +9762.5 + 20 +22175.429095 + 30 +0.0 + 11 +9787.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B2 + 8 +0 + 62 + 0 + 10 +9837.5 + 20 +22175.429095 + 30 +0.0 + 11 +9862.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B3 + 8 +0 + 62 + 0 + 10 +9912.5 + 20 +22175.429095 + 30 +0.0 + 11 +9937.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B4 + 8 +0 + 62 + 0 + 10 +9987.5 + 20 +22175.429095 + 30 +0.0 + 11 +10012.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B5 + 8 +0 + 62 + 0 + 10 +10062.5 + 20 +22175.429095 + 30 +0.0 + 11 +10087.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B6 + 8 +0 + 62 + 0 + 10 +10137.5 + 20 +22175.429095 + 30 +0.0 + 11 +10162.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B7 + 8 +0 + 62 + 0 + 10 +10212.5 + 20 +22175.429095 + 30 +0.0 + 11 +10237.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +7B8 + 8 +0 + 62 + 0 + 10 +8488.75 + 20 +22132.127825 + 30 +0.0 + 11 +8512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7B9 + 8 +0 + 62 + 0 + 10 +8562.5 + 20 +22132.127825 + 30 +0.0 + 11 +8587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7BA + 8 +0 + 62 + 0 + 10 +8637.5 + 20 +22132.127825 + 30 +0.0 + 11 +8662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7BB + 8 +0 + 62 + 0 + 10 +8712.5 + 20 +22132.127825 + 30 +0.0 + 11 +8737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7BC + 8 +0 + 62 + 0 + 10 +8787.5 + 20 +22132.127825 + 30 +0.0 + 11 +8812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7BD + 8 +0 + 62 + 0 + 10 +8862.5 + 20 +22132.127825 + 30 +0.0 + 11 +8887.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7BE + 8 +0 + 62 + 0 + 10 +8937.5 + 20 +22132.127825 + 30 +0.0 + 11 +8962.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7BF + 8 +0 + 62 + 0 + 10 +9012.5 + 20 +22132.127825 + 30 +0.0 + 11 +9037.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C0 + 8 +0 + 62 + 0 + 10 +9087.5 + 20 +22132.127825 + 30 +0.0 + 11 +9112.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C1 + 8 +0 + 62 + 0 + 10 +9162.5 + 20 +22132.127825 + 30 +0.0 + 11 +9187.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C2 + 8 +0 + 62 + 0 + 10 +9237.5 + 20 +22132.127825 + 30 +0.0 + 11 +9262.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C3 + 8 +0 + 62 + 0 + 10 +9312.5 + 20 +22132.127825 + 30 +0.0 + 11 +9337.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C4 + 8 +0 + 62 + 0 + 10 +9387.5 + 20 +22132.127825 + 30 +0.0 + 11 +9412.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C5 + 8 +0 + 62 + 0 + 10 +9462.5 + 20 +22132.127825 + 30 +0.0 + 11 +9487.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C6 + 8 +0 + 62 + 0 + 10 +9537.5 + 20 +22132.127825 + 30 +0.0 + 11 +9562.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C7 + 8 +0 + 62 + 0 + 10 +9612.5 + 20 +22132.127825 + 30 +0.0 + 11 +9637.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C8 + 8 +0 + 62 + 0 + 10 +9687.5 + 20 +22132.127825 + 30 +0.0 + 11 +9712.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7C9 + 8 +0 + 62 + 0 + 10 +9762.5 + 20 +22132.127825 + 30 +0.0 + 11 +9787.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7CA + 8 +0 + 62 + 0 + 10 +9837.5 + 20 +22132.127825 + 30 +0.0 + 11 +9862.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7CB + 8 +0 + 62 + 0 + 10 +9912.5 + 20 +22132.127825 + 30 +0.0 + 11 +9937.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7CC + 8 +0 + 62 + 0 + 10 +9987.5 + 20 +22132.127825 + 30 +0.0 + 11 +10012.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7CD + 8 +0 + 62 + 0 + 10 +10062.5 + 20 +22132.127825 + 30 +0.0 + 11 +10087.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7CE + 8 +0 + 62 + 0 + 10 +10137.5 + 20 +22132.127825 + 30 +0.0 + 11 +10162.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7CF + 8 +0 + 62 + 0 + 10 +10212.5 + 20 +22132.127825 + 30 +0.0 + 11 +10237.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +7D0 + 8 +0 + 62 + 0 + 10 +9349.999961 + 20 +22153.778494 + 30 +0.0 + 11 +9337.499961 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +7D1 + 8 +0 + 62 + 0 + 10 +9347.388735 + 20 +22115.0 + 30 +0.0 + 11 +9337.499961 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +7D2 + 8 +0 + 62 + 0 + 10 +9312.499961 + 20 +22175.429129 + 30 +0.0 + 11 +9301.200714 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7D3 + 8 +0 + 62 + 0 + 10 +9312.499961 + 20 +22132.127859 + 30 +0.0 + 11 +9299.999961 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +7D4 + 8 +0 + 62 + 0 + 10 +9274.999962 + 20 +22153.778494 + 30 +0.0 + 11 +9262.499962 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +7D5 + 8 +0 + 62 + 0 + 10 +9272.388736 + 20 +22115.0 + 30 +0.0 + 11 +9262.499962 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +7D6 + 8 +0 + 62 + 0 + 10 +9237.499962 + 20 +22175.429129 + 30 +0.0 + 11 +9226.200714 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7D7 + 8 +0 + 62 + 0 + 10 +9237.499962 + 20 +22132.127859 + 30 +0.0 + 11 +9224.999962 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +7D8 + 8 +0 + 62 + 0 + 10 +9199.999962 + 20 +22153.778494 + 30 +0.0 + 11 +9187.499962 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +7D9 + 8 +0 + 62 + 0 + 10 +9197.388736 + 20 +22115.0 + 30 +0.0 + 11 +9187.499962 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +7DA + 8 +0 + 62 + 0 + 10 +9162.499962 + 20 +22175.429129 + 30 +0.0 + 11 +9151.200715 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7DB + 8 +0 + 62 + 0 + 10 +9162.499962 + 20 +22132.127859 + 30 +0.0 + 11 +9149.999962 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +7DC + 8 +0 + 62 + 0 + 10 +9124.999962 + 20 +22153.778494 + 30 +0.0 + 11 +9112.499962 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7DD + 8 +0 + 62 + 0 + 10 +9122.388736 + 20 +22115.0 + 30 +0.0 + 11 +9112.499962 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +7DE + 8 +0 + 62 + 0 + 10 +9087.499962 + 20 +22175.42913 + 30 +0.0 + 11 +9076.200715 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7DF + 8 +0 + 62 + 0 + 10 +9087.499962 + 20 +22132.127859 + 30 +0.0 + 11 +9074.999962 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7E0 + 8 +0 + 62 + 0 + 10 +9049.999962 + 20 +22153.778495 + 30 +0.0 + 11 +9037.499962 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7E1 + 8 +0 + 62 + 0 + 10 +9047.388737 + 20 +22115.0 + 30 +0.0 + 11 +9037.499962 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7E2 + 8 +0 + 62 + 0 + 10 +9012.499962 + 20 +22175.42913 + 30 +0.0 + 11 +9001.200715 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7E3 + 8 +0 + 62 + 0 + 10 +9012.499962 + 20 +22132.12786 + 30 +0.0 + 11 +8999.999962 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7E4 + 8 +0 + 62 + 0 + 10 +8974.999963 + 20 +22153.778495 + 30 +0.0 + 11 +8962.499963 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7E5 + 8 +0 + 62 + 0 + 10 +8972.388737 + 20 +22115.0 + 30 +0.0 + 11 +8962.499963 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7E6 + 8 +0 + 62 + 0 + 10 +8937.499963 + 20 +22175.42913 + 30 +0.0 + 11 +8926.200716 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7E7 + 8 +0 + 62 + 0 + 10 +8937.499963 + 20 +22132.12786 + 30 +0.0 + 11 +8924.999963 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7E8 + 8 +0 + 62 + 0 + 10 +8899.999963 + 20 +22153.778495 + 30 +0.0 + 11 +8887.499963 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7E9 + 8 +0 + 62 + 0 + 10 +8897.388737 + 20 +22115.0 + 30 +0.0 + 11 +8887.499963 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7EA + 8 +0 + 62 + 0 + 10 +8862.499963 + 20 +22175.42913 + 30 +0.0 + 11 +8851.200716 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7EB + 8 +0 + 62 + 0 + 10 +8862.499963 + 20 +22132.12786 + 30 +0.0 + 11 +8849.999963 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7EC + 8 +0 + 62 + 0 + 10 +8824.999963 + 20 +22153.778495 + 30 +0.0 + 11 +8812.499963 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7ED + 8 +0 + 62 + 0 + 10 +8822.388738 + 20 +22115.0 + 30 +0.0 + 11 +8812.499963 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7EE + 8 +0 + 62 + 0 + 10 +8787.499963 + 20 +22175.42913 + 30 +0.0 + 11 +8776.200716 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7EF + 8 +0 + 62 + 0 + 10 +8787.499963 + 20 +22132.12786 + 30 +0.0 + 11 +8774.999963 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7F0 + 8 +0 + 62 + 0 + 10 +8749.999963 + 20 +22153.778495 + 30 +0.0 + 11 +8737.499963 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7F1 + 8 +0 + 62 + 0 + 10 +8747.388738 + 20 +22115.0 + 30 +0.0 + 11 +8737.499963 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7F2 + 8 +0 + 62 + 0 + 10 +8712.499963 + 20 +22175.42913 + 30 +0.0 + 11 +8701.200717 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7F3 + 8 +0 + 62 + 0 + 10 +8712.499963 + 20 +22132.12786 + 30 +0.0 + 11 +8699.999963 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7F4 + 8 +0 + 62 + 0 + 10 +8674.999964 + 20 +22153.778495 + 30 +0.0 + 11 +8662.499964 + 21 +22175.42913 + 31 +0.0 + 0 +LINE + 5 +7F5 + 8 +0 + 62 + 0 + 10 +8672.388738 + 20 +22115.0 + 30 +0.0 + 11 +8662.499964 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7F6 + 8 +0 + 62 + 0 + 10 +8637.499964 + 20 +22175.42913 + 30 +0.0 + 11 +8626.200717 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7F7 + 8 +0 + 62 + 0 + 10 +8637.499964 + 20 +22132.12786 + 30 +0.0 + 11 +8624.999964 + 21 +22153.778495 + 31 +0.0 + 0 +LINE + 5 +7F8 + 8 +0 + 62 + 0 + 10 +8599.999964 + 20 +22153.778495 + 30 +0.0 + 11 +8587.499964 + 21 +22175.429131 + 31 +0.0 + 0 +LINE + 5 +7F9 + 8 +0 + 62 + 0 + 10 +8597.388739 + 20 +22115.0 + 30 +0.0 + 11 +8587.499964 + 21 +22132.12786 + 31 +0.0 + 0 +LINE + 5 +7FA + 8 +0 + 62 + 0 + 10 +8562.499964 + 20 +22175.429131 + 30 +0.0 + 11 +8551.200717 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +7FB + 8 +0 + 62 + 0 + 10 +8562.499964 + 20 +22132.12786 + 30 +0.0 + 11 +8549.999964 + 21 +22153.778496 + 31 +0.0 + 0 +LINE + 5 +7FC + 8 +0 + 62 + 0 + 10 +8524.999964 + 20 +22153.778496 + 30 +0.0 + 11 +8512.499964 + 21 +22175.429131 + 31 +0.0 + 0 +LINE + 5 +7FD + 8 +0 + 62 + 0 + 10 +8522.388739 + 20 +22115.0 + 30 +0.0 + 11 +8512.499964 + 21 +22132.127861 + 31 +0.0 + 0 +LINE + 5 +7FE + 8 +0 + 62 + 0 + 10 +9387.499961 + 20 +22132.127859 + 30 +0.0 + 11 +9374.999961 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +7FF + 8 +0 + 62 + 0 + 10 +9422.388735 + 20 +22115.0 + 30 +0.0 + 11 +9412.499961 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +800 + 8 +0 + 62 + 0 + 10 +9387.499961 + 20 +22175.429129 + 30 +0.0 + 11 +9376.200714 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +801 + 8 +0 + 62 + 0 + 10 +9424.999961 + 20 +22153.778494 + 30 +0.0 + 11 +9412.499961 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +802 + 8 +0 + 62 + 0 + 10 +9462.499961 + 20 +22132.127859 + 30 +0.0 + 11 +9449.999961 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +803 + 8 +0 + 62 + 0 + 10 +9497.388735 + 20 +22115.0 + 30 +0.0 + 11 +9487.499961 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +804 + 8 +0 + 62 + 0 + 10 +9462.499961 + 20 +22175.429129 + 30 +0.0 + 11 +9451.200713 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +805 + 8 +0 + 62 + 0 + 10 +9499.999961 + 20 +22153.778494 + 30 +0.0 + 11 +9487.499961 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +806 + 8 +0 + 62 + 0 + 10 +9537.499961 + 20 +22132.127859 + 30 +0.0 + 11 +9524.999961 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +807 + 8 +0 + 62 + 0 + 10 +9572.388734 + 20 +22115.0 + 30 +0.0 + 11 +9562.499961 + 21 +22132.127859 + 31 +0.0 + 0 +LINE + 5 +808 + 8 +0 + 62 + 0 + 10 +9537.499961 + 20 +22175.429129 + 30 +0.0 + 11 +9526.200713 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +809 + 8 +0 + 62 + 0 + 10 +9574.999961 + 20 +22153.778494 + 30 +0.0 + 11 +9562.499961 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +80A + 8 +0 + 62 + 0 + 10 +9612.499961 + 20 +22132.127858 + 30 +0.0 + 11 +9599.999961 + 21 +22153.778494 + 31 +0.0 + 0 +LINE + 5 +80B + 8 +0 + 62 + 0 + 10 +9647.388734 + 20 +22115.0 + 30 +0.0 + 11 +9637.49996 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +80C + 8 +0 + 62 + 0 + 10 +9612.49996 + 20 +22175.429129 + 30 +0.0 + 11 +9601.200713 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +80D + 8 +0 + 62 + 0 + 10 +9649.99996 + 20 +22153.778493 + 30 +0.0 + 11 +9637.49996 + 21 +22175.429129 + 31 +0.0 + 0 +LINE + 5 +80E + 8 +0 + 62 + 0 + 10 +9687.49996 + 20 +22132.127858 + 30 +0.0 + 11 +9674.99996 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +80F + 8 +0 + 62 + 0 + 10 +9722.388734 + 20 +22115.0 + 30 +0.0 + 11 +9712.49996 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +810 + 8 +0 + 62 + 0 + 10 +9687.49996 + 20 +22175.429128 + 30 +0.0 + 11 +9676.200712 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +811 + 8 +0 + 62 + 0 + 10 +9724.99996 + 20 +22153.778493 + 30 +0.0 + 11 +9712.49996 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +812 + 8 +0 + 62 + 0 + 10 +9762.49996 + 20 +22132.127858 + 30 +0.0 + 11 +9749.99996 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +813 + 8 +0 + 62 + 0 + 10 +9797.388733 + 20 +22115.0 + 30 +0.0 + 11 +9787.49996 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +814 + 8 +0 + 62 + 0 + 10 +9762.49996 + 20 +22175.429128 + 30 +0.0 + 11 +9751.200712 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +815 + 8 +0 + 62 + 0 + 10 +9799.99996 + 20 +22153.778493 + 30 +0.0 + 11 +9787.49996 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +816 + 8 +0 + 62 + 0 + 10 +9837.49996 + 20 +22132.127858 + 30 +0.0 + 11 +9824.99996 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +817 + 8 +0 + 62 + 0 + 10 +9872.388733 + 20 +22115.0 + 30 +0.0 + 11 +9862.49996 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +818 + 8 +0 + 62 + 0 + 10 +9837.49996 + 20 +22175.429128 + 30 +0.0 + 11 +9826.200712 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +819 + 8 +0 + 62 + 0 + 10 +9874.99996 + 20 +22153.778493 + 30 +0.0 + 11 +9862.49996 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +81A + 8 +0 + 62 + 0 + 10 +9912.49996 + 20 +22132.127858 + 30 +0.0 + 11 +9899.99996 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +81B + 8 +0 + 62 + 0 + 10 +9947.388733 + 20 +22115.0 + 30 +0.0 + 11 +9937.499959 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +81C + 8 +0 + 62 + 0 + 10 +9912.499959 + 20 +22175.429128 + 30 +0.0 + 11 +9901.200711 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +81D + 8 +0 + 62 + 0 + 10 +9949.999959 + 20 +22153.778493 + 30 +0.0 + 11 +9937.499959 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +81E + 8 +0 + 62 + 0 + 10 +9987.499959 + 20 +22132.127858 + 30 +0.0 + 11 +9974.999959 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +81F + 8 +0 + 62 + 0 + 10 +10022.388732 + 20 +22115.0 + 30 +0.0 + 11 +10012.499959 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +820 + 8 +0 + 62 + 0 + 10 +9987.499959 + 20 +22175.429128 + 30 +0.0 + 11 +9976.200711 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +821 + 8 +0 + 62 + 0 + 10 +10024.999959 + 20 +22153.778493 + 30 +0.0 + 11 +10012.499959 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +822 + 8 +0 + 62 + 0 + 10 +10062.499959 + 20 +22132.127858 + 30 +0.0 + 11 +10049.999959 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +823 + 8 +0 + 62 + 0 + 10 +10097.388732 + 20 +22115.0 + 30 +0.0 + 11 +10087.499959 + 21 +22132.127858 + 31 +0.0 + 0 +LINE + 5 +824 + 8 +0 + 62 + 0 + 10 +10062.499959 + 20 +22175.429128 + 30 +0.0 + 11 +10051.200711 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +825 + 8 +0 + 62 + 0 + 10 +10099.999959 + 20 +22153.778493 + 30 +0.0 + 11 +10087.499959 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +826 + 8 +0 + 62 + 0 + 10 +10137.499959 + 20 +22132.127857 + 30 +0.0 + 11 +10124.999959 + 21 +22153.778493 + 31 +0.0 + 0 +LINE + 5 +827 + 8 +0 + 62 + 0 + 10 +10172.388732 + 20 +22115.0 + 30 +0.0 + 11 +10162.499959 + 21 +22132.127857 + 31 +0.0 + 0 +LINE + 5 +828 + 8 +0 + 62 + 0 + 10 +10137.499959 + 20 +22175.429128 + 30 +0.0 + 11 +10126.20071 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +829 + 8 +0 + 62 + 0 + 10 +10174.999959 + 20 +22153.778492 + 30 +0.0 + 11 +10162.499959 + 21 +22175.429128 + 31 +0.0 + 0 +LINE + 5 +82A + 8 +0 + 62 + 0 + 10 +10212.499959 + 20 +22132.127857 + 30 +0.0 + 11 +10199.999959 + 21 +22153.778492 + 31 +0.0 + 0 +LINE + 5 +82B + 8 +0 + 62 + 0 + 10 +10247.388731 + 20 +22115.0 + 30 +0.0 + 11 +10237.499958 + 21 +22132.127857 + 31 +0.0 + 0 +LINE + 5 +82C + 8 +0 + 62 + 0 + 10 +10212.499958 + 20 +22175.429127 + 30 +0.0 + 11 +10201.20071 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +82D + 8 +0 + 62 + 0 + 10 +10249.999958 + 20 +22153.778492 + 30 +0.0 + 11 +10237.499958 + 21 +22175.429127 + 31 +0.0 + 0 +LINE + 5 +82E + 8 +0 + 62 + 0 + 10 +9375.00001 + 20 +22153.778511 + 30 +0.0 + 11 +9387.50001 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +82F + 8 +0 + 62 + 0 + 10 +9337.50001 + 20 +22132.127875 + 30 +0.0 + 11 +9350.00001 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +830 + 8 +0 + 62 + 0 + 10 +9302.611227 + 20 +22115.0 + 30 +0.0 + 11 +9312.50001 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +831 + 8 +0 + 62 + 0 + 10 +9337.50001 + 20 +22175.429146 + 30 +0.0 + 11 +9348.799248 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +832 + 8 +0 + 62 + 0 + 10 +9300.00001 + 20 +22153.77851 + 30 +0.0 + 11 +9312.50001 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +833 + 8 +0 + 62 + 0 + 10 +9262.50001 + 20 +22132.127875 + 30 +0.0 + 11 +9275.00001 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +834 + 8 +0 + 62 + 0 + 10 +9227.611227 + 20 +22115.0 + 30 +0.0 + 11 +9237.50001 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +835 + 8 +0 + 62 + 0 + 10 +9262.50001 + 20 +22175.429145 + 30 +0.0 + 11 +9273.799249 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +836 + 8 +0 + 62 + 0 + 10 +9225.000011 + 20 +22153.77851 + 30 +0.0 + 11 +9237.500011 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +837 + 8 +0 + 62 + 0 + 10 +9187.500011 + 20 +22132.127875 + 30 +0.0 + 11 +9200.000011 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +838 + 8 +0 + 62 + 0 + 10 +9152.611227 + 20 +22115.0 + 30 +0.0 + 11 +9162.500011 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +839 + 8 +0 + 62 + 0 + 10 +9187.500011 + 20 +22175.429145 + 30 +0.0 + 11 +9198.799249 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +83A + 8 +0 + 62 + 0 + 10 +9150.000011 + 20 +22153.77851 + 30 +0.0 + 11 +9162.500011 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +83B + 8 +0 + 62 + 0 + 10 +9112.500011 + 20 +22132.127875 + 30 +0.0 + 11 +9125.000011 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +83C + 8 +0 + 62 + 0 + 10 +9077.611228 + 20 +22115.0 + 30 +0.0 + 11 +9087.500011 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +83D + 8 +0 + 62 + 0 + 10 +9112.500011 + 20 +22175.429145 + 30 +0.0 + 11 +9123.799249 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +83E + 8 +0 + 62 + 0 + 10 +9075.000011 + 20 +22153.77851 + 30 +0.0 + 11 +9087.500011 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +83F + 8 +0 + 62 + 0 + 10 +9037.500011 + 20 +22132.127875 + 30 +0.0 + 11 +9050.000011 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +840 + 8 +0 + 62 + 0 + 10 +9002.611228 + 20 +22115.0 + 30 +0.0 + 11 +9012.500011 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +841 + 8 +0 + 62 + 0 + 10 +9037.500011 + 20 +22175.429145 + 30 +0.0 + 11 +9048.79925 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +842 + 8 +0 + 62 + 0 + 10 +9000.000011 + 20 +22153.77851 + 30 +0.0 + 11 +9012.500011 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +843 + 8 +0 + 62 + 0 + 10 +8962.500011 + 20 +22132.127875 + 30 +0.0 + 11 +8975.000011 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +844 + 8 +0 + 62 + 0 + 10 +8927.611228 + 20 +22115.0 + 30 +0.0 + 11 +8937.500011 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +845 + 8 +0 + 62 + 0 + 10 +8962.500011 + 20 +22175.429145 + 30 +0.0 + 11 +8973.79925 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +846 + 8 +0 + 62 + 0 + 10 +8925.000012 + 20 +22153.77851 + 30 +0.0 + 11 +8937.500012 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +847 + 8 +0 + 62 + 0 + 10 +8887.500012 + 20 +22132.127875 + 30 +0.0 + 11 +8900.000012 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +848 + 8 +0 + 62 + 0 + 10 +8852.611229 + 20 +22115.0 + 30 +0.0 + 11 +8862.500012 + 21 +22132.127875 + 31 +0.0 + 0 +LINE + 5 +849 + 8 +0 + 62 + 0 + 10 +8887.500012 + 20 +22175.429145 + 30 +0.0 + 11 +8898.79925 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +84A + 8 +0 + 62 + 0 + 10 +8850.000012 + 20 +22153.77851 + 30 +0.0 + 11 +8862.500012 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +84B + 8 +0 + 62 + 0 + 10 +8812.500012 + 20 +22132.127874 + 30 +0.0 + 11 +8825.000012 + 21 +22153.77851 + 31 +0.0 + 0 +LINE + 5 +84C + 8 +0 + 62 + 0 + 10 +8777.611229 + 20 +22115.0 + 30 +0.0 + 11 +8787.500012 + 21 +22132.127874 + 31 +0.0 + 0 +LINE + 5 +84D + 8 +0 + 62 + 0 + 10 +8812.500012 + 20 +22175.429145 + 30 +0.0 + 11 +8823.799251 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +84E + 8 +0 + 62 + 0 + 10 +8775.000012 + 20 +22153.778509 + 30 +0.0 + 11 +8787.500012 + 21 +22175.429145 + 31 +0.0 + 0 +LINE + 5 +84F + 8 +0 + 62 + 0 + 10 +8737.500012 + 20 +22132.127874 + 30 +0.0 + 11 +8750.000012 + 21 +22153.778509 + 31 +0.0 + 0 +LINE + 5 +850 + 8 +0 + 62 + 0 + 10 +8702.611229 + 20 +22115.0 + 30 +0.0 + 11 +8712.500012 + 21 +22132.127874 + 31 +0.0 + 0 +LINE + 5 +851 + 8 +0 + 62 + 0 + 10 +8737.500012 + 20 +22175.429144 + 30 +0.0 + 11 +8748.799251 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +852 + 8 +0 + 62 + 0 + 10 +8700.000012 + 20 +22153.778509 + 30 +0.0 + 11 +8712.500012 + 21 +22175.429144 + 31 +0.0 + 0 +LINE + 5 +853 + 8 +0 + 62 + 0 + 10 +8662.500012 + 20 +22132.127874 + 30 +0.0 + 11 +8675.000012 + 21 +22153.778509 + 31 +0.0 + 0 +LINE + 5 +854 + 8 +0 + 62 + 0 + 10 +8627.61123 + 20 +22115.0 + 30 +0.0 + 11 +8637.500012 + 21 +22132.127874 + 31 +0.0 + 0 +LINE + 5 +855 + 8 +0 + 62 + 0 + 10 +8662.500012 + 20 +22175.429144 + 30 +0.0 + 11 +8673.799251 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +856 + 8 +0 + 62 + 0 + 10 +8625.000013 + 20 +22153.778509 + 30 +0.0 + 11 +8637.500013 + 21 +22175.429144 + 31 +0.0 + 0 +LINE + 5 +857 + 8 +0 + 62 + 0 + 10 +8587.500013 + 20 +22132.127874 + 30 +0.0 + 11 +8600.000013 + 21 +22153.778509 + 31 +0.0 + 0 +LINE + 5 +858 + 8 +0 + 62 + 0 + 10 +8552.61123 + 20 +22115.0 + 30 +0.0 + 11 +8562.500013 + 21 +22132.127874 + 31 +0.0 + 0 +LINE + 5 +859 + 8 +0 + 62 + 0 + 10 +8587.500013 + 20 +22175.429144 + 30 +0.0 + 11 +8598.799252 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +85A + 8 +0 + 62 + 0 + 10 +8550.000013 + 20 +22153.778509 + 30 +0.0 + 11 +8562.500013 + 21 +22175.429144 + 31 +0.0 + 0 +LINE + 5 +85B + 8 +0 + 62 + 0 + 10 +8512.500013 + 20 +22132.127874 + 30 +0.0 + 11 +8525.000013 + 21 +22153.778509 + 31 +0.0 + 0 +LINE + 5 +85C + 8 +0 + 62 + 0 + 10 +8512.500013 + 20 +22175.429144 + 30 +0.0 + 11 +8523.799252 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +85D + 8 +0 + 62 + 0 + 10 +9377.611226 + 20 +22115.0 + 30 +0.0 + 11 +9387.50001 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +85E + 8 +0 + 62 + 0 + 10 +9412.50001 + 20 +22175.429146 + 30 +0.0 + 11 +9423.799248 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +85F + 8 +0 + 62 + 0 + 10 +9412.50001 + 20 +22132.127876 + 30 +0.0 + 11 +9425.00001 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +860 + 8 +0 + 62 + 0 + 10 +9450.00001 + 20 +22153.778511 + 30 +0.0 + 11 +9462.50001 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +861 + 8 +0 + 62 + 0 + 10 +9452.611226 + 20 +22115.0 + 30 +0.0 + 11 +9462.50001 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +862 + 8 +0 + 62 + 0 + 10 +9487.50001 + 20 +22175.429146 + 30 +0.0 + 11 +9498.799248 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +863 + 8 +0 + 62 + 0 + 10 +9487.50001 + 20 +22132.127876 + 30 +0.0 + 11 +9500.00001 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +864 + 8 +0 + 62 + 0 + 10 +9525.00001 + 20 +22153.778511 + 30 +0.0 + 11 +9537.50001 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +865 + 8 +0 + 62 + 0 + 10 +9527.611226 + 20 +22115.0 + 30 +0.0 + 11 +9537.50001 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +866 + 8 +0 + 62 + 0 + 10 +9562.50001 + 20 +22175.429146 + 30 +0.0 + 11 +9573.799247 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +867 + 8 +0 + 62 + 0 + 10 +9562.500009 + 20 +22132.127876 + 30 +0.0 + 11 +9575.000009 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +868 + 8 +0 + 62 + 0 + 10 +9600.000009 + 20 +22153.778511 + 30 +0.0 + 11 +9612.500009 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +869 + 8 +0 + 62 + 0 + 10 +9602.611225 + 20 +22115.0 + 30 +0.0 + 11 +9612.500009 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +86A + 8 +0 + 62 + 0 + 10 +9637.500009 + 20 +22175.429146 + 30 +0.0 + 11 +9648.799247 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +86B + 8 +0 + 62 + 0 + 10 +9637.500009 + 20 +22132.127876 + 30 +0.0 + 11 +9650.000009 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +86C + 8 +0 + 62 + 0 + 10 +9675.000009 + 20 +22153.778511 + 30 +0.0 + 11 +9687.500009 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +86D + 8 +0 + 62 + 0 + 10 +9677.611225 + 20 +22115.0 + 30 +0.0 + 11 +9687.500009 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +86E + 8 +0 + 62 + 0 + 10 +9712.500009 + 20 +22175.429146 + 30 +0.0 + 11 +9723.799247 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +86F + 8 +0 + 62 + 0 + 10 +9712.500009 + 20 +22132.127876 + 30 +0.0 + 11 +9725.000009 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +870 + 8 +0 + 62 + 0 + 10 +9750.000009 + 20 +22153.778511 + 30 +0.0 + 11 +9762.500009 + 21 +22175.429146 + 31 +0.0 + 0 +LINE + 5 +871 + 8 +0 + 62 + 0 + 10 +9752.611225 + 20 +22115.0 + 30 +0.0 + 11 +9762.500009 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +872 + 8 +0 + 62 + 0 + 10 +9787.500009 + 20 +22175.429146 + 30 +0.0 + 11 +9798.799246 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +873 + 8 +0 + 62 + 0 + 10 +9787.500009 + 20 +22132.127876 + 30 +0.0 + 11 +9800.000009 + 21 +22153.778511 + 31 +0.0 + 0 +LINE + 5 +874 + 8 +0 + 62 + 0 + 10 +9825.000009 + 20 +22153.778511 + 30 +0.0 + 11 +9837.500009 + 21 +22175.429147 + 31 +0.0 + 0 +LINE + 5 +875 + 8 +0 + 62 + 0 + 10 +9827.611224 + 20 +22115.0 + 30 +0.0 + 11 +9837.500009 + 21 +22132.127876 + 31 +0.0 + 0 +LINE + 5 +876 + 8 +0 + 62 + 0 + 10 +9862.500009 + 20 +22175.429147 + 30 +0.0 + 11 +9873.799246 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +877 + 8 +0 + 62 + 0 + 10 +9862.500008 + 20 +22132.127876 + 30 +0.0 + 11 +9875.000008 + 21 +22153.778512 + 31 +0.0 + 0 +LINE + 5 +878 + 8 +0 + 62 + 0 + 10 +9900.000008 + 20 +22153.778512 + 30 +0.0 + 11 +9912.500008 + 21 +22175.429147 + 31 +0.0 + 0 +LINE + 5 +879 + 8 +0 + 62 + 0 + 10 +9902.611224 + 20 +22115.0 + 30 +0.0 + 11 +9912.500008 + 21 +22132.127877 + 31 +0.0 + 0 +LINE + 5 +87A + 8 +0 + 62 + 0 + 10 +9937.500008 + 20 +22175.429147 + 30 +0.0 + 11 +9948.799246 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +87B + 8 +0 + 62 + 0 + 10 +9937.500008 + 20 +22132.127877 + 30 +0.0 + 11 +9950.000008 + 21 +22153.778512 + 31 +0.0 + 0 +LINE + 5 +87C + 8 +0 + 62 + 0 + 10 +9975.000008 + 20 +22153.778512 + 30 +0.0 + 11 +9987.500008 + 21 +22175.429147 + 31 +0.0 + 0 +LINE + 5 +87D + 8 +0 + 62 + 0 + 10 +9977.611224 + 20 +22115.0 + 30 +0.0 + 11 +9987.500008 + 21 +22132.127877 + 31 +0.0 + 0 +LINE + 5 +87E + 8 +0 + 62 + 0 + 10 +10012.500008 + 20 +22175.429147 + 30 +0.0 + 11 +10023.799245 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +87F + 8 +0 + 62 + 0 + 10 +10012.500008 + 20 +22132.127877 + 30 +0.0 + 11 +10025.000008 + 21 +22153.778512 + 31 +0.0 + 0 +LINE + 5 +880 + 8 +0 + 62 + 0 + 10 +10050.000008 + 20 +22153.778512 + 30 +0.0 + 11 +10062.500008 + 21 +22175.429147 + 31 +0.0 + 0 +LINE + 5 +881 + 8 +0 + 62 + 0 + 10 +10052.611224 + 20 +22115.0 + 30 +0.0 + 11 +10062.500008 + 21 +22132.127877 + 31 +0.0 + 0 +LINE + 5 +882 + 8 +0 + 62 + 0 + 10 +10087.500008 + 20 +22175.429147 + 30 +0.0 + 11 +10098.799245 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +883 + 8 +0 + 62 + 0 + 10 +10087.500008 + 20 +22132.127877 + 30 +0.0 + 11 +10100.000008 + 21 +22153.778512 + 31 +0.0 + 0 +LINE + 5 +884 + 8 +0 + 62 + 0 + 10 +10125.000008 + 20 +22153.778512 + 30 +0.0 + 11 +10137.500008 + 21 +22175.429147 + 31 +0.0 + 0 +LINE + 5 +885 + 8 +0 + 62 + 0 + 10 +10127.611223 + 20 +22115.0 + 30 +0.0 + 11 +10137.500008 + 21 +22132.127877 + 31 +0.0 + 0 +LINE + 5 +886 + 8 +0 + 62 + 0 + 10 +10162.500008 + 20 +22175.429147 + 30 +0.0 + 11 +10173.799245 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +887 + 8 +0 + 62 + 0 + 10 +10162.500007 + 20 +22132.127877 + 30 +0.0 + 11 +10175.000007 + 21 +22153.778512 + 31 +0.0 + 0 +LINE + 5 +888 + 8 +0 + 62 + 0 + 10 +10200.000007 + 20 +22153.778512 + 30 +0.0 + 11 +10212.500007 + 21 +22175.429147 + 31 +0.0 + 0 +LINE + 5 +889 + 8 +0 + 62 + 0 + 10 +10202.611223 + 20 +22115.0 + 30 +0.0 + 11 +10212.500007 + 21 +22132.127877 + 31 +0.0 + 0 +LINE + 5 +88A + 8 +0 + 62 + 0 + 10 +10237.500007 + 20 +22175.429147 + 30 +0.0 + 11 +10248.799244 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +88B + 8 +0 + 62 + 0 + 10 +10237.500007 + 20 +22132.127877 + 30 +0.0 + 11 +10250.000007 + 21 +22153.778512 + 31 +0.0 + 0 +ENDBLK + 5 +88C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X41 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X41 + 1 + + 0 +LINE + 5 +88E + 8 +0 + 62 + 0 + 10 +11238.75 + 20 +22153.77846 + 30 +0.0 + 11 +11250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +88F + 8 +0 + 62 + 0 + 10 +11300.0 + 20 +22153.77846 + 30 +0.0 + 11 +11325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +890 + 8 +0 + 62 + 0 + 10 +11375.0 + 20 +22153.77846 + 30 +0.0 + 11 +11400.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +891 + 8 +0 + 62 + 0 + 10 +11450.0 + 20 +22153.77846 + 30 +0.0 + 11 +11475.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +892 + 8 +0 + 62 + 0 + 10 +11525.0 + 20 +22153.77846 + 30 +0.0 + 11 +11550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +893 + 8 +0 + 62 + 0 + 10 +11600.0 + 20 +22153.77846 + 30 +0.0 + 11 +11625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +894 + 8 +0 + 62 + 0 + 10 +11675.0 + 20 +22153.77846 + 30 +0.0 + 11 +11700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +895 + 8 +0 + 62 + 0 + 10 +11750.0 + 20 +22153.77846 + 30 +0.0 + 11 +11775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +896 + 8 +0 + 62 + 0 + 10 +11825.0 + 20 +22153.77846 + 30 +0.0 + 11 +11850.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +897 + 8 +0 + 62 + 0 + 10 +11900.0 + 20 +22153.77846 + 30 +0.0 + 11 +11925.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +898 + 8 +0 + 62 + 0 + 10 +11975.0 + 20 +22153.77846 + 30 +0.0 + 11 +12000.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +899 + 8 +0 + 62 + 0 + 10 +12050.0 + 20 +22153.77846 + 30 +0.0 + 11 +12075.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +89A + 8 +0 + 62 + 0 + 10 +12125.0 + 20 +22153.77846 + 30 +0.0 + 11 +12150.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +89B + 8 +0 + 62 + 0 + 10 +12200.0 + 20 +22153.77846 + 30 +0.0 + 11 +12225.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +89C + 8 +0 + 62 + 0 + 10 +12275.0 + 20 +22153.77846 + 30 +0.0 + 11 +12300.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +89D + 8 +0 + 62 + 0 + 10 +12350.0 + 20 +22153.77846 + 30 +0.0 + 11 +12375.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +89E + 8 +0 + 62 + 0 + 10 +12425.0 + 20 +22153.77846 + 30 +0.0 + 11 +12450.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +89F + 8 +0 + 62 + 0 + 10 +12500.0 + 20 +22153.77846 + 30 +0.0 + 11 +12525.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A0 + 8 +0 + 62 + 0 + 10 +12575.0 + 20 +22153.77846 + 30 +0.0 + 11 +12600.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A1 + 8 +0 + 62 + 0 + 10 +12650.0 + 20 +22153.77846 + 30 +0.0 + 11 +12675.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A2 + 8 +0 + 62 + 0 + 10 +12725.0 + 20 +22153.77846 + 30 +0.0 + 11 +12750.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A3 + 8 +0 + 62 + 0 + 10 +12800.0 + 20 +22153.77846 + 30 +0.0 + 11 +12825.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A4 + 8 +0 + 62 + 0 + 10 +12875.0 + 20 +22153.77846 + 30 +0.0 + 11 +12900.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A5 + 8 +0 + 62 + 0 + 10 +12950.0 + 20 +22153.77846 + 30 +0.0 + 11 +12975.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A6 + 8 +0 + 62 + 0 + 10 +13025.0 + 20 +22153.77846 + 30 +0.0 + 11 +13050.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A7 + 8 +0 + 62 + 0 + 10 +13100.0 + 20 +22153.77846 + 30 +0.0 + 11 +13125.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A8 + 8 +0 + 62 + 0 + 10 +13175.0 + 20 +22153.77846 + 30 +0.0 + 11 +13200.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8A9 + 8 +0 + 62 + 0 + 10 +13250.0 + 20 +22153.77846 + 30 +0.0 + 11 +13275.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8AA + 8 +0 + 62 + 0 + 10 +13325.0 + 20 +22153.77846 + 30 +0.0 + 11 +13350.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8AB + 8 +0 + 62 + 0 + 10 +13400.0 + 20 +22153.77846 + 30 +0.0 + 11 +13425.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8AC + 8 +0 + 62 + 0 + 10 +13475.0 + 20 +22153.77846 + 30 +0.0 + 11 +13500.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8AD + 8 +0 + 62 + 0 + 10 +13550.0 + 20 +22153.77846 + 30 +0.0 + 11 +13575.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8AE + 8 +0 + 62 + 0 + 10 +13625.0 + 20 +22153.77846 + 30 +0.0 + 11 +13650.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8AF + 8 +0 + 62 + 0 + 10 +13700.0 + 20 +22153.77846 + 30 +0.0 + 11 +13725.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B0 + 8 +0 + 62 + 0 + 10 +13775.0 + 20 +22153.77846 + 30 +0.0 + 11 +13800.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B1 + 8 +0 + 62 + 0 + 10 +13850.0 + 20 +22153.77846 + 30 +0.0 + 11 +13875.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B2 + 8 +0 + 62 + 0 + 10 +13925.0 + 20 +22153.77846 + 30 +0.0 + 11 +13950.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B3 + 8 +0 + 62 + 0 + 10 +14000.0 + 20 +22153.77846 + 30 +0.0 + 11 +14025.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B4 + 8 +0 + 62 + 0 + 10 +14075.0 + 20 +22153.77846 + 30 +0.0 + 11 +14100.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B5 + 8 +0 + 62 + 0 + 10 +14150.0 + 20 +22153.77846 + 30 +0.0 + 11 +14175.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B6 + 8 +0 + 62 + 0 + 10 +14225.0 + 20 +22153.77846 + 30 +0.0 + 11 +14250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B7 + 8 +0 + 62 + 0 + 10 +14300.0 + 20 +22153.77846 + 30 +0.0 + 11 +14325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B8 + 8 +0 + 62 + 0 + 10 +14375.0 + 20 +22153.77846 + 30 +0.0 + 11 +14400.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8B9 + 8 +0 + 62 + 0 + 10 +14450.0 + 20 +22153.77846 + 30 +0.0 + 11 +14475.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8BA + 8 +0 + 62 + 0 + 10 +14525.0 + 20 +22153.77846 + 30 +0.0 + 11 +14550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8BB + 8 +0 + 62 + 0 + 10 +14600.0 + 20 +22153.77846 + 30 +0.0 + 11 +14625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8BC + 8 +0 + 62 + 0 + 10 +14675.0 + 20 +22153.77846 + 30 +0.0 + 11 +14700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8BD + 8 +0 + 62 + 0 + 10 +14750.0 + 20 +22153.77846 + 30 +0.0 + 11 +14775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8BE + 8 +0 + 62 + 0 + 10 +14825.0 + 20 +22153.77846 + 30 +0.0 + 11 +14850.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8BF + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +22153.77846 + 30 +0.0 + 11 +14925.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C0 + 8 +0 + 62 + 0 + 10 +14975.0 + 20 +22153.77846 + 30 +0.0 + 11 +15000.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C1 + 8 +0 + 62 + 0 + 10 +15050.0 + 20 +22153.77846 + 30 +0.0 + 11 +15075.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C2 + 8 +0 + 62 + 0 + 10 +15125.0 + 20 +22153.77846 + 30 +0.0 + 11 +15150.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C3 + 8 +0 + 62 + 0 + 10 +15200.0 + 20 +22153.77846 + 30 +0.0 + 11 +15225.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C4 + 8 +0 + 62 + 0 + 10 +15275.0 + 20 +22153.77846 + 30 +0.0 + 11 +15300.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C5 + 8 +0 + 62 + 0 + 10 +15350.0 + 20 +22153.77846 + 30 +0.0 + 11 +15375.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C6 + 8 +0 + 62 + 0 + 10 +15425.0 + 20 +22153.77846 + 30 +0.0 + 11 +15450.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C7 + 8 +0 + 62 + 0 + 10 +15500.0 + 20 +22153.77846 + 30 +0.0 + 11 +15525.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C8 + 8 +0 + 62 + 0 + 10 +15575.0 + 20 +22153.77846 + 30 +0.0 + 11 +15600.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8C9 + 8 +0 + 62 + 0 + 10 +15650.0 + 20 +22153.77846 + 30 +0.0 + 11 +15675.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8CA + 8 +0 + 62 + 0 + 10 +15725.0 + 20 +22153.77846 + 30 +0.0 + 11 +15750.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8CB + 8 +0 + 62 + 0 + 10 +15800.0 + 20 +22153.77846 + 30 +0.0 + 11 +15825.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8CC + 8 +0 + 62 + 0 + 10 +15875.0 + 20 +22153.77846 + 30 +0.0 + 11 +15876.25 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +8CD + 8 +0 + 62 + 0 + 10 +11262.5 + 20 +22175.429095 + 30 +0.0 + 11 +11287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8CE + 8 +0 + 62 + 0 + 10 +11337.5 + 20 +22175.429095 + 30 +0.0 + 11 +11362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8CF + 8 +0 + 62 + 0 + 10 +11412.5 + 20 +22175.429095 + 30 +0.0 + 11 +11437.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D0 + 8 +0 + 62 + 0 + 10 +11487.5 + 20 +22175.429095 + 30 +0.0 + 11 +11512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D1 + 8 +0 + 62 + 0 + 10 +11562.5 + 20 +22175.429095 + 30 +0.0 + 11 +11587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D2 + 8 +0 + 62 + 0 + 10 +11637.5 + 20 +22175.429095 + 30 +0.0 + 11 +11662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D3 + 8 +0 + 62 + 0 + 10 +11712.5 + 20 +22175.429095 + 30 +0.0 + 11 +11737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D4 + 8 +0 + 62 + 0 + 10 +11787.5 + 20 +22175.429095 + 30 +0.0 + 11 +11812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D5 + 8 +0 + 62 + 0 + 10 +11862.5 + 20 +22175.429095 + 30 +0.0 + 11 +11887.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D6 + 8 +0 + 62 + 0 + 10 +11937.5 + 20 +22175.429095 + 30 +0.0 + 11 +11962.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D7 + 8 +0 + 62 + 0 + 10 +12012.5 + 20 +22175.429095 + 30 +0.0 + 11 +12037.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D8 + 8 +0 + 62 + 0 + 10 +12087.5 + 20 +22175.429095 + 30 +0.0 + 11 +12112.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8D9 + 8 +0 + 62 + 0 + 10 +12162.5 + 20 +22175.429095 + 30 +0.0 + 11 +12187.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8DA + 8 +0 + 62 + 0 + 10 +12237.5 + 20 +22175.429095 + 30 +0.0 + 11 +12262.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8DB + 8 +0 + 62 + 0 + 10 +12312.5 + 20 +22175.429095 + 30 +0.0 + 11 +12337.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8DC + 8 +0 + 62 + 0 + 10 +12387.5 + 20 +22175.429095 + 30 +0.0 + 11 +12412.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8DD + 8 +0 + 62 + 0 + 10 +12462.5 + 20 +22175.429095 + 30 +0.0 + 11 +12487.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8DE + 8 +0 + 62 + 0 + 10 +12537.5 + 20 +22175.429095 + 30 +0.0 + 11 +12562.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8DF + 8 +0 + 62 + 0 + 10 +12612.5 + 20 +22175.429095 + 30 +0.0 + 11 +12637.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E0 + 8 +0 + 62 + 0 + 10 +12687.5 + 20 +22175.429095 + 30 +0.0 + 11 +12712.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E1 + 8 +0 + 62 + 0 + 10 +12762.5 + 20 +22175.429095 + 30 +0.0 + 11 +12787.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E2 + 8 +0 + 62 + 0 + 10 +12837.5 + 20 +22175.429095 + 30 +0.0 + 11 +12862.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E3 + 8 +0 + 62 + 0 + 10 +12912.5 + 20 +22175.429095 + 30 +0.0 + 11 +12937.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E4 + 8 +0 + 62 + 0 + 10 +12987.5 + 20 +22175.429095 + 30 +0.0 + 11 +13012.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E5 + 8 +0 + 62 + 0 + 10 +13062.5 + 20 +22175.429095 + 30 +0.0 + 11 +13087.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E6 + 8 +0 + 62 + 0 + 10 +13137.5 + 20 +22175.429095 + 30 +0.0 + 11 +13162.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E7 + 8 +0 + 62 + 0 + 10 +13212.5 + 20 +22175.429095 + 30 +0.0 + 11 +13237.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E8 + 8 +0 + 62 + 0 + 10 +13287.5 + 20 +22175.429095 + 30 +0.0 + 11 +13312.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8E9 + 8 +0 + 62 + 0 + 10 +13362.5 + 20 +22175.429095 + 30 +0.0 + 11 +13387.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8EA + 8 +0 + 62 + 0 + 10 +13437.5 + 20 +22175.429095 + 30 +0.0 + 11 +13462.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8EB + 8 +0 + 62 + 0 + 10 +13512.5 + 20 +22175.429095 + 30 +0.0 + 11 +13537.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8EC + 8 +0 + 62 + 0 + 10 +13587.5 + 20 +22175.429095 + 30 +0.0 + 11 +13612.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8ED + 8 +0 + 62 + 0 + 10 +13662.5 + 20 +22175.429095 + 30 +0.0 + 11 +13687.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8EE + 8 +0 + 62 + 0 + 10 +13737.5 + 20 +22175.429095 + 30 +0.0 + 11 +13762.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8EF + 8 +0 + 62 + 0 + 10 +13812.5 + 20 +22175.429095 + 30 +0.0 + 11 +13837.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F0 + 8 +0 + 62 + 0 + 10 +13887.5 + 20 +22175.429095 + 30 +0.0 + 11 +13912.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F1 + 8 +0 + 62 + 0 + 10 +13962.5 + 20 +22175.429095 + 30 +0.0 + 11 +13987.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F2 + 8 +0 + 62 + 0 + 10 +14037.5 + 20 +22175.429095 + 30 +0.0 + 11 +14062.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F3 + 8 +0 + 62 + 0 + 10 +14112.5 + 20 +22175.429095 + 30 +0.0 + 11 +14137.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F4 + 8 +0 + 62 + 0 + 10 +14187.5 + 20 +22175.429095 + 30 +0.0 + 11 +14212.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F5 + 8 +0 + 62 + 0 + 10 +14262.5 + 20 +22175.429095 + 30 +0.0 + 11 +14287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F6 + 8 +0 + 62 + 0 + 10 +14337.5 + 20 +22175.429095 + 30 +0.0 + 11 +14362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F7 + 8 +0 + 62 + 0 + 10 +14412.5 + 20 +22175.429095 + 30 +0.0 + 11 +14437.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F8 + 8 +0 + 62 + 0 + 10 +14487.5 + 20 +22175.429095 + 30 +0.0 + 11 +14512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8F9 + 8 +0 + 62 + 0 + 10 +14562.5 + 20 +22175.429095 + 30 +0.0 + 11 +14587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8FA + 8 +0 + 62 + 0 + 10 +14637.5 + 20 +22175.429095 + 30 +0.0 + 11 +14662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8FB + 8 +0 + 62 + 0 + 10 +14712.5 + 20 +22175.429095 + 30 +0.0 + 11 +14737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8FC + 8 +0 + 62 + 0 + 10 +14787.5 + 20 +22175.429095 + 30 +0.0 + 11 +14812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8FD + 8 +0 + 62 + 0 + 10 +14862.5 + 20 +22175.429095 + 30 +0.0 + 11 +14887.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8FE + 8 +0 + 62 + 0 + 10 +14937.5 + 20 +22175.429095 + 30 +0.0 + 11 +14962.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +8FF + 8 +0 + 62 + 0 + 10 +15012.5 + 20 +22175.429095 + 30 +0.0 + 11 +15037.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +900 + 8 +0 + 62 + 0 + 10 +15087.5 + 20 +22175.429095 + 30 +0.0 + 11 +15112.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +901 + 8 +0 + 62 + 0 + 10 +15162.5 + 20 +22175.429095 + 30 +0.0 + 11 +15187.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +902 + 8 +0 + 62 + 0 + 10 +15237.5 + 20 +22175.429095 + 30 +0.0 + 11 +15262.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +903 + 8 +0 + 62 + 0 + 10 +15312.5 + 20 +22175.429095 + 30 +0.0 + 11 +15337.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +904 + 8 +0 + 62 + 0 + 10 +15387.5 + 20 +22175.429095 + 30 +0.0 + 11 +15412.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +905 + 8 +0 + 62 + 0 + 10 +15462.5 + 20 +22175.429095 + 30 +0.0 + 11 +15487.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +906 + 8 +0 + 62 + 0 + 10 +15537.5 + 20 +22175.429095 + 30 +0.0 + 11 +15562.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +907 + 8 +0 + 62 + 0 + 10 +15612.5 + 20 +22175.429095 + 30 +0.0 + 11 +15637.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +908 + 8 +0 + 62 + 0 + 10 +15687.5 + 20 +22175.429095 + 30 +0.0 + 11 +15712.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +909 + 8 +0 + 62 + 0 + 10 +15762.5 + 20 +22175.429095 + 30 +0.0 + 11 +15787.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +90A + 8 +0 + 62 + 0 + 10 +15837.5 + 20 +22175.429095 + 30 +0.0 + 11 +15862.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +90B + 8 +0 + 62 + 0 + 10 +11262.5 + 20 +22132.127825 + 30 +0.0 + 11 +11287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +90C + 8 +0 + 62 + 0 + 10 +11337.5 + 20 +22132.127825 + 30 +0.0 + 11 +11362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +90D + 8 +0 + 62 + 0 + 10 +11412.5 + 20 +22132.127825 + 30 +0.0 + 11 +11437.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +90E + 8 +0 + 62 + 0 + 10 +11487.5 + 20 +22132.127825 + 30 +0.0 + 11 +11512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +90F + 8 +0 + 62 + 0 + 10 +11562.5 + 20 +22132.127825 + 30 +0.0 + 11 +11587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +910 + 8 +0 + 62 + 0 + 10 +11637.5 + 20 +22132.127825 + 30 +0.0 + 11 +11662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +911 + 8 +0 + 62 + 0 + 10 +11712.5 + 20 +22132.127825 + 30 +0.0 + 11 +11737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +912 + 8 +0 + 62 + 0 + 10 +11787.5 + 20 +22132.127825 + 30 +0.0 + 11 +11812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +913 + 8 +0 + 62 + 0 + 10 +11862.5 + 20 +22132.127825 + 30 +0.0 + 11 +11887.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +914 + 8 +0 + 62 + 0 + 10 +11937.5 + 20 +22132.127825 + 30 +0.0 + 11 +11962.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +915 + 8 +0 + 62 + 0 + 10 +12012.5 + 20 +22132.127825 + 30 +0.0 + 11 +12037.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +916 + 8 +0 + 62 + 0 + 10 +12087.5 + 20 +22132.127825 + 30 +0.0 + 11 +12112.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +917 + 8 +0 + 62 + 0 + 10 +12162.5 + 20 +22132.127825 + 30 +0.0 + 11 +12187.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +918 + 8 +0 + 62 + 0 + 10 +12237.5 + 20 +22132.127825 + 30 +0.0 + 11 +12262.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +919 + 8 +0 + 62 + 0 + 10 +12312.5 + 20 +22132.127825 + 30 +0.0 + 11 +12337.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +91A + 8 +0 + 62 + 0 + 10 +12387.5 + 20 +22132.127825 + 30 +0.0 + 11 +12412.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +91B + 8 +0 + 62 + 0 + 10 +12462.5 + 20 +22132.127825 + 30 +0.0 + 11 +12487.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +91C + 8 +0 + 62 + 0 + 10 +12537.5 + 20 +22132.127825 + 30 +0.0 + 11 +12562.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +91D + 8 +0 + 62 + 0 + 10 +12612.5 + 20 +22132.127825 + 30 +0.0 + 11 +12637.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +91E + 8 +0 + 62 + 0 + 10 +12687.5 + 20 +22132.127825 + 30 +0.0 + 11 +12712.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +91F + 8 +0 + 62 + 0 + 10 +12762.5 + 20 +22132.127825 + 30 +0.0 + 11 +12787.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +920 + 8 +0 + 62 + 0 + 10 +12837.5 + 20 +22132.127825 + 30 +0.0 + 11 +12862.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +921 + 8 +0 + 62 + 0 + 10 +12912.5 + 20 +22132.127825 + 30 +0.0 + 11 +12937.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +922 + 8 +0 + 62 + 0 + 10 +12987.5 + 20 +22132.127825 + 30 +0.0 + 11 +13012.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +923 + 8 +0 + 62 + 0 + 10 +13062.5 + 20 +22132.127825 + 30 +0.0 + 11 +13087.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +924 + 8 +0 + 62 + 0 + 10 +13137.5 + 20 +22132.127825 + 30 +0.0 + 11 +13162.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +925 + 8 +0 + 62 + 0 + 10 +13212.5 + 20 +22132.127825 + 30 +0.0 + 11 +13237.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +926 + 8 +0 + 62 + 0 + 10 +13287.5 + 20 +22132.127825 + 30 +0.0 + 11 +13312.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +927 + 8 +0 + 62 + 0 + 10 +13362.5 + 20 +22132.127825 + 30 +0.0 + 11 +13387.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +928 + 8 +0 + 62 + 0 + 10 +13437.5 + 20 +22132.127825 + 30 +0.0 + 11 +13462.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +929 + 8 +0 + 62 + 0 + 10 +13512.5 + 20 +22132.127825 + 30 +0.0 + 11 +13537.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +92A + 8 +0 + 62 + 0 + 10 +13587.5 + 20 +22132.127825 + 30 +0.0 + 11 +13612.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +92B + 8 +0 + 62 + 0 + 10 +13662.5 + 20 +22132.127825 + 30 +0.0 + 11 +13687.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +92C + 8 +0 + 62 + 0 + 10 +13737.5 + 20 +22132.127825 + 30 +0.0 + 11 +13762.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +92D + 8 +0 + 62 + 0 + 10 +13812.5 + 20 +22132.127825 + 30 +0.0 + 11 +13837.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +92E + 8 +0 + 62 + 0 + 10 +13887.5 + 20 +22132.127825 + 30 +0.0 + 11 +13912.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +92F + 8 +0 + 62 + 0 + 10 +13962.5 + 20 +22132.127825 + 30 +0.0 + 11 +13987.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +930 + 8 +0 + 62 + 0 + 10 +14037.5 + 20 +22132.127825 + 30 +0.0 + 11 +14062.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +931 + 8 +0 + 62 + 0 + 10 +14112.5 + 20 +22132.127825 + 30 +0.0 + 11 +14137.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +932 + 8 +0 + 62 + 0 + 10 +14187.5 + 20 +22132.127825 + 30 +0.0 + 11 +14212.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +933 + 8 +0 + 62 + 0 + 10 +14262.5 + 20 +22132.127825 + 30 +0.0 + 11 +14287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +934 + 8 +0 + 62 + 0 + 10 +14337.5 + 20 +22132.127825 + 30 +0.0 + 11 +14362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +935 + 8 +0 + 62 + 0 + 10 +14412.5 + 20 +22132.127825 + 30 +0.0 + 11 +14437.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +936 + 8 +0 + 62 + 0 + 10 +14487.5 + 20 +22132.127825 + 30 +0.0 + 11 +14512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +937 + 8 +0 + 62 + 0 + 10 +14562.5 + 20 +22132.127825 + 30 +0.0 + 11 +14587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +938 + 8 +0 + 62 + 0 + 10 +14637.5 + 20 +22132.127825 + 30 +0.0 + 11 +14662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +939 + 8 +0 + 62 + 0 + 10 +14712.5 + 20 +22132.127825 + 30 +0.0 + 11 +14737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +93A + 8 +0 + 62 + 0 + 10 +14787.5 + 20 +22132.127825 + 30 +0.0 + 11 +14812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +93B + 8 +0 + 62 + 0 + 10 +14862.5 + 20 +22132.127825 + 30 +0.0 + 11 +14887.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +93C + 8 +0 + 62 + 0 + 10 +14937.5 + 20 +22132.127825 + 30 +0.0 + 11 +14962.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +93D + 8 +0 + 62 + 0 + 10 +15012.5 + 20 +22132.127825 + 30 +0.0 + 11 +15037.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +93E + 8 +0 + 62 + 0 + 10 +15087.5 + 20 +22132.127825 + 30 +0.0 + 11 +15112.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +93F + 8 +0 + 62 + 0 + 10 +15162.5 + 20 +22132.127825 + 30 +0.0 + 11 +15187.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +940 + 8 +0 + 62 + 0 + 10 +15237.5 + 20 +22132.127825 + 30 +0.0 + 11 +15262.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +941 + 8 +0 + 62 + 0 + 10 +15312.5 + 20 +22132.127825 + 30 +0.0 + 11 +15337.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +942 + 8 +0 + 62 + 0 + 10 +15387.5 + 20 +22132.127825 + 30 +0.0 + 11 +15412.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +943 + 8 +0 + 62 + 0 + 10 +15462.5 + 20 +22132.127825 + 30 +0.0 + 11 +15487.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +944 + 8 +0 + 62 + 0 + 10 +15537.5 + 20 +22132.127825 + 30 +0.0 + 11 +15562.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +945 + 8 +0 + 62 + 0 + 10 +15612.5 + 20 +22132.127825 + 30 +0.0 + 11 +15637.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +946 + 8 +0 + 62 + 0 + 10 +15687.5 + 20 +22132.127825 + 30 +0.0 + 11 +15712.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +947 + 8 +0 + 62 + 0 + 10 +15762.5 + 20 +22132.127825 + 30 +0.0 + 11 +15787.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +948 + 8 +0 + 62 + 0 + 10 +15837.5 + 20 +22132.127825 + 30 +0.0 + 11 +15862.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +949 + 8 +0 + 62 + 0 + 10 +13549.999948 + 20 +22153.778486 + 30 +0.0 + 11 +13537.499948 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +94A + 8 +0 + 62 + 0 + 10 +13547.388717 + 20 +22115.0 + 30 +0.0 + 11 +13537.499948 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +94B + 8 +0 + 62 + 0 + 10 +13512.499948 + 20 +22175.429121 + 30 +0.0 + 11 +13501.200696 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +94C + 8 +0 + 62 + 0 + 10 +13512.499948 + 20 +22132.127851 + 30 +0.0 + 11 +13499.999948 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +94D + 8 +0 + 62 + 0 + 10 +13474.999948 + 20 +22153.778486 + 30 +0.0 + 11 +13462.499948 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +94E + 8 +0 + 62 + 0 + 10 +13472.388717 + 20 +22115.0 + 30 +0.0 + 11 +13462.499948 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +94F + 8 +0 + 62 + 0 + 10 +13437.499948 + 20 +22175.429121 + 30 +0.0 + 11 +13426.200696 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +950 + 8 +0 + 62 + 0 + 10 +13437.499948 + 20 +22132.127851 + 30 +0.0 + 11 +13424.999948 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +951 + 8 +0 + 62 + 0 + 10 +13399.999948 + 20 +22153.778486 + 30 +0.0 + 11 +13387.499948 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +952 + 8 +0 + 62 + 0 + 10 +13397.388718 + 20 +22115.0 + 30 +0.0 + 11 +13387.499948 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +953 + 8 +0 + 62 + 0 + 10 +13362.499948 + 20 +22175.429122 + 30 +0.0 + 11 +13351.200696 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +954 + 8 +0 + 62 + 0 + 10 +13362.499948 + 20 +22132.127851 + 30 +0.0 + 11 +13349.999948 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +955 + 8 +0 + 62 + 0 + 10 +13324.999948 + 20 +22153.778487 + 30 +0.0 + 11 +13312.499948 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +956 + 8 +0 + 62 + 0 + 10 +13322.388718 + 20 +22115.0 + 30 +0.0 + 11 +13312.499948 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +957 + 8 +0 + 62 + 0 + 10 +13287.499948 + 20 +22175.429122 + 30 +0.0 + 11 +13276.200697 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +958 + 8 +0 + 62 + 0 + 10 +13287.499948 + 20 +22132.127852 + 30 +0.0 + 11 +13274.999948 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +959 + 8 +0 + 62 + 0 + 10 +13249.999949 + 20 +22153.778487 + 30 +0.0 + 11 +13237.499949 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +95A + 8 +0 + 62 + 0 + 10 +13247.388718 + 20 +22115.0 + 30 +0.0 + 11 +13237.499949 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +95B + 8 +0 + 62 + 0 + 10 +13212.499949 + 20 +22175.429122 + 30 +0.0 + 11 +13201.200697 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +95C + 8 +0 + 62 + 0 + 10 +13212.499949 + 20 +22132.127852 + 30 +0.0 + 11 +13199.999949 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +95D + 8 +0 + 62 + 0 + 10 +13174.999949 + 20 +22153.778487 + 30 +0.0 + 11 +13162.499949 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +95E + 8 +0 + 62 + 0 + 10 +13172.388719 + 20 +22115.0 + 30 +0.0 + 11 +13162.499949 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +95F + 8 +0 + 62 + 0 + 10 +13137.499949 + 20 +22175.429122 + 30 +0.0 + 11 +13126.200697 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +960 + 8 +0 + 62 + 0 + 10 +13137.499949 + 20 +22132.127852 + 30 +0.0 + 11 +13124.999949 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +961 + 8 +0 + 62 + 0 + 10 +13099.999949 + 20 +22153.778487 + 30 +0.0 + 11 +13087.499949 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +962 + 8 +0 + 62 + 0 + 10 +13097.388719 + 20 +22115.0 + 30 +0.0 + 11 +13087.499949 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +963 + 8 +0 + 62 + 0 + 10 +13062.499949 + 20 +22175.429122 + 30 +0.0 + 11 +13051.200697 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +964 + 8 +0 + 62 + 0 + 10 +13062.499949 + 20 +22132.127852 + 30 +0.0 + 11 +13049.999949 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +965 + 8 +0 + 62 + 0 + 10 +13024.999949 + 20 +22153.778487 + 30 +0.0 + 11 +13012.499949 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +966 + 8 +0 + 62 + 0 + 10 +13022.388719 + 20 +22115.0 + 30 +0.0 + 11 +13012.499949 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +967 + 8 +0 + 62 + 0 + 10 +12987.499949 + 20 +22175.429122 + 30 +0.0 + 11 +12976.200698 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +968 + 8 +0 + 62 + 0 + 10 +12987.499949 + 20 +22132.127852 + 30 +0.0 + 11 +12974.999949 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +969 + 8 +0 + 62 + 0 + 10 +12949.99995 + 20 +22153.778487 + 30 +0.0 + 11 +12937.49995 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +96A + 8 +0 + 62 + 0 + 10 +12947.38872 + 20 +22115.0 + 30 +0.0 + 11 +12937.49995 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +96B + 8 +0 + 62 + 0 + 10 +12912.49995 + 20 +22175.429122 + 30 +0.0 + 11 +12901.200698 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +96C + 8 +0 + 62 + 0 + 10 +12912.49995 + 20 +22132.127852 + 30 +0.0 + 11 +12899.99995 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +96D + 8 +0 + 62 + 0 + 10 +12874.99995 + 20 +22153.778487 + 30 +0.0 + 11 +12862.49995 + 21 +22175.429122 + 31 +0.0 + 0 +LINE + 5 +96E + 8 +0 + 62 + 0 + 10 +12872.38872 + 20 +22115.0 + 30 +0.0 + 11 +12862.49995 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +96F + 8 +0 + 62 + 0 + 10 +12837.49995 + 20 +22175.429123 + 30 +0.0 + 11 +12826.200698 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +970 + 8 +0 + 62 + 0 + 10 +12837.49995 + 20 +22132.127852 + 30 +0.0 + 11 +12824.99995 + 21 +22153.778487 + 31 +0.0 + 0 +LINE + 5 +971 + 8 +0 + 62 + 0 + 10 +12799.99995 + 20 +22153.778488 + 30 +0.0 + 11 +12787.49995 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +972 + 8 +0 + 62 + 0 + 10 +12797.38872 + 20 +22115.0 + 30 +0.0 + 11 +12787.49995 + 21 +22132.127852 + 31 +0.0 + 0 +LINE + 5 +973 + 8 +0 + 62 + 0 + 10 +12762.49995 + 20 +22175.429123 + 30 +0.0 + 11 +12751.200699 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +974 + 8 +0 + 62 + 0 + 10 +12762.49995 + 20 +22132.127853 + 30 +0.0 + 11 +12749.99995 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +975 + 8 +0 + 62 + 0 + 10 +12724.99995 + 20 +22153.778488 + 30 +0.0 + 11 +12712.49995 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +976 + 8 +0 + 62 + 0 + 10 +12722.388721 + 20 +22115.0 + 30 +0.0 + 11 +12712.49995 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +977 + 8 +0 + 62 + 0 + 10 +12687.49995 + 20 +22175.429123 + 30 +0.0 + 11 +12676.200699 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +978 + 8 +0 + 62 + 0 + 10 +12687.49995 + 20 +22132.127853 + 30 +0.0 + 11 +12674.99995 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +979 + 8 +0 + 62 + 0 + 10 +12649.999951 + 20 +22153.778488 + 30 +0.0 + 11 +12637.499951 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +97A + 8 +0 + 62 + 0 + 10 +12647.388721 + 20 +22115.0 + 30 +0.0 + 11 +12637.499951 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +97B + 8 +0 + 62 + 0 + 10 +12612.499951 + 20 +22175.429123 + 30 +0.0 + 11 +12601.200699 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +97C + 8 +0 + 62 + 0 + 10 +12612.499951 + 20 +22132.127853 + 30 +0.0 + 11 +12599.999951 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +97D + 8 +0 + 62 + 0 + 10 +12574.999951 + 20 +22153.778488 + 30 +0.0 + 11 +12562.499951 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +97E + 8 +0 + 62 + 0 + 10 +12572.388721 + 20 +22115.0 + 30 +0.0 + 11 +12562.499951 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +97F + 8 +0 + 62 + 0 + 10 +12537.499951 + 20 +22175.429123 + 30 +0.0 + 11 +12526.2007 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +980 + 8 +0 + 62 + 0 + 10 +12537.499951 + 20 +22132.127853 + 30 +0.0 + 11 +12524.999951 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +981 + 8 +0 + 62 + 0 + 10 +12499.999951 + 20 +22153.778488 + 30 +0.0 + 11 +12487.499951 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +982 + 8 +0 + 62 + 0 + 10 +12497.388722 + 20 +22115.0 + 30 +0.0 + 11 +12487.499951 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +983 + 8 +0 + 62 + 0 + 10 +12462.499951 + 20 +22175.429123 + 30 +0.0 + 11 +12451.2007 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +984 + 8 +0 + 62 + 0 + 10 +12462.499951 + 20 +22132.127853 + 30 +0.0 + 11 +12449.999951 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +985 + 8 +0 + 62 + 0 + 10 +12424.999951 + 20 +22153.778488 + 30 +0.0 + 11 +12412.499951 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +986 + 8 +0 + 62 + 0 + 10 +12422.388722 + 20 +22115.0 + 30 +0.0 + 11 +12412.499951 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +987 + 8 +0 + 62 + 0 + 10 +12387.499951 + 20 +22175.429123 + 30 +0.0 + 11 +12376.2007 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +988 + 8 +0 + 62 + 0 + 10 +12387.499951 + 20 +22132.127853 + 30 +0.0 + 11 +12374.999951 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +989 + 8 +0 + 62 + 0 + 10 +12349.999951 + 20 +22153.778488 + 30 +0.0 + 11 +12337.499951 + 21 +22175.429123 + 31 +0.0 + 0 +LINE + 5 +98A + 8 +0 + 62 + 0 + 10 +12347.388722 + 20 +22115.0 + 30 +0.0 + 11 +12337.499952 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +98B + 8 +0 + 62 + 0 + 10 +12312.499952 + 20 +22175.429124 + 30 +0.0 + 11 +12301.200701 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +98C + 8 +0 + 62 + 0 + 10 +12312.499952 + 20 +22132.127853 + 30 +0.0 + 11 +12299.999952 + 21 +22153.778488 + 31 +0.0 + 0 +LINE + 5 +98D + 8 +0 + 62 + 0 + 10 +12274.999952 + 20 +22153.778489 + 30 +0.0 + 11 +12262.499952 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +98E + 8 +0 + 62 + 0 + 10 +12272.388723 + 20 +22115.0 + 30 +0.0 + 11 +12262.499952 + 21 +22132.127853 + 31 +0.0 + 0 +LINE + 5 +98F + 8 +0 + 62 + 0 + 10 +12237.499952 + 20 +22175.429124 + 30 +0.0 + 11 +12226.200701 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +990 + 8 +0 + 62 + 0 + 10 +12237.499952 + 20 +22132.127854 + 30 +0.0 + 11 +12224.999952 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +991 + 8 +0 + 62 + 0 + 10 +12199.999952 + 20 +22153.778489 + 30 +0.0 + 11 +12187.499952 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +992 + 8 +0 + 62 + 0 + 10 +12197.388723 + 20 +22115.0 + 30 +0.0 + 11 +12187.499952 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +993 + 8 +0 + 62 + 0 + 10 +12162.499952 + 20 +22175.429124 + 30 +0.0 + 11 +12151.200701 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +994 + 8 +0 + 62 + 0 + 10 +12162.499952 + 20 +22132.127854 + 30 +0.0 + 11 +12149.999952 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +995 + 8 +0 + 62 + 0 + 10 +12124.999952 + 20 +22153.778489 + 30 +0.0 + 11 +12112.499952 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +996 + 8 +0 + 62 + 0 + 10 +12122.388723 + 20 +22115.0 + 30 +0.0 + 11 +12112.499952 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +997 + 8 +0 + 62 + 0 + 10 +12087.499952 + 20 +22175.429124 + 30 +0.0 + 11 +12076.200702 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +998 + 8 +0 + 62 + 0 + 10 +12087.499952 + 20 +22132.127854 + 30 +0.0 + 11 +12074.999952 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +999 + 8 +0 + 62 + 0 + 10 +12049.999952 + 20 +22153.778489 + 30 +0.0 + 11 +12037.499952 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +99A + 8 +0 + 62 + 0 + 10 +12047.388724 + 20 +22115.0 + 30 +0.0 + 11 +12037.499953 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +99B + 8 +0 + 62 + 0 + 10 +12012.499953 + 20 +22175.429124 + 30 +0.0 + 11 +12001.200702 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +99C + 8 +0 + 62 + 0 + 10 +12012.499953 + 20 +22132.127854 + 30 +0.0 + 11 +11999.999953 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +99D + 8 +0 + 62 + 0 + 10 +11974.999953 + 20 +22153.778489 + 30 +0.0 + 11 +11962.499953 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +99E + 8 +0 + 62 + 0 + 10 +11972.388724 + 20 +22115.0 + 30 +0.0 + 11 +11962.499953 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +99F + 8 +0 + 62 + 0 + 10 +11937.499953 + 20 +22175.429124 + 30 +0.0 + 11 +11926.200702 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9A0 + 8 +0 + 62 + 0 + 10 +11937.499953 + 20 +22132.127854 + 30 +0.0 + 11 +11924.999953 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +9A1 + 8 +0 + 62 + 0 + 10 +11899.999953 + 20 +22153.778489 + 30 +0.0 + 11 +11887.499953 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +9A2 + 8 +0 + 62 + 0 + 10 +11897.388724 + 20 +22115.0 + 30 +0.0 + 11 +11887.499953 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +9A3 + 8 +0 + 62 + 0 + 10 +11862.499953 + 20 +22175.429124 + 30 +0.0 + 11 +11851.200703 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9A4 + 8 +0 + 62 + 0 + 10 +11862.499953 + 20 +22132.127854 + 30 +0.0 + 11 +11849.999953 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +9A5 + 8 +0 + 62 + 0 + 10 +11824.999953 + 20 +22153.778489 + 30 +0.0 + 11 +11812.499953 + 21 +22175.429124 + 31 +0.0 + 0 +LINE + 5 +9A6 + 8 +0 + 62 + 0 + 10 +11822.388725 + 20 +22115.0 + 30 +0.0 + 11 +11812.499953 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +9A7 + 8 +0 + 62 + 0 + 10 +11787.499953 + 20 +22175.429125 + 30 +0.0 + 11 +11776.200703 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9A8 + 8 +0 + 62 + 0 + 10 +11787.499953 + 20 +22132.127854 + 30 +0.0 + 11 +11774.999953 + 21 +22153.778489 + 31 +0.0 + 0 +LINE + 5 +9A9 + 8 +0 + 62 + 0 + 10 +11749.999953 + 20 +22153.77849 + 30 +0.0 + 11 +11737.499953 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9AA + 8 +0 + 62 + 0 + 10 +11747.388725 + 20 +22115.0 + 30 +0.0 + 11 +11737.499954 + 21 +22132.127854 + 31 +0.0 + 0 +LINE + 5 +9AB + 8 +0 + 62 + 0 + 10 +11712.499954 + 20 +22175.429125 + 30 +0.0 + 11 +11701.200703 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9AC + 8 +0 + 62 + 0 + 10 +11712.499954 + 20 +22132.127855 + 30 +0.0 + 11 +11699.999954 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9AD + 8 +0 + 62 + 0 + 10 +11674.999954 + 20 +22153.77849 + 30 +0.0 + 11 +11662.499954 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9AE + 8 +0 + 62 + 0 + 10 +11672.388725 + 20 +22115.0 + 30 +0.0 + 11 +11662.499954 + 21 +22132.127855 + 31 +0.0 + 0 +LINE + 5 +9AF + 8 +0 + 62 + 0 + 10 +11637.499954 + 20 +22175.429125 + 30 +0.0 + 11 +11626.200704 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9B0 + 8 +0 + 62 + 0 + 10 +11637.499954 + 20 +22132.127855 + 30 +0.0 + 11 +11624.999954 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9B1 + 8 +0 + 62 + 0 + 10 +11599.999954 + 20 +22153.77849 + 30 +0.0 + 11 +11587.499954 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9B2 + 8 +0 + 62 + 0 + 10 +11597.388726 + 20 +22115.0 + 30 +0.0 + 11 +11587.499954 + 21 +22132.127855 + 31 +0.0 + 0 +LINE + 5 +9B3 + 8 +0 + 62 + 0 + 10 +11562.499954 + 20 +22175.429125 + 30 +0.0 + 11 +11551.200704 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9B4 + 8 +0 + 62 + 0 + 10 +11562.499954 + 20 +22132.127855 + 30 +0.0 + 11 +11549.999954 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9B5 + 8 +0 + 62 + 0 + 10 +11524.999954 + 20 +22153.77849 + 30 +0.0 + 11 +11512.499954 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9B6 + 8 +0 + 62 + 0 + 10 +11522.388726 + 20 +22115.0 + 30 +0.0 + 11 +11512.499954 + 21 +22132.127855 + 31 +0.0 + 0 +LINE + 5 +9B7 + 8 +0 + 62 + 0 + 10 +11487.499954 + 20 +22175.429125 + 30 +0.0 + 11 +11476.200704 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9B8 + 8 +0 + 62 + 0 + 10 +11487.499954 + 20 +22132.127855 + 30 +0.0 + 11 +11474.999954 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9B9 + 8 +0 + 62 + 0 + 10 +11449.999954 + 20 +22153.77849 + 30 +0.0 + 11 +11437.499954 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9BA + 8 +0 + 62 + 0 + 10 +11447.388726 + 20 +22115.0 + 30 +0.0 + 11 +11437.499955 + 21 +22132.127855 + 31 +0.0 + 0 +LINE + 5 +9BB + 8 +0 + 62 + 0 + 10 +11412.499955 + 20 +22175.429125 + 30 +0.0 + 11 +11401.200705 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9BC + 8 +0 + 62 + 0 + 10 +11412.499955 + 20 +22132.127855 + 30 +0.0 + 11 +11399.999955 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9BD + 8 +0 + 62 + 0 + 10 +11374.999955 + 20 +22153.77849 + 30 +0.0 + 11 +11362.499955 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9BE + 8 +0 + 62 + 0 + 10 +11372.388727 + 20 +22115.0 + 30 +0.0 + 11 +11362.499955 + 21 +22132.127855 + 31 +0.0 + 0 +LINE + 5 +9BF + 8 +0 + 62 + 0 + 10 +11337.499955 + 20 +22175.429125 + 30 +0.0 + 11 +11326.200705 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9C0 + 8 +0 + 62 + 0 + 10 +11337.499955 + 20 +22132.127855 + 30 +0.0 + 11 +11324.999955 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9C1 + 8 +0 + 62 + 0 + 10 +11299.999955 + 20 +22153.77849 + 30 +0.0 + 11 +11287.499955 + 21 +22175.429125 + 31 +0.0 + 0 +LINE + 5 +9C2 + 8 +0 + 62 + 0 + 10 +11297.388727 + 20 +22115.0 + 30 +0.0 + 11 +11287.499955 + 21 +22132.127855 + 31 +0.0 + 0 +LINE + 5 +9C3 + 8 +0 + 62 + 0 + 10 +11262.499955 + 20 +22175.429126 + 30 +0.0 + 11 +11251.200705 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9C4 + 8 +0 + 62 + 0 + 10 +11262.499955 + 20 +22132.127855 + 30 +0.0 + 11 +11249.999955 + 21 +22153.77849 + 31 +0.0 + 0 +LINE + 5 +9C5 + 8 +0 + 62 + 0 + 10 +13587.499947 + 20 +22132.127851 + 30 +0.0 + 11 +13574.999947 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +9C6 + 8 +0 + 62 + 0 + 10 +13622.388717 + 20 +22115.0 + 30 +0.0 + 11 +13612.499947 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +9C7 + 8 +0 + 62 + 0 + 10 +13587.499947 + 20 +22175.429121 + 30 +0.0 + 11 +13576.200695 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9C8 + 8 +0 + 62 + 0 + 10 +13624.999947 + 20 +22153.778486 + 30 +0.0 + 11 +13612.499947 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +9C9 + 8 +0 + 62 + 0 + 10 +13662.499947 + 20 +22132.127851 + 30 +0.0 + 11 +13649.999947 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +9CA + 8 +0 + 62 + 0 + 10 +13697.388716 + 20 +22115.0 + 30 +0.0 + 11 +13687.499947 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +9CB + 8 +0 + 62 + 0 + 10 +13662.499947 + 20 +22175.429121 + 30 +0.0 + 11 +13651.200695 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9CC + 8 +0 + 62 + 0 + 10 +13699.999947 + 20 +22153.778486 + 30 +0.0 + 11 +13687.499947 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +9CD + 8 +0 + 62 + 0 + 10 +13737.499947 + 20 +22132.127851 + 30 +0.0 + 11 +13724.999947 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +9CE + 8 +0 + 62 + 0 + 10 +13772.388716 + 20 +22115.0 + 30 +0.0 + 11 +13762.499947 + 21 +22132.127851 + 31 +0.0 + 0 +LINE + 5 +9CF + 8 +0 + 62 + 0 + 10 +13737.499947 + 20 +22175.429121 + 30 +0.0 + 11 +13726.200695 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9D0 + 8 +0 + 62 + 0 + 10 +13774.999947 + 20 +22153.778486 + 30 +0.0 + 11 +13762.499947 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +9D1 + 8 +0 + 62 + 0 + 10 +13812.499947 + 20 +22132.127851 + 30 +0.0 + 11 +13799.999947 + 21 +22153.778486 + 31 +0.0 + 0 +LINE + 5 +9D2 + 8 +0 + 62 + 0 + 10 +13847.388716 + 20 +22115.0 + 30 +0.0 + 11 +13837.499947 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9D3 + 8 +0 + 62 + 0 + 10 +13812.499947 + 20 +22175.429121 + 30 +0.0 + 11 +13801.200694 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9D4 + 8 +0 + 62 + 0 + 10 +13849.999947 + 20 +22153.778486 + 30 +0.0 + 11 +13837.499947 + 21 +22175.429121 + 31 +0.0 + 0 +LINE + 5 +9D5 + 8 +0 + 62 + 0 + 10 +13887.499946 + 20 +22132.12785 + 30 +0.0 + 11 +13874.999946 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9D6 + 8 +0 + 62 + 0 + 10 +13922.388715 + 20 +22115.0 + 30 +0.0 + 11 +13912.499946 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9D7 + 8 +0 + 62 + 0 + 10 +13887.499946 + 20 +22175.429121 + 30 +0.0 + 11 +13876.200694 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9D8 + 8 +0 + 62 + 0 + 10 +13924.999946 + 20 +22153.778485 + 30 +0.0 + 11 +13912.499946 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9D9 + 8 +0 + 62 + 0 + 10 +13962.499946 + 20 +22132.12785 + 30 +0.0 + 11 +13949.999946 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9DA + 8 +0 + 62 + 0 + 10 +13997.388715 + 20 +22115.0 + 30 +0.0 + 11 +13987.499946 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9DB + 8 +0 + 62 + 0 + 10 +13962.499946 + 20 +22175.42912 + 30 +0.0 + 11 +13951.200694 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9DC + 8 +0 + 62 + 0 + 10 +13999.999946 + 20 +22153.778485 + 30 +0.0 + 11 +13987.499946 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9DD + 8 +0 + 62 + 0 + 10 +14037.499946 + 20 +22132.12785 + 30 +0.0 + 11 +14024.999946 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9DE + 8 +0 + 62 + 0 + 10 +14072.388715 + 20 +22115.0 + 30 +0.0 + 11 +14062.499946 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9DF + 8 +0 + 62 + 0 + 10 +14037.499946 + 20 +22175.42912 + 30 +0.0 + 11 +14026.200693 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9E0 + 8 +0 + 62 + 0 + 10 +14074.999946 + 20 +22153.778485 + 30 +0.0 + 11 +14062.499946 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9E1 + 8 +0 + 62 + 0 + 10 +14112.499946 + 20 +22132.12785 + 30 +0.0 + 11 +14099.999946 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9E2 + 8 +0 + 62 + 0 + 10 +14147.388714 + 20 +22115.0 + 30 +0.0 + 11 +14137.499946 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9E3 + 8 +0 + 62 + 0 + 10 +14112.499946 + 20 +22175.42912 + 30 +0.0 + 11 +14101.200693 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9E4 + 8 +0 + 62 + 0 + 10 +14149.999946 + 20 +22153.778485 + 30 +0.0 + 11 +14137.499946 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9E5 + 8 +0 + 62 + 0 + 10 +14187.499946 + 20 +22132.12785 + 30 +0.0 + 11 +14174.999946 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9E6 + 8 +0 + 62 + 0 + 10 +14222.388714 + 20 +22115.0 + 30 +0.0 + 11 +14212.499945 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9E7 + 8 +0 + 62 + 0 + 10 +14187.499945 + 20 +22175.42912 + 30 +0.0 + 11 +14176.200693 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9E8 + 8 +0 + 62 + 0 + 10 +14224.999945 + 20 +22153.778485 + 30 +0.0 + 11 +14212.499945 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9E9 + 8 +0 + 62 + 0 + 10 +14262.499945 + 20 +22132.12785 + 30 +0.0 + 11 +14249.999945 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9EA + 8 +0 + 62 + 0 + 10 +14297.388714 + 20 +22115.0 + 30 +0.0 + 11 +14287.499945 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9EB + 8 +0 + 62 + 0 + 10 +14262.499945 + 20 +22175.42912 + 30 +0.0 + 11 +14251.200692 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9EC + 8 +0 + 62 + 0 + 10 +14299.999945 + 20 +22153.778485 + 30 +0.0 + 11 +14287.499945 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9ED + 8 +0 + 62 + 0 + 10 +14337.499945 + 20 +22132.12785 + 30 +0.0 + 11 +14324.999945 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9EE + 8 +0 + 62 + 0 + 10 +14372.388713 + 20 +22115.0 + 30 +0.0 + 11 +14362.499945 + 21 +22132.12785 + 31 +0.0 + 0 +LINE + 5 +9EF + 8 +0 + 62 + 0 + 10 +14337.499945 + 20 +22175.42912 + 30 +0.0 + 11 +14326.200692 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9F0 + 8 +0 + 62 + 0 + 10 +14374.999945 + 20 +22153.778485 + 30 +0.0 + 11 +14362.499945 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9F1 + 8 +0 + 62 + 0 + 10 +14412.499945 + 20 +22132.127849 + 30 +0.0 + 11 +14399.999945 + 21 +22153.778485 + 31 +0.0 + 0 +LINE + 5 +9F2 + 8 +0 + 62 + 0 + 10 +14447.388713 + 20 +22115.0 + 30 +0.0 + 11 +14437.499945 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +9F3 + 8 +0 + 62 + 0 + 10 +14412.499945 + 20 +22175.42912 + 30 +0.0 + 11 +14401.200692 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9F4 + 8 +0 + 62 + 0 + 10 +14449.999945 + 20 +22153.778484 + 30 +0.0 + 11 +14437.499945 + 21 +22175.42912 + 31 +0.0 + 0 +LINE + 5 +9F5 + 8 +0 + 62 + 0 + 10 +14487.499945 + 20 +22132.127849 + 30 +0.0 + 11 +14474.999945 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +9F6 + 8 +0 + 62 + 0 + 10 +14522.388713 + 20 +22115.0 + 30 +0.0 + 11 +14512.499944 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +9F7 + 8 +0 + 62 + 0 + 10 +14487.499944 + 20 +22175.429119 + 30 +0.0 + 11 +14476.200691 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9F8 + 8 +0 + 62 + 0 + 10 +14524.999944 + 20 +22153.778484 + 30 +0.0 + 11 +14512.499944 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +9F9 + 8 +0 + 62 + 0 + 10 +14562.499944 + 20 +22132.127849 + 30 +0.0 + 11 +14549.999944 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +9FA + 8 +0 + 62 + 0 + 10 +14597.388712 + 20 +22115.0 + 30 +0.0 + 11 +14587.499944 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +9FB + 8 +0 + 62 + 0 + 10 +14562.499944 + 20 +22175.429119 + 30 +0.0 + 11 +14551.200691 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +9FC + 8 +0 + 62 + 0 + 10 +14599.999944 + 20 +22153.778484 + 30 +0.0 + 11 +14587.499944 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +9FD + 8 +0 + 62 + 0 + 10 +14637.499944 + 20 +22132.127849 + 30 +0.0 + 11 +14624.999944 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +9FE + 8 +0 + 62 + 0 + 10 +14672.388712 + 20 +22115.0 + 30 +0.0 + 11 +14662.499944 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +9FF + 8 +0 + 62 + 0 + 10 +14637.499944 + 20 +22175.429119 + 30 +0.0 + 11 +14626.200691 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A00 + 8 +0 + 62 + 0 + 10 +14674.999944 + 20 +22153.778484 + 30 +0.0 + 11 +14662.499944 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +A01 + 8 +0 + 62 + 0 + 10 +14712.499944 + 20 +22132.127849 + 30 +0.0 + 11 +14699.999944 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +A02 + 8 +0 + 62 + 0 + 10 +14747.388712 + 20 +22115.0 + 30 +0.0 + 11 +14737.499944 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +A03 + 8 +0 + 62 + 0 + 10 +14712.499944 + 20 +22175.429119 + 30 +0.0 + 11 +14701.20069 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A04 + 8 +0 + 62 + 0 + 10 +14749.999944 + 20 +22153.778484 + 30 +0.0 + 11 +14737.499944 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +A05 + 8 +0 + 62 + 0 + 10 +14787.499944 + 20 +22132.127849 + 30 +0.0 + 11 +14774.999944 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +A06 + 8 +0 + 62 + 0 + 10 +14822.388711 + 20 +22115.0 + 30 +0.0 + 11 +14812.499943 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +A07 + 8 +0 + 62 + 0 + 10 +14787.499943 + 20 +22175.429119 + 30 +0.0 + 11 +14776.20069 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A08 + 8 +0 + 62 + 0 + 10 +14824.999943 + 20 +22153.778484 + 30 +0.0 + 11 +14812.499943 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +A09 + 8 +0 + 62 + 0 + 10 +14862.499943 + 20 +22132.127849 + 30 +0.0 + 11 +14849.999943 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +A0A + 8 +0 + 62 + 0 + 10 +14897.388711 + 20 +22115.0 + 30 +0.0 + 11 +14887.499943 + 21 +22132.127849 + 31 +0.0 + 0 +LINE + 5 +A0B + 8 +0 + 62 + 0 + 10 +14862.499943 + 20 +22175.429119 + 30 +0.0 + 11 +14851.20069 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A0C + 8 +0 + 62 + 0 + 10 +14899.999943 + 20 +22153.778484 + 30 +0.0 + 11 +14887.499943 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +A0D + 8 +0 + 62 + 0 + 10 +14937.499943 + 20 +22132.127848 + 30 +0.0 + 11 +14924.999943 + 21 +22153.778484 + 31 +0.0 + 0 +LINE + 5 +A0E + 8 +0 + 62 + 0 + 10 +14972.388711 + 20 +22115.0 + 30 +0.0 + 11 +14962.499943 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A0F + 8 +0 + 62 + 0 + 10 +14937.499943 + 20 +22175.429119 + 30 +0.0 + 11 +14926.200689 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A10 + 8 +0 + 62 + 0 + 10 +14974.999943 + 20 +22153.778483 + 30 +0.0 + 11 +14962.499943 + 21 +22175.429119 + 31 +0.0 + 0 +LINE + 5 +A11 + 8 +0 + 62 + 0 + 10 +15012.499943 + 20 +22132.127848 + 30 +0.0 + 11 +14999.999943 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A12 + 8 +0 + 62 + 0 + 10 +15047.388711 + 20 +22115.0 + 30 +0.0 + 11 +15037.499943 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A13 + 8 +0 + 62 + 0 + 10 +15012.499943 + 20 +22175.429118 + 30 +0.0 + 11 +15001.200689 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A14 + 8 +0 + 62 + 0 + 10 +15049.999943 + 20 +22153.778483 + 30 +0.0 + 11 +15037.499943 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A15 + 8 +0 + 62 + 0 + 10 +15087.499943 + 20 +22132.127848 + 30 +0.0 + 11 +15074.999943 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A16 + 8 +0 + 62 + 0 + 10 +15122.38871 + 20 +22115.0 + 30 +0.0 + 11 +15112.499942 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A17 + 8 +0 + 62 + 0 + 10 +15087.499942 + 20 +22175.429118 + 30 +0.0 + 11 +15076.200689 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A18 + 8 +0 + 62 + 0 + 10 +15124.999942 + 20 +22153.778483 + 30 +0.0 + 11 +15112.499942 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A19 + 8 +0 + 62 + 0 + 10 +15162.499942 + 20 +22132.127848 + 30 +0.0 + 11 +15149.999942 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A1A + 8 +0 + 62 + 0 + 10 +15197.38871 + 20 +22115.0 + 30 +0.0 + 11 +15187.499942 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A1B + 8 +0 + 62 + 0 + 10 +15162.499942 + 20 +22175.429118 + 30 +0.0 + 11 +15151.200688 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A1C + 8 +0 + 62 + 0 + 10 +15199.999942 + 20 +22153.778483 + 30 +0.0 + 11 +15187.499942 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A1D + 8 +0 + 62 + 0 + 10 +15237.499942 + 20 +22132.127848 + 30 +0.0 + 11 +15224.999942 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A1E + 8 +0 + 62 + 0 + 10 +15272.38871 + 20 +22115.0 + 30 +0.0 + 11 +15262.499942 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A1F + 8 +0 + 62 + 0 + 10 +15237.499942 + 20 +22175.429118 + 30 +0.0 + 11 +15226.200688 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A20 + 8 +0 + 62 + 0 + 10 +15274.999942 + 20 +22153.778483 + 30 +0.0 + 11 +15262.499942 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A21 + 8 +0 + 62 + 0 + 10 +15312.499942 + 20 +22132.127848 + 30 +0.0 + 11 +15299.999942 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A22 + 8 +0 + 62 + 0 + 10 +15347.388709 + 20 +22115.0 + 30 +0.0 + 11 +15337.499942 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A23 + 8 +0 + 62 + 0 + 10 +15312.499942 + 20 +22175.429118 + 30 +0.0 + 11 +15301.200688 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A24 + 8 +0 + 62 + 0 + 10 +15349.999942 + 20 +22153.778483 + 30 +0.0 + 11 +15337.499942 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A25 + 8 +0 + 62 + 0 + 10 +15387.499942 + 20 +22132.127848 + 30 +0.0 + 11 +15374.999942 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A26 + 8 +0 + 62 + 0 + 10 +15422.388709 + 20 +22115.0 + 30 +0.0 + 11 +15412.499941 + 21 +22132.127848 + 31 +0.0 + 0 +LINE + 5 +A27 + 8 +0 + 62 + 0 + 10 +15387.499941 + 20 +22175.429118 + 30 +0.0 + 11 +15376.200687 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A28 + 8 +0 + 62 + 0 + 10 +15424.999941 + 20 +22153.778483 + 30 +0.0 + 11 +15412.499941 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A29 + 8 +0 + 62 + 0 + 10 +15462.499941 + 20 +22132.127847 + 30 +0.0 + 11 +15449.999941 + 21 +22153.778483 + 31 +0.0 + 0 +LINE + 5 +A2A + 8 +0 + 62 + 0 + 10 +15497.388709 + 20 +22115.0 + 30 +0.0 + 11 +15487.499941 + 21 +22132.127847 + 31 +0.0 + 0 +LINE + 5 +A2B + 8 +0 + 62 + 0 + 10 +15462.499941 + 20 +22175.429118 + 30 +0.0 + 11 +15451.200687 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A2C + 8 +0 + 62 + 0 + 10 +15499.999941 + 20 +22153.778482 + 30 +0.0 + 11 +15487.499941 + 21 +22175.429118 + 31 +0.0 + 0 +LINE + 5 +A2D + 8 +0 + 62 + 0 + 10 +15537.499941 + 20 +22132.127847 + 30 +0.0 + 11 +15524.999941 + 21 +22153.778482 + 31 +0.0 + 0 +LINE + 5 +A2E + 8 +0 + 62 + 0 + 10 +15572.388708 + 20 +22115.0 + 30 +0.0 + 11 +15562.499941 + 21 +22132.127847 + 31 +0.0 + 0 +LINE + 5 +A2F + 8 +0 + 62 + 0 + 10 +15537.499941 + 20 +22175.429117 + 30 +0.0 + 11 +15526.200687 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A30 + 8 +0 + 62 + 0 + 10 +15574.999941 + 20 +22153.778482 + 30 +0.0 + 11 +15562.499941 + 21 +22175.429117 + 31 +0.0 + 0 +LINE + 5 +A31 + 8 +0 + 62 + 0 + 10 +15612.499941 + 20 +22132.127847 + 30 +0.0 + 11 +15599.999941 + 21 +22153.778482 + 31 +0.0 + 0 +LINE + 5 +A32 + 8 +0 + 62 + 0 + 10 +15647.388708 + 20 +22115.0 + 30 +0.0 + 11 +15637.499941 + 21 +22132.127847 + 31 +0.0 + 0 +LINE + 5 +A33 + 8 +0 + 62 + 0 + 10 +15612.499941 + 20 +22175.429117 + 30 +0.0 + 11 +15601.200686 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A34 + 8 +0 + 62 + 0 + 10 +15649.999941 + 20 +22153.778482 + 30 +0.0 + 11 +15637.499941 + 21 +22175.429117 + 31 +0.0 + 0 +LINE + 5 +A35 + 8 +0 + 62 + 0 + 10 +15687.499941 + 20 +22132.127847 + 30 +0.0 + 11 +15674.999941 + 21 +22153.778482 + 31 +0.0 + 0 +LINE + 5 +A36 + 8 +0 + 62 + 0 + 10 +15722.388708 + 20 +22115.0 + 30 +0.0 + 11 +15712.499941 + 21 +22132.127847 + 31 +0.0 + 0 +LINE + 5 +A37 + 8 +0 + 62 + 0 + 10 +15687.499941 + 20 +22175.429117 + 30 +0.0 + 11 +15676.200686 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A38 + 8 +0 + 62 + 0 + 10 +15724.99994 + 20 +22153.778482 + 30 +0.0 + 11 +15712.49994 + 21 +22175.429117 + 31 +0.0 + 0 +LINE + 5 +A39 + 8 +0 + 62 + 0 + 10 +15762.49994 + 20 +22132.127847 + 30 +0.0 + 11 +15749.99994 + 21 +22153.778482 + 31 +0.0 + 0 +LINE + 5 +A3A + 8 +0 + 62 + 0 + 10 +15797.388707 + 20 +22115.0 + 30 +0.0 + 11 +15787.49994 + 21 +22132.127847 + 31 +0.0 + 0 +LINE + 5 +A3B + 8 +0 + 62 + 0 + 10 +15762.49994 + 20 +22175.429117 + 30 +0.0 + 11 +15751.200686 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A3C + 8 +0 + 62 + 0 + 10 +15799.99994 + 20 +22153.778482 + 30 +0.0 + 11 +15787.49994 + 21 +22175.429117 + 31 +0.0 + 0 +LINE + 5 +A3D + 8 +0 + 62 + 0 + 10 +15837.49994 + 20 +22132.127847 + 30 +0.0 + 11 +15824.99994 + 21 +22153.778482 + 31 +0.0 + 0 +LINE + 5 +A3E + 8 +0 + 62 + 0 + 10 +15872.388707 + 20 +22115.0 + 30 +0.0 + 11 +15862.49994 + 21 +22132.127847 + 31 +0.0 + 0 +LINE + 5 +A3F + 8 +0 + 62 + 0 + 10 +15837.49994 + 20 +22175.429117 + 30 +0.0 + 11 +15826.200685 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A40 + 8 +0 + 62 + 0 + 10 +15874.99994 + 20 +22153.778482 + 30 +0.0 + 11 +15862.49994 + 21 +22175.429117 + 31 +0.0 + 0 +LINE + 5 +A41 + 8 +0 + 62 + 0 + 10 +13537.499996 + 20 +22132.127883 + 30 +0.0 + 11 +13549.999996 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A42 + 8 +0 + 62 + 0 + 10 +13502.611208 + 20 +22115.0 + 30 +0.0 + 11 +13512.499996 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +A43 + 8 +0 + 62 + 0 + 10 +13537.499996 + 20 +22175.429154 + 30 +0.0 + 11 +13548.79923 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A44 + 8 +0 + 62 + 0 + 10 +13499.999997 + 20 +22153.778518 + 30 +0.0 + 11 +13512.499997 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A45 + 8 +0 + 62 + 0 + 10 +13462.499997 + 20 +22132.127883 + 30 +0.0 + 11 +13474.999997 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A46 + 8 +0 + 62 + 0 + 10 +13427.611209 + 20 +22115.0 + 30 +0.0 + 11 +13437.499997 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +A47 + 8 +0 + 62 + 0 + 10 +13462.499997 + 20 +22175.429153 + 30 +0.0 + 11 +13473.79923 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A48 + 8 +0 + 62 + 0 + 10 +13424.999997 + 20 +22153.778518 + 30 +0.0 + 11 +13437.499997 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A49 + 8 +0 + 62 + 0 + 10 +13387.499997 + 20 +22132.127883 + 30 +0.0 + 11 +13399.999997 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A4A + 8 +0 + 62 + 0 + 10 +13352.611209 + 20 +22115.0 + 30 +0.0 + 11 +13362.499997 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +A4B + 8 +0 + 62 + 0 + 10 +13387.499997 + 20 +22175.429153 + 30 +0.0 + 11 +13398.799231 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A4C + 8 +0 + 62 + 0 + 10 +13349.999997 + 20 +22153.778518 + 30 +0.0 + 11 +13362.499997 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A4D + 8 +0 + 62 + 0 + 10 +13312.499997 + 20 +22132.127883 + 30 +0.0 + 11 +13324.999997 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A4E + 8 +0 + 62 + 0 + 10 +13277.611209 + 20 +22115.0 + 30 +0.0 + 11 +13287.499997 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +A4F + 8 +0 + 62 + 0 + 10 +13312.499997 + 20 +22175.429153 + 30 +0.0 + 11 +13323.799231 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A50 + 8 +0 + 62 + 0 + 10 +13274.999997 + 20 +22153.778518 + 30 +0.0 + 11 +13287.499997 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A51 + 8 +0 + 62 + 0 + 10 +13237.499997 + 20 +22132.127883 + 30 +0.0 + 11 +13249.999997 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A52 + 8 +0 + 62 + 0 + 10 +13202.61121 + 20 +22115.0 + 30 +0.0 + 11 +13212.499997 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +A53 + 8 +0 + 62 + 0 + 10 +13237.499997 + 20 +22175.429153 + 30 +0.0 + 11 +13248.799231 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A54 + 8 +0 + 62 + 0 + 10 +13199.999998 + 20 +22153.778518 + 30 +0.0 + 11 +13212.499998 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A55 + 8 +0 + 62 + 0 + 10 +13162.499998 + 20 +22132.127883 + 30 +0.0 + 11 +13174.999998 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A56 + 8 +0 + 62 + 0 + 10 +13127.61121 + 20 +22115.0 + 30 +0.0 + 11 +13137.499998 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +A57 + 8 +0 + 62 + 0 + 10 +13162.499998 + 20 +22175.429153 + 30 +0.0 + 11 +13173.799232 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A58 + 8 +0 + 62 + 0 + 10 +13124.999998 + 20 +22153.778518 + 30 +0.0 + 11 +13137.499998 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A59 + 8 +0 + 62 + 0 + 10 +13087.499998 + 20 +22132.127883 + 30 +0.0 + 11 +13099.999998 + 21 +22153.778518 + 31 +0.0 + 0 +LINE + 5 +A5A + 8 +0 + 62 + 0 + 10 +13052.61121 + 20 +22115.0 + 30 +0.0 + 11 +13062.499998 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A5B + 8 +0 + 62 + 0 + 10 +13087.499998 + 20 +22175.429153 + 30 +0.0 + 11 +13098.799232 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A5C + 8 +0 + 62 + 0 + 10 +13049.999998 + 20 +22153.778518 + 30 +0.0 + 11 +13062.499998 + 21 +22175.429153 + 31 +0.0 + 0 +LINE + 5 +A5D + 8 +0 + 62 + 0 + 10 +13012.499998 + 20 +22132.127882 + 30 +0.0 + 11 +13024.999998 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A5E + 8 +0 + 62 + 0 + 10 +12977.611211 + 20 +22115.0 + 30 +0.0 + 11 +12987.499998 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A5F + 8 +0 + 62 + 0 + 10 +13012.499998 + 20 +22175.429153 + 30 +0.0 + 11 +13023.799232 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A60 + 8 +0 + 62 + 0 + 10 +12974.999998 + 20 +22153.778517 + 30 +0.0 + 11 +12987.499998 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A61 + 8 +0 + 62 + 0 + 10 +12937.499998 + 20 +22132.127882 + 30 +0.0 + 11 +12949.999998 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A62 + 8 +0 + 62 + 0 + 10 +12902.611211 + 20 +22115.0 + 30 +0.0 + 11 +12912.499998 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A63 + 8 +0 + 62 + 0 + 10 +12937.499998 + 20 +22175.429152 + 30 +0.0 + 11 +12948.799233 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A64 + 8 +0 + 62 + 0 + 10 +12899.999999 + 20 +22153.778517 + 30 +0.0 + 11 +12912.499999 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A65 + 8 +0 + 62 + 0 + 10 +12862.499999 + 20 +22132.127882 + 30 +0.0 + 11 +12874.999999 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A66 + 8 +0 + 62 + 0 + 10 +12827.611211 + 20 +22115.0 + 30 +0.0 + 11 +12837.499999 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A67 + 8 +0 + 62 + 0 + 10 +12862.499999 + 20 +22175.429152 + 30 +0.0 + 11 +12873.799233 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A68 + 8 +0 + 62 + 0 + 10 +12824.999999 + 20 +22153.778517 + 30 +0.0 + 11 +12837.499999 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A69 + 8 +0 + 62 + 0 + 10 +12787.499999 + 20 +22132.127882 + 30 +0.0 + 11 +12799.999999 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A6A + 8 +0 + 62 + 0 + 10 +12752.611212 + 20 +22115.0 + 30 +0.0 + 11 +12762.499999 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A6B + 8 +0 + 62 + 0 + 10 +12787.499999 + 20 +22175.429152 + 30 +0.0 + 11 +12798.799233 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A6C + 8 +0 + 62 + 0 + 10 +12749.999999 + 20 +22153.778517 + 30 +0.0 + 11 +12762.499999 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A6D + 8 +0 + 62 + 0 + 10 +12712.499999 + 20 +22132.127882 + 30 +0.0 + 11 +12724.999999 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A6E + 8 +0 + 62 + 0 + 10 +12677.611212 + 20 +22115.0 + 30 +0.0 + 11 +12687.499999 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A6F + 8 +0 + 62 + 0 + 10 +12712.499999 + 20 +22175.429152 + 30 +0.0 + 11 +12723.799234 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A70 + 8 +0 + 62 + 0 + 10 +12674.999999 + 20 +22153.778517 + 30 +0.0 + 11 +12687.499999 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A71 + 8 +0 + 62 + 0 + 10 +12637.499999 + 20 +22132.127882 + 30 +0.0 + 11 +12649.999999 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A72 + 8 +0 + 62 + 0 + 10 +12602.611212 + 20 +22115.0 + 30 +0.0 + 11 +12612.499999 + 21 +22132.127882 + 31 +0.0 + 0 +LINE + 5 +A73 + 8 +0 + 62 + 0 + 10 +12637.499999 + 20 +22175.429152 + 30 +0.0 + 11 +12648.799234 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A74 + 8 +0 + 62 + 0 + 10 +12600.0 + 20 +22153.778517 + 30 +0.0 + 11 +12612.5 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A75 + 8 +0 + 62 + 0 + 10 +12562.5 + 20 +22132.127882 + 30 +0.0 + 11 +12575.0 + 21 +22153.778517 + 31 +0.0 + 0 +LINE + 5 +A76 + 8 +0 + 62 + 0 + 10 +12527.611213 + 20 +22115.0 + 30 +0.0 + 11 +12537.5 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A77 + 8 +0 + 62 + 0 + 10 +12562.5 + 20 +22175.429152 + 30 +0.0 + 11 +12573.799234 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A78 + 8 +0 + 62 + 0 + 10 +12525.0 + 20 +22153.778517 + 30 +0.0 + 11 +12537.5 + 21 +22175.429152 + 31 +0.0 + 0 +LINE + 5 +A79 + 8 +0 + 62 + 0 + 10 +12487.5 + 20 +22132.127881 + 30 +0.0 + 11 +12500.0 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A7A + 8 +0 + 62 + 0 + 10 +12452.611213 + 20 +22115.0 + 30 +0.0 + 11 +12462.5 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A7B + 8 +0 + 62 + 0 + 10 +12487.5 + 20 +22175.429152 + 30 +0.0 + 11 +12498.799235 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A7C + 8 +0 + 62 + 0 + 10 +12450.0 + 20 +22153.778516 + 30 +0.0 + 11 +12462.5 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A7D + 8 +0 + 62 + 0 + 10 +12412.5 + 20 +22132.127881 + 30 +0.0 + 11 +12425.0 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A7E + 8 +0 + 62 + 0 + 10 +12377.611213 + 20 +22115.0 + 30 +0.0 + 11 +12387.5 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A7F + 8 +0 + 62 + 0 + 10 +12412.5 + 20 +22175.429151 + 30 +0.0 + 11 +12423.799235 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A80 + 8 +0 + 62 + 0 + 10 +12375.0 + 20 +22153.778516 + 30 +0.0 + 11 +12387.5 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A81 + 8 +0 + 62 + 0 + 10 +12337.5 + 20 +22132.127881 + 30 +0.0 + 11 +12350.0 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A82 + 8 +0 + 62 + 0 + 10 +12302.611214 + 20 +22115.0 + 30 +0.0 + 11 +12312.5 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A83 + 8 +0 + 62 + 0 + 10 +12337.5 + 20 +22175.429151 + 30 +0.0 + 11 +12348.799235 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A84 + 8 +0 + 62 + 0 + 10 +12300.0 + 20 +22153.778516 + 30 +0.0 + 11 +12312.5 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A85 + 8 +0 + 62 + 0 + 10 +12262.500001 + 20 +22132.127881 + 30 +0.0 + 11 +12275.000001 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A86 + 8 +0 + 62 + 0 + 10 +12227.611214 + 20 +22115.0 + 30 +0.0 + 11 +12237.500001 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A87 + 8 +0 + 62 + 0 + 10 +12262.500001 + 20 +22175.429151 + 30 +0.0 + 11 +12273.799236 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A88 + 8 +0 + 62 + 0 + 10 +12225.000001 + 20 +22153.778516 + 30 +0.0 + 11 +12237.500001 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A89 + 8 +0 + 62 + 0 + 10 +12187.500001 + 20 +22132.127881 + 30 +0.0 + 11 +12200.000001 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A8A + 8 +0 + 62 + 0 + 10 +12152.611214 + 20 +22115.0 + 30 +0.0 + 11 +12162.500001 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A8B + 8 +0 + 62 + 0 + 10 +12187.500001 + 20 +22175.429151 + 30 +0.0 + 11 +12198.799236 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A8C + 8 +0 + 62 + 0 + 10 +12150.000001 + 20 +22153.778516 + 30 +0.0 + 11 +12162.500001 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A8D + 8 +0 + 62 + 0 + 10 +12112.500001 + 20 +22132.127881 + 30 +0.0 + 11 +12125.000001 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A8E + 8 +0 + 62 + 0 + 10 +12077.611215 + 20 +22115.0 + 30 +0.0 + 11 +12087.500001 + 21 +22132.127881 + 31 +0.0 + 0 +LINE + 5 +A8F + 8 +0 + 62 + 0 + 10 +12112.500001 + 20 +22175.429151 + 30 +0.0 + 11 +12123.799236 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A90 + 8 +0 + 62 + 0 + 10 +12075.000001 + 20 +22153.778516 + 30 +0.0 + 11 +12087.500001 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A91 + 8 +0 + 62 + 0 + 10 +12037.500001 + 20 +22132.127881 + 30 +0.0 + 11 +12050.000001 + 21 +22153.778516 + 31 +0.0 + 0 +LINE + 5 +A92 + 8 +0 + 62 + 0 + 10 +12002.611215 + 20 +22115.0 + 30 +0.0 + 11 +12012.500001 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +A93 + 8 +0 + 62 + 0 + 10 +12037.500001 + 20 +22175.429151 + 30 +0.0 + 11 +12048.799237 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A94 + 8 +0 + 62 + 0 + 10 +12000.000001 + 20 +22153.778516 + 30 +0.0 + 11 +12012.500001 + 21 +22175.429151 + 31 +0.0 + 0 +LINE + 5 +A95 + 8 +0 + 62 + 0 + 10 +11962.500002 + 20 +22132.12788 + 30 +0.0 + 11 +11975.000002 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +A96 + 8 +0 + 62 + 0 + 10 +11927.611215 + 20 +22115.0 + 30 +0.0 + 11 +11937.500002 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +A97 + 8 +0 + 62 + 0 + 10 +11962.500002 + 20 +22175.429151 + 30 +0.0 + 11 +11973.799237 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A98 + 8 +0 + 62 + 0 + 10 +11925.000002 + 20 +22153.778515 + 30 +0.0 + 11 +11937.500002 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +A99 + 8 +0 + 62 + 0 + 10 +11887.500002 + 20 +22132.12788 + 30 +0.0 + 11 +11900.000002 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +A9A + 8 +0 + 62 + 0 + 10 +11852.611216 + 20 +22115.0 + 30 +0.0 + 11 +11862.500002 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +A9B + 8 +0 + 62 + 0 + 10 +11887.500002 + 20 +22175.42915 + 30 +0.0 + 11 +11898.799237 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +A9C + 8 +0 + 62 + 0 + 10 +11850.000002 + 20 +22153.778515 + 30 +0.0 + 11 +11862.500002 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +A9D + 8 +0 + 62 + 0 + 10 +11812.500002 + 20 +22132.12788 + 30 +0.0 + 11 +11825.000002 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +A9E + 8 +0 + 62 + 0 + 10 +11777.611216 + 20 +22115.0 + 30 +0.0 + 11 +11787.500002 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +A9F + 8 +0 + 62 + 0 + 10 +11812.500002 + 20 +22175.42915 + 30 +0.0 + 11 +11823.799238 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AA0 + 8 +0 + 62 + 0 + 10 +11775.000002 + 20 +22153.778515 + 30 +0.0 + 11 +11787.500002 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +AA1 + 8 +0 + 62 + 0 + 10 +11737.500002 + 20 +22132.12788 + 30 +0.0 + 11 +11750.000002 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +AA2 + 8 +0 + 62 + 0 + 10 +11702.611216 + 20 +22115.0 + 30 +0.0 + 11 +11712.500002 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +AA3 + 8 +0 + 62 + 0 + 10 +11737.500002 + 20 +22175.42915 + 30 +0.0 + 11 +11748.799238 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AA4 + 8 +0 + 62 + 0 + 10 +11700.000002 + 20 +22153.778515 + 30 +0.0 + 11 +11712.500002 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +AA5 + 8 +0 + 62 + 0 + 10 +11662.500003 + 20 +22132.12788 + 30 +0.0 + 11 +11675.000003 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +AA6 + 8 +0 + 62 + 0 + 10 +11627.611217 + 20 +22115.0 + 30 +0.0 + 11 +11637.500003 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +AA7 + 8 +0 + 62 + 0 + 10 +11662.500003 + 20 +22175.42915 + 30 +0.0 + 11 +11673.799238 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AA8 + 8 +0 + 62 + 0 + 10 +11625.000003 + 20 +22153.778515 + 30 +0.0 + 11 +11637.500003 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +AA9 + 8 +0 + 62 + 0 + 10 +11587.500003 + 20 +22132.12788 + 30 +0.0 + 11 +11600.000003 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +AAA + 8 +0 + 62 + 0 + 10 +11552.611217 + 20 +22115.0 + 30 +0.0 + 11 +11562.500003 + 21 +22132.12788 + 31 +0.0 + 0 +LINE + 5 +AAB + 8 +0 + 62 + 0 + 10 +11587.500003 + 20 +22175.42915 + 30 +0.0 + 11 +11598.799238 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AAC + 8 +0 + 62 + 0 + 10 +11550.000003 + 20 +22153.778515 + 30 +0.0 + 11 +11562.500003 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +AAD + 8 +0 + 62 + 0 + 10 +11512.500003 + 20 +22132.12788 + 30 +0.0 + 11 +11525.000003 + 21 +22153.778515 + 31 +0.0 + 0 +LINE + 5 +AAE + 8 +0 + 62 + 0 + 10 +11477.611217 + 20 +22115.0 + 30 +0.0 + 11 +11487.500003 + 21 +22132.127879 + 31 +0.0 + 0 +LINE + 5 +AAF + 8 +0 + 62 + 0 + 10 +11512.500003 + 20 +22175.42915 + 30 +0.0 + 11 +11523.799239 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AB0 + 8 +0 + 62 + 0 + 10 +11475.000003 + 20 +22153.778515 + 30 +0.0 + 11 +11487.500003 + 21 +22175.42915 + 31 +0.0 + 0 +LINE + 5 +AB1 + 8 +0 + 62 + 0 + 10 +11437.500003 + 20 +22132.127879 + 30 +0.0 + 11 +11450.000003 + 21 +22153.778514 + 31 +0.0 + 0 +LINE + 5 +AB2 + 8 +0 + 62 + 0 + 10 +11402.611218 + 20 +22115.0 + 30 +0.0 + 11 +11412.500003 + 21 +22132.127879 + 31 +0.0 + 0 +LINE + 5 +AB3 + 8 +0 + 62 + 0 + 10 +11437.500003 + 20 +22175.42915 + 30 +0.0 + 11 +11448.799239 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AB4 + 8 +0 + 62 + 0 + 10 +11400.000003 + 20 +22153.778514 + 30 +0.0 + 11 +11412.500003 + 21 +22175.429149 + 31 +0.0 + 0 +LINE + 5 +AB5 + 8 +0 + 62 + 0 + 10 +11362.500004 + 20 +22132.127879 + 30 +0.0 + 11 +11375.000004 + 21 +22153.778514 + 31 +0.0 + 0 +LINE + 5 +AB6 + 8 +0 + 62 + 0 + 10 +11327.611218 + 20 +22115.0 + 30 +0.0 + 11 +11337.500004 + 21 +22132.127879 + 31 +0.0 + 0 +LINE + 5 +AB7 + 8 +0 + 62 + 0 + 10 +11362.500004 + 20 +22175.429149 + 30 +0.0 + 11 +11373.799239 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AB8 + 8 +0 + 62 + 0 + 10 +11325.000004 + 20 +22153.778514 + 30 +0.0 + 11 +11337.500004 + 21 +22175.429149 + 31 +0.0 + 0 +LINE + 5 +AB9 + 8 +0 + 62 + 0 + 10 +11287.500004 + 20 +22132.127879 + 30 +0.0 + 11 +11300.000004 + 21 +22153.778514 + 31 +0.0 + 0 +LINE + 5 +ABA + 8 +0 + 62 + 0 + 10 +11252.611218 + 20 +22115.0 + 30 +0.0 + 11 +11262.500004 + 21 +22132.127879 + 31 +0.0 + 0 +LINE + 5 +ABB + 8 +0 + 62 + 0 + 10 +11287.500004 + 20 +22175.429149 + 30 +0.0 + 11 +11298.79924 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +ABC + 8 +0 + 62 + 0 + 10 +11250.000004 + 20 +22153.778514 + 30 +0.0 + 11 +11262.500004 + 21 +22175.429149 + 31 +0.0 + 0 +LINE + 5 +ABD + 8 +0 + 62 + 0 + 10 +13574.999996 + 20 +22153.778519 + 30 +0.0 + 11 +13587.499996 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +ABE + 8 +0 + 62 + 0 + 10 +13577.611208 + 20 +22115.0 + 30 +0.0 + 11 +13587.499996 + 21 +22132.127883 + 31 +0.0 + 0 +LINE + 5 +ABF + 8 +0 + 62 + 0 + 10 +13612.499996 + 20 +22175.429154 + 30 +0.0 + 11 +13623.79923 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AC0 + 8 +0 + 62 + 0 + 10 +13612.499996 + 20 +22132.127884 + 30 +0.0 + 11 +13624.999996 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +AC1 + 8 +0 + 62 + 0 + 10 +13649.999996 + 20 +22153.778519 + 30 +0.0 + 11 +13662.499996 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +AC2 + 8 +0 + 62 + 0 + 10 +13652.611208 + 20 +22115.0 + 30 +0.0 + 11 +13662.499996 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +AC3 + 8 +0 + 62 + 0 + 10 +13687.499996 + 20 +22175.429154 + 30 +0.0 + 11 +13698.799229 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AC4 + 8 +0 + 62 + 0 + 10 +13687.499996 + 20 +22132.127884 + 30 +0.0 + 11 +13699.999996 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +AC5 + 8 +0 + 62 + 0 + 10 +13724.999996 + 20 +22153.778519 + 30 +0.0 + 11 +13737.499996 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +AC6 + 8 +0 + 62 + 0 + 10 +13727.611207 + 20 +22115.0 + 30 +0.0 + 11 +13737.499996 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +AC7 + 8 +0 + 62 + 0 + 10 +13762.499996 + 20 +22175.429154 + 30 +0.0 + 11 +13773.799229 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AC8 + 8 +0 + 62 + 0 + 10 +13762.499996 + 20 +22132.127884 + 30 +0.0 + 11 +13774.999996 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +AC9 + 8 +0 + 62 + 0 + 10 +13799.999996 + 20 +22153.778519 + 30 +0.0 + 11 +13812.499996 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +ACA + 8 +0 + 62 + 0 + 10 +13802.611207 + 20 +22115.0 + 30 +0.0 + 11 +13812.499995 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +ACB + 8 +0 + 62 + 0 + 10 +13837.499995 + 20 +22175.429154 + 30 +0.0 + 11 +13848.799229 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +ACC + 8 +0 + 62 + 0 + 10 +13837.499995 + 20 +22132.127884 + 30 +0.0 + 11 +13849.999995 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +ACD + 8 +0 + 62 + 0 + 10 +13874.999995 + 20 +22153.778519 + 30 +0.0 + 11 +13887.499995 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +ACE + 8 +0 + 62 + 0 + 10 +13877.611207 + 20 +22115.0 + 30 +0.0 + 11 +13887.499995 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +ACF + 8 +0 + 62 + 0 + 10 +13912.499995 + 20 +22175.429154 + 30 +0.0 + 11 +13923.799228 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AD0 + 8 +0 + 62 + 0 + 10 +13912.499995 + 20 +22132.127884 + 30 +0.0 + 11 +13924.999995 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +AD1 + 8 +0 + 62 + 0 + 10 +13949.999995 + 20 +22153.778519 + 30 +0.0 + 11 +13962.499995 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +AD2 + 8 +0 + 62 + 0 + 10 +13952.611206 + 20 +22115.0 + 30 +0.0 + 11 +13962.499995 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +AD3 + 8 +0 + 62 + 0 + 10 +13987.499995 + 20 +22175.429154 + 30 +0.0 + 11 +13998.799228 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AD4 + 8 +0 + 62 + 0 + 10 +13987.499995 + 20 +22132.127884 + 30 +0.0 + 11 +13999.999995 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +AD5 + 8 +0 + 62 + 0 + 10 +14024.999995 + 20 +22153.778519 + 30 +0.0 + 11 +14037.499995 + 21 +22175.429154 + 31 +0.0 + 0 +LINE + 5 +AD6 + 8 +0 + 62 + 0 + 10 +14027.611206 + 20 +22115.0 + 30 +0.0 + 11 +14037.499995 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +AD7 + 8 +0 + 62 + 0 + 10 +14062.499995 + 20 +22175.429155 + 30 +0.0 + 11 +14073.799228 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AD8 + 8 +0 + 62 + 0 + 10 +14062.499995 + 20 +22132.127884 + 30 +0.0 + 11 +14074.999995 + 21 +22153.778519 + 31 +0.0 + 0 +LINE + 5 +AD9 + 8 +0 + 62 + 0 + 10 +14099.999995 + 20 +22153.77852 + 30 +0.0 + 11 +14112.499995 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +ADA + 8 +0 + 62 + 0 + 10 +14102.611206 + 20 +22115.0 + 30 +0.0 + 11 +14112.499995 + 21 +22132.127884 + 31 +0.0 + 0 +LINE + 5 +ADB + 8 +0 + 62 + 0 + 10 +14137.499995 + 20 +22175.429155 + 30 +0.0 + 11 +14148.799227 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +ADC + 8 +0 + 62 + 0 + 10 +14137.499994 + 20 +22132.127885 + 30 +0.0 + 11 +14149.999994 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +ADD + 8 +0 + 62 + 0 + 10 +14174.999994 + 20 +22153.77852 + 30 +0.0 + 11 +14187.499994 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +ADE + 8 +0 + 62 + 0 + 10 +14177.611205 + 20 +22115.0 + 30 +0.0 + 11 +14187.499994 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +ADF + 8 +0 + 62 + 0 + 10 +14212.499994 + 20 +22175.429155 + 30 +0.0 + 11 +14223.799227 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AE0 + 8 +0 + 62 + 0 + 10 +14212.499994 + 20 +22132.127885 + 30 +0.0 + 11 +14224.999994 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +AE1 + 8 +0 + 62 + 0 + 10 +14249.999994 + 20 +22153.77852 + 30 +0.0 + 11 +14262.499994 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +AE2 + 8 +0 + 62 + 0 + 10 +14252.611205 + 20 +22115.0 + 30 +0.0 + 11 +14262.499994 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +AE3 + 8 +0 + 62 + 0 + 10 +14287.499994 + 20 +22175.429155 + 30 +0.0 + 11 +14298.799227 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AE4 + 8 +0 + 62 + 0 + 10 +14287.499994 + 20 +22132.127885 + 30 +0.0 + 11 +14299.999994 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +AE5 + 8 +0 + 62 + 0 + 10 +14324.999994 + 20 +22153.77852 + 30 +0.0 + 11 +14337.499994 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +AE6 + 8 +0 + 62 + 0 + 10 +14327.611205 + 20 +22115.0 + 30 +0.0 + 11 +14337.499994 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +AE7 + 8 +0 + 62 + 0 + 10 +14362.499994 + 20 +22175.429155 + 30 +0.0 + 11 +14373.799226 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AE8 + 8 +0 + 62 + 0 + 10 +14362.499994 + 20 +22132.127885 + 30 +0.0 + 11 +14374.999994 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +AE9 + 8 +0 + 62 + 0 + 10 +14399.999994 + 20 +22153.77852 + 30 +0.0 + 11 +14412.499994 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +AEA + 8 +0 + 62 + 0 + 10 +14402.611204 + 20 +22115.0 + 30 +0.0 + 11 +14412.499994 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +AEB + 8 +0 + 62 + 0 + 10 +14437.499994 + 20 +22175.429155 + 30 +0.0 + 11 +14448.799226 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AEC + 8 +0 + 62 + 0 + 10 +14437.499993 + 20 +22132.127885 + 30 +0.0 + 11 +14449.999993 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +AED + 8 +0 + 62 + 0 + 10 +14474.999993 + 20 +22153.77852 + 30 +0.0 + 11 +14487.499993 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +AEE + 8 +0 + 62 + 0 + 10 +14477.611204 + 20 +22115.0 + 30 +0.0 + 11 +14487.499993 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +AEF + 8 +0 + 62 + 0 + 10 +14512.499993 + 20 +22175.429155 + 30 +0.0 + 11 +14523.799226 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AF0 + 8 +0 + 62 + 0 + 10 +14512.499993 + 20 +22132.127885 + 30 +0.0 + 11 +14524.999993 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +AF1 + 8 +0 + 62 + 0 + 10 +14549.999993 + 20 +22153.77852 + 30 +0.0 + 11 +14562.499993 + 21 +22175.429155 + 31 +0.0 + 0 +LINE + 5 +AF2 + 8 +0 + 62 + 0 + 10 +14552.611204 + 20 +22115.0 + 30 +0.0 + 11 +14562.499993 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +AF3 + 8 +0 + 62 + 0 + 10 +14587.499993 + 20 +22175.429156 + 30 +0.0 + 11 +14598.799225 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AF4 + 8 +0 + 62 + 0 + 10 +14587.499993 + 20 +22132.127885 + 30 +0.0 + 11 +14599.999993 + 21 +22153.77852 + 31 +0.0 + 0 +LINE + 5 +AF5 + 8 +0 + 62 + 0 + 10 +14624.999993 + 20 +22153.778521 + 30 +0.0 + 11 +14637.499993 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +AF6 + 8 +0 + 62 + 0 + 10 +14627.611204 + 20 +22115.0 + 30 +0.0 + 11 +14637.499993 + 21 +22132.127885 + 31 +0.0 + 0 +LINE + 5 +AF7 + 8 +0 + 62 + 0 + 10 +14662.499993 + 20 +22175.429156 + 30 +0.0 + 11 +14673.799225 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AF8 + 8 +0 + 62 + 0 + 10 +14662.499993 + 20 +22132.127886 + 30 +0.0 + 11 +14674.999993 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +AF9 + 8 +0 + 62 + 0 + 10 +14699.999993 + 20 +22153.778521 + 30 +0.0 + 11 +14712.499993 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +AFA + 8 +0 + 62 + 0 + 10 +14702.611203 + 20 +22115.0 + 30 +0.0 + 11 +14712.499993 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +AFB + 8 +0 + 62 + 0 + 10 +14737.499993 + 20 +22175.429156 + 30 +0.0 + 11 +14748.799225 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +AFC + 8 +0 + 62 + 0 + 10 +14737.499992 + 20 +22132.127886 + 30 +0.0 + 11 +14749.999992 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +AFD + 8 +0 + 62 + 0 + 10 +14774.999992 + 20 +22153.778521 + 30 +0.0 + 11 +14787.499992 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +AFE + 8 +0 + 62 + 0 + 10 +14777.611203 + 20 +22115.0 + 30 +0.0 + 11 +14787.499992 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +AFF + 8 +0 + 62 + 0 + 10 +14812.499992 + 20 +22175.429156 + 30 +0.0 + 11 +14823.799224 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B00 + 8 +0 + 62 + 0 + 10 +14812.499992 + 20 +22132.127886 + 30 +0.0 + 11 +14824.999992 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +B01 + 8 +0 + 62 + 0 + 10 +14849.999992 + 20 +22153.778521 + 30 +0.0 + 11 +14862.499992 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +B02 + 8 +0 + 62 + 0 + 10 +14852.611203 + 20 +22115.0 + 30 +0.0 + 11 +14862.499992 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +B03 + 8 +0 + 62 + 0 + 10 +14887.499992 + 20 +22175.429156 + 30 +0.0 + 11 +14898.799224 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B04 + 8 +0 + 62 + 0 + 10 +14887.499992 + 20 +22132.127886 + 30 +0.0 + 11 +14899.999992 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +B05 + 8 +0 + 62 + 0 + 10 +14924.999992 + 20 +22153.778521 + 30 +0.0 + 11 +14937.499992 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +B06 + 8 +0 + 62 + 0 + 10 +14927.611202 + 20 +22115.0 + 30 +0.0 + 11 +14937.499992 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +B07 + 8 +0 + 62 + 0 + 10 +14962.499992 + 20 +22175.429156 + 30 +0.0 + 11 +14973.799224 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B08 + 8 +0 + 62 + 0 + 10 +14962.499992 + 20 +22132.127886 + 30 +0.0 + 11 +14974.999992 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +B09 + 8 +0 + 62 + 0 + 10 +14999.999992 + 20 +22153.778521 + 30 +0.0 + 11 +15012.499992 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +B0A + 8 +0 + 62 + 0 + 10 +15002.611202 + 20 +22115.0 + 30 +0.0 + 11 +15012.499992 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +B0B + 8 +0 + 62 + 0 + 10 +15037.499992 + 20 +22175.429156 + 30 +0.0 + 11 +15048.799223 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B0C + 8 +0 + 62 + 0 + 10 +15037.499991 + 20 +22132.127886 + 30 +0.0 + 11 +15049.999991 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +B0D + 8 +0 + 62 + 0 + 10 +15074.999991 + 20 +22153.778521 + 30 +0.0 + 11 +15087.499991 + 21 +22175.429156 + 31 +0.0 + 0 +LINE + 5 +B0E + 8 +0 + 62 + 0 + 10 +15077.611202 + 20 +22115.0 + 30 +0.0 + 11 +15087.499991 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +B0F + 8 +0 + 62 + 0 + 10 +15112.499991 + 20 +22175.429156 + 30 +0.0 + 11 +15123.799223 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B10 + 8 +0 + 62 + 0 + 10 +15112.499991 + 20 +22132.127886 + 30 +0.0 + 11 +15124.999991 + 21 +22153.778521 + 31 +0.0 + 0 +LINE + 5 +B11 + 8 +0 + 62 + 0 + 10 +15149.999991 + 20 +22153.778521 + 30 +0.0 + 11 +15162.499991 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B12 + 8 +0 + 62 + 0 + 10 +15152.611201 + 20 +22115.0 + 30 +0.0 + 11 +15162.499991 + 21 +22132.127886 + 31 +0.0 + 0 +LINE + 5 +B13 + 8 +0 + 62 + 0 + 10 +15187.499991 + 20 +22175.429157 + 30 +0.0 + 11 +15198.799223 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B14 + 8 +0 + 62 + 0 + 10 +15187.499991 + 20 +22132.127886 + 30 +0.0 + 11 +15199.999991 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B15 + 8 +0 + 62 + 0 + 10 +15224.999991 + 20 +22153.778522 + 30 +0.0 + 11 +15237.499991 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B16 + 8 +0 + 62 + 0 + 10 +15227.611201 + 20 +22115.0 + 30 +0.0 + 11 +15237.499991 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B17 + 8 +0 + 62 + 0 + 10 +15262.499991 + 20 +22175.429157 + 30 +0.0 + 11 +15273.799222 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B18 + 8 +0 + 62 + 0 + 10 +15262.499991 + 20 +22132.127887 + 30 +0.0 + 11 +15274.999991 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B19 + 8 +0 + 62 + 0 + 10 +15299.999991 + 20 +22153.778522 + 30 +0.0 + 11 +15312.499991 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B1A + 8 +0 + 62 + 0 + 10 +15302.611201 + 20 +22115.0 + 30 +0.0 + 11 +15312.499991 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B1B + 8 +0 + 62 + 0 + 10 +15337.499991 + 20 +22175.429157 + 30 +0.0 + 11 +15348.799222 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B1C + 8 +0 + 62 + 0 + 10 +15337.49999 + 20 +22132.127887 + 30 +0.0 + 11 +15349.99999 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B1D + 8 +0 + 62 + 0 + 10 +15374.99999 + 20 +22153.778522 + 30 +0.0 + 11 +15387.49999 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B1E + 8 +0 + 62 + 0 + 10 +15377.6112 + 20 +22115.0 + 30 +0.0 + 11 +15387.49999 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B1F + 8 +0 + 62 + 0 + 10 +15412.49999 + 20 +22175.429157 + 30 +0.0 + 11 +15423.799222 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B20 + 8 +0 + 62 + 0 + 10 +15412.49999 + 20 +22132.127887 + 30 +0.0 + 11 +15424.99999 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B21 + 8 +0 + 62 + 0 + 10 +15449.99999 + 20 +22153.778522 + 30 +0.0 + 11 +15462.49999 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B22 + 8 +0 + 62 + 0 + 10 +15452.6112 + 20 +22115.0 + 30 +0.0 + 11 +15462.49999 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B23 + 8 +0 + 62 + 0 + 10 +15487.49999 + 20 +22175.429157 + 30 +0.0 + 11 +15498.799221 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B24 + 8 +0 + 62 + 0 + 10 +15487.49999 + 20 +22132.127887 + 30 +0.0 + 11 +15499.99999 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B25 + 8 +0 + 62 + 0 + 10 +15524.99999 + 20 +22153.778522 + 30 +0.0 + 11 +15537.49999 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B26 + 8 +0 + 62 + 0 + 10 +15527.6112 + 20 +22115.0 + 30 +0.0 + 11 +15537.49999 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B27 + 8 +0 + 62 + 0 + 10 +15562.49999 + 20 +22175.429157 + 30 +0.0 + 11 +15573.799221 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B28 + 8 +0 + 62 + 0 + 10 +15562.49999 + 20 +22132.127887 + 30 +0.0 + 11 +15574.99999 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B29 + 8 +0 + 62 + 0 + 10 +15599.99999 + 20 +22153.778522 + 30 +0.0 + 11 +15612.49999 + 21 +22175.429157 + 31 +0.0 + 0 +LINE + 5 +B2A + 8 +0 + 62 + 0 + 10 +15602.611199 + 20 +22115.0 + 30 +0.0 + 11 +15612.49999 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B2B + 8 +0 + 62 + 0 + 10 +15637.49999 + 20 +22175.429157 + 30 +0.0 + 11 +15648.799221 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B2C + 8 +0 + 62 + 0 + 10 +15637.49999 + 20 +22132.127887 + 30 +0.0 + 11 +15649.99999 + 21 +22153.778522 + 31 +0.0 + 0 +LINE + 5 +B2D + 8 +0 + 62 + 0 + 10 +15674.999989 + 20 +22153.778522 + 30 +0.0 + 11 +15687.499989 + 21 +22175.429158 + 31 +0.0 + 0 +LINE + 5 +B2E + 8 +0 + 62 + 0 + 10 +15677.611199 + 20 +22115.0 + 30 +0.0 + 11 +15687.499989 + 21 +22132.127887 + 31 +0.0 + 0 +LINE + 5 +B2F + 8 +0 + 62 + 0 + 10 +15712.499989 + 20 +22175.429158 + 30 +0.0 + 11 +15723.79922 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B30 + 8 +0 + 62 + 0 + 10 +15712.499989 + 20 +22132.127887 + 30 +0.0 + 11 +15724.999989 + 21 +22153.778523 + 31 +0.0 + 0 +LINE + 5 +B31 + 8 +0 + 62 + 0 + 10 +15749.999989 + 20 +22153.778523 + 30 +0.0 + 11 +15762.499989 + 21 +22175.429158 + 31 +0.0 + 0 +LINE + 5 +B32 + 8 +0 + 62 + 0 + 10 +15752.611199 + 20 +22115.0 + 30 +0.0 + 11 +15762.499989 + 21 +22132.127888 + 31 +0.0 + 0 +LINE + 5 +B33 + 8 +0 + 62 + 0 + 10 +15787.499989 + 20 +22175.429158 + 30 +0.0 + 11 +15798.79922 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B34 + 8 +0 + 62 + 0 + 10 +15787.499989 + 20 +22132.127888 + 30 +0.0 + 11 +15799.999989 + 21 +22153.778523 + 31 +0.0 + 0 +LINE + 5 +B35 + 8 +0 + 62 + 0 + 10 +15824.999989 + 20 +22153.778523 + 30 +0.0 + 11 +15837.499989 + 21 +22175.429158 + 31 +0.0 + 0 +LINE + 5 +B36 + 8 +0 + 62 + 0 + 10 +15827.611198 + 20 +22115.0 + 30 +0.0 + 11 +15837.499989 + 21 +22132.127888 + 31 +0.0 + 0 +LINE + 5 +B37 + 8 +0 + 62 + 0 + 10 +15862.499989 + 20 +22175.429158 + 30 +0.0 + 11 +15873.79922 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B38 + 8 +0 + 62 + 0 + 10 +15862.499989 + 20 +22132.127888 + 30 +0.0 + 11 +15874.999989 + 21 +22153.778523 + 31 +0.0 + 0 +ENDBLK + 5 +B39 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X42 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X42 + 1 + + 0 +LINE + 5 +B3B + 8 +0 + 62 + 0 + 10 +16863.75 + 20 +22153.77846 + 30 +0.0 + 11 +16875.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B3C + 8 +0 + 62 + 0 + 10 +16925.0 + 20 +22153.77846 + 30 +0.0 + 11 +16950.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B3D + 8 +0 + 62 + 0 + 10 +17000.0 + 20 +22153.77846 + 30 +0.0 + 11 +17025.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B3E + 8 +0 + 62 + 0 + 10 +17075.0 + 20 +22153.77846 + 30 +0.0 + 11 +17100.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B3F + 8 +0 + 62 + 0 + 10 +17150.0 + 20 +22153.77846 + 30 +0.0 + 11 +17175.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B40 + 8 +0 + 62 + 0 + 10 +17225.0 + 20 +22153.77846 + 30 +0.0 + 11 +17250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B41 + 8 +0 + 62 + 0 + 10 +17300.0 + 20 +22153.77846 + 30 +0.0 + 11 +17325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B42 + 8 +0 + 62 + 0 + 10 +17375.0 + 20 +22153.77846 + 30 +0.0 + 11 +17400.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B43 + 8 +0 + 62 + 0 + 10 +17450.0 + 20 +22153.77846 + 30 +0.0 + 11 +17475.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B44 + 8 +0 + 62 + 0 + 10 +17525.0 + 20 +22153.77846 + 30 +0.0 + 11 +17550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B45 + 8 +0 + 62 + 0 + 10 +17600.0 + 20 +22153.77846 + 30 +0.0 + 11 +17625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B46 + 8 +0 + 62 + 0 + 10 +17675.0 + 20 +22153.77846 + 30 +0.0 + 11 +17700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B47 + 8 +0 + 62 + 0 + 10 +17750.0 + 20 +22153.77846 + 30 +0.0 + 11 +17775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B48 + 8 +0 + 62 + 0 + 10 +17825.0 + 20 +22153.77846 + 30 +0.0 + 11 +17850.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B49 + 8 +0 + 62 + 0 + 10 +17900.0 + 20 +22153.77846 + 30 +0.0 + 11 +17925.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B4A + 8 +0 + 62 + 0 + 10 +17975.0 + 20 +22153.77846 + 30 +0.0 + 11 +18000.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B4B + 8 +0 + 62 + 0 + 10 +18050.0 + 20 +22153.77846 + 30 +0.0 + 11 +18075.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B4C + 8 +0 + 62 + 0 + 10 +18125.0 + 20 +22153.77846 + 30 +0.0 + 11 +18150.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B4D + 8 +0 + 62 + 0 + 10 +18200.0 + 20 +22153.77846 + 30 +0.0 + 11 +18225.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B4E + 8 +0 + 62 + 0 + 10 +18275.0 + 20 +22153.77846 + 30 +0.0 + 11 +18300.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B4F + 8 +0 + 62 + 0 + 10 +18350.0 + 20 +22153.77846 + 30 +0.0 + 11 +18375.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B50 + 8 +0 + 62 + 0 + 10 +18425.0 + 20 +22153.77846 + 30 +0.0 + 11 +18450.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B51 + 8 +0 + 62 + 0 + 10 +18500.0 + 20 +22153.77846 + 30 +0.0 + 11 +18525.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B52 + 8 +0 + 62 + 0 + 10 +18575.0 + 20 +22153.77846 + 30 +0.0 + 11 +18600.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B53 + 8 +0 + 62 + 0 + 10 +18650.0 + 20 +22153.77846 + 30 +0.0 + 11 +18675.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B54 + 8 +0 + 62 + 0 + 10 +18725.0 + 20 +22153.77846 + 30 +0.0 + 11 +18750.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +B55 + 8 +0 + 62 + 0 + 10 +16887.5 + 20 +22175.429095 + 30 +0.0 + 11 +16912.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B56 + 8 +0 + 62 + 0 + 10 +16962.5 + 20 +22175.429095 + 30 +0.0 + 11 +16987.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B57 + 8 +0 + 62 + 0 + 10 +17037.5 + 20 +22175.429095 + 30 +0.0 + 11 +17062.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B58 + 8 +0 + 62 + 0 + 10 +17112.5 + 20 +22175.429095 + 30 +0.0 + 11 +17137.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B59 + 8 +0 + 62 + 0 + 10 +17187.5 + 20 +22175.429095 + 30 +0.0 + 11 +17212.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B5A + 8 +0 + 62 + 0 + 10 +17262.5 + 20 +22175.429095 + 30 +0.0 + 11 +17287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B5B + 8 +0 + 62 + 0 + 10 +17337.5 + 20 +22175.429095 + 30 +0.0 + 11 +17362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B5C + 8 +0 + 62 + 0 + 10 +17412.5 + 20 +22175.429095 + 30 +0.0 + 11 +17437.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B5D + 8 +0 + 62 + 0 + 10 +17487.5 + 20 +22175.429095 + 30 +0.0 + 11 +17512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B5E + 8 +0 + 62 + 0 + 10 +17562.5 + 20 +22175.429095 + 30 +0.0 + 11 +17587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B5F + 8 +0 + 62 + 0 + 10 +17637.5 + 20 +22175.429095 + 30 +0.0 + 11 +17662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B60 + 8 +0 + 62 + 0 + 10 +17712.5 + 20 +22175.429095 + 30 +0.0 + 11 +17737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B61 + 8 +0 + 62 + 0 + 10 +17787.5 + 20 +22175.429095 + 30 +0.0 + 11 +17812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B62 + 8 +0 + 62 + 0 + 10 +17862.5 + 20 +22175.429095 + 30 +0.0 + 11 +17887.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B63 + 8 +0 + 62 + 0 + 10 +17937.5 + 20 +22175.429095 + 30 +0.0 + 11 +17962.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B64 + 8 +0 + 62 + 0 + 10 +18012.5 + 20 +22175.429095 + 30 +0.0 + 11 +18037.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B65 + 8 +0 + 62 + 0 + 10 +18087.5 + 20 +22175.429095 + 30 +0.0 + 11 +18112.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B66 + 8 +0 + 62 + 0 + 10 +18162.5 + 20 +22175.429095 + 30 +0.0 + 11 +18187.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B67 + 8 +0 + 62 + 0 + 10 +18237.5 + 20 +22175.429095 + 30 +0.0 + 11 +18262.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B68 + 8 +0 + 62 + 0 + 10 +18312.5 + 20 +22175.429095 + 30 +0.0 + 11 +18337.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B69 + 8 +0 + 62 + 0 + 10 +18387.5 + 20 +22175.429095 + 30 +0.0 + 11 +18412.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B6A + 8 +0 + 62 + 0 + 10 +18462.5 + 20 +22175.429095 + 30 +0.0 + 11 +18487.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B6B + 8 +0 + 62 + 0 + 10 +18537.5 + 20 +22175.429095 + 30 +0.0 + 11 +18562.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B6C + 8 +0 + 62 + 0 + 10 +18612.5 + 20 +22175.429095 + 30 +0.0 + 11 +18637.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B6D + 8 +0 + 62 + 0 + 10 +18687.5 + 20 +22175.429095 + 30 +0.0 + 11 +18712.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +B6E + 8 +0 + 62 + 0 + 10 +16887.5 + 20 +22132.127825 + 30 +0.0 + 11 +16912.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B6F + 8 +0 + 62 + 0 + 10 +16962.5 + 20 +22132.127825 + 30 +0.0 + 11 +16987.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B70 + 8 +0 + 62 + 0 + 10 +17037.5 + 20 +22132.127825 + 30 +0.0 + 11 +17062.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B71 + 8 +0 + 62 + 0 + 10 +17112.5 + 20 +22132.127825 + 30 +0.0 + 11 +17137.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B72 + 8 +0 + 62 + 0 + 10 +17187.5 + 20 +22132.127825 + 30 +0.0 + 11 +17212.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B73 + 8 +0 + 62 + 0 + 10 +17262.5 + 20 +22132.127825 + 30 +0.0 + 11 +17287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B74 + 8 +0 + 62 + 0 + 10 +17337.5 + 20 +22132.127825 + 30 +0.0 + 11 +17362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B75 + 8 +0 + 62 + 0 + 10 +17412.5 + 20 +22132.127825 + 30 +0.0 + 11 +17437.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B76 + 8 +0 + 62 + 0 + 10 +17487.5 + 20 +22132.127825 + 30 +0.0 + 11 +17512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B77 + 8 +0 + 62 + 0 + 10 +17562.5 + 20 +22132.127825 + 30 +0.0 + 11 +17587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B78 + 8 +0 + 62 + 0 + 10 +17637.5 + 20 +22132.127825 + 30 +0.0 + 11 +17662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B79 + 8 +0 + 62 + 0 + 10 +17712.5 + 20 +22132.127825 + 30 +0.0 + 11 +17737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B7A + 8 +0 + 62 + 0 + 10 +17787.5 + 20 +22132.127825 + 30 +0.0 + 11 +17812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B7B + 8 +0 + 62 + 0 + 10 +17862.5 + 20 +22132.127825 + 30 +0.0 + 11 +17887.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B7C + 8 +0 + 62 + 0 + 10 +17937.5 + 20 +22132.127825 + 30 +0.0 + 11 +17962.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B7D + 8 +0 + 62 + 0 + 10 +18012.5 + 20 +22132.127825 + 30 +0.0 + 11 +18037.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B7E + 8 +0 + 62 + 0 + 10 +18087.5 + 20 +22132.127825 + 30 +0.0 + 11 +18112.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B7F + 8 +0 + 62 + 0 + 10 +18162.5 + 20 +22132.127825 + 30 +0.0 + 11 +18187.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B80 + 8 +0 + 62 + 0 + 10 +18237.5 + 20 +22132.127825 + 30 +0.0 + 11 +18262.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B81 + 8 +0 + 62 + 0 + 10 +18312.5 + 20 +22132.127825 + 30 +0.0 + 11 +18337.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B82 + 8 +0 + 62 + 0 + 10 +18387.5 + 20 +22132.127825 + 30 +0.0 + 11 +18412.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B83 + 8 +0 + 62 + 0 + 10 +18462.5 + 20 +22132.127825 + 30 +0.0 + 11 +18487.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B84 + 8 +0 + 62 + 0 + 10 +18537.5 + 20 +22132.127825 + 30 +0.0 + 11 +18562.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B85 + 8 +0 + 62 + 0 + 10 +18612.5 + 20 +22132.127825 + 30 +0.0 + 11 +18637.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B86 + 8 +0 + 62 + 0 + 10 +18687.5 + 20 +22132.127825 + 30 +0.0 + 11 +18712.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +B87 + 8 +0 + 62 + 0 + 10 +17822.388698 + 20 +22115.0 + 30 +0.0 + 11 +17812.499934 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +B88 + 8 +0 + 62 + 0 + 10 +17787.499934 + 20 +22175.429113 + 30 +0.0 + 11 +17776.200677 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B89 + 8 +0 + 62 + 0 + 10 +17787.499934 + 20 +22132.127843 + 30 +0.0 + 11 +17774.999934 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +B8A + 8 +0 + 62 + 0 + 10 +17749.999934 + 20 +22153.778478 + 30 +0.0 + 11 +17737.499934 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +B8B + 8 +0 + 62 + 0 + 10 +17747.388699 + 20 +22115.0 + 30 +0.0 + 11 +17737.499934 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +B8C + 8 +0 + 62 + 0 + 10 +17712.499934 + 20 +22175.429113 + 30 +0.0 + 11 +17701.200677 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B8D + 8 +0 + 62 + 0 + 10 +17712.499934 + 20 +22132.127843 + 30 +0.0 + 11 +17699.999934 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +B8E + 8 +0 + 62 + 0 + 10 +17674.999934 + 20 +22153.778478 + 30 +0.0 + 11 +17662.499934 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +B8F + 8 +0 + 62 + 0 + 10 +17672.388699 + 20 +22115.0 + 30 +0.0 + 11 +17662.499934 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +B90 + 8 +0 + 62 + 0 + 10 +17637.499934 + 20 +22175.429113 + 30 +0.0 + 11 +17626.200678 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B91 + 8 +0 + 62 + 0 + 10 +17637.499934 + 20 +22132.127843 + 30 +0.0 + 11 +17624.999934 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +B92 + 8 +0 + 62 + 0 + 10 +17599.999934 + 20 +22153.778478 + 30 +0.0 + 11 +17587.499934 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +B93 + 8 +0 + 62 + 0 + 10 +17597.388699 + 20 +22115.0 + 30 +0.0 + 11 +17587.499934 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +B94 + 8 +0 + 62 + 0 + 10 +17562.499934 + 20 +22175.429114 + 30 +0.0 + 11 +17551.200678 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B95 + 8 +0 + 62 + 0 + 10 +17562.499934 + 20 +22132.127843 + 30 +0.0 + 11 +17549.999934 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +B96 + 8 +0 + 62 + 0 + 10 +17524.999935 + 20 +22153.778479 + 30 +0.0 + 11 +17512.499935 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +B97 + 8 +0 + 62 + 0 + 10 +17522.3887 + 20 +22115.0 + 30 +0.0 + 11 +17512.499935 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +B98 + 8 +0 + 62 + 0 + 10 +17487.499935 + 20 +22175.429114 + 30 +0.0 + 11 +17476.200678 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B99 + 8 +0 + 62 + 0 + 10 +17487.499935 + 20 +22132.127844 + 30 +0.0 + 11 +17474.999935 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +B9A + 8 +0 + 62 + 0 + 10 +17449.999935 + 20 +22153.778479 + 30 +0.0 + 11 +17437.499935 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +B9B + 8 +0 + 62 + 0 + 10 +17447.3887 + 20 +22115.0 + 30 +0.0 + 11 +17437.499935 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +B9C + 8 +0 + 62 + 0 + 10 +17412.499935 + 20 +22175.429114 + 30 +0.0 + 11 +17401.200678 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +B9D + 8 +0 + 62 + 0 + 10 +17412.499935 + 20 +22132.127844 + 30 +0.0 + 11 +17399.999935 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +B9E + 8 +0 + 62 + 0 + 10 +17374.999935 + 20 +22153.778479 + 30 +0.0 + 11 +17362.499935 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +B9F + 8 +0 + 62 + 0 + 10 +17372.3887 + 20 +22115.0 + 30 +0.0 + 11 +17362.499935 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +BA0 + 8 +0 + 62 + 0 + 10 +17337.499935 + 20 +22175.429114 + 30 +0.0 + 11 +17326.200679 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BA1 + 8 +0 + 62 + 0 + 10 +17337.499935 + 20 +22132.127844 + 30 +0.0 + 11 +17324.999935 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +BA2 + 8 +0 + 62 + 0 + 10 +17299.999935 + 20 +22153.778479 + 30 +0.0 + 11 +17287.499935 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +BA3 + 8 +0 + 62 + 0 + 10 +17297.388701 + 20 +22115.0 + 30 +0.0 + 11 +17287.499935 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +BA4 + 8 +0 + 62 + 0 + 10 +17262.499935 + 20 +22175.429114 + 30 +0.0 + 11 +17251.200679 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BA5 + 8 +0 + 62 + 0 + 10 +17262.499935 + 20 +22132.127844 + 30 +0.0 + 11 +17249.999935 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +BA6 + 8 +0 + 62 + 0 + 10 +17224.999936 + 20 +22153.778479 + 30 +0.0 + 11 +17212.499936 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +BA7 + 8 +0 + 62 + 0 + 10 +17222.388701 + 20 +22115.0 + 30 +0.0 + 11 +17212.499936 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +BA8 + 8 +0 + 62 + 0 + 10 +17187.499936 + 20 +22175.429114 + 30 +0.0 + 11 +17176.200679 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BA9 + 8 +0 + 62 + 0 + 10 +17187.499936 + 20 +22132.127844 + 30 +0.0 + 11 +17174.999936 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +BAA + 8 +0 + 62 + 0 + 10 +17149.999936 + 20 +22153.778479 + 30 +0.0 + 11 +17137.499936 + 21 +22175.429114 + 31 +0.0 + 0 +LINE + 5 +BAB + 8 +0 + 62 + 0 + 10 +17147.388701 + 20 +22115.0 + 30 +0.0 + 11 +17137.499936 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +BAC + 8 +0 + 62 + 0 + 10 +17112.499936 + 20 +22175.429114 + 30 +0.0 + 11 +17101.20068 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BAD + 8 +0 + 62 + 0 + 10 +17112.499936 + 20 +22132.127844 + 30 +0.0 + 11 +17099.999936 + 21 +22153.778479 + 31 +0.0 + 0 +LINE + 5 +BAE + 8 +0 + 62 + 0 + 10 +17074.999936 + 20 +22153.778479 + 30 +0.0 + 11 +17062.499936 + 21 +22175.429115 + 31 +0.0 + 0 +LINE + 5 +BAF + 8 +0 + 62 + 0 + 10 +17072.388702 + 20 +22115.0 + 30 +0.0 + 11 +17062.499936 + 21 +22132.127844 + 31 +0.0 + 0 +LINE + 5 +BB0 + 8 +0 + 62 + 0 + 10 +17037.499936 + 20 +22175.429115 + 30 +0.0 + 11 +17026.20068 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BB1 + 8 +0 + 62 + 0 + 10 +17037.499936 + 20 +22132.127844 + 30 +0.0 + 11 +17024.999936 + 21 +22153.77848 + 31 +0.0 + 0 +LINE + 5 +BB2 + 8 +0 + 62 + 0 + 10 +16999.999936 + 20 +22153.77848 + 30 +0.0 + 11 +16987.499936 + 21 +22175.429115 + 31 +0.0 + 0 +LINE + 5 +BB3 + 8 +0 + 62 + 0 + 10 +16997.388702 + 20 +22115.0 + 30 +0.0 + 11 +16987.499936 + 21 +22132.127845 + 31 +0.0 + 0 +LINE + 5 +BB4 + 8 +0 + 62 + 0 + 10 +16962.499936 + 20 +22175.429115 + 30 +0.0 + 11 +16951.20068 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BB5 + 8 +0 + 62 + 0 + 10 +16962.499936 + 20 +22132.127845 + 30 +0.0 + 11 +16949.999936 + 21 +22153.77848 + 31 +0.0 + 0 +LINE + 5 +BB6 + 8 +0 + 62 + 0 + 10 +16924.999937 + 20 +22153.77848 + 30 +0.0 + 11 +16912.499937 + 21 +22175.429115 + 31 +0.0 + 0 +LINE + 5 +BB7 + 8 +0 + 62 + 0 + 10 +16922.388702 + 20 +22115.0 + 30 +0.0 + 11 +16912.499937 + 21 +22132.127845 + 31 +0.0 + 0 +LINE + 5 +BB8 + 8 +0 + 62 + 0 + 10 +16887.499937 + 20 +22175.429115 + 30 +0.0 + 11 +16876.200681 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BB9 + 8 +0 + 62 + 0 + 10 +16887.499937 + 20 +22132.127845 + 30 +0.0 + 11 +16874.999937 + 21 +22153.77848 + 31 +0.0 + 0 +LINE + 5 +BBA + 8 +0 + 62 + 0 + 10 +17824.999934 + 20 +22153.778478 + 30 +0.0 + 11 +17812.499934 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +BBB + 8 +0 + 62 + 0 + 10 +17862.499933 + 20 +22132.127843 + 30 +0.0 + 11 +17849.999933 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +BBC + 8 +0 + 62 + 0 + 10 +17897.388698 + 20 +22115.0 + 30 +0.0 + 11 +17887.499933 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +BBD + 8 +0 + 62 + 0 + 10 +17862.499933 + 20 +22175.429113 + 30 +0.0 + 11 +17851.200677 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BBE + 8 +0 + 62 + 0 + 10 +17899.999933 + 20 +22153.778478 + 30 +0.0 + 11 +17887.499933 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +BBF + 8 +0 + 62 + 0 + 10 +17937.499933 + 20 +22132.127843 + 30 +0.0 + 11 +17924.999933 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +BC0 + 8 +0 + 62 + 0 + 10 +17972.388698 + 20 +22115.0 + 30 +0.0 + 11 +17962.499933 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +BC1 + 8 +0 + 62 + 0 + 10 +17937.499933 + 20 +22175.429113 + 30 +0.0 + 11 +17926.200676 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BC2 + 8 +0 + 62 + 0 + 10 +17974.999933 + 20 +22153.778478 + 30 +0.0 + 11 +17962.499933 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +BC3 + 8 +0 + 62 + 0 + 10 +18012.499933 + 20 +22132.127843 + 30 +0.0 + 11 +17999.999933 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +BC4 + 8 +0 + 62 + 0 + 10 +18047.388697 + 20 +22115.0 + 30 +0.0 + 11 +18037.499933 + 21 +22132.127843 + 31 +0.0 + 0 +LINE + 5 +BC5 + 8 +0 + 62 + 0 + 10 +18012.499933 + 20 +22175.429113 + 30 +0.0 + 11 +18001.200676 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BC6 + 8 +0 + 62 + 0 + 10 +18049.999933 + 20 +22153.778478 + 30 +0.0 + 11 +18037.499933 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +BC7 + 8 +0 + 62 + 0 + 10 +18087.499933 + 20 +22132.127842 + 30 +0.0 + 11 +18074.999933 + 21 +22153.778478 + 31 +0.0 + 0 +LINE + 5 +BC8 + 8 +0 + 62 + 0 + 10 +18122.388697 + 20 +22115.0 + 30 +0.0 + 11 +18112.499933 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BC9 + 8 +0 + 62 + 0 + 10 +18087.499933 + 20 +22175.429113 + 30 +0.0 + 11 +18076.200676 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BCA + 8 +0 + 62 + 0 + 10 +18124.999933 + 20 +22153.778477 + 30 +0.0 + 11 +18112.499933 + 21 +22175.429113 + 31 +0.0 + 0 +LINE + 5 +BCB + 8 +0 + 62 + 0 + 10 +18162.499932 + 20 +22132.127842 + 30 +0.0 + 11 +18149.999932 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BCC + 8 +0 + 62 + 0 + 10 +18197.388697 + 20 +22115.0 + 30 +0.0 + 11 +18187.499932 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BCD + 8 +0 + 62 + 0 + 10 +18162.499932 + 20 +22175.429112 + 30 +0.0 + 11 +18151.200675 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BCE + 8 +0 + 62 + 0 + 10 +18199.999932 + 20 +22153.778477 + 30 +0.0 + 11 +18187.499932 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BCF + 8 +0 + 62 + 0 + 10 +18237.499932 + 20 +22132.127842 + 30 +0.0 + 11 +18224.999932 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BD0 + 8 +0 + 62 + 0 + 10 +18272.388696 + 20 +22115.0 + 30 +0.0 + 11 +18262.499932 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BD1 + 8 +0 + 62 + 0 + 10 +18237.499932 + 20 +22175.429112 + 30 +0.0 + 11 +18226.200675 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BD2 + 8 +0 + 62 + 0 + 10 +18274.999932 + 20 +22153.778477 + 30 +0.0 + 11 +18262.499932 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BD3 + 8 +0 + 62 + 0 + 10 +18312.499932 + 20 +22132.127842 + 30 +0.0 + 11 +18299.999932 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BD4 + 8 +0 + 62 + 0 + 10 +18347.388696 + 20 +22115.0 + 30 +0.0 + 11 +18337.499932 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BD5 + 8 +0 + 62 + 0 + 10 +18312.499932 + 20 +22175.429112 + 30 +0.0 + 11 +18301.200675 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BD6 + 8 +0 + 62 + 0 + 10 +18349.999932 + 20 +22153.778477 + 30 +0.0 + 11 +18337.499932 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BD7 + 8 +0 + 62 + 0 + 10 +18387.499932 + 20 +22132.127842 + 30 +0.0 + 11 +18374.999932 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BD8 + 8 +0 + 62 + 0 + 10 +18422.388696 + 20 +22115.0 + 30 +0.0 + 11 +18412.499932 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BD9 + 8 +0 + 62 + 0 + 10 +18387.499932 + 20 +22175.429112 + 30 +0.0 + 11 +18376.200674 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BDA + 8 +0 + 62 + 0 + 10 +18424.999932 + 20 +22153.778477 + 30 +0.0 + 11 +18412.499932 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BDB + 8 +0 + 62 + 0 + 10 +18462.499932 + 20 +22132.127842 + 30 +0.0 + 11 +18449.999932 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BDC + 8 +0 + 62 + 0 + 10 +18497.388695 + 20 +22115.0 + 30 +0.0 + 11 +18487.499931 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BDD + 8 +0 + 62 + 0 + 10 +18462.499931 + 20 +22175.429112 + 30 +0.0 + 11 +18451.200674 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BDE + 8 +0 + 62 + 0 + 10 +18499.999931 + 20 +22153.778477 + 30 +0.0 + 11 +18487.499931 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BDF + 8 +0 + 62 + 0 + 10 +18537.499931 + 20 +22132.127842 + 30 +0.0 + 11 +18524.999931 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BE0 + 8 +0 + 62 + 0 + 10 +18572.388695 + 20 +22115.0 + 30 +0.0 + 11 +18562.499931 + 21 +22132.127842 + 31 +0.0 + 0 +LINE + 5 +BE1 + 8 +0 + 62 + 0 + 10 +18537.499931 + 20 +22175.429112 + 30 +0.0 + 11 +18526.200674 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BE2 + 8 +0 + 62 + 0 + 10 +18574.999931 + 20 +22153.778477 + 30 +0.0 + 11 +18562.499931 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BE3 + 8 +0 + 62 + 0 + 10 +18612.499931 + 20 +22132.127841 + 30 +0.0 + 11 +18599.999931 + 21 +22153.778477 + 31 +0.0 + 0 +LINE + 5 +BE4 + 8 +0 + 62 + 0 + 10 +18647.388695 + 20 +22115.0 + 30 +0.0 + 11 +18637.499931 + 21 +22132.127841 + 31 +0.0 + 0 +LINE + 5 +BE5 + 8 +0 + 62 + 0 + 10 +18612.499931 + 20 +22175.429112 + 30 +0.0 + 11 +18601.200673 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BE6 + 8 +0 + 62 + 0 + 10 +18649.999931 + 20 +22153.778476 + 30 +0.0 + 11 +18637.499931 + 21 +22175.429112 + 31 +0.0 + 0 +LINE + 5 +BE7 + 8 +0 + 62 + 0 + 10 +18687.499931 + 20 +22132.127841 + 30 +0.0 + 11 +18674.999931 + 21 +22153.778476 + 31 +0.0 + 0 +LINE + 5 +BE8 + 8 +0 + 62 + 0 + 10 +18722.388694 + 20 +22115.0 + 30 +0.0 + 11 +18712.499931 + 21 +22132.127841 + 31 +0.0 + 0 +LINE + 5 +BE9 + 8 +0 + 62 + 0 + 10 +18687.499931 + 20 +22175.429111 + 30 +0.0 + 11 +18676.200673 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BEA + 8 +0 + 62 + 0 + 10 +18724.999931 + 20 +22153.778476 + 30 +0.0 + 11 +18712.499931 + 21 +22175.429111 + 31 +0.0 + 0 +LINE + 5 +BEB + 8 +0 + 62 + 0 + 10 +18751.25 + 20 +22151.613292 + 30 +0.0 + 11 +18749.999931 + 21 +22153.778476 + 31 +0.0 + 0 +LINE + 5 +BEC + 8 +0 + 62 + 0 + 10 +18751.25 + 20 +22194.914562 + 30 +0.0 + 11 +18751.200673 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BED + 8 +0 + 62 + 0 + 10 +17777.61119 + 20 +22115.0 + 30 +0.0 + 11 +17787.499982 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +BEE + 8 +0 + 62 + 0 + 10 +17812.499982 + 20 +22175.429162 + 30 +0.0 + 11 +17823.799211 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BEF + 8 +0 + 62 + 0 + 10 +17774.999983 + 20 +22153.778526 + 30 +0.0 + 11 +17787.499983 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +BF0 + 8 +0 + 62 + 0 + 10 +17737.499983 + 20 +22132.127891 + 30 +0.0 + 11 +17749.999983 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +BF1 + 8 +0 + 62 + 0 + 10 +17702.61119 + 20 +22115.0 + 30 +0.0 + 11 +17712.499983 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +BF2 + 8 +0 + 62 + 0 + 10 +17737.499983 + 20 +22175.429161 + 30 +0.0 + 11 +17748.799212 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BF3 + 8 +0 + 62 + 0 + 10 +17699.999983 + 20 +22153.778526 + 30 +0.0 + 11 +17712.499983 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +BF4 + 8 +0 + 62 + 0 + 10 +17662.499983 + 20 +22132.127891 + 30 +0.0 + 11 +17674.999983 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +BF5 + 8 +0 + 62 + 0 + 10 +17627.61119 + 20 +22115.0 + 30 +0.0 + 11 +17637.499983 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +BF6 + 8 +0 + 62 + 0 + 10 +17662.499983 + 20 +22175.429161 + 30 +0.0 + 11 +17673.799212 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BF7 + 8 +0 + 62 + 0 + 10 +17624.999983 + 20 +22153.778526 + 30 +0.0 + 11 +17637.499983 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +BF8 + 8 +0 + 62 + 0 + 10 +17587.499983 + 20 +22132.127891 + 30 +0.0 + 11 +17599.999983 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +BF9 + 8 +0 + 62 + 0 + 10 +17552.611191 + 20 +22115.0 + 30 +0.0 + 11 +17562.499983 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +BFA + 8 +0 + 62 + 0 + 10 +17587.499983 + 20 +22175.429161 + 30 +0.0 + 11 +17598.799212 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BFB + 8 +0 + 62 + 0 + 10 +17549.999983 + 20 +22153.778526 + 30 +0.0 + 11 +17562.499983 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +BFC + 8 +0 + 62 + 0 + 10 +17512.499983 + 20 +22132.127891 + 30 +0.0 + 11 +17524.999983 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +BFD + 8 +0 + 62 + 0 + 10 +17477.611191 + 20 +22115.0 + 30 +0.0 + 11 +17487.499983 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +BFE + 8 +0 + 62 + 0 + 10 +17512.499983 + 20 +22175.429161 + 30 +0.0 + 11 +17523.799213 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +BFF + 8 +0 + 62 + 0 + 10 +17474.999984 + 20 +22153.778526 + 30 +0.0 + 11 +17487.499984 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +C00 + 8 +0 + 62 + 0 + 10 +17437.499984 + 20 +22132.127891 + 30 +0.0 + 11 +17449.999984 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +C01 + 8 +0 + 62 + 0 + 10 +17402.611191 + 20 +22115.0 + 30 +0.0 + 11 +17412.499984 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +C02 + 8 +0 + 62 + 0 + 10 +17437.499984 + 20 +22175.429161 + 30 +0.0 + 11 +17448.799213 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C03 + 8 +0 + 62 + 0 + 10 +17399.999984 + 20 +22153.778526 + 30 +0.0 + 11 +17412.499984 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +C04 + 8 +0 + 62 + 0 + 10 +17362.499984 + 20 +22132.127891 + 30 +0.0 + 11 +17374.999984 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +C05 + 8 +0 + 62 + 0 + 10 +17327.611192 + 20 +22115.0 + 30 +0.0 + 11 +17337.499984 + 21 +22132.127891 + 31 +0.0 + 0 +LINE + 5 +C06 + 8 +0 + 62 + 0 + 10 +17362.499984 + 20 +22175.429161 + 30 +0.0 + 11 +17373.799213 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C07 + 8 +0 + 62 + 0 + 10 +17324.999984 + 20 +22153.778526 + 30 +0.0 + 11 +17337.499984 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +C08 + 8 +0 + 62 + 0 + 10 +17287.499984 + 20 +22132.12789 + 30 +0.0 + 11 +17299.999984 + 21 +22153.778526 + 31 +0.0 + 0 +LINE + 5 +C09 + 8 +0 + 62 + 0 + 10 +17252.611192 + 20 +22115.0 + 30 +0.0 + 11 +17262.499984 + 21 +22132.12789 + 31 +0.0 + 0 +LINE + 5 +C0A + 8 +0 + 62 + 0 + 10 +17287.499984 + 20 +22175.429161 + 30 +0.0 + 11 +17298.799214 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C0B + 8 +0 + 62 + 0 + 10 +17249.999984 + 20 +22153.778525 + 30 +0.0 + 11 +17262.499984 + 21 +22175.429161 + 31 +0.0 + 0 +LINE + 5 +C0C + 8 +0 + 62 + 0 + 10 +17212.499984 + 20 +22132.12789 + 30 +0.0 + 11 +17224.999984 + 21 +22153.778525 + 31 +0.0 + 0 +LINE + 5 +C0D + 8 +0 + 62 + 0 + 10 +17177.611192 + 20 +22115.0 + 30 +0.0 + 11 +17187.499984 + 21 +22132.12789 + 31 +0.0 + 0 +LINE + 5 +C0E + 8 +0 + 62 + 0 + 10 +17212.499984 + 20 +22175.42916 + 30 +0.0 + 11 +17223.799214 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C0F + 8 +0 + 62 + 0 + 10 +17174.999985 + 20 +22153.778525 + 30 +0.0 + 11 +17187.499985 + 21 +22175.42916 + 31 +0.0 + 0 +LINE + 5 +C10 + 8 +0 + 62 + 0 + 10 +17137.499985 + 20 +22132.12789 + 30 +0.0 + 11 +17149.999985 + 21 +22153.778525 + 31 +0.0 + 0 +LINE + 5 +C11 + 8 +0 + 62 + 0 + 10 +17102.611193 + 20 +22115.0 + 30 +0.0 + 11 +17112.499985 + 21 +22132.12789 + 31 +0.0 + 0 +LINE + 5 +C12 + 8 +0 + 62 + 0 + 10 +17137.499985 + 20 +22175.42916 + 30 +0.0 + 11 +17148.799214 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C13 + 8 +0 + 62 + 0 + 10 +17099.999985 + 20 +22153.778525 + 30 +0.0 + 11 +17112.499985 + 21 +22175.42916 + 31 +0.0 + 0 +LINE + 5 +C14 + 8 +0 + 62 + 0 + 10 +17062.499985 + 20 +22132.12789 + 30 +0.0 + 11 +17074.999985 + 21 +22153.778525 + 31 +0.0 + 0 +LINE + 5 +C15 + 8 +0 + 62 + 0 + 10 +17027.611193 + 20 +22115.0 + 30 +0.0 + 11 +17037.499985 + 21 +22132.12789 + 31 +0.0 + 0 +LINE + 5 +C16 + 8 +0 + 62 + 0 + 10 +17062.499985 + 20 +22175.42916 + 30 +0.0 + 11 +17073.799215 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C17 + 8 +0 + 62 + 0 + 10 +17024.999985 + 20 +22153.778525 + 30 +0.0 + 11 +17037.499985 + 21 +22175.42916 + 31 +0.0 + 0 +LINE + 5 +C18 + 8 +0 + 62 + 0 + 10 +16987.499985 + 20 +22132.12789 + 30 +0.0 + 11 +16999.999985 + 21 +22153.778525 + 31 +0.0 + 0 +LINE + 5 +C19 + 8 +0 + 62 + 0 + 10 +16952.611193 + 20 +22115.0 + 30 +0.0 + 11 +16962.499985 + 21 +22132.12789 + 31 +0.0 + 0 +LINE + 5 +C1A + 8 +0 + 62 + 0 + 10 +16987.499985 + 20 +22175.42916 + 30 +0.0 + 11 +16998.799215 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C1B + 8 +0 + 62 + 0 + 10 +16949.999985 + 20 +22153.778525 + 30 +0.0 + 11 +16962.499985 + 21 +22175.42916 + 31 +0.0 + 0 +LINE + 5 +C1C + 8 +0 + 62 + 0 + 10 +16912.499985 + 20 +22132.12789 + 30 +0.0 + 11 +16924.999985 + 21 +22153.778525 + 31 +0.0 + 0 +LINE + 5 +C1D + 8 +0 + 62 + 0 + 10 +16877.611194 + 20 +22115.0 + 30 +0.0 + 11 +16887.499985 + 21 +22132.12789 + 31 +0.0 + 0 +LINE + 5 +C1E + 8 +0 + 62 + 0 + 10 +16912.499985 + 20 +22175.42916 + 30 +0.0 + 11 +16923.799215 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C1F + 8 +0 + 62 + 0 + 10 +16874.999985 + 20 +22153.778525 + 30 +0.0 + 11 +16887.499985 + 21 +22175.42916 + 31 +0.0 + 0 +LINE + 5 +C20 + 8 +0 + 62 + 0 + 10 +17812.499982 + 20 +22132.127891 + 30 +0.0 + 11 +17824.999982 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C21 + 8 +0 + 62 + 0 + 10 +17849.999982 + 20 +22153.778527 + 30 +0.0 + 11 +17862.499982 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +C22 + 8 +0 + 62 + 0 + 10 +17852.611189 + 20 +22115.0 + 30 +0.0 + 11 +17862.499982 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C23 + 8 +0 + 62 + 0 + 10 +17887.499982 + 20 +22175.429162 + 30 +0.0 + 11 +17898.799211 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C24 + 8 +0 + 62 + 0 + 10 +17887.499982 + 20 +22132.127892 + 30 +0.0 + 11 +17899.999982 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C25 + 8 +0 + 62 + 0 + 10 +17924.999982 + 20 +22153.778527 + 30 +0.0 + 11 +17937.499982 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +C26 + 8 +0 + 62 + 0 + 10 +17927.611189 + 20 +22115.0 + 30 +0.0 + 11 +17937.499982 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C27 + 8 +0 + 62 + 0 + 10 +17962.499982 + 20 +22175.429162 + 30 +0.0 + 11 +17973.799211 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C28 + 8 +0 + 62 + 0 + 10 +17962.499982 + 20 +22132.127892 + 30 +0.0 + 11 +17974.999982 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C29 + 8 +0 + 62 + 0 + 10 +17999.999982 + 20 +22153.778527 + 30 +0.0 + 11 +18012.499982 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +C2A + 8 +0 + 62 + 0 + 10 +18002.611189 + 20 +22115.0 + 30 +0.0 + 11 +18012.499982 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C2B + 8 +0 + 62 + 0 + 10 +18037.499982 + 20 +22175.429162 + 30 +0.0 + 11 +18048.79921 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C2C + 8 +0 + 62 + 0 + 10 +18037.499982 + 20 +22132.127892 + 30 +0.0 + 11 +18049.999982 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C2D + 8 +0 + 62 + 0 + 10 +18074.999982 + 20 +22153.778527 + 30 +0.0 + 11 +18087.499982 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +C2E + 8 +0 + 62 + 0 + 10 +18077.611188 + 20 +22115.0 + 30 +0.0 + 11 +18087.499981 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C2F + 8 +0 + 62 + 0 + 10 +18112.499981 + 20 +22175.429162 + 30 +0.0 + 11 +18123.79921 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C30 + 8 +0 + 62 + 0 + 10 +18112.499981 + 20 +22132.127892 + 30 +0.0 + 11 +18124.999981 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C31 + 8 +0 + 62 + 0 + 10 +18149.999981 + 20 +22153.778527 + 30 +0.0 + 11 +18162.499981 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +C32 + 8 +0 + 62 + 0 + 10 +18152.611188 + 20 +22115.0 + 30 +0.0 + 11 +18162.499981 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C33 + 8 +0 + 62 + 0 + 10 +18187.499981 + 20 +22175.429162 + 30 +0.0 + 11 +18198.79921 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C34 + 8 +0 + 62 + 0 + 10 +18187.499981 + 20 +22132.127892 + 30 +0.0 + 11 +18199.999981 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C35 + 8 +0 + 62 + 0 + 10 +18224.999981 + 20 +22153.778527 + 30 +0.0 + 11 +18237.499981 + 21 +22175.429162 + 31 +0.0 + 0 +LINE + 5 +C36 + 8 +0 + 62 + 0 + 10 +18227.611188 + 20 +22115.0 + 30 +0.0 + 11 +18237.499981 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C37 + 8 +0 + 62 + 0 + 10 +18262.499981 + 20 +22175.429162 + 30 +0.0 + 11 +18273.799209 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C38 + 8 +0 + 62 + 0 + 10 +18262.499981 + 20 +22132.127892 + 30 +0.0 + 11 +18274.999981 + 21 +22153.778527 + 31 +0.0 + 0 +LINE + 5 +C39 + 8 +0 + 62 + 0 + 10 +18299.999981 + 20 +22153.778527 + 30 +0.0 + 11 +18312.499981 + 21 +22175.429163 + 31 +0.0 + 0 +LINE + 5 +C3A + 8 +0 + 62 + 0 + 10 +18302.611187 + 20 +22115.0 + 30 +0.0 + 11 +18312.499981 + 21 +22132.127892 + 31 +0.0 + 0 +LINE + 5 +C3B + 8 +0 + 62 + 0 + 10 +18337.499981 + 20 +22175.429163 + 30 +0.0 + 11 +18348.799209 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C3C + 8 +0 + 62 + 0 + 10 +18337.499981 + 20 +22132.127892 + 30 +0.0 + 11 +18349.999981 + 21 +22153.778528 + 31 +0.0 + 0 +LINE + 5 +C3D + 8 +0 + 62 + 0 + 10 +18374.999981 + 20 +22153.778528 + 30 +0.0 + 11 +18387.499981 + 21 +22175.429163 + 31 +0.0 + 0 +LINE + 5 +C3E + 8 +0 + 62 + 0 + 10 +18377.611187 + 20 +22115.0 + 30 +0.0 + 11 +18387.49998 + 21 +22132.127893 + 31 +0.0 + 0 +LINE + 5 +C3F + 8 +0 + 62 + 0 + 10 +18412.49998 + 20 +22175.429163 + 30 +0.0 + 11 +18423.799209 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C40 + 8 +0 + 62 + 0 + 10 +18412.49998 + 20 +22132.127893 + 30 +0.0 + 11 +18424.99998 + 21 +22153.778528 + 31 +0.0 + 0 +LINE + 5 +C41 + 8 +0 + 62 + 0 + 10 +18449.99998 + 20 +22153.778528 + 30 +0.0 + 11 +18462.49998 + 21 +22175.429163 + 31 +0.0 + 0 +LINE + 5 +C42 + 8 +0 + 62 + 0 + 10 +18452.611187 + 20 +22115.0 + 30 +0.0 + 11 +18462.49998 + 21 +22132.127893 + 31 +0.0 + 0 +LINE + 5 +C43 + 8 +0 + 62 + 0 + 10 +18487.49998 + 20 +22175.429163 + 30 +0.0 + 11 +18498.799208 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C44 + 8 +0 + 62 + 0 + 10 +18487.49998 + 20 +22132.127893 + 30 +0.0 + 11 +18499.99998 + 21 +22153.778528 + 31 +0.0 + 0 +LINE + 5 +C45 + 8 +0 + 62 + 0 + 10 +18524.99998 + 20 +22153.778528 + 30 +0.0 + 11 +18537.49998 + 21 +22175.429163 + 31 +0.0 + 0 +LINE + 5 +C46 + 8 +0 + 62 + 0 + 10 +18527.611186 + 20 +22115.0 + 30 +0.0 + 11 +18537.49998 + 21 +22132.127893 + 31 +0.0 + 0 +LINE + 5 +C47 + 8 +0 + 62 + 0 + 10 +18562.49998 + 20 +22175.429163 + 30 +0.0 + 11 +18573.799208 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C48 + 8 +0 + 62 + 0 + 10 +18562.49998 + 20 +22132.127893 + 30 +0.0 + 11 +18574.99998 + 21 +22153.778528 + 31 +0.0 + 0 +LINE + 5 +C49 + 8 +0 + 62 + 0 + 10 +18599.99998 + 20 +22153.778528 + 30 +0.0 + 11 +18612.49998 + 21 +22175.429163 + 31 +0.0 + 0 +LINE + 5 +C4A + 8 +0 + 62 + 0 + 10 +18602.611186 + 20 +22115.0 + 30 +0.0 + 11 +18612.49998 + 21 +22132.127893 + 31 +0.0 + 0 +LINE + 5 +C4B + 8 +0 + 62 + 0 + 10 +18637.49998 + 20 +22175.429163 + 30 +0.0 + 11 +18648.799208 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C4C + 8 +0 + 62 + 0 + 10 +18637.49998 + 20 +22132.127893 + 30 +0.0 + 11 +18649.99998 + 21 +22153.778528 + 31 +0.0 + 0 +LINE + 5 +C4D + 8 +0 + 62 + 0 + 10 +18674.99998 + 20 +22153.778528 + 30 +0.0 + 11 +18687.49998 + 21 +22175.429163 + 31 +0.0 + 0 +LINE + 5 +C4E + 8 +0 + 62 + 0 + 10 +18677.611186 + 20 +22115.0 + 30 +0.0 + 11 +18687.49998 + 21 +22132.127893 + 31 +0.0 + 0 +LINE + 5 +C4F + 8 +0 + 62 + 0 + 10 +18712.49998 + 20 +22175.429163 + 30 +0.0 + 11 +18723.799207 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +C50 + 8 +0 + 62 + 0 + 10 +18712.499979 + 20 +22132.127893 + 30 +0.0 + 11 +18724.999979 + 21 +22153.778528 + 31 +0.0 + 0 +LINE + 5 +C51 + 8 +0 + 62 + 0 + 10 +18749.999979 + 20 +22153.778528 + 30 +0.0 + 11 +18751.25 + 21 +22155.943628 + 31 +0.0 + 0 +ENDBLK + 5 +C52 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X43 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X43 + 1 + + 0 +LINE + 5 +C54 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17174.13241 + 30 +0.0 + 11 +4950.0 + 21 +17174.13241 + 31 +0.0 + 0 +LINE + 5 +C55 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17195.783045 + 30 +0.0 + 11 +4987.5 + 21 +17195.783045 + 31 +0.0 + 0 +LINE + 5 +C56 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17217.43368 + 30 +0.0 + 11 +4950.0 + 21 +17217.43368 + 31 +0.0 + 0 +LINE + 5 +C57 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17239.084315 + 30 +0.0 + 11 +4987.5 + 21 +17239.084315 + 31 +0.0 + 0 +LINE + 5 +C58 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17260.73495 + 30 +0.0 + 11 +4950.0 + 21 +17260.73495 + 31 +0.0 + 0 +LINE + 5 +C59 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17282.385585 + 30 +0.0 + 11 +4987.5 + 21 +17282.385585 + 31 +0.0 + 0 +LINE + 5 +C5A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17304.03622 + 30 +0.0 + 11 +4950.0 + 21 +17304.03622 + 31 +0.0 + 0 +LINE + 5 +C5B + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17325.686855 + 30 +0.0 + 11 +4987.5 + 21 +17325.686855 + 31 +0.0 + 0 +LINE + 5 +C5C + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17347.33749 + 30 +0.0 + 11 +4950.0 + 21 +17347.33749 + 31 +0.0 + 0 +LINE + 5 +C5D + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17368.988125 + 30 +0.0 + 11 +4987.5 + 21 +17368.988125 + 31 +0.0 + 0 +LINE + 5 +C5E + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17390.63876 + 30 +0.0 + 11 +4950.0 + 21 +17390.63876 + 31 +0.0 + 0 +LINE + 5 +C5F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17412.289395 + 30 +0.0 + 11 +4987.5 + 21 +17412.289395 + 31 +0.0 + 0 +LINE + 5 +C60 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17433.94003 + 30 +0.0 + 11 +4950.0 + 21 +17433.94003 + 31 +0.0 + 0 +LINE + 5 +C61 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17455.590665 + 30 +0.0 + 11 +4987.5 + 21 +17455.590665 + 31 +0.0 + 0 +LINE + 5 +C62 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17477.2413 + 30 +0.0 + 11 +4950.0 + 21 +17477.2413 + 31 +0.0 + 0 +LINE + 5 +C63 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17498.891935 + 30 +0.0 + 11 +4987.5 + 21 +17498.891935 + 31 +0.0 + 0 +LINE + 5 +C64 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17520.54257 + 30 +0.0 + 11 +4950.0 + 21 +17520.54257 + 31 +0.0 + 0 +LINE + 5 +C65 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17542.193205 + 30 +0.0 + 11 +4987.5 + 21 +17542.193205 + 31 +0.0 + 0 +LINE + 5 +C66 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17563.84384 + 30 +0.0 + 11 +4950.0 + 21 +17563.84384 + 31 +0.0 + 0 +LINE + 5 +C67 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17585.494475 + 30 +0.0 + 11 +4987.5 + 21 +17585.494475 + 31 +0.0 + 0 +LINE + 5 +C68 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17607.14511 + 30 +0.0 + 11 +4950.0 + 21 +17607.14511 + 31 +0.0 + 0 +LINE + 5 +C69 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17628.795745 + 30 +0.0 + 11 +4987.5 + 21 +17628.795745 + 31 +0.0 + 0 +LINE + 5 +C6A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17650.44638 + 30 +0.0 + 11 +4950.0 + 21 +17650.44638 + 31 +0.0 + 0 +LINE + 5 +C6B + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17672.097015 + 30 +0.0 + 11 +4987.5 + 21 +17672.097015 + 31 +0.0 + 0 +LINE + 5 +C6C + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17693.74765 + 30 +0.0 + 11 +4950.0 + 21 +17693.74765 + 31 +0.0 + 0 +LINE + 5 +C6D + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17715.398285 + 30 +0.0 + 11 +4987.5 + 21 +17715.398285 + 31 +0.0 + 0 +LINE + 5 +C6E + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17737.04892 + 30 +0.0 + 11 +4950.0 + 21 +17737.04892 + 31 +0.0 + 0 +LINE + 5 +C6F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17758.699555 + 30 +0.0 + 11 +4987.5 + 21 +17758.699555 + 31 +0.0 + 0 +LINE + 5 +C70 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17780.35019 + 30 +0.0 + 11 +4950.0 + 21 +17780.35019 + 31 +0.0 + 0 +LINE + 5 +C71 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17802.000825 + 30 +0.0 + 11 +4987.5 + 21 +17802.000825 + 31 +0.0 + 0 +LINE + 5 +C72 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17823.65146 + 30 +0.0 + 11 +4950.0 + 21 +17823.65146 + 31 +0.0 + 0 +LINE + 5 +C73 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17845.302095 + 30 +0.0 + 11 +4987.5 + 21 +17845.302095 + 31 +0.0 + 0 +LINE + 5 +C74 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17866.95273 + 30 +0.0 + 11 +4950.0 + 21 +17866.95273 + 31 +0.0 + 0 +LINE + 5 +C75 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17888.603365 + 30 +0.0 + 11 +4987.5 + 21 +17888.603365 + 31 +0.0 + 0 +LINE + 5 +C76 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17910.254 + 30 +0.0 + 11 +4950.0 + 21 +17910.254 + 31 +0.0 + 0 +LINE + 5 +C77 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17931.904635 + 30 +0.0 + 11 +4987.5 + 21 +17931.904635 + 31 +0.0 + 0 +LINE + 5 +C78 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17953.55527 + 30 +0.0 + 11 +4950.0 + 21 +17953.55527 + 31 +0.0 + 0 +LINE + 5 +C79 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17975.205905 + 30 +0.0 + 11 +4987.5 + 21 +17975.205905 + 31 +0.0 + 0 +LINE + 5 +C7A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17996.85654 + 30 +0.0 + 11 +4950.0 + 21 +17996.85654 + 31 +0.0 + 0 +LINE + 5 +C7B + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +18018.507175 + 30 +0.0 + 11 +4987.5 + 21 +18018.507175 + 31 +0.0 + 0 +LINE + 5 +C7C + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +18040.15781 + 30 +0.0 + 11 +4950.0 + 21 +18040.15781 + 31 +0.0 + 0 +LINE + 5 +C7D + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +18061.808445 + 30 +0.0 + 11 +4987.5 + 21 +18061.808445 + 31 +0.0 + 0 +LINE + 5 +C7E + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +18083.45908 + 30 +0.0 + 11 +4950.0 + 21 +18083.45908 + 31 +0.0 + 0 +LINE + 5 +C7F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +18105.109715 + 30 +0.0 + 11 +4987.5 + 21 +18105.109715 + 31 +0.0 + 0 +LINE + 5 +C80 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +18126.76035 + 30 +0.0 + 11 +4950.0 + 21 +18126.76035 + 31 +0.0 + 0 +LINE + 5 +C81 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +18148.410985 + 30 +0.0 + 11 +4987.5 + 21 +18148.410985 + 31 +0.0 + 0 +LINE + 5 +C82 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +18170.06162 + 30 +0.0 + 11 +4950.0 + 21 +18170.06162 + 31 +0.0 + 0 +LINE + 5 +C83 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +18191.712255 + 30 +0.0 + 11 +4987.5 + 21 +18191.712255 + 31 +0.0 + 0 +LINE + 5 +C84 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +18213.36289 + 30 +0.0 + 11 +4950.0 + 21 +18213.36289 + 31 +0.0 + 0 +LINE + 5 +C85 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +18235.013525 + 30 +0.0 + 11 +4987.5 + 21 +18235.013525 + 31 +0.0 + 0 +LINE + 5 +C86 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17152.481775 + 30 +0.0 + 11 +4987.5 + 21 +17152.481775 + 31 +0.0 + 0 +LINE + 5 +C87 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17130.83114 + 30 +0.0 + 11 +4950.0 + 21 +17130.83114 + 31 +0.0 + 0 +LINE + 5 +C88 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17109.180505 + 30 +0.0 + 11 +4987.5 + 21 +17109.180505 + 31 +0.0 + 0 +LINE + 5 +C89 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17087.52987 + 30 +0.0 + 11 +4950.0 + 21 +17087.52987 + 31 +0.0 + 0 +LINE + 5 +C8A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17065.879235 + 30 +0.0 + 11 +4987.5 + 21 +17065.879235 + 31 +0.0 + 0 +LINE + 5 +C8B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17044.2286 + 30 +0.0 + 11 +4950.0 + 21 +17044.2286 + 31 +0.0 + 0 +LINE + 5 +C8C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +17022.577965 + 30 +0.0 + 11 +4987.5 + 21 +17022.577965 + 31 +0.0 + 0 +LINE + 5 +C8D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +17000.92733 + 30 +0.0 + 11 +4950.0 + 21 +17000.92733 + 31 +0.0 + 0 +LINE + 5 +C8E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16979.276695 + 30 +0.0 + 11 +4987.5 + 21 +16979.276695 + 31 +0.0 + 0 +LINE + 5 +C8F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16957.62606 + 30 +0.0 + 11 +4950.0 + 21 +16957.62606 + 31 +0.0 + 0 +LINE + 5 +C90 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16935.975425 + 30 +0.0 + 11 +4987.5 + 21 +16935.975425 + 31 +0.0 + 0 +LINE + 5 +C91 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16914.32479 + 30 +0.0 + 11 +4950.0 + 21 +16914.32479 + 31 +0.0 + 0 +LINE + 5 +C92 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16892.674155 + 30 +0.0 + 11 +4987.5 + 21 +16892.674155 + 31 +0.0 + 0 +LINE + 5 +C93 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16871.02352 + 30 +0.0 + 11 +4950.0 + 21 +16871.02352 + 31 +0.0 + 0 +LINE + 5 +C94 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16849.372885 + 30 +0.0 + 11 +4987.5 + 21 +16849.372885 + 31 +0.0 + 0 +LINE + 5 +C95 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16827.72225 + 30 +0.0 + 11 +4950.0 + 21 +16827.72225 + 31 +0.0 + 0 +LINE + 5 +C96 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16806.071615 + 30 +0.0 + 11 +4987.5 + 21 +16806.071615 + 31 +0.0 + 0 +LINE + 5 +C97 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16784.42098 + 30 +0.0 + 11 +4950.0 + 21 +16784.42098 + 31 +0.0 + 0 +LINE + 5 +C98 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16762.770345 + 30 +0.0 + 11 +4987.5 + 21 +16762.770345 + 31 +0.0 + 0 +LINE + 5 +C99 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16741.11971 + 30 +0.0 + 11 +4950.0 + 21 +16741.11971 + 31 +0.0 + 0 +LINE + 5 +C9A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16719.469075 + 30 +0.0 + 11 +4987.5 + 21 +16719.469075 + 31 +0.0 + 0 +LINE + 5 +C9B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16697.81844 + 30 +0.0 + 11 +4950.0 + 21 +16697.81844 + 31 +0.0 + 0 +LINE + 5 +C9C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16676.167805 + 30 +0.0 + 11 +4987.5 + 21 +16676.167805 + 31 +0.0 + 0 +LINE + 5 +C9D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16654.51717 + 30 +0.0 + 11 +4950.0 + 21 +16654.51717 + 31 +0.0 + 0 +LINE + 5 +C9E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16632.866535 + 30 +0.0 + 11 +4987.5 + 21 +16632.866535 + 31 +0.0 + 0 +LINE + 5 +C9F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16611.2159 + 30 +0.0 + 11 +4950.0 + 21 +16611.2159 + 31 +0.0 + 0 +LINE + 5 +CA0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16589.565265 + 30 +0.0 + 11 +4987.5 + 21 +16589.565265 + 31 +0.0 + 0 +LINE + 5 +CA1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16567.91463 + 30 +0.0 + 11 +4950.0 + 21 +16567.91463 + 31 +0.0 + 0 +LINE + 5 +CA2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16546.263995 + 30 +0.0 + 11 +4987.5 + 21 +16546.263995 + 31 +0.0 + 0 +LINE + 5 +CA3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16524.61336 + 30 +0.0 + 11 +4950.0 + 21 +16524.61336 + 31 +0.0 + 0 +LINE + 5 +CA4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16502.962725 + 30 +0.0 + 11 +4987.5 + 21 +16502.962725 + 31 +0.0 + 0 +LINE + 5 +CA5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16481.31209 + 30 +0.0 + 11 +4950.0 + 21 +16481.31209 + 31 +0.0 + 0 +LINE + 5 +CA6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16459.661455 + 30 +0.0 + 11 +4987.5 + 21 +16459.661455 + 31 +0.0 + 0 +LINE + 5 +CA7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16438.01082 + 30 +0.0 + 11 +4950.0 + 21 +16438.01082 + 31 +0.0 + 0 +LINE + 5 +CA8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16416.360185 + 30 +0.0 + 11 +4987.5 + 21 +16416.360185 + 31 +0.0 + 0 +LINE + 5 +CA9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16394.70955 + 30 +0.0 + 11 +4950.0 + 21 +16394.70955 + 31 +0.0 + 0 +LINE + 5 +CAA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16373.058915 + 30 +0.0 + 11 +4987.5 + 21 +16373.058915 + 31 +0.0 + 0 +LINE + 5 +CAB + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16351.40828 + 30 +0.0 + 11 +4950.0 + 21 +16351.40828 + 31 +0.0 + 0 +LINE + 5 +CAC + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16329.757645 + 30 +0.0 + 11 +4987.5 + 21 +16329.757645 + 31 +0.0 + 0 +LINE + 5 +CAD + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16308.10701 + 30 +0.0 + 11 +4950.0 + 21 +16308.10701 + 31 +0.0 + 0 +LINE + 5 +CAE + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16286.456375 + 30 +0.0 + 11 +4987.5 + 21 +16286.456375 + 31 +0.0 + 0 +LINE + 5 +CAF + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16264.80574 + 30 +0.0 + 11 +4950.0 + 21 +16264.80574 + 31 +0.0 + 0 +LINE + 5 +CB0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16243.155105 + 30 +0.0 + 11 +4987.5 + 21 +16243.155105 + 31 +0.0 + 0 +LINE + 5 +CB1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16221.50447 + 30 +0.0 + 11 +4950.0 + 21 +16221.50447 + 31 +0.0 + 0 +LINE + 5 +CB2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16199.853835 + 30 +0.0 + 11 +4987.5 + 21 +16199.853835 + 31 +0.0 + 0 +LINE + 5 +CB3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16178.2032 + 30 +0.0 + 11 +4950.0 + 21 +16178.2032 + 31 +0.0 + 0 +LINE + 5 +CB4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +16156.552565 + 30 +0.0 + 11 +4987.5 + 21 +16156.552565 + 31 +0.0 + 0 +LINE + 5 +CB5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +16134.90193 + 30 +0.0 + 11 +4950.0 + 21 +16134.90193 + 31 +0.0 + 0 +LINE + 5 +CB6 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17087.529896 + 30 +0.0 + 11 +4987.499985 + 21 +17109.180531 + 31 +0.0 + 0 +LINE + 5 +CB7 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17152.481801 + 30 +0.0 + 11 +4949.999985 + 21 +17174.132436 + 31 +0.0 + 0 +LINE + 5 +CB8 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17217.433706 + 30 +0.0 + 11 +4920.0 + 21 +17226.093935 + 31 +0.0 + 0 +LINE + 5 +CB9 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17044.228626 + 30 +0.0 + 11 +4987.499985 + 21 +17065.879261 + 31 +0.0 + 0 +LINE + 5 +CBA + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17109.180531 + 30 +0.0 + 11 +4949.999985 + 21 +17130.831166 + 31 +0.0 + 0 +LINE + 5 +CBB + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17174.132436 + 30 +0.0 + 11 +4920.0 + 21 +17182.792665 + 31 +0.0 + 0 +LINE + 5 +CBC + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17000.927355 + 30 +0.0 + 11 +4987.499985 + 21 +17022.57799 + 31 +0.0 + 0 +LINE + 5 +CBD + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17065.879261 + 30 +0.0 + 11 +4949.999985 + 21 +17087.529896 + 31 +0.0 + 0 +LINE + 5 +CBE + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17130.831166 + 30 +0.0 + 11 +4920.0 + 21 +17139.491395 + 31 +0.0 + 0 +LINE + 5 +CBF + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +16957.626085 + 30 +0.0 + 11 +4987.499985 + 21 +16979.27672 + 31 +0.0 + 0 +LINE + 5 +CC0 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17022.577991 + 30 +0.0 + 11 +4949.999985 + 21 +17044.228626 + 31 +0.0 + 0 +LINE + 5 +CC1 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17087.529896 + 30 +0.0 + 11 +4920.0 + 21 +17096.190125 + 31 +0.0 + 0 +LINE + 5 +CC2 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +16914.324815 + 30 +0.0 + 11 +4987.499985 + 21 +16935.97545 + 31 +0.0 + 0 +LINE + 5 +CC3 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +16979.27672 + 30 +0.0 + 11 +4949.999985 + 21 +17000.927355 + 31 +0.0 + 0 +LINE + 5 +CC4 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17044.228626 + 30 +0.0 + 11 +4920.0 + 21 +17052.888855 + 31 +0.0 + 0 +LINE + 5 +CC5 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16871.023545 + 30 +0.0 + 11 +4987.499986 + 21 +16892.67418 + 31 +0.0 + 0 +LINE + 5 +CC6 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16935.97545 + 30 +0.0 + 11 +4949.999986 + 21 +16957.626085 + 31 +0.0 + 0 +LINE + 5 +CC7 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +17000.927356 + 30 +0.0 + 11 +4920.0 + 21 +17009.587585 + 31 +0.0 + 0 +LINE + 5 +CC8 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16827.722275 + 30 +0.0 + 11 +4987.499986 + 21 +16849.37291 + 31 +0.0 + 0 +LINE + 5 +CC9 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16892.67418 + 30 +0.0 + 11 +4949.999986 + 21 +16914.324815 + 31 +0.0 + 0 +LINE + 5 +CCA + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16957.626085 + 30 +0.0 + 11 +4920.0 + 21 +16966.286315 + 31 +0.0 + 0 +LINE + 5 +CCB + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16784.421005 + 30 +0.0 + 11 +4987.499986 + 21 +16806.07164 + 31 +0.0 + 0 +LINE + 5 +CCC + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16849.37291 + 30 +0.0 + 11 +4949.999986 + 21 +16871.023545 + 31 +0.0 + 0 +LINE + 5 +CCD + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16914.324815 + 30 +0.0 + 11 +4920.0 + 21 +16922.985045 + 31 +0.0 + 0 +LINE + 5 +CCE + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16741.119735 + 30 +0.0 + 11 +4987.499986 + 21 +16762.77037 + 31 +0.0 + 0 +LINE + 5 +CCF + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16806.07164 + 30 +0.0 + 11 +4949.999986 + 21 +16827.722275 + 31 +0.0 + 0 +LINE + 5 +CD0 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16871.023545 + 30 +0.0 + 11 +4920.0 + 21 +16879.683775 + 31 +0.0 + 0 +LINE + 5 +CD1 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16697.818464 + 30 +0.0 + 11 +4987.499986 + 21 +16719.4691 + 31 +0.0 + 0 +LINE + 5 +CD2 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16762.77037 + 30 +0.0 + 11 +4949.999986 + 21 +16784.421005 + 31 +0.0 + 0 +LINE + 5 +CD3 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16827.722275 + 30 +0.0 + 11 +4920.0 + 21 +16836.382505 + 31 +0.0 + 0 +LINE + 5 +CD4 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16654.517194 + 30 +0.0 + 11 +4987.499986 + 21 +16676.167829 + 31 +0.0 + 0 +LINE + 5 +CD5 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16719.4691 + 30 +0.0 + 11 +4949.999986 + 21 +16741.119735 + 31 +0.0 + 0 +LINE + 5 +CD6 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16784.421005 + 30 +0.0 + 11 +4920.0 + 21 +16793.081235 + 31 +0.0 + 0 +LINE + 5 +CD7 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16611.215924 + 30 +0.0 + 11 +4987.499986 + 21 +16632.866559 + 31 +0.0 + 0 +LINE + 5 +CD8 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16676.167829 + 30 +0.0 + 11 +4949.999986 + 21 +16697.818465 + 31 +0.0 + 0 +LINE + 5 +CD9 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16741.119735 + 30 +0.0 + 11 +4920.0 + 21 +16749.779965 + 31 +0.0 + 0 +LINE + 5 +CDA + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16567.914654 + 30 +0.0 + 11 +4987.499986 + 21 +16589.565289 + 31 +0.0 + 0 +LINE + 5 +CDB + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16632.866559 + 30 +0.0 + 11 +4949.999986 + 21 +16654.517194 + 31 +0.0 + 0 +LINE + 5 +CDC + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16697.818465 + 30 +0.0 + 11 +4920.0 + 21 +16706.478695 + 31 +0.0 + 0 +LINE + 5 +CDD + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16524.613384 + 30 +0.0 + 11 +4987.499986 + 21 +16546.264019 + 31 +0.0 + 0 +LINE + 5 +CDE + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16589.565289 + 30 +0.0 + 11 +4949.999986 + 21 +16611.215924 + 31 +0.0 + 0 +LINE + 5 +CDF + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16654.517194 + 30 +0.0 + 11 +4920.0 + 21 +16663.177425 + 31 +0.0 + 0 +LINE + 5 +CE0 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16481.312114 + 30 +0.0 + 11 +4987.499986 + 21 +16502.962749 + 31 +0.0 + 0 +LINE + 5 +CE1 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16546.264019 + 30 +0.0 + 11 +4949.999986 + 21 +16567.914654 + 31 +0.0 + 0 +LINE + 5 +CE2 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16611.215924 + 30 +0.0 + 11 +4920.0 + 21 +16619.876155 + 31 +0.0 + 0 +LINE + 5 +CE3 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16438.010844 + 30 +0.0 + 11 +4987.499986 + 21 +16459.661479 + 31 +0.0 + 0 +LINE + 5 +CE4 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16502.962749 + 30 +0.0 + 11 +4949.999986 + 21 +16524.613384 + 31 +0.0 + 0 +LINE + 5 +CE5 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16567.914654 + 30 +0.0 + 11 +4920.0 + 21 +16576.574885 + 31 +0.0 + 0 +LINE + 5 +CE6 + 8 +0 + 62 + 0 + 10 +4999.999986 + 20 +16394.709573 + 30 +0.0 + 11 +4987.499986 + 21 +16416.360209 + 31 +0.0 + 0 +LINE + 5 +CE7 + 8 +0 + 62 + 0 + 10 +4962.499986 + 20 +16459.661479 + 30 +0.0 + 11 +4949.999986 + 21 +16481.312114 + 31 +0.0 + 0 +LINE + 5 +CE8 + 8 +0 + 62 + 0 + 10 +4924.999986 + 20 +16524.613384 + 30 +0.0 + 11 +4920.0 + 21 +16533.273615 + 31 +0.0 + 0 +LINE + 5 +CE9 + 8 +0 + 62 + 0 + 10 +4999.999987 + 20 +16351.408303 + 30 +0.0 + 11 +4987.499987 + 21 +16373.058938 + 31 +0.0 + 0 +LINE + 5 +CEA + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16416.360209 + 30 +0.0 + 11 +4949.999987 + 21 +16438.010844 + 31 +0.0 + 0 +LINE + 5 +CEB + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16481.312114 + 30 +0.0 + 11 +4920.0 + 21 +16489.972345 + 31 +0.0 + 0 +LINE + 5 +CEC + 8 +0 + 62 + 0 + 10 +4999.999987 + 20 +16308.107033 + 30 +0.0 + 11 +4987.499987 + 21 +16329.757668 + 31 +0.0 + 0 +LINE + 5 +CED + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16373.058938 + 30 +0.0 + 11 +4949.999987 + 21 +16394.709574 + 31 +0.0 + 0 +LINE + 5 +CEE + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16438.010844 + 30 +0.0 + 11 +4920.0 + 21 +16446.671075 + 31 +0.0 + 0 +LINE + 5 +CEF + 8 +0 + 62 + 0 + 10 +4999.999987 + 20 +16264.805763 + 30 +0.0 + 11 +4987.499987 + 21 +16286.456398 + 31 +0.0 + 0 +LINE + 5 +CF0 + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16329.757668 + 30 +0.0 + 11 +4949.999987 + 21 +16351.408303 + 31 +0.0 + 0 +LINE + 5 +CF1 + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16394.709574 + 30 +0.0 + 11 +4920.0 + 21 +16403.369805 + 31 +0.0 + 0 +LINE + 5 +CF2 + 8 +0 + 62 + 0 + 10 +4999.999987 + 20 +16221.504493 + 30 +0.0 + 11 +4987.499987 + 21 +16243.155128 + 31 +0.0 + 0 +LINE + 5 +CF3 + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16286.456398 + 30 +0.0 + 11 +4949.999987 + 21 +16308.107033 + 31 +0.0 + 0 +LINE + 5 +CF4 + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16351.408303 + 30 +0.0 + 11 +4920.0 + 21 +16360.068535 + 31 +0.0 + 0 +LINE + 5 +CF5 + 8 +0 + 62 + 0 + 10 +4999.999987 + 20 +16178.203223 + 30 +0.0 + 11 +4987.499987 + 21 +16199.853858 + 31 +0.0 + 0 +LINE + 5 +CF6 + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16243.155128 + 30 +0.0 + 11 +4949.999987 + 21 +16264.805763 + 31 +0.0 + 0 +LINE + 5 +CF7 + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16308.107033 + 30 +0.0 + 11 +4920.0 + 21 +16316.767265 + 31 +0.0 + 0 +LINE + 5 +CF8 + 8 +0 + 62 + 0 + 10 +4999.999987 + 20 +16134.901953 + 30 +0.0 + 11 +4987.499987 + 21 +16156.552588 + 31 +0.0 + 0 +LINE + 5 +CF9 + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16199.853858 + 30 +0.0 + 11 +4949.999987 + 21 +16221.504493 + 31 +0.0 + 0 +LINE + 5 +CFA + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16264.805763 + 30 +0.0 + 11 +4920.0 + 21 +16273.465995 + 31 +0.0 + 0 +LINE + 5 +CFB + 8 +0 + 62 + 0 + 10 +4962.499987 + 20 +16156.552588 + 30 +0.0 + 11 +4949.999987 + 21 +16178.203223 + 31 +0.0 + 0 +LINE + 5 +CFC + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16221.504493 + 30 +0.0 + 11 +4920.0 + 21 +16230.164725 + 31 +0.0 + 0 +LINE + 5 +CFD + 8 +0 + 62 + 0 + 10 +4962.212073 + 20 +16113.75 + 30 +0.0 + 11 +4949.999987 + 21 +16134.901953 + 31 +0.0 + 0 +LINE + 5 +CFE + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16178.203223 + 30 +0.0 + 11 +4920.0 + 21 +16186.863455 + 31 +0.0 + 0 +LINE + 5 +CFF + 8 +0 + 62 + 0 + 10 +4924.999987 + 20 +16134.901953 + 30 +0.0 + 11 +4920.0 + 21 +16143.562185 + 31 +0.0 + 0 +LINE + 5 +D00 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17130.831166 + 30 +0.0 + 11 +4987.499985 + 21 +17152.481801 + 31 +0.0 + 0 +LINE + 5 +D01 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17195.783071 + 30 +0.0 + 11 +4949.999985 + 21 +17217.433706 + 31 +0.0 + 0 +LINE + 5 +D02 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17260.734976 + 30 +0.0 + 11 +4920.0 + 21 +17269.395205 + 31 +0.0 + 0 +LINE + 5 +D03 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17174.132436 + 30 +0.0 + 11 +4987.499985 + 21 +17195.783071 + 31 +0.0 + 0 +LINE + 5 +D04 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17239.084341 + 30 +0.0 + 11 +4949.999985 + 21 +17260.734976 + 31 +0.0 + 0 +LINE + 5 +D05 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17304.036247 + 30 +0.0 + 11 +4920.0 + 21 +17312.696475 + 31 +0.0 + 0 +LINE + 5 +D06 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17217.433706 + 30 +0.0 + 11 +4987.499985 + 21 +17239.084341 + 31 +0.0 + 0 +LINE + 5 +D07 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17282.385611 + 30 +0.0 + 11 +4949.999985 + 21 +17304.036246 + 31 +0.0 + 0 +LINE + 5 +D08 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17347.337517 + 30 +0.0 + 11 +4920.0 + 21 +17355.997745 + 31 +0.0 + 0 +LINE + 5 +D09 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17260.734976 + 30 +0.0 + 11 +4987.499985 + 21 +17282.385611 + 31 +0.0 + 0 +LINE + 5 +D0A + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17325.686882 + 30 +0.0 + 11 +4949.999985 + 21 +17347.337517 + 31 +0.0 + 0 +LINE + 5 +D0B + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17390.638787 + 30 +0.0 + 11 +4920.0 + 21 +17399.299015 + 31 +0.0 + 0 +LINE + 5 +D0C + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17304.036246 + 30 +0.0 + 11 +4987.499985 + 21 +17325.686881 + 31 +0.0 + 0 +LINE + 5 +D0D + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17368.988152 + 30 +0.0 + 11 +4949.999985 + 21 +17390.638787 + 31 +0.0 + 0 +LINE + 5 +D0E + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17433.940057 + 30 +0.0 + 11 +4920.0 + 21 +17442.600285 + 31 +0.0 + 0 +LINE + 5 +D0F + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17347.337517 + 30 +0.0 + 11 +4987.499985 + 21 +17368.988152 + 31 +0.0 + 0 +LINE + 5 +D10 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17412.289422 + 30 +0.0 + 11 +4949.999985 + 21 +17433.940057 + 31 +0.0 + 0 +LINE + 5 +D11 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17477.241327 + 30 +0.0 + 11 +4920.0 + 21 +17485.901555 + 31 +0.0 + 0 +LINE + 5 +D12 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17390.638787 + 30 +0.0 + 11 +4987.499985 + 21 +17412.289422 + 31 +0.0 + 0 +LINE + 5 +D13 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17455.590692 + 30 +0.0 + 11 +4949.999985 + 21 +17477.241327 + 31 +0.0 + 0 +LINE + 5 +D14 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17520.542597 + 30 +0.0 + 11 +4920.0 + 21 +17529.202825 + 31 +0.0 + 0 +LINE + 5 +D15 + 8 +0 + 62 + 0 + 10 +4999.999985 + 20 +17433.940057 + 30 +0.0 + 11 +4987.499985 + 21 +17455.590692 + 31 +0.0 + 0 +LINE + 5 +D16 + 8 +0 + 62 + 0 + 10 +4962.499985 + 20 +17498.891962 + 30 +0.0 + 11 +4949.999985 + 21 +17520.542597 + 31 +0.0 + 0 +LINE + 5 +D17 + 8 +0 + 62 + 0 + 10 +4924.999985 + 20 +17563.843867 + 30 +0.0 + 11 +4920.0 + 21 +17572.504095 + 31 +0.0 + 0 +LINE + 5 +D18 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17477.241327 + 30 +0.0 + 11 +4987.499984 + 21 +17498.891962 + 31 +0.0 + 0 +LINE + 5 +D19 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17542.193232 + 30 +0.0 + 11 +4949.999984 + 21 +17563.843867 + 31 +0.0 + 0 +LINE + 5 +D1A + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17607.145138 + 30 +0.0 + 11 +4920.0 + 21 +17615.805365 + 31 +0.0 + 0 +LINE + 5 +D1B + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17520.542597 + 30 +0.0 + 11 +4987.499984 + 21 +17542.193232 + 31 +0.0 + 0 +LINE + 5 +D1C + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17585.494502 + 30 +0.0 + 11 +4949.999984 + 21 +17607.145137 + 31 +0.0 + 0 +LINE + 5 +D1D + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17650.446408 + 30 +0.0 + 11 +4920.0 + 21 +17659.106635 + 31 +0.0 + 0 +LINE + 5 +D1E + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17563.843867 + 30 +0.0 + 11 +4987.499984 + 21 +17585.494502 + 31 +0.0 + 0 +LINE + 5 +D1F + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17628.795773 + 30 +0.0 + 11 +4949.999984 + 21 +17650.446408 + 31 +0.0 + 0 +LINE + 5 +D20 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17693.747678 + 30 +0.0 + 11 +4920.0 + 21 +17702.407905 + 31 +0.0 + 0 +LINE + 5 +D21 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17607.145137 + 30 +0.0 + 11 +4987.499984 + 21 +17628.795772 + 31 +0.0 + 0 +LINE + 5 +D22 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17672.097043 + 30 +0.0 + 11 +4949.999984 + 21 +17693.747678 + 31 +0.0 + 0 +LINE + 5 +D23 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17737.048948 + 30 +0.0 + 11 +4920.0 + 21 +17745.709175 + 31 +0.0 + 0 +LINE + 5 +D24 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17650.446408 + 30 +0.0 + 11 +4987.499984 + 21 +17672.097043 + 31 +0.0 + 0 +LINE + 5 +D25 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17715.398313 + 30 +0.0 + 11 +4949.999984 + 21 +17737.048948 + 31 +0.0 + 0 +LINE + 5 +D26 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17780.350218 + 30 +0.0 + 11 +4920.0 + 21 +17789.010445 + 31 +0.0 + 0 +LINE + 5 +D27 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17693.747678 + 30 +0.0 + 11 +4987.499984 + 21 +17715.398313 + 31 +0.0 + 0 +LINE + 5 +D28 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17758.699583 + 30 +0.0 + 11 +4949.999984 + 21 +17780.350218 + 31 +0.0 + 0 +LINE + 5 +D29 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17823.651488 + 30 +0.0 + 11 +4920.0 + 21 +17832.311715 + 31 +0.0 + 0 +LINE + 5 +D2A + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17737.048948 + 30 +0.0 + 11 +4987.499984 + 21 +17758.699583 + 31 +0.0 + 0 +LINE + 5 +D2B + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17802.000853 + 30 +0.0 + 11 +4949.999984 + 21 +17823.651488 + 31 +0.0 + 0 +LINE + 5 +D2C + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17866.952758 + 30 +0.0 + 11 +4920.0 + 21 +17875.612985 + 31 +0.0 + 0 +LINE + 5 +D2D + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17780.350218 + 30 +0.0 + 11 +4987.499984 + 21 +17802.000853 + 31 +0.0 + 0 +LINE + 5 +D2E + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17845.302123 + 30 +0.0 + 11 +4949.999984 + 21 +17866.952758 + 31 +0.0 + 0 +LINE + 5 +D2F + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17910.254029 + 30 +0.0 + 11 +4920.0 + 21 +17918.914255 + 31 +0.0 + 0 +LINE + 5 +D30 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17823.651488 + 30 +0.0 + 11 +4987.499984 + 21 +17845.302123 + 31 +0.0 + 0 +LINE + 5 +D31 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17888.603393 + 30 +0.0 + 11 +4949.999984 + 21 +17910.254028 + 31 +0.0 + 0 +LINE + 5 +D32 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17953.555299 + 30 +0.0 + 11 +4920.0 + 21 +17962.215525 + 31 +0.0 + 0 +LINE + 5 +D33 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17866.952758 + 30 +0.0 + 11 +4987.499984 + 21 +17888.603393 + 31 +0.0 + 0 +LINE + 5 +D34 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17931.904664 + 30 +0.0 + 11 +4949.999984 + 21 +17953.555299 + 31 +0.0 + 0 +LINE + 5 +D35 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +17996.856569 + 30 +0.0 + 11 +4920.0 + 21 +18005.516795 + 31 +0.0 + 0 +LINE + 5 +D36 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17910.254028 + 30 +0.0 + 11 +4987.499984 + 21 +17931.904663 + 31 +0.0 + 0 +LINE + 5 +D37 + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +17975.205934 + 30 +0.0 + 11 +4949.999984 + 21 +17996.856569 + 31 +0.0 + 0 +LINE + 5 +D38 + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +18040.157839 + 30 +0.0 + 11 +4920.0 + 21 +18048.818065 + 31 +0.0 + 0 +LINE + 5 +D39 + 8 +0 + 62 + 0 + 10 +4999.999984 + 20 +17953.555299 + 30 +0.0 + 11 +4987.499984 + 21 +17975.205934 + 31 +0.0 + 0 +LINE + 5 +D3A + 8 +0 + 62 + 0 + 10 +4962.499984 + 20 +18018.507204 + 30 +0.0 + 11 +4949.999984 + 21 +18040.157839 + 31 +0.0 + 0 +LINE + 5 +D3B + 8 +0 + 62 + 0 + 10 +4924.999984 + 20 +18083.459109 + 30 +0.0 + 11 +4920.0 + 21 +18092.119335 + 31 +0.0 + 0 +LINE + 5 +D3C + 8 +0 + 62 + 0 + 10 +4999.999983 + 20 +17996.856569 + 30 +0.0 + 11 +4987.499983 + 21 +18018.507204 + 31 +0.0 + 0 +LINE + 5 +D3D + 8 +0 + 62 + 0 + 10 +4962.499983 + 20 +18061.808474 + 30 +0.0 + 11 +4949.999983 + 21 +18083.459109 + 31 +0.0 + 0 +LINE + 5 +D3E + 8 +0 + 62 + 0 + 10 +4924.999983 + 20 +18126.760379 + 30 +0.0 + 11 +4920.0 + 21 +18135.420605 + 31 +0.0 + 0 +LINE + 5 +D3F + 8 +0 + 62 + 0 + 10 +4999.999983 + 20 +18040.157839 + 30 +0.0 + 11 +4987.499983 + 21 +18061.808474 + 31 +0.0 + 0 +LINE + 5 +D40 + 8 +0 + 62 + 0 + 10 +4962.499983 + 20 +18105.109744 + 30 +0.0 + 11 +4949.999983 + 21 +18126.760379 + 31 +0.0 + 0 +LINE + 5 +D41 + 8 +0 + 62 + 0 + 10 +4924.999983 + 20 +18170.061649 + 30 +0.0 + 11 +4920.0 + 21 +18178.721875 + 31 +0.0 + 0 +LINE + 5 +D42 + 8 +0 + 62 + 0 + 10 +4999.999983 + 20 +18083.459109 + 30 +0.0 + 11 +4987.499983 + 21 +18105.109744 + 31 +0.0 + 0 +LINE + 5 +D43 + 8 +0 + 62 + 0 + 10 +4962.499983 + 20 +18148.411014 + 30 +0.0 + 11 +4949.999983 + 21 +18170.061649 + 31 +0.0 + 0 +LINE + 5 +D44 + 8 +0 + 62 + 0 + 10 +4924.999983 + 20 +18213.36292 + 30 +0.0 + 11 +4920.0 + 21 +18222.023145 + 31 +0.0 + 0 +LINE + 5 +D45 + 8 +0 + 62 + 0 + 10 +4999.999983 + 20 +18126.760379 + 30 +0.0 + 11 +4987.499983 + 21 +18148.411014 + 31 +0.0 + 0 +LINE + 5 +D46 + 8 +0 + 62 + 0 + 10 +4962.499983 + 20 +18191.712284 + 30 +0.0 + 11 +4949.999983 + 21 +18213.362919 + 31 +0.0 + 0 +LINE + 5 +D47 + 8 +0 + 62 + 0 + 10 +4999.999983 + 20 +18170.061649 + 30 +0.0 + 11 +4987.499983 + 21 +18191.712284 + 31 +0.0 + 0 +LINE + 5 +D48 + 8 +0 + 62 + 0 + 10 +4962.499983 + 20 +18235.013555 + 30 +0.0 + 11 +4953.125867 + 21 +18251.25 + 31 +0.0 + 0 +LINE + 5 +D49 + 8 +0 + 62 + 0 + 10 +4999.999983 + 20 +18213.362919 + 30 +0.0 + 11 +4987.499983 + 21 +18235.013554 + 31 +0.0 + 0 +LINE + 5 +D4A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17078.869615 + 30 +0.0 + 11 +4925.000015 + 21 +17087.529896 + 31 +0.0 + 0 +LINE + 5 +D4B + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17130.831166 + 30 +0.0 + 11 +4962.500015 + 21 +17152.481801 + 31 +0.0 + 0 +LINE + 5 +D4C + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17195.783071 + 30 +0.0 + 11 +5000.0 + 21 +17217.43368 + 31 +0.0 + 0 +LINE + 5 +D4D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17122.170885 + 30 +0.0 + 11 +4925.000015 + 21 +17130.831166 + 31 +0.0 + 0 +LINE + 5 +D4E + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17174.132436 + 30 +0.0 + 11 +4962.500015 + 21 +17195.783071 + 31 +0.0 + 0 +LINE + 5 +D4F + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17239.084341 + 30 +0.0 + 11 +5000.0 + 21 +17260.73495 + 31 +0.0 + 0 +LINE + 5 +D50 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17165.472155 + 30 +0.0 + 11 +4925.000015 + 21 +17174.132436 + 31 +0.0 + 0 +LINE + 5 +D51 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17217.433706 + 30 +0.0 + 11 +4962.500015 + 21 +17239.084341 + 31 +0.0 + 0 +LINE + 5 +D52 + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17282.385611 + 30 +0.0 + 11 +5000.0 + 21 +17304.03622 + 31 +0.0 + 0 +LINE + 5 +D53 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17208.773425 + 30 +0.0 + 11 +4925.000015 + 21 +17217.433706 + 31 +0.0 + 0 +LINE + 5 +D54 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17260.734976 + 30 +0.0 + 11 +4962.500015 + 21 +17282.385611 + 31 +0.0 + 0 +LINE + 5 +D55 + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17325.686881 + 30 +0.0 + 11 +5000.0 + 21 +17347.33749 + 31 +0.0 + 0 +LINE + 5 +D56 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17252.074695 + 30 +0.0 + 11 +4925.000015 + 21 +17260.734976 + 31 +0.0 + 0 +LINE + 5 +D57 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17304.036246 + 30 +0.0 + 11 +4962.500015 + 21 +17325.686881 + 31 +0.0 + 0 +LINE + 5 +D58 + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17368.988152 + 30 +0.0 + 11 +5000.0 + 21 +17390.63876 + 31 +0.0 + 0 +LINE + 5 +D59 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17295.375965 + 30 +0.0 + 11 +4925.000015 + 21 +17304.036246 + 31 +0.0 + 0 +LINE + 5 +D5A + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17347.337516 + 30 +0.0 + 11 +4962.500015 + 21 +17368.988152 + 31 +0.0 + 0 +LINE + 5 +D5B + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17412.289422 + 30 +0.0 + 11 +5000.0 + 21 +17433.94003 + 31 +0.0 + 0 +LINE + 5 +D5C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17338.677235 + 30 +0.0 + 11 +4925.000016 + 21 +17347.337516 + 31 +0.0 + 0 +LINE + 5 +D5D + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17390.638787 + 30 +0.0 + 11 +4962.500016 + 21 +17412.289422 + 31 +0.0 + 0 +LINE + 5 +D5E + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17455.590692 + 30 +0.0 + 11 +5000.0 + 21 +17477.2413 + 31 +0.0 + 0 +LINE + 5 +D5F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17381.978505 + 30 +0.0 + 11 +4925.000016 + 21 +17390.638787 + 31 +0.0 + 0 +LINE + 5 +D60 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17433.940057 + 30 +0.0 + 11 +4962.500016 + 21 +17455.590692 + 31 +0.0 + 0 +LINE + 5 +D61 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17498.891962 + 30 +0.0 + 11 +5000.0 + 21 +17520.54257 + 31 +0.0 + 0 +LINE + 5 +D62 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17425.279775 + 30 +0.0 + 11 +4925.000016 + 21 +17433.940057 + 31 +0.0 + 0 +LINE + 5 +D63 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17477.241327 + 30 +0.0 + 11 +4962.500016 + 21 +17498.891962 + 31 +0.0 + 0 +LINE + 5 +D64 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17542.193232 + 30 +0.0 + 11 +5000.0 + 21 +17563.84384 + 31 +0.0 + 0 +LINE + 5 +D65 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17468.581045 + 30 +0.0 + 11 +4925.000016 + 21 +17477.241327 + 31 +0.0 + 0 +LINE + 5 +D66 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17520.542597 + 30 +0.0 + 11 +4962.500016 + 21 +17542.193232 + 31 +0.0 + 0 +LINE + 5 +D67 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17585.494502 + 30 +0.0 + 11 +5000.0 + 21 +17607.14511 + 31 +0.0 + 0 +LINE + 5 +D68 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17511.882315 + 30 +0.0 + 11 +4925.000016 + 21 +17520.542597 + 31 +0.0 + 0 +LINE + 5 +D69 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17563.843867 + 30 +0.0 + 11 +4962.500016 + 21 +17585.494502 + 31 +0.0 + 0 +LINE + 5 +D6A + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17628.795772 + 30 +0.0 + 11 +5000.0 + 21 +17650.44638 + 31 +0.0 + 0 +LINE + 5 +D6B + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17555.183585 + 30 +0.0 + 11 +4925.000016 + 21 +17563.843867 + 31 +0.0 + 0 +LINE + 5 +D6C + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17607.145137 + 30 +0.0 + 11 +4962.500016 + 21 +17628.795772 + 31 +0.0 + 0 +LINE + 5 +D6D + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17672.097043 + 30 +0.0 + 11 +5000.0 + 21 +17693.74765 + 31 +0.0 + 0 +LINE + 5 +D6E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17598.484855 + 30 +0.0 + 11 +4925.000016 + 21 +17607.145137 + 31 +0.0 + 0 +LINE + 5 +D6F + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17650.446407 + 30 +0.0 + 11 +4962.500016 + 21 +17672.097043 + 31 +0.0 + 0 +LINE + 5 +D70 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17715.398313 + 30 +0.0 + 11 +5000.0 + 21 +17737.04892 + 31 +0.0 + 0 +LINE + 5 +D71 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17641.786125 + 30 +0.0 + 11 +4925.000016 + 21 +17650.446407 + 31 +0.0 + 0 +LINE + 5 +D72 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17693.747678 + 30 +0.0 + 11 +4962.500016 + 21 +17715.398313 + 31 +0.0 + 0 +LINE + 5 +D73 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17758.699583 + 30 +0.0 + 11 +5000.0 + 21 +17780.35019 + 31 +0.0 + 0 +LINE + 5 +D74 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17685.087395 + 30 +0.0 + 11 +4925.000016 + 21 +17693.747678 + 31 +0.0 + 0 +LINE + 5 +D75 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17737.048948 + 30 +0.0 + 11 +4962.500016 + 21 +17758.699583 + 31 +0.0 + 0 +LINE + 5 +D76 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17802.000853 + 30 +0.0 + 11 +5000.0 + 21 +17823.65146 + 31 +0.0 + 0 +LINE + 5 +D77 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17728.388665 + 30 +0.0 + 11 +4925.000016 + 21 +17737.048948 + 31 +0.0 + 0 +LINE + 5 +D78 + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17780.350218 + 30 +0.0 + 11 +4962.500016 + 21 +17802.000853 + 31 +0.0 + 0 +LINE + 5 +D79 + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17845.302123 + 30 +0.0 + 11 +5000.0 + 21 +17866.95273 + 31 +0.0 + 0 +LINE + 5 +D7A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17771.689935 + 30 +0.0 + 11 +4925.000016 + 21 +17780.350218 + 31 +0.0 + 0 +LINE + 5 +D7B + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17823.651488 + 30 +0.0 + 11 +4962.500016 + 21 +17845.302123 + 31 +0.0 + 0 +LINE + 5 +D7C + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17888.603393 + 30 +0.0 + 11 +5000.0 + 21 +17910.254 + 31 +0.0 + 0 +LINE + 5 +D7D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17814.991205 + 30 +0.0 + 11 +4925.000016 + 21 +17823.651488 + 31 +0.0 + 0 +LINE + 5 +D7E + 8 +0 + 62 + 0 + 10 +4950.000016 + 20 +17866.952758 + 30 +0.0 + 11 +4962.500016 + 21 +17888.603393 + 31 +0.0 + 0 +LINE + 5 +D7F + 8 +0 + 62 + 0 + 10 +4987.500016 + 20 +17931.904663 + 30 +0.0 + 11 +5000.0 + 21 +17953.55527 + 31 +0.0 + 0 +LINE + 5 +D80 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17858.292475 + 30 +0.0 + 11 +4925.000017 + 21 +17866.952758 + 31 +0.0 + 0 +LINE + 5 +D81 + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +17910.254028 + 30 +0.0 + 11 +4962.500017 + 21 +17931.904663 + 31 +0.0 + 0 +LINE + 5 +D82 + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +17975.205934 + 30 +0.0 + 11 +5000.0 + 21 +17996.85654 + 31 +0.0 + 0 +LINE + 5 +D83 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17901.593745 + 30 +0.0 + 11 +4925.000017 + 21 +17910.254028 + 31 +0.0 + 0 +LINE + 5 +D84 + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +17953.555298 + 30 +0.0 + 11 +4962.500017 + 21 +17975.205934 + 31 +0.0 + 0 +LINE + 5 +D85 + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +18018.507204 + 30 +0.0 + 11 +5000.0 + 21 +18040.15781 + 31 +0.0 + 0 +LINE + 5 +D86 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17944.895015 + 30 +0.0 + 11 +4925.000017 + 21 +17953.555298 + 31 +0.0 + 0 +LINE + 5 +D87 + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +17996.856569 + 30 +0.0 + 11 +4962.500017 + 21 +18018.507204 + 31 +0.0 + 0 +LINE + 5 +D88 + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +18061.808474 + 30 +0.0 + 11 +5000.0 + 21 +18083.45908 + 31 +0.0 + 0 +LINE + 5 +D89 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17988.196285 + 30 +0.0 + 11 +4925.000017 + 21 +17996.856569 + 31 +0.0 + 0 +LINE + 5 +D8A + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +18040.157839 + 30 +0.0 + 11 +4962.500017 + 21 +18061.808474 + 31 +0.0 + 0 +LINE + 5 +D8B + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +18105.109744 + 30 +0.0 + 11 +5000.0 + 21 +18126.76035 + 31 +0.0 + 0 +LINE + 5 +D8C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +18031.497555 + 30 +0.0 + 11 +4925.000017 + 21 +18040.157839 + 31 +0.0 + 0 +LINE + 5 +D8D + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +18083.459109 + 30 +0.0 + 11 +4962.500017 + 21 +18105.109744 + 31 +0.0 + 0 +LINE + 5 +D8E + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +18148.411014 + 30 +0.0 + 11 +5000.0 + 21 +18170.06162 + 31 +0.0 + 0 +LINE + 5 +D8F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +18074.798825 + 30 +0.0 + 11 +4925.000017 + 21 +18083.459109 + 31 +0.0 + 0 +LINE + 5 +D90 + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +18126.760379 + 30 +0.0 + 11 +4962.500017 + 21 +18148.411014 + 31 +0.0 + 0 +LINE + 5 +D91 + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +18191.712284 + 30 +0.0 + 11 +5000.0 + 21 +18213.36289 + 31 +0.0 + 0 +LINE + 5 +D92 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +18118.100095 + 30 +0.0 + 11 +4925.000017 + 21 +18126.760379 + 31 +0.0 + 0 +LINE + 5 +D93 + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +18170.061649 + 30 +0.0 + 11 +4962.500017 + 21 +18191.712284 + 31 +0.0 + 0 +LINE + 5 +D94 + 8 +0 + 62 + 0 + 10 +4987.500017 + 20 +18235.013554 + 30 +0.0 + 11 +4996.874133 + 21 +18251.25 + 31 +0.0 + 0 +LINE + 5 +D95 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +18161.401365 + 30 +0.0 + 11 +4925.000017 + 21 +18170.061649 + 31 +0.0 + 0 +LINE + 5 +D96 + 8 +0 + 62 + 0 + 10 +4950.000017 + 20 +18213.362919 + 30 +0.0 + 11 +4962.500017 + 21 +18235.013554 + 31 +0.0 + 0 +LINE + 5 +D97 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +18204.702635 + 30 +0.0 + 11 +4925.000017 + 21 +18213.362919 + 31 +0.0 + 0 +LINE + 5 +D98 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +18248.003905 + 30 +0.0 + 11 +4921.874134 + 21 +18251.25 + 31 +0.0 + 0 +LINE + 5 +D99 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +17035.568345 + 30 +0.0 + 11 +4925.000015 + 21 +17044.228625 + 31 +0.0 + 0 +LINE + 5 +D9A + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17087.529896 + 30 +0.0 + 11 +4962.500015 + 21 +17109.180531 + 31 +0.0 + 0 +LINE + 5 +D9B + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17152.481801 + 30 +0.0 + 11 +5000.0 + 21 +17174.13241 + 31 +0.0 + 0 +LINE + 5 +D9C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16992.267075 + 30 +0.0 + 11 +4925.000015 + 21 +17000.927355 + 31 +0.0 + 0 +LINE + 5 +D9D + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17044.228625 + 30 +0.0 + 11 +4962.500015 + 21 +17065.879261 + 31 +0.0 + 0 +LINE + 5 +D9E + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17109.180531 + 30 +0.0 + 11 +5000.0 + 21 +17130.83114 + 31 +0.0 + 0 +LINE + 5 +D9F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16948.965805 + 30 +0.0 + 11 +4925.000015 + 21 +16957.626085 + 31 +0.0 + 0 +LINE + 5 +DA0 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +17000.927355 + 30 +0.0 + 11 +4962.500015 + 21 +17022.57799 + 31 +0.0 + 0 +LINE + 5 +DA1 + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17065.879261 + 30 +0.0 + 11 +5000.0 + 21 +17087.52987 + 31 +0.0 + 0 +LINE + 5 +DA2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16905.664535 + 30 +0.0 + 11 +4925.000015 + 21 +16914.324815 + 31 +0.0 + 0 +LINE + 5 +DA3 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +16957.626085 + 30 +0.0 + 11 +4962.500015 + 21 +16979.27672 + 31 +0.0 + 0 +LINE + 5 +DA4 + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +17022.57799 + 30 +0.0 + 11 +5000.0 + 21 +17044.2286 + 31 +0.0 + 0 +LINE + 5 +DA5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16862.363265 + 30 +0.0 + 11 +4925.000015 + 21 +16871.023545 + 31 +0.0 + 0 +LINE + 5 +DA6 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +16914.324815 + 30 +0.0 + 11 +4962.500015 + 21 +16935.97545 + 31 +0.0 + 0 +LINE + 5 +DA7 + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +16979.27672 + 30 +0.0 + 11 +5000.0 + 21 +17000.92733 + 31 +0.0 + 0 +LINE + 5 +DA8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16819.061995 + 30 +0.0 + 11 +4925.000015 + 21 +16827.722275 + 31 +0.0 + 0 +LINE + 5 +DA9 + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +16871.023545 + 30 +0.0 + 11 +4962.500015 + 21 +16892.67418 + 31 +0.0 + 0 +LINE + 5 +DAA + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +16935.97545 + 30 +0.0 + 11 +5000.0 + 21 +16957.62606 + 31 +0.0 + 0 +LINE + 5 +DAB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16775.760725 + 30 +0.0 + 11 +4925.000015 + 21 +16784.421005 + 31 +0.0 + 0 +LINE + 5 +DAC + 8 +0 + 62 + 0 + 10 +4950.000015 + 20 +16827.722275 + 30 +0.0 + 11 +4962.500015 + 21 +16849.37291 + 31 +0.0 + 0 +LINE + 5 +DAD + 8 +0 + 62 + 0 + 10 +4987.500015 + 20 +16892.67418 + 30 +0.0 + 11 +5000.0 + 21 +16914.32479 + 31 +0.0 + 0 +LINE + 5 +DAE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16732.459455 + 30 +0.0 + 11 +4925.000014 + 21 +16741.119734 + 31 +0.0 + 0 +LINE + 5 +DAF + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16784.421005 + 30 +0.0 + 11 +4962.500014 + 21 +16806.07164 + 31 +0.0 + 0 +LINE + 5 +DB0 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16849.37291 + 30 +0.0 + 11 +5000.0 + 21 +16871.02352 + 31 +0.0 + 0 +LINE + 5 +DB1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16689.158185 + 30 +0.0 + 11 +4925.000014 + 21 +16697.818464 + 31 +0.0 + 0 +LINE + 5 +DB2 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16741.119734 + 30 +0.0 + 11 +4962.500014 + 21 +16762.77037 + 31 +0.0 + 0 +LINE + 5 +DB3 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16806.07164 + 30 +0.0 + 11 +5000.0 + 21 +16827.72225 + 31 +0.0 + 0 +LINE + 5 +DB4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16645.856915 + 30 +0.0 + 11 +4925.000014 + 21 +16654.517194 + 31 +0.0 + 0 +LINE + 5 +DB5 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16697.818464 + 30 +0.0 + 11 +4962.500014 + 21 +16719.469099 + 31 +0.0 + 0 +LINE + 5 +DB6 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16762.77037 + 30 +0.0 + 11 +5000.0 + 21 +16784.42098 + 31 +0.0 + 0 +LINE + 5 +DB7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16602.555645 + 30 +0.0 + 11 +4925.000014 + 21 +16611.215924 + 31 +0.0 + 0 +LINE + 5 +DB8 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16654.517194 + 30 +0.0 + 11 +4962.500014 + 21 +16676.167829 + 31 +0.0 + 0 +LINE + 5 +DB9 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16719.469099 + 30 +0.0 + 11 +5000.0 + 21 +16741.11971 + 31 +0.0 + 0 +LINE + 5 +DBA + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16559.254375 + 30 +0.0 + 11 +4925.000014 + 21 +16567.914654 + 31 +0.0 + 0 +LINE + 5 +DBB + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16611.215924 + 30 +0.0 + 11 +4962.500014 + 21 +16632.866559 + 31 +0.0 + 0 +LINE + 5 +DBC + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16676.167829 + 30 +0.0 + 11 +5000.0 + 21 +16697.81844 + 31 +0.0 + 0 +LINE + 5 +DBD + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16515.953105 + 30 +0.0 + 11 +4925.000014 + 21 +16524.613384 + 31 +0.0 + 0 +LINE + 5 +DBE + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16567.914654 + 30 +0.0 + 11 +4962.500014 + 21 +16589.565289 + 31 +0.0 + 0 +LINE + 5 +DBF + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16632.866559 + 30 +0.0 + 11 +5000.0 + 21 +16654.51717 + 31 +0.0 + 0 +LINE + 5 +DC0 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16472.651835 + 30 +0.0 + 11 +4925.000014 + 21 +16481.312114 + 31 +0.0 + 0 +LINE + 5 +DC1 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16524.613384 + 30 +0.0 + 11 +4962.500014 + 21 +16546.264019 + 31 +0.0 + 0 +LINE + 5 +DC2 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16589.565289 + 30 +0.0 + 11 +5000.0 + 21 +16611.2159 + 31 +0.0 + 0 +LINE + 5 +DC3 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16429.350565 + 30 +0.0 + 11 +4925.000014 + 21 +16438.010843 + 31 +0.0 + 0 +LINE + 5 +DC4 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16481.312114 + 30 +0.0 + 11 +4962.500014 + 21 +16502.962749 + 31 +0.0 + 0 +LINE + 5 +DC5 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16546.264019 + 30 +0.0 + 11 +5000.0 + 21 +16567.91463 + 31 +0.0 + 0 +LINE + 5 +DC6 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16386.049295 + 30 +0.0 + 11 +4925.000014 + 21 +16394.709573 + 31 +0.0 + 0 +LINE + 5 +DC7 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16438.010843 + 30 +0.0 + 11 +4962.500014 + 21 +16459.661479 + 31 +0.0 + 0 +LINE + 5 +DC8 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16502.962749 + 30 +0.0 + 11 +5000.0 + 21 +16524.61336 + 31 +0.0 + 0 +LINE + 5 +DC9 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16342.748025 + 30 +0.0 + 11 +4925.000014 + 21 +16351.408303 + 31 +0.0 + 0 +LINE + 5 +DCA + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16394.709573 + 30 +0.0 + 11 +4962.500014 + 21 +16416.360208 + 31 +0.0 + 0 +LINE + 5 +DCB + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16459.661479 + 30 +0.0 + 11 +5000.0 + 21 +16481.31209 + 31 +0.0 + 0 +LINE + 5 +DCC + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16299.446755 + 30 +0.0 + 11 +4925.000014 + 21 +16308.107033 + 31 +0.0 + 0 +LINE + 5 +DCD + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16351.408303 + 30 +0.0 + 11 +4962.500014 + 21 +16373.058938 + 31 +0.0 + 0 +LINE + 5 +DCE + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16416.360208 + 30 +0.0 + 11 +5000.0 + 21 +16438.01082 + 31 +0.0 + 0 +LINE + 5 +DCF + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16256.145485 + 30 +0.0 + 11 +4925.000014 + 21 +16264.805763 + 31 +0.0 + 0 +LINE + 5 +DD0 + 8 +0 + 62 + 0 + 10 +4950.000014 + 20 +16308.107033 + 30 +0.0 + 11 +4962.500014 + 21 +16329.757668 + 31 +0.0 + 0 +LINE + 5 +DD1 + 8 +0 + 62 + 0 + 10 +4987.500014 + 20 +16373.058938 + 30 +0.0 + 11 +5000.0 + 21 +16394.70955 + 31 +0.0 + 0 +LINE + 5 +DD2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16212.844215 + 30 +0.0 + 11 +4925.000013 + 21 +16221.504493 + 31 +0.0 + 0 +LINE + 5 +DD3 + 8 +0 + 62 + 0 + 10 +4950.000013 + 20 +16264.805763 + 30 +0.0 + 11 +4962.500013 + 21 +16286.456398 + 31 +0.0 + 0 +LINE + 5 +DD4 + 8 +0 + 62 + 0 + 10 +4987.500013 + 20 +16329.757668 + 30 +0.0 + 11 +5000.0 + 21 +16351.40828 + 31 +0.0 + 0 +LINE + 5 +DD5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16169.542945 + 30 +0.0 + 11 +4925.000013 + 21 +16178.203223 + 31 +0.0 + 0 +LINE + 5 +DD6 + 8 +0 + 62 + 0 + 10 +4950.000013 + 20 +16221.504493 + 30 +0.0 + 11 +4962.500013 + 21 +16243.155128 + 31 +0.0 + 0 +LINE + 5 +DD7 + 8 +0 + 62 + 0 + 10 +4987.500013 + 20 +16286.456398 + 30 +0.0 + 11 +5000.0 + 21 +16308.10701 + 31 +0.0 + 0 +LINE + 5 +DD8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +16126.241675 + 30 +0.0 + 11 +4925.000013 + 21 +16134.901952 + 31 +0.0 + 0 +LINE + 5 +DD9 + 8 +0 + 62 + 0 + 10 +4950.000013 + 20 +16178.203223 + 30 +0.0 + 11 +4962.500013 + 21 +16199.853858 + 31 +0.0 + 0 +LINE + 5 +DDA + 8 +0 + 62 + 0 + 10 +4987.500013 + 20 +16243.155128 + 30 +0.0 + 11 +5000.0 + 21 +16264.80574 + 31 +0.0 + 0 +LINE + 5 +DDB + 8 +0 + 62 + 0 + 10 +4950.000013 + 20 +16134.901952 + 30 +0.0 + 11 +4962.500013 + 21 +16156.552588 + 31 +0.0 + 0 +LINE + 5 +DDC + 8 +0 + 62 + 0 + 10 +4987.500013 + 20 +16199.853858 + 30 +0.0 + 11 +5000.0 + 21 +16221.50447 + 31 +0.0 + 0 +LINE + 5 +DDD + 8 +0 + 62 + 0 + 10 +4987.500013 + 20 +16156.552588 + 30 +0.0 + 11 +5000.0 + 21 +16178.2032 + 31 +0.0 + 0 +LINE + 5 +DDE + 8 +0 + 62 + 0 + 10 +4987.787928 + 20 +16113.75 + 30 +0.0 + 11 +5000.0 + 21 +16134.90193 + 31 +0.0 + 0 +ENDBLK + 5 +DDF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X44 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X44 + 1 + + 0 +LINE + 5 +DE1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11891.37747 + 30 +0.0 + 11 +4950.0 + 21 +11891.37747 + 31 +0.0 + 0 +LINE + 5 +DE2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11913.028105 + 30 +0.0 + 11 +4987.5 + 21 +11913.028105 + 31 +0.0 + 0 +LINE + 5 +DE3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11934.67874 + 30 +0.0 + 11 +4950.0 + 21 +11934.67874 + 31 +0.0 + 0 +LINE + 5 +DE4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11956.329375 + 30 +0.0 + 11 +4987.5 + 21 +11956.329375 + 31 +0.0 + 0 +LINE + 5 +DE5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11977.98001 + 30 +0.0 + 11 +4950.0 + 21 +11977.98001 + 31 +0.0 + 0 +LINE + 5 +DE6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11999.630645 + 30 +0.0 + 11 +4987.5 + 21 +11999.630645 + 31 +0.0 + 0 +LINE + 5 +DE7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12021.28128 + 30 +0.0 + 11 +4950.0 + 21 +12021.28128 + 31 +0.0 + 0 +LINE + 5 +DE8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12042.931915 + 30 +0.0 + 11 +4987.5 + 21 +12042.931915 + 31 +0.0 + 0 +LINE + 5 +DE9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12064.58255 + 30 +0.0 + 11 +4950.0 + 21 +12064.58255 + 31 +0.0 + 0 +LINE + 5 +DEA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12086.233185 + 30 +0.0 + 11 +4987.5 + 21 +12086.233185 + 31 +0.0 + 0 +LINE + 5 +DEB + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12107.88382 + 30 +0.0 + 11 +4950.0 + 21 +12107.88382 + 31 +0.0 + 0 +LINE + 5 +DEC + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12129.534455 + 30 +0.0 + 11 +4987.5 + 21 +12129.534455 + 31 +0.0 + 0 +LINE + 5 +DED + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12151.18509 + 30 +0.0 + 11 +4950.0 + 21 +12151.18509 + 31 +0.0 + 0 +LINE + 5 +DEE + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12172.835725 + 30 +0.0 + 11 +4987.5 + 21 +12172.835725 + 31 +0.0 + 0 +LINE + 5 +DEF + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12194.48636 + 30 +0.0 + 11 +4950.0 + 21 +12194.48636 + 31 +0.0 + 0 +LINE + 5 +DF0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12216.136995 + 30 +0.0 + 11 +4987.5 + 21 +12216.136995 + 31 +0.0 + 0 +LINE + 5 +DF1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12237.78763 + 30 +0.0 + 11 +4950.0 + 21 +12237.78763 + 31 +0.0 + 0 +LINE + 5 +DF2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12259.438265 + 30 +0.0 + 11 +4987.5 + 21 +12259.438265 + 31 +0.0 + 0 +LINE + 5 +DF3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12281.0889 + 30 +0.0 + 11 +4950.0 + 21 +12281.0889 + 31 +0.0 + 0 +LINE + 5 +DF4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12302.739535 + 30 +0.0 + 11 +4987.5 + 21 +12302.739535 + 31 +0.0 + 0 +LINE + 5 +DF5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12324.39017 + 30 +0.0 + 11 +4950.0 + 21 +12324.39017 + 31 +0.0 + 0 +LINE + 5 +DF6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12346.040805 + 30 +0.0 + 11 +4987.5 + 21 +12346.040805 + 31 +0.0 + 0 +LINE + 5 +DF7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12367.69144 + 30 +0.0 + 11 +4950.0 + 21 +12367.69144 + 31 +0.0 + 0 +LINE + 5 +DF8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12389.342075 + 30 +0.0 + 11 +4987.5 + 21 +12389.342075 + 31 +0.0 + 0 +LINE + 5 +DF9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12410.99271 + 30 +0.0 + 11 +4950.0 + 21 +12410.99271 + 31 +0.0 + 0 +LINE + 5 +DFA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12432.643345 + 30 +0.0 + 11 +4987.5 + 21 +12432.643345 + 31 +0.0 + 0 +LINE + 5 +DFB + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12454.29398 + 30 +0.0 + 11 +4950.0 + 21 +12454.29398 + 31 +0.0 + 0 +LINE + 5 +DFC + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12475.944615 + 30 +0.0 + 11 +4987.5 + 21 +12475.944615 + 31 +0.0 + 0 +LINE + 5 +DFD + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12497.59525 + 30 +0.0 + 11 +4950.0 + 21 +12497.59525 + 31 +0.0 + 0 +LINE + 5 +DFE + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12519.245885 + 30 +0.0 + 11 +4987.5 + 21 +12519.245885 + 31 +0.0 + 0 +LINE + 5 +DFF + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12540.89652 + 30 +0.0 + 11 +4950.0 + 21 +12540.89652 + 31 +0.0 + 0 +LINE + 5 +E00 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12562.547155 + 30 +0.0 + 11 +4987.5 + 21 +12562.547155 + 31 +0.0 + 0 +LINE + 5 +E01 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12584.19779 + 30 +0.0 + 11 +4950.0 + 21 +12584.19779 + 31 +0.0 + 0 +LINE + 5 +E02 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12605.848425 + 30 +0.0 + 11 +4987.5 + 21 +12605.848425 + 31 +0.0 + 0 +LINE + 5 +E03 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12627.49906 + 30 +0.0 + 11 +4950.0 + 21 +12627.49906 + 31 +0.0 + 0 +LINE + 5 +E04 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12649.149695 + 30 +0.0 + 11 +4987.5 + 21 +12649.149695 + 31 +0.0 + 0 +LINE + 5 +E05 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12670.80033 + 30 +0.0 + 11 +4950.0 + 21 +12670.80033 + 31 +0.0 + 0 +LINE + 5 +E06 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12692.450965 + 30 +0.0 + 11 +4987.5 + 21 +12692.450965 + 31 +0.0 + 0 +LINE + 5 +E07 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12714.1016 + 30 +0.0 + 11 +4950.0 + 21 +12714.1016 + 31 +0.0 + 0 +LINE + 5 +E08 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12735.752235 + 30 +0.0 + 11 +4987.5 + 21 +12735.752235 + 31 +0.0 + 0 +LINE + 5 +E09 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12757.40287 + 30 +0.0 + 11 +4950.0 + 21 +12757.40287 + 31 +0.0 + 0 +LINE + 5 +E0A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12779.053505 + 30 +0.0 + 11 +4987.5 + 21 +12779.053505 + 31 +0.0 + 0 +LINE + 5 +E0B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12800.70414 + 30 +0.0 + 11 +4950.0 + 21 +12800.70414 + 31 +0.0 + 0 +LINE + 5 +E0C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12822.354775 + 30 +0.0 + 11 +4987.5 + 21 +12822.354775 + 31 +0.0 + 0 +LINE + 5 +E0D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12844.00541 + 30 +0.0 + 11 +4950.0 + 21 +12844.00541 + 31 +0.0 + 0 +LINE + 5 +E0E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12865.656045 + 30 +0.0 + 11 +4987.5 + 21 +12865.656045 + 31 +0.0 + 0 +LINE + 5 +E0F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12887.30668 + 30 +0.0 + 11 +4950.0 + 21 +12887.30668 + 31 +0.0 + 0 +LINE + 5 +E10 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12908.957315 + 30 +0.0 + 11 +4987.5 + 21 +12908.957315 + 31 +0.0 + 0 +LINE + 5 +E11 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12930.60795 + 30 +0.0 + 11 +4950.0 + 21 +12930.60795 + 31 +0.0 + 0 +LINE + 5 +E12 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12952.258585 + 30 +0.0 + 11 +4987.5 + 21 +12952.258585 + 31 +0.0 + 0 +LINE + 5 +E13 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +12973.90922 + 30 +0.0 + 11 +4950.0 + 21 +12973.90922 + 31 +0.0 + 0 +LINE + 5 +E14 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +12995.559855 + 30 +0.0 + 11 +4987.5 + 21 +12995.559855 + 31 +0.0 + 0 +LINE + 5 +E15 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13017.21049 + 30 +0.0 + 11 +4950.0 + 21 +13017.21049 + 31 +0.0 + 0 +LINE + 5 +E16 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13038.861125 + 30 +0.0 + 11 +4987.5 + 21 +13038.861125 + 31 +0.0 + 0 +LINE + 5 +E17 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13060.51176 + 30 +0.0 + 11 +4950.0 + 21 +13060.51176 + 31 +0.0 + 0 +LINE + 5 +E18 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13082.162395 + 30 +0.0 + 11 +4987.5 + 21 +13082.162395 + 31 +0.0 + 0 +LINE + 5 +E19 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13103.81303 + 30 +0.0 + 11 +4950.0 + 21 +13103.81303 + 31 +0.0 + 0 +LINE + 5 +E1A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13125.463665 + 30 +0.0 + 11 +4987.5 + 21 +13125.463665 + 31 +0.0 + 0 +LINE + 5 +E1B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13147.1143 + 30 +0.0 + 11 +4950.0 + 21 +13147.1143 + 31 +0.0 + 0 +LINE + 5 +E1C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13168.764935 + 30 +0.0 + 11 +4987.5 + 21 +13168.764935 + 31 +0.0 + 0 +LINE + 5 +E1D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13190.41557 + 30 +0.0 + 11 +4950.0 + 21 +13190.41557 + 31 +0.0 + 0 +LINE + 5 +E1E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13212.066205 + 30 +0.0 + 11 +4987.5 + 21 +13212.066205 + 31 +0.0 + 0 +LINE + 5 +E1F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13233.71684 + 30 +0.0 + 11 +4950.0 + 21 +13233.71684 + 31 +0.0 + 0 +LINE + 5 +E20 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13255.367475 + 30 +0.0 + 11 +4987.5 + 21 +13255.367475 + 31 +0.0 + 0 +LINE + 5 +E21 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13277.01811 + 30 +0.0 + 11 +4950.0 + 21 +13277.01811 + 31 +0.0 + 0 +LINE + 5 +E22 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13298.668745 + 30 +0.0 + 11 +4987.5 + 21 +13298.668745 + 31 +0.0 + 0 +LINE + 5 +E23 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13320.31938 + 30 +0.0 + 11 +4950.0 + 21 +13320.31938 + 31 +0.0 + 0 +LINE + 5 +E24 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13341.970015 + 30 +0.0 + 11 +4987.5 + 21 +13341.970015 + 31 +0.0 + 0 +LINE + 5 +E25 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13363.62065 + 30 +0.0 + 11 +4950.0 + 21 +13363.62065 + 31 +0.0 + 0 +LINE + 5 +E26 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13385.271285 + 30 +0.0 + 11 +4987.5 + 21 +13385.271285 + 31 +0.0 + 0 +LINE + 5 +E27 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13406.92192 + 30 +0.0 + 11 +4950.0 + 21 +13406.92192 + 31 +0.0 + 0 +LINE + 5 +E28 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13428.572555 + 30 +0.0 + 11 +4987.5 + 21 +13428.572555 + 31 +0.0 + 0 +LINE + 5 +E29 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13450.22319 + 30 +0.0 + 11 +4950.0 + 21 +13450.22319 + 31 +0.0 + 0 +LINE + 5 +E2A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13471.873825 + 30 +0.0 + 11 +4987.5 + 21 +13471.873825 + 31 +0.0 + 0 +LINE + 5 +E2B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13493.52446 + 30 +0.0 + 11 +4950.0 + 21 +13493.52446 + 31 +0.0 + 0 +LINE + 5 +E2C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13515.175095 + 30 +0.0 + 11 +4987.5 + 21 +13515.175095 + 31 +0.0 + 0 +LINE + 5 +E2D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13536.82573 + 30 +0.0 + 11 +4950.0 + 21 +13536.82573 + 31 +0.0 + 0 +LINE + 5 +E2E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13558.476365 + 30 +0.0 + 11 +4987.5 + 21 +13558.476365 + 31 +0.0 + 0 +LINE + 5 +E2F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13580.127 + 30 +0.0 + 11 +4950.0 + 21 +13580.127 + 31 +0.0 + 0 +LINE + 5 +E30 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13601.777635 + 30 +0.0 + 11 +4987.5 + 21 +13601.777635 + 31 +0.0 + 0 +LINE + 5 +E31 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13623.42827 + 30 +0.0 + 11 +4950.0 + 21 +13623.42827 + 31 +0.0 + 0 +LINE + 5 +E32 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13645.078905 + 30 +0.0 + 11 +4987.5 + 21 +13645.078905 + 31 +0.0 + 0 +LINE + 5 +E33 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13666.72954 + 30 +0.0 + 11 +4950.0 + 21 +13666.72954 + 31 +0.0 + 0 +LINE + 5 +E34 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13688.380175 + 30 +0.0 + 11 +4987.5 + 21 +13688.380175 + 31 +0.0 + 0 +LINE + 5 +E35 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13710.03081 + 30 +0.0 + 11 +4950.0 + 21 +13710.03081 + 31 +0.0 + 0 +LINE + 5 +E36 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13731.681445 + 30 +0.0 + 11 +4987.5 + 21 +13731.681445 + 31 +0.0 + 0 +LINE + 5 +E37 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13753.33208 + 30 +0.0 + 11 +4950.0 + 21 +13753.33208 + 31 +0.0 + 0 +LINE + 5 +E38 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13774.982715 + 30 +0.0 + 11 +4987.5 + 21 +13774.982715 + 31 +0.0 + 0 +LINE + 5 +E39 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13796.63335 + 30 +0.0 + 11 +4950.0 + 21 +13796.63335 + 31 +0.0 + 0 +LINE + 5 +E3A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13818.283985 + 30 +0.0 + 11 +4987.5 + 21 +13818.283985 + 31 +0.0 + 0 +LINE + 5 +E3B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13839.93462 + 30 +0.0 + 11 +4950.0 + 21 +13839.93462 + 31 +0.0 + 0 +LINE + 5 +E3C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13861.585255 + 30 +0.0 + 11 +4987.5 + 21 +13861.585255 + 31 +0.0 + 0 +LINE + 5 +E3D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13883.23589 + 30 +0.0 + 11 +4950.0 + 21 +13883.23589 + 31 +0.0 + 0 +LINE + 5 +E3E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13904.886525 + 30 +0.0 + 11 +4987.5 + 21 +13904.886525 + 31 +0.0 + 0 +LINE + 5 +E3F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13926.53716 + 30 +0.0 + 11 +4950.0 + 21 +13926.53716 + 31 +0.0 + 0 +LINE + 5 +E40 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13948.187795 + 30 +0.0 + 11 +4987.5 + 21 +13948.187795 + 31 +0.0 + 0 +LINE + 5 +E41 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +13969.83843 + 30 +0.0 + 11 +4950.0 + 21 +13969.83843 + 31 +0.0 + 0 +LINE + 5 +E42 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +13991.489065 + 30 +0.0 + 11 +4987.5 + 21 +13991.489065 + 31 +0.0 + 0 +LINE + 5 +E43 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14013.1397 + 30 +0.0 + 11 +4950.0 + 21 +14013.1397 + 31 +0.0 + 0 +LINE + 5 +E44 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14034.790335 + 30 +0.0 + 11 +4987.5 + 21 +14034.790335 + 31 +0.0 + 0 +LINE + 5 +E45 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14056.44097 + 30 +0.0 + 11 +4950.0 + 21 +14056.44097 + 31 +0.0 + 0 +LINE + 5 +E46 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14078.091605 + 30 +0.0 + 11 +4987.5 + 21 +14078.091605 + 31 +0.0 + 0 +LINE + 5 +E47 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14099.74224 + 30 +0.0 + 11 +4950.0 + 21 +14099.74224 + 31 +0.0 + 0 +LINE + 5 +E48 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14121.392875 + 30 +0.0 + 11 +4987.5 + 21 +14121.392875 + 31 +0.0 + 0 +LINE + 5 +E49 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14143.04351 + 30 +0.0 + 11 +4950.0 + 21 +14143.04351 + 31 +0.0 + 0 +LINE + 5 +E4A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14164.694145 + 30 +0.0 + 11 +4987.5 + 21 +14164.694145 + 31 +0.0 + 0 +LINE + 5 +E4B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14186.34478 + 30 +0.0 + 11 +4950.0 + 21 +14186.34478 + 31 +0.0 + 0 +LINE + 5 +E4C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14207.995415 + 30 +0.0 + 11 +4987.5 + 21 +14207.995415 + 31 +0.0 + 0 +LINE + 5 +E4D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14229.64605 + 30 +0.0 + 11 +4950.0 + 21 +14229.64605 + 31 +0.0 + 0 +LINE + 5 +E4E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14251.296685 + 30 +0.0 + 11 +4987.5 + 21 +14251.296685 + 31 +0.0 + 0 +LINE + 5 +E4F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14272.94732 + 30 +0.0 + 11 +4950.0 + 21 +14272.94732 + 31 +0.0 + 0 +LINE + 5 +E50 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14294.597955 + 30 +0.0 + 11 +4987.5 + 21 +14294.597955 + 31 +0.0 + 0 +LINE + 5 +E51 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14316.24859 + 30 +0.0 + 11 +4950.0 + 21 +14316.24859 + 31 +0.0 + 0 +LINE + 5 +E52 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14337.899225 + 30 +0.0 + 11 +4987.5 + 21 +14337.899225 + 31 +0.0 + 0 +LINE + 5 +E53 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14359.54986 + 30 +0.0 + 11 +4950.0 + 21 +14359.54986 + 31 +0.0 + 0 +LINE + 5 +E54 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14381.200495 + 30 +0.0 + 11 +4987.5 + 21 +14381.200495 + 31 +0.0 + 0 +LINE + 5 +E55 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14402.85113 + 30 +0.0 + 11 +4950.0 + 21 +14402.85113 + 31 +0.0 + 0 +LINE + 5 +E56 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14424.501765 + 30 +0.0 + 11 +4987.5 + 21 +14424.501765 + 31 +0.0 + 0 +LINE + 5 +E57 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14446.1524 + 30 +0.0 + 11 +4950.0 + 21 +14446.1524 + 31 +0.0 + 0 +LINE + 5 +E58 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14467.803035 + 30 +0.0 + 11 +4987.5 + 21 +14467.803035 + 31 +0.0 + 0 +LINE + 5 +E59 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14489.45367 + 30 +0.0 + 11 +4950.0 + 21 +14489.45367 + 31 +0.0 + 0 +LINE + 5 +E5A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14511.104305 + 30 +0.0 + 11 +4987.5 + 21 +14511.104305 + 31 +0.0 + 0 +LINE + 5 +E5B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14532.75494 + 30 +0.0 + 11 +4950.0 + 21 +14532.75494 + 31 +0.0 + 0 +LINE + 5 +E5C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14554.405575 + 30 +0.0 + 11 +4987.5 + 21 +14554.405575 + 31 +0.0 + 0 +LINE + 5 +E5D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14576.05621 + 30 +0.0 + 11 +4950.0 + 21 +14576.05621 + 31 +0.0 + 0 +LINE + 5 +E5E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +14597.706845 + 30 +0.0 + 11 +4987.5 + 21 +14597.706845 + 31 +0.0 + 0 +LINE + 5 +E5F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +14619.35748 + 30 +0.0 + 11 +4950.0 + 21 +14619.35748 + 31 +0.0 + 0 +LINE + 5 +E60 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11869.726835 + 30 +0.0 + 11 +4987.5 + 21 +11869.726835 + 31 +0.0 + 0 +LINE + 5 +E61 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11848.0762 + 30 +0.0 + 11 +4950.0 + 21 +11848.0762 + 31 +0.0 + 0 +LINE + 5 +E62 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11826.425565 + 30 +0.0 + 11 +4987.5 + 21 +11826.425565 + 31 +0.0 + 0 +LINE + 5 +E63 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11804.77493 + 30 +0.0 + 11 +4950.0 + 21 +11804.77493 + 31 +0.0 + 0 +LINE + 5 +E64 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11783.124295 + 30 +0.0 + 11 +4987.5 + 21 +11783.124295 + 31 +0.0 + 0 +LINE + 5 +E65 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11761.47366 + 30 +0.0 + 11 +4950.0 + 21 +11761.47366 + 31 +0.0 + 0 +LINE + 5 +E66 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11739.823025 + 30 +0.0 + 11 +4987.5 + 21 +11739.823025 + 31 +0.0 + 0 +LINE + 5 +E67 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11718.17239 + 30 +0.0 + 11 +4950.0 + 21 +11718.17239 + 31 +0.0 + 0 +LINE + 5 +E68 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11696.521755 + 30 +0.0 + 11 +4987.5 + 21 +11696.521755 + 31 +0.0 + 0 +LINE + 5 +E69 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11674.87112 + 30 +0.0 + 11 +4950.0 + 21 +11674.87112 + 31 +0.0 + 0 +LINE + 5 +E6A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11653.220485 + 30 +0.0 + 11 +4987.5 + 21 +11653.220485 + 31 +0.0 + 0 +LINE + 5 +E6B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11631.56985 + 30 +0.0 + 11 +4950.0 + 21 +11631.56985 + 31 +0.0 + 0 +LINE + 5 +E6C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11609.919215 + 30 +0.0 + 11 +4987.5 + 21 +11609.919215 + 31 +0.0 + 0 +LINE + 5 +E6D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11588.26858 + 30 +0.0 + 11 +4950.0 + 21 +11588.26858 + 31 +0.0 + 0 +LINE + 5 +E6E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11566.617945 + 30 +0.0 + 11 +4987.5 + 21 +11566.617945 + 31 +0.0 + 0 +LINE + 5 +E6F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11544.96731 + 30 +0.0 + 11 +4950.0 + 21 +11544.96731 + 31 +0.0 + 0 +LINE + 5 +E70 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11523.316675 + 30 +0.0 + 11 +4987.5 + 21 +11523.316675 + 31 +0.0 + 0 +LINE + 5 +E71 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11501.66604 + 30 +0.0 + 11 +4950.0 + 21 +11501.66604 + 31 +0.0 + 0 +LINE + 5 +E72 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11480.015405 + 30 +0.0 + 11 +4987.5 + 21 +11480.015405 + 31 +0.0 + 0 +LINE + 5 +E73 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11458.36477 + 30 +0.0 + 11 +4950.0 + 21 +11458.36477 + 31 +0.0 + 0 +LINE + 5 +E74 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11436.714135 + 30 +0.0 + 11 +4987.5 + 21 +11436.714135 + 31 +0.0 + 0 +LINE + 5 +E75 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11415.0635 + 30 +0.0 + 11 +4950.0 + 21 +11415.0635 + 31 +0.0 + 0 +LINE + 5 +E76 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11393.412865 + 30 +0.0 + 11 +4987.5 + 21 +11393.412865 + 31 +0.0 + 0 +LINE + 5 +E77 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11371.76223 + 30 +0.0 + 11 +4950.0 + 21 +11371.76223 + 31 +0.0 + 0 +LINE + 5 +E78 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11350.111595 + 30 +0.0 + 11 +4987.5 + 21 +11350.111595 + 31 +0.0 + 0 +LINE + 5 +E79 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11328.46096 + 30 +0.0 + 11 +4950.0 + 21 +11328.46096 + 31 +0.0 + 0 +LINE + 5 +E7A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11306.810325 + 30 +0.0 + 11 +4987.5 + 21 +11306.810325 + 31 +0.0 + 0 +LINE + 5 +E7B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11285.15969 + 30 +0.0 + 11 +4950.0 + 21 +11285.15969 + 31 +0.0 + 0 +LINE + 5 +E7C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11263.509055 + 30 +0.0 + 11 +4987.5 + 21 +11263.509055 + 31 +0.0 + 0 +LINE + 5 +E7D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11241.85842 + 30 +0.0 + 11 +4950.0 + 21 +11241.85842 + 31 +0.0 + 0 +LINE + 5 +E7E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11220.207785 + 30 +0.0 + 11 +4987.5 + 21 +11220.207785 + 31 +0.0 + 0 +LINE + 5 +E7F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11198.55715 + 30 +0.0 + 11 +4950.0 + 21 +11198.55715 + 31 +0.0 + 0 +LINE + 5 +E80 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11176.906515 + 30 +0.0 + 11 +4987.5 + 21 +11176.906515 + 31 +0.0 + 0 +LINE + 5 +E81 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11155.25588 + 30 +0.0 + 11 +4950.0 + 21 +11155.25588 + 31 +0.0 + 0 +LINE + 5 +E82 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11133.605245 + 30 +0.0 + 11 +4987.5 + 21 +11133.605245 + 31 +0.0 + 0 +LINE + 5 +E83 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11111.95461 + 30 +0.0 + 11 +4950.0 + 21 +11111.95461 + 31 +0.0 + 0 +LINE + 5 +E84 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11090.303975 + 30 +0.0 + 11 +4987.5 + 21 +11090.303975 + 31 +0.0 + 0 +LINE + 5 +E85 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11068.65334 + 30 +0.0 + 11 +4950.0 + 21 +11068.65334 + 31 +0.0 + 0 +LINE + 5 +E86 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11047.002705 + 30 +0.0 + 11 +4987.5 + 21 +11047.002705 + 31 +0.0 + 0 +LINE + 5 +E87 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +11025.35207 + 30 +0.0 + 11 +4950.0 + 21 +11025.35207 + 31 +0.0 + 0 +LINE + 5 +E88 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +11003.701435 + 30 +0.0 + 11 +4987.5 + 21 +11003.701435 + 31 +0.0 + 0 +LINE + 5 +E89 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10982.0508 + 30 +0.0 + 11 +4950.0 + 21 +10982.0508 + 31 +0.0 + 0 +LINE + 5 +E8A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10960.400165 + 30 +0.0 + 11 +4987.5 + 21 +10960.400165 + 31 +0.0 + 0 +LINE + 5 +E8B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10938.74953 + 30 +0.0 + 11 +4950.0 + 21 +10938.74953 + 31 +0.0 + 0 +LINE + 5 +E8C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10917.098895 + 30 +0.0 + 11 +4987.5 + 21 +10917.098895 + 31 +0.0 + 0 +LINE + 5 +E8D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10895.44826 + 30 +0.0 + 11 +4950.0 + 21 +10895.44826 + 31 +0.0 + 0 +LINE + 5 +E8E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10873.797625 + 30 +0.0 + 11 +4987.5 + 21 +10873.797625 + 31 +0.0 + 0 +LINE + 5 +E8F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10852.14699 + 30 +0.0 + 11 +4950.0 + 21 +10852.14699 + 31 +0.0 + 0 +LINE + 5 +E90 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10830.496355 + 30 +0.0 + 11 +4987.5 + 21 +10830.496355 + 31 +0.0 + 0 +LINE + 5 +E91 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10808.84572 + 30 +0.0 + 11 +4950.0 + 21 +10808.84572 + 31 +0.0 + 0 +LINE + 5 +E92 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10787.195085 + 30 +0.0 + 11 +4987.5 + 21 +10787.195085 + 31 +0.0 + 0 +LINE + 5 +E93 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10765.54445 + 30 +0.0 + 11 +4950.0 + 21 +10765.54445 + 31 +0.0 + 0 +LINE + 5 +E94 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10743.893815 + 30 +0.0 + 11 +4987.5 + 21 +10743.893815 + 31 +0.0 + 0 +LINE + 5 +E95 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10722.24318 + 30 +0.0 + 11 +4950.0 + 21 +10722.24318 + 31 +0.0 + 0 +LINE + 5 +E96 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10700.592545 + 30 +0.0 + 11 +4987.5 + 21 +10700.592545 + 31 +0.0 + 0 +LINE + 5 +E97 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10678.94191 + 30 +0.0 + 11 +4950.0 + 21 +10678.94191 + 31 +0.0 + 0 +LINE + 5 +E98 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10657.291275 + 30 +0.0 + 11 +4987.5 + 21 +10657.291275 + 31 +0.0 + 0 +LINE + 5 +E99 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10635.64064 + 30 +0.0 + 11 +4950.0 + 21 +10635.64064 + 31 +0.0 + 0 +LINE + 5 +E9A + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10613.990005 + 30 +0.0 + 11 +4987.5 + 21 +10613.990005 + 31 +0.0 + 0 +LINE + 5 +E9B + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10592.33937 + 30 +0.0 + 11 +4950.0 + 21 +10592.33937 + 31 +0.0 + 0 +LINE + 5 +E9C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10570.688735 + 30 +0.0 + 11 +4987.5 + 21 +10570.688735 + 31 +0.0 + 0 +LINE + 5 +E9D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10549.0381 + 30 +0.0 + 11 +4950.0 + 21 +10549.0381 + 31 +0.0 + 0 +LINE + 5 +E9E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10527.387465 + 30 +0.0 + 11 +4987.5 + 21 +10527.387465 + 31 +0.0 + 0 +LINE + 5 +E9F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10505.73683 + 30 +0.0 + 11 +4950.0 + 21 +10505.73683 + 31 +0.0 + 0 +LINE + 5 +EA0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10484.086195 + 30 +0.0 + 11 +4987.5 + 21 +10484.086195 + 31 +0.0 + 0 +LINE + 5 +EA1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10462.43556 + 30 +0.0 + 11 +4950.0 + 21 +10462.43556 + 31 +0.0 + 0 +LINE + 5 +EA2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10440.784925 + 30 +0.0 + 11 +4987.5 + 21 +10440.784925 + 31 +0.0 + 0 +LINE + 5 +EA3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10419.13429 + 30 +0.0 + 11 +4950.0 + 21 +10419.13429 + 31 +0.0 + 0 +LINE + 5 +EA4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10397.483655 + 30 +0.0 + 11 +4987.5 + 21 +10397.483655 + 31 +0.0 + 0 +LINE + 5 +EA5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10375.83302 + 30 +0.0 + 11 +4950.0 + 21 +10375.83302 + 31 +0.0 + 0 +LINE + 5 +EA6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10354.182385 + 30 +0.0 + 11 +4987.5 + 21 +10354.182385 + 31 +0.0 + 0 +LINE + 5 +EA7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10332.53175 + 30 +0.0 + 11 +4950.0 + 21 +10332.53175 + 31 +0.0 + 0 +LINE + 5 +EA8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10310.881115 + 30 +0.0 + 11 +4987.5 + 21 +10310.881115 + 31 +0.0 + 0 +LINE + 5 +EA9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10289.23048 + 30 +0.0 + 11 +4950.0 + 21 +10289.23048 + 31 +0.0 + 0 +LINE + 5 +EAA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10267.579845 + 30 +0.0 + 11 +4987.5 + 21 +10267.579845 + 31 +0.0 + 0 +LINE + 5 +EAB + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10245.92921 + 30 +0.0 + 11 +4950.0 + 21 +10245.92921 + 31 +0.0 + 0 +LINE + 5 +EAC + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10224.278575 + 30 +0.0 + 11 +4987.5 + 21 +10224.278575 + 31 +0.0 + 0 +LINE + 5 +EAD + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10202.62794 + 30 +0.0 + 11 +4950.0 + 21 +10202.62794 + 31 +0.0 + 0 +LINE + 5 +EAE + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10180.977305 + 30 +0.0 + 11 +4987.5 + 21 +10180.977305 + 31 +0.0 + 0 +LINE + 5 +EAF + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10159.32667 + 30 +0.0 + 11 +4950.0 + 21 +10159.32667 + 31 +0.0 + 0 +LINE + 5 +EB0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10137.676035 + 30 +0.0 + 11 +4987.5 + 21 +10137.676035 + 31 +0.0 + 0 +LINE + 5 +EB1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10116.0254 + 30 +0.0 + 11 +4950.0 + 21 +10116.0254 + 31 +0.0 + 0 +LINE + 5 +EB2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10094.374765 + 30 +0.0 + 11 +4987.5 + 21 +10094.374765 + 31 +0.0 + 0 +LINE + 5 +EB3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10072.72413 + 30 +0.0 + 11 +4950.0 + 21 +10072.72413 + 31 +0.0 + 0 +LINE + 5 +EB4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10051.073495 + 30 +0.0 + 11 +4987.5 + 21 +10051.073495 + 31 +0.0 + 0 +LINE + 5 +EB5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +10029.42286 + 30 +0.0 + 11 +4950.0 + 21 +10029.42286 + 31 +0.0 + 0 +LINE + 5 +EB6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +10007.772225 + 30 +0.0 + 11 +4987.5 + 21 +10007.772225 + 31 +0.0 + 0 +LINE + 5 +EB7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9986.12159 + 30 +0.0 + 11 +4950.0 + 21 +9986.12159 + 31 +0.0 + 0 +LINE + 5 +EB8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9964.470955 + 30 +0.0 + 11 +4987.5 + 21 +9964.470955 + 31 +0.0 + 0 +LINE + 5 +EB9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9942.82032 + 30 +0.0 + 11 +4950.0 + 21 +9942.82032 + 31 +0.0 + 0 +LINE + 5 +EBA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9921.169685 + 30 +0.0 + 11 +4987.5 + 21 +9921.169685 + 31 +0.0 + 0 +LINE + 5 +EBB + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9899.51905 + 30 +0.0 + 11 +4950.0 + 21 +9899.51905 + 31 +0.0 + 0 +LINE + 5 +EBC + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9877.868415 + 30 +0.0 + 11 +4987.5 + 21 +9877.868415 + 31 +0.0 + 0 +LINE + 5 +EBD + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9856.21778 + 30 +0.0 + 11 +4950.0 + 21 +9856.21778 + 31 +0.0 + 0 +LINE + 5 +EBE + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9834.567145 + 30 +0.0 + 11 +4987.5 + 21 +9834.567145 + 31 +0.0 + 0 +LINE + 5 +EBF + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9812.91651 + 30 +0.0 + 11 +4950.0 + 21 +9812.91651 + 31 +0.0 + 0 +LINE + 5 +EC0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9791.265875 + 30 +0.0 + 11 +4987.5 + 21 +9791.265875 + 31 +0.0 + 0 +LINE + 5 +EC1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9769.61524 + 30 +0.0 + 11 +4950.0 + 21 +9769.61524 + 31 +0.0 + 0 +LINE + 5 +EC2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9747.964605 + 30 +0.0 + 11 +4987.5 + 21 +9747.964605 + 31 +0.0 + 0 +LINE + 5 +EC3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9726.31397 + 30 +0.0 + 11 +4950.0 + 21 +9726.31397 + 31 +0.0 + 0 +LINE + 5 +EC4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9704.663335 + 30 +0.0 + 11 +4987.5 + 21 +9704.663335 + 31 +0.0 + 0 +LINE + 5 +EC5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9683.0127 + 30 +0.0 + 11 +4950.0 + 21 +9683.0127 + 31 +0.0 + 0 +LINE + 5 +EC6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9661.362065 + 30 +0.0 + 11 +4987.5 + 21 +9661.362065 + 31 +0.0 + 0 +LINE + 5 +EC7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9639.71143 + 30 +0.0 + 11 +4950.0 + 21 +9639.71143 + 31 +0.0 + 0 +LINE + 5 +EC8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9618.060795 + 30 +0.0 + 11 +4987.5 + 21 +9618.060795 + 31 +0.0 + 0 +LINE + 5 +EC9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9596.41016 + 30 +0.0 + 11 +4950.0 + 21 +9596.41016 + 31 +0.0 + 0 +LINE + 5 +ECA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9574.759525 + 30 +0.0 + 11 +4987.5 + 21 +9574.759525 + 31 +0.0 + 0 +LINE + 5 +ECB + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9553.10889 + 30 +0.0 + 11 +4950.0 + 21 +9553.10889 + 31 +0.0 + 0 +LINE + 5 +ECC + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9531.458255 + 30 +0.0 + 11 +4987.5 + 21 +9531.458255 + 31 +0.0 + 0 +LINE + 5 +ECD + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9509.80762 + 30 +0.0 + 11 +4950.0 + 21 +9509.80762 + 31 +0.0 + 0 +LINE + 5 +ECE + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9488.156985 + 30 +0.0 + 11 +4987.5 + 21 +9488.156985 + 31 +0.0 + 0 +LINE + 5 +ECF + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9466.50635 + 30 +0.0 + 11 +4950.0 + 21 +9466.50635 + 31 +0.0 + 0 +LINE + 5 +ED0 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9444.855715 + 30 +0.0 + 11 +4987.5 + 21 +9444.855715 + 31 +0.0 + 0 +LINE + 5 +ED1 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9423.20508 + 30 +0.0 + 11 +4950.0 + 21 +9423.20508 + 31 +0.0 + 0 +LINE + 5 +ED2 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9401.554445 + 30 +0.0 + 11 +4987.5 + 21 +9401.554445 + 31 +0.0 + 0 +LINE + 5 +ED3 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9379.90381 + 30 +0.0 + 11 +4950.0 + 21 +9379.90381 + 31 +0.0 + 0 +LINE + 5 +ED4 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9358.253175 + 30 +0.0 + 11 +4987.5 + 21 +9358.253175 + 31 +0.0 + 0 +LINE + 5 +ED5 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9336.60254 + 30 +0.0 + 11 +4950.0 + 21 +9336.60254 + 31 +0.0 + 0 +LINE + 5 +ED6 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9314.951905 + 30 +0.0 + 11 +4987.5 + 21 +9314.951905 + 31 +0.0 + 0 +LINE + 5 +ED7 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9293.30127 + 30 +0.0 + 11 +4950.0 + 21 +9293.30127 + 31 +0.0 + 0 +LINE + 5 +ED8 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9271.650635 + 30 +0.0 + 11 +4987.5 + 21 +9271.650635 + 31 +0.0 + 0 +LINE + 5 +ED9 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9250.0 + 30 +0.0 + 11 +4950.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +EDA + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9228.349365 + 30 +0.0 + 11 +4987.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EDB + 8 +0 + 62 + 0 + 10 +5037.5 + 20 +9228.349365 + 30 +0.0 + 11 +5062.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EDC + 8 +0 + 62 + 0 + 10 +5112.5 + 20 +9228.349365 + 30 +0.0 + 11 +5137.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EDD + 8 +0 + 62 + 0 + 10 +5187.5 + 20 +9228.349365 + 30 +0.0 + 11 +5212.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EDE + 8 +0 + 62 + 0 + 10 +5262.5 + 20 +9228.349365 + 30 +0.0 + 11 +5287.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EDF + 8 +0 + 62 + 0 + 10 +5337.5 + 20 +9228.349365 + 30 +0.0 + 11 +5362.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE0 + 8 +0 + 62 + 0 + 10 +5412.5 + 20 +9228.349365 + 30 +0.0 + 11 +5437.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE1 + 8 +0 + 62 + 0 + 10 +5487.5 + 20 +9228.349365 + 30 +0.0 + 11 +5512.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE2 + 8 +0 + 62 + 0 + 10 +5562.5 + 20 +9228.349365 + 30 +0.0 + 11 +5587.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE3 + 8 +0 + 62 + 0 + 10 +5637.5 + 20 +9228.349365 + 30 +0.0 + 11 +5662.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE4 + 8 +0 + 62 + 0 + 10 +5712.5 + 20 +9228.349365 + 30 +0.0 + 11 +5737.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE5 + 8 +0 + 62 + 0 + 10 +5787.5 + 20 +9228.349365 + 30 +0.0 + 11 +5812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE6 + 8 +0 + 62 + 0 + 10 +5862.5 + 20 +9228.349365 + 30 +0.0 + 11 +5887.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE7 + 8 +0 + 62 + 0 + 10 +5937.5 + 20 +9228.349365 + 30 +0.0 + 11 +5962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE8 + 8 +0 + 62 + 0 + 10 +6012.5 + 20 +9228.349365 + 30 +0.0 + 11 +6037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EE9 + 8 +0 + 62 + 0 + 10 +6087.5 + 20 +9228.349365 + 30 +0.0 + 11 +6112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EEA + 8 +0 + 62 + 0 + 10 +6162.5 + 20 +9228.349365 + 30 +0.0 + 11 +6187.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EEB + 8 +0 + 62 + 0 + 10 +6237.5 + 20 +9228.349365 + 30 +0.0 + 11 +6262.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EEC + 8 +0 + 62 + 0 + 10 +6312.5 + 20 +9228.349365 + 30 +0.0 + 11 +6337.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EED + 8 +0 + 62 + 0 + 10 +6387.5 + 20 +9228.349365 + 30 +0.0 + 11 +6412.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EEE + 8 +0 + 62 + 0 + 10 +6462.5 + 20 +9228.349365 + 30 +0.0 + 11 +6487.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EEF + 8 +0 + 62 + 0 + 10 +6537.5 + 20 +9228.349365 + 30 +0.0 + 11 +6562.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF0 + 8 +0 + 62 + 0 + 10 +6612.5 + 20 +9228.349365 + 30 +0.0 + 11 +6637.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF1 + 8 +0 + 62 + 0 + 10 +6687.5 + 20 +9228.349365 + 30 +0.0 + 11 +6712.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF2 + 8 +0 + 62 + 0 + 10 +6762.5 + 20 +9228.349365 + 30 +0.0 + 11 +6787.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF3 + 8 +0 + 62 + 0 + 10 +6837.5 + 20 +9228.349365 + 30 +0.0 + 11 +6862.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF4 + 8 +0 + 62 + 0 + 10 +6912.5 + 20 +9228.349365 + 30 +0.0 + 11 +6937.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF5 + 8 +0 + 62 + 0 + 10 +6987.5 + 20 +9228.349365 + 30 +0.0 + 11 +7012.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF6 + 8 +0 + 62 + 0 + 10 +7062.5 + 20 +9228.349365 + 30 +0.0 + 11 +7087.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF7 + 8 +0 + 62 + 0 + 10 +7137.5 + 20 +9228.349365 + 30 +0.0 + 11 +7162.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF8 + 8 +0 + 62 + 0 + 10 +7212.5 + 20 +9228.349365 + 30 +0.0 + 11 +7237.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EF9 + 8 +0 + 62 + 0 + 10 +7287.5 + 20 +9228.349365 + 30 +0.0 + 11 +7312.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EFA + 8 +0 + 62 + 0 + 10 +7362.5 + 20 +9228.349365 + 30 +0.0 + 11 +7387.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EFB + 8 +0 + 62 + 0 + 10 +7437.5 + 20 +9228.349365 + 30 +0.0 + 11 +7462.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EFC + 8 +0 + 62 + 0 + 10 +7512.5 + 20 +9228.349365 + 30 +0.0 + 11 +7537.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EFD + 8 +0 + 62 + 0 + 10 +7587.5 + 20 +9228.349365 + 30 +0.0 + 11 +7612.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EFE + 8 +0 + 62 + 0 + 10 +7662.5 + 20 +9228.349365 + 30 +0.0 + 11 +7687.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +EFF + 8 +0 + 62 + 0 + 10 +7737.5 + 20 +9228.349365 + 30 +0.0 + 11 +7751.25 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +F00 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9206.69873 + 30 +0.0 + 11 +4950.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F01 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9206.69873 + 30 +0.0 + 11 +5025.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F02 + 8 +0 + 62 + 0 + 10 +5075.0 + 20 +9206.69873 + 30 +0.0 + 11 +5100.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F03 + 8 +0 + 62 + 0 + 10 +5150.0 + 20 +9206.69873 + 30 +0.0 + 11 +5175.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F04 + 8 +0 + 62 + 0 + 10 +5225.0 + 20 +9206.69873 + 30 +0.0 + 11 +5250.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F05 + 8 +0 + 62 + 0 + 10 +5300.0 + 20 +9206.69873 + 30 +0.0 + 11 +5325.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F06 + 8 +0 + 62 + 0 + 10 +5375.0 + 20 +9206.69873 + 30 +0.0 + 11 +5400.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F07 + 8 +0 + 62 + 0 + 10 +5450.0 + 20 +9206.69873 + 30 +0.0 + 11 +5475.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F08 + 8 +0 + 62 + 0 + 10 +5525.0 + 20 +9206.69873 + 30 +0.0 + 11 +5550.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F09 + 8 +0 + 62 + 0 + 10 +5600.0 + 20 +9206.69873 + 30 +0.0 + 11 +5625.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F0A + 8 +0 + 62 + 0 + 10 +5675.0 + 20 +9206.69873 + 30 +0.0 + 11 +5700.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F0B + 8 +0 + 62 + 0 + 10 +5750.0 + 20 +9206.69873 + 30 +0.0 + 11 +5775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F0C + 8 +0 + 62 + 0 + 10 +5825.0 + 20 +9206.69873 + 30 +0.0 + 11 +5850.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F0D + 8 +0 + 62 + 0 + 10 +5900.0 + 20 +9206.69873 + 30 +0.0 + 11 +5925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F0E + 8 +0 + 62 + 0 + 10 +5975.0 + 20 +9206.69873 + 30 +0.0 + 11 +6000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F0F + 8 +0 + 62 + 0 + 10 +6050.0 + 20 +9206.69873 + 30 +0.0 + 11 +6075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F10 + 8 +0 + 62 + 0 + 10 +6125.0 + 20 +9206.69873 + 30 +0.0 + 11 +6150.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F11 + 8 +0 + 62 + 0 + 10 +6200.0 + 20 +9206.69873 + 30 +0.0 + 11 +6225.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F12 + 8 +0 + 62 + 0 + 10 +6275.0 + 20 +9206.69873 + 30 +0.0 + 11 +6300.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F13 + 8 +0 + 62 + 0 + 10 +6350.0 + 20 +9206.69873 + 30 +0.0 + 11 +6375.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F14 + 8 +0 + 62 + 0 + 10 +6425.0 + 20 +9206.69873 + 30 +0.0 + 11 +6450.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F15 + 8 +0 + 62 + 0 + 10 +6500.0 + 20 +9206.69873 + 30 +0.0 + 11 +6525.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F16 + 8 +0 + 62 + 0 + 10 +6575.0 + 20 +9206.69873 + 30 +0.0 + 11 +6600.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F17 + 8 +0 + 62 + 0 + 10 +6650.0 + 20 +9206.69873 + 30 +0.0 + 11 +6675.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F18 + 8 +0 + 62 + 0 + 10 +6725.0 + 20 +9206.69873 + 30 +0.0 + 11 +6750.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F19 + 8 +0 + 62 + 0 + 10 +6800.0 + 20 +9206.69873 + 30 +0.0 + 11 +6825.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F1A + 8 +0 + 62 + 0 + 10 +6875.0 + 20 +9206.69873 + 30 +0.0 + 11 +6900.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F1B + 8 +0 + 62 + 0 + 10 +6950.0 + 20 +9206.69873 + 30 +0.0 + 11 +6975.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F1C + 8 +0 + 62 + 0 + 10 +7025.0 + 20 +9206.69873 + 30 +0.0 + 11 +7050.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F1D + 8 +0 + 62 + 0 + 10 +7100.0 + 20 +9206.69873 + 30 +0.0 + 11 +7125.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F1E + 8 +0 + 62 + 0 + 10 +7175.0 + 20 +9206.69873 + 30 +0.0 + 11 +7200.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F1F + 8 +0 + 62 + 0 + 10 +7250.0 + 20 +9206.69873 + 30 +0.0 + 11 +7275.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F20 + 8 +0 + 62 + 0 + 10 +7325.0 + 20 +9206.69873 + 30 +0.0 + 11 +7350.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F21 + 8 +0 + 62 + 0 + 10 +7400.0 + 20 +9206.69873 + 30 +0.0 + 11 +7425.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F22 + 8 +0 + 62 + 0 + 10 +7475.0 + 20 +9206.69873 + 30 +0.0 + 11 +7500.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F23 + 8 +0 + 62 + 0 + 10 +7550.0 + 20 +9206.69873 + 30 +0.0 + 11 +7575.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F24 + 8 +0 + 62 + 0 + 10 +7625.0 + 20 +9206.69873 + 30 +0.0 + 11 +7650.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F25 + 8 +0 + 62 + 0 + 10 +7700.0 + 20 +9206.69873 + 30 +0.0 + 11 +7725.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +F26 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9185.048095 + 30 +0.0 + 11 +4987.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F27 + 8 +0 + 62 + 0 + 10 +5037.5 + 20 +9185.048095 + 30 +0.0 + 11 +5062.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F28 + 8 +0 + 62 + 0 + 10 +5112.5 + 20 +9185.048095 + 30 +0.0 + 11 +5137.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F29 + 8 +0 + 62 + 0 + 10 +5187.5 + 20 +9185.048095 + 30 +0.0 + 11 +5212.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F2A + 8 +0 + 62 + 0 + 10 +5262.5 + 20 +9185.048095 + 30 +0.0 + 11 +5287.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F2B + 8 +0 + 62 + 0 + 10 +5337.5 + 20 +9185.048095 + 30 +0.0 + 11 +5362.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F2C + 8 +0 + 62 + 0 + 10 +5412.5 + 20 +9185.048095 + 30 +0.0 + 11 +5437.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F2D + 8 +0 + 62 + 0 + 10 +5487.5 + 20 +9185.048095 + 30 +0.0 + 11 +5512.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F2E + 8 +0 + 62 + 0 + 10 +5562.5 + 20 +9185.048095 + 30 +0.0 + 11 +5587.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F2F + 8 +0 + 62 + 0 + 10 +5637.5 + 20 +9185.048095 + 30 +0.0 + 11 +5662.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F30 + 8 +0 + 62 + 0 + 10 +5712.5 + 20 +9185.048095 + 30 +0.0 + 11 +5737.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F31 + 8 +0 + 62 + 0 + 10 +5787.5 + 20 +9185.048095 + 30 +0.0 + 11 +5812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F32 + 8 +0 + 62 + 0 + 10 +5862.5 + 20 +9185.048095 + 30 +0.0 + 11 +5887.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F33 + 8 +0 + 62 + 0 + 10 +5937.5 + 20 +9185.048095 + 30 +0.0 + 11 +5962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F34 + 8 +0 + 62 + 0 + 10 +6012.5 + 20 +9185.048095 + 30 +0.0 + 11 +6037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F35 + 8 +0 + 62 + 0 + 10 +6087.5 + 20 +9185.048095 + 30 +0.0 + 11 +6112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F36 + 8 +0 + 62 + 0 + 10 +6162.5 + 20 +9185.048095 + 30 +0.0 + 11 +6187.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F37 + 8 +0 + 62 + 0 + 10 +6237.5 + 20 +9185.048095 + 30 +0.0 + 11 +6262.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F38 + 8 +0 + 62 + 0 + 10 +6312.5 + 20 +9185.048095 + 30 +0.0 + 11 +6337.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F39 + 8 +0 + 62 + 0 + 10 +6387.5 + 20 +9185.048095 + 30 +0.0 + 11 +6412.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F3A + 8 +0 + 62 + 0 + 10 +6462.5 + 20 +9185.048095 + 30 +0.0 + 11 +6487.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F3B + 8 +0 + 62 + 0 + 10 +6537.5 + 20 +9185.048095 + 30 +0.0 + 11 +6562.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F3C + 8 +0 + 62 + 0 + 10 +6612.5 + 20 +9185.048095 + 30 +0.0 + 11 +6637.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F3D + 8 +0 + 62 + 0 + 10 +6687.5 + 20 +9185.048095 + 30 +0.0 + 11 +6712.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F3E + 8 +0 + 62 + 0 + 10 +6762.5 + 20 +9185.048095 + 30 +0.0 + 11 +6787.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F3F + 8 +0 + 62 + 0 + 10 +6837.5 + 20 +9185.048095 + 30 +0.0 + 11 +6862.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F40 + 8 +0 + 62 + 0 + 10 +6912.5 + 20 +9185.048095 + 30 +0.0 + 11 +6937.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F41 + 8 +0 + 62 + 0 + 10 +6987.5 + 20 +9185.048095 + 30 +0.0 + 11 +7012.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F42 + 8 +0 + 62 + 0 + 10 +7062.5 + 20 +9185.048095 + 30 +0.0 + 11 +7087.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F43 + 8 +0 + 62 + 0 + 10 +7137.5 + 20 +9185.048095 + 30 +0.0 + 11 +7162.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F44 + 8 +0 + 62 + 0 + 10 +7212.5 + 20 +9185.048095 + 30 +0.0 + 11 +7237.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F45 + 8 +0 + 62 + 0 + 10 +7287.5 + 20 +9185.048095 + 30 +0.0 + 11 +7312.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F46 + 8 +0 + 62 + 0 + 10 +7362.5 + 20 +9185.048095 + 30 +0.0 + 11 +7387.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F47 + 8 +0 + 62 + 0 + 10 +7437.5 + 20 +9185.048095 + 30 +0.0 + 11 +7462.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F48 + 8 +0 + 62 + 0 + 10 +7512.5 + 20 +9185.048095 + 30 +0.0 + 11 +7537.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F49 + 8 +0 + 62 + 0 + 10 +7587.5 + 20 +9185.048095 + 30 +0.0 + 11 +7612.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F4A + 8 +0 + 62 + 0 + 10 +7662.5 + 20 +9185.048095 + 30 +0.0 + 11 +7687.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F4B + 8 +0 + 62 + 0 + 10 +7737.5 + 20 +9185.048095 + 30 +0.0 + 11 +7751.25 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +F4C + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +14186.344796 + 30 +0.0 + 11 +4987.499991 + 21 +14207.995431 + 31 +0.0 + 0 +LINE + 5 +F4D + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14251.296701 + 30 +0.0 + 11 +4949.999991 + 21 +14272.947337 + 31 +0.0 + 0 +LINE + 5 +F4E + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14316.248607 + 30 +0.0 + 11 +4920.0 + 21 +14324.908845 + 31 +0.0 + 0 +LINE + 5 +F4F + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +14143.043526 + 30 +0.0 + 11 +4987.499991 + 21 +14164.694161 + 31 +0.0 + 0 +LINE + 5 +F50 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14207.995431 + 30 +0.0 + 11 +4949.999991 + 21 +14229.646066 + 31 +0.0 + 0 +LINE + 5 +F51 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14272.947337 + 30 +0.0 + 11 +4920.0 + 21 +14281.607575 + 31 +0.0 + 0 +LINE + 5 +F52 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +14099.742256 + 30 +0.0 + 11 +4987.499991 + 21 +14121.392891 + 31 +0.0 + 0 +LINE + 5 +F53 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14164.694161 + 30 +0.0 + 11 +4949.999991 + 21 +14186.344796 + 31 +0.0 + 0 +LINE + 5 +F54 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14229.646066 + 30 +0.0 + 11 +4920.0 + 21 +14238.306305 + 31 +0.0 + 0 +LINE + 5 +F55 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +14056.440986 + 30 +0.0 + 11 +4987.499991 + 21 +14078.091621 + 31 +0.0 + 0 +LINE + 5 +F56 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14121.392891 + 30 +0.0 + 11 +4949.999991 + 21 +14143.043526 + 31 +0.0 + 0 +LINE + 5 +F57 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14186.344796 + 30 +0.0 + 11 +4920.0 + 21 +14195.005035 + 31 +0.0 + 0 +LINE + 5 +F58 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +14013.139716 + 30 +0.0 + 11 +4987.499991 + 21 +14034.790351 + 31 +0.0 + 0 +LINE + 5 +F59 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14078.091621 + 30 +0.0 + 11 +4949.999991 + 21 +14099.742256 + 31 +0.0 + 0 +LINE + 5 +F5A + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14143.043526 + 30 +0.0 + 11 +4920.0 + 21 +14151.703765 + 31 +0.0 + 0 +LINE + 5 +F5B + 8 +0 + 62 + 0 + 10 +7737.499991 + 20 +9228.34936 + 30 +0.0 + 11 +7724.999991 + 21 +9249.999995 + 31 +0.0 + 0 +LINE + 5 +F5C + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +13969.838445 + 30 +0.0 + 11 +4987.499991 + 21 +13991.489081 + 31 +0.0 + 0 +LINE + 5 +F5D + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14034.790351 + 30 +0.0 + 11 +4949.999991 + 21 +14056.440986 + 31 +0.0 + 0 +LINE + 5 +F5E + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14099.742256 + 30 +0.0 + 11 +4920.0 + 21 +14108.402495 + 31 +0.0 + 0 +LINE + 5 +F5F + 8 +0 + 62 + 0 + 10 +7737.499991 + 20 +9185.04809 + 30 +0.0 + 11 +7724.999991 + 21 +9206.698725 + 31 +0.0 + 0 +LINE + 5 +F60 + 8 +0 + 62 + 0 + 10 +7699.999991 + 20 +9249.999995 + 30 +0.0 + 11 +7699.999988 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +F61 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +13926.537175 + 30 +0.0 + 11 +4987.499991 + 21 +13948.18781 + 31 +0.0 + 0 +LINE + 5 +F62 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +13991.489081 + 30 +0.0 + 11 +4949.999991 + 21 +14013.139716 + 31 +0.0 + 0 +LINE + 5 +F63 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14056.440986 + 30 +0.0 + 11 +4920.0 + 21 +14065.101225 + 31 +0.0 + 0 +LINE + 5 +F64 + 8 +0 + 62 + 0 + 10 +7699.999991 + 20 +9206.698725 + 30 +0.0 + 11 +7687.499991 + 21 +9228.34936 + 31 +0.0 + 0 +LINE + 5 +F65 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +13883.235905 + 30 +0.0 + 11 +4987.499991 + 21 +13904.88654 + 31 +0.0 + 0 +LINE + 5 +F66 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +13948.18781 + 30 +0.0 + 11 +4949.999991 + 21 +13969.838446 + 31 +0.0 + 0 +LINE + 5 +F67 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14013.139716 + 30 +0.0 + 11 +4920.0 + 21 +14021.799955 + 31 +0.0 + 0 +LINE + 5 +F68 + 8 +0 + 62 + 0 + 10 +7696.18801 + 20 +9170.0 + 30 +0.0 + 11 +7687.499991 + 21 +9185.04809 + 31 +0.0 + 0 +LINE + 5 +F69 + 8 +0 + 62 + 0 + 10 +7662.499991 + 20 +9228.34936 + 30 +0.0 + 11 +7649.999991 + 21 +9249.999995 + 31 +0.0 + 0 +LINE + 5 +F6A + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +13839.934635 + 30 +0.0 + 11 +4987.499991 + 21 +13861.58527 + 31 +0.0 + 0 +LINE + 5 +F6B + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +13904.88654 + 30 +0.0 + 11 +4949.999991 + 21 +13926.537175 + 31 +0.0 + 0 +LINE + 5 +F6C + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +13969.838446 + 30 +0.0 + 11 +4920.0 + 21 +13978.498685 + 31 +0.0 + 0 +LINE + 5 +F6D + 8 +0 + 62 + 0 + 10 +7662.499991 + 20 +9185.04809 + 30 +0.0 + 11 +7649.999991 + 21 +9206.698725 + 31 +0.0 + 0 +LINE + 5 +F6E + 8 +0 + 62 + 0 + 10 +7624.999991 + 20 +9249.999995 + 30 +0.0 + 11 +7624.999989 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +F6F + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +13796.633365 + 30 +0.0 + 11 +4987.499991 + 21 +13818.284 + 31 +0.0 + 0 +LINE + 5 +F70 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +13861.58527 + 30 +0.0 + 11 +4949.999991 + 21 +13883.235905 + 31 +0.0 + 0 +LINE + 5 +F71 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +13926.537175 + 30 +0.0 + 11 +4920.0 + 21 +13935.197415 + 31 +0.0 + 0 +LINE + 5 +F72 + 8 +0 + 62 + 0 + 10 +7624.999991 + 20 +9206.698725 + 30 +0.0 + 11 +7612.499991 + 21 +9228.34936 + 31 +0.0 + 0 +LINE + 5 +F73 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +13753.332095 + 30 +0.0 + 11 +4987.499991 + 21 +13774.98273 + 31 +0.0 + 0 +LINE + 5 +F74 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +13818.284 + 30 +0.0 + 11 +4949.999991 + 21 +13839.934635 + 31 +0.0 + 0 +LINE + 5 +F75 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +13883.235905 + 30 +0.0 + 11 +4920.0 + 21 +13891.896145 + 31 +0.0 + 0 +LINE + 5 +F76 + 8 +0 + 62 + 0 + 10 +7621.18801 + 20 +9170.0 + 30 +0.0 + 11 +7612.499992 + 21 +9185.04809 + 31 +0.0 + 0 +LINE + 5 +F77 + 8 +0 + 62 + 0 + 10 +7587.499992 + 20 +9228.34936 + 30 +0.0 + 11 +7574.999992 + 21 +9249.999995 + 31 +0.0 + 0 +LINE + 5 +F78 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13710.030825 + 30 +0.0 + 11 +4987.499992 + 21 +13731.68146 + 31 +0.0 + 0 +LINE + 5 +F79 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13774.98273 + 30 +0.0 + 11 +4949.999992 + 21 +13796.633365 + 31 +0.0 + 0 +LINE + 5 +F7A + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13839.934635 + 30 +0.0 + 11 +4920.0 + 21 +13848.594875 + 31 +0.0 + 0 +LINE + 5 +F7B + 8 +0 + 62 + 0 + 10 +7587.499992 + 20 +9185.04809 + 30 +0.0 + 11 +7574.999992 + 21 +9206.698725 + 31 +0.0 + 0 +LINE + 5 +F7C + 8 +0 + 62 + 0 + 10 +7549.999992 + 20 +9249.999995 + 30 +0.0 + 11 +7549.999989 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +F7D + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13666.729554 + 30 +0.0 + 11 +4987.499992 + 21 +13688.38019 + 31 +0.0 + 0 +LINE + 5 +F7E + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13731.68146 + 30 +0.0 + 11 +4949.999992 + 21 +13753.332095 + 31 +0.0 + 0 +LINE + 5 +F7F + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13796.633365 + 30 +0.0 + 11 +4920.0 + 21 +13805.293605 + 31 +0.0 + 0 +LINE + 5 +F80 + 8 +0 + 62 + 0 + 10 +7549.999992 + 20 +9206.698725 + 30 +0.0 + 11 +7537.499992 + 21 +9228.34936 + 31 +0.0 + 0 +LINE + 5 +F81 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13623.428284 + 30 +0.0 + 11 +4987.499992 + 21 +13645.078919 + 31 +0.0 + 0 +LINE + 5 +F82 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13688.38019 + 30 +0.0 + 11 +4949.999992 + 21 +13710.030825 + 31 +0.0 + 0 +LINE + 5 +F83 + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13753.332095 + 30 +0.0 + 11 +4920.0 + 21 +13761.992335 + 31 +0.0 + 0 +LINE + 5 +F84 + 8 +0 + 62 + 0 + 10 +7546.188011 + 20 +9170.0 + 30 +0.0 + 11 +7537.499992 + 21 +9185.04809 + 31 +0.0 + 0 +LINE + 5 +F85 + 8 +0 + 62 + 0 + 10 +7512.499992 + 20 +9228.34936 + 30 +0.0 + 11 +7499.999992 + 21 +9249.999995 + 31 +0.0 + 0 +LINE + 5 +F86 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13580.127014 + 30 +0.0 + 11 +4987.499992 + 21 +13601.777649 + 31 +0.0 + 0 +LINE + 5 +F87 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13645.078919 + 30 +0.0 + 11 +4949.999992 + 21 +13666.729555 + 31 +0.0 + 0 +LINE + 5 +F88 + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13710.030825 + 30 +0.0 + 11 +4920.0 + 21 +13718.691065 + 31 +0.0 + 0 +LINE + 5 +F89 + 8 +0 + 62 + 0 + 10 +7512.499992 + 20 +9185.04809 + 30 +0.0 + 11 +7499.999992 + 21 +9206.698725 + 31 +0.0 + 0 +LINE + 5 +F8A + 8 +0 + 62 + 0 + 10 +7474.999992 + 20 +9249.999995 + 30 +0.0 + 11 +7474.999989 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +F8B + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13536.825744 + 30 +0.0 + 11 +4987.499992 + 21 +13558.476379 + 31 +0.0 + 0 +LINE + 5 +F8C + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13601.777649 + 30 +0.0 + 11 +4949.999992 + 21 +13623.428284 + 31 +0.0 + 0 +LINE + 5 +F8D + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13666.729555 + 30 +0.0 + 11 +4920.0 + 21 +13675.389795 + 31 +0.0 + 0 +LINE + 5 +F8E + 8 +0 + 62 + 0 + 10 +7474.999992 + 20 +9206.698725 + 30 +0.0 + 11 +7462.499992 + 21 +9228.34936 + 31 +0.0 + 0 +LINE + 5 +F8F + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13493.524474 + 30 +0.0 + 11 +4987.499992 + 21 +13515.175109 + 31 +0.0 + 0 +LINE + 5 +F90 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13558.476379 + 30 +0.0 + 11 +4949.999992 + 21 +13580.127014 + 31 +0.0 + 0 +LINE + 5 +F91 + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13623.428284 + 30 +0.0 + 11 +4920.0 + 21 +13632.088525 + 31 +0.0 + 0 +LINE + 5 +F92 + 8 +0 + 62 + 0 + 10 +7471.188011 + 20 +9170.0 + 30 +0.0 + 11 +7462.499992 + 21 +9185.04809 + 31 +0.0 + 0 +LINE + 5 +F93 + 8 +0 + 62 + 0 + 10 +7437.499992 + 20 +9228.34936 + 30 +0.0 + 11 +7424.999992 + 21 +9249.999995 + 31 +0.0 + 0 +LINE + 5 +F94 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13450.223204 + 30 +0.0 + 11 +4987.499992 + 21 +13471.873839 + 31 +0.0 + 0 +LINE + 5 +F95 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13515.175109 + 30 +0.0 + 11 +4949.999992 + 21 +13536.825744 + 31 +0.0 + 0 +LINE + 5 +F96 + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13580.127014 + 30 +0.0 + 11 +4920.0 + 21 +13588.787255 + 31 +0.0 + 0 +LINE + 5 +F97 + 8 +0 + 62 + 0 + 10 +7437.499992 + 20 +9185.04809 + 30 +0.0 + 11 +7424.999992 + 21 +9206.698725 + 31 +0.0 + 0 +LINE + 5 +F98 + 8 +0 + 62 + 0 + 10 +7399.999992 + 20 +9249.999995 + 30 +0.0 + 11 +7399.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +F99 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13406.921934 + 30 +0.0 + 11 +4987.499992 + 21 +13428.572569 + 31 +0.0 + 0 +LINE + 5 +F9A + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13471.873839 + 30 +0.0 + 11 +4949.999992 + 21 +13493.524474 + 31 +0.0 + 0 +LINE + 5 +F9B + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13536.825744 + 30 +0.0 + 11 +4920.0 + 21 +13545.485985 + 31 +0.0 + 0 +LINE + 5 +F9C + 8 +0 + 62 + 0 + 10 +7399.999992 + 20 +9206.698725 + 30 +0.0 + 11 +7387.499992 + 21 +9228.34936 + 31 +0.0 + 0 +LINE + 5 +F9D + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13363.620663 + 30 +0.0 + 11 +4987.499992 + 21 +13385.271299 + 31 +0.0 + 0 +LINE + 5 +F9E + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13428.572569 + 30 +0.0 + 11 +4949.999992 + 21 +13450.223204 + 31 +0.0 + 0 +LINE + 5 +F9F + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13493.524474 + 30 +0.0 + 11 +4920.0 + 21 +13502.184715 + 31 +0.0 + 0 +LINE + 5 +FA0 + 8 +0 + 62 + 0 + 10 +7396.188011 + 20 +9170.0 + 30 +0.0 + 11 +7387.499992 + 21 +9185.04809 + 31 +0.0 + 0 +LINE + 5 +FA1 + 8 +0 + 62 + 0 + 10 +7362.499992 + 20 +9228.34936 + 30 +0.0 + 11 +7349.999992 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FA2 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13320.319393 + 30 +0.0 + 11 +4987.499992 + 21 +13341.970028 + 31 +0.0 + 0 +LINE + 5 +FA3 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13385.271299 + 30 +0.0 + 11 +4949.999992 + 21 +13406.921934 + 31 +0.0 + 0 +LINE + 5 +FA4 + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13450.223204 + 30 +0.0 + 11 +4920.0 + 21 +13458.883445 + 31 +0.0 + 0 +LINE + 5 +FA5 + 8 +0 + 62 + 0 + 10 +7362.499992 + 20 +9185.04809 + 30 +0.0 + 11 +7349.999992 + 21 +9206.698725 + 31 +0.0 + 0 +LINE + 5 +FA6 + 8 +0 + 62 + 0 + 10 +7324.999992 + 20 +9249.999996 + 30 +0.0 + 11 +7324.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FA7 + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13277.018123 + 30 +0.0 + 11 +4987.499992 + 21 +13298.668758 + 31 +0.0 + 0 +LINE + 5 +FA8 + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13341.970028 + 30 +0.0 + 11 +4949.999992 + 21 +13363.620664 + 31 +0.0 + 0 +LINE + 5 +FA9 + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13406.921934 + 30 +0.0 + 11 +4920.0 + 21 +13415.582175 + 31 +0.0 + 0 +LINE + 5 +FAA + 8 +0 + 62 + 0 + 10 +7324.999992 + 20 +9206.698725 + 30 +0.0 + 11 +7312.499992 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FAB + 8 +0 + 62 + 0 + 10 +4999.999992 + 20 +13233.716853 + 30 +0.0 + 11 +4987.499992 + 21 +13255.367488 + 31 +0.0 + 0 +LINE + 5 +FAC + 8 +0 + 62 + 0 + 10 +4962.499992 + 20 +13298.668758 + 30 +0.0 + 11 +4949.999992 + 21 +13320.319393 + 31 +0.0 + 0 +LINE + 5 +FAD + 8 +0 + 62 + 0 + 10 +4924.999992 + 20 +13363.620664 + 30 +0.0 + 11 +4920.0 + 21 +13372.280905 + 31 +0.0 + 0 +LINE + 5 +FAE + 8 +0 + 62 + 0 + 10 +7321.188012 + 20 +9170.0 + 30 +0.0 + 11 +7312.499993 + 21 +9185.04809 + 31 +0.0 + 0 +LINE + 5 +FAF + 8 +0 + 62 + 0 + 10 +7287.499993 + 20 +9228.349361 + 30 +0.0 + 11 +7274.999993 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FB0 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +13190.415583 + 30 +0.0 + 11 +4987.499993 + 21 +13212.066218 + 31 +0.0 + 0 +LINE + 5 +FB1 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +13255.367488 + 30 +0.0 + 11 +4949.999993 + 21 +13277.018123 + 31 +0.0 + 0 +LINE + 5 +FB2 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13320.319393 + 30 +0.0 + 11 +4920.0 + 21 +13328.979635 + 31 +0.0 + 0 +LINE + 5 +FB3 + 8 +0 + 62 + 0 + 10 +7287.499993 + 20 +9185.04809 + 30 +0.0 + 11 +7274.999993 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +FB4 + 8 +0 + 62 + 0 + 10 +7249.999993 + 20 +9249.999996 + 30 +0.0 + 11 +7249.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FB5 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +13147.114313 + 30 +0.0 + 11 +4987.499993 + 21 +13168.764948 + 31 +0.0 + 0 +LINE + 5 +FB6 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +13212.066218 + 30 +0.0 + 11 +4949.999993 + 21 +13233.716853 + 31 +0.0 + 0 +LINE + 5 +FB7 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13277.018123 + 30 +0.0 + 11 +4920.0 + 21 +13285.678365 + 31 +0.0 + 0 +LINE + 5 +FB8 + 8 +0 + 62 + 0 + 10 +7249.999993 + 20 +9206.698726 + 30 +0.0 + 11 +7237.499993 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FB9 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +13103.813043 + 30 +0.0 + 11 +4987.499993 + 21 +13125.463678 + 31 +0.0 + 0 +LINE + 5 +FBA + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +13168.764948 + 30 +0.0 + 11 +4949.999993 + 21 +13190.415583 + 31 +0.0 + 0 +LINE + 5 +FBB + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13233.716853 + 30 +0.0 + 11 +4920.0 + 21 +13242.377095 + 31 +0.0 + 0 +LINE + 5 +FBC + 8 +0 + 62 + 0 + 10 +7246.188012 + 20 +9170.0 + 30 +0.0 + 11 +7237.499993 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +FBD + 8 +0 + 62 + 0 + 10 +7212.499993 + 20 +9228.349361 + 30 +0.0 + 11 +7199.999993 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FBE + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +13060.511772 + 30 +0.0 + 11 +4987.499993 + 21 +13082.162408 + 31 +0.0 + 0 +LINE + 5 +FBF + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +13125.463678 + 30 +0.0 + 11 +4949.999993 + 21 +13147.114313 + 31 +0.0 + 0 +LINE + 5 +FC0 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13190.415583 + 30 +0.0 + 11 +4920.0 + 21 +13199.075825 + 31 +0.0 + 0 +LINE + 5 +FC1 + 8 +0 + 62 + 0 + 10 +7212.499993 + 20 +9185.048091 + 30 +0.0 + 11 +7199.999993 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +FC2 + 8 +0 + 62 + 0 + 10 +7174.999993 + 20 +9249.999996 + 30 +0.0 + 11 +7174.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FC3 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +13017.210502 + 30 +0.0 + 11 +4987.499993 + 21 +13038.861137 + 31 +0.0 + 0 +LINE + 5 +FC4 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +13082.162408 + 30 +0.0 + 11 +4949.999993 + 21 +13103.813043 + 31 +0.0 + 0 +LINE + 5 +FC5 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13147.114313 + 30 +0.0 + 11 +4920.0 + 21 +13155.774555 + 31 +0.0 + 0 +LINE + 5 +FC6 + 8 +0 + 62 + 0 + 10 +7174.999993 + 20 +9206.698726 + 30 +0.0 + 11 +7162.499993 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FC7 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12973.909232 + 30 +0.0 + 11 +4987.499993 + 21 +12995.559867 + 31 +0.0 + 0 +LINE + 5 +FC8 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +13038.861137 + 30 +0.0 + 11 +4949.999993 + 21 +13060.511773 + 31 +0.0 + 0 +LINE + 5 +FC9 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13103.813043 + 30 +0.0 + 11 +4920.0 + 21 +13112.473285 + 31 +0.0 + 0 +LINE + 5 +FCA + 8 +0 + 62 + 0 + 10 +7171.188012 + 20 +9170.0 + 30 +0.0 + 11 +7162.499993 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +FCB + 8 +0 + 62 + 0 + 10 +7137.499993 + 20 +9228.349361 + 30 +0.0 + 11 +7124.999993 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FCC + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12930.607962 + 30 +0.0 + 11 +4987.499993 + 21 +12952.258597 + 31 +0.0 + 0 +LINE + 5 +FCD + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +12995.559867 + 30 +0.0 + 11 +4949.999993 + 21 +13017.210502 + 31 +0.0 + 0 +LINE + 5 +FCE + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13060.511773 + 30 +0.0 + 11 +4920.0 + 21 +13069.172015 + 31 +0.0 + 0 +LINE + 5 +FCF + 8 +0 + 62 + 0 + 10 +7137.499993 + 20 +9185.048091 + 30 +0.0 + 11 +7124.999993 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +FD0 + 8 +0 + 62 + 0 + 10 +7099.999993 + 20 +9249.999996 + 30 +0.0 + 11 +7099.999991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FD1 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12887.306692 + 30 +0.0 + 11 +4987.499993 + 21 +12908.957327 + 31 +0.0 + 0 +LINE + 5 +FD2 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +12952.258597 + 30 +0.0 + 11 +4949.999993 + 21 +12973.909232 + 31 +0.0 + 0 +LINE + 5 +FD3 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +13017.210502 + 30 +0.0 + 11 +4920.0 + 21 +13025.870745 + 31 +0.0 + 0 +LINE + 5 +FD4 + 8 +0 + 62 + 0 + 10 +7099.999993 + 20 +9206.698726 + 30 +0.0 + 11 +7087.499993 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FD5 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12844.005422 + 30 +0.0 + 11 +4987.499993 + 21 +12865.656057 + 31 +0.0 + 0 +LINE + 5 +FD6 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +12908.957327 + 30 +0.0 + 11 +4949.999993 + 21 +12930.607962 + 31 +0.0 + 0 +LINE + 5 +FD7 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +12973.909232 + 30 +0.0 + 11 +4920.0 + 21 +12982.569475 + 31 +0.0 + 0 +LINE + 5 +FD8 + 8 +0 + 62 + 0 + 10 +7096.188013 + 20 +9170.0 + 30 +0.0 + 11 +7087.499993 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +FD9 + 8 +0 + 62 + 0 + 10 +7062.499993 + 20 +9228.349361 + 30 +0.0 + 11 +7049.999993 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FDA + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12800.704152 + 30 +0.0 + 11 +4987.499993 + 21 +12822.354787 + 31 +0.0 + 0 +LINE + 5 +FDB + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +12865.656057 + 30 +0.0 + 11 +4949.999993 + 21 +12887.306692 + 31 +0.0 + 0 +LINE + 5 +FDC + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +12930.607962 + 30 +0.0 + 11 +4920.0 + 21 +12939.268205 + 31 +0.0 + 0 +LINE + 5 +FDD + 8 +0 + 62 + 0 + 10 +7062.499993 + 20 +9185.048091 + 30 +0.0 + 11 +7049.999993 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +FDE + 8 +0 + 62 + 0 + 10 +7024.999993 + 20 +9249.999996 + 30 +0.0 + 11 +7024.999991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FDF + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12757.402881 + 30 +0.0 + 11 +4987.499993 + 21 +12779.053517 + 31 +0.0 + 0 +LINE + 5 +FE0 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +12822.354787 + 30 +0.0 + 11 +4949.999993 + 21 +12844.005422 + 31 +0.0 + 0 +LINE + 5 +FE1 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +12887.306692 + 30 +0.0 + 11 +4920.0 + 21 +12895.966935 + 31 +0.0 + 0 +LINE + 5 +FE2 + 8 +0 + 62 + 0 + 10 +7024.999993 + 20 +9206.698726 + 30 +0.0 + 11 +7012.499993 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FE3 + 8 +0 + 62 + 0 + 10 +4999.999993 + 20 +12714.101611 + 30 +0.0 + 11 +4987.499993 + 21 +12735.752246 + 31 +0.0 + 0 +LINE + 5 +FE4 + 8 +0 + 62 + 0 + 10 +4962.499993 + 20 +12779.053517 + 30 +0.0 + 11 +4949.999993 + 21 +12800.704152 + 31 +0.0 + 0 +LINE + 5 +FE5 + 8 +0 + 62 + 0 + 10 +4924.999993 + 20 +12844.005422 + 30 +0.0 + 11 +4920.0 + 21 +12852.665665 + 31 +0.0 + 0 +LINE + 5 +FE6 + 8 +0 + 62 + 0 + 10 +7021.188013 + 20 +9170.0 + 30 +0.0 + 11 +7012.499994 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +FE7 + 8 +0 + 62 + 0 + 10 +6987.499994 + 20 +9228.349361 + 30 +0.0 + 11 +6974.999994 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FE8 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12670.800341 + 30 +0.0 + 11 +4987.499994 + 21 +12692.450976 + 31 +0.0 + 0 +LINE + 5 +FE9 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12735.752246 + 30 +0.0 + 11 +4949.999994 + 21 +12757.402882 + 31 +0.0 + 0 +LINE + 5 +FEA + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12800.704152 + 30 +0.0 + 11 +4920.0 + 21 +12809.364395 + 31 +0.0 + 0 +LINE + 5 +FEB + 8 +0 + 62 + 0 + 10 +6987.499994 + 20 +9185.048091 + 30 +0.0 + 11 +6974.999994 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +FEC + 8 +0 + 62 + 0 + 10 +6949.999994 + 20 +9249.999996 + 30 +0.0 + 11 +6949.999991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FED + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12627.499071 + 30 +0.0 + 11 +4987.499994 + 21 +12649.149706 + 31 +0.0 + 0 +LINE + 5 +FEE + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12692.450976 + 30 +0.0 + 11 +4949.999994 + 21 +12714.101611 + 31 +0.0 + 0 +LINE + 5 +FEF + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12757.402882 + 30 +0.0 + 11 +4920.0 + 21 +12766.063125 + 31 +0.0 + 0 +LINE + 5 +FF0 + 8 +0 + 62 + 0 + 10 +6949.999994 + 20 +9206.698726 + 30 +0.0 + 11 +6937.499994 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FF1 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12584.197801 + 30 +0.0 + 11 +4987.499994 + 21 +12605.848436 + 31 +0.0 + 0 +LINE + 5 +FF2 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12649.149706 + 30 +0.0 + 11 +4949.999994 + 21 +12670.800341 + 31 +0.0 + 0 +LINE + 5 +FF3 + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12714.101611 + 30 +0.0 + 11 +4920.0 + 21 +12722.761855 + 31 +0.0 + 0 +LINE + 5 +FF4 + 8 +0 + 62 + 0 + 10 +6946.188013 + 20 +9170.0 + 30 +0.0 + 11 +6937.499994 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +FF5 + 8 +0 + 62 + 0 + 10 +6912.499994 + 20 +9228.349361 + 30 +0.0 + 11 +6899.999994 + 21 +9249.999996 + 31 +0.0 + 0 +LINE + 5 +FF6 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12540.896531 + 30 +0.0 + 11 +4987.499994 + 21 +12562.547166 + 31 +0.0 + 0 +LINE + 5 +FF7 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12605.848436 + 30 +0.0 + 11 +4949.999994 + 21 +12627.499071 + 31 +0.0 + 0 +LINE + 5 +FF8 + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12670.800341 + 30 +0.0 + 11 +4920.0 + 21 +12679.460585 + 31 +0.0 + 0 +LINE + 5 +FF9 + 8 +0 + 62 + 0 + 10 +6912.499994 + 20 +9185.048091 + 30 +0.0 + 11 +6899.999994 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +FFA + 8 +0 + 62 + 0 + 10 +6874.999994 + 20 +9249.999996 + 30 +0.0 + 11 +6874.999992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +FFB + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12497.595261 + 30 +0.0 + 11 +4987.499994 + 21 +12519.245896 + 31 +0.0 + 0 +LINE + 5 +FFC + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12562.547166 + 30 +0.0 + 11 +4949.999994 + 21 +12584.197801 + 31 +0.0 + 0 +LINE + 5 +FFD + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12627.499071 + 30 +0.0 + 11 +4920.0 + 21 +12636.159315 + 31 +0.0 + 0 +LINE + 5 +FFE + 8 +0 + 62 + 0 + 10 +6874.999994 + 20 +9206.698726 + 30 +0.0 + 11 +6862.499994 + 21 +9228.349361 + 31 +0.0 + 0 +LINE + 5 +FFF + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12454.293991 + 30 +0.0 + 11 +4987.499994 + 21 +12475.944626 + 31 +0.0 + 0 +LINE + 5 +1000 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12519.245896 + 30 +0.0 + 11 +4949.999994 + 21 +12540.896531 + 31 +0.0 + 0 +LINE + 5 +1001 + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12584.197801 + 30 +0.0 + 11 +4920.0 + 21 +12592.858045 + 31 +0.0 + 0 +LINE + 5 +1002 + 8 +0 + 62 + 0 + 10 +6871.188014 + 20 +9170.0 + 30 +0.0 + 11 +6862.499994 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +1003 + 8 +0 + 62 + 0 + 10 +6837.499994 + 20 +9228.349361 + 30 +0.0 + 11 +6824.999994 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +1004 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12410.99272 + 30 +0.0 + 11 +4987.499994 + 21 +12432.643355 + 31 +0.0 + 0 +LINE + 5 +1005 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12475.944626 + 30 +0.0 + 11 +4949.999994 + 21 +12497.595261 + 31 +0.0 + 0 +LINE + 5 +1006 + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12540.896531 + 30 +0.0 + 11 +4920.0 + 21 +12549.556775 + 31 +0.0 + 0 +LINE + 5 +1007 + 8 +0 + 62 + 0 + 10 +6837.499994 + 20 +9185.048091 + 30 +0.0 + 11 +6824.999994 + 21 +9206.698726 + 31 +0.0 + 0 +LINE + 5 +1008 + 8 +0 + 62 + 0 + 10 +6799.999994 + 20 +9249.999997 + 30 +0.0 + 11 +6799.999992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1009 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12367.69145 + 30 +0.0 + 11 +4987.499994 + 21 +12389.342085 + 31 +0.0 + 0 +LINE + 5 +100A + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12432.643356 + 30 +0.0 + 11 +4949.999994 + 21 +12454.293991 + 31 +0.0 + 0 +LINE + 5 +100B + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12497.595261 + 30 +0.0 + 11 +4920.0 + 21 +12506.255505 + 31 +0.0 + 0 +LINE + 5 +100C + 8 +0 + 62 + 0 + 10 +6799.999994 + 20 +9206.698726 + 30 +0.0 + 11 +6787.499994 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +100D + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12324.39018 + 30 +0.0 + 11 +4987.499994 + 21 +12346.040815 + 31 +0.0 + 0 +LINE + 5 +100E + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12389.342085 + 30 +0.0 + 11 +4949.999994 + 21 +12410.99272 + 31 +0.0 + 0 +LINE + 5 +100F + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12454.293991 + 30 +0.0 + 11 +4920.0 + 21 +12462.954235 + 31 +0.0 + 0 +LINE + 5 +1010 + 8 +0 + 62 + 0 + 10 +6796.188014 + 20 +9170.0 + 30 +0.0 + 11 +6787.499994 + 21 +9185.048091 + 31 +0.0 + 0 +LINE + 5 +1011 + 8 +0 + 62 + 0 + 10 +6762.499994 + 20 +9228.349362 + 30 +0.0 + 11 +6749.999994 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +1012 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12281.08891 + 30 +0.0 + 11 +4987.499994 + 21 +12302.739545 + 31 +0.0 + 0 +LINE + 5 +1013 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12346.040815 + 30 +0.0 + 11 +4949.999994 + 21 +12367.69145 + 31 +0.0 + 0 +LINE + 5 +1014 + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12410.992721 + 30 +0.0 + 11 +4920.0 + 21 +12419.652965 + 31 +0.0 + 0 +LINE + 5 +1015 + 8 +0 + 62 + 0 + 10 +6762.499994 + 20 +9185.048091 + 30 +0.0 + 11 +6749.999994 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +1016 + 8 +0 + 62 + 0 + 10 +6724.999994 + 20 +9249.999997 + 30 +0.0 + 11 +6724.999992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1017 + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12237.78764 + 30 +0.0 + 11 +4987.499994 + 21 +12259.438275 + 31 +0.0 + 0 +LINE + 5 +1018 + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12302.739545 + 30 +0.0 + 11 +4949.999994 + 21 +12324.39018 + 31 +0.0 + 0 +LINE + 5 +1019 + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12367.69145 + 30 +0.0 + 11 +4920.0 + 21 +12376.351695 + 31 +0.0 + 0 +LINE + 5 +101A + 8 +0 + 62 + 0 + 10 +6724.999994 + 20 +9206.698727 + 30 +0.0 + 11 +6712.499994 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +101B + 8 +0 + 62 + 0 + 10 +4999.999994 + 20 +12194.48637 + 30 +0.0 + 11 +4987.499994 + 21 +12216.137005 + 31 +0.0 + 0 +LINE + 5 +101C + 8 +0 + 62 + 0 + 10 +4962.499994 + 20 +12259.438275 + 30 +0.0 + 11 +4949.999994 + 21 +12281.08891 + 31 +0.0 + 0 +LINE + 5 +101D + 8 +0 + 62 + 0 + 10 +4924.999994 + 20 +12324.39018 + 30 +0.0 + 11 +4920.0 + 21 +12333.050425 + 31 +0.0 + 0 +LINE + 5 +101E + 8 +0 + 62 + 0 + 10 +6721.188014 + 20 +9170.0 + 30 +0.0 + 11 +6712.499995 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +101F + 8 +0 + 62 + 0 + 10 +6687.499995 + 20 +9228.349362 + 30 +0.0 + 11 +6674.999995 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +1020 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +12151.1851 + 30 +0.0 + 11 +4987.499995 + 21 +12172.835735 + 31 +0.0 + 0 +LINE + 5 +1021 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +12216.137005 + 30 +0.0 + 11 +4949.999995 + 21 +12237.78764 + 31 +0.0 + 0 +LINE + 5 +1022 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12281.08891 + 30 +0.0 + 11 +4920.0 + 21 +12289.749155 + 31 +0.0 + 0 +LINE + 5 +1023 + 8 +0 + 62 + 0 + 10 +6687.499995 + 20 +9185.048092 + 30 +0.0 + 11 +6674.999995 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +1024 + 8 +0 + 62 + 0 + 10 +6649.999995 + 20 +9249.999997 + 30 +0.0 + 11 +6649.999993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1025 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +12107.883829 + 30 +0.0 + 11 +4987.499995 + 21 +12129.534464 + 31 +0.0 + 0 +LINE + 5 +1026 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +12172.835735 + 30 +0.0 + 11 +4949.999995 + 21 +12194.48637 + 31 +0.0 + 0 +LINE + 5 +1027 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12237.78764 + 30 +0.0 + 11 +4920.0 + 21 +12246.447885 + 31 +0.0 + 0 +LINE + 5 +1028 + 8 +0 + 62 + 0 + 10 +6649.999995 + 20 +9206.698727 + 30 +0.0 + 11 +6637.499995 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +1029 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +12064.582559 + 30 +0.0 + 11 +4987.499995 + 21 +12086.233194 + 31 +0.0 + 0 +LINE + 5 +102A + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +12129.534465 + 30 +0.0 + 11 +4949.999995 + 21 +12151.1851 + 31 +0.0 + 0 +LINE + 5 +102B + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12194.48637 + 30 +0.0 + 11 +4920.0 + 21 +12203.146615 + 31 +0.0 + 0 +LINE + 5 +102C + 8 +0 + 62 + 0 + 10 +6646.188015 + 20 +9170.0 + 30 +0.0 + 11 +6637.499995 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +102D + 8 +0 + 62 + 0 + 10 +6612.499995 + 20 +9228.349362 + 30 +0.0 + 11 +6599.999995 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +102E + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +12021.281289 + 30 +0.0 + 11 +4987.499995 + 21 +12042.931924 + 31 +0.0 + 0 +LINE + 5 +102F + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +12086.233194 + 30 +0.0 + 11 +4949.999995 + 21 +12107.883829 + 31 +0.0 + 0 +LINE + 5 +1030 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12151.1851 + 30 +0.0 + 11 +4920.0 + 21 +12159.845345 + 31 +0.0 + 0 +LINE + 5 +1031 + 8 +0 + 62 + 0 + 10 +6612.499995 + 20 +9185.048092 + 30 +0.0 + 11 +6599.999995 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +1032 + 8 +0 + 62 + 0 + 10 +6574.999995 + 20 +9249.999997 + 30 +0.0 + 11 +6574.999993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1033 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11977.980019 + 30 +0.0 + 11 +4987.499995 + 21 +11999.630654 + 31 +0.0 + 0 +LINE + 5 +1034 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +12042.931924 + 30 +0.0 + 11 +4949.999995 + 21 +12064.582559 + 31 +0.0 + 0 +LINE + 5 +1035 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12107.88383 + 30 +0.0 + 11 +4920.0 + 21 +12116.544075 + 31 +0.0 + 0 +LINE + 5 +1036 + 8 +0 + 62 + 0 + 10 +6574.999995 + 20 +9206.698727 + 30 +0.0 + 11 +6562.499995 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +1037 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11934.678749 + 30 +0.0 + 11 +4987.499995 + 21 +11956.329384 + 31 +0.0 + 0 +LINE + 5 +1038 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11999.630654 + 30 +0.0 + 11 +4949.999995 + 21 +12021.281289 + 31 +0.0 + 0 +LINE + 5 +1039 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12064.582559 + 30 +0.0 + 11 +4920.0 + 21 +12073.242805 + 31 +0.0 + 0 +LINE + 5 +103A + 8 +0 + 62 + 0 + 10 +6571.188015 + 20 +9170.0 + 30 +0.0 + 11 +6562.499995 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +103B + 8 +0 + 62 + 0 + 10 +6537.499995 + 20 +9228.349362 + 30 +0.0 + 11 +6524.999995 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +103C + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11891.377479 + 30 +0.0 + 11 +4987.499995 + 21 +11913.028114 + 31 +0.0 + 0 +LINE + 5 +103D + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11956.329384 + 30 +0.0 + 11 +4949.999995 + 21 +11977.980019 + 31 +0.0 + 0 +LINE + 5 +103E + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +12021.281289 + 30 +0.0 + 11 +4920.0 + 21 +12029.941535 + 31 +0.0 + 0 +LINE + 5 +103F + 8 +0 + 62 + 0 + 10 +6537.499995 + 20 +9185.048092 + 30 +0.0 + 11 +6524.999995 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +1040 + 8 +0 + 62 + 0 + 10 +6499.999995 + 20 +9249.999997 + 30 +0.0 + 11 +6499.999993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1041 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11848.076209 + 30 +0.0 + 11 +4987.499995 + 21 +11869.726844 + 31 +0.0 + 0 +LINE + 5 +1042 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11913.028114 + 30 +0.0 + 11 +4949.999995 + 21 +11934.678749 + 31 +0.0 + 0 +LINE + 5 +1043 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +11977.980019 + 30 +0.0 + 11 +4920.0 + 21 +11986.640265 + 31 +0.0 + 0 +LINE + 5 +1044 + 8 +0 + 62 + 0 + 10 +6499.999995 + 20 +9206.698727 + 30 +0.0 + 11 +6487.499995 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +1045 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11804.774938 + 30 +0.0 + 11 +4987.499995 + 21 +11826.425573 + 31 +0.0 + 0 +LINE + 5 +1046 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11869.726844 + 30 +0.0 + 11 +4949.999995 + 21 +11891.377479 + 31 +0.0 + 0 +LINE + 5 +1047 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +11934.678749 + 30 +0.0 + 11 +4920.0 + 21 +11943.338995 + 31 +0.0 + 0 +LINE + 5 +1048 + 8 +0 + 62 + 0 + 10 +6496.188015 + 20 +9170.0 + 30 +0.0 + 11 +6487.499995 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +1049 + 8 +0 + 62 + 0 + 10 +6462.499995 + 20 +9228.349362 + 30 +0.0 + 11 +6449.999995 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +104A + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11761.473668 + 30 +0.0 + 11 +4987.499995 + 21 +11783.124303 + 31 +0.0 + 0 +LINE + 5 +104B + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11826.425574 + 30 +0.0 + 11 +4949.999995 + 21 +11848.076209 + 31 +0.0 + 0 +LINE + 5 +104C + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +11891.377479 + 30 +0.0 + 11 +4920.0 + 21 +11900.037725 + 31 +0.0 + 0 +LINE + 5 +104D + 8 +0 + 62 + 0 + 10 +6462.499995 + 20 +9185.048092 + 30 +0.0 + 11 +6449.999995 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +104E + 8 +0 + 62 + 0 + 10 +6424.999995 + 20 +9249.999997 + 30 +0.0 + 11 +6424.999994 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +104F + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11718.172398 + 30 +0.0 + 11 +4987.499995 + 21 +11739.823033 + 31 +0.0 + 0 +LINE + 5 +1050 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11783.124303 + 30 +0.0 + 11 +4949.999995 + 21 +11804.774938 + 31 +0.0 + 0 +LINE + 5 +1051 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +11848.076209 + 30 +0.0 + 11 +4920.0 + 21 +11856.736455 + 31 +0.0 + 0 +LINE + 5 +1052 + 8 +0 + 62 + 0 + 10 +6424.999995 + 20 +9206.698727 + 30 +0.0 + 11 +6412.499995 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +1053 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11674.871128 + 30 +0.0 + 11 +4987.499995 + 21 +11696.521763 + 31 +0.0 + 0 +LINE + 5 +1054 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11739.823033 + 30 +0.0 + 11 +4949.999995 + 21 +11761.473668 + 31 +0.0 + 0 +LINE + 5 +1055 + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +11804.774939 + 30 +0.0 + 11 +4920.0 + 21 +11813.435185 + 31 +0.0 + 0 +LINE + 5 +1056 + 8 +0 + 62 + 0 + 10 +6421.188016 + 20 +9170.0 + 30 +0.0 + 11 +6412.499995 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +1057 + 8 +0 + 62 + 0 + 10 +6387.499995 + 20 +9228.349362 + 30 +0.0 + 11 +6374.999995 + 21 +9249.999997 + 31 +0.0 + 0 +LINE + 5 +1058 + 8 +0 + 62 + 0 + 10 +4999.999995 + 20 +11631.569858 + 30 +0.0 + 11 +4987.499995 + 21 +11653.220493 + 31 +0.0 + 0 +LINE + 5 +1059 + 8 +0 + 62 + 0 + 10 +4962.499995 + 20 +11696.521763 + 30 +0.0 + 11 +4949.999995 + 21 +11718.172398 + 31 +0.0 + 0 +LINE + 5 +105A + 8 +0 + 62 + 0 + 10 +4924.999995 + 20 +11761.473668 + 30 +0.0 + 11 +4920.0 + 21 +11770.133915 + 31 +0.0 + 0 +LINE + 5 +105B + 8 +0 + 62 + 0 + 10 +6387.499996 + 20 +9185.048092 + 30 +0.0 + 11 +6374.999996 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +105C + 8 +0 + 62 + 0 + 10 +6349.999996 + 20 +9249.999997 + 30 +0.0 + 11 +6349.999994 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +105D + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11588.268588 + 30 +0.0 + 11 +4987.499996 + 21 +11609.919223 + 31 +0.0 + 0 +LINE + 5 +105E + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11653.220493 + 30 +0.0 + 11 +4949.999996 + 21 +11674.871128 + 31 +0.0 + 0 +LINE + 5 +105F + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11718.172398 + 30 +0.0 + 11 +4920.0 + 21 +11726.832645 + 31 +0.0 + 0 +LINE + 5 +1060 + 8 +0 + 62 + 0 + 10 +6349.999996 + 20 +9206.698727 + 30 +0.0 + 11 +6337.499996 + 21 +9228.349362 + 31 +0.0 + 0 +LINE + 5 +1061 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11544.967318 + 30 +0.0 + 11 +4987.499996 + 21 +11566.617953 + 31 +0.0 + 0 +LINE + 5 +1062 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11609.919223 + 30 +0.0 + 11 +4949.999996 + 21 +11631.569858 + 31 +0.0 + 0 +LINE + 5 +1063 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11674.871128 + 30 +0.0 + 11 +4920.0 + 21 +11683.531375 + 31 +0.0 + 0 +LINE + 5 +1064 + 8 +0 + 62 + 0 + 10 +6346.188016 + 20 +9170.0 + 30 +0.0 + 11 +6337.499996 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +1065 + 8 +0 + 62 + 0 + 10 +6312.499996 + 20 +9228.349362 + 30 +0.0 + 11 +6299.999996 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +1066 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11501.666047 + 30 +0.0 + 11 +4987.499996 + 21 +11523.316682 + 31 +0.0 + 0 +LINE + 5 +1067 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11566.617953 + 30 +0.0 + 11 +4949.999996 + 21 +11588.268588 + 31 +0.0 + 0 +LINE + 5 +1068 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11631.569858 + 30 +0.0 + 11 +4920.0 + 21 +11640.230105 + 31 +0.0 + 0 +LINE + 5 +1069 + 8 +0 + 62 + 0 + 10 +6312.499996 + 20 +9185.048092 + 30 +0.0 + 11 +6299.999996 + 21 +9206.698727 + 31 +0.0 + 0 +LINE + 5 +106A + 8 +0 + 62 + 0 + 10 +6274.999996 + 20 +9249.999998 + 30 +0.0 + 11 +6274.999994 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +106B + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11458.364777 + 30 +0.0 + 11 +4987.499996 + 21 +11480.015412 + 31 +0.0 + 0 +LINE + 5 +106C + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11523.316683 + 30 +0.0 + 11 +4949.999996 + 21 +11544.967318 + 31 +0.0 + 0 +LINE + 5 +106D + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11588.268588 + 30 +0.0 + 11 +4920.0 + 21 +11596.928835 + 31 +0.0 + 0 +LINE + 5 +106E + 8 +0 + 62 + 0 + 10 +6274.999996 + 20 +9206.698727 + 30 +0.0 + 11 +6262.499996 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +106F + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11415.063507 + 30 +0.0 + 11 +4987.499996 + 21 +11436.714142 + 31 +0.0 + 0 +LINE + 5 +1070 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11480.015412 + 30 +0.0 + 11 +4949.999996 + 21 +11501.666047 + 31 +0.0 + 0 +LINE + 5 +1071 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11544.967318 + 30 +0.0 + 11 +4920.0 + 21 +11553.627565 + 31 +0.0 + 0 +LINE + 5 +1072 + 8 +0 + 62 + 0 + 10 +6271.188016 + 20 +9170.0 + 30 +0.0 + 11 +6262.499996 + 21 +9185.048092 + 31 +0.0 + 0 +LINE + 5 +1073 + 8 +0 + 62 + 0 + 10 +6237.499996 + 20 +9228.349363 + 30 +0.0 + 11 +6224.999996 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +1074 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11371.762237 + 30 +0.0 + 11 +4987.499996 + 21 +11393.412872 + 31 +0.0 + 0 +LINE + 5 +1075 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11436.714142 + 30 +0.0 + 11 +4949.999996 + 21 +11458.364777 + 31 +0.0 + 0 +LINE + 5 +1076 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11501.666048 + 30 +0.0 + 11 +4920.0 + 21 +11510.326295 + 31 +0.0 + 0 +LINE + 5 +1077 + 8 +0 + 62 + 0 + 10 +6237.499996 + 20 +9185.048092 + 30 +0.0 + 11 +6224.999996 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +1078 + 8 +0 + 62 + 0 + 10 +6199.999996 + 20 +9249.999998 + 30 +0.0 + 11 +6199.999995 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1079 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11328.460967 + 30 +0.0 + 11 +4987.499996 + 21 +11350.111602 + 31 +0.0 + 0 +LINE + 5 +107A + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11393.412872 + 30 +0.0 + 11 +4949.999996 + 21 +11415.063507 + 31 +0.0 + 0 +LINE + 5 +107B + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11458.364777 + 30 +0.0 + 11 +4920.0 + 21 +11467.025025 + 31 +0.0 + 0 +LINE + 5 +107C + 8 +0 + 62 + 0 + 10 +6199.999996 + 20 +9206.698728 + 30 +0.0 + 11 +6187.499996 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +107D + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11285.159697 + 30 +0.0 + 11 +4987.499996 + 21 +11306.810332 + 31 +0.0 + 0 +LINE + 5 +107E + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11350.111602 + 30 +0.0 + 11 +4949.999996 + 21 +11371.762237 + 31 +0.0 + 0 +LINE + 5 +107F + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11415.063507 + 30 +0.0 + 11 +4920.0 + 21 +11423.723755 + 31 +0.0 + 0 +LINE + 5 +1080 + 8 +0 + 62 + 0 + 10 +6196.188017 + 20 +9170.0 + 30 +0.0 + 11 +6187.499996 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +1081 + 8 +0 + 62 + 0 + 10 +6162.499996 + 20 +9228.349363 + 30 +0.0 + 11 +6149.999996 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +1082 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11241.858427 + 30 +0.0 + 11 +4987.499996 + 21 +11263.509062 + 31 +0.0 + 0 +LINE + 5 +1083 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11306.810332 + 30 +0.0 + 11 +4949.999996 + 21 +11328.460967 + 31 +0.0 + 0 +LINE + 5 +1084 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11371.762237 + 30 +0.0 + 11 +4920.0 + 21 +11380.422485 + 31 +0.0 + 0 +LINE + 5 +1085 + 8 +0 + 62 + 0 + 10 +6162.499996 + 20 +9185.048093 + 30 +0.0 + 11 +6149.999996 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +1086 + 8 +0 + 62 + 0 + 10 +6124.999996 + 20 +9249.999998 + 30 +0.0 + 11 +6124.999995 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1087 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11198.557156 + 30 +0.0 + 11 +4987.499996 + 21 +11220.207791 + 31 +0.0 + 0 +LINE + 5 +1088 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11263.509062 + 30 +0.0 + 11 +4949.999996 + 21 +11285.159697 + 31 +0.0 + 0 +LINE + 5 +1089 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11328.460967 + 30 +0.0 + 11 +4920.0 + 21 +11337.121215 + 31 +0.0 + 0 +LINE + 5 +108A + 8 +0 + 62 + 0 + 10 +6124.999996 + 20 +9206.698728 + 30 +0.0 + 11 +6112.499996 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +108B + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11155.255886 + 30 +0.0 + 11 +4987.499996 + 21 +11176.906521 + 31 +0.0 + 0 +LINE + 5 +108C + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11220.207792 + 30 +0.0 + 11 +4949.999996 + 21 +11241.858427 + 31 +0.0 + 0 +LINE + 5 +108D + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11285.159697 + 30 +0.0 + 11 +4920.0 + 21 +11293.819945 + 31 +0.0 + 0 +LINE + 5 +108E + 8 +0 + 62 + 0 + 10 +6121.188017 + 20 +9170.0 + 30 +0.0 + 11 +6112.499996 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +108F + 8 +0 + 62 + 0 + 10 +6087.499996 + 20 +9228.349363 + 30 +0.0 + 11 +6074.999996 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +1090 + 8 +0 + 62 + 0 + 10 +4999.999996 + 20 +11111.954616 + 30 +0.0 + 11 +4987.499996 + 21 +11133.605251 + 31 +0.0 + 0 +LINE + 5 +1091 + 8 +0 + 62 + 0 + 10 +4962.499996 + 20 +11176.906521 + 30 +0.0 + 11 +4949.999996 + 21 +11198.557156 + 31 +0.0 + 0 +LINE + 5 +1092 + 8 +0 + 62 + 0 + 10 +4924.999996 + 20 +11241.858427 + 30 +0.0 + 11 +4920.0 + 21 +11250.518675 + 31 +0.0 + 0 +LINE + 5 +1093 + 8 +0 + 62 + 0 + 10 +6087.499997 + 20 +9185.048093 + 30 +0.0 + 11 +6074.999997 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +1094 + 8 +0 + 62 + 0 + 10 +6049.999997 + 20 +9249.999998 + 30 +0.0 + 11 +6049.999995 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1095 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +11068.653346 + 30 +0.0 + 11 +4987.499997 + 21 +11090.303981 + 31 +0.0 + 0 +LINE + 5 +1096 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +11133.605251 + 30 +0.0 + 11 +4949.999997 + 21 +11155.255886 + 31 +0.0 + 0 +LINE + 5 +1097 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +11198.557157 + 30 +0.0 + 11 +4920.0 + 21 +11207.217405 + 31 +0.0 + 0 +LINE + 5 +1098 + 8 +0 + 62 + 0 + 10 +6049.999997 + 20 +9206.698728 + 30 +0.0 + 11 +6037.499997 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +1099 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +11025.352076 + 30 +0.0 + 11 +4987.499997 + 21 +11047.002711 + 31 +0.0 + 0 +LINE + 5 +109A + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +11090.303981 + 30 +0.0 + 11 +4949.999997 + 21 +11111.954616 + 31 +0.0 + 0 +LINE + 5 +109B + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +11155.255886 + 30 +0.0 + 11 +4920.0 + 21 +11163.916135 + 31 +0.0 + 0 +LINE + 5 +109C + 8 +0 + 62 + 0 + 10 +6046.188017 + 20 +9170.0 + 30 +0.0 + 11 +6037.499997 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +109D + 8 +0 + 62 + 0 + 10 +6012.499997 + 20 +9228.349363 + 30 +0.0 + 11 +5999.999997 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +109E + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10982.050806 + 30 +0.0 + 11 +4987.499997 + 21 +11003.701441 + 31 +0.0 + 0 +LINE + 5 +109F + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +11047.002711 + 30 +0.0 + 11 +4949.999997 + 21 +11068.653346 + 31 +0.0 + 0 +LINE + 5 +10A0 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +11111.954616 + 30 +0.0 + 11 +4920.0 + 21 +11120.614865 + 31 +0.0 + 0 +LINE + 5 +10A1 + 8 +0 + 62 + 0 + 10 +6012.499997 + 20 +9185.048093 + 30 +0.0 + 11 +5999.999997 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +10A2 + 8 +0 + 62 + 0 + 10 +5974.999997 + 20 +9249.999998 + 30 +0.0 + 11 +5974.999996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10A3 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10938.749536 + 30 +0.0 + 11 +4987.499997 + 21 +10960.400171 + 31 +0.0 + 0 +LINE + 5 +10A4 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +11003.701441 + 30 +0.0 + 11 +4949.999997 + 21 +11025.352076 + 31 +0.0 + 0 +LINE + 5 +10A5 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +11068.653346 + 30 +0.0 + 11 +4920.0 + 21 +11077.313595 + 31 +0.0 + 0 +LINE + 5 +10A6 + 8 +0 + 62 + 0 + 10 +5974.999997 + 20 +9206.698728 + 30 +0.0 + 11 +5962.499997 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +10A7 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10895.448265 + 30 +0.0 + 11 +4987.499997 + 21 +10917.0989 + 31 +0.0 + 0 +LINE + 5 +10A8 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10960.400171 + 30 +0.0 + 11 +4949.999997 + 21 +10982.050806 + 31 +0.0 + 0 +LINE + 5 +10A9 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +11025.352076 + 30 +0.0 + 11 +4920.0 + 21 +11034.012325 + 31 +0.0 + 0 +LINE + 5 +10AA + 8 +0 + 62 + 0 + 10 +5971.188017 + 20 +9170.0 + 30 +0.0 + 11 +5962.499997 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +10AB + 8 +0 + 62 + 0 + 10 +5937.499997 + 20 +9228.349363 + 30 +0.0 + 11 +5924.999997 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +10AC + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10852.146995 + 30 +0.0 + 11 +4987.499997 + 21 +10873.79763 + 31 +0.0 + 0 +LINE + 5 +10AD + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10917.098901 + 30 +0.0 + 11 +4949.999997 + 21 +10938.749536 + 31 +0.0 + 0 +LINE + 5 +10AE + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10982.050806 + 30 +0.0 + 11 +4920.0 + 21 +10990.711055 + 31 +0.0 + 0 +LINE + 5 +10AF + 8 +0 + 62 + 0 + 10 +5937.499997 + 20 +9185.048093 + 30 +0.0 + 11 +5924.999997 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +10B0 + 8 +0 + 62 + 0 + 10 +5899.999997 + 20 +9249.999998 + 30 +0.0 + 11 +5899.999996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10B1 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10808.845725 + 30 +0.0 + 11 +4987.499997 + 21 +10830.49636 + 31 +0.0 + 0 +LINE + 5 +10B2 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10873.79763 + 30 +0.0 + 11 +4949.999997 + 21 +10895.448265 + 31 +0.0 + 0 +LINE + 5 +10B3 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10938.749536 + 30 +0.0 + 11 +4920.0 + 21 +10947.409785 + 31 +0.0 + 0 +LINE + 5 +10B4 + 8 +0 + 62 + 0 + 10 +5899.999997 + 20 +9206.698728 + 30 +0.0 + 11 +5887.499997 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +10B5 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10765.544455 + 30 +0.0 + 11 +4987.499997 + 21 +10787.19509 + 31 +0.0 + 0 +LINE + 5 +10B6 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10830.49636 + 30 +0.0 + 11 +4949.999997 + 21 +10852.146995 + 31 +0.0 + 0 +LINE + 5 +10B7 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10895.448266 + 30 +0.0 + 11 +4920.0 + 21 +10904.108515 + 31 +0.0 + 0 +LINE + 5 +10B8 + 8 +0 + 62 + 0 + 10 +5896.188018 + 20 +9170.0 + 30 +0.0 + 11 +5887.499997 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +10B9 + 8 +0 + 62 + 0 + 10 +5862.499997 + 20 +9228.349363 + 30 +0.0 + 11 +5849.999997 + 21 +9249.999998 + 31 +0.0 + 0 +LINE + 5 +10BA + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10722.243185 + 30 +0.0 + 11 +4987.499997 + 21 +10743.89382 + 31 +0.0 + 0 +LINE + 5 +10BB + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10787.19509 + 30 +0.0 + 11 +4949.999997 + 21 +10808.845725 + 31 +0.0 + 0 +LINE + 5 +10BC + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10852.146995 + 30 +0.0 + 11 +4920.0 + 21 +10860.807245 + 31 +0.0 + 0 +LINE + 5 +10BD + 8 +0 + 62 + 0 + 10 +5862.499997 + 20 +9185.048093 + 30 +0.0 + 11 +5849.999997 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +10BE + 8 +0 + 62 + 0 + 10 +5824.999997 + 20 +9249.999998 + 30 +0.0 + 11 +5824.999996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10BF + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10678.941915 + 30 +0.0 + 11 +4987.499997 + 21 +10700.59255 + 31 +0.0 + 0 +LINE + 5 +10C0 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10743.89382 + 30 +0.0 + 11 +4949.999997 + 21 +10765.544455 + 31 +0.0 + 0 +LINE + 5 +10C1 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10808.845725 + 30 +0.0 + 11 +4920.0 + 21 +10817.505975 + 31 +0.0 + 0 +LINE + 5 +10C2 + 8 +0 + 62 + 0 + 10 +5824.999997 + 20 +9206.698728 + 30 +0.0 + 11 +5812.499997 + 21 +9228.349363 + 31 +0.0 + 0 +LINE + 5 +10C3 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10635.640645 + 30 +0.0 + 11 +4987.499997 + 21 +10657.29128 + 31 +0.0 + 0 +LINE + 5 +10C4 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10700.59255 + 30 +0.0 + 11 +4949.999997 + 21 +10722.243185 + 31 +0.0 + 0 +LINE + 5 +10C5 + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10765.544455 + 30 +0.0 + 11 +4920.0 + 21 +10774.204705 + 31 +0.0 + 0 +LINE + 5 +10C6 + 8 +0 + 62 + 0 + 10 +5821.188018 + 20 +9170.0 + 30 +0.0 + 11 +5812.499997 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +10C7 + 8 +0 + 62 + 0 + 10 +5787.499997 + 20 +9228.349363 + 30 +0.0 + 11 +5774.999997 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +10C8 + 8 +0 + 62 + 0 + 10 +4999.999997 + 20 +10592.339374 + 30 +0.0 + 11 +4987.499997 + 21 +10613.990009 + 31 +0.0 + 0 +LINE + 5 +10C9 + 8 +0 + 62 + 0 + 10 +4962.499997 + 20 +10657.29128 + 30 +0.0 + 11 +4949.999997 + 21 +10678.941915 + 31 +0.0 + 0 +LINE + 5 +10CA + 8 +0 + 62 + 0 + 10 +4924.999997 + 20 +10722.243185 + 30 +0.0 + 11 +4920.0 + 21 +10730.903435 + 31 +0.0 + 0 +LINE + 5 +10CB + 8 +0 + 62 + 0 + 10 +5787.499998 + 20 +9185.048093 + 30 +0.0 + 11 +5774.999998 + 21 +9206.698728 + 31 +0.0 + 0 +LINE + 5 +10CC + 8 +0 + 62 + 0 + 10 +5749.999998 + 20 +9249.999999 + 30 +0.0 + 11 +5749.999997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10CD + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10549.038104 + 30 +0.0 + 11 +4987.499998 + 21 +10570.688739 + 31 +0.0 + 0 +LINE + 5 +10CE + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10613.99001 + 30 +0.0 + 11 +4949.999998 + 21 +10635.640645 + 31 +0.0 + 0 +LINE + 5 +10CF + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10678.941915 + 30 +0.0 + 11 +4920.0 + 21 +10687.602165 + 31 +0.0 + 0 +LINE + 5 +10D0 + 8 +0 + 62 + 0 + 10 +5749.999998 + 20 +9206.698728 + 30 +0.0 + 11 +5737.499998 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +10D1 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10505.736834 + 30 +0.0 + 11 +4987.499998 + 21 +10527.387469 + 31 +0.0 + 0 +LINE + 5 +10D2 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10570.688739 + 30 +0.0 + 11 +4949.999998 + 21 +10592.339374 + 31 +0.0 + 0 +LINE + 5 +10D3 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10635.640645 + 30 +0.0 + 11 +4920.0 + 21 +10644.300895 + 31 +0.0 + 0 +LINE + 5 +10D4 + 8 +0 + 62 + 0 + 10 +5746.188018 + 20 +9170.0 + 30 +0.0 + 11 +5737.499998 + 21 +9185.048093 + 31 +0.0 + 0 +LINE + 5 +10D5 + 8 +0 + 62 + 0 + 10 +5712.499998 + 20 +9228.349364 + 30 +0.0 + 11 +5699.999998 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +10D6 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10462.435564 + 30 +0.0 + 11 +4987.499998 + 21 +10484.086199 + 31 +0.0 + 0 +LINE + 5 +10D7 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10527.387469 + 30 +0.0 + 11 +4949.999998 + 21 +10549.038104 + 31 +0.0 + 0 +LINE + 5 +10D8 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10592.339375 + 30 +0.0 + 11 +4920.0 + 21 +10600.999625 + 31 +0.0 + 0 +LINE + 5 +10D9 + 8 +0 + 62 + 0 + 10 +5712.499998 + 20 +9185.048093 + 30 +0.0 + 11 +5699.999998 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +10DA + 8 +0 + 62 + 0 + 10 +5674.999998 + 20 +9249.999999 + 30 +0.0 + 11 +5674.999997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10DB + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10419.134294 + 30 +0.0 + 11 +4987.499998 + 21 +10440.784929 + 31 +0.0 + 0 +LINE + 5 +10DC + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10484.086199 + 30 +0.0 + 11 +4949.999998 + 21 +10505.736834 + 31 +0.0 + 0 +LINE + 5 +10DD + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10549.038104 + 30 +0.0 + 11 +4920.0 + 21 +10557.698355 + 31 +0.0 + 0 +LINE + 5 +10DE + 8 +0 + 62 + 0 + 10 +5674.999998 + 20 +9206.698729 + 30 +0.0 + 11 +5662.499998 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +10DF + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10375.833024 + 30 +0.0 + 11 +4987.499998 + 21 +10397.483659 + 31 +0.0 + 0 +LINE + 5 +10E0 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10440.784929 + 30 +0.0 + 11 +4949.999998 + 21 +10462.435564 + 31 +0.0 + 0 +LINE + 5 +10E1 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10505.736834 + 30 +0.0 + 11 +4920.0 + 21 +10514.397085 + 31 +0.0 + 0 +LINE + 5 +10E2 + 8 +0 + 62 + 0 + 10 +5671.188019 + 20 +9170.0 + 30 +0.0 + 11 +5662.499998 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +10E3 + 8 +0 + 62 + 0 + 10 +5637.499998 + 20 +9228.349364 + 30 +0.0 + 11 +5624.999998 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +10E4 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10332.531754 + 30 +0.0 + 11 +4987.499998 + 21 +10354.182389 + 31 +0.0 + 0 +LINE + 5 +10E5 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10397.483659 + 30 +0.0 + 11 +4949.999998 + 21 +10419.134294 + 31 +0.0 + 0 +LINE + 5 +10E6 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10462.435564 + 30 +0.0 + 11 +4920.0 + 21 +10471.095815 + 31 +0.0 + 0 +LINE + 5 +10E7 + 8 +0 + 62 + 0 + 10 +5637.499998 + 20 +9185.048094 + 30 +0.0 + 11 +5624.999998 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +10E8 + 8 +0 + 62 + 0 + 10 +5599.999998 + 20 +9249.999999 + 30 +0.0 + 11 +5599.999997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10E9 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10289.230483 + 30 +0.0 + 11 +4987.499998 + 21 +10310.881119 + 31 +0.0 + 0 +LINE + 5 +10EA + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10354.182389 + 30 +0.0 + 11 +4949.999998 + 21 +10375.833024 + 31 +0.0 + 0 +LINE + 5 +10EB + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10419.134294 + 30 +0.0 + 11 +4920.0 + 21 +10427.794545 + 31 +0.0 + 0 +LINE + 5 +10EC + 8 +0 + 62 + 0 + 10 +5599.999998 + 20 +9206.698729 + 30 +0.0 + 11 +5587.499998 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +10ED + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10245.929213 + 30 +0.0 + 11 +4987.499998 + 21 +10267.579848 + 31 +0.0 + 0 +LINE + 5 +10EE + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10310.881119 + 30 +0.0 + 11 +4949.999998 + 21 +10332.531754 + 31 +0.0 + 0 +LINE + 5 +10EF + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10375.833024 + 30 +0.0 + 11 +4920.0 + 21 +10384.493275 + 31 +0.0 + 0 +LINE + 5 +10F0 + 8 +0 + 62 + 0 + 10 +5596.188019 + 20 +9170.0 + 30 +0.0 + 11 +5587.499998 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +10F1 + 8 +0 + 62 + 0 + 10 +5562.499998 + 20 +9228.349364 + 30 +0.0 + 11 +5549.999998 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +10F2 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10202.627943 + 30 +0.0 + 11 +4987.499998 + 21 +10224.278578 + 31 +0.0 + 0 +LINE + 5 +10F3 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10267.579848 + 30 +0.0 + 11 +4949.999998 + 21 +10289.230484 + 31 +0.0 + 0 +LINE + 5 +10F4 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10332.531754 + 30 +0.0 + 11 +4920.0 + 21 +10341.192005 + 31 +0.0 + 0 +LINE + 5 +10F5 + 8 +0 + 62 + 0 + 10 +5562.499998 + 20 +9185.048094 + 30 +0.0 + 11 +5549.999998 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +10F6 + 8 +0 + 62 + 0 + 10 +5524.999998 + 20 +9249.999999 + 30 +0.0 + 11 +5524.999998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +10F7 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10159.326673 + 30 +0.0 + 11 +4987.499998 + 21 +10180.977308 + 31 +0.0 + 0 +LINE + 5 +10F8 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10224.278578 + 30 +0.0 + 11 +4949.999998 + 21 +10245.929213 + 31 +0.0 + 0 +LINE + 5 +10F9 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10289.230484 + 30 +0.0 + 11 +4920.0 + 21 +10297.890735 + 31 +0.0 + 0 +LINE + 5 +10FA + 8 +0 + 62 + 0 + 10 +5524.999998 + 20 +9206.698729 + 30 +0.0 + 11 +5512.499998 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +10FB + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10116.025403 + 30 +0.0 + 11 +4987.499998 + 21 +10137.676038 + 31 +0.0 + 0 +LINE + 5 +10FC + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10180.977308 + 30 +0.0 + 11 +4949.999998 + 21 +10202.627943 + 31 +0.0 + 0 +LINE + 5 +10FD + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10245.929213 + 30 +0.0 + 11 +4920.0 + 21 +10254.589465 + 31 +0.0 + 0 +LINE + 5 +10FE + 8 +0 + 62 + 0 + 10 +5521.188019 + 20 +9170.0 + 30 +0.0 + 11 +5512.499998 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +10FF + 8 +0 + 62 + 0 + 10 +5487.499998 + 20 +9228.349364 + 30 +0.0 + 11 +5474.999998 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +1100 + 8 +0 + 62 + 0 + 10 +4999.999998 + 20 +10072.724133 + 30 +0.0 + 11 +4987.499998 + 21 +10094.374768 + 31 +0.0 + 0 +LINE + 5 +1101 + 8 +0 + 62 + 0 + 10 +4962.499998 + 20 +10137.676038 + 30 +0.0 + 11 +4949.999998 + 21 +10159.326673 + 31 +0.0 + 0 +LINE + 5 +1102 + 8 +0 + 62 + 0 + 10 +4924.999998 + 20 +10202.627943 + 30 +0.0 + 11 +4920.0 + 21 +10211.288195 + 31 +0.0 + 0 +LINE + 5 +1103 + 8 +0 + 62 + 0 + 10 +5487.499999 + 20 +9185.048094 + 30 +0.0 + 11 +5474.999999 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +1104 + 8 +0 + 62 + 0 + 10 +5449.999999 + 20 +9249.999999 + 30 +0.0 + 11 +5449.999998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1105 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +10029.422863 + 30 +0.0 + 11 +4987.499999 + 21 +10051.073498 + 31 +0.0 + 0 +LINE + 5 +1106 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +10094.374768 + 30 +0.0 + 11 +4949.999999 + 21 +10116.025403 + 31 +0.0 + 0 +LINE + 5 +1107 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +10159.326673 + 30 +0.0 + 11 +4920.0 + 21 +10167.986925 + 31 +0.0 + 0 +LINE + 5 +1108 + 8 +0 + 62 + 0 + 10 +5449.999999 + 20 +9206.698729 + 30 +0.0 + 11 +5437.499999 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +1109 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9986.121592 + 30 +0.0 + 11 +4987.499999 + 21 +10007.772228 + 31 +0.0 + 0 +LINE + 5 +110A + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +10051.073498 + 30 +0.0 + 11 +4949.999999 + 21 +10072.724133 + 31 +0.0 + 0 +LINE + 5 +110B + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +10116.025403 + 30 +0.0 + 11 +4920.0 + 21 +10124.685655 + 31 +0.0 + 0 +LINE + 5 +110C + 8 +0 + 62 + 0 + 10 +5446.18802 + 20 +9170.0 + 30 +0.0 + 11 +5437.499999 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +110D + 8 +0 + 62 + 0 + 10 +5412.499999 + 20 +9228.349364 + 30 +0.0 + 11 +5399.999999 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +110E + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9942.820322 + 30 +0.0 + 11 +4987.499999 + 21 +9964.470957 + 31 +0.0 + 0 +LINE + 5 +110F + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +10007.772228 + 30 +0.0 + 11 +4949.999999 + 21 +10029.422863 + 31 +0.0 + 0 +LINE + 5 +1110 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +10072.724133 + 30 +0.0 + 11 +4920.0 + 21 +10081.384385 + 31 +0.0 + 0 +LINE + 5 +1111 + 8 +0 + 62 + 0 + 10 +5412.499999 + 20 +9185.048094 + 30 +0.0 + 11 +5399.999999 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +1112 + 8 +0 + 62 + 0 + 10 +5374.999999 + 20 +9249.999999 + 30 +0.0 + 11 +5374.999998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1113 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9899.519052 + 30 +0.0 + 11 +4987.499999 + 21 +9921.169687 + 31 +0.0 + 0 +LINE + 5 +1114 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9964.470957 + 30 +0.0 + 11 +4949.999999 + 21 +9986.121593 + 31 +0.0 + 0 +LINE + 5 +1115 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +10029.422863 + 30 +0.0 + 11 +4920.0 + 21 +10038.083115 + 31 +0.0 + 0 +LINE + 5 +1116 + 8 +0 + 62 + 0 + 10 +5374.999999 + 20 +9206.698729 + 30 +0.0 + 11 +5362.499999 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +1117 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9856.217782 + 30 +0.0 + 11 +4987.499999 + 21 +9877.868417 + 31 +0.0 + 0 +LINE + 5 +1118 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9921.169687 + 30 +0.0 + 11 +4949.999999 + 21 +9942.820322 + 31 +0.0 + 0 +LINE + 5 +1119 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9986.121593 + 30 +0.0 + 11 +4920.0 + 21 +9994.781845 + 31 +0.0 + 0 +LINE + 5 +111A + 8 +0 + 62 + 0 + 10 +5371.18802 + 20 +9170.0 + 30 +0.0 + 11 +5362.499999 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +111B + 8 +0 + 62 + 0 + 10 +5337.499999 + 20 +9228.349364 + 30 +0.0 + 11 +5324.999999 + 21 +9249.999999 + 31 +0.0 + 0 +LINE + 5 +111C + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9812.916512 + 30 +0.0 + 11 +4987.499999 + 21 +9834.567147 + 31 +0.0 + 0 +LINE + 5 +111D + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9877.868417 + 30 +0.0 + 11 +4949.999999 + 21 +9899.519052 + 31 +0.0 + 0 +LINE + 5 +111E + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9942.820322 + 30 +0.0 + 11 +4920.0 + 21 +9951.480575 + 31 +0.0 + 0 +LINE + 5 +111F + 8 +0 + 62 + 0 + 10 +5337.499999 + 20 +9185.048094 + 30 +0.0 + 11 +5324.999999 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +1120 + 8 +0 + 62 + 0 + 10 +5299.999999 + 20 +9249.999999 + 30 +0.0 + 11 +5299.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1121 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9769.615242 + 30 +0.0 + 11 +4987.499999 + 21 +9791.265877 + 31 +0.0 + 0 +LINE + 5 +1122 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9834.567147 + 30 +0.0 + 11 +4949.999999 + 21 +9856.217782 + 31 +0.0 + 0 +LINE + 5 +1123 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9899.519052 + 30 +0.0 + 11 +4920.0 + 21 +9908.179305 + 31 +0.0 + 0 +LINE + 5 +1124 + 8 +0 + 62 + 0 + 10 +5299.999999 + 20 +9206.698729 + 30 +0.0 + 11 +5287.499999 + 21 +9228.349364 + 31 +0.0 + 0 +LINE + 5 +1125 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9726.313972 + 30 +0.0 + 11 +4987.499999 + 21 +9747.964607 + 31 +0.0 + 0 +LINE + 5 +1126 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9791.265877 + 30 +0.0 + 11 +4949.999999 + 21 +9812.916512 + 31 +0.0 + 0 +LINE + 5 +1127 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9856.217782 + 30 +0.0 + 11 +4920.0 + 21 +9864.878035 + 31 +0.0 + 0 +LINE + 5 +1128 + 8 +0 + 62 + 0 + 10 +5296.18802 + 20 +9170.0 + 30 +0.0 + 11 +5287.499999 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +1129 + 8 +0 + 62 + 0 + 10 +5262.499999 + 20 +9228.349364 + 30 +0.0 + 11 +5249.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +112A + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9683.012701 + 30 +0.0 + 11 +4987.499999 + 21 +9704.663337 + 31 +0.0 + 0 +LINE + 5 +112B + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9747.964607 + 30 +0.0 + 11 +4949.999999 + 21 +9769.615242 + 31 +0.0 + 0 +LINE + 5 +112C + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9812.916512 + 30 +0.0 + 11 +4920.0 + 21 +9821.576765 + 31 +0.0 + 0 +LINE + 5 +112D + 8 +0 + 62 + 0 + 10 +5262.499999 + 20 +9185.048094 + 30 +0.0 + 11 +5249.999999 + 21 +9206.698729 + 31 +0.0 + 0 +LINE + 5 +112E + 8 +0 + 62 + 0 + 10 +5224.999999 + 20 +9250.0 + 30 +0.0 + 11 +5224.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +112F + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9639.711431 + 30 +0.0 + 11 +4987.499999 + 21 +9661.362066 + 31 +0.0 + 0 +LINE + 5 +1130 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9704.663337 + 30 +0.0 + 11 +4949.999999 + 21 +9726.313972 + 31 +0.0 + 0 +LINE + 5 +1131 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9769.615242 + 30 +0.0 + 11 +4920.0 + 21 +9778.275495 + 31 +0.0 + 0 +LINE + 5 +1132 + 8 +0 + 62 + 0 + 10 +5224.999999 + 20 +9206.698729 + 30 +0.0 + 11 +5212.499999 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1133 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9596.410161 + 30 +0.0 + 11 +4987.499999 + 21 +9618.060796 + 31 +0.0 + 0 +LINE + 5 +1134 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9661.362066 + 30 +0.0 + 11 +4949.999999 + 21 +9683.012702 + 31 +0.0 + 0 +LINE + 5 +1135 + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9726.313972 + 30 +0.0 + 11 +4920.0 + 21 +9734.974225 + 31 +0.0 + 0 +LINE + 5 +1136 + 8 +0 + 62 + 0 + 10 +5221.188021 + 20 +9170.0 + 30 +0.0 + 11 +5212.499999 + 21 +9185.048094 + 31 +0.0 + 0 +LINE + 5 +1137 + 8 +0 + 62 + 0 + 10 +5187.499999 + 20 +9228.349365 + 30 +0.0 + 11 +5174.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1138 + 8 +0 + 62 + 0 + 10 +4999.999999 + 20 +9553.108891 + 30 +0.0 + 11 +4987.499999 + 21 +9574.759526 + 31 +0.0 + 0 +LINE + 5 +1139 + 8 +0 + 62 + 0 + 10 +4962.499999 + 20 +9618.060796 + 30 +0.0 + 11 +4949.999999 + 21 +9639.711431 + 31 +0.0 + 0 +LINE + 5 +113A + 8 +0 + 62 + 0 + 10 +4924.999999 + 20 +9683.012702 + 30 +0.0 + 11 +4920.0 + 21 +9691.672955 + 31 +0.0 + 0 +LINE + 5 +113B + 8 +0 + 62 + 0 + 10 +5187.5 + 20 +9185.048094 + 30 +0.0 + 11 +5175.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +113C + 8 +0 + 62 + 0 + 10 +5150.0 + 20 +9250.0 + 30 +0.0 + 11 +5149.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +113D + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9509.807621 + 30 +0.0 + 11 +4987.5 + 21 +9531.458256 + 31 +0.0 + 0 +LINE + 5 +113E + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9574.759526 + 30 +0.0 + 11 +4950.0 + 21 +9596.410161 + 31 +0.0 + 0 +LINE + 5 +113F + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9639.711431 + 30 +0.0 + 11 +4920.0 + 21 +9648.371685 + 31 +0.0 + 0 +LINE + 5 +1140 + 8 +0 + 62 + 0 + 10 +5150.0 + 20 +9206.69873 + 30 +0.0 + 11 +5137.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1141 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9466.506351 + 30 +0.0 + 11 +4987.5 + 21 +9488.156986 + 31 +0.0 + 0 +LINE + 5 +1142 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9531.458256 + 30 +0.0 + 11 +4950.0 + 21 +9553.108891 + 31 +0.0 + 0 +LINE + 5 +1143 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9596.410161 + 30 +0.0 + 11 +4920.0 + 21 +9605.070415 + 31 +0.0 + 0 +LINE + 5 +1144 + 8 +0 + 62 + 0 + 10 +5146.188021 + 20 +9170.0 + 30 +0.0 + 11 +5137.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1145 + 8 +0 + 62 + 0 + 10 +5112.5 + 20 +9228.349365 + 30 +0.0 + 11 +5100.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1146 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9423.205081 + 30 +0.0 + 11 +4987.5 + 21 +9444.855716 + 31 +0.0 + 0 +LINE + 5 +1147 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9488.156986 + 30 +0.0 + 11 +4950.0 + 21 +9509.807621 + 31 +0.0 + 0 +LINE + 5 +1148 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9553.108891 + 30 +0.0 + 11 +4920.0 + 21 +9561.769145 + 31 +0.0 + 0 +LINE + 5 +1149 + 8 +0 + 62 + 0 + 10 +5112.5 + 20 +9185.048095 + 30 +0.0 + 11 +5100.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +114A + 8 +0 + 62 + 0 + 10 +5075.0 + 20 +9250.0 + 30 +0.0 + 11 +5075.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +114B + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9379.90381 + 30 +0.0 + 11 +4987.5 + 21 +9401.554446 + 31 +0.0 + 0 +LINE + 5 +114C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9444.855716 + 30 +0.0 + 11 +4950.0 + 21 +9466.506351 + 31 +0.0 + 0 +LINE + 5 +114D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9509.807621 + 30 +0.0 + 11 +4920.0 + 21 +9518.467875 + 31 +0.0 + 0 +LINE + 5 +114E + 8 +0 + 62 + 0 + 10 +5075.0 + 20 +9206.69873 + 30 +0.0 + 11 +5062.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +114F + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9336.60254 + 30 +0.0 + 11 +4987.5 + 21 +9358.253175 + 31 +0.0 + 0 +LINE + 5 +1150 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9401.554446 + 30 +0.0 + 11 +4950.0 + 21 +9423.205081 + 31 +0.0 + 0 +LINE + 5 +1151 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9466.506351 + 30 +0.0 + 11 +4920.0 + 21 +9475.166605 + 31 +0.0 + 0 +LINE + 5 +1152 + 8 +0 + 62 + 0 + 10 +5071.188021 + 20 +9170.0 + 30 +0.0 + 11 +5062.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1153 + 8 +0 + 62 + 0 + 10 +5037.5 + 20 +9228.349365 + 30 +0.0 + 11 +5025.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1154 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9293.30127 + 30 +0.0 + 11 +4987.5 + 21 +9314.951905 + 31 +0.0 + 0 +LINE + 5 +1155 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9358.253175 + 30 +0.0 + 11 +4950.0 + 21 +9379.903811 + 31 +0.0 + 0 +LINE + 5 +1156 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9423.205081 + 30 +0.0 + 11 +4920.0 + 21 +9431.865335 + 31 +0.0 + 0 +LINE + 5 +1157 + 8 +0 + 62 + 0 + 10 +5037.5 + 20 +9185.048095 + 30 +0.0 + 11 +5025.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1158 + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 11 +4987.5 + 21 +9271.650635 + 31 +0.0 + 0 +LINE + 5 +1159 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9314.951905 + 30 +0.0 + 11 +4950.0 + 21 +9336.60254 + 31 +0.0 + 0 +LINE + 5 +115A + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9379.903811 + 30 +0.0 + 11 +4920.0 + 21 +9388.564065 + 31 +0.0 + 0 +LINE + 5 +115B + 8 +0 + 62 + 0 + 10 +5000.0 + 20 +9206.69873 + 30 +0.0 + 11 +4987.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +115C + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9271.650635 + 30 +0.0 + 11 +4950.0 + 21 +9293.30127 + 31 +0.0 + 0 +LINE + 5 +115D + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9336.60254 + 30 +0.0 + 11 +4920.0 + 21 +9345.262795 + 31 +0.0 + 0 +LINE + 5 +115E + 8 +0 + 62 + 0 + 10 +4996.188022 + 20 +9170.0 + 30 +0.0 + 11 +4987.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +115F + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9228.349365 + 30 +0.0 + 11 +4950.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1160 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9293.30127 + 30 +0.0 + 11 +4920.0 + 21 +9301.961525 + 31 +0.0 + 0 +LINE + 5 +1161 + 8 +0 + 62 + 0 + 10 +4962.5 + 20 +9185.048095 + 30 +0.0 + 11 +4950.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1162 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9250.0 + 30 +0.0 + 11 +4920.0 + 21 +9258.660255 + 31 +0.0 + 0 +LINE + 5 +1163 + 8 +0 + 62 + 0 + 10 +4925.0 + 20 +9206.69873 + 30 +0.0 + 11 +4920.0 + 21 +9215.358985 + 31 +0.0 + 0 +LINE + 5 +1164 + 8 +0 + 62 + 0 + 10 +4921.188022 + 20 +9170.0 + 30 +0.0 + 11 +4920.0 + 21 +9172.057715 + 31 +0.0 + 0 +LINE + 5 +1165 + 8 +0 + 62 + 0 + 10 +4999.999991 + 20 +14229.646066 + 30 +0.0 + 11 +4987.499991 + 21 +14251.296701 + 31 +0.0 + 0 +LINE + 5 +1166 + 8 +0 + 62 + 0 + 10 +4962.499991 + 20 +14294.597972 + 30 +0.0 + 11 +4949.999991 + 21 +14316.248607 + 31 +0.0 + 0 +LINE + 5 +1167 + 8 +0 + 62 + 0 + 10 +4924.999991 + 20 +14359.549877 + 30 +0.0 + 11 +4920.0 + 21 +14368.210115 + 31 +0.0 + 0 +LINE + 5 +1168 + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14272.947336 + 30 +0.0 + 11 +4987.49999 + 21 +14294.597972 + 31 +0.0 + 0 +LINE + 5 +1169 + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14337.899242 + 30 +0.0 + 11 +4949.99999 + 21 +14359.549877 + 31 +0.0 + 0 +LINE + 5 +116A + 8 +0 + 62 + 0 + 10 +4924.99999 + 20 +14402.851147 + 30 +0.0 + 11 +4920.0 + 21 +14411.511385 + 31 +0.0 + 0 +LINE + 5 +116B + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14316.248607 + 30 +0.0 + 11 +4987.49999 + 21 +14337.899242 + 31 +0.0 + 0 +LINE + 5 +116C + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14381.200512 + 30 +0.0 + 11 +4949.99999 + 21 +14402.851147 + 31 +0.0 + 0 +LINE + 5 +116D + 8 +0 + 62 + 0 + 10 +4924.99999 + 20 +14446.152417 + 30 +0.0 + 11 +4920.0 + 21 +14454.812655 + 31 +0.0 + 0 +LINE + 5 +116E + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14359.549877 + 30 +0.0 + 11 +4987.49999 + 21 +14381.200512 + 31 +0.0 + 0 +LINE + 5 +116F + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14424.501782 + 30 +0.0 + 11 +4949.99999 + 21 +14446.152417 + 31 +0.0 + 0 +LINE + 5 +1170 + 8 +0 + 62 + 0 + 10 +4924.99999 + 20 +14489.453687 + 30 +0.0 + 11 +4920.0 + 21 +14498.113925 + 31 +0.0 + 0 +LINE + 5 +1171 + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14402.851147 + 30 +0.0 + 11 +4987.49999 + 21 +14424.501782 + 31 +0.0 + 0 +LINE + 5 +1172 + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14467.803052 + 30 +0.0 + 11 +4949.99999 + 21 +14489.453687 + 31 +0.0 + 0 +LINE + 5 +1173 + 8 +0 + 62 + 0 + 10 +4924.99999 + 20 +14532.754957 + 30 +0.0 + 11 +4920.0 + 21 +14541.415195 + 31 +0.0 + 0 +LINE + 5 +1174 + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14446.152417 + 30 +0.0 + 11 +4987.49999 + 21 +14467.803052 + 31 +0.0 + 0 +LINE + 5 +1175 + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14511.104322 + 30 +0.0 + 11 +4949.99999 + 21 +14532.754957 + 31 +0.0 + 0 +LINE + 5 +1176 + 8 +0 + 62 + 0 + 10 +4924.99999 + 20 +14576.056228 + 30 +0.0 + 11 +4920.0 + 21 +14584.716465 + 31 +0.0 + 0 +LINE + 5 +1177 + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14489.453687 + 30 +0.0 + 11 +4987.49999 + 21 +14511.104322 + 31 +0.0 + 0 +LINE + 5 +1178 + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14554.405592 + 30 +0.0 + 11 +4949.99999 + 21 +14576.056228 + 31 +0.0 + 0 +LINE + 5 +1179 + 8 +0 + 62 + 0 + 10 +4924.99999 + 20 +14619.357498 + 30 +0.0 + 11 +4921.020602 + 21 +14626.25 + 31 +0.0 + 0 +LINE + 5 +117A + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14532.754957 + 30 +0.0 + 11 +4987.49999 + 21 +14554.405592 + 31 +0.0 + 0 +LINE + 5 +117B + 8 +0 + 62 + 0 + 10 +4962.49999 + 20 +14597.706863 + 30 +0.0 + 11 +4949.99999 + 21 +14619.357498 + 31 +0.0 + 0 +LINE + 5 +117C + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14576.056227 + 30 +0.0 + 11 +4987.49999 + 21 +14597.706863 + 31 +0.0 + 0 +LINE + 5 +117D + 8 +0 + 62 + 0 + 10 +4999.99999 + 20 +14619.357498 + 30 +0.0 + 11 +4996.020602 + 21 +14626.25 + 31 +0.0 + 0 +LINE + 5 +117E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9414.544825 + 30 +0.0 + 11 +4925.000001 + 21 +9423.20508 + 31 +0.0 + 0 +LINE + 5 +117F + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9466.506351 + 30 +0.0 + 11 +4962.500001 + 21 +9488.156986 + 31 +0.0 + 0 +LINE + 5 +1180 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9531.458256 + 30 +0.0 + 11 +5000.0 + 21 +9553.10889 + 31 +0.0 + 0 +LINE + 5 +1181 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9457.846095 + 30 +0.0 + 11 +4925.000001 + 21 +9466.506351 + 31 +0.0 + 0 +LINE + 5 +1182 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9509.807621 + 30 +0.0 + 11 +4962.500001 + 21 +9531.458256 + 31 +0.0 + 0 +LINE + 5 +1183 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9574.759526 + 30 +0.0 + 11 +5000.0 + 21 +9596.41016 + 31 +0.0 + 0 +LINE + 5 +1184 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9501.147365 + 30 +0.0 + 11 +4925.000001 + 21 +9509.807621 + 31 +0.0 + 0 +LINE + 5 +1185 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9553.108891 + 30 +0.0 + 11 +4962.500001 + 21 +9574.759526 + 31 +0.0 + 0 +LINE + 5 +1186 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9618.060796 + 30 +0.0 + 11 +5000.0 + 21 +9639.71143 + 31 +0.0 + 0 +LINE + 5 +1187 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9544.448635 + 30 +0.0 + 11 +4925.000001 + 21 +9553.108891 + 31 +0.0 + 0 +LINE + 5 +1188 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9596.410161 + 30 +0.0 + 11 +4962.500001 + 21 +9618.060796 + 31 +0.0 + 0 +LINE + 5 +1189 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9661.362066 + 30 +0.0 + 11 +5000.0 + 21 +9683.0127 + 31 +0.0 + 0 +LINE + 5 +118A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9587.749905 + 30 +0.0 + 11 +4925.000001 + 21 +9596.410161 + 31 +0.0 + 0 +LINE + 5 +118B + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9639.711431 + 30 +0.0 + 11 +4962.500001 + 21 +9661.362066 + 31 +0.0 + 0 +LINE + 5 +118C + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9704.663336 + 30 +0.0 + 11 +5000.0 + 21 +9726.31397 + 31 +0.0 + 0 +LINE + 5 +118D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9631.051175 + 30 +0.0 + 11 +4925.000001 + 21 +9639.711431 + 31 +0.0 + 0 +LINE + 5 +118E + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9683.012701 + 30 +0.0 + 11 +4962.500001 + 21 +9704.663336 + 31 +0.0 + 0 +LINE + 5 +118F + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9747.964607 + 30 +0.0 + 11 +5000.0 + 21 +9769.61524 + 31 +0.0 + 0 +LINE + 5 +1190 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9674.352445 + 30 +0.0 + 11 +4925.000001 + 21 +9683.012701 + 31 +0.0 + 0 +LINE + 5 +1191 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9726.313971 + 30 +0.0 + 11 +4962.500001 + 21 +9747.964607 + 31 +0.0 + 0 +LINE + 5 +1192 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9791.265877 + 30 +0.0 + 11 +5000.0 + 21 +9812.91651 + 31 +0.0 + 0 +LINE + 5 +1193 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9717.653715 + 30 +0.0 + 11 +4925.000001 + 21 +9726.313971 + 31 +0.0 + 0 +LINE + 5 +1194 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9769.615242 + 30 +0.0 + 11 +4962.500001 + 21 +9791.265877 + 31 +0.0 + 0 +LINE + 5 +1195 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9834.567147 + 30 +0.0 + 11 +5000.0 + 21 +9856.21778 + 31 +0.0 + 0 +LINE + 5 +1196 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9760.954985 + 30 +0.0 + 11 +4925.000001 + 21 +9769.615242 + 31 +0.0 + 0 +LINE + 5 +1197 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9812.916512 + 30 +0.0 + 11 +4962.500001 + 21 +9834.567147 + 31 +0.0 + 0 +LINE + 5 +1198 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9877.868417 + 30 +0.0 + 11 +5000.0 + 21 +9899.51905 + 31 +0.0 + 0 +LINE + 5 +1199 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9804.256255 + 30 +0.0 + 11 +4925.000001 + 21 +9812.916512 + 31 +0.0 + 0 +LINE + 5 +119A + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9856.217782 + 30 +0.0 + 11 +4962.500001 + 21 +9877.868417 + 31 +0.0 + 0 +LINE + 5 +119B + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9921.169687 + 30 +0.0 + 11 +5000.0 + 21 +9942.82032 + 31 +0.0 + 0 +LINE + 5 +119C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9847.557525 + 30 +0.0 + 11 +4925.000001 + 21 +9856.217782 + 31 +0.0 + 0 +LINE + 5 +119D + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9899.519052 + 30 +0.0 + 11 +4962.500001 + 21 +9921.169687 + 31 +0.0 + 0 +LINE + 5 +119E + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +9964.470957 + 30 +0.0 + 11 +5000.0 + 21 +9986.12159 + 31 +0.0 + 0 +LINE + 5 +119F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9890.858795 + 30 +0.0 + 11 +4925.000001 + 21 +9899.519052 + 31 +0.0 + 0 +LINE + 5 +11A0 + 8 +0 + 62 + 0 + 10 +4950.000001 + 20 +9942.820322 + 30 +0.0 + 11 +4962.500001 + 21 +9964.470957 + 31 +0.0 + 0 +LINE + 5 +11A1 + 8 +0 + 62 + 0 + 10 +4987.500001 + 20 +10007.772227 + 30 +0.0 + 11 +5000.0 + 21 +10029.42286 + 31 +0.0 + 0 +LINE + 5 +11A2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9934.160065 + 30 +0.0 + 11 +4925.000002 + 21 +9942.820322 + 31 +0.0 + 0 +LINE + 5 +11A3 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +9986.121592 + 30 +0.0 + 11 +4962.500002 + 21 +10007.772227 + 31 +0.0 + 0 +LINE + 5 +11A4 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10051.073498 + 30 +0.0 + 11 +5000.0 + 21 +10072.72413 + 31 +0.0 + 0 +LINE + 5 +11A5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9977.461335 + 30 +0.0 + 11 +4925.000002 + 21 +9986.121592 + 31 +0.0 + 0 +LINE + 5 +11A6 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10029.422862 + 30 +0.0 + 11 +4962.500002 + 21 +10051.073498 + 31 +0.0 + 0 +LINE + 5 +11A7 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10094.374768 + 30 +0.0 + 11 +5000.0 + 21 +10116.0254 + 31 +0.0 + 0 +LINE + 5 +11A8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10020.762605 + 30 +0.0 + 11 +4925.000002 + 21 +10029.422862 + 31 +0.0 + 0 +LINE + 5 +11A9 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10072.724133 + 30 +0.0 + 11 +4962.500002 + 21 +10094.374768 + 31 +0.0 + 0 +LINE + 5 +11AA + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10137.676038 + 30 +0.0 + 11 +5000.0 + 21 +10159.32667 + 31 +0.0 + 0 +LINE + 5 +11AB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10064.063875 + 30 +0.0 + 11 +4925.000002 + 21 +10072.724133 + 31 +0.0 + 0 +LINE + 5 +11AC + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10116.025403 + 30 +0.0 + 11 +4962.500002 + 21 +10137.676038 + 31 +0.0 + 0 +LINE + 5 +11AD + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10180.977308 + 30 +0.0 + 11 +5000.0 + 21 +10202.62794 + 31 +0.0 + 0 +LINE + 5 +11AE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10107.365145 + 30 +0.0 + 11 +4925.000002 + 21 +10116.025403 + 31 +0.0 + 0 +LINE + 5 +11AF + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10159.326673 + 30 +0.0 + 11 +4962.500002 + 21 +10180.977308 + 31 +0.0 + 0 +LINE + 5 +11B0 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10224.278578 + 30 +0.0 + 11 +5000.0 + 21 +10245.92921 + 31 +0.0 + 0 +LINE + 5 +11B1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10150.666415 + 30 +0.0 + 11 +4925.000002 + 21 +10159.326673 + 31 +0.0 + 0 +LINE + 5 +11B2 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10202.627943 + 30 +0.0 + 11 +4962.500002 + 21 +10224.278578 + 31 +0.0 + 0 +LINE + 5 +11B3 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10267.579848 + 30 +0.0 + 11 +5000.0 + 21 +10289.23048 + 31 +0.0 + 0 +LINE + 5 +11B4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10193.967685 + 30 +0.0 + 11 +4925.000002 + 21 +10202.627943 + 31 +0.0 + 0 +LINE + 5 +11B5 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10245.929213 + 30 +0.0 + 11 +4962.500002 + 21 +10267.579848 + 31 +0.0 + 0 +LINE + 5 +11B6 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10310.881118 + 30 +0.0 + 11 +5000.0 + 21 +10332.53175 + 31 +0.0 + 0 +LINE + 5 +11B7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10237.268955 + 30 +0.0 + 11 +4925.000002 + 21 +10245.929213 + 31 +0.0 + 0 +LINE + 5 +11B8 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10289.230483 + 30 +0.0 + 11 +4962.500002 + 21 +10310.881118 + 31 +0.0 + 0 +LINE + 5 +11B9 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10354.182389 + 30 +0.0 + 11 +5000.0 + 21 +10375.83302 + 31 +0.0 + 0 +LINE + 5 +11BA + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10280.570225 + 30 +0.0 + 11 +4925.000002 + 21 +10289.230483 + 31 +0.0 + 0 +LINE + 5 +11BB + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10332.531753 + 30 +0.0 + 11 +4962.500002 + 21 +10354.182389 + 31 +0.0 + 0 +LINE + 5 +11BC + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10397.483659 + 30 +0.0 + 11 +5000.0 + 21 +10419.13429 + 31 +0.0 + 0 +LINE + 5 +11BD + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10323.871495 + 30 +0.0 + 11 +4925.000002 + 21 +10332.531753 + 31 +0.0 + 0 +LINE + 5 +11BE + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10375.833024 + 30 +0.0 + 11 +4962.500002 + 21 +10397.483659 + 31 +0.0 + 0 +LINE + 5 +11BF + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10440.784929 + 30 +0.0 + 11 +5000.0 + 21 +10462.43556 + 31 +0.0 + 0 +LINE + 5 +11C0 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10367.172765 + 30 +0.0 + 11 +4925.000002 + 21 +10375.833024 + 31 +0.0 + 0 +LINE + 5 +11C1 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10419.134294 + 30 +0.0 + 11 +4962.500002 + 21 +10440.784929 + 31 +0.0 + 0 +LINE + 5 +11C2 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10484.086199 + 30 +0.0 + 11 +5000.0 + 21 +10505.73683 + 31 +0.0 + 0 +LINE + 5 +11C3 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10410.474035 + 30 +0.0 + 11 +4925.000002 + 21 +10419.134294 + 31 +0.0 + 0 +LINE + 5 +11C4 + 8 +0 + 62 + 0 + 10 +4950.000002 + 20 +10462.435564 + 30 +0.0 + 11 +4962.500002 + 21 +10484.086199 + 31 +0.0 + 0 +LINE + 5 +11C5 + 8 +0 + 62 + 0 + 10 +4987.500002 + 20 +10527.387469 + 30 +0.0 + 11 +5000.0 + 21 +10549.0381 + 31 +0.0 + 0 +LINE + 5 +11C6 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10453.775305 + 30 +0.0 + 11 +4925.000003 + 21 +10462.435564 + 31 +0.0 + 0 +LINE + 5 +11C7 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10505.736834 + 30 +0.0 + 11 +4962.500003 + 21 +10527.387469 + 31 +0.0 + 0 +LINE + 5 +11C8 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10570.688739 + 30 +0.0 + 11 +5000.0 + 21 +10592.33937 + 31 +0.0 + 0 +LINE + 5 +11C9 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10497.076575 + 30 +0.0 + 11 +4925.000003 + 21 +10505.736834 + 31 +0.0 + 0 +LINE + 5 +11CA + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10549.038104 + 30 +0.0 + 11 +4962.500003 + 21 +10570.688739 + 31 +0.0 + 0 +LINE + 5 +11CB + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10613.990009 + 30 +0.0 + 11 +5000.0 + 21 +10635.64064 + 31 +0.0 + 0 +LINE + 5 +11CC + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10540.377845 + 30 +0.0 + 11 +4925.000003 + 21 +10549.038104 + 31 +0.0 + 0 +LINE + 5 +11CD + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10592.339374 + 30 +0.0 + 11 +4962.500003 + 21 +10613.990009 + 31 +0.0 + 0 +LINE + 5 +11CE + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10657.29128 + 30 +0.0 + 11 +5000.0 + 21 +10678.94191 + 31 +0.0 + 0 +LINE + 5 +11CF + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10583.679115 + 30 +0.0 + 11 +4925.000003 + 21 +10592.339374 + 31 +0.0 + 0 +LINE + 5 +11D0 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10635.640644 + 30 +0.0 + 11 +4962.500003 + 21 +10657.29128 + 31 +0.0 + 0 +LINE + 5 +11D1 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10700.59255 + 30 +0.0 + 11 +5000.0 + 21 +10722.24318 + 31 +0.0 + 0 +LINE + 5 +11D2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10626.980385 + 30 +0.0 + 11 +4925.000003 + 21 +10635.640644 + 31 +0.0 + 0 +LINE + 5 +11D3 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10678.941915 + 30 +0.0 + 11 +4962.500003 + 21 +10700.59255 + 31 +0.0 + 0 +LINE + 5 +11D4 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10743.89382 + 30 +0.0 + 11 +5000.0 + 21 +10765.54445 + 31 +0.0 + 0 +LINE + 5 +11D5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10670.281655 + 30 +0.0 + 11 +4925.000003 + 21 +10678.941915 + 31 +0.0 + 0 +LINE + 5 +11D6 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10722.243185 + 30 +0.0 + 11 +4962.500003 + 21 +10743.89382 + 31 +0.0 + 0 +LINE + 5 +11D7 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10787.19509 + 30 +0.0 + 11 +5000.0 + 21 +10808.84572 + 31 +0.0 + 0 +LINE + 5 +11D8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10713.582925 + 30 +0.0 + 11 +4925.000003 + 21 +10722.243185 + 31 +0.0 + 0 +LINE + 5 +11D9 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10765.544455 + 30 +0.0 + 11 +4962.500003 + 21 +10787.19509 + 31 +0.0 + 0 +LINE + 5 +11DA + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10830.49636 + 30 +0.0 + 11 +5000.0 + 21 +10852.14699 + 31 +0.0 + 0 +LINE + 5 +11DB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10756.884195 + 30 +0.0 + 11 +4925.000003 + 21 +10765.544455 + 31 +0.0 + 0 +LINE + 5 +11DC + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10808.845725 + 30 +0.0 + 11 +4962.500003 + 21 +10830.49636 + 31 +0.0 + 0 +LINE + 5 +11DD + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10873.79763 + 30 +0.0 + 11 +5000.0 + 21 +10895.44826 + 31 +0.0 + 0 +LINE + 5 +11DE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10800.185465 + 30 +0.0 + 11 +4925.000003 + 21 +10808.845725 + 31 +0.0 + 0 +LINE + 5 +11DF + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10852.146995 + 30 +0.0 + 11 +4962.500003 + 21 +10873.79763 + 31 +0.0 + 0 +LINE + 5 +11E0 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10917.0989 + 30 +0.0 + 11 +5000.0 + 21 +10938.74953 + 31 +0.0 + 0 +LINE + 5 +11E1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10843.486735 + 30 +0.0 + 11 +4925.000003 + 21 +10852.146995 + 31 +0.0 + 0 +LINE + 5 +11E2 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10895.448265 + 30 +0.0 + 11 +4962.500003 + 21 +10917.0989 + 31 +0.0 + 0 +LINE + 5 +11E3 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +10960.400171 + 30 +0.0 + 11 +5000.0 + 21 +10982.0508 + 31 +0.0 + 0 +LINE + 5 +11E4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10886.788005 + 30 +0.0 + 11 +4925.000003 + 21 +10895.448265 + 31 +0.0 + 0 +LINE + 5 +11E5 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10938.749535 + 30 +0.0 + 11 +4962.500003 + 21 +10960.400171 + 31 +0.0 + 0 +LINE + 5 +11E6 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +11003.701441 + 30 +0.0 + 11 +5000.0 + 21 +11025.35207 + 31 +0.0 + 0 +LINE + 5 +11E7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10930.089275 + 30 +0.0 + 11 +4925.000003 + 21 +10938.749535 + 31 +0.0 + 0 +LINE + 5 +11E8 + 8 +0 + 62 + 0 + 10 +4950.000003 + 20 +10982.050806 + 30 +0.0 + 11 +4962.500003 + 21 +11003.701441 + 31 +0.0 + 0 +LINE + 5 +11E9 + 8 +0 + 62 + 0 + 10 +4987.500003 + 20 +11047.002711 + 30 +0.0 + 11 +5000.0 + 21 +11068.65334 + 31 +0.0 + 0 +LINE + 5 +11EA + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +10973.390545 + 30 +0.0 + 11 +4925.000004 + 21 +10982.050806 + 31 +0.0 + 0 +LINE + 5 +11EB + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11025.352076 + 30 +0.0 + 11 +4962.500004 + 21 +11047.002711 + 31 +0.0 + 0 +LINE + 5 +11EC + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11090.303981 + 30 +0.0 + 11 +5000.0 + 21 +11111.95461 + 31 +0.0 + 0 +LINE + 5 +11ED + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11016.691815 + 30 +0.0 + 11 +4925.000004 + 21 +11025.352076 + 31 +0.0 + 0 +LINE + 5 +11EE + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11068.653346 + 30 +0.0 + 11 +4962.500004 + 21 +11090.303981 + 31 +0.0 + 0 +LINE + 5 +11EF + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11133.605251 + 30 +0.0 + 11 +5000.0 + 21 +11155.25588 + 31 +0.0 + 0 +LINE + 5 +11F0 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11059.993085 + 30 +0.0 + 11 +4925.000004 + 21 +11068.653346 + 31 +0.0 + 0 +LINE + 5 +11F1 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11111.954616 + 30 +0.0 + 11 +4962.500004 + 21 +11133.605251 + 31 +0.0 + 0 +LINE + 5 +11F2 + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11176.906521 + 30 +0.0 + 11 +5000.0 + 21 +11198.55715 + 31 +0.0 + 0 +LINE + 5 +11F3 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11103.294355 + 30 +0.0 + 11 +4925.000004 + 21 +11111.954616 + 31 +0.0 + 0 +LINE + 5 +11F4 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11155.255886 + 30 +0.0 + 11 +4962.500004 + 21 +11176.906521 + 31 +0.0 + 0 +LINE + 5 +11F5 + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11220.207791 + 30 +0.0 + 11 +5000.0 + 21 +11241.85842 + 31 +0.0 + 0 +LINE + 5 +11F6 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11146.595625 + 30 +0.0 + 11 +4925.000004 + 21 +11155.255886 + 31 +0.0 + 0 +LINE + 5 +11F7 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11198.557156 + 30 +0.0 + 11 +4962.500004 + 21 +11220.207791 + 31 +0.0 + 0 +LINE + 5 +11F8 + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11263.509062 + 30 +0.0 + 11 +5000.0 + 21 +11285.15969 + 31 +0.0 + 0 +LINE + 5 +11F9 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11189.896895 + 30 +0.0 + 11 +4925.000004 + 21 +11198.557156 + 31 +0.0 + 0 +LINE + 5 +11FA + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11241.858426 + 30 +0.0 + 11 +4962.500004 + 21 +11263.509062 + 31 +0.0 + 0 +LINE + 5 +11FB + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11306.810332 + 30 +0.0 + 11 +5000.0 + 21 +11328.46096 + 31 +0.0 + 0 +LINE + 5 +11FC + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11233.198165 + 30 +0.0 + 11 +4925.000004 + 21 +11241.858426 + 31 +0.0 + 0 +LINE + 5 +11FD + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11285.159697 + 30 +0.0 + 11 +4962.500004 + 21 +11306.810332 + 31 +0.0 + 0 +LINE + 5 +11FE + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11350.111602 + 30 +0.0 + 11 +5000.0 + 21 +11371.76223 + 31 +0.0 + 0 +LINE + 5 +11FF + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11276.499435 + 30 +0.0 + 11 +4925.000004 + 21 +11285.159697 + 31 +0.0 + 0 +LINE + 5 +1200 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11328.460967 + 30 +0.0 + 11 +4962.500004 + 21 +11350.111602 + 31 +0.0 + 0 +LINE + 5 +1201 + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11393.412872 + 30 +0.0 + 11 +5000.0 + 21 +11415.0635 + 31 +0.0 + 0 +LINE + 5 +1202 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11319.800705 + 30 +0.0 + 11 +4925.000004 + 21 +11328.460967 + 31 +0.0 + 0 +LINE + 5 +1203 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11371.762237 + 30 +0.0 + 11 +4962.500004 + 21 +11393.412872 + 31 +0.0 + 0 +LINE + 5 +1204 + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11436.714142 + 30 +0.0 + 11 +5000.0 + 21 +11458.36477 + 31 +0.0 + 0 +LINE + 5 +1205 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11363.101975 + 30 +0.0 + 11 +4925.000004 + 21 +11371.762237 + 31 +0.0 + 0 +LINE + 5 +1206 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11415.063507 + 30 +0.0 + 11 +4962.500004 + 21 +11436.714142 + 31 +0.0 + 0 +LINE + 5 +1207 + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11480.015412 + 30 +0.0 + 11 +5000.0 + 21 +11501.66604 + 31 +0.0 + 0 +LINE + 5 +1208 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11406.403245 + 30 +0.0 + 11 +4925.000004 + 21 +11415.063507 + 31 +0.0 + 0 +LINE + 5 +1209 + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11458.364777 + 30 +0.0 + 11 +4962.500004 + 21 +11480.015412 + 31 +0.0 + 0 +LINE + 5 +120A + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11523.316682 + 30 +0.0 + 11 +5000.0 + 21 +11544.96731 + 31 +0.0 + 0 +LINE + 5 +120B + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11449.704515 + 30 +0.0 + 11 +4925.000004 + 21 +11458.364777 + 31 +0.0 + 0 +LINE + 5 +120C + 8 +0 + 62 + 0 + 10 +4950.000004 + 20 +11501.666047 + 30 +0.0 + 11 +4962.500004 + 21 +11523.316682 + 31 +0.0 + 0 +LINE + 5 +120D + 8 +0 + 62 + 0 + 10 +4987.500004 + 20 +11566.617953 + 30 +0.0 + 11 +5000.0 + 21 +11588.26858 + 31 +0.0 + 0 +LINE + 5 +120E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11493.005785 + 30 +0.0 + 11 +4925.000005 + 21 +11501.666047 + 31 +0.0 + 0 +LINE + 5 +120F + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11544.967317 + 30 +0.0 + 11 +4962.500005 + 21 +11566.617953 + 31 +0.0 + 0 +LINE + 5 +1210 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11609.919223 + 30 +0.0 + 11 +5000.0 + 21 +11631.56985 + 31 +0.0 + 0 +LINE + 5 +1211 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11536.307055 + 30 +0.0 + 11 +4925.000005 + 21 +11544.967317 + 31 +0.0 + 0 +LINE + 5 +1212 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11588.268588 + 30 +0.0 + 11 +4962.500005 + 21 +11609.919223 + 31 +0.0 + 0 +LINE + 5 +1213 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11653.220493 + 30 +0.0 + 11 +5000.0 + 21 +11674.87112 + 31 +0.0 + 0 +LINE + 5 +1214 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11579.608325 + 30 +0.0 + 11 +4925.000005 + 21 +11588.268588 + 31 +0.0 + 0 +LINE + 5 +1215 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11631.569858 + 30 +0.0 + 11 +4962.500005 + 21 +11653.220493 + 31 +0.0 + 0 +LINE + 5 +1216 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11696.521763 + 30 +0.0 + 11 +5000.0 + 21 +11718.17239 + 31 +0.0 + 0 +LINE + 5 +1217 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11622.909595 + 30 +0.0 + 11 +4925.000005 + 21 +11631.569858 + 31 +0.0 + 0 +LINE + 5 +1218 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11674.871128 + 30 +0.0 + 11 +4962.500005 + 21 +11696.521763 + 31 +0.0 + 0 +LINE + 5 +1219 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11739.823033 + 30 +0.0 + 11 +5000.0 + 21 +11761.47366 + 31 +0.0 + 0 +LINE + 5 +121A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11666.210865 + 30 +0.0 + 11 +4925.000005 + 21 +11674.871128 + 31 +0.0 + 0 +LINE + 5 +121B + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11718.172398 + 30 +0.0 + 11 +4962.500005 + 21 +11739.823033 + 31 +0.0 + 0 +LINE + 5 +121C + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11783.124303 + 30 +0.0 + 11 +5000.0 + 21 +11804.77493 + 31 +0.0 + 0 +LINE + 5 +121D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11709.512135 + 30 +0.0 + 11 +4925.000005 + 21 +11718.172398 + 31 +0.0 + 0 +LINE + 5 +121E + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11761.473668 + 30 +0.0 + 11 +4962.500005 + 21 +11783.124303 + 31 +0.0 + 0 +LINE + 5 +121F + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11826.425573 + 30 +0.0 + 11 +5000.0 + 21 +11848.0762 + 31 +0.0 + 0 +LINE + 5 +1220 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11752.813405 + 30 +0.0 + 11 +4925.000005 + 21 +11761.473668 + 31 +0.0 + 0 +LINE + 5 +1221 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11804.774938 + 30 +0.0 + 11 +4962.500005 + 21 +11826.425573 + 31 +0.0 + 0 +LINE + 5 +1222 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11869.726844 + 30 +0.0 + 11 +5000.0 + 21 +11891.37747 + 31 +0.0 + 0 +LINE + 5 +1223 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11796.114675 + 30 +0.0 + 11 +4925.000005 + 21 +11804.774938 + 31 +0.0 + 0 +LINE + 5 +1224 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11848.076208 + 30 +0.0 + 11 +4962.500005 + 21 +11869.726844 + 31 +0.0 + 0 +LINE + 5 +1225 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11913.028114 + 30 +0.0 + 11 +5000.0 + 21 +11934.67874 + 31 +0.0 + 0 +LINE + 5 +1226 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11839.415945 + 30 +0.0 + 11 +4925.000005 + 21 +11848.076208 + 31 +0.0 + 0 +LINE + 5 +1227 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11891.377479 + 30 +0.0 + 11 +4962.500005 + 21 +11913.028114 + 31 +0.0 + 0 +LINE + 5 +1228 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11956.329384 + 30 +0.0 + 11 +5000.0 + 21 +11977.98001 + 31 +0.0 + 0 +LINE + 5 +1229 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11882.717215 + 30 +0.0 + 11 +4925.000005 + 21 +11891.377479 + 31 +0.0 + 0 +LINE + 5 +122A + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11934.678749 + 30 +0.0 + 11 +4962.500005 + 21 +11956.329384 + 31 +0.0 + 0 +LINE + 5 +122B + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +11999.630654 + 30 +0.0 + 11 +5000.0 + 21 +12021.28128 + 31 +0.0 + 0 +LINE + 5 +122C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11926.018485 + 30 +0.0 + 11 +4925.000005 + 21 +11934.678749 + 31 +0.0 + 0 +LINE + 5 +122D + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +11977.980019 + 30 +0.0 + 11 +4962.500005 + 21 +11999.630654 + 31 +0.0 + 0 +LINE + 5 +122E + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +12042.931924 + 30 +0.0 + 11 +5000.0 + 21 +12064.58255 + 31 +0.0 + 0 +LINE + 5 +122F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +11969.319755 + 30 +0.0 + 11 +4925.000005 + 21 +11977.980019 + 31 +0.0 + 0 +LINE + 5 +1230 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +12021.281289 + 30 +0.0 + 11 +4962.500005 + 21 +12042.931924 + 31 +0.0 + 0 +LINE + 5 +1231 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +12086.233194 + 30 +0.0 + 11 +5000.0 + 21 +12107.88382 + 31 +0.0 + 0 +LINE + 5 +1232 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12012.621025 + 30 +0.0 + 11 +4925.000005 + 21 +12021.281289 + 31 +0.0 + 0 +LINE + 5 +1233 + 8 +0 + 62 + 0 + 10 +4950.000005 + 20 +12064.582559 + 30 +0.0 + 11 +4962.500005 + 21 +12086.233194 + 31 +0.0 + 0 +LINE + 5 +1234 + 8 +0 + 62 + 0 + 10 +4987.500005 + 20 +12129.534464 + 30 +0.0 + 11 +5000.0 + 21 +12151.18509 + 31 +0.0 + 0 +LINE + 5 +1235 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12055.922295 + 30 +0.0 + 11 +4925.000006 + 21 +12064.582559 + 31 +0.0 + 0 +LINE + 5 +1236 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12107.883829 + 30 +0.0 + 11 +4962.500006 + 21 +12129.534464 + 31 +0.0 + 0 +LINE + 5 +1237 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12172.835735 + 30 +0.0 + 11 +5000.0 + 21 +12194.48636 + 31 +0.0 + 0 +LINE + 5 +1238 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12099.223565 + 30 +0.0 + 11 +4925.000006 + 21 +12107.883829 + 31 +0.0 + 0 +LINE + 5 +1239 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12151.185099 + 30 +0.0 + 11 +4962.500006 + 21 +12172.835735 + 31 +0.0 + 0 +LINE + 5 +123A + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12216.137005 + 30 +0.0 + 11 +5000.0 + 21 +12237.78763 + 31 +0.0 + 0 +LINE + 5 +123B + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12142.524835 + 30 +0.0 + 11 +4925.000006 + 21 +12151.185099 + 31 +0.0 + 0 +LINE + 5 +123C + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12194.48637 + 30 +0.0 + 11 +4962.500006 + 21 +12216.137005 + 31 +0.0 + 0 +LINE + 5 +123D + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12259.438275 + 30 +0.0 + 11 +5000.0 + 21 +12281.0889 + 31 +0.0 + 0 +LINE + 5 +123E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12185.826105 + 30 +0.0 + 11 +4925.000006 + 21 +12194.48637 + 31 +0.0 + 0 +LINE + 5 +123F + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12237.78764 + 30 +0.0 + 11 +4962.500006 + 21 +12259.438275 + 31 +0.0 + 0 +LINE + 5 +1240 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12302.739545 + 30 +0.0 + 11 +5000.0 + 21 +12324.39017 + 31 +0.0 + 0 +LINE + 5 +1241 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12229.127375 + 30 +0.0 + 11 +4925.000006 + 21 +12237.78764 + 31 +0.0 + 0 +LINE + 5 +1242 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12281.08891 + 30 +0.0 + 11 +4962.500006 + 21 +12302.739545 + 31 +0.0 + 0 +LINE + 5 +1243 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12346.040815 + 30 +0.0 + 11 +5000.0 + 21 +12367.69144 + 31 +0.0 + 0 +LINE + 5 +1244 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12272.428645 + 30 +0.0 + 11 +4925.000006 + 21 +12281.08891 + 31 +0.0 + 0 +LINE + 5 +1245 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12324.39018 + 30 +0.0 + 11 +4962.500006 + 21 +12346.040815 + 31 +0.0 + 0 +LINE + 5 +1246 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12389.342085 + 30 +0.0 + 11 +5000.0 + 21 +12410.99271 + 31 +0.0 + 0 +LINE + 5 +1247 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12315.729915 + 30 +0.0 + 11 +4925.000006 + 21 +12324.39018 + 31 +0.0 + 0 +LINE + 5 +1248 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12367.69145 + 30 +0.0 + 11 +4962.500006 + 21 +12389.342085 + 31 +0.0 + 0 +LINE + 5 +1249 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12432.643355 + 30 +0.0 + 11 +5000.0 + 21 +12454.29398 + 31 +0.0 + 0 +LINE + 5 +124A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12359.031185 + 30 +0.0 + 11 +4925.000006 + 21 +12367.69145 + 31 +0.0 + 0 +LINE + 5 +124B + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12410.99272 + 30 +0.0 + 11 +4962.500006 + 21 +12432.643355 + 31 +0.0 + 0 +LINE + 5 +124C + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12475.944626 + 30 +0.0 + 11 +5000.0 + 21 +12497.59525 + 31 +0.0 + 0 +LINE + 5 +124D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12402.332455 + 30 +0.0 + 11 +4925.000006 + 21 +12410.99272 + 31 +0.0 + 0 +LINE + 5 +124E + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12454.29399 + 30 +0.0 + 11 +4962.500006 + 21 +12475.944626 + 31 +0.0 + 0 +LINE + 5 +124F + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12519.245896 + 30 +0.0 + 11 +5000.0 + 21 +12540.89652 + 31 +0.0 + 0 +LINE + 5 +1250 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12445.633725 + 30 +0.0 + 11 +4925.000006 + 21 +12454.29399 + 31 +0.0 + 0 +LINE + 5 +1251 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12497.595261 + 30 +0.0 + 11 +4962.500006 + 21 +12519.245896 + 31 +0.0 + 0 +LINE + 5 +1252 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12562.547166 + 30 +0.0 + 11 +5000.0 + 21 +12584.19779 + 31 +0.0 + 0 +LINE + 5 +1253 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12488.934995 + 30 +0.0 + 11 +4925.000006 + 21 +12497.595261 + 31 +0.0 + 0 +LINE + 5 +1254 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12540.896531 + 30 +0.0 + 11 +4962.500006 + 21 +12562.547166 + 31 +0.0 + 0 +LINE + 5 +1255 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12605.848436 + 30 +0.0 + 11 +5000.0 + 21 +12627.49906 + 31 +0.0 + 0 +LINE + 5 +1256 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12532.236265 + 30 +0.0 + 11 +4925.000006 + 21 +12540.896531 + 31 +0.0 + 0 +LINE + 5 +1257 + 8 +0 + 62 + 0 + 10 +4950.000006 + 20 +12584.197801 + 30 +0.0 + 11 +4962.500006 + 21 +12605.848436 + 31 +0.0 + 0 +LINE + 5 +1258 + 8 +0 + 62 + 0 + 10 +4987.500006 + 20 +12649.149706 + 30 +0.0 + 11 +5000.0 + 21 +12670.80033 + 31 +0.0 + 0 +LINE + 5 +1259 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12575.537535 + 30 +0.0 + 11 +4925.000007 + 21 +12584.197801 + 31 +0.0 + 0 +LINE + 5 +125A + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12627.499071 + 30 +0.0 + 11 +4962.500007 + 21 +12649.149706 + 31 +0.0 + 0 +LINE + 5 +125B + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12692.450976 + 30 +0.0 + 11 +5000.0 + 21 +12714.1016 + 31 +0.0 + 0 +LINE + 5 +125C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12618.838805 + 30 +0.0 + 11 +4925.000007 + 21 +12627.499071 + 31 +0.0 + 0 +LINE + 5 +125D + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12670.800341 + 30 +0.0 + 11 +4962.500007 + 21 +12692.450976 + 31 +0.0 + 0 +LINE + 5 +125E + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12735.752246 + 30 +0.0 + 11 +5000.0 + 21 +12757.40287 + 31 +0.0 + 0 +LINE + 5 +125F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12662.140075 + 30 +0.0 + 11 +4925.000007 + 21 +12670.800341 + 31 +0.0 + 0 +LINE + 5 +1260 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12714.101611 + 30 +0.0 + 11 +4962.500007 + 21 +12735.752246 + 31 +0.0 + 0 +LINE + 5 +1261 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12779.053517 + 30 +0.0 + 11 +5000.0 + 21 +12800.70414 + 31 +0.0 + 0 +LINE + 5 +1262 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12705.441345 + 30 +0.0 + 11 +4925.000007 + 21 +12714.101611 + 31 +0.0 + 0 +LINE + 5 +1263 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12757.402881 + 30 +0.0 + 11 +4962.500007 + 21 +12779.053516 + 31 +0.0 + 0 +LINE + 5 +1264 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12822.354787 + 30 +0.0 + 11 +5000.0 + 21 +12844.00541 + 31 +0.0 + 0 +LINE + 5 +1265 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12748.742615 + 30 +0.0 + 11 +4925.000007 + 21 +12757.402881 + 31 +0.0 + 0 +LINE + 5 +1266 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12800.704152 + 30 +0.0 + 11 +4962.500007 + 21 +12822.354787 + 31 +0.0 + 0 +LINE + 5 +1267 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12865.656057 + 30 +0.0 + 11 +5000.0 + 21 +12887.30668 + 31 +0.0 + 0 +LINE + 5 +1268 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12792.043885 + 30 +0.0 + 11 +4925.000007 + 21 +12800.704151 + 31 +0.0 + 0 +LINE + 5 +1269 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12844.005422 + 30 +0.0 + 11 +4962.500007 + 21 +12865.656057 + 31 +0.0 + 0 +LINE + 5 +126A + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12908.957327 + 30 +0.0 + 11 +5000.0 + 21 +12930.60795 + 31 +0.0 + 0 +LINE + 5 +126B + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12835.345155 + 30 +0.0 + 11 +4925.000007 + 21 +12844.005422 + 31 +0.0 + 0 +LINE + 5 +126C + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12887.306692 + 30 +0.0 + 11 +4962.500007 + 21 +12908.957327 + 31 +0.0 + 0 +LINE + 5 +126D + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12952.258597 + 30 +0.0 + 11 +5000.0 + 21 +12973.90922 + 31 +0.0 + 0 +LINE + 5 +126E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12878.646425 + 30 +0.0 + 11 +4925.000007 + 21 +12887.306692 + 31 +0.0 + 0 +LINE + 5 +126F + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12930.607962 + 30 +0.0 + 11 +4962.500007 + 21 +12952.258597 + 31 +0.0 + 0 +LINE + 5 +1270 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +12995.559867 + 30 +0.0 + 11 +5000.0 + 21 +13017.21049 + 31 +0.0 + 0 +LINE + 5 +1271 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12921.947695 + 30 +0.0 + 11 +4925.000007 + 21 +12930.607962 + 31 +0.0 + 0 +LINE + 5 +1272 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +12973.909232 + 30 +0.0 + 11 +4962.500007 + 21 +12995.559867 + 31 +0.0 + 0 +LINE + 5 +1273 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +13038.861137 + 30 +0.0 + 11 +5000.0 + 21 +13060.51176 + 31 +0.0 + 0 +LINE + 5 +1274 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +12965.248965 + 30 +0.0 + 11 +4925.000007 + 21 +12973.909232 + 31 +0.0 + 0 +LINE + 5 +1275 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +13017.210502 + 30 +0.0 + 11 +4962.500007 + 21 +13038.861137 + 31 +0.0 + 0 +LINE + 5 +1276 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +13082.162408 + 30 +0.0 + 11 +5000.0 + 21 +13103.81303 + 31 +0.0 + 0 +LINE + 5 +1277 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13008.550235 + 30 +0.0 + 11 +4925.000007 + 21 +13017.210502 + 31 +0.0 + 0 +LINE + 5 +1278 + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +13060.511772 + 30 +0.0 + 11 +4962.500007 + 21 +13082.162407 + 31 +0.0 + 0 +LINE + 5 +1279 + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +13125.463678 + 30 +0.0 + 11 +5000.0 + 21 +13147.1143 + 31 +0.0 + 0 +LINE + 5 +127A + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13051.851505 + 30 +0.0 + 11 +4925.000007 + 21 +13060.511772 + 31 +0.0 + 0 +LINE + 5 +127B + 8 +0 + 62 + 0 + 10 +4950.000007 + 20 +13103.813043 + 30 +0.0 + 11 +4962.500007 + 21 +13125.463678 + 31 +0.0 + 0 +LINE + 5 +127C + 8 +0 + 62 + 0 + 10 +4987.500007 + 20 +13168.764948 + 30 +0.0 + 11 +5000.0 + 21 +13190.41557 + 31 +0.0 + 0 +LINE + 5 +127D + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13095.152775 + 30 +0.0 + 11 +4925.000008 + 21 +13103.813042 + 31 +0.0 + 0 +LINE + 5 +127E + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13147.114313 + 30 +0.0 + 11 +4962.500008 + 21 +13168.764948 + 31 +0.0 + 0 +LINE + 5 +127F + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13212.066218 + 30 +0.0 + 11 +5000.0 + 21 +13233.71684 + 31 +0.0 + 0 +LINE + 5 +1280 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13138.454045 + 30 +0.0 + 11 +4925.000008 + 21 +13147.114313 + 31 +0.0 + 0 +LINE + 5 +1281 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13190.415583 + 30 +0.0 + 11 +4962.500008 + 21 +13212.066218 + 31 +0.0 + 0 +LINE + 5 +1282 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13255.367488 + 30 +0.0 + 11 +5000.0 + 21 +13277.01811 + 31 +0.0 + 0 +LINE + 5 +1283 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13181.755315 + 30 +0.0 + 11 +4925.000008 + 21 +13190.415583 + 31 +0.0 + 0 +LINE + 5 +1284 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13233.716853 + 30 +0.0 + 11 +4962.500008 + 21 +13255.367488 + 31 +0.0 + 0 +LINE + 5 +1285 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13298.668758 + 30 +0.0 + 11 +5000.0 + 21 +13320.31938 + 31 +0.0 + 0 +LINE + 5 +1286 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13225.056585 + 30 +0.0 + 11 +4925.000008 + 21 +13233.716853 + 31 +0.0 + 0 +LINE + 5 +1287 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13277.018123 + 30 +0.0 + 11 +4962.500008 + 21 +13298.668758 + 31 +0.0 + 0 +LINE + 5 +1288 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13341.970028 + 30 +0.0 + 11 +5000.0 + 21 +13363.62065 + 31 +0.0 + 0 +LINE + 5 +1289 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13268.357855 + 30 +0.0 + 11 +4925.000008 + 21 +13277.018123 + 31 +0.0 + 0 +LINE + 5 +128A + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13320.319393 + 30 +0.0 + 11 +4962.500008 + 21 +13341.970028 + 31 +0.0 + 0 +LINE + 5 +128B + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13385.271299 + 30 +0.0 + 11 +5000.0 + 21 +13406.92192 + 31 +0.0 + 0 +LINE + 5 +128C + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13311.659125 + 30 +0.0 + 11 +4925.000008 + 21 +13320.319393 + 31 +0.0 + 0 +LINE + 5 +128D + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13363.620663 + 30 +0.0 + 11 +4962.500008 + 21 +13385.271298 + 31 +0.0 + 0 +LINE + 5 +128E + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13428.572569 + 30 +0.0 + 11 +5000.0 + 21 +13450.22319 + 31 +0.0 + 0 +LINE + 5 +128F + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13354.960395 + 30 +0.0 + 11 +4925.000008 + 21 +13363.620663 + 31 +0.0 + 0 +LINE + 5 +1290 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13406.921934 + 30 +0.0 + 11 +4962.500008 + 21 +13428.572569 + 31 +0.0 + 0 +LINE + 5 +1291 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13471.873839 + 30 +0.0 + 11 +5000.0 + 21 +13493.52446 + 31 +0.0 + 0 +LINE + 5 +1292 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13398.261665 + 30 +0.0 + 11 +4925.000008 + 21 +13406.921933 + 31 +0.0 + 0 +LINE + 5 +1293 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13450.223204 + 30 +0.0 + 11 +4962.500008 + 21 +13471.873839 + 31 +0.0 + 0 +LINE + 5 +1294 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13515.175109 + 30 +0.0 + 11 +5000.0 + 21 +13536.82573 + 31 +0.0 + 0 +LINE + 5 +1295 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13441.562935 + 30 +0.0 + 11 +4925.000008 + 21 +13450.223204 + 31 +0.0 + 0 +LINE + 5 +1296 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13493.524474 + 30 +0.0 + 11 +4962.500008 + 21 +13515.175109 + 31 +0.0 + 0 +LINE + 5 +1297 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13558.476379 + 30 +0.0 + 11 +5000.0 + 21 +13580.127 + 31 +0.0 + 0 +LINE + 5 +1298 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13484.864205 + 30 +0.0 + 11 +4925.000008 + 21 +13493.524474 + 31 +0.0 + 0 +LINE + 5 +1299 + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13536.825744 + 30 +0.0 + 11 +4962.500008 + 21 +13558.476379 + 31 +0.0 + 0 +LINE + 5 +129A + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13601.777649 + 30 +0.0 + 11 +5000.0 + 21 +13623.42827 + 31 +0.0 + 0 +LINE + 5 +129B + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13528.165475 + 30 +0.0 + 11 +4925.000008 + 21 +13536.825744 + 31 +0.0 + 0 +LINE + 5 +129C + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13580.127014 + 30 +0.0 + 11 +4962.500008 + 21 +13601.777649 + 31 +0.0 + 0 +LINE + 5 +129D + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13645.078919 + 30 +0.0 + 11 +5000.0 + 21 +13666.72954 + 31 +0.0 + 0 +LINE + 5 +129E + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13571.466745 + 30 +0.0 + 11 +4925.000008 + 21 +13580.127014 + 31 +0.0 + 0 +LINE + 5 +129F + 8 +0 + 62 + 0 + 10 +4950.000008 + 20 +13623.428284 + 30 +0.0 + 11 +4962.500008 + 21 +13645.078919 + 31 +0.0 + 0 +LINE + 5 +12A0 + 8 +0 + 62 + 0 + 10 +4987.500008 + 20 +13688.38019 + 30 +0.0 + 11 +5000.0 + 21 +13710.03081 + 31 +0.0 + 0 +LINE + 5 +12A1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13614.768015 + 30 +0.0 + 11 +4925.000009 + 21 +13623.428284 + 31 +0.0 + 0 +LINE + 5 +12A2 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13666.729554 + 30 +0.0 + 11 +4962.500009 + 21 +13688.380189 + 31 +0.0 + 0 +LINE + 5 +12A3 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13731.68146 + 30 +0.0 + 11 +5000.0 + 21 +13753.33208 + 31 +0.0 + 0 +LINE + 5 +12A4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13658.069285 + 30 +0.0 + 11 +4925.000009 + 21 +13666.729554 + 31 +0.0 + 0 +LINE + 5 +12A5 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13710.030825 + 30 +0.0 + 11 +4962.500009 + 21 +13731.68146 + 31 +0.0 + 0 +LINE + 5 +12A6 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13774.98273 + 30 +0.0 + 11 +5000.0 + 21 +13796.63335 + 31 +0.0 + 0 +LINE + 5 +12A7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13701.370555 + 30 +0.0 + 11 +4925.000009 + 21 +13710.030824 + 31 +0.0 + 0 +LINE + 5 +12A8 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13753.332095 + 30 +0.0 + 11 +4962.500009 + 21 +13774.98273 + 31 +0.0 + 0 +LINE + 5 +12A9 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13818.284 + 30 +0.0 + 11 +5000.0 + 21 +13839.93462 + 31 +0.0 + 0 +LINE + 5 +12AA + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13744.671825 + 30 +0.0 + 11 +4925.000009 + 21 +13753.332095 + 31 +0.0 + 0 +LINE + 5 +12AB + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13796.633365 + 30 +0.0 + 11 +4962.500009 + 21 +13818.284 + 31 +0.0 + 0 +LINE + 5 +12AC + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13861.58527 + 30 +0.0 + 11 +5000.0 + 21 +13883.23589 + 31 +0.0 + 0 +LINE + 5 +12AD + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13787.973095 + 30 +0.0 + 11 +4925.000009 + 21 +13796.633365 + 31 +0.0 + 0 +LINE + 5 +12AE + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13839.934635 + 30 +0.0 + 11 +4962.500009 + 21 +13861.58527 + 31 +0.0 + 0 +LINE + 5 +12AF + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13904.88654 + 30 +0.0 + 11 +5000.0 + 21 +13926.53716 + 31 +0.0 + 0 +LINE + 5 +12B0 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13831.274365 + 30 +0.0 + 11 +4925.000009 + 21 +13839.934635 + 31 +0.0 + 0 +LINE + 5 +12B1 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13883.235905 + 30 +0.0 + 11 +4962.500009 + 21 +13904.88654 + 31 +0.0 + 0 +LINE + 5 +12B2 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13948.18781 + 30 +0.0 + 11 +5000.0 + 21 +13969.83843 + 31 +0.0 + 0 +LINE + 5 +12B3 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13874.575635 + 30 +0.0 + 11 +4925.000009 + 21 +13883.235905 + 31 +0.0 + 0 +LINE + 5 +12B4 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13926.537175 + 30 +0.0 + 11 +4962.500009 + 21 +13948.18781 + 31 +0.0 + 0 +LINE + 5 +12B5 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +13991.489081 + 30 +0.0 + 11 +5000.0 + 21 +14013.1397 + 31 +0.0 + 0 +LINE + 5 +12B6 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13917.876905 + 30 +0.0 + 11 +4925.000009 + 21 +13926.537175 + 31 +0.0 + 0 +LINE + 5 +12B7 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +13969.838445 + 30 +0.0 + 11 +4962.500009 + 21 +13991.48908 + 31 +0.0 + 0 +LINE + 5 +12B8 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +14034.790351 + 30 +0.0 + 11 +5000.0 + 21 +14056.44097 + 31 +0.0 + 0 +LINE + 5 +12B9 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +13961.178175 + 30 +0.0 + 11 +4925.000009 + 21 +13969.838445 + 31 +0.0 + 0 +LINE + 5 +12BA + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +14013.139716 + 30 +0.0 + 11 +4962.500009 + 21 +14034.790351 + 31 +0.0 + 0 +LINE + 5 +12BB + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +14078.091621 + 30 +0.0 + 11 +5000.0 + 21 +14099.74224 + 31 +0.0 + 0 +LINE + 5 +12BC + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14004.479445 + 30 +0.0 + 11 +4925.000009 + 21 +14013.139715 + 31 +0.0 + 0 +LINE + 5 +12BD + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +14056.440986 + 30 +0.0 + 11 +4962.500009 + 21 +14078.091621 + 31 +0.0 + 0 +LINE + 5 +12BE + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +14121.392891 + 30 +0.0 + 11 +5000.0 + 21 +14143.04351 + 31 +0.0 + 0 +LINE + 5 +12BF + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14047.780715 + 30 +0.0 + 11 +4925.000009 + 21 +14056.440986 + 31 +0.0 + 0 +LINE + 5 +12C0 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +14099.742256 + 30 +0.0 + 11 +4962.500009 + 21 +14121.392891 + 31 +0.0 + 0 +LINE + 5 +12C1 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +14164.694161 + 30 +0.0 + 11 +5000.0 + 21 +14186.34478 + 31 +0.0 + 0 +LINE + 5 +12C2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14091.081985 + 30 +0.0 + 11 +4925.000009 + 21 +14099.742256 + 31 +0.0 + 0 +LINE + 5 +12C3 + 8 +0 + 62 + 0 + 10 +4950.000009 + 20 +14143.043526 + 30 +0.0 + 11 +4962.500009 + 21 +14164.694161 + 31 +0.0 + 0 +LINE + 5 +12C4 + 8 +0 + 62 + 0 + 10 +4987.500009 + 20 +14207.995431 + 30 +0.0 + 11 +5000.0 + 21 +14229.64605 + 31 +0.0 + 0 +LINE + 5 +12C5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14134.383255 + 30 +0.0 + 11 +4925.00001 + 21 +14143.043526 + 31 +0.0 + 0 +LINE + 5 +12C6 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14186.344796 + 30 +0.0 + 11 +4962.50001 + 21 +14207.995431 + 31 +0.0 + 0 +LINE + 5 +12C7 + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14251.296701 + 30 +0.0 + 11 +5000.0 + 21 +14272.94732 + 31 +0.0 + 0 +LINE + 5 +12C8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14177.684525 + 30 +0.0 + 11 +4925.00001 + 21 +14186.344796 + 31 +0.0 + 0 +LINE + 5 +12C9 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14229.646066 + 30 +0.0 + 11 +4962.50001 + 21 +14251.296701 + 31 +0.0 + 0 +LINE + 5 +12CA + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14294.597972 + 30 +0.0 + 11 +5000.0 + 21 +14316.24859 + 31 +0.0 + 0 +LINE + 5 +12CB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14220.985795 + 30 +0.0 + 11 +4925.00001 + 21 +14229.646066 + 31 +0.0 + 0 +LINE + 5 +12CC + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14272.947336 + 30 +0.0 + 11 +4962.50001 + 21 +14294.597971 + 31 +0.0 + 0 +LINE + 5 +12CD + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14337.899242 + 30 +0.0 + 11 +5000.0 + 21 +14359.54986 + 31 +0.0 + 0 +LINE + 5 +12CE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14264.287065 + 30 +0.0 + 11 +4925.00001 + 21 +14272.947336 + 31 +0.0 + 0 +LINE + 5 +12CF + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14316.248607 + 30 +0.0 + 11 +4962.50001 + 21 +14337.899242 + 31 +0.0 + 0 +LINE + 5 +12D0 + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14381.200512 + 30 +0.0 + 11 +5000.0 + 21 +14402.85113 + 31 +0.0 + 0 +LINE + 5 +12D1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14307.588335 + 30 +0.0 + 11 +4925.00001 + 21 +14316.248606 + 31 +0.0 + 0 +LINE + 5 +12D2 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14359.549877 + 30 +0.0 + 11 +4962.50001 + 21 +14381.200512 + 31 +0.0 + 0 +LINE + 5 +12D3 + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14424.501782 + 30 +0.0 + 11 +5000.0 + 21 +14446.1524 + 31 +0.0 + 0 +LINE + 5 +12D4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14350.889605 + 30 +0.0 + 11 +4925.00001 + 21 +14359.549877 + 31 +0.0 + 0 +LINE + 5 +12D5 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14402.851147 + 30 +0.0 + 11 +4962.50001 + 21 +14424.501782 + 31 +0.0 + 0 +LINE + 5 +12D6 + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14467.803052 + 30 +0.0 + 11 +5000.0 + 21 +14489.45367 + 31 +0.0 + 0 +LINE + 5 +12D7 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14394.190875 + 30 +0.0 + 11 +4925.00001 + 21 +14402.851147 + 31 +0.0 + 0 +LINE + 5 +12D8 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14446.152417 + 30 +0.0 + 11 +4962.50001 + 21 +14467.803052 + 31 +0.0 + 0 +LINE + 5 +12D9 + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14511.104322 + 30 +0.0 + 11 +5000.0 + 21 +14532.75494 + 31 +0.0 + 0 +LINE + 5 +12DA + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14437.492145 + 30 +0.0 + 11 +4925.00001 + 21 +14446.152417 + 31 +0.0 + 0 +LINE + 5 +12DB + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14489.453687 + 30 +0.0 + 11 +4962.50001 + 21 +14511.104322 + 31 +0.0 + 0 +LINE + 5 +12DC + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14554.405592 + 30 +0.0 + 11 +5000.0 + 21 +14576.05621 + 31 +0.0 + 0 +LINE + 5 +12DD + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14480.793415 + 30 +0.0 + 11 +4925.00001 + 21 +14489.453687 + 31 +0.0 + 0 +LINE + 5 +12DE + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14532.754957 + 30 +0.0 + 11 +4962.50001 + 21 +14554.405592 + 31 +0.0 + 0 +LINE + 5 +12DF + 8 +0 + 62 + 0 + 10 +4987.50001 + 20 +14597.706863 + 30 +0.0 + 11 +5000.0 + 21 +14619.35748 + 31 +0.0 + 0 +LINE + 5 +12E0 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14524.094685 + 30 +0.0 + 11 +4925.00001 + 21 +14532.754957 + 31 +0.0 + 0 +LINE + 5 +12E1 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14576.056227 + 30 +0.0 + 11 +4962.50001 + 21 +14597.706862 + 31 +0.0 + 0 +LINE + 5 +12E2 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14567.395955 + 30 +0.0 + 11 +4925.00001 + 21 +14576.056227 + 31 +0.0 + 0 +LINE + 5 +12E3 + 8 +0 + 62 + 0 + 10 +4950.00001 + 20 +14619.357498 + 30 +0.0 + 11 +4953.979398 + 21 +14626.25 + 31 +0.0 + 0 +LINE + 5 +12E4 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +14610.697225 + 30 +0.0 + 11 +4925.00001 + 21 +14619.357497 + 31 +0.0 + 0 +LINE + 5 +12E5 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9371.243555 + 30 +0.0 + 11 +4925.0 + 21 +9379.90381 + 31 +0.0 + 0 +LINE + 5 +12E6 + 8 +0 + 62 + 0 + 10 +4950.0 + 20 +9423.20508 + 30 +0.0 + 11 +4962.5 + 21 +9444.855716 + 31 +0.0 + 0 +LINE + 5 +12E7 + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9488.156986 + 30 +0.0 + 11 +5000.0 + 21 +9509.80762 + 31 +0.0 + 0 +LINE + 5 +12E8 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9327.942285 + 30 +0.0 + 11 +4925.0 + 21 +9336.60254 + 31 +0.0 + 0 +LINE + 5 +12E9 + 8 +0 + 62 + 0 + 10 +4950.0 + 20 +9379.90381 + 30 +0.0 + 11 +4962.5 + 21 +9401.554445 + 31 +0.0 + 0 +LINE + 5 +12EA + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9444.855716 + 30 +0.0 + 11 +5000.0 + 21 +9466.50635 + 31 +0.0 + 0 +LINE + 5 +12EB + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9284.641015 + 30 +0.0 + 11 +4925.0 + 21 +9293.30127 + 31 +0.0 + 0 +LINE + 5 +12EC + 8 +0 + 62 + 0 + 10 +4950.0 + 20 +9336.60254 + 30 +0.0 + 11 +4962.5 + 21 +9358.253175 + 31 +0.0 + 0 +LINE + 5 +12ED + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9401.554445 + 30 +0.0 + 11 +5000.0 + 21 +9423.20508 + 31 +0.0 + 0 +LINE + 5 +12EE + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9241.339745 + 30 +0.0 + 11 +4925.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +12EF + 8 +0 + 62 + 0 + 10 +4950.0 + 20 +9293.30127 + 30 +0.0 + 11 +4962.5 + 21 +9314.951905 + 31 +0.0 + 0 +LINE + 5 +12F0 + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9358.253175 + 30 +0.0 + 11 +5000.0 + 21 +9379.90381 + 31 +0.0 + 0 +LINE + 5 +12F1 + 8 +0 + 62 + 0 + 10 +4920.0 + 20 +9198.038475 + 30 +0.0 + 11 +4925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +12F2 + 8 +0 + 62 + 0 + 10 +4950.0 + 20 +9250.0 + 30 +0.0 + 11 +4962.5 + 21 +9271.650635 + 31 +0.0 + 0 +LINE + 5 +12F3 + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9314.951905 + 30 +0.0 + 11 +5000.0 + 21 +9336.60254 + 31 +0.0 + 0 +LINE + 5 +12F4 + 8 +0 + 62 + 0 + 10 +4950.0 + 20 +9206.69873 + 30 +0.0 + 11 +4962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +12F5 + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9271.650635 + 30 +0.0 + 11 +5000.0 + 21 +9293.30127 + 31 +0.0 + 0 +LINE + 5 +12F6 + 8 +0 + 62 + 0 + 10 +4953.811978 + 20 +9170.0 + 30 +0.0 + 11 +4962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +12F7 + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9228.349365 + 30 +0.0 + 11 +5000.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +12F8 + 8 +0 + 62 + 0 + 10 +4987.5 + 20 +9185.048095 + 30 +0.0 + 11 +5000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +12F9 + 8 +0 + 62 + 0 + 10 +5025.0 + 20 +9206.69873 + 30 +0.0 + 11 +5037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +12FA + 8 +0 + 62 + 0 + 10 +5028.811978 + 20 +9170.0 + 30 +0.0 + 11 +5037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +12FB + 8 +0 + 62 + 0 + 10 +5062.5 + 20 +9228.349365 + 30 +0.0 + 11 +5075.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +12FC + 8 +0 + 62 + 0 + 10 +5062.5 + 20 +9185.048095 + 30 +0.0 + 11 +5075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +12FD + 8 +0 + 62 + 0 + 10 +5100.0 + 20 +9206.69873 + 30 +0.0 + 11 +5112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +12FE + 8 +0 + 62 + 0 + 10 +5103.811978 + 20 +9170.0 + 30 +0.0 + 11 +5112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +12FF + 8 +0 + 62 + 0 + 10 +5137.5 + 20 +9228.349365 + 30 +0.0 + 11 +5149.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1300 + 8 +0 + 62 + 0 + 10 +5137.499999 + 20 +9185.048095 + 30 +0.0 + 11 +5149.999999 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1301 + 8 +0 + 62 + 0 + 10 +5174.999999 + 20 +9206.69873 + 30 +0.0 + 11 +5187.499999 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1302 + 8 +0 + 62 + 0 + 10 +5178.811977 + 20 +9170.0 + 30 +0.0 + 11 +5187.499999 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1303 + 8 +0 + 62 + 0 + 10 +5212.499999 + 20 +9228.349365 + 30 +0.0 + 11 +5224.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1304 + 8 +0 + 62 + 0 + 10 +5212.499999 + 20 +9185.048095 + 30 +0.0 + 11 +5224.999999 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1305 + 8 +0 + 62 + 0 + 10 +5249.999999 + 20 +9206.69873 + 30 +0.0 + 11 +5262.499999 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1306 + 8 +0 + 62 + 0 + 10 +5253.811977 + 20 +9170.0 + 30 +0.0 + 11 +5262.499999 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1307 + 8 +0 + 62 + 0 + 10 +5287.499999 + 20 +9228.349365 + 30 +0.0 + 11 +5299.999999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1308 + 8 +0 + 62 + 0 + 10 +5287.499999 + 20 +9185.048095 + 30 +0.0 + 11 +5299.999999 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1309 + 8 +0 + 62 + 0 + 10 +5324.999999 + 20 +9206.69873 + 30 +0.0 + 11 +5337.499999 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +130A + 8 +0 + 62 + 0 + 10 +5328.811977 + 20 +9170.0 + 30 +0.0 + 11 +5337.499999 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +130B + 8 +0 + 62 + 0 + 10 +5362.499999 + 20 +9228.349366 + 30 +0.0 + 11 +5374.999998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +130C + 8 +0 + 62 + 0 + 10 +5362.499999 + 20 +9185.048095 + 30 +0.0 + 11 +5374.999999 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +130D + 8 +0 + 62 + 0 + 10 +5399.999999 + 20 +9206.698731 + 30 +0.0 + 11 +5412.499999 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +130E + 8 +0 + 62 + 0 + 10 +5403.811976 + 20 +9170.0 + 30 +0.0 + 11 +5412.499999 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +130F + 8 +0 + 62 + 0 + 10 +5437.499999 + 20 +9228.349366 + 30 +0.0 + 11 +5449.999998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1310 + 8 +0 + 62 + 0 + 10 +5437.499998 + 20 +9185.048096 + 30 +0.0 + 11 +5449.999998 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +1311 + 8 +0 + 62 + 0 + 10 +5474.999998 + 20 +9206.698731 + 30 +0.0 + 11 +5487.499998 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +1312 + 8 +0 + 62 + 0 + 10 +5478.811976 + 20 +9170.0 + 30 +0.0 + 11 +5487.499998 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +1313 + 8 +0 + 62 + 0 + 10 +5512.499998 + 20 +9228.349366 + 30 +0.0 + 11 +5524.999998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1314 + 8 +0 + 62 + 0 + 10 +5512.499998 + 20 +9185.048096 + 30 +0.0 + 11 +5524.999998 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +1315 + 8 +0 + 62 + 0 + 10 +5549.999998 + 20 +9206.698731 + 30 +0.0 + 11 +5562.499998 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +1316 + 8 +0 + 62 + 0 + 10 +5553.811976 + 20 +9170.0 + 30 +0.0 + 11 +5562.499998 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +1317 + 8 +0 + 62 + 0 + 10 +5587.499998 + 20 +9228.349366 + 30 +0.0 + 11 +5599.999997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1318 + 8 +0 + 62 + 0 + 10 +5587.499998 + 20 +9185.048096 + 30 +0.0 + 11 +5599.999998 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +1319 + 8 +0 + 62 + 0 + 10 +5624.999998 + 20 +9206.698731 + 30 +0.0 + 11 +5637.499998 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +131A + 8 +0 + 62 + 0 + 10 +5628.811976 + 20 +9170.0 + 30 +0.0 + 11 +5637.499998 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +131B + 8 +0 + 62 + 0 + 10 +5662.499998 + 20 +9228.349366 + 30 +0.0 + 11 +5674.999997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +131C + 8 +0 + 62 + 0 + 10 +5662.499998 + 20 +9185.048096 + 30 +0.0 + 11 +5674.999998 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +131D + 8 +0 + 62 + 0 + 10 +5699.999998 + 20 +9206.698731 + 30 +0.0 + 11 +5712.499998 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +131E + 8 +0 + 62 + 0 + 10 +5703.811975 + 20 +9170.0 + 30 +0.0 + 11 +5712.499998 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +131F + 8 +0 + 62 + 0 + 10 +5737.499998 + 20 +9228.349366 + 30 +0.0 + 11 +5749.999997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1320 + 8 +0 + 62 + 0 + 10 +5737.499997 + 20 +9185.048096 + 30 +0.0 + 11 +5749.999997 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +1321 + 8 +0 + 62 + 0 + 10 +5774.999997 + 20 +9206.698731 + 30 +0.0 + 11 +5787.499997 + 21 +9228.349366 + 31 +0.0 + 0 +LINE + 5 +1322 + 8 +0 + 62 + 0 + 10 +5778.811975 + 20 +9170.0 + 30 +0.0 + 11 +5787.499997 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +1323 + 8 +0 + 62 + 0 + 10 +5812.499997 + 20 +9228.349366 + 30 +0.0 + 11 +5824.999996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1324 + 8 +0 + 62 + 0 + 10 +5812.499997 + 20 +9185.048096 + 30 +0.0 + 11 +5824.999997 + 21 +9206.698731 + 31 +0.0 + 0 +LINE + 5 +1325 + 8 +0 + 62 + 0 + 10 +5849.999997 + 20 +9206.698731 + 30 +0.0 + 11 +5862.499997 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +1326 + 8 +0 + 62 + 0 + 10 +5853.811975 + 20 +9170.0 + 30 +0.0 + 11 +5862.499997 + 21 +9185.048096 + 31 +0.0 + 0 +LINE + 5 +1327 + 8 +0 + 62 + 0 + 10 +5887.499997 + 20 +9228.349367 + 30 +0.0 + 11 +5899.999996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1328 + 8 +0 + 62 + 0 + 10 +5887.499997 + 20 +9185.048096 + 30 +0.0 + 11 +5899.999997 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +1329 + 8 +0 + 62 + 0 + 10 +5924.999997 + 20 +9206.698732 + 30 +0.0 + 11 +5937.499997 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +132A + 8 +0 + 62 + 0 + 10 +5928.811974 + 20 +9170.0 + 30 +0.0 + 11 +5937.499997 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +132B + 8 +0 + 62 + 0 + 10 +5962.499997 + 20 +9228.349367 + 30 +0.0 + 11 +5974.999996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +132C + 8 +0 + 62 + 0 + 10 +5962.499997 + 20 +9185.048097 + 30 +0.0 + 11 +5974.999997 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +132D + 8 +0 + 62 + 0 + 10 +5999.999997 + 20 +9206.698732 + 30 +0.0 + 11 +6012.499997 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +132E + 8 +0 + 62 + 0 + 10 +6003.811974 + 20 +9170.0 + 30 +0.0 + 11 +6012.499997 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +132F + 8 +0 + 62 + 0 + 10 +6037.499997 + 20 +9228.349367 + 30 +0.0 + 11 +6049.999995 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1330 + 8 +0 + 62 + 0 + 10 +6037.499996 + 20 +9185.048097 + 30 +0.0 + 11 +6049.999996 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +1331 + 8 +0 + 62 + 0 + 10 +6074.999996 + 20 +9206.698732 + 30 +0.0 + 11 +6087.499996 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +1332 + 8 +0 + 62 + 0 + 10 +6078.811974 + 20 +9170.0 + 30 +0.0 + 11 +6087.499996 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +1333 + 8 +0 + 62 + 0 + 10 +6112.499996 + 20 +9228.349367 + 30 +0.0 + 11 +6124.999995 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1334 + 8 +0 + 62 + 0 + 10 +6112.499996 + 20 +9185.048097 + 30 +0.0 + 11 +6124.999996 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +1335 + 8 +0 + 62 + 0 + 10 +6149.999996 + 20 +9206.698732 + 30 +0.0 + 11 +6162.499996 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +1336 + 8 +0 + 62 + 0 + 10 +6153.811973 + 20 +9170.0 + 30 +0.0 + 11 +6162.499996 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +1337 + 8 +0 + 62 + 0 + 10 +6187.499996 + 20 +9228.349367 + 30 +0.0 + 11 +6199.999995 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1338 + 8 +0 + 62 + 0 + 10 +6187.499996 + 20 +9185.048097 + 30 +0.0 + 11 +6199.999996 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +1339 + 8 +0 + 62 + 0 + 10 +6224.999996 + 20 +9206.698732 + 30 +0.0 + 11 +6237.499996 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +133A + 8 +0 + 62 + 0 + 10 +6228.811973 + 20 +9170.0 + 30 +0.0 + 11 +6237.499996 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +133B + 8 +0 + 62 + 0 + 10 +6262.499996 + 20 +9228.349367 + 30 +0.0 + 11 +6274.999994 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +133C + 8 +0 + 62 + 0 + 10 +6262.499996 + 20 +9185.048097 + 30 +0.0 + 11 +6274.999996 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +133D + 8 +0 + 62 + 0 + 10 +6299.999996 + 20 +9206.698732 + 30 +0.0 + 11 +6312.499996 + 21 +9228.349367 + 31 +0.0 + 0 +LINE + 5 +133E + 8 +0 + 62 + 0 + 10 +6303.811973 + 20 +9170.0 + 30 +0.0 + 11 +6312.499996 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +133F + 8 +0 + 62 + 0 + 10 +6337.499996 + 20 +9228.349367 + 30 +0.0 + 11 +6349.999994 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1340 + 8 +0 + 62 + 0 + 10 +6337.499995 + 20 +9185.048097 + 30 +0.0 + 11 +6349.999995 + 21 +9206.698732 + 31 +0.0 + 0 +LINE + 5 +1341 + 8 +0 + 62 + 0 + 10 +6374.999995 + 20 +9206.698732 + 30 +0.0 + 11 +6387.499995 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +1342 + 8 +0 + 62 + 0 + 10 +6378.811972 + 20 +9170.0 + 30 +0.0 + 11 +6387.499995 + 21 +9185.048097 + 31 +0.0 + 0 +LINE + 5 +1343 + 8 +0 + 62 + 0 + 10 +6412.499995 + 20 +9228.349368 + 30 +0.0 + 11 +6424.999994 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1344 + 8 +0 + 62 + 0 + 10 +6412.499995 + 20 +9185.048097 + 30 +0.0 + 11 +6424.999995 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +1345 + 8 +0 + 62 + 0 + 10 +6449.999995 + 20 +9206.698733 + 30 +0.0 + 11 +6462.499995 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +1346 + 8 +0 + 62 + 0 + 10 +6453.811972 + 20 +9170.0 + 30 +0.0 + 11 +6462.499995 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +1347 + 8 +0 + 62 + 0 + 10 +6487.499995 + 20 +9228.349368 + 30 +0.0 + 11 +6499.999993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1348 + 8 +0 + 62 + 0 + 10 +6487.499995 + 20 +9185.048098 + 30 +0.0 + 11 +6499.999995 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +1349 + 8 +0 + 62 + 0 + 10 +6524.999995 + 20 +9206.698733 + 30 +0.0 + 11 +6537.499995 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +134A + 8 +0 + 62 + 0 + 10 +6528.811972 + 20 +9170.0 + 30 +0.0 + 11 +6537.499995 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +134B + 8 +0 + 62 + 0 + 10 +6562.499995 + 20 +9228.349368 + 30 +0.0 + 11 +6574.999993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +134C + 8 +0 + 62 + 0 + 10 +6562.499995 + 20 +9185.048098 + 30 +0.0 + 11 +6574.999995 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +134D + 8 +0 + 62 + 0 + 10 +6599.999995 + 20 +9206.698733 + 30 +0.0 + 11 +6612.499995 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +134E + 8 +0 + 62 + 0 + 10 +6603.811971 + 20 +9170.0 + 30 +0.0 + 11 +6612.499995 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +134F + 8 +0 + 62 + 0 + 10 +6637.499995 + 20 +9228.349368 + 30 +0.0 + 11 +6649.999993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1350 + 8 +0 + 62 + 0 + 10 +6637.499995 + 20 +9185.048098 + 30 +0.0 + 11 +6649.999995 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +1351 + 8 +0 + 62 + 0 + 10 +6674.999994 + 20 +9206.698733 + 30 +0.0 + 11 +6687.499994 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +1352 + 8 +0 + 62 + 0 + 10 +6678.811971 + 20 +9170.0 + 30 +0.0 + 11 +6687.499994 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +1353 + 8 +0 + 62 + 0 + 10 +6712.499994 + 20 +9228.349368 + 30 +0.0 + 11 +6724.999992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1354 + 8 +0 + 62 + 0 + 10 +6712.499994 + 20 +9185.048098 + 30 +0.0 + 11 +6724.999994 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +1355 + 8 +0 + 62 + 0 + 10 +6749.999994 + 20 +9206.698733 + 30 +0.0 + 11 +6762.499994 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +1356 + 8 +0 + 62 + 0 + 10 +6753.811971 + 20 +9170.0 + 30 +0.0 + 11 +6762.499994 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +1357 + 8 +0 + 62 + 0 + 10 +6787.499994 + 20 +9228.349368 + 30 +0.0 + 11 +6799.999992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1358 + 8 +0 + 62 + 0 + 10 +6787.499994 + 20 +9185.048098 + 30 +0.0 + 11 +6799.999994 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +1359 + 8 +0 + 62 + 0 + 10 +6824.999994 + 20 +9206.698733 + 30 +0.0 + 11 +6837.499994 + 21 +9228.349368 + 31 +0.0 + 0 +LINE + 5 +135A + 8 +0 + 62 + 0 + 10 +6828.81197 + 20 +9170.0 + 30 +0.0 + 11 +6837.499994 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +135B + 8 +0 + 62 + 0 + 10 +6862.499994 + 20 +9228.349368 + 30 +0.0 + 11 +6874.999992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +135C + 8 +0 + 62 + 0 + 10 +6862.499994 + 20 +9185.048098 + 30 +0.0 + 11 +6874.999994 + 21 +9206.698733 + 31 +0.0 + 0 +LINE + 5 +135D + 8 +0 + 62 + 0 + 10 +6899.999994 + 20 +9206.698733 + 30 +0.0 + 11 +6912.499994 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +135E + 8 +0 + 62 + 0 + 10 +6903.81197 + 20 +9170.0 + 30 +0.0 + 11 +6912.499994 + 21 +9185.048098 + 31 +0.0 + 0 +LINE + 5 +135F + 8 +0 + 62 + 0 + 10 +6937.499994 + 20 +9228.349369 + 30 +0.0 + 11 +6949.999991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1360 + 8 +0 + 62 + 0 + 10 +6937.499994 + 20 +9185.048098 + 30 +0.0 + 11 +6949.999994 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +1361 + 8 +0 + 62 + 0 + 10 +6974.999993 + 20 +9206.698734 + 30 +0.0 + 11 +6987.499993 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +1362 + 8 +0 + 62 + 0 + 10 +6978.81197 + 20 +9170.0 + 30 +0.0 + 11 +6987.499993 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +1363 + 8 +0 + 62 + 0 + 10 +7012.499993 + 20 +9228.349369 + 30 +0.0 + 11 +7024.999991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1364 + 8 +0 + 62 + 0 + 10 +7012.499993 + 20 +9185.048099 + 30 +0.0 + 11 +7024.999993 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +1365 + 8 +0 + 62 + 0 + 10 +7049.999993 + 20 +9206.698734 + 30 +0.0 + 11 +7062.499993 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +1366 + 8 +0 + 62 + 0 + 10 +7053.811969 + 20 +9170.0 + 30 +0.0 + 11 +7062.499993 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +1367 + 8 +0 + 62 + 0 + 10 +7087.499993 + 20 +9228.349369 + 30 +0.0 + 11 +7099.999991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1368 + 8 +0 + 62 + 0 + 10 +7087.499993 + 20 +9185.048099 + 30 +0.0 + 11 +7099.999993 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +1369 + 8 +0 + 62 + 0 + 10 +7124.999993 + 20 +9206.698734 + 30 +0.0 + 11 +7137.499993 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +136A + 8 +0 + 62 + 0 + 10 +7128.811969 + 20 +9170.0 + 30 +0.0 + 11 +7137.499993 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +136B + 8 +0 + 62 + 0 + 10 +7162.499993 + 20 +9228.349369 + 30 +0.0 + 11 +7174.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +136C + 8 +0 + 62 + 0 + 10 +7162.499993 + 20 +9185.048099 + 30 +0.0 + 11 +7174.999993 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +136D + 8 +0 + 62 + 0 + 10 +7199.999993 + 20 +9206.698734 + 30 +0.0 + 11 +7212.499993 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +136E + 8 +0 + 62 + 0 + 10 +7203.811969 + 20 +9170.0 + 30 +0.0 + 11 +7212.499993 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +136F + 8 +0 + 62 + 0 + 10 +7237.499993 + 20 +9228.349369 + 30 +0.0 + 11 +7249.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1370 + 8 +0 + 62 + 0 + 10 +7237.499993 + 20 +9185.048099 + 30 +0.0 + 11 +7249.999993 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +1371 + 8 +0 + 62 + 0 + 10 +7274.999992 + 20 +9206.698734 + 30 +0.0 + 11 +7287.499992 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +1372 + 8 +0 + 62 + 0 + 10 +7278.811968 + 20 +9170.0 + 30 +0.0 + 11 +7287.499992 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +1373 + 8 +0 + 62 + 0 + 10 +7312.499992 + 20 +9228.349369 + 30 +0.0 + 11 +7324.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1374 + 8 +0 + 62 + 0 + 10 +7312.499992 + 20 +9185.048099 + 30 +0.0 + 11 +7324.999992 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +1375 + 8 +0 + 62 + 0 + 10 +7349.999992 + 20 +9206.698734 + 30 +0.0 + 11 +7362.499992 + 21 +9228.349369 + 31 +0.0 + 0 +LINE + 5 +1376 + 8 +0 + 62 + 0 + 10 +7353.811968 + 20 +9170.0 + 30 +0.0 + 11 +7362.499992 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +1377 + 8 +0 + 62 + 0 + 10 +7387.499992 + 20 +9228.349369 + 30 +0.0 + 11 +7399.99999 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1378 + 8 +0 + 62 + 0 + 10 +7387.499992 + 20 +9185.048099 + 30 +0.0 + 11 +7399.999992 + 21 +9206.698734 + 31 +0.0 + 0 +LINE + 5 +1379 + 8 +0 + 62 + 0 + 10 +7424.999992 + 20 +9206.698734 + 30 +0.0 + 11 +7437.499992 + 21 +9228.34937 + 31 +0.0 + 0 +LINE + 5 +137A + 8 +0 + 62 + 0 + 10 +7428.811968 + 20 +9170.0 + 30 +0.0 + 11 +7437.499992 + 21 +9185.048099 + 31 +0.0 + 0 +LINE + 5 +137B + 8 +0 + 62 + 0 + 10 +7462.499992 + 20 +9228.34937 + 30 +0.0 + 11 +7474.999989 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +137C + 8 +0 + 62 + 0 + 10 +7462.499992 + 20 +9185.048099 + 30 +0.0 + 11 +7474.999992 + 21 +9206.698735 + 31 +0.0 + 0 +LINE + 5 +137D + 8 +0 + 62 + 0 + 10 +7499.999992 + 20 +9206.698735 + 30 +0.0 + 11 +7512.499992 + 21 +9228.34937 + 31 +0.0 + 0 +LINE + 5 +137E + 8 +0 + 62 + 0 + 10 +7503.811967 + 20 +9170.0 + 30 +0.0 + 11 +7512.499992 + 21 +9185.0481 + 31 +0.0 + 0 +LINE + 5 +137F + 8 +0 + 62 + 0 + 10 +7537.499992 + 20 +9228.34937 + 30 +0.0 + 11 +7549.999989 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1380 + 8 +0 + 62 + 0 + 10 +7537.499992 + 20 +9185.0481 + 30 +0.0 + 11 +7549.999992 + 21 +9206.698735 + 31 +0.0 + 0 +LINE + 5 +1381 + 8 +0 + 62 + 0 + 10 +7574.999991 + 20 +9206.698735 + 30 +0.0 + 11 +7587.499991 + 21 +9228.34937 + 31 +0.0 + 0 +LINE + 5 +1382 + 8 +0 + 62 + 0 + 10 +7578.811967 + 20 +9170.0 + 30 +0.0 + 11 +7587.499991 + 21 +9185.0481 + 31 +0.0 + 0 +LINE + 5 +1383 + 8 +0 + 62 + 0 + 10 +7612.499991 + 20 +9228.34937 + 30 +0.0 + 11 +7624.999989 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1384 + 8 +0 + 62 + 0 + 10 +7612.499991 + 20 +9185.0481 + 30 +0.0 + 11 +7624.999991 + 21 +9206.698735 + 31 +0.0 + 0 +LINE + 5 +1385 + 8 +0 + 62 + 0 + 10 +7649.999991 + 20 +9206.698735 + 30 +0.0 + 11 +7662.499991 + 21 +9228.34937 + 31 +0.0 + 0 +LINE + 5 +1386 + 8 +0 + 62 + 0 + 10 +7653.811967 + 20 +9170.0 + 30 +0.0 + 11 +7662.499991 + 21 +9185.0481 + 31 +0.0 + 0 +LINE + 5 +1387 + 8 +0 + 62 + 0 + 10 +7687.499991 + 20 +9228.34937 + 30 +0.0 + 11 +7699.999988 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1388 + 8 +0 + 62 + 0 + 10 +7687.499991 + 20 +9185.0481 + 30 +0.0 + 11 +7699.999991 + 21 +9206.698735 + 31 +0.0 + 0 +LINE + 5 +1389 + 8 +0 + 62 + 0 + 10 +7724.999991 + 20 +9206.698735 + 30 +0.0 + 11 +7737.499991 + 21 +9228.34937 + 31 +0.0 + 0 +LINE + 5 +138A + 8 +0 + 62 + 0 + 10 +7728.811966 + 20 +9170.0 + 30 +0.0 + 11 +7737.499991 + 21 +9185.0481 + 31 +0.0 + 0 +ENDBLK + 5 +138B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X45 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X45 + 1 + + 0 +LINE + 5 +138D + 8 +0 + 62 + 0 + 10 +8787.5 + 20 +9228.349365 + 30 +0.0 + 11 +8812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +138E + 8 +0 + 62 + 0 + 10 +8862.5 + 20 +9228.349365 + 30 +0.0 + 11 +8887.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +138F + 8 +0 + 62 + 0 + 10 +8937.5 + 20 +9228.349365 + 30 +0.0 + 11 +8962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1390 + 8 +0 + 62 + 0 + 10 +9012.5 + 20 +9228.349365 + 30 +0.0 + 11 +9037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1391 + 8 +0 + 62 + 0 + 10 +9087.5 + 20 +9228.349365 + 30 +0.0 + 11 +9112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1392 + 8 +0 + 62 + 0 + 10 +9162.5 + 20 +9228.349365 + 30 +0.0 + 11 +9187.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1393 + 8 +0 + 62 + 0 + 10 +9237.5 + 20 +9228.349365 + 30 +0.0 + 11 +9262.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1394 + 8 +0 + 62 + 0 + 10 +9312.5 + 20 +9228.349365 + 30 +0.0 + 11 +9337.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1395 + 8 +0 + 62 + 0 + 10 +9387.5 + 20 +9228.349365 + 30 +0.0 + 11 +9412.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1396 + 8 +0 + 62 + 0 + 10 +9462.5 + 20 +9228.349365 + 30 +0.0 + 11 +9487.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1397 + 8 +0 + 62 + 0 + 10 +9537.5 + 20 +9228.349365 + 30 +0.0 + 11 +9562.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1398 + 8 +0 + 62 + 0 + 10 +9612.5 + 20 +9228.349365 + 30 +0.0 + 11 +9637.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1399 + 8 +0 + 62 + 0 + 10 +9687.5 + 20 +9228.349365 + 30 +0.0 + 11 +9712.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +139A + 8 +0 + 62 + 0 + 10 +9762.5 + 20 +9228.349365 + 30 +0.0 + 11 +9787.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +139B + 8 +0 + 62 + 0 + 10 +9837.5 + 20 +9228.349365 + 30 +0.0 + 11 +9862.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +139C + 8 +0 + 62 + 0 + 10 +8750.0 + 20 +9206.69873 + 30 +0.0 + 11 +8775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +139D + 8 +0 + 62 + 0 + 10 +8825.0 + 20 +9206.69873 + 30 +0.0 + 11 +8850.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +139E + 8 +0 + 62 + 0 + 10 +8900.0 + 20 +9206.69873 + 30 +0.0 + 11 +8925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +139F + 8 +0 + 62 + 0 + 10 +8975.0 + 20 +9206.69873 + 30 +0.0 + 11 +9000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A0 + 8 +0 + 62 + 0 + 10 +9050.0 + 20 +9206.69873 + 30 +0.0 + 11 +9075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A1 + 8 +0 + 62 + 0 + 10 +9125.0 + 20 +9206.69873 + 30 +0.0 + 11 +9150.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A2 + 8 +0 + 62 + 0 + 10 +9200.0 + 20 +9206.69873 + 30 +0.0 + 11 +9225.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A3 + 8 +0 + 62 + 0 + 10 +9275.0 + 20 +9206.69873 + 30 +0.0 + 11 +9300.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A4 + 8 +0 + 62 + 0 + 10 +9350.0 + 20 +9206.69873 + 30 +0.0 + 11 +9375.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A5 + 8 +0 + 62 + 0 + 10 +9425.0 + 20 +9206.69873 + 30 +0.0 + 11 +9450.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A6 + 8 +0 + 62 + 0 + 10 +9500.0 + 20 +9206.69873 + 30 +0.0 + 11 +9525.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A7 + 8 +0 + 62 + 0 + 10 +9575.0 + 20 +9206.69873 + 30 +0.0 + 11 +9600.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A8 + 8 +0 + 62 + 0 + 10 +9650.0 + 20 +9206.69873 + 30 +0.0 + 11 +9675.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13A9 + 8 +0 + 62 + 0 + 10 +9725.0 + 20 +9206.69873 + 30 +0.0 + 11 +9750.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13AA + 8 +0 + 62 + 0 + 10 +9800.0 + 20 +9206.69873 + 30 +0.0 + 11 +9825.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13AB + 8 +0 + 62 + 0 + 10 +9875.0 + 20 +9206.69873 + 30 +0.0 + 11 +9876.25 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +13AC + 8 +0 + 62 + 0 + 10 +8787.5 + 20 +9185.048095 + 30 +0.0 + 11 +8812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13AD + 8 +0 + 62 + 0 + 10 +8862.5 + 20 +9185.048095 + 30 +0.0 + 11 +8887.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13AE + 8 +0 + 62 + 0 + 10 +8937.5 + 20 +9185.048095 + 30 +0.0 + 11 +8962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13AF + 8 +0 + 62 + 0 + 10 +9012.5 + 20 +9185.048095 + 30 +0.0 + 11 +9037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B0 + 8 +0 + 62 + 0 + 10 +9087.5 + 20 +9185.048095 + 30 +0.0 + 11 +9112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B1 + 8 +0 + 62 + 0 + 10 +9162.5 + 20 +9185.048095 + 30 +0.0 + 11 +9187.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B2 + 8 +0 + 62 + 0 + 10 +9237.5 + 20 +9185.048095 + 30 +0.0 + 11 +9262.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B3 + 8 +0 + 62 + 0 + 10 +9312.5 + 20 +9185.048095 + 30 +0.0 + 11 +9337.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B4 + 8 +0 + 62 + 0 + 10 +9387.5 + 20 +9185.048095 + 30 +0.0 + 11 +9412.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B5 + 8 +0 + 62 + 0 + 10 +9462.5 + 20 +9185.048095 + 30 +0.0 + 11 +9487.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B6 + 8 +0 + 62 + 0 + 10 +9537.5 + 20 +9185.048095 + 30 +0.0 + 11 +9562.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B7 + 8 +0 + 62 + 0 + 10 +9612.5 + 20 +9185.048095 + 30 +0.0 + 11 +9637.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B8 + 8 +0 + 62 + 0 + 10 +9687.5 + 20 +9185.048095 + 30 +0.0 + 11 +9712.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13B9 + 8 +0 + 62 + 0 + 10 +9762.5 + 20 +9185.048095 + 30 +0.0 + 11 +9787.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13BA + 8 +0 + 62 + 0 + 10 +9837.5 + 20 +9185.048095 + 30 +0.0 + 11 +9862.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +13BB + 8 +0 + 62 + 0 + 10 +9312.499986 + 20 +9185.048087 + 30 +0.0 + 11 +9299.999986 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13BC + 8 +0 + 62 + 0 + 10 +9274.999986 + 20 +9249.999992 + 30 +0.0 + 11 +9274.999981 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13BD + 8 +0 + 62 + 0 + 10 +9274.999986 + 20 +9206.698722 + 30 +0.0 + 11 +9262.499986 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13BE + 8 +0 + 62 + 0 + 10 +9271.188003 + 20 +9170.0 + 30 +0.0 + 11 +9262.499986 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13BF + 8 +0 + 62 + 0 + 10 +9237.499986 + 20 +9228.349357 + 30 +0.0 + 11 +9224.999986 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13C0 + 8 +0 + 62 + 0 + 10 +9237.499986 + 20 +9185.048087 + 30 +0.0 + 11 +9224.999986 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13C1 + 8 +0 + 62 + 0 + 10 +9199.999986 + 20 +9249.999992 + 30 +0.0 + 11 +9199.999982 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13C2 + 8 +0 + 62 + 0 + 10 +9199.999986 + 20 +9206.698722 + 30 +0.0 + 11 +9187.499986 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13C3 + 8 +0 + 62 + 0 + 10 +9196.188003 + 20 +9170.0 + 30 +0.0 + 11 +9187.499986 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13C4 + 8 +0 + 62 + 0 + 10 +9162.499986 + 20 +9228.349357 + 30 +0.0 + 11 +9149.999986 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13C5 + 8 +0 + 62 + 0 + 10 +9162.499986 + 20 +9185.048087 + 30 +0.0 + 11 +9149.999986 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13C6 + 8 +0 + 62 + 0 + 10 +9124.999986 + 20 +9249.999992 + 30 +0.0 + 11 +9124.999982 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13C7 + 8 +0 + 62 + 0 + 10 +9124.999987 + 20 +9206.698722 + 30 +0.0 + 11 +9112.499987 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13C8 + 8 +0 + 62 + 0 + 10 +9121.188004 + 20 +9170.0 + 30 +0.0 + 11 +9112.499987 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13C9 + 8 +0 + 62 + 0 + 10 +9087.499987 + 20 +9228.349357 + 30 +0.0 + 11 +9074.999987 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13CA + 8 +0 + 62 + 0 + 10 +9087.499987 + 20 +9185.048087 + 30 +0.0 + 11 +9074.999987 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13CB + 8 +0 + 62 + 0 + 10 +9049.999987 + 20 +9249.999992 + 30 +0.0 + 11 +9049.999982 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13CC + 8 +0 + 62 + 0 + 10 +9049.999987 + 20 +9206.698722 + 30 +0.0 + 11 +9037.499987 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13CD + 8 +0 + 62 + 0 + 10 +9046.188004 + 20 +9170.0 + 30 +0.0 + 11 +9037.499987 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13CE + 8 +0 + 62 + 0 + 10 +9012.499987 + 20 +9228.349357 + 30 +0.0 + 11 +8999.999987 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13CF + 8 +0 + 62 + 0 + 10 +9012.499987 + 20 +9185.048087 + 30 +0.0 + 11 +8999.999987 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13D0 + 8 +0 + 62 + 0 + 10 +8974.999987 + 20 +9249.999992 + 30 +0.0 + 11 +8974.999983 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13D1 + 8 +0 + 62 + 0 + 10 +8974.999987 + 20 +9206.698722 + 30 +0.0 + 11 +8962.499987 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13D2 + 8 +0 + 62 + 0 + 10 +8971.188004 + 20 +9170.0 + 30 +0.0 + 11 +8962.499987 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13D3 + 8 +0 + 62 + 0 + 10 +8937.499987 + 20 +9228.349357 + 30 +0.0 + 11 +8924.999987 + 21 +9249.999993 + 31 +0.0 + 0 +LINE + 5 +13D4 + 8 +0 + 62 + 0 + 10 +8937.499987 + 20 +9185.048087 + 30 +0.0 + 11 +8924.999987 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13D5 + 8 +0 + 62 + 0 + 10 +8899.999987 + 20 +9249.999993 + 30 +0.0 + 11 +8899.999983 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13D6 + 8 +0 + 62 + 0 + 10 +8899.999987 + 20 +9206.698722 + 30 +0.0 + 11 +8887.499987 + 21 +9228.349358 + 31 +0.0 + 0 +LINE + 5 +13D7 + 8 +0 + 62 + 0 + 10 +8896.188005 + 20 +9170.0 + 30 +0.0 + 11 +8887.499987 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13D8 + 8 +0 + 62 + 0 + 10 +8862.499987 + 20 +9228.349358 + 30 +0.0 + 11 +8849.999987 + 21 +9249.999993 + 31 +0.0 + 0 +LINE + 5 +13D9 + 8 +0 + 62 + 0 + 10 +8862.499987 + 20 +9185.048087 + 30 +0.0 + 11 +8849.999987 + 21 +9206.698723 + 31 +0.0 + 0 +LINE + 5 +13DA + 8 +0 + 62 + 0 + 10 +8824.999987 + 20 +9249.999993 + 30 +0.0 + 11 +8824.999983 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13DB + 8 +0 + 62 + 0 + 10 +8824.999988 + 20 +9206.698723 + 30 +0.0 + 11 +8812.499988 + 21 +9228.349358 + 31 +0.0 + 0 +LINE + 5 +13DC + 8 +0 + 62 + 0 + 10 +8821.188005 + 20 +9170.0 + 30 +0.0 + 11 +8812.499988 + 21 +9185.048088 + 31 +0.0 + 0 +LINE + 5 +13DD + 8 +0 + 62 + 0 + 10 +8787.499988 + 20 +9228.349358 + 30 +0.0 + 11 +8774.999988 + 21 +9249.999993 + 31 +0.0 + 0 +LINE + 5 +13DE + 8 +0 + 62 + 0 + 10 +8787.499988 + 20 +9185.048088 + 30 +0.0 + 11 +8774.999988 + 21 +9206.698723 + 31 +0.0 + 0 +LINE + 5 +13DF + 8 +0 + 62 + 0 + 10 +8749.999988 + 20 +9249.999993 + 30 +0.0 + 11 +8749.999984 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13E0 + 8 +0 + 62 + 0 + 10 +8749.999988 + 20 +9206.698723 + 30 +0.0 + 11 +8738.75 + 21 +9226.184273 + 31 +0.0 + 0 +LINE + 5 +13E1 + 8 +0 + 62 + 0 + 10 +8746.188005 + 20 +9170.0 + 30 +0.0 + 11 +8738.75 + 21 +9182.883003 + 31 +0.0 + 0 +LINE + 5 +13E2 + 8 +0 + 62 + 0 + 10 +9346.188003 + 20 +9170.0 + 30 +0.0 + 11 +9337.499986 + 21 +9185.048087 + 31 +0.0 + 0 +LINE + 5 +13E3 + 8 +0 + 62 + 0 + 10 +9312.499986 + 20 +9228.349357 + 30 +0.0 + 11 +9299.999986 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13E4 + 8 +0 + 62 + 0 + 10 +9349.999986 + 20 +9206.698722 + 30 +0.0 + 11 +9337.499986 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13E5 + 8 +0 + 62 + 0 + 10 +9387.499986 + 20 +9185.048086 + 30 +0.0 + 11 +9374.999986 + 21 +9206.698722 + 31 +0.0 + 0 +LINE + 5 +13E6 + 8 +0 + 62 + 0 + 10 +9349.999986 + 20 +9249.999992 + 30 +0.0 + 11 +9349.999981 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13E7 + 8 +0 + 62 + 0 + 10 +9421.188002 + 20 +9170.0 + 30 +0.0 + 11 +9412.499986 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +13E8 + 8 +0 + 62 + 0 + 10 +9387.499986 + 20 +9228.349357 + 30 +0.0 + 11 +9374.999986 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13E9 + 8 +0 + 62 + 0 + 10 +9424.999986 + 20 +9206.698721 + 30 +0.0 + 11 +9412.499986 + 21 +9228.349357 + 31 +0.0 + 0 +LINE + 5 +13EA + 8 +0 + 62 + 0 + 10 +9462.499985 + 20 +9185.048086 + 30 +0.0 + 11 +9449.999985 + 21 +9206.698721 + 31 +0.0 + 0 +LINE + 5 +13EB + 8 +0 + 62 + 0 + 10 +9424.999985 + 20 +9249.999992 + 30 +0.0 + 11 +9424.999981 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13EC + 8 +0 + 62 + 0 + 10 +9496.188002 + 20 +9170.0 + 30 +0.0 + 11 +9487.499985 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +13ED + 8 +0 + 62 + 0 + 10 +9462.499985 + 20 +9228.349356 + 30 +0.0 + 11 +9449.999985 + 21 +9249.999992 + 31 +0.0 + 0 +LINE + 5 +13EE + 8 +0 + 62 + 0 + 10 +9499.999985 + 20 +9206.698721 + 30 +0.0 + 11 +9487.499985 + 21 +9228.349356 + 31 +0.0 + 0 +LINE + 5 +13EF + 8 +0 + 62 + 0 + 10 +9537.499985 + 20 +9185.048086 + 30 +0.0 + 11 +9524.999985 + 21 +9206.698721 + 31 +0.0 + 0 +LINE + 5 +13F0 + 8 +0 + 62 + 0 + 10 +9499.999985 + 20 +9249.999991 + 30 +0.0 + 11 +9499.99998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13F1 + 8 +0 + 62 + 0 + 10 +9571.188002 + 20 +9170.0 + 30 +0.0 + 11 +9562.499985 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +13F2 + 8 +0 + 62 + 0 + 10 +9537.499985 + 20 +9228.349356 + 30 +0.0 + 11 +9524.999985 + 21 +9249.999991 + 31 +0.0 + 0 +LINE + 5 +13F3 + 8 +0 + 62 + 0 + 10 +9574.999985 + 20 +9206.698721 + 30 +0.0 + 11 +9562.499985 + 21 +9228.349356 + 31 +0.0 + 0 +LINE + 5 +13F4 + 8 +0 + 62 + 0 + 10 +9612.499985 + 20 +9185.048086 + 30 +0.0 + 11 +9599.999985 + 21 +9206.698721 + 31 +0.0 + 0 +LINE + 5 +13F5 + 8 +0 + 62 + 0 + 10 +9574.999985 + 20 +9249.999991 + 30 +0.0 + 11 +9574.99998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13F6 + 8 +0 + 62 + 0 + 10 +9646.188001 + 20 +9170.0 + 30 +0.0 + 11 +9637.499985 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +13F7 + 8 +0 + 62 + 0 + 10 +9612.499985 + 20 +9228.349356 + 30 +0.0 + 11 +9599.999985 + 21 +9249.999991 + 31 +0.0 + 0 +LINE + 5 +13F8 + 8 +0 + 62 + 0 + 10 +9649.999985 + 20 +9206.698721 + 30 +0.0 + 11 +9637.499985 + 21 +9228.349356 + 31 +0.0 + 0 +LINE + 5 +13F9 + 8 +0 + 62 + 0 + 10 +9687.499985 + 20 +9185.048086 + 30 +0.0 + 11 +9674.999985 + 21 +9206.698721 + 31 +0.0 + 0 +LINE + 5 +13FA + 8 +0 + 62 + 0 + 10 +9649.999985 + 20 +9249.999991 + 30 +0.0 + 11 +9649.99998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +13FB + 8 +0 + 62 + 0 + 10 +9721.188001 + 20 +9170.0 + 30 +0.0 + 11 +9712.499985 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +13FC + 8 +0 + 62 + 0 + 10 +9687.499985 + 20 +9228.349356 + 30 +0.0 + 11 +9674.999985 + 21 +9249.999991 + 31 +0.0 + 0 +LINE + 5 +13FD + 8 +0 + 62 + 0 + 10 +9724.999985 + 20 +9206.698721 + 30 +0.0 + 11 +9712.499985 + 21 +9228.349356 + 31 +0.0 + 0 +LINE + 5 +13FE + 8 +0 + 62 + 0 + 10 +9762.499985 + 20 +9185.048086 + 30 +0.0 + 11 +9749.999985 + 21 +9206.698721 + 31 +0.0 + 0 +LINE + 5 +13FF + 8 +0 + 62 + 0 + 10 +9724.999985 + 20 +9249.999991 + 30 +0.0 + 11 +9724.999979 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1400 + 8 +0 + 62 + 0 + 10 +9796.188001 + 20 +9170.0 + 30 +0.0 + 11 +9787.499984 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +1401 + 8 +0 + 62 + 0 + 10 +9762.499984 + 20 +9228.349356 + 30 +0.0 + 11 +9749.999984 + 21 +9249.999991 + 31 +0.0 + 0 +LINE + 5 +1402 + 8 +0 + 62 + 0 + 10 +9799.999984 + 20 +9206.698721 + 30 +0.0 + 11 +9787.499984 + 21 +9228.349356 + 31 +0.0 + 0 +LINE + 5 +1403 + 8 +0 + 62 + 0 + 10 +9837.499984 + 20 +9185.048086 + 30 +0.0 + 11 +9824.999984 + 21 +9206.698721 + 31 +0.0 + 0 +LINE + 5 +1404 + 8 +0 + 62 + 0 + 10 +9799.999984 + 20 +9249.999991 + 30 +0.0 + 11 +9799.999979 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1405 + 8 +0 + 62 + 0 + 10 +9871.188 + 20 +9170.0 + 30 +0.0 + 11 +9862.499984 + 21 +9185.048086 + 31 +0.0 + 0 +LINE + 5 +1406 + 8 +0 + 62 + 0 + 10 +9837.499984 + 20 +9228.349356 + 30 +0.0 + 11 +9824.999984 + 21 +9249.999991 + 31 +0.0 + 0 +LINE + 5 +1407 + 8 +0 + 62 + 0 + 10 +9874.999984 + 20 +9206.698721 + 30 +0.0 + 11 +9862.499984 + 21 +9228.349356 + 31 +0.0 + 0 +LINE + 5 +1408 + 8 +0 + 62 + 0 + 10 +9874.999984 + 20 +9249.999991 + 30 +0.0 + 11 +9874.999979 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1409 + 8 +0 + 62 + 0 + 10 +9299.999986 + 20 +9206.698738 + 30 +0.0 + 11 +9312.499986 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +140A + 8 +0 + 62 + 0 + 10 +9262.499986 + 20 +9185.048103 + 30 +0.0 + 11 +9274.999986 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +140B + 8 +0 + 62 + 0 + 10 +9228.81196 + 20 +9170.0 + 30 +0.0 + 11 +9237.499986 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +140C + 8 +0 + 62 + 0 + 10 +9262.499986 + 20 +9228.349373 + 30 +0.0 + 11 +9274.999981 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +140D + 8 +0 + 62 + 0 + 10 +9224.999986 + 20 +9206.698738 + 30 +0.0 + 11 +9237.499986 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +140E + 8 +0 + 62 + 0 + 10 +9187.499986 + 20 +9185.048103 + 30 +0.0 + 11 +9199.999986 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +140F + 8 +0 + 62 + 0 + 10 +9153.81196 + 20 +9170.0 + 30 +0.0 + 11 +9162.499986 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +1410 + 8 +0 + 62 + 0 + 10 +9187.499986 + 20 +9228.349373 + 30 +0.0 + 11 +9199.999982 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1411 + 8 +0 + 62 + 0 + 10 +9149.999986 + 20 +9206.698738 + 30 +0.0 + 11 +9162.499986 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +1412 + 8 +0 + 62 + 0 + 10 +9112.499986 + 20 +9185.048103 + 30 +0.0 + 11 +9124.999986 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +1413 + 8 +0 + 62 + 0 + 10 +9078.81196 + 20 +9170.0 + 30 +0.0 + 11 +9087.499986 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +1414 + 8 +0 + 62 + 0 + 10 +9112.499986 + 20 +9228.349373 + 30 +0.0 + 11 +9124.999982 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1415 + 8 +0 + 62 + 0 + 10 +9074.999987 + 20 +9206.698738 + 30 +0.0 + 11 +9087.499987 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +1416 + 8 +0 + 62 + 0 + 10 +9037.499987 + 20 +9185.048102 + 30 +0.0 + 11 +9049.999987 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +1417 + 8 +0 + 62 + 0 + 10 +9003.811961 + 20 +9170.0 + 30 +0.0 + 11 +9012.499987 + 21 +9185.048102 + 31 +0.0 + 0 +LINE + 5 +1418 + 8 +0 + 62 + 0 + 10 +9037.499987 + 20 +9228.349373 + 30 +0.0 + 11 +9049.999982 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1419 + 8 +0 + 62 + 0 + 10 +8999.999987 + 20 +9206.698737 + 30 +0.0 + 11 +9012.499987 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +141A + 8 +0 + 62 + 0 + 10 +8962.499987 + 20 +9185.048102 + 30 +0.0 + 11 +8974.999987 + 21 +9206.698737 + 31 +0.0 + 0 +LINE + 5 +141B + 8 +0 + 62 + 0 + 10 +8928.811961 + 20 +9170.0 + 30 +0.0 + 11 +8937.499987 + 21 +9185.048102 + 31 +0.0 + 0 +LINE + 5 +141C + 8 +0 + 62 + 0 + 10 +8962.499987 + 20 +9228.349372 + 30 +0.0 + 11 +8974.999983 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +141D + 8 +0 + 62 + 0 + 10 +8924.999987 + 20 +9206.698737 + 30 +0.0 + 11 +8937.499987 + 21 +9228.349372 + 31 +0.0 + 0 +LINE + 5 +141E + 8 +0 + 62 + 0 + 10 +8887.499987 + 20 +9185.048102 + 30 +0.0 + 11 +8899.999987 + 21 +9206.698737 + 31 +0.0 + 0 +LINE + 5 +141F + 8 +0 + 62 + 0 + 10 +8853.811961 + 20 +9170.0 + 30 +0.0 + 11 +8862.499987 + 21 +9185.048102 + 31 +0.0 + 0 +LINE + 5 +1420 + 8 +0 + 62 + 0 + 10 +8887.499987 + 20 +9228.349372 + 30 +0.0 + 11 +8899.999983 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1421 + 8 +0 + 62 + 0 + 10 +8849.999987 + 20 +9206.698737 + 30 +0.0 + 11 +8862.499987 + 21 +9228.349372 + 31 +0.0 + 0 +LINE + 5 +1422 + 8 +0 + 62 + 0 + 10 +8812.499987 + 20 +9185.048102 + 30 +0.0 + 11 +8824.999987 + 21 +9206.698737 + 31 +0.0 + 0 +LINE + 5 +1423 + 8 +0 + 62 + 0 + 10 +8778.811962 + 20 +9170.0 + 30 +0.0 + 11 +8787.499987 + 21 +9185.048102 + 31 +0.0 + 0 +LINE + 5 +1424 + 8 +0 + 62 + 0 + 10 +8812.499987 + 20 +9228.349372 + 30 +0.0 + 11 +8824.999983 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1425 + 8 +0 + 62 + 0 + 10 +8774.999988 + 20 +9206.698737 + 30 +0.0 + 11 +8787.499988 + 21 +9228.349372 + 31 +0.0 + 0 +LINE + 5 +1426 + 8 +0 + 62 + 0 + 10 +8738.75 + 20 +9187.213187 + 30 +0.0 + 11 +8749.999988 + 21 +9206.698737 + 31 +0.0 + 0 +LINE + 5 +1427 + 8 +0 + 62 + 0 + 10 +8738.75 + 20 +9230.514457 + 30 +0.0 + 11 +8749.999984 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1428 + 8 +0 + 62 + 0 + 10 +9303.811959 + 20 +9170.0 + 30 +0.0 + 11 +9312.499986 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +1429 + 8 +0 + 62 + 0 + 10 +9337.499986 + 20 +9228.349373 + 30 +0.0 + 11 +9349.999981 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +142A + 8 +0 + 62 + 0 + 10 +9337.499986 + 20 +9185.048103 + 30 +0.0 + 11 +9349.999986 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +142B + 8 +0 + 62 + 0 + 10 +9374.999986 + 20 +9206.698738 + 30 +0.0 + 11 +9387.499986 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +142C + 8 +0 + 62 + 0 + 10 +9378.811959 + 20 +9170.0 + 30 +0.0 + 11 +9387.499985 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +142D + 8 +0 + 62 + 0 + 10 +9412.499985 + 20 +9228.349373 + 30 +0.0 + 11 +9424.999981 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +142E + 8 +0 + 62 + 0 + 10 +9412.499985 + 20 +9185.048103 + 30 +0.0 + 11 +9424.999985 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +142F + 8 +0 + 62 + 0 + 10 +9449.999985 + 20 +9206.698738 + 30 +0.0 + 11 +9462.499985 + 21 +9228.349373 + 31 +0.0 + 0 +LINE + 5 +1430 + 8 +0 + 62 + 0 + 10 +9453.811959 + 20 +9170.0 + 30 +0.0 + 11 +9462.499985 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +1431 + 8 +0 + 62 + 0 + 10 +9487.499985 + 20 +9228.349373 + 30 +0.0 + 11 +9499.99998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1432 + 8 +0 + 62 + 0 + 10 +9487.499985 + 20 +9185.048103 + 30 +0.0 + 11 +9499.999985 + 21 +9206.698738 + 31 +0.0 + 0 +LINE + 5 +1433 + 8 +0 + 62 + 0 + 10 +9524.999985 + 20 +9206.698738 + 30 +0.0 + 11 +9537.499985 + 21 +9228.349374 + 31 +0.0 + 0 +LINE + 5 +1434 + 8 +0 + 62 + 0 + 10 +9528.811958 + 20 +9170.0 + 30 +0.0 + 11 +9537.499985 + 21 +9185.048103 + 31 +0.0 + 0 +LINE + 5 +1435 + 8 +0 + 62 + 0 + 10 +9562.499985 + 20 +9228.349374 + 30 +0.0 + 11 +9574.99998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1436 + 8 +0 + 62 + 0 + 10 +9562.499985 + 20 +9185.048103 + 30 +0.0 + 11 +9574.999985 + 21 +9206.698739 + 31 +0.0 + 0 +LINE + 5 +1437 + 8 +0 + 62 + 0 + 10 +9599.999985 + 20 +9206.698739 + 30 +0.0 + 11 +9612.499985 + 21 +9228.349374 + 31 +0.0 + 0 +LINE + 5 +1438 + 8 +0 + 62 + 0 + 10 +9603.811958 + 20 +9170.0 + 30 +0.0 + 11 +9612.499985 + 21 +9185.048104 + 31 +0.0 + 0 +LINE + 5 +1439 + 8 +0 + 62 + 0 + 10 +9637.499985 + 20 +9228.349374 + 30 +0.0 + 11 +9649.99998 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +143A + 8 +0 + 62 + 0 + 10 +9637.499985 + 20 +9185.048104 + 30 +0.0 + 11 +9649.999985 + 21 +9206.698739 + 31 +0.0 + 0 +LINE + 5 +143B + 8 +0 + 62 + 0 + 10 +9674.999985 + 20 +9206.698739 + 30 +0.0 + 11 +9687.499985 + 21 +9228.349374 + 31 +0.0 + 0 +LINE + 5 +143C + 8 +0 + 62 + 0 + 10 +9678.811958 + 20 +9170.0 + 30 +0.0 + 11 +9687.499985 + 21 +9185.048104 + 31 +0.0 + 0 +LINE + 5 +143D + 8 +0 + 62 + 0 + 10 +9712.499985 + 20 +9228.349374 + 30 +0.0 + 11 +9724.999979 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +143E + 8 +0 + 62 + 0 + 10 +9712.499984 + 20 +9185.048104 + 30 +0.0 + 11 +9724.999984 + 21 +9206.698739 + 31 +0.0 + 0 +LINE + 5 +143F + 8 +0 + 62 + 0 + 10 +9749.999984 + 20 +9206.698739 + 30 +0.0 + 11 +9762.499984 + 21 +9228.349374 + 31 +0.0 + 0 +LINE + 5 +1440 + 8 +0 + 62 + 0 + 10 +9753.811957 + 20 +9170.0 + 30 +0.0 + 11 +9762.499984 + 21 +9185.048104 + 31 +0.0 + 0 +LINE + 5 +1441 + 8 +0 + 62 + 0 + 10 +9787.499984 + 20 +9228.349374 + 30 +0.0 + 11 +9799.999979 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1442 + 8 +0 + 62 + 0 + 10 +9787.499984 + 20 +9185.048104 + 30 +0.0 + 11 +9799.999984 + 21 +9206.698739 + 31 +0.0 + 0 +LINE + 5 +1443 + 8 +0 + 62 + 0 + 10 +9824.999984 + 20 +9206.698739 + 30 +0.0 + 11 +9837.499984 + 21 +9228.349374 + 31 +0.0 + 0 +LINE + 5 +1444 + 8 +0 + 62 + 0 + 10 +9828.811957 + 20 +9170.0 + 30 +0.0 + 11 +9837.499984 + 21 +9185.048104 + 31 +0.0 + 0 +LINE + 5 +1445 + 8 +0 + 62 + 0 + 10 +9862.499984 + 20 +9228.349374 + 30 +0.0 + 11 +9874.999979 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1446 + 8 +0 + 62 + 0 + 10 +9862.499984 + 20 +9185.048104 + 30 +0.0 + 11 +9874.999984 + 21 +9206.698739 + 31 +0.0 + 0 +ENDBLK + 5 +1447 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X46 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X46 + 1 + + 0 +LINE + 5 +1449 + 8 +0 + 62 + 0 + 10 +11262.5 + 20 +9228.349365 + 30 +0.0 + 11 +11287.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +144A + 8 +0 + 62 + 0 + 10 +11337.5 + 20 +9228.349365 + 30 +0.0 + 11 +11362.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +144B + 8 +0 + 62 + 0 + 10 +11412.5 + 20 +9228.349365 + 30 +0.0 + 11 +11437.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +144C + 8 +0 + 62 + 0 + 10 +11487.5 + 20 +9228.349365 + 30 +0.0 + 11 +11512.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +144D + 8 +0 + 62 + 0 + 10 +11562.5 + 20 +9228.349365 + 30 +0.0 + 11 +11587.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +144E + 8 +0 + 62 + 0 + 10 +11637.5 + 20 +9228.349365 + 30 +0.0 + 11 +11662.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +144F + 8 +0 + 62 + 0 + 10 +11712.5 + 20 +9228.349365 + 30 +0.0 + 11 +11737.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1450 + 8 +0 + 62 + 0 + 10 +11787.5 + 20 +9228.349365 + 30 +0.0 + 11 +11812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1451 + 8 +0 + 62 + 0 + 10 +11862.5 + 20 +9228.349365 + 30 +0.0 + 11 +11887.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1452 + 8 +0 + 62 + 0 + 10 +11937.5 + 20 +9228.349365 + 30 +0.0 + 11 +11962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1453 + 8 +0 + 62 + 0 + 10 +12012.5 + 20 +9228.349365 + 30 +0.0 + 11 +12037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1454 + 8 +0 + 62 + 0 + 10 +12087.5 + 20 +9228.349365 + 30 +0.0 + 11 +12112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1455 + 8 +0 + 62 + 0 + 10 +12162.5 + 20 +9228.349365 + 30 +0.0 + 11 +12187.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1456 + 8 +0 + 62 + 0 + 10 +12237.5 + 20 +9228.349365 + 30 +0.0 + 11 +12262.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1457 + 8 +0 + 62 + 0 + 10 +12312.5 + 20 +9228.349365 + 30 +0.0 + 11 +12337.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1458 + 8 +0 + 62 + 0 + 10 +12387.5 + 20 +9228.349365 + 30 +0.0 + 11 +12412.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1459 + 8 +0 + 62 + 0 + 10 +12462.5 + 20 +9228.349365 + 30 +0.0 + 11 +12487.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +145A + 8 +0 + 62 + 0 + 10 +12537.5 + 20 +9228.349365 + 30 +0.0 + 11 +12562.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +145B + 8 +0 + 62 + 0 + 10 +12612.5 + 20 +9228.349365 + 30 +0.0 + 11 +12637.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +145C + 8 +0 + 62 + 0 + 10 +12687.5 + 20 +9228.349365 + 30 +0.0 + 11 +12712.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +145D + 8 +0 + 62 + 0 + 10 +12762.5 + 20 +9228.349365 + 30 +0.0 + 11 +12787.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +145E + 8 +0 + 62 + 0 + 10 +12837.5 + 20 +9228.349365 + 30 +0.0 + 11 +12862.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +145F + 8 +0 + 62 + 0 + 10 +12912.5 + 20 +9228.349365 + 30 +0.0 + 11 +12937.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1460 + 8 +0 + 62 + 0 + 10 +12987.5 + 20 +9228.349365 + 30 +0.0 + 11 +13012.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1461 + 8 +0 + 62 + 0 + 10 +13062.5 + 20 +9228.349365 + 30 +0.0 + 11 +13087.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1462 + 8 +0 + 62 + 0 + 10 +13137.5 + 20 +9228.349365 + 30 +0.0 + 11 +13162.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1463 + 8 +0 + 62 + 0 + 10 +13212.5 + 20 +9228.349365 + 30 +0.0 + 11 +13237.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1464 + 8 +0 + 62 + 0 + 10 +13287.5 + 20 +9228.349365 + 30 +0.0 + 11 +13312.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1465 + 8 +0 + 62 + 0 + 10 +13362.5 + 20 +9228.349365 + 30 +0.0 + 11 +13387.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1466 + 8 +0 + 62 + 0 + 10 +13437.5 + 20 +9228.349365 + 30 +0.0 + 11 +13462.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1467 + 8 +0 + 62 + 0 + 10 +13512.5 + 20 +9228.349365 + 30 +0.0 + 11 +13537.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1468 + 8 +0 + 62 + 0 + 10 +13587.5 + 20 +9228.349365 + 30 +0.0 + 11 +13612.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1469 + 8 +0 + 62 + 0 + 10 +13662.5 + 20 +9228.349365 + 30 +0.0 + 11 +13687.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +146A + 8 +0 + 62 + 0 + 10 +13737.5 + 20 +9228.349365 + 30 +0.0 + 11 +13762.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +146B + 8 +0 + 62 + 0 + 10 +13812.5 + 20 +9228.349365 + 30 +0.0 + 11 +13837.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +146C + 8 +0 + 62 + 0 + 10 +13887.5 + 20 +9228.349365 + 30 +0.0 + 11 +13912.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +146D + 8 +0 + 62 + 0 + 10 +13962.5 + 20 +9228.349365 + 30 +0.0 + 11 +13987.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +146E + 8 +0 + 62 + 0 + 10 +14037.5 + 20 +9228.349365 + 30 +0.0 + 11 +14062.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +146F + 8 +0 + 62 + 0 + 10 +14112.5 + 20 +9228.349365 + 30 +0.0 + 11 +14137.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1470 + 8 +0 + 62 + 0 + 10 +14187.5 + 20 +9228.349365 + 30 +0.0 + 11 +14212.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1471 + 8 +0 + 62 + 0 + 10 +14262.5 + 20 +9228.349365 + 30 +0.0 + 11 +14287.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1472 + 8 +0 + 62 + 0 + 10 +14337.5 + 20 +9228.349365 + 30 +0.0 + 11 +14362.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1473 + 8 +0 + 62 + 0 + 10 +14412.5 + 20 +9228.349365 + 30 +0.0 + 11 +14437.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1474 + 8 +0 + 62 + 0 + 10 +14487.5 + 20 +9228.349365 + 30 +0.0 + 11 +14512.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1475 + 8 +0 + 62 + 0 + 10 +14562.5 + 20 +9228.349365 + 30 +0.0 + 11 +14587.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1476 + 8 +0 + 62 + 0 + 10 +14637.5 + 20 +9228.349365 + 30 +0.0 + 11 +14662.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1477 + 8 +0 + 62 + 0 + 10 +14712.5 + 20 +9228.349365 + 30 +0.0 + 11 +14737.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1478 + 8 +0 + 62 + 0 + 10 +14787.5 + 20 +9228.349365 + 30 +0.0 + 11 +14812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1479 + 8 +0 + 62 + 0 + 10 +14862.5 + 20 +9228.349365 + 30 +0.0 + 11 +14887.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +147A + 8 +0 + 62 + 0 + 10 +14937.5 + 20 +9228.349365 + 30 +0.0 + 11 +14962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +147B + 8 +0 + 62 + 0 + 10 +15012.5 + 20 +9228.349365 + 30 +0.0 + 11 +15037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +147C + 8 +0 + 62 + 0 + 10 +15087.5 + 20 +9228.349365 + 30 +0.0 + 11 +15112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +147D + 8 +0 + 62 + 0 + 10 +15162.5 + 20 +9228.349365 + 30 +0.0 + 11 +15187.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +147E + 8 +0 + 62 + 0 + 10 +15237.5 + 20 +9228.349365 + 30 +0.0 + 11 +15262.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +147F + 8 +0 + 62 + 0 + 10 +15312.5 + 20 +9228.349365 + 30 +0.0 + 11 +15337.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1480 + 8 +0 + 62 + 0 + 10 +15387.5 + 20 +9228.349365 + 30 +0.0 + 11 +15412.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1481 + 8 +0 + 62 + 0 + 10 +15462.5 + 20 +9228.349365 + 30 +0.0 + 11 +15487.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1482 + 8 +0 + 62 + 0 + 10 +15537.5 + 20 +9228.349365 + 30 +0.0 + 11 +15562.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1483 + 8 +0 + 62 + 0 + 10 +15612.5 + 20 +9228.349365 + 30 +0.0 + 11 +15637.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1484 + 8 +0 + 62 + 0 + 10 +15687.5 + 20 +9228.349365 + 30 +0.0 + 11 +15712.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1485 + 8 +0 + 62 + 0 + 10 +15762.5 + 20 +9228.349365 + 30 +0.0 + 11 +15787.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1486 + 8 +0 + 62 + 0 + 10 +15837.5 + 20 +9228.349365 + 30 +0.0 + 11 +15862.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1487 + 8 +0 + 62 + 0 + 10 +15912.5 + 20 +9228.349365 + 30 +0.0 + 11 +15937.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1488 + 8 +0 + 62 + 0 + 10 +15987.5 + 20 +9228.349365 + 30 +0.0 + 11 +16012.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1489 + 8 +0 + 62 + 0 + 10 +16062.5 + 20 +9228.349365 + 30 +0.0 + 11 +16087.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +148A + 8 +0 + 62 + 0 + 10 +11238.75 + 20 +9206.69873 + 30 +0.0 + 11 +11250.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +148B + 8 +0 + 62 + 0 + 10 +11300.0 + 20 +9206.69873 + 30 +0.0 + 11 +11325.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +148C + 8 +0 + 62 + 0 + 10 +11375.0 + 20 +9206.69873 + 30 +0.0 + 11 +11400.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +148D + 8 +0 + 62 + 0 + 10 +11450.0 + 20 +9206.69873 + 30 +0.0 + 11 +11475.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +148E + 8 +0 + 62 + 0 + 10 +11525.0 + 20 +9206.69873 + 30 +0.0 + 11 +11550.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +148F + 8 +0 + 62 + 0 + 10 +11600.0 + 20 +9206.69873 + 30 +0.0 + 11 +11625.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1490 + 8 +0 + 62 + 0 + 10 +11675.0 + 20 +9206.69873 + 30 +0.0 + 11 +11700.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1491 + 8 +0 + 62 + 0 + 10 +11750.0 + 20 +9206.69873 + 30 +0.0 + 11 +11775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1492 + 8 +0 + 62 + 0 + 10 +11825.0 + 20 +9206.69873 + 30 +0.0 + 11 +11850.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1493 + 8 +0 + 62 + 0 + 10 +11900.0 + 20 +9206.69873 + 30 +0.0 + 11 +11925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1494 + 8 +0 + 62 + 0 + 10 +11975.0 + 20 +9206.69873 + 30 +0.0 + 11 +12000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1495 + 8 +0 + 62 + 0 + 10 +12050.0 + 20 +9206.69873 + 30 +0.0 + 11 +12075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1496 + 8 +0 + 62 + 0 + 10 +12125.0 + 20 +9206.69873 + 30 +0.0 + 11 +12150.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1497 + 8 +0 + 62 + 0 + 10 +12200.0 + 20 +9206.69873 + 30 +0.0 + 11 +12225.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1498 + 8 +0 + 62 + 0 + 10 +12275.0 + 20 +9206.69873 + 30 +0.0 + 11 +12300.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1499 + 8 +0 + 62 + 0 + 10 +12350.0 + 20 +9206.69873 + 30 +0.0 + 11 +12375.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +149A + 8 +0 + 62 + 0 + 10 +12425.0 + 20 +9206.69873 + 30 +0.0 + 11 +12450.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +149B + 8 +0 + 62 + 0 + 10 +12500.0 + 20 +9206.69873 + 30 +0.0 + 11 +12525.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +149C + 8 +0 + 62 + 0 + 10 +12575.0 + 20 +9206.69873 + 30 +0.0 + 11 +12600.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +149D + 8 +0 + 62 + 0 + 10 +12650.0 + 20 +9206.69873 + 30 +0.0 + 11 +12675.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +149E + 8 +0 + 62 + 0 + 10 +12725.0 + 20 +9206.69873 + 30 +0.0 + 11 +12750.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +149F + 8 +0 + 62 + 0 + 10 +12800.0 + 20 +9206.69873 + 30 +0.0 + 11 +12825.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A0 + 8 +0 + 62 + 0 + 10 +12875.0 + 20 +9206.69873 + 30 +0.0 + 11 +12900.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A1 + 8 +0 + 62 + 0 + 10 +12950.0 + 20 +9206.69873 + 30 +0.0 + 11 +12975.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A2 + 8 +0 + 62 + 0 + 10 +13025.0 + 20 +9206.69873 + 30 +0.0 + 11 +13050.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A3 + 8 +0 + 62 + 0 + 10 +13100.0 + 20 +9206.69873 + 30 +0.0 + 11 +13125.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A4 + 8 +0 + 62 + 0 + 10 +13175.0 + 20 +9206.69873 + 30 +0.0 + 11 +13200.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A5 + 8 +0 + 62 + 0 + 10 +13250.0 + 20 +9206.69873 + 30 +0.0 + 11 +13275.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A6 + 8 +0 + 62 + 0 + 10 +13325.0 + 20 +9206.69873 + 30 +0.0 + 11 +13350.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A7 + 8 +0 + 62 + 0 + 10 +13400.0 + 20 +9206.69873 + 30 +0.0 + 11 +13425.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A8 + 8 +0 + 62 + 0 + 10 +13475.0 + 20 +9206.69873 + 30 +0.0 + 11 +13500.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14A9 + 8 +0 + 62 + 0 + 10 +13550.0 + 20 +9206.69873 + 30 +0.0 + 11 +13575.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14AA + 8 +0 + 62 + 0 + 10 +13625.0 + 20 +9206.69873 + 30 +0.0 + 11 +13650.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14AB + 8 +0 + 62 + 0 + 10 +13700.0 + 20 +9206.69873 + 30 +0.0 + 11 +13725.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14AC + 8 +0 + 62 + 0 + 10 +13775.0 + 20 +9206.69873 + 30 +0.0 + 11 +13800.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14AD + 8 +0 + 62 + 0 + 10 +13850.0 + 20 +9206.69873 + 30 +0.0 + 11 +13875.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14AE + 8 +0 + 62 + 0 + 10 +13925.0 + 20 +9206.69873 + 30 +0.0 + 11 +13950.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14AF + 8 +0 + 62 + 0 + 10 +14000.0 + 20 +9206.69873 + 30 +0.0 + 11 +14025.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B0 + 8 +0 + 62 + 0 + 10 +14075.0 + 20 +9206.69873 + 30 +0.0 + 11 +14100.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B1 + 8 +0 + 62 + 0 + 10 +14150.0 + 20 +9206.69873 + 30 +0.0 + 11 +14175.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B2 + 8 +0 + 62 + 0 + 10 +14225.0 + 20 +9206.69873 + 30 +0.0 + 11 +14250.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B3 + 8 +0 + 62 + 0 + 10 +14300.0 + 20 +9206.69873 + 30 +0.0 + 11 +14325.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B4 + 8 +0 + 62 + 0 + 10 +14375.0 + 20 +9206.69873 + 30 +0.0 + 11 +14400.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B5 + 8 +0 + 62 + 0 + 10 +14450.0 + 20 +9206.69873 + 30 +0.0 + 11 +14475.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B6 + 8 +0 + 62 + 0 + 10 +14525.0 + 20 +9206.69873 + 30 +0.0 + 11 +14550.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B7 + 8 +0 + 62 + 0 + 10 +14600.0 + 20 +9206.69873 + 30 +0.0 + 11 +14625.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B8 + 8 +0 + 62 + 0 + 10 +14675.0 + 20 +9206.69873 + 30 +0.0 + 11 +14700.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14B9 + 8 +0 + 62 + 0 + 10 +14750.0 + 20 +9206.69873 + 30 +0.0 + 11 +14775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14BA + 8 +0 + 62 + 0 + 10 +14825.0 + 20 +9206.69873 + 30 +0.0 + 11 +14850.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14BB + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9206.69873 + 30 +0.0 + 11 +14925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14BC + 8 +0 + 62 + 0 + 10 +14975.0 + 20 +9206.69873 + 30 +0.0 + 11 +15000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14BD + 8 +0 + 62 + 0 + 10 +15050.0 + 20 +9206.69873 + 30 +0.0 + 11 +15075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14BE + 8 +0 + 62 + 0 + 10 +15125.0 + 20 +9206.69873 + 30 +0.0 + 11 +15150.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14BF + 8 +0 + 62 + 0 + 10 +15200.0 + 20 +9206.69873 + 30 +0.0 + 11 +15225.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C0 + 8 +0 + 62 + 0 + 10 +15275.0 + 20 +9206.69873 + 30 +0.0 + 11 +15300.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C1 + 8 +0 + 62 + 0 + 10 +15350.0 + 20 +9206.69873 + 30 +0.0 + 11 +15375.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C2 + 8 +0 + 62 + 0 + 10 +15425.0 + 20 +9206.69873 + 30 +0.0 + 11 +15450.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C3 + 8 +0 + 62 + 0 + 10 +15500.0 + 20 +9206.69873 + 30 +0.0 + 11 +15525.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C4 + 8 +0 + 62 + 0 + 10 +15575.0 + 20 +9206.69873 + 30 +0.0 + 11 +15600.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C5 + 8 +0 + 62 + 0 + 10 +15650.0 + 20 +9206.69873 + 30 +0.0 + 11 +15675.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C6 + 8 +0 + 62 + 0 + 10 +15725.0 + 20 +9206.69873 + 30 +0.0 + 11 +15750.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C7 + 8 +0 + 62 + 0 + 10 +15800.0 + 20 +9206.69873 + 30 +0.0 + 11 +15825.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C8 + 8 +0 + 62 + 0 + 10 +15875.0 + 20 +9206.69873 + 30 +0.0 + 11 +15900.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14C9 + 8 +0 + 62 + 0 + 10 +15950.0 + 20 +9206.69873 + 30 +0.0 + 11 +15975.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14CA + 8 +0 + 62 + 0 + 10 +16025.0 + 20 +9206.69873 + 30 +0.0 + 11 +16050.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14CB + 8 +0 + 62 + 0 + 10 +16100.0 + 20 +9206.69873 + 30 +0.0 + 11 +16125.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +14CC + 8 +0 + 62 + 0 + 10 +11262.5 + 20 +9185.048095 + 30 +0.0 + 11 +11287.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14CD + 8 +0 + 62 + 0 + 10 +11337.5 + 20 +9185.048095 + 30 +0.0 + 11 +11362.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14CE + 8 +0 + 62 + 0 + 10 +11412.5 + 20 +9185.048095 + 30 +0.0 + 11 +11437.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14CF + 8 +0 + 62 + 0 + 10 +11487.5 + 20 +9185.048095 + 30 +0.0 + 11 +11512.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D0 + 8 +0 + 62 + 0 + 10 +11562.5 + 20 +9185.048095 + 30 +0.0 + 11 +11587.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D1 + 8 +0 + 62 + 0 + 10 +11637.5 + 20 +9185.048095 + 30 +0.0 + 11 +11662.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D2 + 8 +0 + 62 + 0 + 10 +11712.5 + 20 +9185.048095 + 30 +0.0 + 11 +11737.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D3 + 8 +0 + 62 + 0 + 10 +11787.5 + 20 +9185.048095 + 30 +0.0 + 11 +11812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D4 + 8 +0 + 62 + 0 + 10 +11862.5 + 20 +9185.048095 + 30 +0.0 + 11 +11887.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D5 + 8 +0 + 62 + 0 + 10 +11937.5 + 20 +9185.048095 + 30 +0.0 + 11 +11962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D6 + 8 +0 + 62 + 0 + 10 +12012.5 + 20 +9185.048095 + 30 +0.0 + 11 +12037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D7 + 8 +0 + 62 + 0 + 10 +12087.5 + 20 +9185.048095 + 30 +0.0 + 11 +12112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D8 + 8 +0 + 62 + 0 + 10 +12162.5 + 20 +9185.048095 + 30 +0.0 + 11 +12187.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14D9 + 8 +0 + 62 + 0 + 10 +12237.5 + 20 +9185.048095 + 30 +0.0 + 11 +12262.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14DA + 8 +0 + 62 + 0 + 10 +12312.5 + 20 +9185.048095 + 30 +0.0 + 11 +12337.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14DB + 8 +0 + 62 + 0 + 10 +12387.5 + 20 +9185.048095 + 30 +0.0 + 11 +12412.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14DC + 8 +0 + 62 + 0 + 10 +12462.5 + 20 +9185.048095 + 30 +0.0 + 11 +12487.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14DD + 8 +0 + 62 + 0 + 10 +12537.5 + 20 +9185.048095 + 30 +0.0 + 11 +12562.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14DE + 8 +0 + 62 + 0 + 10 +12612.5 + 20 +9185.048095 + 30 +0.0 + 11 +12637.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14DF + 8 +0 + 62 + 0 + 10 +12687.5 + 20 +9185.048095 + 30 +0.0 + 11 +12712.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E0 + 8 +0 + 62 + 0 + 10 +12762.5 + 20 +9185.048095 + 30 +0.0 + 11 +12787.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E1 + 8 +0 + 62 + 0 + 10 +12837.5 + 20 +9185.048095 + 30 +0.0 + 11 +12862.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E2 + 8 +0 + 62 + 0 + 10 +12912.5 + 20 +9185.048095 + 30 +0.0 + 11 +12937.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E3 + 8 +0 + 62 + 0 + 10 +12987.5 + 20 +9185.048095 + 30 +0.0 + 11 +13012.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E4 + 8 +0 + 62 + 0 + 10 +13062.5 + 20 +9185.048095 + 30 +0.0 + 11 +13087.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E5 + 8 +0 + 62 + 0 + 10 +13137.5 + 20 +9185.048095 + 30 +0.0 + 11 +13162.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E6 + 8 +0 + 62 + 0 + 10 +13212.5 + 20 +9185.048095 + 30 +0.0 + 11 +13237.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E7 + 8 +0 + 62 + 0 + 10 +13287.5 + 20 +9185.048095 + 30 +0.0 + 11 +13312.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E8 + 8 +0 + 62 + 0 + 10 +13362.5 + 20 +9185.048095 + 30 +0.0 + 11 +13387.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14E9 + 8 +0 + 62 + 0 + 10 +13437.5 + 20 +9185.048095 + 30 +0.0 + 11 +13462.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14EA + 8 +0 + 62 + 0 + 10 +13512.5 + 20 +9185.048095 + 30 +0.0 + 11 +13537.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14EB + 8 +0 + 62 + 0 + 10 +13587.5 + 20 +9185.048095 + 30 +0.0 + 11 +13612.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14EC + 8 +0 + 62 + 0 + 10 +13662.5 + 20 +9185.048095 + 30 +0.0 + 11 +13687.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14ED + 8 +0 + 62 + 0 + 10 +13737.5 + 20 +9185.048095 + 30 +0.0 + 11 +13762.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14EE + 8 +0 + 62 + 0 + 10 +13812.5 + 20 +9185.048095 + 30 +0.0 + 11 +13837.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14EF + 8 +0 + 62 + 0 + 10 +13887.5 + 20 +9185.048095 + 30 +0.0 + 11 +13912.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F0 + 8 +0 + 62 + 0 + 10 +13962.5 + 20 +9185.048095 + 30 +0.0 + 11 +13987.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F1 + 8 +0 + 62 + 0 + 10 +14037.5 + 20 +9185.048095 + 30 +0.0 + 11 +14062.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F2 + 8 +0 + 62 + 0 + 10 +14112.5 + 20 +9185.048095 + 30 +0.0 + 11 +14137.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F3 + 8 +0 + 62 + 0 + 10 +14187.5 + 20 +9185.048095 + 30 +0.0 + 11 +14212.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F4 + 8 +0 + 62 + 0 + 10 +14262.5 + 20 +9185.048095 + 30 +0.0 + 11 +14287.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F5 + 8 +0 + 62 + 0 + 10 +14337.5 + 20 +9185.048095 + 30 +0.0 + 11 +14362.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F6 + 8 +0 + 62 + 0 + 10 +14412.5 + 20 +9185.048095 + 30 +0.0 + 11 +14437.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F7 + 8 +0 + 62 + 0 + 10 +14487.5 + 20 +9185.048095 + 30 +0.0 + 11 +14512.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F8 + 8 +0 + 62 + 0 + 10 +14562.5 + 20 +9185.048095 + 30 +0.0 + 11 +14587.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14F9 + 8 +0 + 62 + 0 + 10 +14637.5 + 20 +9185.048095 + 30 +0.0 + 11 +14662.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14FA + 8 +0 + 62 + 0 + 10 +14712.5 + 20 +9185.048095 + 30 +0.0 + 11 +14737.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14FB + 8 +0 + 62 + 0 + 10 +14787.5 + 20 +9185.048095 + 30 +0.0 + 11 +14812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14FC + 8 +0 + 62 + 0 + 10 +14862.5 + 20 +9185.048095 + 30 +0.0 + 11 +14887.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14FD + 8 +0 + 62 + 0 + 10 +14937.5 + 20 +9185.048095 + 30 +0.0 + 11 +14962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14FE + 8 +0 + 62 + 0 + 10 +15012.5 + 20 +9185.048095 + 30 +0.0 + 11 +15037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +14FF + 8 +0 + 62 + 0 + 10 +15087.5 + 20 +9185.048095 + 30 +0.0 + 11 +15112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1500 + 8 +0 + 62 + 0 + 10 +15162.5 + 20 +9185.048095 + 30 +0.0 + 11 +15187.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1501 + 8 +0 + 62 + 0 + 10 +15237.5 + 20 +9185.048095 + 30 +0.0 + 11 +15262.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1502 + 8 +0 + 62 + 0 + 10 +15312.5 + 20 +9185.048095 + 30 +0.0 + 11 +15337.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1503 + 8 +0 + 62 + 0 + 10 +15387.5 + 20 +9185.048095 + 30 +0.0 + 11 +15412.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1504 + 8 +0 + 62 + 0 + 10 +15462.5 + 20 +9185.048095 + 30 +0.0 + 11 +15487.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1505 + 8 +0 + 62 + 0 + 10 +15537.5 + 20 +9185.048095 + 30 +0.0 + 11 +15562.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1506 + 8 +0 + 62 + 0 + 10 +15612.5 + 20 +9185.048095 + 30 +0.0 + 11 +15637.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1507 + 8 +0 + 62 + 0 + 10 +15687.5 + 20 +9185.048095 + 30 +0.0 + 11 +15712.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1508 + 8 +0 + 62 + 0 + 10 +15762.5 + 20 +9185.048095 + 30 +0.0 + 11 +15787.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1509 + 8 +0 + 62 + 0 + 10 +15837.5 + 20 +9185.048095 + 30 +0.0 + 11 +15862.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +150A + 8 +0 + 62 + 0 + 10 +15912.5 + 20 +9185.048095 + 30 +0.0 + 11 +15937.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +150B + 8 +0 + 62 + 0 + 10 +15987.5 + 20 +9185.048095 + 30 +0.0 + 11 +16012.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +150C + 8 +0 + 62 + 0 + 10 +16062.5 + 20 +9185.048095 + 30 +0.0 + 11 +16087.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +150D + 8 +0 + 62 + 0 + 10 +13696.187984 + 20 +9170.0 + 30 +0.0 + 11 +13687.499972 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +150E + 8 +0 + 62 + 0 + 10 +13662.499972 + 20 +9228.349349 + 30 +0.0 + 11 +13649.999972 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +150F + 8 +0 + 62 + 0 + 10 +13662.499972 + 20 +9185.048078 + 30 +0.0 + 11 +13649.999972 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +1510 + 8 +0 + 62 + 0 + 10 +13624.999972 + 20 +9249.999984 + 30 +0.0 + 11 +13624.999962 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1511 + 8 +0 + 62 + 0 + 10 +13624.999972 + 20 +9206.698714 + 30 +0.0 + 11 +13612.499972 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +1512 + 8 +0 + 62 + 0 + 10 +13621.187984 + 20 +9170.0 + 30 +0.0 + 11 +13612.499972 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +1513 + 8 +0 + 62 + 0 + 10 +13587.499972 + 20 +9228.349349 + 30 +0.0 + 11 +13574.999972 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +1514 + 8 +0 + 62 + 0 + 10 +13587.499972 + 20 +9185.048079 + 30 +0.0 + 11 +13574.999972 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +1515 + 8 +0 + 62 + 0 + 10 +13549.999972 + 20 +9249.999984 + 30 +0.0 + 11 +13549.999963 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1516 + 8 +0 + 62 + 0 + 10 +13549.999972 + 20 +9206.698714 + 30 +0.0 + 11 +13537.499972 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +1517 + 8 +0 + 62 + 0 + 10 +13546.187984 + 20 +9170.0 + 30 +0.0 + 11 +13537.499972 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +1518 + 8 +0 + 62 + 0 + 10 +13512.499972 + 20 +9228.349349 + 30 +0.0 + 11 +13499.999972 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +1519 + 8 +0 + 62 + 0 + 10 +13512.499972 + 20 +9185.048079 + 30 +0.0 + 11 +13499.999972 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +151A + 8 +0 + 62 + 0 + 10 +13474.999972 + 20 +9249.999984 + 30 +0.0 + 11 +13474.999963 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +151B + 8 +0 + 62 + 0 + 10 +13474.999972 + 20 +9206.698714 + 30 +0.0 + 11 +13462.499972 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +151C + 8 +0 + 62 + 0 + 10 +13471.187985 + 20 +9170.0 + 30 +0.0 + 11 +13462.499972 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +151D + 8 +0 + 62 + 0 + 10 +13437.499972 + 20 +9228.349349 + 30 +0.0 + 11 +13424.999972 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +151E + 8 +0 + 62 + 0 + 10 +13437.499972 + 20 +9185.048079 + 30 +0.0 + 11 +13424.999972 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +151F + 8 +0 + 62 + 0 + 10 +13399.999972 + 20 +9249.999984 + 30 +0.0 + 11 +13399.999963 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1520 + 8 +0 + 62 + 0 + 10 +13399.999973 + 20 +9206.698714 + 30 +0.0 + 11 +13387.499973 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +1521 + 8 +0 + 62 + 0 + 10 +13396.187985 + 20 +9170.0 + 30 +0.0 + 11 +13387.499973 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +1522 + 8 +0 + 62 + 0 + 10 +13362.499973 + 20 +9228.349349 + 30 +0.0 + 11 +13349.999973 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +1523 + 8 +0 + 62 + 0 + 10 +13362.499973 + 20 +9185.048079 + 30 +0.0 + 11 +13349.999973 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +1524 + 8 +0 + 62 + 0 + 10 +13324.999973 + 20 +9249.999984 + 30 +0.0 + 11 +13324.999964 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1525 + 8 +0 + 62 + 0 + 10 +13324.999973 + 20 +9206.698714 + 30 +0.0 + 11 +13312.499973 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +1526 + 8 +0 + 62 + 0 + 10 +13321.187985 + 20 +9170.0 + 30 +0.0 + 11 +13312.499973 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +1527 + 8 +0 + 62 + 0 + 10 +13287.499973 + 20 +9228.349349 + 30 +0.0 + 11 +13274.999973 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +1528 + 8 +0 + 62 + 0 + 10 +13287.499973 + 20 +9185.048079 + 30 +0.0 + 11 +13274.999973 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +1529 + 8 +0 + 62 + 0 + 10 +13249.999973 + 20 +9249.999984 + 30 +0.0 + 11 +13249.999964 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +152A + 8 +0 + 62 + 0 + 10 +13249.999973 + 20 +9206.698714 + 30 +0.0 + 11 +13237.499973 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +152B + 8 +0 + 62 + 0 + 10 +13246.187986 + 20 +9170.0 + 30 +0.0 + 11 +13237.499973 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +152C + 8 +0 + 62 + 0 + 10 +13212.499973 + 20 +9228.349349 + 30 +0.0 + 11 +13199.999973 + 21 +9249.999984 + 31 +0.0 + 0 +LINE + 5 +152D + 8 +0 + 62 + 0 + 10 +13212.499973 + 20 +9185.048079 + 30 +0.0 + 11 +13199.999973 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +152E + 8 +0 + 62 + 0 + 10 +13174.999973 + 20 +9249.999985 + 30 +0.0 + 11 +13174.999964 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +152F + 8 +0 + 62 + 0 + 10 +13174.999973 + 20 +9206.698714 + 30 +0.0 + 11 +13162.499973 + 21 +9228.349349 + 31 +0.0 + 0 +LINE + 5 +1530 + 8 +0 + 62 + 0 + 10 +13171.187986 + 20 +9170.0 + 30 +0.0 + 11 +13162.499973 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +1531 + 8 +0 + 62 + 0 + 10 +13137.499973 + 20 +9228.34935 + 30 +0.0 + 11 +13124.999973 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +1532 + 8 +0 + 62 + 0 + 10 +13137.499973 + 20 +9185.048079 + 30 +0.0 + 11 +13124.999973 + 21 +9206.698714 + 31 +0.0 + 0 +LINE + 5 +1533 + 8 +0 + 62 + 0 + 10 +13099.999973 + 20 +9249.999985 + 30 +0.0 + 11 +13099.999965 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1534 + 8 +0 + 62 + 0 + 10 +13099.999974 + 20 +9206.698715 + 30 +0.0 + 11 +13087.499974 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +1535 + 8 +0 + 62 + 0 + 10 +13096.187986 + 20 +9170.0 + 30 +0.0 + 11 +13087.499974 + 21 +9185.048079 + 31 +0.0 + 0 +LINE + 5 +1536 + 8 +0 + 62 + 0 + 10 +13062.499974 + 20 +9228.34935 + 30 +0.0 + 11 +13049.999974 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +1537 + 8 +0 + 62 + 0 + 10 +13062.499974 + 20 +9185.04808 + 30 +0.0 + 11 +13049.999974 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +1538 + 8 +0 + 62 + 0 + 10 +13024.999974 + 20 +9249.999985 + 30 +0.0 + 11 +13024.999965 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1539 + 8 +0 + 62 + 0 + 10 +13024.999974 + 20 +9206.698715 + 30 +0.0 + 11 +13012.499974 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +153A + 8 +0 + 62 + 0 + 10 +13021.187987 + 20 +9170.0 + 30 +0.0 + 11 +13012.499974 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +153B + 8 +0 + 62 + 0 + 10 +12987.499974 + 20 +9228.34935 + 30 +0.0 + 11 +12974.999974 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +153C + 8 +0 + 62 + 0 + 10 +12987.499974 + 20 +9185.04808 + 30 +0.0 + 11 +12974.999974 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +153D + 8 +0 + 62 + 0 + 10 +12949.999974 + 20 +9249.999985 + 30 +0.0 + 11 +12949.999965 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +153E + 8 +0 + 62 + 0 + 10 +12949.999974 + 20 +9206.698715 + 30 +0.0 + 11 +12937.499974 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +153F + 8 +0 + 62 + 0 + 10 +12946.187987 + 20 +9170.0 + 30 +0.0 + 11 +12937.499974 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +1540 + 8 +0 + 62 + 0 + 10 +12912.499974 + 20 +9228.34935 + 30 +0.0 + 11 +12899.999974 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +1541 + 8 +0 + 62 + 0 + 10 +12912.499974 + 20 +9185.04808 + 30 +0.0 + 11 +12899.999974 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +1542 + 8 +0 + 62 + 0 + 10 +12874.999974 + 20 +9249.999985 + 30 +0.0 + 11 +12874.999966 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1543 + 8 +0 + 62 + 0 + 10 +12874.999974 + 20 +9206.698715 + 30 +0.0 + 11 +12862.499974 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +1544 + 8 +0 + 62 + 0 + 10 +12871.187987 + 20 +9170.0 + 30 +0.0 + 11 +12862.499974 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +1545 + 8 +0 + 62 + 0 + 10 +12837.499974 + 20 +9228.34935 + 30 +0.0 + 11 +12824.999974 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +1546 + 8 +0 + 62 + 0 + 10 +12837.499974 + 20 +9185.04808 + 30 +0.0 + 11 +12824.999974 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +1547 + 8 +0 + 62 + 0 + 10 +12799.999974 + 20 +9249.999985 + 30 +0.0 + 11 +12799.999966 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1548 + 8 +0 + 62 + 0 + 10 +12799.999975 + 20 +9206.698715 + 30 +0.0 + 11 +12787.499975 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +1549 + 8 +0 + 62 + 0 + 10 +12796.187988 + 20 +9170.0 + 30 +0.0 + 11 +12787.499975 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +154A + 8 +0 + 62 + 0 + 10 +12762.499975 + 20 +9228.34935 + 30 +0.0 + 11 +12749.999975 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +154B + 8 +0 + 62 + 0 + 10 +12762.499975 + 20 +9185.04808 + 30 +0.0 + 11 +12749.999975 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +154C + 8 +0 + 62 + 0 + 10 +12724.999975 + 20 +9249.999985 + 30 +0.0 + 11 +12724.999966 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +154D + 8 +0 + 62 + 0 + 10 +12724.999975 + 20 +9206.698715 + 30 +0.0 + 11 +12712.499975 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +154E + 8 +0 + 62 + 0 + 10 +12721.187988 + 20 +9170.0 + 30 +0.0 + 11 +12712.499975 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +154F + 8 +0 + 62 + 0 + 10 +12687.499975 + 20 +9228.34935 + 30 +0.0 + 11 +12674.999975 + 21 +9249.999985 + 31 +0.0 + 0 +LINE + 5 +1550 + 8 +0 + 62 + 0 + 10 +12687.499975 + 20 +9185.04808 + 30 +0.0 + 11 +12674.999975 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +1551 + 8 +0 + 62 + 0 + 10 +12649.999975 + 20 +9249.999986 + 30 +0.0 + 11 +12649.999967 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1552 + 8 +0 + 62 + 0 + 10 +12649.999975 + 20 +9206.698715 + 30 +0.0 + 11 +12637.499975 + 21 +9228.34935 + 31 +0.0 + 0 +LINE + 5 +1553 + 8 +0 + 62 + 0 + 10 +12646.187988 + 20 +9170.0 + 30 +0.0 + 11 +12637.499975 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +1554 + 8 +0 + 62 + 0 + 10 +12612.499975 + 20 +9228.349351 + 30 +0.0 + 11 +12599.999975 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +1555 + 8 +0 + 62 + 0 + 10 +12612.499975 + 20 +9185.04808 + 30 +0.0 + 11 +12599.999975 + 21 +9206.698715 + 31 +0.0 + 0 +LINE + 5 +1556 + 8 +0 + 62 + 0 + 10 +12574.999975 + 20 +9249.999986 + 30 +0.0 + 11 +12574.999967 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1557 + 8 +0 + 62 + 0 + 10 +12574.999975 + 20 +9206.698716 + 30 +0.0 + 11 +12562.499975 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +1558 + 8 +0 + 62 + 0 + 10 +12571.187989 + 20 +9170.0 + 30 +0.0 + 11 +12562.499975 + 21 +9185.04808 + 31 +0.0 + 0 +LINE + 5 +1559 + 8 +0 + 62 + 0 + 10 +12537.499975 + 20 +9228.349351 + 30 +0.0 + 11 +12524.999975 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +155A + 8 +0 + 62 + 0 + 10 +12537.499975 + 20 +9185.048081 + 30 +0.0 + 11 +12524.999975 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +155B + 8 +0 + 62 + 0 + 10 +12499.999975 + 20 +9249.999986 + 30 +0.0 + 11 +12499.999967 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +155C + 8 +0 + 62 + 0 + 10 +12499.999976 + 20 +9206.698716 + 30 +0.0 + 11 +12487.499976 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +155D + 8 +0 + 62 + 0 + 10 +12496.187989 + 20 +9170.0 + 30 +0.0 + 11 +12487.499976 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +155E + 8 +0 + 62 + 0 + 10 +12462.499976 + 20 +9228.349351 + 30 +0.0 + 11 +12449.999976 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +155F + 8 +0 + 62 + 0 + 10 +12462.499976 + 20 +9185.048081 + 30 +0.0 + 11 +12449.999976 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +1560 + 8 +0 + 62 + 0 + 10 +12424.999976 + 20 +9249.999986 + 30 +0.0 + 11 +12424.999968 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1561 + 8 +0 + 62 + 0 + 10 +12424.999976 + 20 +9206.698716 + 30 +0.0 + 11 +12412.499976 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +1562 + 8 +0 + 62 + 0 + 10 +12421.187989 + 20 +9170.0 + 30 +0.0 + 11 +12412.499976 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +1563 + 8 +0 + 62 + 0 + 10 +12387.499976 + 20 +9228.349351 + 30 +0.0 + 11 +12374.999976 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +1564 + 8 +0 + 62 + 0 + 10 +12387.499976 + 20 +9185.048081 + 30 +0.0 + 11 +12374.999976 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +1565 + 8 +0 + 62 + 0 + 10 +12349.999976 + 20 +9249.999986 + 30 +0.0 + 11 +12349.999968 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1566 + 8 +0 + 62 + 0 + 10 +12349.999976 + 20 +9206.698716 + 30 +0.0 + 11 +12337.499976 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +1567 + 8 +0 + 62 + 0 + 10 +12346.18799 + 20 +9170.0 + 30 +0.0 + 11 +12337.499976 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +1568 + 8 +0 + 62 + 0 + 10 +12312.499976 + 20 +9228.349351 + 30 +0.0 + 11 +12299.999976 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +1569 + 8 +0 + 62 + 0 + 10 +12312.499976 + 20 +9185.048081 + 30 +0.0 + 11 +12299.999976 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +156A + 8 +0 + 62 + 0 + 10 +12274.999976 + 20 +9249.999986 + 30 +0.0 + 11 +12274.999968 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +156B + 8 +0 + 62 + 0 + 10 +12274.999976 + 20 +9206.698716 + 30 +0.0 + 11 +12262.499976 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +156C + 8 +0 + 62 + 0 + 10 +12271.18799 + 20 +9170.0 + 30 +0.0 + 11 +12262.499976 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +156D + 8 +0 + 62 + 0 + 10 +12237.499976 + 20 +9228.349351 + 30 +0.0 + 11 +12224.999976 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +156E + 8 +0 + 62 + 0 + 10 +12237.499976 + 20 +9185.048081 + 30 +0.0 + 11 +12224.999976 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +156F + 8 +0 + 62 + 0 + 10 +12199.999976 + 20 +9249.999986 + 30 +0.0 + 11 +12199.999969 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1570 + 8 +0 + 62 + 0 + 10 +12199.999976 + 20 +9206.698716 + 30 +0.0 + 11 +12187.499976 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +1571 + 8 +0 + 62 + 0 + 10 +12196.18799 + 20 +9170.0 + 30 +0.0 + 11 +12187.499977 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +1572 + 8 +0 + 62 + 0 + 10 +12162.499977 + 20 +9228.349351 + 30 +0.0 + 11 +12149.999977 + 21 +9249.999986 + 31 +0.0 + 0 +LINE + 5 +1573 + 8 +0 + 62 + 0 + 10 +12162.499977 + 20 +9185.048081 + 30 +0.0 + 11 +12149.999977 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +1574 + 8 +0 + 62 + 0 + 10 +12124.999977 + 20 +9249.999987 + 30 +0.0 + 11 +12124.999969 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1575 + 8 +0 + 62 + 0 + 10 +12124.999977 + 20 +9206.698716 + 30 +0.0 + 11 +12112.499977 + 21 +9228.349351 + 31 +0.0 + 0 +LINE + 5 +1576 + 8 +0 + 62 + 0 + 10 +12121.187991 + 20 +9170.0 + 30 +0.0 + 11 +12112.499977 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +1577 + 8 +0 + 62 + 0 + 10 +12087.499977 + 20 +9228.349352 + 30 +0.0 + 11 +12074.999977 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +1578 + 8 +0 + 62 + 0 + 10 +12087.499977 + 20 +9185.048081 + 30 +0.0 + 11 +12074.999977 + 21 +9206.698716 + 31 +0.0 + 0 +LINE + 5 +1579 + 8 +0 + 62 + 0 + 10 +12049.999977 + 20 +9249.999987 + 30 +0.0 + 11 +12049.999969 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +157A + 8 +0 + 62 + 0 + 10 +12049.999977 + 20 +9206.698717 + 30 +0.0 + 11 +12037.499977 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +157B + 8 +0 + 62 + 0 + 10 +12046.187991 + 20 +9170.0 + 30 +0.0 + 11 +12037.499977 + 21 +9185.048081 + 31 +0.0 + 0 +LINE + 5 +157C + 8 +0 + 62 + 0 + 10 +12012.499977 + 20 +9228.349352 + 30 +0.0 + 11 +11999.999977 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +157D + 8 +0 + 62 + 0 + 10 +12012.499977 + 20 +9185.048082 + 30 +0.0 + 11 +11999.999977 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +157E + 8 +0 + 62 + 0 + 10 +11974.999977 + 20 +9249.999987 + 30 +0.0 + 11 +11974.99997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +157F + 8 +0 + 62 + 0 + 10 +11974.999977 + 20 +9206.698717 + 30 +0.0 + 11 +11962.499977 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +1580 + 8 +0 + 62 + 0 + 10 +11971.187991 + 20 +9170.0 + 30 +0.0 + 11 +11962.499977 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +1581 + 8 +0 + 62 + 0 + 10 +11937.499977 + 20 +9228.349352 + 30 +0.0 + 11 +11924.999977 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +1582 + 8 +0 + 62 + 0 + 10 +11937.499977 + 20 +9185.048082 + 30 +0.0 + 11 +11924.999977 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +1583 + 8 +0 + 62 + 0 + 10 +11899.999977 + 20 +9249.999987 + 30 +0.0 + 11 +11899.99997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1584 + 8 +0 + 62 + 0 + 10 +11899.999977 + 20 +9206.698717 + 30 +0.0 + 11 +11887.499977 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +1585 + 8 +0 + 62 + 0 + 10 +11896.187992 + 20 +9170.0 + 30 +0.0 + 11 +11887.499978 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +1586 + 8 +0 + 62 + 0 + 10 +11862.499978 + 20 +9228.349352 + 30 +0.0 + 11 +11849.999978 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +1587 + 8 +0 + 62 + 0 + 10 +11862.499978 + 20 +9185.048082 + 30 +0.0 + 11 +11849.999978 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +1588 + 8 +0 + 62 + 0 + 10 +11824.999978 + 20 +9249.999987 + 30 +0.0 + 11 +11824.99997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1589 + 8 +0 + 62 + 0 + 10 +11824.999978 + 20 +9206.698717 + 30 +0.0 + 11 +11812.499978 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +158A + 8 +0 + 62 + 0 + 10 +11821.187992 + 20 +9170.0 + 30 +0.0 + 11 +11812.499978 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +158B + 8 +0 + 62 + 0 + 10 +11787.499978 + 20 +9228.349352 + 30 +0.0 + 11 +11774.999978 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +158C + 8 +0 + 62 + 0 + 10 +11787.499978 + 20 +9185.048082 + 30 +0.0 + 11 +11774.999978 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +158D + 8 +0 + 62 + 0 + 10 +11749.999978 + 20 +9249.999987 + 30 +0.0 + 11 +11749.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +158E + 8 +0 + 62 + 0 + 10 +11749.999978 + 20 +9206.698717 + 30 +0.0 + 11 +11737.499978 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +158F + 8 +0 + 62 + 0 + 10 +11746.187992 + 20 +9170.0 + 30 +0.0 + 11 +11737.499978 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +1590 + 8 +0 + 62 + 0 + 10 +11712.499978 + 20 +9228.349352 + 30 +0.0 + 11 +11699.999978 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +1591 + 8 +0 + 62 + 0 + 10 +11712.499978 + 20 +9185.048082 + 30 +0.0 + 11 +11699.999978 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +1592 + 8 +0 + 62 + 0 + 10 +11674.999978 + 20 +9249.999987 + 30 +0.0 + 11 +11674.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1593 + 8 +0 + 62 + 0 + 10 +11674.999978 + 20 +9206.698717 + 30 +0.0 + 11 +11662.499978 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +1594 + 8 +0 + 62 + 0 + 10 +11671.187993 + 20 +9170.0 + 30 +0.0 + 11 +11662.499978 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +1595 + 8 +0 + 62 + 0 + 10 +11637.499978 + 20 +9228.349352 + 30 +0.0 + 11 +11624.999978 + 21 +9249.999987 + 31 +0.0 + 0 +LINE + 5 +1596 + 8 +0 + 62 + 0 + 10 +11637.499978 + 20 +9185.048082 + 30 +0.0 + 11 +11624.999978 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +1597 + 8 +0 + 62 + 0 + 10 +11599.999978 + 20 +9249.999988 + 30 +0.0 + 11 +11599.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1598 + 8 +0 + 62 + 0 + 10 +11599.999978 + 20 +9206.698717 + 30 +0.0 + 11 +11587.499978 + 21 +9228.349352 + 31 +0.0 + 0 +LINE + 5 +1599 + 8 +0 + 62 + 0 + 10 +11596.187993 + 20 +9170.0 + 30 +0.0 + 11 +11587.499979 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +159A + 8 +0 + 62 + 0 + 10 +11562.499979 + 20 +9228.349353 + 30 +0.0 + 11 +11549.999979 + 21 +9249.999988 + 31 +0.0 + 0 +LINE + 5 +159B + 8 +0 + 62 + 0 + 10 +11562.499979 + 20 +9185.048082 + 30 +0.0 + 11 +11549.999979 + 21 +9206.698717 + 31 +0.0 + 0 +LINE + 5 +159C + 8 +0 + 62 + 0 + 10 +11524.999979 + 20 +9249.999988 + 30 +0.0 + 11 +11524.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +159D + 8 +0 + 62 + 0 + 10 +11524.999979 + 20 +9206.698718 + 30 +0.0 + 11 +11512.499979 + 21 +9228.349353 + 31 +0.0 + 0 +LINE + 5 +159E + 8 +0 + 62 + 0 + 10 +11521.187993 + 20 +9170.0 + 30 +0.0 + 11 +11512.499979 + 21 +9185.048082 + 31 +0.0 + 0 +LINE + 5 +159F + 8 +0 + 62 + 0 + 10 +11487.499979 + 20 +9228.349353 + 30 +0.0 + 11 +11474.999979 + 21 +9249.999988 + 31 +0.0 + 0 +LINE + 5 +15A0 + 8 +0 + 62 + 0 + 10 +11487.499979 + 20 +9185.048083 + 30 +0.0 + 11 +11474.999979 + 21 +9206.698718 + 31 +0.0 + 0 +LINE + 5 +15A1 + 8 +0 + 62 + 0 + 10 +11449.999979 + 20 +9249.999988 + 30 +0.0 + 11 +11449.999972 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15A2 + 8 +0 + 62 + 0 + 10 +11449.999979 + 20 +9206.698718 + 30 +0.0 + 11 +11437.499979 + 21 +9228.349353 + 31 +0.0 + 0 +LINE + 5 +15A3 + 8 +0 + 62 + 0 + 10 +11446.187994 + 20 +9170.0 + 30 +0.0 + 11 +11437.499979 + 21 +9185.048083 + 31 +0.0 + 0 +LINE + 5 +15A4 + 8 +0 + 62 + 0 + 10 +11412.499979 + 20 +9228.349353 + 30 +0.0 + 11 +11399.999979 + 21 +9249.999988 + 31 +0.0 + 0 +LINE + 5 +15A5 + 8 +0 + 62 + 0 + 10 +11412.499979 + 20 +9185.048083 + 30 +0.0 + 11 +11399.999979 + 21 +9206.698718 + 31 +0.0 + 0 +LINE + 5 +15A6 + 8 +0 + 62 + 0 + 10 +11374.999979 + 20 +9249.999988 + 30 +0.0 + 11 +11374.999972 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15A7 + 8 +0 + 62 + 0 + 10 +11374.999979 + 20 +9206.698718 + 30 +0.0 + 11 +11362.499979 + 21 +9228.349353 + 31 +0.0 + 0 +LINE + 5 +15A8 + 8 +0 + 62 + 0 + 10 +11371.187994 + 20 +9170.0 + 30 +0.0 + 11 +11362.499979 + 21 +9185.048083 + 31 +0.0 + 0 +LINE + 5 +15A9 + 8 +0 + 62 + 0 + 10 +11337.499979 + 20 +9228.349353 + 30 +0.0 + 11 +11324.999979 + 21 +9249.999988 + 31 +0.0 + 0 +LINE + 5 +15AA + 8 +0 + 62 + 0 + 10 +11337.499979 + 20 +9185.048083 + 30 +0.0 + 11 +11324.999979 + 21 +9206.698718 + 31 +0.0 + 0 +LINE + 5 +15AB + 8 +0 + 62 + 0 + 10 +11299.999979 + 20 +9249.999988 + 30 +0.0 + 11 +11299.999972 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15AC + 8 +0 + 62 + 0 + 10 +11299.999979 + 20 +9206.698718 + 30 +0.0 + 11 +11287.499979 + 21 +9228.349353 + 31 +0.0 + 0 +LINE + 5 +15AD + 8 +0 + 62 + 0 + 10 +11296.187994 + 20 +9170.0 + 30 +0.0 + 11 +11287.49998 + 21 +9185.048083 + 31 +0.0 + 0 +LINE + 5 +15AE + 8 +0 + 62 + 0 + 10 +11262.49998 + 20 +9228.349353 + 30 +0.0 + 11 +11249.99998 + 21 +9249.999988 + 31 +0.0 + 0 +LINE + 5 +15AF + 8 +0 + 62 + 0 + 10 +11262.49998 + 20 +9185.048083 + 30 +0.0 + 11 +11249.99998 + 21 +9206.698718 + 31 +0.0 + 0 +LINE + 5 +15B0 + 8 +0 + 62 + 0 + 10 +13699.999972 + 20 +9206.698713 + 30 +0.0 + 11 +13687.499972 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15B1 + 8 +0 + 62 + 0 + 10 +13737.499971 + 20 +9185.048078 + 30 +0.0 + 11 +13724.999971 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +15B2 + 8 +0 + 62 + 0 + 10 +13699.999971 + 20 +9249.999984 + 30 +0.0 + 11 +13699.999962 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15B3 + 8 +0 + 62 + 0 + 10 +13771.187983 + 20 +9170.0 + 30 +0.0 + 11 +13762.499971 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +15B4 + 8 +0 + 62 + 0 + 10 +13737.499971 + 20 +9228.349348 + 30 +0.0 + 11 +13724.999971 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15B5 + 8 +0 + 62 + 0 + 10 +13774.999971 + 20 +9206.698713 + 30 +0.0 + 11 +13762.499971 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15B6 + 8 +0 + 62 + 0 + 10 +13812.499971 + 20 +9185.048078 + 30 +0.0 + 11 +13799.999971 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +15B7 + 8 +0 + 62 + 0 + 10 +13774.999971 + 20 +9249.999983 + 30 +0.0 + 11 +13774.999962 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15B8 + 8 +0 + 62 + 0 + 10 +13846.187983 + 20 +9170.0 + 30 +0.0 + 11 +13837.499971 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +15B9 + 8 +0 + 62 + 0 + 10 +13812.499971 + 20 +9228.349348 + 30 +0.0 + 11 +13799.999971 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15BA + 8 +0 + 62 + 0 + 10 +13849.999971 + 20 +9206.698713 + 30 +0.0 + 11 +13837.499971 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15BB + 8 +0 + 62 + 0 + 10 +13887.499971 + 20 +9185.048078 + 30 +0.0 + 11 +13874.999971 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +15BC + 8 +0 + 62 + 0 + 10 +13849.999971 + 20 +9249.999983 + 30 +0.0 + 11 +13849.999961 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15BD + 8 +0 + 62 + 0 + 10 +13921.187983 + 20 +9170.0 + 30 +0.0 + 11 +13912.499971 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +15BE + 8 +0 + 62 + 0 + 10 +13887.499971 + 20 +9228.349348 + 30 +0.0 + 11 +13874.999971 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15BF + 8 +0 + 62 + 0 + 10 +13924.999971 + 20 +9206.698713 + 30 +0.0 + 11 +13912.499971 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15C0 + 8 +0 + 62 + 0 + 10 +13962.499971 + 20 +9185.048078 + 30 +0.0 + 11 +13949.999971 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +15C1 + 8 +0 + 62 + 0 + 10 +13924.999971 + 20 +9249.999983 + 30 +0.0 + 11 +13924.999961 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15C2 + 8 +0 + 62 + 0 + 10 +13996.187982 + 20 +9170.0 + 30 +0.0 + 11 +13987.499971 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +15C3 + 8 +0 + 62 + 0 + 10 +13962.499971 + 20 +9228.349348 + 30 +0.0 + 11 +13949.999971 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15C4 + 8 +0 + 62 + 0 + 10 +13999.999971 + 20 +9206.698713 + 30 +0.0 + 11 +13987.499971 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15C5 + 8 +0 + 62 + 0 + 10 +14037.499971 + 20 +9185.048078 + 30 +0.0 + 11 +14024.999971 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +15C6 + 8 +0 + 62 + 0 + 10 +13999.999971 + 20 +9249.999983 + 30 +0.0 + 11 +13999.999961 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15C7 + 8 +0 + 62 + 0 + 10 +14071.187982 + 20 +9170.0 + 30 +0.0 + 11 +14062.49997 + 21 +9185.048078 + 31 +0.0 + 0 +LINE + 5 +15C8 + 8 +0 + 62 + 0 + 10 +14037.49997 + 20 +9228.349348 + 30 +0.0 + 11 +14024.99997 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15C9 + 8 +0 + 62 + 0 + 10 +14074.99997 + 20 +9206.698713 + 30 +0.0 + 11 +14062.49997 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15CA + 8 +0 + 62 + 0 + 10 +14112.49997 + 20 +9185.048078 + 30 +0.0 + 11 +14099.99997 + 21 +9206.698713 + 31 +0.0 + 0 +LINE + 5 +15CB + 8 +0 + 62 + 0 + 10 +14074.99997 + 20 +9249.999983 + 30 +0.0 + 11 +14074.99996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15CC + 8 +0 + 62 + 0 + 10 +14146.187982 + 20 +9170.0 + 30 +0.0 + 11 +14137.49997 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15CD + 8 +0 + 62 + 0 + 10 +14112.49997 + 20 +9228.349348 + 30 +0.0 + 11 +14099.99997 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15CE + 8 +0 + 62 + 0 + 10 +14149.99997 + 20 +9206.698713 + 30 +0.0 + 11 +14137.49997 + 21 +9228.349348 + 31 +0.0 + 0 +LINE + 5 +15CF + 8 +0 + 62 + 0 + 10 +14187.49997 + 20 +9185.048077 + 30 +0.0 + 11 +14174.99997 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15D0 + 8 +0 + 62 + 0 + 10 +14149.99997 + 20 +9249.999983 + 30 +0.0 + 11 +14149.99996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15D1 + 8 +0 + 62 + 0 + 10 +14221.187981 + 20 +9170.0 + 30 +0.0 + 11 +14212.49997 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15D2 + 8 +0 + 62 + 0 + 10 +14187.49997 + 20 +9228.349348 + 30 +0.0 + 11 +14174.99997 + 21 +9249.999983 + 31 +0.0 + 0 +LINE + 5 +15D3 + 8 +0 + 62 + 0 + 10 +14224.99997 + 20 +9206.698712 + 30 +0.0 + 11 +14212.49997 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15D4 + 8 +0 + 62 + 0 + 10 +14262.49997 + 20 +9185.048077 + 30 +0.0 + 11 +14249.99997 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15D5 + 8 +0 + 62 + 0 + 10 +14224.99997 + 20 +9249.999983 + 30 +0.0 + 11 +14224.99996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15D6 + 8 +0 + 62 + 0 + 10 +14296.187981 + 20 +9170.0 + 30 +0.0 + 11 +14287.49997 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15D7 + 8 +0 + 62 + 0 + 10 +14262.49997 + 20 +9228.349347 + 30 +0.0 + 11 +14249.99997 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15D8 + 8 +0 + 62 + 0 + 10 +14299.99997 + 20 +9206.698712 + 30 +0.0 + 11 +14287.49997 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15D9 + 8 +0 + 62 + 0 + 10 +14337.49997 + 20 +9185.048077 + 30 +0.0 + 11 +14324.99997 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15DA + 8 +0 + 62 + 0 + 10 +14299.99997 + 20 +9249.999982 + 30 +0.0 + 11 +14299.999959 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15DB + 8 +0 + 62 + 0 + 10 +14371.187981 + 20 +9170.0 + 30 +0.0 + 11 +14362.499969 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15DC + 8 +0 + 62 + 0 + 10 +14337.499969 + 20 +9228.349347 + 30 +0.0 + 11 +14324.999969 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15DD + 8 +0 + 62 + 0 + 10 +14374.999969 + 20 +9206.698712 + 30 +0.0 + 11 +14362.499969 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15DE + 8 +0 + 62 + 0 + 10 +14412.499969 + 20 +9185.048077 + 30 +0.0 + 11 +14399.999969 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15DF + 8 +0 + 62 + 0 + 10 +14374.999969 + 20 +9249.999982 + 30 +0.0 + 11 +14374.999959 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15E0 + 8 +0 + 62 + 0 + 10 +14446.18798 + 20 +9170.0 + 30 +0.0 + 11 +14437.499969 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15E1 + 8 +0 + 62 + 0 + 10 +14412.499969 + 20 +9228.349347 + 30 +0.0 + 11 +14399.999969 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15E2 + 8 +0 + 62 + 0 + 10 +14449.999969 + 20 +9206.698712 + 30 +0.0 + 11 +14437.499969 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15E3 + 8 +0 + 62 + 0 + 10 +14487.499969 + 20 +9185.048077 + 30 +0.0 + 11 +14474.999969 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15E4 + 8 +0 + 62 + 0 + 10 +14449.999969 + 20 +9249.999982 + 30 +0.0 + 11 +14449.999959 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15E5 + 8 +0 + 62 + 0 + 10 +14521.18798 + 20 +9170.0 + 30 +0.0 + 11 +14512.499969 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15E6 + 8 +0 + 62 + 0 + 10 +14487.499969 + 20 +9228.349347 + 30 +0.0 + 11 +14474.999969 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15E7 + 8 +0 + 62 + 0 + 10 +14524.999969 + 20 +9206.698712 + 30 +0.0 + 11 +14512.499969 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15E8 + 8 +0 + 62 + 0 + 10 +14562.499969 + 20 +9185.048077 + 30 +0.0 + 11 +14549.999969 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15E9 + 8 +0 + 62 + 0 + 10 +14524.999969 + 20 +9249.999982 + 30 +0.0 + 11 +14524.999958 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15EA + 8 +0 + 62 + 0 + 10 +14596.18798 + 20 +9170.0 + 30 +0.0 + 11 +14587.499969 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15EB + 8 +0 + 62 + 0 + 10 +14562.499969 + 20 +9228.349347 + 30 +0.0 + 11 +14549.999969 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15EC + 8 +0 + 62 + 0 + 10 +14599.999969 + 20 +9206.698712 + 30 +0.0 + 11 +14587.499969 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15ED + 8 +0 + 62 + 0 + 10 +14637.499969 + 20 +9185.048077 + 30 +0.0 + 11 +14624.999969 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15EE + 8 +0 + 62 + 0 + 10 +14599.999969 + 20 +9249.999982 + 30 +0.0 + 11 +14599.999958 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15EF + 8 +0 + 62 + 0 + 10 +14671.187979 + 20 +9170.0 + 30 +0.0 + 11 +14662.499968 + 21 +9185.048077 + 31 +0.0 + 0 +LINE + 5 +15F0 + 8 +0 + 62 + 0 + 10 +14637.499968 + 20 +9228.349347 + 30 +0.0 + 11 +14624.999968 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15F1 + 8 +0 + 62 + 0 + 10 +14674.999968 + 20 +9206.698712 + 30 +0.0 + 11 +14662.499968 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15F2 + 8 +0 + 62 + 0 + 10 +14712.499968 + 20 +9185.048076 + 30 +0.0 + 11 +14699.999968 + 21 +9206.698712 + 31 +0.0 + 0 +LINE + 5 +15F3 + 8 +0 + 62 + 0 + 10 +14674.999968 + 20 +9249.999982 + 30 +0.0 + 11 +14674.999958 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15F4 + 8 +0 + 62 + 0 + 10 +14746.187979 + 20 +9170.0 + 30 +0.0 + 11 +14737.499968 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +15F5 + 8 +0 + 62 + 0 + 10 +14712.499968 + 20 +9228.349347 + 30 +0.0 + 11 +14699.999968 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15F6 + 8 +0 + 62 + 0 + 10 +14749.999968 + 20 +9206.698711 + 30 +0.0 + 11 +14737.499968 + 21 +9228.349347 + 31 +0.0 + 0 +LINE + 5 +15F7 + 8 +0 + 62 + 0 + 10 +14787.499968 + 20 +9185.048076 + 30 +0.0 + 11 +14774.999968 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +15F8 + 8 +0 + 62 + 0 + 10 +14749.999968 + 20 +9249.999982 + 30 +0.0 + 11 +14749.999957 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15F9 + 8 +0 + 62 + 0 + 10 +14821.187979 + 20 +9170.0 + 30 +0.0 + 11 +14812.499968 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +15FA + 8 +0 + 62 + 0 + 10 +14787.499968 + 20 +9228.349346 + 30 +0.0 + 11 +14774.999968 + 21 +9249.999982 + 31 +0.0 + 0 +LINE + 5 +15FB + 8 +0 + 62 + 0 + 10 +14824.999968 + 20 +9206.698711 + 30 +0.0 + 11 +14812.499968 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +15FC + 8 +0 + 62 + 0 + 10 +14862.499968 + 20 +9185.048076 + 30 +0.0 + 11 +14849.999968 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +15FD + 8 +0 + 62 + 0 + 10 +14824.999968 + 20 +9249.999981 + 30 +0.0 + 11 +14824.999957 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +15FE + 8 +0 + 62 + 0 + 10 +14896.187978 + 20 +9170.0 + 30 +0.0 + 11 +14887.499968 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +15FF + 8 +0 + 62 + 0 + 10 +14862.499968 + 20 +9228.349346 + 30 +0.0 + 11 +14849.999968 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +1600 + 8 +0 + 62 + 0 + 10 +14899.999968 + 20 +9206.698711 + 30 +0.0 + 11 +14887.499968 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +1601 + 8 +0 + 62 + 0 + 10 +14937.499968 + 20 +9185.048076 + 30 +0.0 + 11 +14924.999968 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +1602 + 8 +0 + 62 + 0 + 10 +14899.999968 + 20 +9249.999981 + 30 +0.0 + 11 +14899.999957 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1603 + 8 +0 + 62 + 0 + 10 +14971.187978 + 20 +9170.0 + 30 +0.0 + 11 +14962.499967 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +1604 + 8 +0 + 62 + 0 + 10 +14937.499967 + 20 +9228.349346 + 30 +0.0 + 11 +14924.999967 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +1605 + 8 +0 + 62 + 0 + 10 +14974.999967 + 20 +9206.698711 + 30 +0.0 + 11 +14962.499967 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +1606 + 8 +0 + 62 + 0 + 10 +15012.499967 + 20 +9185.048076 + 30 +0.0 + 11 +14999.999967 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +1607 + 8 +0 + 62 + 0 + 10 +14974.999967 + 20 +9249.999981 + 30 +0.0 + 11 +14974.999956 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1608 + 8 +0 + 62 + 0 + 10 +15046.187978 + 20 +9170.0 + 30 +0.0 + 11 +15037.499967 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +1609 + 8 +0 + 62 + 0 + 10 +15012.499967 + 20 +9228.349346 + 30 +0.0 + 11 +14999.999967 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +160A + 8 +0 + 62 + 0 + 10 +15049.999967 + 20 +9206.698711 + 30 +0.0 + 11 +15037.499967 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +160B + 8 +0 + 62 + 0 + 10 +15087.499967 + 20 +9185.048076 + 30 +0.0 + 11 +15074.999967 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +160C + 8 +0 + 62 + 0 + 10 +15049.999967 + 20 +9249.999981 + 30 +0.0 + 11 +15049.999956 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +160D + 8 +0 + 62 + 0 + 10 +15121.187978 + 20 +9170.0 + 30 +0.0 + 11 +15112.499967 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +160E + 8 +0 + 62 + 0 + 10 +15087.499967 + 20 +9228.349346 + 30 +0.0 + 11 +15074.999967 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +160F + 8 +0 + 62 + 0 + 10 +15124.999967 + 20 +9206.698711 + 30 +0.0 + 11 +15112.499967 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +1610 + 8 +0 + 62 + 0 + 10 +15162.499967 + 20 +9185.048076 + 30 +0.0 + 11 +15149.999967 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +1611 + 8 +0 + 62 + 0 + 10 +15124.999967 + 20 +9249.999981 + 30 +0.0 + 11 +15124.999956 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1612 + 8 +0 + 62 + 0 + 10 +15196.187977 + 20 +9170.0 + 30 +0.0 + 11 +15187.499967 + 21 +9185.048076 + 31 +0.0 + 0 +LINE + 5 +1613 + 8 +0 + 62 + 0 + 10 +15162.499967 + 20 +9228.349346 + 30 +0.0 + 11 +15149.999967 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +1614 + 8 +0 + 62 + 0 + 10 +15199.999967 + 20 +9206.698711 + 30 +0.0 + 11 +15187.499967 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +1615 + 8 +0 + 62 + 0 + 10 +15237.499967 + 20 +9185.048075 + 30 +0.0 + 11 +15224.999967 + 21 +9206.698711 + 31 +0.0 + 0 +LINE + 5 +1616 + 8 +0 + 62 + 0 + 10 +15199.999967 + 20 +9249.999981 + 30 +0.0 + 11 +15199.999955 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1617 + 8 +0 + 62 + 0 + 10 +15271.187977 + 20 +9170.0 + 30 +0.0 + 11 +15262.499966 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +1618 + 8 +0 + 62 + 0 + 10 +15237.499966 + 20 +9228.349346 + 30 +0.0 + 11 +15224.999966 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +1619 + 8 +0 + 62 + 0 + 10 +15274.999966 + 20 +9206.69871 + 30 +0.0 + 11 +15262.499966 + 21 +9228.349346 + 31 +0.0 + 0 +LINE + 5 +161A + 8 +0 + 62 + 0 + 10 +15312.499966 + 20 +9185.048075 + 30 +0.0 + 11 +15299.999966 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +161B + 8 +0 + 62 + 0 + 10 +15274.999966 + 20 +9249.999981 + 30 +0.0 + 11 +15274.999955 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +161C + 8 +0 + 62 + 0 + 10 +15346.187977 + 20 +9170.0 + 30 +0.0 + 11 +15337.499966 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +161D + 8 +0 + 62 + 0 + 10 +15312.499966 + 20 +9228.349345 + 30 +0.0 + 11 +15299.999966 + 21 +9249.999981 + 31 +0.0 + 0 +LINE + 5 +161E + 8 +0 + 62 + 0 + 10 +15349.999966 + 20 +9206.69871 + 30 +0.0 + 11 +15337.499966 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +161F + 8 +0 + 62 + 0 + 10 +15387.499966 + 20 +9185.048075 + 30 +0.0 + 11 +15374.999966 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +1620 + 8 +0 + 62 + 0 + 10 +15349.999966 + 20 +9249.99998 + 30 +0.0 + 11 +15349.999955 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1621 + 8 +0 + 62 + 0 + 10 +15421.187976 + 20 +9170.0 + 30 +0.0 + 11 +15412.499966 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +1622 + 8 +0 + 62 + 0 + 10 +15387.499966 + 20 +9228.349345 + 30 +0.0 + 11 +15374.999966 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +1623 + 8 +0 + 62 + 0 + 10 +15424.999966 + 20 +9206.69871 + 30 +0.0 + 11 +15412.499966 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +1624 + 8 +0 + 62 + 0 + 10 +15462.499966 + 20 +9185.048075 + 30 +0.0 + 11 +15449.999966 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +1625 + 8 +0 + 62 + 0 + 10 +15424.999966 + 20 +9249.99998 + 30 +0.0 + 11 +15424.999954 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1626 + 8 +0 + 62 + 0 + 10 +15496.187976 + 20 +9170.0 + 30 +0.0 + 11 +15487.499966 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +1627 + 8 +0 + 62 + 0 + 10 +15462.499966 + 20 +9228.349345 + 30 +0.0 + 11 +15449.999966 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +1628 + 8 +0 + 62 + 0 + 10 +15499.999966 + 20 +9206.69871 + 30 +0.0 + 11 +15487.499966 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +1629 + 8 +0 + 62 + 0 + 10 +15537.499966 + 20 +9185.048075 + 30 +0.0 + 11 +15524.999966 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +162A + 8 +0 + 62 + 0 + 10 +15499.999966 + 20 +9249.99998 + 30 +0.0 + 11 +15499.999954 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +162B + 8 +0 + 62 + 0 + 10 +15571.187976 + 20 +9170.0 + 30 +0.0 + 11 +15562.499966 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +162C + 8 +0 + 62 + 0 + 10 +15537.499966 + 20 +9228.349345 + 30 +0.0 + 11 +15524.999966 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +162D + 8 +0 + 62 + 0 + 10 +15574.999965 + 20 +9206.69871 + 30 +0.0 + 11 +15562.499965 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +162E + 8 +0 + 62 + 0 + 10 +15612.499965 + 20 +9185.048075 + 30 +0.0 + 11 +15599.999965 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +162F + 8 +0 + 62 + 0 + 10 +15574.999965 + 20 +9249.99998 + 30 +0.0 + 11 +15574.999954 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1630 + 8 +0 + 62 + 0 + 10 +15646.187975 + 20 +9170.0 + 30 +0.0 + 11 +15637.499965 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +1631 + 8 +0 + 62 + 0 + 10 +15612.499965 + 20 +9228.349345 + 30 +0.0 + 11 +15599.999965 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +1632 + 8 +0 + 62 + 0 + 10 +15649.999965 + 20 +9206.69871 + 30 +0.0 + 11 +15637.499965 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +1633 + 8 +0 + 62 + 0 + 10 +15687.499965 + 20 +9185.048075 + 30 +0.0 + 11 +15674.999965 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +1634 + 8 +0 + 62 + 0 + 10 +15649.999965 + 20 +9249.99998 + 30 +0.0 + 11 +15649.999953 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1635 + 8 +0 + 62 + 0 + 10 +15721.187975 + 20 +9170.0 + 30 +0.0 + 11 +15712.499965 + 21 +9185.048075 + 31 +0.0 + 0 +LINE + 5 +1636 + 8 +0 + 62 + 0 + 10 +15687.499965 + 20 +9228.349345 + 30 +0.0 + 11 +15674.999965 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +1637 + 8 +0 + 62 + 0 + 10 +15724.999965 + 20 +9206.69871 + 30 +0.0 + 11 +15712.499965 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +1638 + 8 +0 + 62 + 0 + 10 +15762.499965 + 20 +9185.048074 + 30 +0.0 + 11 +15749.999965 + 21 +9206.69871 + 31 +0.0 + 0 +LINE + 5 +1639 + 8 +0 + 62 + 0 + 10 +15724.999965 + 20 +9249.99998 + 30 +0.0 + 11 +15724.999953 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +163A + 8 +0 + 62 + 0 + 10 +15796.187975 + 20 +9170.0 + 30 +0.0 + 11 +15787.499965 + 21 +9185.048074 + 31 +0.0 + 0 +LINE + 5 +163B + 8 +0 + 62 + 0 + 10 +15762.499965 + 20 +9228.349345 + 30 +0.0 + 11 +15749.999965 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +163C + 8 +0 + 62 + 0 + 10 +15799.999965 + 20 +9206.698709 + 30 +0.0 + 11 +15787.499965 + 21 +9228.349345 + 31 +0.0 + 0 +LINE + 5 +163D + 8 +0 + 62 + 0 + 10 +15837.499965 + 20 +9185.048074 + 30 +0.0 + 11 +15824.999965 + 21 +9206.698709 + 31 +0.0 + 0 +LINE + 5 +163E + 8 +0 + 62 + 0 + 10 +15799.999965 + 20 +9249.99998 + 30 +0.0 + 11 +15799.999953 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +163F + 8 +0 + 62 + 0 + 10 +15871.187974 + 20 +9170.0 + 30 +0.0 + 11 +15862.499965 + 21 +9185.048074 + 31 +0.0 + 0 +LINE + 5 +1640 + 8 +0 + 62 + 0 + 10 +15837.499965 + 20 +9228.349344 + 30 +0.0 + 11 +15824.999965 + 21 +9249.99998 + 31 +0.0 + 0 +LINE + 5 +1641 + 8 +0 + 62 + 0 + 10 +15874.999964 + 20 +9206.698709 + 30 +0.0 + 11 +15862.499964 + 21 +9228.349344 + 31 +0.0 + 0 +LINE + 5 +1642 + 8 +0 + 62 + 0 + 10 +15912.499964 + 20 +9185.048074 + 30 +0.0 + 11 +15899.999964 + 21 +9206.698709 + 31 +0.0 + 0 +LINE + 5 +1643 + 8 +0 + 62 + 0 + 10 +15874.999964 + 20 +9249.999979 + 30 +0.0 + 11 +15874.999952 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1644 + 8 +0 + 62 + 0 + 10 +15946.187974 + 20 +9170.0 + 30 +0.0 + 11 +15937.499964 + 21 +9185.048074 + 31 +0.0 + 0 +LINE + 5 +1645 + 8 +0 + 62 + 0 + 10 +15912.499964 + 20 +9228.349344 + 30 +0.0 + 11 +15899.999964 + 21 +9249.999979 + 31 +0.0 + 0 +LINE + 5 +1646 + 8 +0 + 62 + 0 + 10 +15949.999964 + 20 +9206.698709 + 30 +0.0 + 11 +15937.499964 + 21 +9228.349344 + 31 +0.0 + 0 +LINE + 5 +1647 + 8 +0 + 62 + 0 + 10 +15987.499964 + 20 +9185.048074 + 30 +0.0 + 11 +15974.999964 + 21 +9206.698709 + 31 +0.0 + 0 +LINE + 5 +1648 + 8 +0 + 62 + 0 + 10 +15949.999964 + 20 +9249.999979 + 30 +0.0 + 11 +15949.999952 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1649 + 8 +0 + 62 + 0 + 10 +16021.187974 + 20 +9170.0 + 30 +0.0 + 11 +16012.499964 + 21 +9185.048074 + 31 +0.0 + 0 +LINE + 5 +164A + 8 +0 + 62 + 0 + 10 +15987.499964 + 20 +9228.349344 + 30 +0.0 + 11 +15974.999964 + 21 +9249.999979 + 31 +0.0 + 0 +LINE + 5 +164B + 8 +0 + 62 + 0 + 10 +16024.999964 + 20 +9206.698709 + 30 +0.0 + 11 +16012.499964 + 21 +9228.349344 + 31 +0.0 + 0 +LINE + 5 +164C + 8 +0 + 62 + 0 + 10 +16062.499964 + 20 +9185.048074 + 30 +0.0 + 11 +16049.999964 + 21 +9206.698709 + 31 +0.0 + 0 +LINE + 5 +164D + 8 +0 + 62 + 0 + 10 +16024.999964 + 20 +9249.999979 + 30 +0.0 + 11 +16024.999952 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +164E + 8 +0 + 62 + 0 + 10 +16096.187973 + 20 +9170.0 + 30 +0.0 + 11 +16087.499964 + 21 +9185.048074 + 31 +0.0 + 0 +LINE + 5 +164F + 8 +0 + 62 + 0 + 10 +16062.499964 + 20 +9228.349344 + 30 +0.0 + 11 +16049.999964 + 21 +9249.999979 + 31 +0.0 + 0 +LINE + 5 +1650 + 8 +0 + 62 + 0 + 10 +16099.999964 + 20 +9206.698709 + 30 +0.0 + 11 +16087.499964 + 21 +9228.349344 + 31 +0.0 + 0 +LINE + 5 +1651 + 8 +0 + 62 + 0 + 10 +16126.25 + 20 +9204.533582 + 30 +0.0 + 11 +16124.999964 + 21 +9206.698709 + 31 +0.0 + 0 +LINE + 5 +1652 + 8 +0 + 62 + 0 + 10 +16099.999964 + 20 +9249.999979 + 30 +0.0 + 11 +16099.999951 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1653 + 8 +0 + 62 + 0 + 10 +16126.25 + 20 +9247.834852 + 30 +0.0 + 11 +16124.999964 + 21 +9249.999979 + 31 +0.0 + 0 +LINE + 5 +1654 + 8 +0 + 62 + 0 + 10 +13653.81194 + 20 +9170.0 + 30 +0.0 + 11 +13662.499971 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +1655 + 8 +0 + 62 + 0 + 10 +13687.499971 + 20 +9228.349381 + 30 +0.0 + 11 +13699.999962 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1656 + 8 +0 + 62 + 0 + 10 +13649.999972 + 20 +9206.698746 + 30 +0.0 + 11 +13662.499972 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +1657 + 8 +0 + 62 + 0 + 10 +13612.499972 + 20 +9185.048111 + 30 +0.0 + 11 +13624.999972 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +1658 + 8 +0 + 62 + 0 + 10 +13578.811941 + 20 +9170.0 + 30 +0.0 + 11 +13587.499972 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +1659 + 8 +0 + 62 + 0 + 10 +13612.499972 + 20 +9228.349381 + 30 +0.0 + 11 +13624.999962 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +165A + 8 +0 + 62 + 0 + 10 +13574.999972 + 20 +9206.698746 + 30 +0.0 + 11 +13587.499972 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +165B + 8 +0 + 62 + 0 + 10 +13537.499972 + 20 +9185.048111 + 30 +0.0 + 11 +13549.999972 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +165C + 8 +0 + 62 + 0 + 10 +13503.811941 + 20 +9170.0 + 30 +0.0 + 11 +13512.499972 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +165D + 8 +0 + 62 + 0 + 10 +13537.499972 + 20 +9228.349381 + 30 +0.0 + 11 +13549.999963 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +165E + 8 +0 + 62 + 0 + 10 +13499.999972 + 20 +9206.698746 + 30 +0.0 + 11 +13512.499972 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +165F + 8 +0 + 62 + 0 + 10 +13462.499972 + 20 +9185.048111 + 30 +0.0 + 11 +13474.999972 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +1660 + 8 +0 + 62 + 0 + 10 +13428.811941 + 20 +9170.0 + 30 +0.0 + 11 +13437.499972 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +1661 + 8 +0 + 62 + 0 + 10 +13462.499972 + 20 +9228.349381 + 30 +0.0 + 11 +13474.999963 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1662 + 8 +0 + 62 + 0 + 10 +13424.999972 + 20 +9206.698746 + 30 +0.0 + 11 +13437.499972 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +1663 + 8 +0 + 62 + 0 + 10 +13387.499972 + 20 +9185.048111 + 30 +0.0 + 11 +13399.999972 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +1664 + 8 +0 + 62 + 0 + 10 +13353.811942 + 20 +9170.0 + 30 +0.0 + 11 +13362.499972 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +1665 + 8 +0 + 62 + 0 + 10 +13387.499972 + 20 +9228.349381 + 30 +0.0 + 11 +13399.999963 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1666 + 8 +0 + 62 + 0 + 10 +13349.999973 + 20 +9206.698746 + 30 +0.0 + 11 +13362.499973 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +1667 + 8 +0 + 62 + 0 + 10 +13312.499973 + 20 +9185.048111 + 30 +0.0 + 11 +13324.999973 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +1668 + 8 +0 + 62 + 0 + 10 +13278.811942 + 20 +9170.0 + 30 +0.0 + 11 +13287.499973 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +1669 + 8 +0 + 62 + 0 + 10 +13312.499973 + 20 +9228.349381 + 30 +0.0 + 11 +13324.999964 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +166A + 8 +0 + 62 + 0 + 10 +13274.999973 + 20 +9206.698746 + 30 +0.0 + 11 +13287.499973 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +166B + 8 +0 + 62 + 0 + 10 +13237.499973 + 20 +9185.04811 + 30 +0.0 + 11 +13249.999973 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +166C + 8 +0 + 62 + 0 + 10 +13203.811942 + 20 +9170.0 + 30 +0.0 + 11 +13212.499973 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +166D + 8 +0 + 62 + 0 + 10 +13237.499973 + 20 +9228.349381 + 30 +0.0 + 11 +13249.999964 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +166E + 8 +0 + 62 + 0 + 10 +13199.999973 + 20 +9206.698745 + 30 +0.0 + 11 +13212.499973 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +166F + 8 +0 + 62 + 0 + 10 +13162.499973 + 20 +9185.04811 + 30 +0.0 + 11 +13174.999973 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +1670 + 8 +0 + 62 + 0 + 10 +13128.811943 + 20 +9170.0 + 30 +0.0 + 11 +13137.499973 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +1671 + 8 +0 + 62 + 0 + 10 +13162.499973 + 20 +9228.34938 + 30 +0.0 + 11 +13174.999964 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1672 + 8 +0 + 62 + 0 + 10 +13124.999973 + 20 +9206.698745 + 30 +0.0 + 11 +13137.499973 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +1673 + 8 +0 + 62 + 0 + 10 +13087.499973 + 20 +9185.04811 + 30 +0.0 + 11 +13099.999973 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +1674 + 8 +0 + 62 + 0 + 10 +13053.811943 + 20 +9170.0 + 30 +0.0 + 11 +13062.499973 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +1675 + 8 +0 + 62 + 0 + 10 +13087.499973 + 20 +9228.34938 + 30 +0.0 + 11 +13099.999965 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1676 + 8 +0 + 62 + 0 + 10 +13049.999974 + 20 +9206.698745 + 30 +0.0 + 11 +13062.499974 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +1677 + 8 +0 + 62 + 0 + 10 +13012.499974 + 20 +9185.04811 + 30 +0.0 + 11 +13024.999974 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +1678 + 8 +0 + 62 + 0 + 10 +12978.811943 + 20 +9170.0 + 30 +0.0 + 11 +12987.499974 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +1679 + 8 +0 + 62 + 0 + 10 +13012.499974 + 20 +9228.34938 + 30 +0.0 + 11 +13024.999965 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +167A + 8 +0 + 62 + 0 + 10 +12974.999974 + 20 +9206.698745 + 30 +0.0 + 11 +12987.499974 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +167B + 8 +0 + 62 + 0 + 10 +12937.499974 + 20 +9185.04811 + 30 +0.0 + 11 +12949.999974 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +167C + 8 +0 + 62 + 0 + 10 +12903.811944 + 20 +9170.0 + 30 +0.0 + 11 +12912.499974 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +167D + 8 +0 + 62 + 0 + 10 +12937.499974 + 20 +9228.34938 + 30 +0.0 + 11 +12949.999965 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +167E + 8 +0 + 62 + 0 + 10 +12899.999974 + 20 +9206.698745 + 30 +0.0 + 11 +12912.499974 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +167F + 8 +0 + 62 + 0 + 10 +12862.499974 + 20 +9185.04811 + 30 +0.0 + 11 +12874.999974 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +1680 + 8 +0 + 62 + 0 + 10 +12828.811944 + 20 +9170.0 + 30 +0.0 + 11 +12837.499974 + 21 +9185.04811 + 31 +0.0 + 0 +LINE + 5 +1681 + 8 +0 + 62 + 0 + 10 +12862.499974 + 20 +9228.34938 + 30 +0.0 + 11 +12874.999966 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1682 + 8 +0 + 62 + 0 + 10 +12824.999974 + 20 +9206.698745 + 30 +0.0 + 11 +12837.499974 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +1683 + 8 +0 + 62 + 0 + 10 +12787.499974 + 20 +9185.04811 + 30 +0.0 + 11 +12799.999974 + 21 +9206.698745 + 31 +0.0 + 0 +LINE + 5 +1684 + 8 +0 + 62 + 0 + 10 +12753.811944 + 20 +9170.0 + 30 +0.0 + 11 +12762.499974 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +1685 + 8 +0 + 62 + 0 + 10 +12787.499974 + 20 +9228.34938 + 30 +0.0 + 11 +12799.999966 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1686 + 8 +0 + 62 + 0 + 10 +12749.999975 + 20 +9206.698745 + 30 +0.0 + 11 +12762.499975 + 21 +9228.34938 + 31 +0.0 + 0 +LINE + 5 +1687 + 8 +0 + 62 + 0 + 10 +12712.499975 + 20 +9185.048109 + 30 +0.0 + 11 +12724.999975 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +1688 + 8 +0 + 62 + 0 + 10 +12678.811945 + 20 +9170.0 + 30 +0.0 + 11 +12687.499975 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +1689 + 8 +0 + 62 + 0 + 10 +12712.499975 + 20 +9228.34938 + 30 +0.0 + 11 +12724.999966 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +168A + 8 +0 + 62 + 0 + 10 +12674.999975 + 20 +9206.698744 + 30 +0.0 + 11 +12687.499975 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +168B + 8 +0 + 62 + 0 + 10 +12637.499975 + 20 +9185.048109 + 30 +0.0 + 11 +12649.999975 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +168C + 8 +0 + 62 + 0 + 10 +12603.811945 + 20 +9170.0 + 30 +0.0 + 11 +12612.499975 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +168D + 8 +0 + 62 + 0 + 10 +12637.499975 + 20 +9228.349379 + 30 +0.0 + 11 +12649.999967 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +168E + 8 +0 + 62 + 0 + 10 +12599.999975 + 20 +9206.698744 + 30 +0.0 + 11 +12612.499975 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +168F + 8 +0 + 62 + 0 + 10 +12562.499975 + 20 +9185.048109 + 30 +0.0 + 11 +12574.999975 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +1690 + 8 +0 + 62 + 0 + 10 +12528.811945 + 20 +9170.0 + 30 +0.0 + 11 +12537.499975 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +1691 + 8 +0 + 62 + 0 + 10 +12562.499975 + 20 +9228.349379 + 30 +0.0 + 11 +12574.999967 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1692 + 8 +0 + 62 + 0 + 10 +12524.999975 + 20 +9206.698744 + 30 +0.0 + 11 +12537.499975 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +1693 + 8 +0 + 62 + 0 + 10 +12487.499975 + 20 +9185.048109 + 30 +0.0 + 11 +12499.999975 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +1694 + 8 +0 + 62 + 0 + 10 +12453.811946 + 20 +9170.0 + 30 +0.0 + 11 +12462.499975 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +1695 + 8 +0 + 62 + 0 + 10 +12487.499975 + 20 +9228.349379 + 30 +0.0 + 11 +12499.999967 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1696 + 8 +0 + 62 + 0 + 10 +12449.999976 + 20 +9206.698744 + 30 +0.0 + 11 +12462.499976 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +1697 + 8 +0 + 62 + 0 + 10 +12412.499976 + 20 +9185.048109 + 30 +0.0 + 11 +12424.999976 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +1698 + 8 +0 + 62 + 0 + 10 +12378.811946 + 20 +9170.0 + 30 +0.0 + 11 +12387.499976 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +1699 + 8 +0 + 62 + 0 + 10 +12412.499976 + 20 +9228.349379 + 30 +0.0 + 11 +12424.999968 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +169A + 8 +0 + 62 + 0 + 10 +12374.999976 + 20 +9206.698744 + 30 +0.0 + 11 +12387.499976 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +169B + 8 +0 + 62 + 0 + 10 +12337.499976 + 20 +9185.048109 + 30 +0.0 + 11 +12349.999976 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +169C + 8 +0 + 62 + 0 + 10 +12303.811946 + 20 +9170.0 + 30 +0.0 + 11 +12312.499976 + 21 +9185.048109 + 31 +0.0 + 0 +LINE + 5 +169D + 8 +0 + 62 + 0 + 10 +12337.499976 + 20 +9228.349379 + 30 +0.0 + 11 +12349.999968 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +169E + 8 +0 + 62 + 0 + 10 +12299.999976 + 20 +9206.698744 + 30 +0.0 + 11 +12312.499976 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +169F + 8 +0 + 62 + 0 + 10 +12262.499976 + 20 +9185.048109 + 30 +0.0 + 11 +12274.999976 + 21 +9206.698744 + 31 +0.0 + 0 +LINE + 5 +16A0 + 8 +0 + 62 + 0 + 10 +12228.811947 + 20 +9170.0 + 30 +0.0 + 11 +12237.499976 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16A1 + 8 +0 + 62 + 0 + 10 +12262.499976 + 20 +9228.349379 + 30 +0.0 + 11 +12274.999968 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16A2 + 8 +0 + 62 + 0 + 10 +12224.999976 + 20 +9206.698744 + 30 +0.0 + 11 +12237.499976 + 21 +9228.349379 + 31 +0.0 + 0 +LINE + 5 +16A3 + 8 +0 + 62 + 0 + 10 +12187.499976 + 20 +9185.048108 + 30 +0.0 + 11 +12199.999976 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16A4 + 8 +0 + 62 + 0 + 10 +12153.811947 + 20 +9170.0 + 30 +0.0 + 11 +12162.499976 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16A5 + 8 +0 + 62 + 0 + 10 +12187.499976 + 20 +9228.349379 + 30 +0.0 + 11 +12199.999969 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16A6 + 8 +0 + 62 + 0 + 10 +12149.999976 + 20 +9206.698743 + 30 +0.0 + 11 +12162.499976 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16A7 + 8 +0 + 62 + 0 + 10 +12112.499977 + 20 +9185.048108 + 30 +0.0 + 11 +12124.999977 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16A8 + 8 +0 + 62 + 0 + 10 +12078.811947 + 20 +9170.0 + 30 +0.0 + 11 +12087.499977 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16A9 + 8 +0 + 62 + 0 + 10 +12112.499977 + 20 +9228.349378 + 30 +0.0 + 11 +12124.999969 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16AA + 8 +0 + 62 + 0 + 10 +12074.999977 + 20 +9206.698743 + 30 +0.0 + 11 +12087.499977 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16AB + 8 +0 + 62 + 0 + 10 +12037.499977 + 20 +9185.048108 + 30 +0.0 + 11 +12049.999977 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16AC + 8 +0 + 62 + 0 + 10 +12003.811948 + 20 +9170.0 + 30 +0.0 + 11 +12012.499977 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16AD + 8 +0 + 62 + 0 + 10 +12037.499977 + 20 +9228.349378 + 30 +0.0 + 11 +12049.999969 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16AE + 8 +0 + 62 + 0 + 10 +11999.999977 + 20 +9206.698743 + 30 +0.0 + 11 +12012.499977 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16AF + 8 +0 + 62 + 0 + 10 +11962.499977 + 20 +9185.048108 + 30 +0.0 + 11 +11974.999977 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16B0 + 8 +0 + 62 + 0 + 10 +11928.811948 + 20 +9170.0 + 30 +0.0 + 11 +11937.499977 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16B1 + 8 +0 + 62 + 0 + 10 +11962.499977 + 20 +9228.349378 + 30 +0.0 + 11 +11974.99997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16B2 + 8 +0 + 62 + 0 + 10 +11924.999977 + 20 +9206.698743 + 30 +0.0 + 11 +11937.499977 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16B3 + 8 +0 + 62 + 0 + 10 +11887.499977 + 20 +9185.048108 + 30 +0.0 + 11 +11899.999977 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16B4 + 8 +0 + 62 + 0 + 10 +11853.811948 + 20 +9170.0 + 30 +0.0 + 11 +11862.499977 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16B5 + 8 +0 + 62 + 0 + 10 +11887.499977 + 20 +9228.349378 + 30 +0.0 + 11 +11899.99997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16B6 + 8 +0 + 62 + 0 + 10 +11849.999977 + 20 +9206.698743 + 30 +0.0 + 11 +11862.499977 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16B7 + 8 +0 + 62 + 0 + 10 +11812.499978 + 20 +9185.048108 + 30 +0.0 + 11 +11824.999978 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16B8 + 8 +0 + 62 + 0 + 10 +11778.811949 + 20 +9170.0 + 30 +0.0 + 11 +11787.499978 + 21 +9185.048108 + 31 +0.0 + 0 +LINE + 5 +16B9 + 8 +0 + 62 + 0 + 10 +11812.499978 + 20 +9228.349378 + 30 +0.0 + 11 +11824.99997 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16BA + 8 +0 + 62 + 0 + 10 +11774.999978 + 20 +9206.698743 + 30 +0.0 + 11 +11787.499978 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16BB + 8 +0 + 62 + 0 + 10 +11737.499978 + 20 +9185.048108 + 30 +0.0 + 11 +11749.999978 + 21 +9206.698743 + 31 +0.0 + 0 +LINE + 5 +16BC + 8 +0 + 62 + 0 + 10 +11703.811949 + 20 +9170.0 + 30 +0.0 + 11 +11712.499978 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16BD + 8 +0 + 62 + 0 + 10 +11737.499978 + 20 +9228.349378 + 30 +0.0 + 11 +11749.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16BE + 8 +0 + 62 + 0 + 10 +11699.999978 + 20 +9206.698743 + 30 +0.0 + 11 +11712.499978 + 21 +9228.349378 + 31 +0.0 + 0 +LINE + 5 +16BF + 8 +0 + 62 + 0 + 10 +11662.499978 + 20 +9185.048107 + 30 +0.0 + 11 +11674.999978 + 21 +9206.698742 + 31 +0.0 + 0 +LINE + 5 +16C0 + 8 +0 + 62 + 0 + 10 +11628.811949 + 20 +9170.0 + 30 +0.0 + 11 +11637.499978 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16C1 + 8 +0 + 62 + 0 + 10 +11662.499978 + 20 +9228.349378 + 30 +0.0 + 11 +11674.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16C2 + 8 +0 + 62 + 0 + 10 +11624.999978 + 20 +9206.698742 + 30 +0.0 + 11 +11637.499978 + 21 +9228.349377 + 31 +0.0 + 0 +LINE + 5 +16C3 + 8 +0 + 62 + 0 + 10 +11587.499978 + 20 +9185.048107 + 30 +0.0 + 11 +11599.999978 + 21 +9206.698742 + 31 +0.0 + 0 +LINE + 5 +16C4 + 8 +0 + 62 + 0 + 10 +11553.81195 + 20 +9170.0 + 30 +0.0 + 11 +11562.499978 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16C5 + 8 +0 + 62 + 0 + 10 +11587.499978 + 20 +9228.349377 + 30 +0.0 + 11 +11599.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16C6 + 8 +0 + 62 + 0 + 10 +11549.999978 + 20 +9206.698742 + 30 +0.0 + 11 +11562.499978 + 21 +9228.349377 + 31 +0.0 + 0 +LINE + 5 +16C7 + 8 +0 + 62 + 0 + 10 +11512.499979 + 20 +9185.048107 + 30 +0.0 + 11 +11524.999979 + 21 +9206.698742 + 31 +0.0 + 0 +LINE + 5 +16C8 + 8 +0 + 62 + 0 + 10 +11478.81195 + 20 +9170.0 + 30 +0.0 + 11 +11487.499979 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16C9 + 8 +0 + 62 + 0 + 10 +11512.499979 + 20 +9228.349377 + 30 +0.0 + 11 +11524.999971 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16CA + 8 +0 + 62 + 0 + 10 +11474.999979 + 20 +9206.698742 + 30 +0.0 + 11 +11487.499979 + 21 +9228.349377 + 31 +0.0 + 0 +LINE + 5 +16CB + 8 +0 + 62 + 0 + 10 +11437.499979 + 20 +9185.048107 + 30 +0.0 + 11 +11449.999979 + 21 +9206.698742 + 31 +0.0 + 0 +LINE + 5 +16CC + 8 +0 + 62 + 0 + 10 +11403.81195 + 20 +9170.0 + 30 +0.0 + 11 +11412.499979 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16CD + 8 +0 + 62 + 0 + 10 +11437.499979 + 20 +9228.349377 + 30 +0.0 + 11 +11449.999972 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16CE + 8 +0 + 62 + 0 + 10 +11399.999979 + 20 +9206.698742 + 30 +0.0 + 11 +11412.499979 + 21 +9228.349377 + 31 +0.0 + 0 +LINE + 5 +16CF + 8 +0 + 62 + 0 + 10 +11362.499979 + 20 +9185.048107 + 30 +0.0 + 11 +11374.999979 + 21 +9206.698742 + 31 +0.0 + 0 +LINE + 5 +16D0 + 8 +0 + 62 + 0 + 10 +11328.811951 + 20 +9170.0 + 30 +0.0 + 11 +11337.499979 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16D1 + 8 +0 + 62 + 0 + 10 +11362.499979 + 20 +9228.349377 + 30 +0.0 + 11 +11374.999972 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16D2 + 8 +0 + 62 + 0 + 10 +11324.999979 + 20 +9206.698742 + 30 +0.0 + 11 +11337.499979 + 21 +9228.349377 + 31 +0.0 + 0 +LINE + 5 +16D3 + 8 +0 + 62 + 0 + 10 +11287.499979 + 20 +9185.048107 + 30 +0.0 + 11 +11299.999979 + 21 +9206.698742 + 31 +0.0 + 0 +LINE + 5 +16D4 + 8 +0 + 62 + 0 + 10 +11253.811951 + 20 +9170.0 + 30 +0.0 + 11 +11262.499979 + 21 +9185.048107 + 31 +0.0 + 0 +LINE + 5 +16D5 + 8 +0 + 62 + 0 + 10 +11287.499979 + 20 +9228.349377 + 30 +0.0 + 11 +11299.999972 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16D6 + 8 +0 + 62 + 0 + 10 +11249.999979 + 20 +9206.698742 + 30 +0.0 + 11 +11262.499979 + 21 +9228.349377 + 31 +0.0 + 0 +LINE + 5 +16D7 + 8 +0 + 62 + 0 + 10 +13687.499971 + 20 +9185.048111 + 30 +0.0 + 11 +13699.999971 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +16D8 + 8 +0 + 62 + 0 + 10 +13724.999971 + 20 +9206.698746 + 30 +0.0 + 11 +13737.499971 + 21 +9228.349381 + 31 +0.0 + 0 +LINE + 5 +16D9 + 8 +0 + 62 + 0 + 10 +13728.81194 + 20 +9170.0 + 30 +0.0 + 11 +13737.499971 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +16DA + 8 +0 + 62 + 0 + 10 +13762.499971 + 20 +9228.349382 + 30 +0.0 + 11 +13774.999962 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16DB + 8 +0 + 62 + 0 + 10 +13762.499971 + 20 +9185.048111 + 30 +0.0 + 11 +13774.999971 + 21 +9206.698746 + 31 +0.0 + 0 +LINE + 5 +16DC + 8 +0 + 62 + 0 + 10 +13799.999971 + 20 +9206.698747 + 30 +0.0 + 11 +13812.499971 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16DD + 8 +0 + 62 + 0 + 10 +13803.81194 + 20 +9170.0 + 30 +0.0 + 11 +13812.499971 + 21 +9185.048111 + 31 +0.0 + 0 +LINE + 5 +16DE + 8 +0 + 62 + 0 + 10 +13837.499971 + 20 +9228.349382 + 30 +0.0 + 11 +13849.999961 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16DF + 8 +0 + 62 + 0 + 10 +13837.499971 + 20 +9185.048112 + 30 +0.0 + 11 +13849.999971 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16E0 + 8 +0 + 62 + 0 + 10 +13874.999971 + 20 +9206.698747 + 30 +0.0 + 11 +13887.499971 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16E1 + 8 +0 + 62 + 0 + 10 +13878.811939 + 20 +9170.0 + 30 +0.0 + 11 +13887.499971 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16E2 + 8 +0 + 62 + 0 + 10 +13912.499971 + 20 +9228.349382 + 30 +0.0 + 11 +13924.999961 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16E3 + 8 +0 + 62 + 0 + 10 +13912.499971 + 20 +9185.048112 + 30 +0.0 + 11 +13924.999971 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16E4 + 8 +0 + 62 + 0 + 10 +13949.999971 + 20 +9206.698747 + 30 +0.0 + 11 +13962.499971 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16E5 + 8 +0 + 62 + 0 + 10 +13953.811939 + 20 +9170.0 + 30 +0.0 + 11 +13962.499971 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16E6 + 8 +0 + 62 + 0 + 10 +13987.499971 + 20 +9228.349382 + 30 +0.0 + 11 +13999.999961 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16E7 + 8 +0 + 62 + 0 + 10 +13987.49997 + 20 +9185.048112 + 30 +0.0 + 11 +13999.99997 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16E8 + 8 +0 + 62 + 0 + 10 +14024.99997 + 20 +9206.698747 + 30 +0.0 + 11 +14037.49997 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16E9 + 8 +0 + 62 + 0 + 10 +14028.811939 + 20 +9170.0 + 30 +0.0 + 11 +14037.49997 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16EA + 8 +0 + 62 + 0 + 10 +14062.49997 + 20 +9228.349382 + 30 +0.0 + 11 +14074.99996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16EB + 8 +0 + 62 + 0 + 10 +14062.49997 + 20 +9185.048112 + 30 +0.0 + 11 +14074.99997 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16EC + 8 +0 + 62 + 0 + 10 +14099.99997 + 20 +9206.698747 + 30 +0.0 + 11 +14112.49997 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16ED + 8 +0 + 62 + 0 + 10 +14103.811938 + 20 +9170.0 + 30 +0.0 + 11 +14112.49997 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16EE + 8 +0 + 62 + 0 + 10 +14137.49997 + 20 +9228.349382 + 30 +0.0 + 11 +14149.99996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16EF + 8 +0 + 62 + 0 + 10 +14137.49997 + 20 +9185.048112 + 30 +0.0 + 11 +14149.99997 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16F0 + 8 +0 + 62 + 0 + 10 +14174.99997 + 20 +9206.698747 + 30 +0.0 + 11 +14187.49997 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16F1 + 8 +0 + 62 + 0 + 10 +14178.811938 + 20 +9170.0 + 30 +0.0 + 11 +14187.49997 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16F2 + 8 +0 + 62 + 0 + 10 +14212.49997 + 20 +9228.349382 + 30 +0.0 + 11 +14224.99996 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16F3 + 8 +0 + 62 + 0 + 10 +14212.49997 + 20 +9185.048112 + 30 +0.0 + 11 +14224.99997 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16F4 + 8 +0 + 62 + 0 + 10 +14249.99997 + 20 +9206.698747 + 30 +0.0 + 11 +14262.49997 + 21 +9228.349382 + 31 +0.0 + 0 +LINE + 5 +16F5 + 8 +0 + 62 + 0 + 10 +14253.811938 + 20 +9170.0 + 30 +0.0 + 11 +14262.49997 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16F6 + 8 +0 + 62 + 0 + 10 +14287.49997 + 20 +9228.349383 + 30 +0.0 + 11 +14299.999959 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16F7 + 8 +0 + 62 + 0 + 10 +14287.499969 + 20 +9185.048112 + 30 +0.0 + 11 +14299.999969 + 21 +9206.698747 + 31 +0.0 + 0 +LINE + 5 +16F8 + 8 +0 + 62 + 0 + 10 +14324.999969 + 20 +9206.698748 + 30 +0.0 + 11 +14337.499969 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +16F9 + 8 +0 + 62 + 0 + 10 +14328.811937 + 20 +9170.0 + 30 +0.0 + 11 +14337.499969 + 21 +9185.048112 + 31 +0.0 + 0 +LINE + 5 +16FA + 8 +0 + 62 + 0 + 10 +14362.499969 + 20 +9228.349383 + 30 +0.0 + 11 +14374.999959 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16FB + 8 +0 + 62 + 0 + 10 +14362.499969 + 20 +9185.048113 + 30 +0.0 + 11 +14374.999969 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +16FC + 8 +0 + 62 + 0 + 10 +14399.999969 + 20 +9206.698748 + 30 +0.0 + 11 +14412.499969 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +16FD + 8 +0 + 62 + 0 + 10 +14403.811937 + 20 +9170.0 + 30 +0.0 + 11 +14412.499969 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +16FE + 8 +0 + 62 + 0 + 10 +14437.499969 + 20 +9228.349383 + 30 +0.0 + 11 +14449.999959 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +16FF + 8 +0 + 62 + 0 + 10 +14437.499969 + 20 +9185.048113 + 30 +0.0 + 11 +14449.999969 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +1700 + 8 +0 + 62 + 0 + 10 +14474.999969 + 20 +9206.698748 + 30 +0.0 + 11 +14487.499969 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +1701 + 8 +0 + 62 + 0 + 10 +14478.811937 + 20 +9170.0 + 30 +0.0 + 11 +14487.499969 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +1702 + 8 +0 + 62 + 0 + 10 +14512.499969 + 20 +9228.349383 + 30 +0.0 + 11 +14524.999958 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1703 + 8 +0 + 62 + 0 + 10 +14512.499969 + 20 +9185.048113 + 30 +0.0 + 11 +14524.999969 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +1704 + 8 +0 + 62 + 0 + 10 +14549.999969 + 20 +9206.698748 + 30 +0.0 + 11 +14562.499969 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +1705 + 8 +0 + 62 + 0 + 10 +14553.811937 + 20 +9170.0 + 30 +0.0 + 11 +14562.499969 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +1706 + 8 +0 + 62 + 0 + 10 +14587.499969 + 20 +9228.349383 + 30 +0.0 + 11 +14599.999958 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1707 + 8 +0 + 62 + 0 + 10 +14587.499968 + 20 +9185.048113 + 30 +0.0 + 11 +14599.999968 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +1708 + 8 +0 + 62 + 0 + 10 +14624.999968 + 20 +9206.698748 + 30 +0.0 + 11 +14637.499968 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +1709 + 8 +0 + 62 + 0 + 10 +14628.811936 + 20 +9170.0 + 30 +0.0 + 11 +14637.499968 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +170A + 8 +0 + 62 + 0 + 10 +14662.499968 + 20 +9228.349383 + 30 +0.0 + 11 +14674.999958 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +170B + 8 +0 + 62 + 0 + 10 +14662.499968 + 20 +9185.048113 + 30 +0.0 + 11 +14674.999968 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +170C + 8 +0 + 62 + 0 + 10 +14699.999968 + 20 +9206.698748 + 30 +0.0 + 11 +14712.499968 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +170D + 8 +0 + 62 + 0 + 10 +14703.811936 + 20 +9170.0 + 30 +0.0 + 11 +14712.499968 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +170E + 8 +0 + 62 + 0 + 10 +14737.499968 + 20 +9228.349383 + 30 +0.0 + 11 +14749.999957 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +170F + 8 +0 + 62 + 0 + 10 +14737.499968 + 20 +9185.048113 + 30 +0.0 + 11 +14749.999968 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +1710 + 8 +0 + 62 + 0 + 10 +14774.999968 + 20 +9206.698748 + 30 +0.0 + 11 +14787.499968 + 21 +9228.349383 + 31 +0.0 + 0 +LINE + 5 +1711 + 8 +0 + 62 + 0 + 10 +14778.811936 + 20 +9170.0 + 30 +0.0 + 11 +14787.499968 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +1712 + 8 +0 + 62 + 0 + 10 +14812.499968 + 20 +9228.349383 + 30 +0.0 + 11 +14824.999957 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1713 + 8 +0 + 62 + 0 + 10 +14812.499968 + 20 +9185.048113 + 30 +0.0 + 11 +14824.999968 + 21 +9206.698748 + 31 +0.0 + 0 +LINE + 5 +1714 + 8 +0 + 62 + 0 + 10 +14849.999968 + 20 +9206.698748 + 30 +0.0 + 11 +14862.499968 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +1715 + 8 +0 + 62 + 0 + 10 +14853.811935 + 20 +9170.0 + 30 +0.0 + 11 +14862.499968 + 21 +9185.048113 + 31 +0.0 + 0 +LINE + 5 +1716 + 8 +0 + 62 + 0 + 10 +14887.499968 + 20 +9228.349384 + 30 +0.0 + 11 +14899.999957 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1717 + 8 +0 + 62 + 0 + 10 +14887.499967 + 20 +9185.048113 + 30 +0.0 + 11 +14899.999967 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +1718 + 8 +0 + 62 + 0 + 10 +14924.999967 + 20 +9206.698749 + 30 +0.0 + 11 +14937.499967 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +1719 + 8 +0 + 62 + 0 + 10 +14928.811935 + 20 +9170.0 + 30 +0.0 + 11 +14937.499967 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +171A + 8 +0 + 62 + 0 + 10 +14962.499967 + 20 +9228.349384 + 30 +0.0 + 11 +14974.999956 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +171B + 8 +0 + 62 + 0 + 10 +14962.499967 + 20 +9185.048114 + 30 +0.0 + 11 +14974.999967 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +171C + 8 +0 + 62 + 0 + 10 +14999.999967 + 20 +9206.698749 + 30 +0.0 + 11 +15012.499967 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +171D + 8 +0 + 62 + 0 + 10 +15003.811935 + 20 +9170.0 + 30 +0.0 + 11 +15012.499967 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +171E + 8 +0 + 62 + 0 + 10 +15037.499967 + 20 +9228.349384 + 30 +0.0 + 11 +15049.999956 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +171F + 8 +0 + 62 + 0 + 10 +15037.499967 + 20 +9185.048114 + 30 +0.0 + 11 +15049.999967 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +1720 + 8 +0 + 62 + 0 + 10 +15074.999967 + 20 +9206.698749 + 30 +0.0 + 11 +15087.499967 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +1721 + 8 +0 + 62 + 0 + 10 +15078.811934 + 20 +9170.0 + 30 +0.0 + 11 +15087.499967 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +1722 + 8 +0 + 62 + 0 + 10 +15112.499967 + 20 +9228.349384 + 30 +0.0 + 11 +15124.999956 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1723 + 8 +0 + 62 + 0 + 10 +15112.499967 + 20 +9185.048114 + 30 +0.0 + 11 +15124.999967 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +1724 + 8 +0 + 62 + 0 + 10 +15149.999967 + 20 +9206.698749 + 30 +0.0 + 11 +15162.499967 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +1725 + 8 +0 + 62 + 0 + 10 +15153.811934 + 20 +9170.0 + 30 +0.0 + 11 +15162.499967 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +1726 + 8 +0 + 62 + 0 + 10 +15187.499967 + 20 +9228.349384 + 30 +0.0 + 11 +15199.999955 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1727 + 8 +0 + 62 + 0 + 10 +15187.499966 + 20 +9185.048114 + 30 +0.0 + 11 +15199.999966 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +1728 + 8 +0 + 62 + 0 + 10 +15224.999966 + 20 +9206.698749 + 30 +0.0 + 11 +15237.499966 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +1729 + 8 +0 + 62 + 0 + 10 +15228.811934 + 20 +9170.0 + 30 +0.0 + 11 +15237.499966 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +172A + 8 +0 + 62 + 0 + 10 +15262.499966 + 20 +9228.349384 + 30 +0.0 + 11 +15274.999955 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +172B + 8 +0 + 62 + 0 + 10 +15262.499966 + 20 +9185.048114 + 30 +0.0 + 11 +15274.999966 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +172C + 8 +0 + 62 + 0 + 10 +15299.999966 + 20 +9206.698749 + 30 +0.0 + 11 +15312.499966 + 21 +9228.349384 + 31 +0.0 + 0 +LINE + 5 +172D + 8 +0 + 62 + 0 + 10 +15303.811933 + 20 +9170.0 + 30 +0.0 + 11 +15312.499966 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +172E + 8 +0 + 62 + 0 + 10 +15337.499966 + 20 +9228.349384 + 30 +0.0 + 11 +15349.999955 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +172F + 8 +0 + 62 + 0 + 10 +15337.499966 + 20 +9185.048114 + 30 +0.0 + 11 +15349.999966 + 21 +9206.698749 + 31 +0.0 + 0 +LINE + 5 +1730 + 8 +0 + 62 + 0 + 10 +15374.999966 + 20 +9206.698749 + 30 +0.0 + 11 +15387.499966 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +1731 + 8 +0 + 62 + 0 + 10 +15378.811933 + 20 +9170.0 + 30 +0.0 + 11 +15387.499966 + 21 +9185.048114 + 31 +0.0 + 0 +LINE + 5 +1732 + 8 +0 + 62 + 0 + 10 +15412.499966 + 20 +9228.349385 + 30 +0.0 + 11 +15424.999954 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1733 + 8 +0 + 62 + 0 + 10 +15412.499966 + 20 +9185.048114 + 30 +0.0 + 11 +15424.999966 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +1734 + 8 +0 + 62 + 0 + 10 +15449.999966 + 20 +9206.69875 + 30 +0.0 + 11 +15462.499966 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +1735 + 8 +0 + 62 + 0 + 10 +15453.811933 + 20 +9170.0 + 30 +0.0 + 11 +15462.499966 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +1736 + 8 +0 + 62 + 0 + 10 +15487.499966 + 20 +9228.349385 + 30 +0.0 + 11 +15499.999954 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1737 + 8 +0 + 62 + 0 + 10 +15487.499966 + 20 +9185.048115 + 30 +0.0 + 11 +15499.999966 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +1738 + 8 +0 + 62 + 0 + 10 +15524.999965 + 20 +9206.69875 + 30 +0.0 + 11 +15537.499965 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +1739 + 8 +0 + 62 + 0 + 10 +15528.811932 + 20 +9170.0 + 30 +0.0 + 11 +15537.499965 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +173A + 8 +0 + 62 + 0 + 10 +15562.499965 + 20 +9228.349385 + 30 +0.0 + 11 +15574.999954 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +173B + 8 +0 + 62 + 0 + 10 +15562.499965 + 20 +9185.048115 + 30 +0.0 + 11 +15574.999965 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +173C + 8 +0 + 62 + 0 + 10 +15599.999965 + 20 +9206.69875 + 30 +0.0 + 11 +15612.499965 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +173D + 8 +0 + 62 + 0 + 10 +15603.811932 + 20 +9170.0 + 30 +0.0 + 11 +15612.499965 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +173E + 8 +0 + 62 + 0 + 10 +15637.499965 + 20 +9228.349385 + 30 +0.0 + 11 +15649.999953 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +173F + 8 +0 + 62 + 0 + 10 +15637.499965 + 20 +9185.048115 + 30 +0.0 + 11 +15649.999965 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +1740 + 8 +0 + 62 + 0 + 10 +15674.999965 + 20 +9206.69875 + 30 +0.0 + 11 +15687.499965 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +1741 + 8 +0 + 62 + 0 + 10 +15678.811932 + 20 +9170.0 + 30 +0.0 + 11 +15687.499965 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +1742 + 8 +0 + 62 + 0 + 10 +15712.499965 + 20 +9228.349385 + 30 +0.0 + 11 +15724.999953 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1743 + 8 +0 + 62 + 0 + 10 +15712.499965 + 20 +9185.048115 + 30 +0.0 + 11 +15724.999965 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +1744 + 8 +0 + 62 + 0 + 10 +15749.999965 + 20 +9206.69875 + 30 +0.0 + 11 +15762.499965 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +1745 + 8 +0 + 62 + 0 + 10 +15753.811931 + 20 +9170.0 + 30 +0.0 + 11 +15762.499965 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +1746 + 8 +0 + 62 + 0 + 10 +15787.499965 + 20 +9228.349385 + 30 +0.0 + 11 +15799.999953 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1747 + 8 +0 + 62 + 0 + 10 +15787.499965 + 20 +9185.048115 + 30 +0.0 + 11 +15799.999965 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +1748 + 8 +0 + 62 + 0 + 10 +15824.999964 + 20 +9206.69875 + 30 +0.0 + 11 +15837.499964 + 21 +9228.349385 + 31 +0.0 + 0 +LINE + 5 +1749 + 8 +0 + 62 + 0 + 10 +15828.811931 + 20 +9170.0 + 30 +0.0 + 11 +15837.499964 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +174A + 8 +0 + 62 + 0 + 10 +15862.499964 + 20 +9228.349385 + 30 +0.0 + 11 +15874.999952 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +174B + 8 +0 + 62 + 0 + 10 +15862.499964 + 20 +9185.048115 + 30 +0.0 + 11 +15874.999964 + 21 +9206.69875 + 31 +0.0 + 0 +LINE + 5 +174C + 8 +0 + 62 + 0 + 10 +15899.999964 + 20 +9206.69875 + 30 +0.0 + 11 +15912.499964 + 21 +9228.349386 + 31 +0.0 + 0 +LINE + 5 +174D + 8 +0 + 62 + 0 + 10 +15903.811931 + 20 +9170.0 + 30 +0.0 + 11 +15912.499964 + 21 +9185.048115 + 31 +0.0 + 0 +LINE + 5 +174E + 8 +0 + 62 + 0 + 10 +15937.499964 + 20 +9228.349386 + 30 +0.0 + 11 +15949.999952 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +174F + 8 +0 + 62 + 0 + 10 +15937.499964 + 20 +9185.048115 + 30 +0.0 + 11 +15949.999964 + 21 +9206.698751 + 31 +0.0 + 0 +LINE + 5 +1750 + 8 +0 + 62 + 0 + 10 +15974.999964 + 20 +9206.698751 + 30 +0.0 + 11 +15987.499964 + 21 +9228.349386 + 31 +0.0 + 0 +LINE + 5 +1751 + 8 +0 + 62 + 0 + 10 +15978.81193 + 20 +9170.0 + 30 +0.0 + 11 +15987.499964 + 21 +9185.048116 + 31 +0.0 + 0 +LINE + 5 +1752 + 8 +0 + 62 + 0 + 10 +16012.499964 + 20 +9228.349386 + 30 +0.0 + 11 +16024.999952 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1753 + 8 +0 + 62 + 0 + 10 +16012.499964 + 20 +9185.048116 + 30 +0.0 + 11 +16024.999964 + 21 +9206.698751 + 31 +0.0 + 0 +LINE + 5 +1754 + 8 +0 + 62 + 0 + 10 +16049.999964 + 20 +9206.698751 + 30 +0.0 + 11 +16062.499964 + 21 +9228.349386 + 31 +0.0 + 0 +LINE + 5 +1755 + 8 +0 + 62 + 0 + 10 +16053.81193 + 20 +9170.0 + 30 +0.0 + 11 +16062.499964 + 21 +9185.048116 + 31 +0.0 + 0 +LINE + 5 +1756 + 8 +0 + 62 + 0 + 10 +16087.499964 + 20 +9228.349386 + 30 +0.0 + 11 +16099.999951 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1757 + 8 +0 + 62 + 0 + 10 +16087.499964 + 20 +9185.048116 + 30 +0.0 + 11 +16099.999964 + 21 +9206.698751 + 31 +0.0 + 0 +LINE + 5 +1758 + 8 +0 + 62 + 0 + 10 +16124.999963 + 20 +9206.698751 + 30 +0.0 + 11 +16126.25 + 21 +9208.863878 + 31 +0.0 + 0 +ENDBLK + 5 +1759 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X47 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X47 + 1 + + 0 +LINE + 5 +175B + 8 +0 + 62 + 0 + 10 +17412.5 + 20 +9228.349365 + 30 +0.0 + 11 +17437.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +175C + 8 +0 + 62 + 0 + 10 +17487.5 + 20 +9228.349365 + 30 +0.0 + 11 +17512.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +175D + 8 +0 + 62 + 0 + 10 +17562.5 + 20 +9228.349365 + 30 +0.0 + 11 +17587.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +175E + 8 +0 + 62 + 0 + 10 +17637.5 + 20 +9228.349365 + 30 +0.0 + 11 +17662.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +175F + 8 +0 + 62 + 0 + 10 +17712.5 + 20 +9228.349365 + 30 +0.0 + 11 +17737.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1760 + 8 +0 + 62 + 0 + 10 +17787.5 + 20 +9228.349365 + 30 +0.0 + 11 +17812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1761 + 8 +0 + 62 + 0 + 10 +17862.5 + 20 +9228.349365 + 30 +0.0 + 11 +17887.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1762 + 8 +0 + 62 + 0 + 10 +17937.5 + 20 +9228.349365 + 30 +0.0 + 11 +17962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1763 + 8 +0 + 62 + 0 + 10 +18012.5 + 20 +9228.349365 + 30 +0.0 + 11 +18037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1764 + 8 +0 + 62 + 0 + 10 +18087.5 + 20 +9228.349365 + 30 +0.0 + 11 +18112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1765 + 8 +0 + 62 + 0 + 10 +18162.5 + 20 +9228.349365 + 30 +0.0 + 11 +18187.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1766 + 8 +0 + 62 + 0 + 10 +18237.5 + 20 +9228.349365 + 30 +0.0 + 11 +18262.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1767 + 8 +0 + 62 + 0 + 10 +18312.5 + 20 +9228.349365 + 30 +0.0 + 11 +18337.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1768 + 8 +0 + 62 + 0 + 10 +18387.5 + 20 +9228.349365 + 30 +0.0 + 11 +18412.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +1769 + 8 +0 + 62 + 0 + 10 +18462.5 + 20 +9228.349365 + 30 +0.0 + 11 +18487.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +176A + 8 +0 + 62 + 0 + 10 +17375.0 + 20 +9206.69873 + 30 +0.0 + 11 +17400.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +176B + 8 +0 + 62 + 0 + 10 +17450.0 + 20 +9206.69873 + 30 +0.0 + 11 +17475.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +176C + 8 +0 + 62 + 0 + 10 +17525.0 + 20 +9206.69873 + 30 +0.0 + 11 +17550.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +176D + 8 +0 + 62 + 0 + 10 +17600.0 + 20 +9206.69873 + 30 +0.0 + 11 +17625.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +176E + 8 +0 + 62 + 0 + 10 +17675.0 + 20 +9206.69873 + 30 +0.0 + 11 +17700.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +176F + 8 +0 + 62 + 0 + 10 +17750.0 + 20 +9206.69873 + 30 +0.0 + 11 +17775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1770 + 8 +0 + 62 + 0 + 10 +17825.0 + 20 +9206.69873 + 30 +0.0 + 11 +17850.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1771 + 8 +0 + 62 + 0 + 10 +17900.0 + 20 +9206.69873 + 30 +0.0 + 11 +17925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1772 + 8 +0 + 62 + 0 + 10 +17975.0 + 20 +9206.69873 + 30 +0.0 + 11 +18000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1773 + 8 +0 + 62 + 0 + 10 +18050.0 + 20 +9206.69873 + 30 +0.0 + 11 +18075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1774 + 8 +0 + 62 + 0 + 10 +18125.0 + 20 +9206.69873 + 30 +0.0 + 11 +18150.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1775 + 8 +0 + 62 + 0 + 10 +18200.0 + 20 +9206.69873 + 30 +0.0 + 11 +18225.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1776 + 8 +0 + 62 + 0 + 10 +18275.0 + 20 +9206.69873 + 30 +0.0 + 11 +18300.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1777 + 8 +0 + 62 + 0 + 10 +18350.0 + 20 +9206.69873 + 30 +0.0 + 11 +18375.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1778 + 8 +0 + 62 + 0 + 10 +18425.0 + 20 +9206.69873 + 30 +0.0 + 11 +18450.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +1779 + 8 +0 + 62 + 0 + 10 +18500.0 + 20 +9206.69873 + 30 +0.0 + 11 +18501.25 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +177A + 8 +0 + 62 + 0 + 10 +17412.5 + 20 +9185.048095 + 30 +0.0 + 11 +17437.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +177B + 8 +0 + 62 + 0 + 10 +17487.5 + 20 +9185.048095 + 30 +0.0 + 11 +17512.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +177C + 8 +0 + 62 + 0 + 10 +17562.5 + 20 +9185.048095 + 30 +0.0 + 11 +17587.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +177D + 8 +0 + 62 + 0 + 10 +17637.5 + 20 +9185.048095 + 30 +0.0 + 11 +17662.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +177E + 8 +0 + 62 + 0 + 10 +17712.5 + 20 +9185.048095 + 30 +0.0 + 11 +17737.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +177F + 8 +0 + 62 + 0 + 10 +17787.5 + 20 +9185.048095 + 30 +0.0 + 11 +17812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1780 + 8 +0 + 62 + 0 + 10 +17862.5 + 20 +9185.048095 + 30 +0.0 + 11 +17887.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1781 + 8 +0 + 62 + 0 + 10 +17937.5 + 20 +9185.048095 + 30 +0.0 + 11 +17962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1782 + 8 +0 + 62 + 0 + 10 +18012.5 + 20 +9185.048095 + 30 +0.0 + 11 +18037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1783 + 8 +0 + 62 + 0 + 10 +18087.5 + 20 +9185.048095 + 30 +0.0 + 11 +18112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1784 + 8 +0 + 62 + 0 + 10 +18162.5 + 20 +9185.048095 + 30 +0.0 + 11 +18187.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1785 + 8 +0 + 62 + 0 + 10 +18237.5 + 20 +9185.048095 + 30 +0.0 + 11 +18262.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1786 + 8 +0 + 62 + 0 + 10 +18312.5 + 20 +9185.048095 + 30 +0.0 + 11 +18337.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1787 + 8 +0 + 62 + 0 + 10 +18387.5 + 20 +9185.048095 + 30 +0.0 + 11 +18412.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1788 + 8 +0 + 62 + 0 + 10 +18462.5 + 20 +9185.048095 + 30 +0.0 + 11 +18487.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +1789 + 8 +0 + 62 + 0 + 10 +17937.499958 + 20 +9185.04807 + 30 +0.0 + 11 +17924.999958 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +178A + 8 +0 + 62 + 0 + 10 +17899.999958 + 20 +9249.999976 + 30 +0.0 + 11 +17899.999944 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +178B + 8 +0 + 62 + 0 + 10 +17899.999958 + 20 +9206.698705 + 30 +0.0 + 11 +17887.499958 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +178C + 8 +0 + 62 + 0 + 10 +17896.187965 + 20 +9170.0 + 30 +0.0 + 11 +17887.499958 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +178D + 8 +0 + 62 + 0 + 10 +17862.499958 + 20 +9228.349341 + 30 +0.0 + 11 +17849.999958 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +178E + 8 +0 + 62 + 0 + 10 +17862.499958 + 20 +9185.04807 + 30 +0.0 + 11 +17849.999958 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +178F + 8 +0 + 62 + 0 + 10 +17824.999958 + 20 +9249.999976 + 30 +0.0 + 11 +17824.999944 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1790 + 8 +0 + 62 + 0 + 10 +17824.999958 + 20 +9206.698706 + 30 +0.0 + 11 +17812.499958 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +1791 + 8 +0 + 62 + 0 + 10 +17821.187966 + 20 +9170.0 + 30 +0.0 + 11 +17812.499958 + 21 +9185.048071 + 31 +0.0 + 0 +LINE + 5 +1792 + 8 +0 + 62 + 0 + 10 +17787.499958 + 20 +9228.349341 + 30 +0.0 + 11 +17774.999958 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +1793 + 8 +0 + 62 + 0 + 10 +17787.499958 + 20 +9185.048071 + 30 +0.0 + 11 +17774.999958 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +1794 + 8 +0 + 62 + 0 + 10 +17749.999958 + 20 +9249.999976 + 30 +0.0 + 11 +17749.999944 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1795 + 8 +0 + 62 + 0 + 10 +17749.999958 + 20 +9206.698706 + 30 +0.0 + 11 +17737.499958 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +1796 + 8 +0 + 62 + 0 + 10 +17746.187966 + 20 +9170.0 + 30 +0.0 + 11 +17737.499958 + 21 +9185.048071 + 31 +0.0 + 0 +LINE + 5 +1797 + 8 +0 + 62 + 0 + 10 +17712.499958 + 20 +9228.349341 + 30 +0.0 + 11 +17699.999958 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +1798 + 8 +0 + 62 + 0 + 10 +17712.499958 + 20 +9185.048071 + 30 +0.0 + 11 +17699.999958 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +1799 + 8 +0 + 62 + 0 + 10 +17674.999958 + 20 +9249.999976 + 30 +0.0 + 11 +17674.999945 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +179A + 8 +0 + 62 + 0 + 10 +17674.999959 + 20 +9206.698706 + 30 +0.0 + 11 +17662.499959 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +179B + 8 +0 + 62 + 0 + 10 +17671.187966 + 20 +9170.0 + 30 +0.0 + 11 +17662.499959 + 21 +9185.048071 + 31 +0.0 + 0 +LINE + 5 +179C + 8 +0 + 62 + 0 + 10 +17637.499959 + 20 +9228.349341 + 30 +0.0 + 11 +17624.999959 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +179D + 8 +0 + 62 + 0 + 10 +17637.499959 + 20 +9185.048071 + 30 +0.0 + 11 +17624.999959 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +179E + 8 +0 + 62 + 0 + 10 +17599.999959 + 20 +9249.999976 + 30 +0.0 + 11 +17599.999945 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +179F + 8 +0 + 62 + 0 + 10 +17599.999959 + 20 +9206.698706 + 30 +0.0 + 11 +17587.499959 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +17A0 + 8 +0 + 62 + 0 + 10 +17596.187967 + 20 +9170.0 + 30 +0.0 + 11 +17587.499959 + 21 +9185.048071 + 31 +0.0 + 0 +LINE + 5 +17A1 + 8 +0 + 62 + 0 + 10 +17562.499959 + 20 +9228.349341 + 30 +0.0 + 11 +17549.999959 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +17A2 + 8 +0 + 62 + 0 + 10 +17562.499959 + 20 +9185.048071 + 30 +0.0 + 11 +17549.999959 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +17A3 + 8 +0 + 62 + 0 + 10 +17524.999959 + 20 +9249.999976 + 30 +0.0 + 11 +17524.999945 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17A4 + 8 +0 + 62 + 0 + 10 +17524.999959 + 20 +9206.698706 + 30 +0.0 + 11 +17512.499959 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +17A5 + 8 +0 + 62 + 0 + 10 +17521.187967 + 20 +9170.0 + 30 +0.0 + 11 +17512.499959 + 21 +9185.048071 + 31 +0.0 + 0 +LINE + 5 +17A6 + 8 +0 + 62 + 0 + 10 +17487.499959 + 20 +9228.349341 + 30 +0.0 + 11 +17474.999959 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +17A7 + 8 +0 + 62 + 0 + 10 +17487.499959 + 20 +9185.048071 + 30 +0.0 + 11 +17474.999959 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +17A8 + 8 +0 + 62 + 0 + 10 +17449.999959 + 20 +9249.999976 + 30 +0.0 + 11 +17449.999946 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17A9 + 8 +0 + 62 + 0 + 10 +17449.999959 + 20 +9206.698706 + 30 +0.0 + 11 +17437.499959 + 21 +9228.349341 + 31 +0.0 + 0 +LINE + 5 +17AA + 8 +0 + 62 + 0 + 10 +17446.187967 + 20 +9170.0 + 30 +0.0 + 11 +17437.499959 + 21 +9185.048071 + 31 +0.0 + 0 +LINE + 5 +17AB + 8 +0 + 62 + 0 + 10 +17412.499959 + 20 +9228.349341 + 30 +0.0 + 11 +17399.999959 + 21 +9249.999977 + 31 +0.0 + 0 +LINE + 5 +17AC + 8 +0 + 62 + 0 + 10 +17412.499959 + 20 +9185.048071 + 30 +0.0 + 11 +17399.999959 + 21 +9206.698706 + 31 +0.0 + 0 +LINE + 5 +17AD + 8 +0 + 62 + 0 + 10 +17374.999959 + 20 +9249.999977 + 30 +0.0 + 11 +17374.999946 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17AE + 8 +0 + 62 + 0 + 10 +17374.99996 + 20 +9206.698706 + 30 +0.0 + 11 +17363.75 + 21 +9226.184208 + 31 +0.0 + 0 +LINE + 5 +17AF + 8 +0 + 62 + 0 + 10 +17371.187968 + 20 +9170.0 + 30 +0.0 + 11 +17363.75 + 21 +9182.882938 + 31 +0.0 + 0 +LINE + 5 +17B0 + 8 +0 + 62 + 0 + 10 +17971.187965 + 20 +9170.0 + 30 +0.0 + 11 +17962.499958 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +17B1 + 8 +0 + 62 + 0 + 10 +17937.499958 + 20 +9228.34934 + 30 +0.0 + 11 +17924.999958 + 21 +9249.999976 + 31 +0.0 + 0 +LINE + 5 +17B2 + 8 +0 + 62 + 0 + 10 +17974.999958 + 20 +9206.698705 + 30 +0.0 + 11 +17962.499958 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17B3 + 8 +0 + 62 + 0 + 10 +18012.499957 + 20 +9185.04807 + 30 +0.0 + 11 +17999.999957 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +17B4 + 8 +0 + 62 + 0 + 10 +17974.999957 + 20 +9249.999975 + 30 +0.0 + 11 +17974.999943 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17B5 + 8 +0 + 62 + 0 + 10 +18046.187965 + 20 +9170.0 + 30 +0.0 + 11 +18037.499957 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +17B6 + 8 +0 + 62 + 0 + 10 +18012.499957 + 20 +9228.34934 + 30 +0.0 + 11 +17999.999957 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17B7 + 8 +0 + 62 + 0 + 10 +18049.999957 + 20 +9206.698705 + 30 +0.0 + 11 +18037.499957 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17B8 + 8 +0 + 62 + 0 + 10 +18087.499957 + 20 +9185.04807 + 30 +0.0 + 11 +18074.999957 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +17B9 + 8 +0 + 62 + 0 + 10 +18049.999957 + 20 +9249.999975 + 30 +0.0 + 11 +18049.999943 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17BA + 8 +0 + 62 + 0 + 10 +18121.187964 + 20 +9170.0 + 30 +0.0 + 11 +18112.499957 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +17BB + 8 +0 + 62 + 0 + 10 +18087.499957 + 20 +9228.34934 + 30 +0.0 + 11 +18074.999957 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17BC + 8 +0 + 62 + 0 + 10 +18124.999957 + 20 +9206.698705 + 30 +0.0 + 11 +18112.499957 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17BD + 8 +0 + 62 + 0 + 10 +18162.499957 + 20 +9185.04807 + 30 +0.0 + 11 +18149.999957 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +17BE + 8 +0 + 62 + 0 + 10 +18124.999957 + 20 +9249.999975 + 30 +0.0 + 11 +18124.999943 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17BF + 8 +0 + 62 + 0 + 10 +18196.187964 + 20 +9170.0 + 30 +0.0 + 11 +18187.499957 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +17C0 + 8 +0 + 62 + 0 + 10 +18162.499957 + 20 +9228.34934 + 30 +0.0 + 11 +18149.999957 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17C1 + 8 +0 + 62 + 0 + 10 +18199.999957 + 20 +9206.698705 + 30 +0.0 + 11 +18187.499957 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17C2 + 8 +0 + 62 + 0 + 10 +18237.499957 + 20 +9185.04807 + 30 +0.0 + 11 +18224.999957 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +17C3 + 8 +0 + 62 + 0 + 10 +18199.999957 + 20 +9249.999975 + 30 +0.0 + 11 +18199.999942 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17C4 + 8 +0 + 62 + 0 + 10 +18271.187964 + 20 +9170.0 + 30 +0.0 + 11 +18262.499957 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +17C5 + 8 +0 + 62 + 0 + 10 +18237.499957 + 20 +9228.34934 + 30 +0.0 + 11 +18224.999957 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17C6 + 8 +0 + 62 + 0 + 10 +18274.999957 + 20 +9206.698705 + 30 +0.0 + 11 +18262.499957 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17C7 + 8 +0 + 62 + 0 + 10 +18312.499956 + 20 +9185.04807 + 30 +0.0 + 11 +18299.999956 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +17C8 + 8 +0 + 62 + 0 + 10 +18274.999956 + 20 +9249.999975 + 30 +0.0 + 11 +18274.999942 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17C9 + 8 +0 + 62 + 0 + 10 +18346.187963 + 20 +9170.0 + 30 +0.0 + 11 +18337.499956 + 21 +9185.04807 + 31 +0.0 + 0 +LINE + 5 +17CA + 8 +0 + 62 + 0 + 10 +18312.499956 + 20 +9228.34934 + 30 +0.0 + 11 +18299.999956 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17CB + 8 +0 + 62 + 0 + 10 +18349.999956 + 20 +9206.698705 + 30 +0.0 + 11 +18337.499956 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17CC + 8 +0 + 62 + 0 + 10 +18387.499956 + 20 +9185.048069 + 30 +0.0 + 11 +18374.999956 + 21 +9206.698705 + 31 +0.0 + 0 +LINE + 5 +17CD + 8 +0 + 62 + 0 + 10 +18349.999956 + 20 +9249.999975 + 30 +0.0 + 11 +18349.999942 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17CE + 8 +0 + 62 + 0 + 10 +18421.187963 + 20 +9170.0 + 30 +0.0 + 11 +18412.499956 + 21 +9185.048069 + 31 +0.0 + 0 +LINE + 5 +17CF + 8 +0 + 62 + 0 + 10 +18387.499956 + 20 +9228.34934 + 30 +0.0 + 11 +18374.999956 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17D0 + 8 +0 + 62 + 0 + 10 +18424.999956 + 20 +9206.698704 + 30 +0.0 + 11 +18412.499956 + 21 +9228.34934 + 31 +0.0 + 0 +LINE + 5 +17D1 + 8 +0 + 62 + 0 + 10 +18462.499956 + 20 +9185.048069 + 30 +0.0 + 11 +18449.999956 + 21 +9206.698704 + 31 +0.0 + 0 +LINE + 5 +17D2 + 8 +0 + 62 + 0 + 10 +18424.999956 + 20 +9249.999975 + 30 +0.0 + 11 +18424.999941 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17D3 + 8 +0 + 62 + 0 + 10 +18496.187963 + 20 +9170.0 + 30 +0.0 + 11 +18487.499956 + 21 +9185.048069 + 31 +0.0 + 0 +LINE + 5 +17D4 + 8 +0 + 62 + 0 + 10 +18462.499956 + 20 +9228.349339 + 30 +0.0 + 11 +18449.999956 + 21 +9249.999975 + 31 +0.0 + 0 +LINE + 5 +17D5 + 8 +0 + 62 + 0 + 10 +18499.999956 + 20 +9206.698704 + 30 +0.0 + 11 +18487.499956 + 21 +9228.349339 + 31 +0.0 + 0 +LINE + 5 +17D6 + 8 +0 + 62 + 0 + 10 +18499.999956 + 20 +9249.999974 + 30 +0.0 + 11 +18499.999941 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17D7 + 8 +0 + 62 + 0 + 10 +17924.999958 + 20 +9206.698754 + 30 +0.0 + 11 +17937.499958 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17D8 + 8 +0 + 62 + 0 + 10 +17887.499958 + 20 +9185.048119 + 30 +0.0 + 11 +17899.999958 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17D9 + 8 +0 + 62 + 0 + 10 +17853.811922 + 20 +9170.0 + 30 +0.0 + 11 +17862.499958 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17DA + 8 +0 + 62 + 0 + 10 +17887.499958 + 20 +9228.349389 + 30 +0.0 + 11 +17899.999944 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17DB + 8 +0 + 62 + 0 + 10 +17849.999958 + 20 +9206.698754 + 30 +0.0 + 11 +17862.499958 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17DC + 8 +0 + 62 + 0 + 10 +17812.499958 + 20 +9185.048119 + 30 +0.0 + 11 +17824.999958 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17DD + 8 +0 + 62 + 0 + 10 +17778.811922 + 20 +9170.0 + 30 +0.0 + 11 +17787.499958 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17DE + 8 +0 + 62 + 0 + 10 +17812.499958 + 20 +9228.349389 + 30 +0.0 + 11 +17824.999944 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17DF + 8 +0 + 62 + 0 + 10 +17774.999958 + 20 +9206.698754 + 30 +0.0 + 11 +17787.499958 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17E0 + 8 +0 + 62 + 0 + 10 +17737.499958 + 20 +9185.048119 + 30 +0.0 + 11 +17749.999958 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17E1 + 8 +0 + 62 + 0 + 10 +17703.811923 + 20 +9170.0 + 30 +0.0 + 11 +17712.499958 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17E2 + 8 +0 + 62 + 0 + 10 +17737.499958 + 20 +9228.349389 + 30 +0.0 + 11 +17749.999944 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17E3 + 8 +0 + 62 + 0 + 10 +17699.999958 + 20 +9206.698754 + 30 +0.0 + 11 +17712.499958 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17E4 + 8 +0 + 62 + 0 + 10 +17662.499958 + 20 +9185.048119 + 30 +0.0 + 11 +17674.999958 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17E5 + 8 +0 + 62 + 0 + 10 +17628.811923 + 20 +9170.0 + 30 +0.0 + 11 +17637.499958 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17E6 + 8 +0 + 62 + 0 + 10 +17662.499958 + 20 +9228.349389 + 30 +0.0 + 11 +17674.999945 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17E7 + 8 +0 + 62 + 0 + 10 +17624.999959 + 20 +9206.698754 + 30 +0.0 + 11 +17637.499959 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17E8 + 8 +0 + 62 + 0 + 10 +17587.499959 + 20 +9185.048119 + 30 +0.0 + 11 +17599.999959 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17E9 + 8 +0 + 62 + 0 + 10 +17553.811923 + 20 +9170.0 + 30 +0.0 + 11 +17562.499959 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17EA + 8 +0 + 62 + 0 + 10 +17587.499959 + 20 +9228.349389 + 30 +0.0 + 11 +17599.999945 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17EB + 8 +0 + 62 + 0 + 10 +17549.999959 + 20 +9206.698754 + 30 +0.0 + 11 +17562.499959 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17EC + 8 +0 + 62 + 0 + 10 +17512.499959 + 20 +9185.048118 + 30 +0.0 + 11 +17524.999959 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17ED + 8 +0 + 62 + 0 + 10 +17478.811924 + 20 +9170.0 + 30 +0.0 + 11 +17487.499959 + 21 +9185.048118 + 31 +0.0 + 0 +LINE + 5 +17EE + 8 +0 + 62 + 0 + 10 +17512.499959 + 20 +9228.349389 + 30 +0.0 + 11 +17524.999945 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17EF + 8 +0 + 62 + 0 + 10 +17474.999959 + 20 +9206.698753 + 30 +0.0 + 11 +17487.499959 + 21 +9228.349389 + 31 +0.0 + 0 +LINE + 5 +17F0 + 8 +0 + 62 + 0 + 10 +17437.499959 + 20 +9185.048118 + 30 +0.0 + 11 +17449.999959 + 21 +9206.698753 + 31 +0.0 + 0 +LINE + 5 +17F1 + 8 +0 + 62 + 0 + 10 +17403.811924 + 20 +9170.0 + 30 +0.0 + 11 +17412.499959 + 21 +9185.048118 + 31 +0.0 + 0 +LINE + 5 +17F2 + 8 +0 + 62 + 0 + 10 +17437.499959 + 20 +9228.349388 + 30 +0.0 + 11 +17449.999946 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17F3 + 8 +0 + 62 + 0 + 10 +17399.999959 + 20 +9206.698753 + 30 +0.0 + 11 +17412.499959 + 21 +9228.349388 + 31 +0.0 + 0 +LINE + 5 +17F4 + 8 +0 + 62 + 0 + 10 +17363.75 + 20 +9187.213252 + 30 +0.0 + 11 +17374.999959 + 21 +9206.698753 + 31 +0.0 + 0 +LINE + 5 +17F5 + 8 +0 + 62 + 0 + 10 +17363.75 + 20 +9230.514522 + 30 +0.0 + 11 +17374.999946 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17F6 + 8 +0 + 62 + 0 + 10 +17928.811922 + 20 +9170.0 + 30 +0.0 + 11 +17937.499957 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17F7 + 8 +0 + 62 + 0 + 10 +17962.499957 + 20 +9228.349389 + 30 +0.0 + 11 +17974.999943 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17F8 + 8 +0 + 62 + 0 + 10 +17962.499957 + 20 +9185.048119 + 30 +0.0 + 11 +17974.999957 + 21 +9206.698754 + 31 +0.0 + 0 +LINE + 5 +17F9 + 8 +0 + 62 + 0 + 10 +17999.999957 + 20 +9206.698754 + 30 +0.0 + 11 +18012.499957 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +17FA + 8 +0 + 62 + 0 + 10 +18003.811921 + 20 +9170.0 + 30 +0.0 + 11 +18012.499957 + 21 +9185.048119 + 31 +0.0 + 0 +LINE + 5 +17FB + 8 +0 + 62 + 0 + 10 +18037.499957 + 20 +9228.34939 + 30 +0.0 + 11 +18049.999943 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +17FC + 8 +0 + 62 + 0 + 10 +18037.499957 + 20 +9185.048119 + 30 +0.0 + 11 +18049.999957 + 21 +9206.698755 + 31 +0.0 + 0 +LINE + 5 +17FD + 8 +0 + 62 + 0 + 10 +18074.999957 + 20 +9206.698755 + 30 +0.0 + 11 +18087.499957 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +17FE + 8 +0 + 62 + 0 + 10 +18078.811921 + 20 +9170.0 + 30 +0.0 + 11 +18087.499957 + 21 +9185.04812 + 31 +0.0 + 0 +LINE + 5 +17FF + 8 +0 + 62 + 0 + 10 +18112.499957 + 20 +9228.34939 + 30 +0.0 + 11 +18124.999943 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1800 + 8 +0 + 62 + 0 + 10 +18112.499957 + 20 +9185.04812 + 30 +0.0 + 11 +18124.999957 + 21 +9206.698755 + 31 +0.0 + 0 +LINE + 5 +1801 + 8 +0 + 62 + 0 + 10 +18149.999957 + 20 +9206.698755 + 30 +0.0 + 11 +18162.499957 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +1802 + 8 +0 + 62 + 0 + 10 +18153.811921 + 20 +9170.0 + 30 +0.0 + 11 +18162.499957 + 21 +9185.04812 + 31 +0.0 + 0 +LINE + 5 +1803 + 8 +0 + 62 + 0 + 10 +18187.499957 + 20 +9228.34939 + 30 +0.0 + 11 +18199.999942 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1804 + 8 +0 + 62 + 0 + 10 +18187.499957 + 20 +9185.04812 + 30 +0.0 + 11 +18199.999957 + 21 +9206.698755 + 31 +0.0 + 0 +LINE + 5 +1805 + 8 +0 + 62 + 0 + 10 +18224.999957 + 20 +9206.698755 + 30 +0.0 + 11 +18237.499957 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +1806 + 8 +0 + 62 + 0 + 10 +18228.81192 + 20 +9170.0 + 30 +0.0 + 11 +18237.499956 + 21 +9185.04812 + 31 +0.0 + 0 +LINE + 5 +1807 + 8 +0 + 62 + 0 + 10 +18262.499956 + 20 +9228.34939 + 30 +0.0 + 11 +18274.999942 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1808 + 8 +0 + 62 + 0 + 10 +18262.499956 + 20 +9185.04812 + 30 +0.0 + 11 +18274.999956 + 21 +9206.698755 + 31 +0.0 + 0 +LINE + 5 +1809 + 8 +0 + 62 + 0 + 10 +18299.999956 + 20 +9206.698755 + 30 +0.0 + 11 +18312.499956 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +180A + 8 +0 + 62 + 0 + 10 +18303.81192 + 20 +9170.0 + 30 +0.0 + 11 +18312.499956 + 21 +9185.04812 + 31 +0.0 + 0 +LINE + 5 +180B + 8 +0 + 62 + 0 + 10 +18337.499956 + 20 +9228.34939 + 30 +0.0 + 11 +18349.999942 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +180C + 8 +0 + 62 + 0 + 10 +18337.499956 + 20 +9185.04812 + 30 +0.0 + 11 +18349.999956 + 21 +9206.698755 + 31 +0.0 + 0 +LINE + 5 +180D + 8 +0 + 62 + 0 + 10 +18374.999956 + 20 +9206.698755 + 30 +0.0 + 11 +18387.499956 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +180E + 8 +0 + 62 + 0 + 10 +18378.81192 + 20 +9170.0 + 30 +0.0 + 11 +18387.499956 + 21 +9185.04812 + 31 +0.0 + 0 +LINE + 5 +180F + 8 +0 + 62 + 0 + 10 +18412.499956 + 20 +9228.34939 + 30 +0.0 + 11 +18424.999941 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1810 + 8 +0 + 62 + 0 + 10 +18412.499956 + 20 +9185.04812 + 30 +0.0 + 11 +18424.999956 + 21 +9206.698755 + 31 +0.0 + 0 +LINE + 5 +1811 + 8 +0 + 62 + 0 + 10 +18449.999956 + 20 +9206.698755 + 30 +0.0 + 11 +18462.499956 + 21 +9228.34939 + 31 +0.0 + 0 +LINE + 5 +1812 + 8 +0 + 62 + 0 + 10 +18453.811919 + 20 +9170.0 + 30 +0.0 + 11 +18462.499956 + 21 +9185.04812 + 31 +0.0 + 0 +LINE + 5 +1813 + 8 +0 + 62 + 0 + 10 +18487.499956 + 20 +9228.34939 + 30 +0.0 + 11 +18499.999941 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +1814 + 8 +0 + 62 + 0 + 10 +18487.499956 + 20 +9185.04812 + 30 +0.0 + 11 +18499.999956 + 21 +9206.698755 + 31 +0.0 + 0 +ENDBLK + 5 +1815 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X48 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X48 + 1 + + 0 +LINE + 5 +1817 + 8 +0 + 62 + 0 + 10 +19775.0 + 20 +22153.77846 + 30 +0.0 + 11 +19800.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1818 + 8 +0 + 62 + 0 + 10 +19850.0 + 20 +22153.77846 + 30 +0.0 + 11 +19875.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1819 + 8 +0 + 62 + 0 + 10 +19925.0 + 20 +22153.77846 + 30 +0.0 + 11 +19950.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +181A + 8 +0 + 62 + 0 + 10 +20000.0 + 20 +22153.77846 + 30 +0.0 + 11 +20025.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +181B + 8 +0 + 62 + 0 + 10 +20075.0 + 20 +22153.77846 + 30 +0.0 + 11 +20100.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +181C + 8 +0 + 62 + 0 + 10 +20150.0 + 20 +22153.77846 + 30 +0.0 + 11 +20175.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +181D + 8 +0 + 62 + 0 + 10 +20225.0 + 20 +22153.77846 + 30 +0.0 + 11 +20250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +181E + 8 +0 + 62 + 0 + 10 +20300.0 + 20 +22153.77846 + 30 +0.0 + 11 +20325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +181F + 8 +0 + 62 + 0 + 10 +20375.0 + 20 +22153.77846 + 30 +0.0 + 11 +20400.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1820 + 8 +0 + 62 + 0 + 10 +20450.0 + 20 +22153.77846 + 30 +0.0 + 11 +20475.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1821 + 8 +0 + 62 + 0 + 10 +20525.0 + 20 +22153.77846 + 30 +0.0 + 11 +20550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1822 + 8 +0 + 62 + 0 + 10 +20600.0 + 20 +22153.77846 + 30 +0.0 + 11 +20625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1823 + 8 +0 + 62 + 0 + 10 +20675.0 + 20 +22153.77846 + 30 +0.0 + 11 +20700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1824 + 8 +0 + 62 + 0 + 10 +20750.0 + 20 +22153.77846 + 30 +0.0 + 11 +20775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1825 + 8 +0 + 62 + 0 + 10 +20825.0 + 20 +22153.77846 + 30 +0.0 + 11 +20850.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1826 + 8 +0 + 62 + 0 + 10 +20900.0 + 20 +22153.77846 + 30 +0.0 + 11 +20925.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1827 + 8 +0 + 62 + 0 + 10 +20975.0 + 20 +22153.77846 + 30 +0.0 + 11 +21000.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1828 + 8 +0 + 62 + 0 + 10 +21050.0 + 20 +22153.77846 + 30 +0.0 + 11 +21075.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1829 + 8 +0 + 62 + 0 + 10 +21125.0 + 20 +22153.77846 + 30 +0.0 + 11 +21150.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +182A + 8 +0 + 62 + 0 + 10 +21200.0 + 20 +22153.77846 + 30 +0.0 + 11 +21225.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +182B + 8 +0 + 62 + 0 + 10 +21275.0 + 20 +22153.77846 + 30 +0.0 + 11 +21300.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +182C + 8 +0 + 62 + 0 + 10 +21350.0 + 20 +22153.77846 + 30 +0.0 + 11 +21375.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +182D + 8 +0 + 62 + 0 + 10 +21425.0 + 20 +22153.77846 + 30 +0.0 + 11 +21450.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +182E + 8 +0 + 62 + 0 + 10 +21500.0 + 20 +22153.77846 + 30 +0.0 + 11 +21525.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +182F + 8 +0 + 62 + 0 + 10 +21575.0 + 20 +22153.77846 + 30 +0.0 + 11 +21600.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1830 + 8 +0 + 62 + 0 + 10 +21650.0 + 20 +22153.77846 + 30 +0.0 + 11 +21675.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1831 + 8 +0 + 62 + 0 + 10 +21725.0 + 20 +22153.77846 + 30 +0.0 + 11 +21750.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1832 + 8 +0 + 62 + 0 + 10 +21800.0 + 20 +22153.77846 + 30 +0.0 + 11 +21825.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1833 + 8 +0 + 62 + 0 + 10 +21875.0 + 20 +22153.77846 + 30 +0.0 + 11 +21900.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1834 + 8 +0 + 62 + 0 + 10 +21950.0 + 20 +22153.77846 + 30 +0.0 + 11 +21975.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1835 + 8 +0 + 62 + 0 + 10 +22025.0 + 20 +22153.77846 + 30 +0.0 + 11 +22050.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1836 + 8 +0 + 62 + 0 + 10 +22100.0 + 20 +22153.77846 + 30 +0.0 + 11 +22125.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1837 + 8 +0 + 62 + 0 + 10 +22175.0 + 20 +22153.77846 + 30 +0.0 + 11 +22200.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1838 + 8 +0 + 62 + 0 + 10 +22250.0 + 20 +22153.77846 + 30 +0.0 + 11 +22275.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1839 + 8 +0 + 62 + 0 + 10 +22325.0 + 20 +22153.77846 + 30 +0.0 + 11 +22350.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +183A + 8 +0 + 62 + 0 + 10 +22400.0 + 20 +22153.77846 + 30 +0.0 + 11 +22425.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +183B + 8 +0 + 62 + 0 + 10 +22475.0 + 20 +22153.77846 + 30 +0.0 + 11 +22500.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +183C + 8 +0 + 62 + 0 + 10 +22550.0 + 20 +22153.77846 + 30 +0.0 + 11 +22575.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +183D + 8 +0 + 62 + 0 + 10 +22625.0 + 20 +22153.77846 + 30 +0.0 + 11 +22650.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +183E + 8 +0 + 62 + 0 + 10 +22700.0 + 20 +22153.77846 + 30 +0.0 + 11 +22725.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +183F + 8 +0 + 62 + 0 + 10 +22775.0 + 20 +22153.77846 + 30 +0.0 + 11 +22800.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1840 + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +22153.77846 + 30 +0.0 + 11 +22875.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1841 + 8 +0 + 62 + 0 + 10 +22925.0 + 20 +22153.77846 + 30 +0.0 + 11 +22950.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1842 + 8 +0 + 62 + 0 + 10 +23000.0 + 20 +22153.77846 + 30 +0.0 + 11 +23025.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1843 + 8 +0 + 62 + 0 + 10 +23075.0 + 20 +22153.77846 + 30 +0.0 + 11 +23100.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1844 + 8 +0 + 62 + 0 + 10 +23150.0 + 20 +22153.77846 + 30 +0.0 + 11 +23175.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1845 + 8 +0 + 62 + 0 + 10 +23225.0 + 20 +22153.77846 + 30 +0.0 + 11 +23250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1846 + 8 +0 + 62 + 0 + 10 +23300.0 + 20 +22153.77846 + 30 +0.0 + 11 +23325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1847 + 8 +0 + 62 + 0 + 10 +23375.0 + 20 +22153.77846 + 30 +0.0 + 11 +23375.75 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1848 + 8 +0 + 62 + 0 + 10 +19738.25 + 20 +22175.429095 + 30 +0.0 + 11 +19762.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1849 + 8 +0 + 62 + 0 + 10 +19812.5 + 20 +22175.429095 + 30 +0.0 + 11 +19837.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +184A + 8 +0 + 62 + 0 + 10 +19887.5 + 20 +22175.429095 + 30 +0.0 + 11 +19912.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +184B + 8 +0 + 62 + 0 + 10 +19962.5 + 20 +22175.429095 + 30 +0.0 + 11 +19987.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +184C + 8 +0 + 62 + 0 + 10 +20037.5 + 20 +22175.429095 + 30 +0.0 + 11 +20062.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +184D + 8 +0 + 62 + 0 + 10 +20112.5 + 20 +22175.429095 + 30 +0.0 + 11 +20137.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +184E + 8 +0 + 62 + 0 + 10 +20187.5 + 20 +22175.429095 + 30 +0.0 + 11 +20212.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +184F + 8 +0 + 62 + 0 + 10 +20262.5 + 20 +22175.429095 + 30 +0.0 + 11 +20287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1850 + 8 +0 + 62 + 0 + 10 +20337.5 + 20 +22175.429095 + 30 +0.0 + 11 +20362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1851 + 8 +0 + 62 + 0 + 10 +20412.5 + 20 +22175.429095 + 30 +0.0 + 11 +20437.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1852 + 8 +0 + 62 + 0 + 10 +20487.5 + 20 +22175.429095 + 30 +0.0 + 11 +20512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1853 + 8 +0 + 62 + 0 + 10 +20562.5 + 20 +22175.429095 + 30 +0.0 + 11 +20587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1854 + 8 +0 + 62 + 0 + 10 +20637.5 + 20 +22175.429095 + 30 +0.0 + 11 +20662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1855 + 8 +0 + 62 + 0 + 10 +20712.5 + 20 +22175.429095 + 30 +0.0 + 11 +20737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1856 + 8 +0 + 62 + 0 + 10 +20787.5 + 20 +22175.429095 + 30 +0.0 + 11 +20812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1857 + 8 +0 + 62 + 0 + 10 +20862.5 + 20 +22175.429095 + 30 +0.0 + 11 +20887.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1858 + 8 +0 + 62 + 0 + 10 +20937.5 + 20 +22175.429095 + 30 +0.0 + 11 +20962.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1859 + 8 +0 + 62 + 0 + 10 +21012.5 + 20 +22175.429095 + 30 +0.0 + 11 +21037.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +185A + 8 +0 + 62 + 0 + 10 +21087.5 + 20 +22175.429095 + 30 +0.0 + 11 +21112.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +185B + 8 +0 + 62 + 0 + 10 +21162.5 + 20 +22175.429095 + 30 +0.0 + 11 +21187.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +185C + 8 +0 + 62 + 0 + 10 +21237.5 + 20 +22175.429095 + 30 +0.0 + 11 +21262.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +185D + 8 +0 + 62 + 0 + 10 +21312.5 + 20 +22175.429095 + 30 +0.0 + 11 +21337.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +185E + 8 +0 + 62 + 0 + 10 +21387.5 + 20 +22175.429095 + 30 +0.0 + 11 +21412.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +185F + 8 +0 + 62 + 0 + 10 +21462.5 + 20 +22175.429095 + 30 +0.0 + 11 +21487.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1860 + 8 +0 + 62 + 0 + 10 +21537.5 + 20 +22175.429095 + 30 +0.0 + 11 +21562.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1861 + 8 +0 + 62 + 0 + 10 +21612.5 + 20 +22175.429095 + 30 +0.0 + 11 +21637.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1862 + 8 +0 + 62 + 0 + 10 +21687.5 + 20 +22175.429095 + 30 +0.0 + 11 +21712.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1863 + 8 +0 + 62 + 0 + 10 +21762.5 + 20 +22175.429095 + 30 +0.0 + 11 +21787.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1864 + 8 +0 + 62 + 0 + 10 +21837.5 + 20 +22175.429095 + 30 +0.0 + 11 +21862.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1865 + 8 +0 + 62 + 0 + 10 +21912.5 + 20 +22175.429095 + 30 +0.0 + 11 +21937.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1866 + 8 +0 + 62 + 0 + 10 +21987.5 + 20 +22175.429095 + 30 +0.0 + 11 +22012.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1867 + 8 +0 + 62 + 0 + 10 +22062.5 + 20 +22175.429095 + 30 +0.0 + 11 +22087.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1868 + 8 +0 + 62 + 0 + 10 +22137.5 + 20 +22175.429095 + 30 +0.0 + 11 +22162.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1869 + 8 +0 + 62 + 0 + 10 +22212.5 + 20 +22175.429095 + 30 +0.0 + 11 +22237.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +186A + 8 +0 + 62 + 0 + 10 +22287.5 + 20 +22175.429095 + 30 +0.0 + 11 +22312.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +186B + 8 +0 + 62 + 0 + 10 +22362.5 + 20 +22175.429095 + 30 +0.0 + 11 +22387.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +186C + 8 +0 + 62 + 0 + 10 +22437.5 + 20 +22175.429095 + 30 +0.0 + 11 +22462.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +186D + 8 +0 + 62 + 0 + 10 +22512.5 + 20 +22175.429095 + 30 +0.0 + 11 +22537.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +186E + 8 +0 + 62 + 0 + 10 +22587.5 + 20 +22175.429095 + 30 +0.0 + 11 +22612.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +186F + 8 +0 + 62 + 0 + 10 +22662.5 + 20 +22175.429095 + 30 +0.0 + 11 +22687.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1870 + 8 +0 + 62 + 0 + 10 +22737.5 + 20 +22175.429095 + 30 +0.0 + 11 +22762.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1871 + 8 +0 + 62 + 0 + 10 +22812.5 + 20 +22175.429095 + 30 +0.0 + 11 +22837.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1872 + 8 +0 + 62 + 0 + 10 +22887.5 + 20 +22175.429095 + 30 +0.0 + 11 +22912.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1873 + 8 +0 + 62 + 0 + 10 +22962.5 + 20 +22175.429095 + 30 +0.0 + 11 +22987.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1874 + 8 +0 + 62 + 0 + 10 +23037.5 + 20 +22175.429095 + 30 +0.0 + 11 +23062.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1875 + 8 +0 + 62 + 0 + 10 +23112.5 + 20 +22175.429095 + 30 +0.0 + 11 +23137.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1876 + 8 +0 + 62 + 0 + 10 +23187.5 + 20 +22175.429095 + 30 +0.0 + 11 +23212.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1877 + 8 +0 + 62 + 0 + 10 +23262.5 + 20 +22175.429095 + 30 +0.0 + 11 +23287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1878 + 8 +0 + 62 + 0 + 10 +23337.5 + 20 +22175.429095 + 30 +0.0 + 11 +23362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1879 + 8 +0 + 62 + 0 + 10 +19738.25 + 20 +22132.127825 + 30 +0.0 + 11 +19762.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +187A + 8 +0 + 62 + 0 + 10 +19812.5 + 20 +22132.127825 + 30 +0.0 + 11 +19837.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +187B + 8 +0 + 62 + 0 + 10 +19887.5 + 20 +22132.127825 + 30 +0.0 + 11 +19912.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +187C + 8 +0 + 62 + 0 + 10 +19962.5 + 20 +22132.127825 + 30 +0.0 + 11 +19987.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +187D + 8 +0 + 62 + 0 + 10 +20037.5 + 20 +22132.127825 + 30 +0.0 + 11 +20062.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +187E + 8 +0 + 62 + 0 + 10 +20112.5 + 20 +22132.127825 + 30 +0.0 + 11 +20137.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +187F + 8 +0 + 62 + 0 + 10 +20187.5 + 20 +22132.127825 + 30 +0.0 + 11 +20212.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1880 + 8 +0 + 62 + 0 + 10 +20262.5 + 20 +22132.127825 + 30 +0.0 + 11 +20287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1881 + 8 +0 + 62 + 0 + 10 +20337.5 + 20 +22132.127825 + 30 +0.0 + 11 +20362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1882 + 8 +0 + 62 + 0 + 10 +20412.5 + 20 +22132.127825 + 30 +0.0 + 11 +20437.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1883 + 8 +0 + 62 + 0 + 10 +20487.5 + 20 +22132.127825 + 30 +0.0 + 11 +20512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1884 + 8 +0 + 62 + 0 + 10 +20562.5 + 20 +22132.127825 + 30 +0.0 + 11 +20587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1885 + 8 +0 + 62 + 0 + 10 +20637.5 + 20 +22132.127825 + 30 +0.0 + 11 +20662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1886 + 8 +0 + 62 + 0 + 10 +20712.5 + 20 +22132.127825 + 30 +0.0 + 11 +20737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1887 + 8 +0 + 62 + 0 + 10 +20787.5 + 20 +22132.127825 + 30 +0.0 + 11 +20812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1888 + 8 +0 + 62 + 0 + 10 +20862.5 + 20 +22132.127825 + 30 +0.0 + 11 +20887.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1889 + 8 +0 + 62 + 0 + 10 +20937.5 + 20 +22132.127825 + 30 +0.0 + 11 +20962.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +188A + 8 +0 + 62 + 0 + 10 +21012.5 + 20 +22132.127825 + 30 +0.0 + 11 +21037.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +188B + 8 +0 + 62 + 0 + 10 +21087.5 + 20 +22132.127825 + 30 +0.0 + 11 +21112.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +188C + 8 +0 + 62 + 0 + 10 +21162.5 + 20 +22132.127825 + 30 +0.0 + 11 +21187.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +188D + 8 +0 + 62 + 0 + 10 +21237.5 + 20 +22132.127825 + 30 +0.0 + 11 +21262.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +188E + 8 +0 + 62 + 0 + 10 +21312.5 + 20 +22132.127825 + 30 +0.0 + 11 +21337.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +188F + 8 +0 + 62 + 0 + 10 +21387.5 + 20 +22132.127825 + 30 +0.0 + 11 +21412.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1890 + 8 +0 + 62 + 0 + 10 +21462.5 + 20 +22132.127825 + 30 +0.0 + 11 +21487.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1891 + 8 +0 + 62 + 0 + 10 +21537.5 + 20 +22132.127825 + 30 +0.0 + 11 +21562.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1892 + 8 +0 + 62 + 0 + 10 +21612.5 + 20 +22132.127825 + 30 +0.0 + 11 +21637.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1893 + 8 +0 + 62 + 0 + 10 +21687.5 + 20 +22132.127825 + 30 +0.0 + 11 +21712.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1894 + 8 +0 + 62 + 0 + 10 +21762.5 + 20 +22132.127825 + 30 +0.0 + 11 +21787.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1895 + 8 +0 + 62 + 0 + 10 +21837.5 + 20 +22132.127825 + 30 +0.0 + 11 +21862.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1896 + 8 +0 + 62 + 0 + 10 +21912.5 + 20 +22132.127825 + 30 +0.0 + 11 +21937.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1897 + 8 +0 + 62 + 0 + 10 +21987.5 + 20 +22132.127825 + 30 +0.0 + 11 +22012.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1898 + 8 +0 + 62 + 0 + 10 +22062.5 + 20 +22132.127825 + 30 +0.0 + 11 +22087.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1899 + 8 +0 + 62 + 0 + 10 +22137.5 + 20 +22132.127825 + 30 +0.0 + 11 +22162.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +189A + 8 +0 + 62 + 0 + 10 +22212.5 + 20 +22132.127825 + 30 +0.0 + 11 +22237.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +189B + 8 +0 + 62 + 0 + 10 +22287.5 + 20 +22132.127825 + 30 +0.0 + 11 +22312.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +189C + 8 +0 + 62 + 0 + 10 +22362.5 + 20 +22132.127825 + 30 +0.0 + 11 +22387.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +189D + 8 +0 + 62 + 0 + 10 +22437.5 + 20 +22132.127825 + 30 +0.0 + 11 +22462.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +189E + 8 +0 + 62 + 0 + 10 +22512.5 + 20 +22132.127825 + 30 +0.0 + 11 +22537.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +189F + 8 +0 + 62 + 0 + 10 +22587.5 + 20 +22132.127825 + 30 +0.0 + 11 +22612.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A0 + 8 +0 + 62 + 0 + 10 +22662.5 + 20 +22132.127825 + 30 +0.0 + 11 +22687.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A1 + 8 +0 + 62 + 0 + 10 +22737.5 + 20 +22132.127825 + 30 +0.0 + 11 +22762.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A2 + 8 +0 + 62 + 0 + 10 +22812.5 + 20 +22132.127825 + 30 +0.0 + 11 +22837.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A3 + 8 +0 + 62 + 0 + 10 +22887.5 + 20 +22132.127825 + 30 +0.0 + 11 +22912.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A4 + 8 +0 + 62 + 0 + 10 +22962.5 + 20 +22132.127825 + 30 +0.0 + 11 +22987.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A5 + 8 +0 + 62 + 0 + 10 +23037.5 + 20 +22132.127825 + 30 +0.0 + 11 +23062.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A6 + 8 +0 + 62 + 0 + 10 +23112.5 + 20 +22132.127825 + 30 +0.0 + 11 +23137.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A7 + 8 +0 + 62 + 0 + 10 +23187.5 + 20 +22132.127825 + 30 +0.0 + 11 +23212.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A8 + 8 +0 + 62 + 0 + 10 +23262.5 + 20 +22132.127825 + 30 +0.0 + 11 +23287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18A9 + 8 +0 + 62 + 0 + 10 +23337.5 + 20 +22132.127825 + 30 +0.0 + 11 +23362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +18AA + 8 +0 + 62 + 0 + 10 +21572.388682 + 20 +22115.0 + 30 +0.0 + 11 +21562.499921 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +18AB + 8 +0 + 62 + 0 + 10 +21537.499921 + 20 +22175.429106 + 30 +0.0 + 11 +21526.20066 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18AC + 8 +0 + 62 + 0 + 10 +21537.499921 + 20 +22132.127836 + 30 +0.0 + 11 +21524.999921 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +18AD + 8 +0 + 62 + 0 + 10 +21499.999922 + 20 +22153.778471 + 30 +0.0 + 11 +21487.499922 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +18AE + 8 +0 + 62 + 0 + 10 +21497.388682 + 20 +22115.0 + 30 +0.0 + 11 +21487.499922 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +18AF + 8 +0 + 62 + 0 + 10 +21462.499922 + 20 +22175.429106 + 30 +0.0 + 11 +21451.200661 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18B0 + 8 +0 + 62 + 0 + 10 +21462.499922 + 20 +22132.127836 + 30 +0.0 + 11 +21449.999922 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +18B1 + 8 +0 + 62 + 0 + 10 +21424.999922 + 20 +22153.778471 + 30 +0.0 + 11 +21412.499922 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +18B2 + 8 +0 + 62 + 0 + 10 +21422.388683 + 20 +22115.0 + 30 +0.0 + 11 +21412.499922 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +18B3 + 8 +0 + 62 + 0 + 10 +21387.499922 + 20 +22175.429106 + 30 +0.0 + 11 +21376.200661 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18B4 + 8 +0 + 62 + 0 + 10 +21387.499922 + 20 +22132.127836 + 30 +0.0 + 11 +21374.999922 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +18B5 + 8 +0 + 62 + 0 + 10 +21349.999922 + 20 +22153.778471 + 30 +0.0 + 11 +21337.499922 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +18B6 + 8 +0 + 62 + 0 + 10 +21347.388683 + 20 +22115.0 + 30 +0.0 + 11 +21337.499922 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +18B7 + 8 +0 + 62 + 0 + 10 +21312.499922 + 20 +22175.429106 + 30 +0.0 + 11 +21301.200661 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18B8 + 8 +0 + 62 + 0 + 10 +21312.499922 + 20 +22132.127836 + 30 +0.0 + 11 +21299.999922 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +18B9 + 8 +0 + 62 + 0 + 10 +21274.999922 + 20 +22153.778471 + 30 +0.0 + 11 +21262.499922 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18BA + 8 +0 + 62 + 0 + 10 +21272.388683 + 20 +22115.0 + 30 +0.0 + 11 +21262.499922 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +18BB + 8 +0 + 62 + 0 + 10 +21237.499922 + 20 +22175.429107 + 30 +0.0 + 11 +21226.200662 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18BC + 8 +0 + 62 + 0 + 10 +21237.499922 + 20 +22132.127836 + 30 +0.0 + 11 +21224.999922 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18BD + 8 +0 + 62 + 0 + 10 +21199.999922 + 20 +22153.778472 + 30 +0.0 + 11 +21187.499922 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18BE + 8 +0 + 62 + 0 + 10 +21197.388684 + 20 +22115.0 + 30 +0.0 + 11 +21187.499923 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18BF + 8 +0 + 62 + 0 + 10 +21162.499923 + 20 +22175.429107 + 30 +0.0 + 11 +21151.200662 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18C0 + 8 +0 + 62 + 0 + 10 +21162.499923 + 20 +22132.127837 + 30 +0.0 + 11 +21149.999923 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18C1 + 8 +0 + 62 + 0 + 10 +21124.999923 + 20 +22153.778472 + 30 +0.0 + 11 +21112.499923 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18C2 + 8 +0 + 62 + 0 + 10 +21122.388684 + 20 +22115.0 + 30 +0.0 + 11 +21112.499923 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18C3 + 8 +0 + 62 + 0 + 10 +21087.499923 + 20 +22175.429107 + 30 +0.0 + 11 +21076.200662 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18C4 + 8 +0 + 62 + 0 + 10 +21087.499923 + 20 +22132.127837 + 30 +0.0 + 11 +21074.999923 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18C5 + 8 +0 + 62 + 0 + 10 +21049.999923 + 20 +22153.778472 + 30 +0.0 + 11 +21037.499923 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18C6 + 8 +0 + 62 + 0 + 10 +21047.388684 + 20 +22115.0 + 30 +0.0 + 11 +21037.499923 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18C7 + 8 +0 + 62 + 0 + 10 +21012.499923 + 20 +22175.429107 + 30 +0.0 + 11 +21001.200663 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18C8 + 8 +0 + 62 + 0 + 10 +21012.499923 + 20 +22132.127837 + 30 +0.0 + 11 +20999.999923 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18C9 + 8 +0 + 62 + 0 + 10 +20974.999923 + 20 +22153.778472 + 30 +0.0 + 11 +20962.499923 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18CA + 8 +0 + 62 + 0 + 10 +20972.388685 + 20 +22115.0 + 30 +0.0 + 11 +20962.499923 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18CB + 8 +0 + 62 + 0 + 10 +20937.499923 + 20 +22175.429107 + 30 +0.0 + 11 +20926.200663 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18CC + 8 +0 + 62 + 0 + 10 +20937.499923 + 20 +22132.127837 + 30 +0.0 + 11 +20924.999923 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18CD + 8 +0 + 62 + 0 + 10 +20899.999923 + 20 +22153.778472 + 30 +0.0 + 11 +20887.499923 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18CE + 8 +0 + 62 + 0 + 10 +20897.388685 + 20 +22115.0 + 30 +0.0 + 11 +20887.499924 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18CF + 8 +0 + 62 + 0 + 10 +20862.499924 + 20 +22175.429107 + 30 +0.0 + 11 +20851.200663 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18D0 + 8 +0 + 62 + 0 + 10 +20862.499924 + 20 +22132.127837 + 30 +0.0 + 11 +20849.999924 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18D1 + 8 +0 + 62 + 0 + 10 +20824.999924 + 20 +22153.778472 + 30 +0.0 + 11 +20812.499924 + 21 +22175.429107 + 31 +0.0 + 0 +LINE + 5 +18D2 + 8 +0 + 62 + 0 + 10 +20822.388685 + 20 +22115.0 + 30 +0.0 + 11 +20812.499924 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18D3 + 8 +0 + 62 + 0 + 10 +20787.499924 + 20 +22175.429107 + 30 +0.0 + 11 +20776.200664 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18D4 + 8 +0 + 62 + 0 + 10 +20787.499924 + 20 +22132.127837 + 30 +0.0 + 11 +20774.999924 + 21 +22153.778472 + 31 +0.0 + 0 +LINE + 5 +18D5 + 8 +0 + 62 + 0 + 10 +20749.999924 + 20 +22153.778472 + 30 +0.0 + 11 +20737.499924 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18D6 + 8 +0 + 62 + 0 + 10 +20747.388686 + 20 +22115.0 + 30 +0.0 + 11 +20737.499924 + 21 +22132.127837 + 31 +0.0 + 0 +LINE + 5 +18D7 + 8 +0 + 62 + 0 + 10 +20712.499924 + 20 +22175.429108 + 30 +0.0 + 11 +20701.200664 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18D8 + 8 +0 + 62 + 0 + 10 +20712.499924 + 20 +22132.127837 + 30 +0.0 + 11 +20699.999924 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18D9 + 8 +0 + 62 + 0 + 10 +20674.999924 + 20 +22153.778473 + 30 +0.0 + 11 +20662.499924 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18DA + 8 +0 + 62 + 0 + 10 +20672.388686 + 20 +22115.0 + 30 +0.0 + 11 +20662.499924 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18DB + 8 +0 + 62 + 0 + 10 +20637.499924 + 20 +22175.429108 + 30 +0.0 + 11 +20626.200664 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18DC + 8 +0 + 62 + 0 + 10 +20637.499924 + 20 +22132.127838 + 30 +0.0 + 11 +20624.999924 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18DD + 8 +0 + 62 + 0 + 10 +20599.999924 + 20 +22153.778473 + 30 +0.0 + 11 +20587.499924 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18DE + 8 +0 + 62 + 0 + 10 +20597.388686 + 20 +22115.0 + 30 +0.0 + 11 +20587.499925 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18DF + 8 +0 + 62 + 0 + 10 +20562.499925 + 20 +22175.429108 + 30 +0.0 + 11 +20551.200665 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18E0 + 8 +0 + 62 + 0 + 10 +20562.499925 + 20 +22132.127838 + 30 +0.0 + 11 +20549.999925 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18E1 + 8 +0 + 62 + 0 + 10 +20524.999925 + 20 +22153.778473 + 30 +0.0 + 11 +20512.499925 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18E2 + 8 +0 + 62 + 0 + 10 +20522.388687 + 20 +22115.0 + 30 +0.0 + 11 +20512.499925 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18E3 + 8 +0 + 62 + 0 + 10 +20487.499925 + 20 +22175.429108 + 30 +0.0 + 11 +20476.200665 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18E4 + 8 +0 + 62 + 0 + 10 +20487.499925 + 20 +22132.127838 + 30 +0.0 + 11 +20474.999925 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18E5 + 8 +0 + 62 + 0 + 10 +20449.999925 + 20 +22153.778473 + 30 +0.0 + 11 +20437.499925 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18E6 + 8 +0 + 62 + 0 + 10 +20447.388687 + 20 +22115.0 + 30 +0.0 + 11 +20437.499925 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18E7 + 8 +0 + 62 + 0 + 10 +20412.499925 + 20 +22175.429108 + 30 +0.0 + 11 +20401.200665 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18E8 + 8 +0 + 62 + 0 + 10 +20412.499925 + 20 +22132.127838 + 30 +0.0 + 11 +20399.999925 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18E9 + 8 +0 + 62 + 0 + 10 +20374.999925 + 20 +22153.778473 + 30 +0.0 + 11 +20362.499925 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18EA + 8 +0 + 62 + 0 + 10 +20372.388687 + 20 +22115.0 + 30 +0.0 + 11 +20362.499925 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18EB + 8 +0 + 62 + 0 + 10 +20337.499925 + 20 +22175.429108 + 30 +0.0 + 11 +20326.200666 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18EC + 8 +0 + 62 + 0 + 10 +20337.499925 + 20 +22132.127838 + 30 +0.0 + 11 +20324.999925 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18ED + 8 +0 + 62 + 0 + 10 +20299.999925 + 20 +22153.778473 + 30 +0.0 + 11 +20287.499925 + 21 +22175.429108 + 31 +0.0 + 0 +LINE + 5 +18EE + 8 +0 + 62 + 0 + 10 +20297.388688 + 20 +22115.0 + 30 +0.0 + 11 +20287.499926 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18EF + 8 +0 + 62 + 0 + 10 +20262.499926 + 20 +22175.429108 + 30 +0.0 + 11 +20251.200666 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18F0 + 8 +0 + 62 + 0 + 10 +20262.499926 + 20 +22132.127838 + 30 +0.0 + 11 +20249.999926 + 21 +22153.778473 + 31 +0.0 + 0 +LINE + 5 +18F1 + 8 +0 + 62 + 0 + 10 +20224.999926 + 20 +22153.778473 + 30 +0.0 + 11 +20212.499926 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +18F2 + 8 +0 + 62 + 0 + 10 +20222.388688 + 20 +22115.0 + 30 +0.0 + 11 +20212.499926 + 21 +22132.127838 + 31 +0.0 + 0 +LINE + 5 +18F3 + 8 +0 + 62 + 0 + 10 +20187.499926 + 20 +22175.429109 + 30 +0.0 + 11 +20176.200666 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18F4 + 8 +0 + 62 + 0 + 10 +20187.499926 + 20 +22132.127838 + 30 +0.0 + 11 +20174.999926 + 21 +22153.778474 + 31 +0.0 + 0 +LINE + 5 +18F5 + 8 +0 + 62 + 0 + 10 +20149.999926 + 20 +22153.778474 + 30 +0.0 + 11 +20137.499926 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +18F6 + 8 +0 + 62 + 0 + 10 +20147.388688 + 20 +22115.0 + 30 +0.0 + 11 +20137.499926 + 21 +22132.127839 + 31 +0.0 + 0 +LINE + 5 +18F7 + 8 +0 + 62 + 0 + 10 +20112.499926 + 20 +22175.429109 + 30 +0.0 + 11 +20101.200667 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18F8 + 8 +0 + 62 + 0 + 10 +20112.499926 + 20 +22132.127839 + 30 +0.0 + 11 +20099.999926 + 21 +22153.778474 + 31 +0.0 + 0 +LINE + 5 +18F9 + 8 +0 + 62 + 0 + 10 +20074.999926 + 20 +22153.778474 + 30 +0.0 + 11 +20062.499926 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +18FA + 8 +0 + 62 + 0 + 10 +20072.388689 + 20 +22115.0 + 30 +0.0 + 11 +20062.499926 + 21 +22132.127839 + 31 +0.0 + 0 +LINE + 5 +18FB + 8 +0 + 62 + 0 + 10 +20037.499926 + 20 +22175.429109 + 30 +0.0 + 11 +20026.200667 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +18FC + 8 +0 + 62 + 0 + 10 +20037.499926 + 20 +22132.127839 + 30 +0.0 + 11 +20024.999926 + 21 +22153.778474 + 31 +0.0 + 0 +LINE + 5 +18FD + 8 +0 + 62 + 0 + 10 +19999.999926 + 20 +22153.778474 + 30 +0.0 + 11 +19987.499926 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +18FE + 8 +0 + 62 + 0 + 10 +19997.388689 + 20 +22115.0 + 30 +0.0 + 11 +19987.499927 + 21 +22132.127839 + 31 +0.0 + 0 +LINE + 5 +18FF + 8 +0 + 62 + 0 + 10 +19962.499927 + 20 +22175.429109 + 30 +0.0 + 11 +19951.200667 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1900 + 8 +0 + 62 + 0 + 10 +19962.499927 + 20 +22132.127839 + 30 +0.0 + 11 +19949.999927 + 21 +22153.778474 + 31 +0.0 + 0 +LINE + 5 +1901 + 8 +0 + 62 + 0 + 10 +19924.999927 + 20 +22153.778474 + 30 +0.0 + 11 +19912.499927 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +1902 + 8 +0 + 62 + 0 + 10 +19922.388689 + 20 +22115.0 + 30 +0.0 + 11 +19912.499927 + 21 +22132.127839 + 31 +0.0 + 0 +LINE + 5 +1903 + 8 +0 + 62 + 0 + 10 +19887.499927 + 20 +22175.429109 + 30 +0.0 + 11 +19876.200668 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1904 + 8 +0 + 62 + 0 + 10 +19887.499927 + 20 +22132.127839 + 30 +0.0 + 11 +19874.999927 + 21 +22153.778474 + 31 +0.0 + 0 +LINE + 5 +1905 + 8 +0 + 62 + 0 + 10 +19849.999927 + 20 +22153.778474 + 30 +0.0 + 11 +19837.499927 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +1906 + 8 +0 + 62 + 0 + 10 +19847.38869 + 20 +22115.0 + 30 +0.0 + 11 +19837.499927 + 21 +22132.127839 + 31 +0.0 + 0 +LINE + 5 +1907 + 8 +0 + 62 + 0 + 10 +19812.499927 + 20 +22175.429109 + 30 +0.0 + 11 +19801.200668 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1908 + 8 +0 + 62 + 0 + 10 +19812.499927 + 20 +22132.127839 + 30 +0.0 + 11 +19799.999927 + 21 +22153.778474 + 31 +0.0 + 0 +LINE + 5 +1909 + 8 +0 + 62 + 0 + 10 +19774.999927 + 20 +22153.778474 + 30 +0.0 + 11 +19762.499927 + 21 +22175.429109 + 31 +0.0 + 0 +LINE + 5 +190A + 8 +0 + 62 + 0 + 10 +19772.38869 + 20 +22115.0 + 30 +0.0 + 11 +19762.499927 + 21 +22132.127839 + 31 +0.0 + 0 +LINE + 5 +190B + 8 +0 + 62 + 0 + 10 +21574.999921 + 20 +22153.778471 + 30 +0.0 + 11 +21562.499921 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +190C + 8 +0 + 62 + 0 + 10 +21612.499921 + 20 +22132.127836 + 30 +0.0 + 11 +21599.999921 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +190D + 8 +0 + 62 + 0 + 10 +21647.388682 + 20 +22115.0 + 30 +0.0 + 11 +21637.499921 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +190E + 8 +0 + 62 + 0 + 10 +21612.499921 + 20 +22175.429106 + 30 +0.0 + 11 +21601.20066 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +190F + 8 +0 + 62 + 0 + 10 +21649.999921 + 20 +22153.778471 + 30 +0.0 + 11 +21637.499921 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +1910 + 8 +0 + 62 + 0 + 10 +21687.499921 + 20 +22132.127836 + 30 +0.0 + 11 +21674.999921 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +1911 + 8 +0 + 62 + 0 + 10 +21722.388681 + 20 +22115.0 + 30 +0.0 + 11 +21712.499921 + 21 +22132.127836 + 31 +0.0 + 0 +LINE + 5 +1912 + 8 +0 + 62 + 0 + 10 +21687.499921 + 20 +22175.429106 + 30 +0.0 + 11 +21676.20066 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1913 + 8 +0 + 62 + 0 + 10 +21724.999921 + 20 +22153.778471 + 30 +0.0 + 11 +21712.499921 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +1914 + 8 +0 + 62 + 0 + 10 +21762.499921 + 20 +22132.127836 + 30 +0.0 + 11 +21749.999921 + 21 +22153.778471 + 31 +0.0 + 0 +LINE + 5 +1915 + 8 +0 + 62 + 0 + 10 +21797.388681 + 20 +22115.0 + 30 +0.0 + 11 +21787.499921 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +1916 + 8 +0 + 62 + 0 + 10 +21762.499921 + 20 +22175.429106 + 30 +0.0 + 11 +21751.200659 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1917 + 8 +0 + 62 + 0 + 10 +21799.999921 + 20 +22153.778471 + 30 +0.0 + 11 +21787.499921 + 21 +22175.429106 + 31 +0.0 + 0 +LINE + 5 +1918 + 8 +0 + 62 + 0 + 10 +21837.49992 + 20 +22132.127835 + 30 +0.0 + 11 +21824.99992 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +1919 + 8 +0 + 62 + 0 + 10 +21872.388681 + 20 +22115.0 + 30 +0.0 + 11 +21862.49992 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +191A + 8 +0 + 62 + 0 + 10 +21837.49992 + 20 +22175.429106 + 30 +0.0 + 11 +21826.200659 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +191B + 8 +0 + 62 + 0 + 10 +21874.99992 + 20 +22153.77847 + 30 +0.0 + 11 +21862.49992 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +191C + 8 +0 + 62 + 0 + 10 +21912.49992 + 20 +22132.127835 + 30 +0.0 + 11 +21899.99992 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +191D + 8 +0 + 62 + 0 + 10 +21947.38868 + 20 +22115.0 + 30 +0.0 + 11 +21937.49992 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +191E + 8 +0 + 62 + 0 + 10 +21912.49992 + 20 +22175.429105 + 30 +0.0 + 11 +21901.200659 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +191F + 8 +0 + 62 + 0 + 10 +21949.99992 + 20 +22153.77847 + 30 +0.0 + 11 +21937.49992 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +1920 + 8 +0 + 62 + 0 + 10 +21987.49992 + 20 +22132.127835 + 30 +0.0 + 11 +21974.99992 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +1921 + 8 +0 + 62 + 0 + 10 +22022.38868 + 20 +22115.0 + 30 +0.0 + 11 +22012.49992 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +1922 + 8 +0 + 62 + 0 + 10 +21987.49992 + 20 +22175.429105 + 30 +0.0 + 11 +21976.200658 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1923 + 8 +0 + 62 + 0 + 10 +22024.99992 + 20 +22153.77847 + 30 +0.0 + 11 +22012.49992 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +1924 + 8 +0 + 62 + 0 + 10 +22062.49992 + 20 +22132.127835 + 30 +0.0 + 11 +22049.99992 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +1925 + 8 +0 + 62 + 0 + 10 +22097.38868 + 20 +22115.0 + 30 +0.0 + 11 +22087.49992 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +1926 + 8 +0 + 62 + 0 + 10 +22062.49992 + 20 +22175.429105 + 30 +0.0 + 11 +22051.200658 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1927 + 8 +0 + 62 + 0 + 10 +22099.99992 + 20 +22153.77847 + 30 +0.0 + 11 +22087.49992 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +1928 + 8 +0 + 62 + 0 + 10 +22137.499919 + 20 +22132.127835 + 30 +0.0 + 11 +22124.999919 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +1929 + 8 +0 + 62 + 0 + 10 +22172.388679 + 20 +22115.0 + 30 +0.0 + 11 +22162.499919 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +192A + 8 +0 + 62 + 0 + 10 +22137.499919 + 20 +22175.429105 + 30 +0.0 + 11 +22126.200658 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +192B + 8 +0 + 62 + 0 + 10 +22174.999919 + 20 +22153.77847 + 30 +0.0 + 11 +22162.499919 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +192C + 8 +0 + 62 + 0 + 10 +22212.499919 + 20 +22132.127835 + 30 +0.0 + 11 +22199.999919 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +192D + 8 +0 + 62 + 0 + 10 +22247.388679 + 20 +22115.0 + 30 +0.0 + 11 +22237.499919 + 21 +22132.127835 + 31 +0.0 + 0 +LINE + 5 +192E + 8 +0 + 62 + 0 + 10 +22212.499919 + 20 +22175.429105 + 30 +0.0 + 11 +22201.200658 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +192F + 8 +0 + 62 + 0 + 10 +22249.999919 + 20 +22153.77847 + 30 +0.0 + 11 +22237.499919 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +1930 + 8 +0 + 62 + 0 + 10 +22287.499919 + 20 +22132.127835 + 30 +0.0 + 11 +22274.999919 + 21 +22153.77847 + 31 +0.0 + 0 +LINE + 5 +1931 + 8 +0 + 62 + 0 + 10 +22322.388679 + 20 +22115.0 + 30 +0.0 + 11 +22312.499919 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +1932 + 8 +0 + 62 + 0 + 10 +22287.499919 + 20 +22175.429105 + 30 +0.0 + 11 +22276.200657 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1933 + 8 +0 + 62 + 0 + 10 +22324.999919 + 20 +22153.77847 + 30 +0.0 + 11 +22312.499919 + 21 +22175.429105 + 31 +0.0 + 0 +LINE + 5 +1934 + 8 +0 + 62 + 0 + 10 +22362.499919 + 20 +22132.127834 + 30 +0.0 + 11 +22349.999919 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +1935 + 8 +0 + 62 + 0 + 10 +22397.388678 + 20 +22115.0 + 30 +0.0 + 11 +22387.499919 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +1936 + 8 +0 + 62 + 0 + 10 +22362.499919 + 20 +22175.429105 + 30 +0.0 + 11 +22351.200657 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1937 + 8 +0 + 62 + 0 + 10 +22399.999919 + 20 +22153.778469 + 30 +0.0 + 11 +22387.499919 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +1938 + 8 +0 + 62 + 0 + 10 +22437.499918 + 20 +22132.127834 + 30 +0.0 + 11 +22424.999918 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +1939 + 8 +0 + 62 + 0 + 10 +22472.388678 + 20 +22115.0 + 30 +0.0 + 11 +22462.499918 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +193A + 8 +0 + 62 + 0 + 10 +22437.499918 + 20 +22175.429104 + 30 +0.0 + 11 +22426.200657 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +193B + 8 +0 + 62 + 0 + 10 +22474.999918 + 20 +22153.778469 + 30 +0.0 + 11 +22462.499918 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +193C + 8 +0 + 62 + 0 + 10 +22512.499918 + 20 +22132.127834 + 30 +0.0 + 11 +22499.999918 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +193D + 8 +0 + 62 + 0 + 10 +22547.388678 + 20 +22115.0 + 30 +0.0 + 11 +22537.499918 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +193E + 8 +0 + 62 + 0 + 10 +22512.499918 + 20 +22175.429104 + 30 +0.0 + 11 +22501.200656 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +193F + 8 +0 + 62 + 0 + 10 +22549.999918 + 20 +22153.778469 + 30 +0.0 + 11 +22537.499918 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +1940 + 8 +0 + 62 + 0 + 10 +22587.499918 + 20 +22132.127834 + 30 +0.0 + 11 +22574.999918 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +1941 + 8 +0 + 62 + 0 + 10 +22622.388677 + 20 +22115.0 + 30 +0.0 + 11 +22612.499918 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +1942 + 8 +0 + 62 + 0 + 10 +22587.499918 + 20 +22175.429104 + 30 +0.0 + 11 +22576.200656 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1943 + 8 +0 + 62 + 0 + 10 +22624.999918 + 20 +22153.778469 + 30 +0.0 + 11 +22612.499918 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +1944 + 8 +0 + 62 + 0 + 10 +22662.499918 + 20 +22132.127834 + 30 +0.0 + 11 +22649.999918 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +1945 + 8 +0 + 62 + 0 + 10 +22697.388677 + 20 +22115.0 + 30 +0.0 + 11 +22687.499918 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +1946 + 8 +0 + 62 + 0 + 10 +22662.499918 + 20 +22175.429104 + 30 +0.0 + 11 +22651.200656 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1947 + 8 +0 + 62 + 0 + 10 +22699.999918 + 20 +22153.778469 + 30 +0.0 + 11 +22687.499918 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +1948 + 8 +0 + 62 + 0 + 10 +22737.499917 + 20 +22132.127834 + 30 +0.0 + 11 +22724.999917 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +1949 + 8 +0 + 62 + 0 + 10 +22772.388677 + 20 +22115.0 + 30 +0.0 + 11 +22762.499917 + 21 +22132.127834 + 31 +0.0 + 0 +LINE + 5 +194A + 8 +0 + 62 + 0 + 10 +22737.499917 + 20 +22175.429104 + 30 +0.0 + 11 +22726.200655 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +194B + 8 +0 + 62 + 0 + 10 +22774.999917 + 20 +22153.778469 + 30 +0.0 + 11 +22762.499917 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +194C + 8 +0 + 62 + 0 + 10 +22812.499917 + 20 +22132.127834 + 30 +0.0 + 11 +22799.999917 + 21 +22153.778469 + 31 +0.0 + 0 +LINE + 5 +194D + 8 +0 + 62 + 0 + 10 +22847.388676 + 20 +22115.0 + 30 +0.0 + 11 +22837.499917 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +194E + 8 +0 + 62 + 0 + 10 +22812.499917 + 20 +22175.429104 + 30 +0.0 + 11 +22801.200655 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +194F + 8 +0 + 62 + 0 + 10 +22849.999917 + 20 +22153.778469 + 30 +0.0 + 11 +22837.499917 + 21 +22175.429104 + 31 +0.0 + 0 +LINE + 5 +1950 + 8 +0 + 62 + 0 + 10 +22887.499917 + 20 +22132.127833 + 30 +0.0 + 11 +22874.999917 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +1951 + 8 +0 + 62 + 0 + 10 +22922.388676 + 20 +22115.0 + 30 +0.0 + 11 +22912.499917 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +1952 + 8 +0 + 62 + 0 + 10 +22887.499917 + 20 +22175.429104 + 30 +0.0 + 11 +22876.200655 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1953 + 8 +0 + 62 + 0 + 10 +22924.999917 + 20 +22153.778468 + 30 +0.0 + 11 +22912.499917 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +1954 + 8 +0 + 62 + 0 + 10 +22962.499917 + 20 +22132.127833 + 30 +0.0 + 11 +22949.999917 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +1955 + 8 +0 + 62 + 0 + 10 +22997.388676 + 20 +22115.0 + 30 +0.0 + 11 +22987.499917 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +1956 + 8 +0 + 62 + 0 + 10 +22962.499917 + 20 +22175.429103 + 30 +0.0 + 11 +22951.200654 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1957 + 8 +0 + 62 + 0 + 10 +22999.999917 + 20 +22153.778468 + 30 +0.0 + 11 +22987.499917 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +1958 + 8 +0 + 62 + 0 + 10 +23037.499917 + 20 +22132.127833 + 30 +0.0 + 11 +23024.999917 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +1959 + 8 +0 + 62 + 0 + 10 +23072.388675 + 20 +22115.0 + 30 +0.0 + 11 +23062.499916 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +195A + 8 +0 + 62 + 0 + 10 +23037.499916 + 20 +22175.429103 + 30 +0.0 + 11 +23026.200654 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +195B + 8 +0 + 62 + 0 + 10 +23074.999916 + 20 +22153.778468 + 30 +0.0 + 11 +23062.499916 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +195C + 8 +0 + 62 + 0 + 10 +23112.499916 + 20 +22132.127833 + 30 +0.0 + 11 +23099.999916 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +195D + 8 +0 + 62 + 0 + 10 +23147.388675 + 20 +22115.0 + 30 +0.0 + 11 +23137.499916 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +195E + 8 +0 + 62 + 0 + 10 +23112.499916 + 20 +22175.429103 + 30 +0.0 + 11 +23101.200654 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +195F + 8 +0 + 62 + 0 + 10 +23149.999916 + 20 +22153.778468 + 30 +0.0 + 11 +23137.499916 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +1960 + 8 +0 + 62 + 0 + 10 +23187.499916 + 20 +22132.127833 + 30 +0.0 + 11 +23174.999916 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +1961 + 8 +0 + 62 + 0 + 10 +23222.388675 + 20 +22115.0 + 30 +0.0 + 11 +23212.499916 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +1962 + 8 +0 + 62 + 0 + 10 +23187.499916 + 20 +22175.429103 + 30 +0.0 + 11 +23176.200653 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1963 + 8 +0 + 62 + 0 + 10 +23224.999916 + 20 +22153.778468 + 30 +0.0 + 11 +23212.499916 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +1964 + 8 +0 + 62 + 0 + 10 +23262.499916 + 20 +22132.127833 + 30 +0.0 + 11 +23249.999916 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +1965 + 8 +0 + 62 + 0 + 10 +23297.388674 + 20 +22115.0 + 30 +0.0 + 11 +23287.499916 + 21 +22132.127833 + 31 +0.0 + 0 +LINE + 5 +1966 + 8 +0 + 62 + 0 + 10 +23262.499916 + 20 +22175.429103 + 30 +0.0 + 11 +23251.200653 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1967 + 8 +0 + 62 + 0 + 10 +23299.999916 + 20 +22153.778468 + 30 +0.0 + 11 +23287.499916 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +1968 + 8 +0 + 62 + 0 + 10 +23337.499916 + 20 +22132.127833 + 30 +0.0 + 11 +23324.999916 + 21 +22153.778468 + 31 +0.0 + 0 +LINE + 5 +1969 + 8 +0 + 62 + 0 + 10 +23372.388674 + 20 +22115.0 + 30 +0.0 + 11 +23362.499915 + 21 +22132.127832 + 31 +0.0 + 0 +LINE + 5 +196A + 8 +0 + 62 + 0 + 10 +23337.499915 + 20 +22175.429103 + 30 +0.0 + 11 +23326.200653 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +196B + 8 +0 + 62 + 0 + 10 +23374.999915 + 20 +22153.778468 + 30 +0.0 + 11 +23362.499915 + 21 +22175.429103 + 31 +0.0 + 0 +LINE + 5 +196C + 8 +0 + 62 + 0 + 10 +21527.611173 + 20 +22115.0 + 30 +0.0 + 11 +21537.49997 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +196D + 8 +0 + 62 + 0 + 10 +21562.49997 + 20 +22175.429169 + 30 +0.0 + 11 +21573.799195 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +196E + 8 +0 + 62 + 0 + 10 +21524.99997 + 20 +22153.778534 + 30 +0.0 + 11 +21537.49997 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +196F + 8 +0 + 62 + 0 + 10 +21487.49997 + 20 +22132.127898 + 30 +0.0 + 11 +21499.99997 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +1970 + 8 +0 + 62 + 0 + 10 +21452.611174 + 20 +22115.0 + 30 +0.0 + 11 +21462.49997 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +1971 + 8 +0 + 62 + 0 + 10 +21487.49997 + 20 +22175.429169 + 30 +0.0 + 11 +21498.799195 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1972 + 8 +0 + 62 + 0 + 10 +21449.999971 + 20 +22153.778533 + 30 +0.0 + 11 +21462.499971 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +1973 + 8 +0 + 62 + 0 + 10 +21412.499971 + 20 +22132.127898 + 30 +0.0 + 11 +21424.999971 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +1974 + 8 +0 + 62 + 0 + 10 +21377.611174 + 20 +22115.0 + 30 +0.0 + 11 +21387.499971 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +1975 + 8 +0 + 62 + 0 + 10 +21412.499971 + 20 +22175.429168 + 30 +0.0 + 11 +21423.799196 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1976 + 8 +0 + 62 + 0 + 10 +21374.999971 + 20 +22153.778533 + 30 +0.0 + 11 +21387.499971 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +1977 + 8 +0 + 62 + 0 + 10 +21337.499971 + 20 +22132.127898 + 30 +0.0 + 11 +21349.999971 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +1978 + 8 +0 + 62 + 0 + 10 +21302.611174 + 20 +22115.0 + 30 +0.0 + 11 +21312.499971 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +1979 + 8 +0 + 62 + 0 + 10 +21337.499971 + 20 +22175.429168 + 30 +0.0 + 11 +21348.799196 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +197A + 8 +0 + 62 + 0 + 10 +21299.999971 + 20 +22153.778533 + 30 +0.0 + 11 +21312.499971 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +197B + 8 +0 + 62 + 0 + 10 +21262.499971 + 20 +22132.127898 + 30 +0.0 + 11 +21274.999971 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +197C + 8 +0 + 62 + 0 + 10 +21227.611175 + 20 +22115.0 + 30 +0.0 + 11 +21237.499971 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +197D + 8 +0 + 62 + 0 + 10 +21262.499971 + 20 +22175.429168 + 30 +0.0 + 11 +21273.799196 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +197E + 8 +0 + 62 + 0 + 10 +21224.999971 + 20 +22153.778533 + 30 +0.0 + 11 +21237.499971 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +197F + 8 +0 + 62 + 0 + 10 +21187.499971 + 20 +22132.127898 + 30 +0.0 + 11 +21199.999971 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +1980 + 8 +0 + 62 + 0 + 10 +21152.611175 + 20 +22115.0 + 30 +0.0 + 11 +21162.499971 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +1981 + 8 +0 + 62 + 0 + 10 +21187.499971 + 20 +22175.429168 + 30 +0.0 + 11 +21198.799197 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1982 + 8 +0 + 62 + 0 + 10 +21149.999971 + 20 +22153.778533 + 30 +0.0 + 11 +21162.499971 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +1983 + 8 +0 + 62 + 0 + 10 +21112.499972 + 20 +22132.127898 + 30 +0.0 + 11 +21124.999972 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +1984 + 8 +0 + 62 + 0 + 10 +21077.611175 + 20 +22115.0 + 30 +0.0 + 11 +21087.499972 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +1985 + 8 +0 + 62 + 0 + 10 +21112.499972 + 20 +22175.429168 + 30 +0.0 + 11 +21123.799197 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1986 + 8 +0 + 62 + 0 + 10 +21074.999972 + 20 +22153.778533 + 30 +0.0 + 11 +21087.499972 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +1987 + 8 +0 + 62 + 0 + 10 +21037.499972 + 20 +22132.127898 + 30 +0.0 + 11 +21049.999972 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +1988 + 8 +0 + 62 + 0 + 10 +21002.611176 + 20 +22115.0 + 30 +0.0 + 11 +21012.499972 + 21 +22132.127898 + 31 +0.0 + 0 +LINE + 5 +1989 + 8 +0 + 62 + 0 + 10 +21037.499972 + 20 +22175.429168 + 30 +0.0 + 11 +21048.799197 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +198A + 8 +0 + 62 + 0 + 10 +20999.999972 + 20 +22153.778533 + 30 +0.0 + 11 +21012.499972 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +198B + 8 +0 + 62 + 0 + 10 +20962.499972 + 20 +22132.127897 + 30 +0.0 + 11 +20974.999972 + 21 +22153.778533 + 31 +0.0 + 0 +LINE + 5 +198C + 8 +0 + 62 + 0 + 10 +20927.611176 + 20 +22115.0 + 30 +0.0 + 11 +20937.499972 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +198D + 8 +0 + 62 + 0 + 10 +20962.499972 + 20 +22175.429168 + 30 +0.0 + 11 +20973.799198 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +198E + 8 +0 + 62 + 0 + 10 +20924.999972 + 20 +22153.778532 + 30 +0.0 + 11 +20937.499972 + 21 +22175.429168 + 31 +0.0 + 0 +LINE + 5 +198F + 8 +0 + 62 + 0 + 10 +20887.499972 + 20 +22132.127897 + 30 +0.0 + 11 +20899.999972 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +1990 + 8 +0 + 62 + 0 + 10 +20852.611176 + 20 +22115.0 + 30 +0.0 + 11 +20862.499972 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +1991 + 8 +0 + 62 + 0 + 10 +20887.499972 + 20 +22175.429167 + 30 +0.0 + 11 +20898.799198 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1992 + 8 +0 + 62 + 0 + 10 +20849.999972 + 20 +22153.778532 + 30 +0.0 + 11 +20862.499972 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +1993 + 8 +0 + 62 + 0 + 10 +20812.499973 + 20 +22132.127897 + 30 +0.0 + 11 +20824.999973 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +1994 + 8 +0 + 62 + 0 + 10 +20777.611177 + 20 +22115.0 + 30 +0.0 + 11 +20787.499973 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +1995 + 8 +0 + 62 + 0 + 10 +20812.499973 + 20 +22175.429167 + 30 +0.0 + 11 +20823.799198 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1996 + 8 +0 + 62 + 0 + 10 +20774.999973 + 20 +22153.778532 + 30 +0.0 + 11 +20787.499973 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +1997 + 8 +0 + 62 + 0 + 10 +20737.499973 + 20 +22132.127897 + 30 +0.0 + 11 +20749.999973 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +1998 + 8 +0 + 62 + 0 + 10 +20702.611177 + 20 +22115.0 + 30 +0.0 + 11 +20712.499973 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +1999 + 8 +0 + 62 + 0 + 10 +20737.499973 + 20 +22175.429167 + 30 +0.0 + 11 +20748.799198 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +199A + 8 +0 + 62 + 0 + 10 +20699.999973 + 20 +22153.778532 + 30 +0.0 + 11 +20712.499973 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +199B + 8 +0 + 62 + 0 + 10 +20662.499973 + 20 +22132.127897 + 30 +0.0 + 11 +20674.999973 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +199C + 8 +0 + 62 + 0 + 10 +20627.611177 + 20 +22115.0 + 30 +0.0 + 11 +20637.499973 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +199D + 8 +0 + 62 + 0 + 10 +20662.499973 + 20 +22175.429167 + 30 +0.0 + 11 +20673.799199 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +199E + 8 +0 + 62 + 0 + 10 +20624.999973 + 20 +22153.778532 + 30 +0.0 + 11 +20637.499973 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +199F + 8 +0 + 62 + 0 + 10 +20587.499973 + 20 +22132.127897 + 30 +0.0 + 11 +20599.999973 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +19A0 + 8 +0 + 62 + 0 + 10 +20552.611178 + 20 +22115.0 + 30 +0.0 + 11 +20562.499973 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +19A1 + 8 +0 + 62 + 0 + 10 +20587.499973 + 20 +22175.429167 + 30 +0.0 + 11 +20598.799199 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19A2 + 8 +0 + 62 + 0 + 10 +20549.999973 + 20 +22153.778532 + 30 +0.0 + 11 +20562.499973 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +19A3 + 8 +0 + 62 + 0 + 10 +20512.499974 + 20 +22132.127897 + 30 +0.0 + 11 +20524.999974 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +19A4 + 8 +0 + 62 + 0 + 10 +20477.611178 + 20 +22115.0 + 30 +0.0 + 11 +20487.499974 + 21 +22132.127897 + 31 +0.0 + 0 +LINE + 5 +19A5 + 8 +0 + 62 + 0 + 10 +20512.499974 + 20 +22175.429167 + 30 +0.0 + 11 +20523.799199 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19A6 + 8 +0 + 62 + 0 + 10 +20474.999974 + 20 +22153.778532 + 30 +0.0 + 11 +20487.499974 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +19A7 + 8 +0 + 62 + 0 + 10 +20437.499974 + 20 +22132.127896 + 30 +0.0 + 11 +20449.999974 + 21 +22153.778532 + 31 +0.0 + 0 +LINE + 5 +19A8 + 8 +0 + 62 + 0 + 10 +20402.611178 + 20 +22115.0 + 30 +0.0 + 11 +20412.499974 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19A9 + 8 +0 + 62 + 0 + 10 +20437.499974 + 20 +22175.429167 + 30 +0.0 + 11 +20448.7992 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19AA + 8 +0 + 62 + 0 + 10 +20399.999974 + 20 +22153.778531 + 30 +0.0 + 11 +20412.499974 + 21 +22175.429167 + 31 +0.0 + 0 +LINE + 5 +19AB + 8 +0 + 62 + 0 + 10 +20362.499974 + 20 +22132.127896 + 30 +0.0 + 11 +20374.999974 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19AC + 8 +0 + 62 + 0 + 10 +20327.611179 + 20 +22115.0 + 30 +0.0 + 11 +20337.499974 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19AD + 8 +0 + 62 + 0 + 10 +20362.499974 + 20 +22175.429166 + 30 +0.0 + 11 +20373.7992 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19AE + 8 +0 + 62 + 0 + 10 +20324.999974 + 20 +22153.778531 + 30 +0.0 + 11 +20337.499974 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19AF + 8 +0 + 62 + 0 + 10 +20287.499974 + 20 +22132.127896 + 30 +0.0 + 11 +20299.999974 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19B0 + 8 +0 + 62 + 0 + 10 +20252.611179 + 20 +22115.0 + 30 +0.0 + 11 +20262.499974 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19B1 + 8 +0 + 62 + 0 + 10 +20287.499974 + 20 +22175.429166 + 30 +0.0 + 11 +20298.7992 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19B2 + 8 +0 + 62 + 0 + 10 +20249.999974 + 20 +22153.778531 + 30 +0.0 + 11 +20262.499974 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19B3 + 8 +0 + 62 + 0 + 10 +20212.499975 + 20 +22132.127896 + 30 +0.0 + 11 +20224.999975 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19B4 + 8 +0 + 62 + 0 + 10 +20177.611179 + 20 +22115.0 + 30 +0.0 + 11 +20187.499975 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19B5 + 8 +0 + 62 + 0 + 10 +20212.499975 + 20 +22175.429166 + 30 +0.0 + 11 +20223.799201 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19B6 + 8 +0 + 62 + 0 + 10 +20174.999975 + 20 +22153.778531 + 30 +0.0 + 11 +20187.499975 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19B7 + 8 +0 + 62 + 0 + 10 +20137.499975 + 20 +22132.127896 + 30 +0.0 + 11 +20149.999975 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19B8 + 8 +0 + 62 + 0 + 10 +20102.61118 + 20 +22115.0 + 30 +0.0 + 11 +20112.499975 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19B9 + 8 +0 + 62 + 0 + 10 +20137.499975 + 20 +22175.429166 + 30 +0.0 + 11 +20148.799201 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19BA + 8 +0 + 62 + 0 + 10 +20099.999975 + 20 +22153.778531 + 30 +0.0 + 11 +20112.499975 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19BB + 8 +0 + 62 + 0 + 10 +20062.499975 + 20 +22132.127896 + 30 +0.0 + 11 +20074.999975 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19BC + 8 +0 + 62 + 0 + 10 +20027.61118 + 20 +22115.0 + 30 +0.0 + 11 +20037.499975 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19BD + 8 +0 + 62 + 0 + 10 +20062.499975 + 20 +22175.429166 + 30 +0.0 + 11 +20073.799201 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19BE + 8 +0 + 62 + 0 + 10 +20024.999975 + 20 +22153.778531 + 30 +0.0 + 11 +20037.499975 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19BF + 8 +0 + 62 + 0 + 10 +19987.499975 + 20 +22132.127896 + 30 +0.0 + 11 +19999.999975 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19C0 + 8 +0 + 62 + 0 + 10 +19952.61118 + 20 +22115.0 + 30 +0.0 + 11 +19962.499975 + 21 +22132.127896 + 31 +0.0 + 0 +LINE + 5 +19C1 + 8 +0 + 62 + 0 + 10 +19987.499975 + 20 +22175.429166 + 30 +0.0 + 11 +19998.799202 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19C2 + 8 +0 + 62 + 0 + 10 +19949.999975 + 20 +22153.778531 + 30 +0.0 + 11 +19962.499975 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19C3 + 8 +0 + 62 + 0 + 10 +19912.499976 + 20 +22132.127895 + 30 +0.0 + 11 +19924.999976 + 21 +22153.778531 + 31 +0.0 + 0 +LINE + 5 +19C4 + 8 +0 + 62 + 0 + 10 +19877.611181 + 20 +22115.0 + 30 +0.0 + 11 +19887.499976 + 21 +22132.127895 + 31 +0.0 + 0 +LINE + 5 +19C5 + 8 +0 + 62 + 0 + 10 +19912.499976 + 20 +22175.429166 + 30 +0.0 + 11 +19923.799202 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19C6 + 8 +0 + 62 + 0 + 10 +19874.999976 + 20 +22153.77853 + 30 +0.0 + 11 +19887.499976 + 21 +22175.429166 + 31 +0.0 + 0 +LINE + 5 +19C7 + 8 +0 + 62 + 0 + 10 +19837.499976 + 20 +22132.127895 + 30 +0.0 + 11 +19849.999976 + 21 +22153.77853 + 31 +0.0 + 0 +LINE + 5 +19C8 + 8 +0 + 62 + 0 + 10 +19802.611181 + 20 +22115.0 + 30 +0.0 + 11 +19812.499976 + 21 +22132.127895 + 31 +0.0 + 0 +LINE + 5 +19C9 + 8 +0 + 62 + 0 + 10 +19837.499976 + 20 +22175.429165 + 30 +0.0 + 11 +19848.799202 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19CA + 8 +0 + 62 + 0 + 10 +19799.999976 + 20 +22153.77853 + 30 +0.0 + 11 +19812.499976 + 21 +22175.429165 + 31 +0.0 + 0 +LINE + 5 +19CB + 8 +0 + 62 + 0 + 10 +19762.499976 + 20 +22132.127895 + 30 +0.0 + 11 +19774.999976 + 21 +22153.77853 + 31 +0.0 + 0 +LINE + 5 +19CC + 8 +0 + 62 + 0 + 10 +19762.499976 + 20 +22175.429165 + 30 +0.0 + 11 +19773.799203 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19CD + 8 +0 + 62 + 0 + 10 +21562.49997 + 20 +22132.127899 + 30 +0.0 + 11 +21574.99997 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +19CE + 8 +0 + 62 + 0 + 10 +21599.99997 + 20 +22153.778534 + 30 +0.0 + 11 +21612.49997 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +19CF + 8 +0 + 62 + 0 + 10 +21602.611173 + 20 +22115.0 + 30 +0.0 + 11 +21612.49997 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +19D0 + 8 +0 + 62 + 0 + 10 +21637.49997 + 20 +22175.429169 + 30 +0.0 + 11 +21648.799195 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19D1 + 8 +0 + 62 + 0 + 10 +21637.49997 + 20 +22132.127899 + 30 +0.0 + 11 +21649.99997 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +19D2 + 8 +0 + 62 + 0 + 10 +21674.99997 + 20 +22153.778534 + 30 +0.0 + 11 +21687.49997 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +19D3 + 8 +0 + 62 + 0 + 10 +21677.611173 + 20 +22115.0 + 30 +0.0 + 11 +21687.49997 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +19D4 + 8 +0 + 62 + 0 + 10 +21712.49997 + 20 +22175.429169 + 30 +0.0 + 11 +21723.799194 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19D5 + 8 +0 + 62 + 0 + 10 +21712.49997 + 20 +22132.127899 + 30 +0.0 + 11 +21724.99997 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +19D6 + 8 +0 + 62 + 0 + 10 +21749.99997 + 20 +22153.778534 + 30 +0.0 + 11 +21762.49997 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +19D7 + 8 +0 + 62 + 0 + 10 +21752.611172 + 20 +22115.0 + 30 +0.0 + 11 +21762.499969 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +19D8 + 8 +0 + 62 + 0 + 10 +21787.499969 + 20 +22175.429169 + 30 +0.0 + 11 +21798.799194 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19D9 + 8 +0 + 62 + 0 + 10 +21787.499969 + 20 +22132.127899 + 30 +0.0 + 11 +21799.999969 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +19DA + 8 +0 + 62 + 0 + 10 +21824.999969 + 20 +22153.778534 + 30 +0.0 + 11 +21837.499969 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +19DB + 8 +0 + 62 + 0 + 10 +21827.611172 + 20 +22115.0 + 30 +0.0 + 11 +21837.499969 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +19DC + 8 +0 + 62 + 0 + 10 +21862.499969 + 20 +22175.429169 + 30 +0.0 + 11 +21873.799194 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19DD + 8 +0 + 62 + 0 + 10 +21862.499969 + 20 +22132.127899 + 30 +0.0 + 11 +21874.999969 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +19DE + 8 +0 + 62 + 0 + 10 +21899.999969 + 20 +22153.778534 + 30 +0.0 + 11 +21912.499969 + 21 +22175.429169 + 31 +0.0 + 0 +LINE + 5 +19DF + 8 +0 + 62 + 0 + 10 +21902.611172 + 20 +22115.0 + 30 +0.0 + 11 +21912.499969 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +19E0 + 8 +0 + 62 + 0 + 10 +21937.499969 + 20 +22175.429169 + 30 +0.0 + 11 +21948.799193 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19E1 + 8 +0 + 62 + 0 + 10 +21937.499969 + 20 +22132.127899 + 30 +0.0 + 11 +21949.999969 + 21 +22153.778534 + 31 +0.0 + 0 +LINE + 5 +19E2 + 8 +0 + 62 + 0 + 10 +21974.999969 + 20 +22153.778534 + 30 +0.0 + 11 +21987.499969 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19E3 + 8 +0 + 62 + 0 + 10 +21977.611171 + 20 +22115.0 + 30 +0.0 + 11 +21987.499969 + 21 +22132.127899 + 31 +0.0 + 0 +LINE + 5 +19E4 + 8 +0 + 62 + 0 + 10 +22012.499969 + 20 +22175.42917 + 30 +0.0 + 11 +22023.799193 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19E5 + 8 +0 + 62 + 0 + 10 +22012.499969 + 20 +22132.127899 + 30 +0.0 + 11 +22024.999969 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19E6 + 8 +0 + 62 + 0 + 10 +22049.999969 + 20 +22153.778535 + 30 +0.0 + 11 +22062.499969 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19E7 + 8 +0 + 62 + 0 + 10 +22052.611171 + 20 +22115.0 + 30 +0.0 + 11 +22062.499968 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +19E8 + 8 +0 + 62 + 0 + 10 +22087.499968 + 20 +22175.42917 + 30 +0.0 + 11 +22098.799193 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19E9 + 8 +0 + 62 + 0 + 10 +22087.499968 + 20 +22132.1279 + 30 +0.0 + 11 +22099.999968 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19EA + 8 +0 + 62 + 0 + 10 +22124.999968 + 20 +22153.778535 + 30 +0.0 + 11 +22137.499968 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19EB + 8 +0 + 62 + 0 + 10 +22127.611171 + 20 +22115.0 + 30 +0.0 + 11 +22137.499968 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +19EC + 8 +0 + 62 + 0 + 10 +22162.499968 + 20 +22175.42917 + 30 +0.0 + 11 +22173.799192 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19ED + 8 +0 + 62 + 0 + 10 +22162.499968 + 20 +22132.1279 + 30 +0.0 + 11 +22174.999968 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19EE + 8 +0 + 62 + 0 + 10 +22199.999968 + 20 +22153.778535 + 30 +0.0 + 11 +22212.499968 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19EF + 8 +0 + 62 + 0 + 10 +22202.61117 + 20 +22115.0 + 30 +0.0 + 11 +22212.499968 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +19F0 + 8 +0 + 62 + 0 + 10 +22237.499968 + 20 +22175.42917 + 30 +0.0 + 11 +22248.799192 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19F1 + 8 +0 + 62 + 0 + 10 +22237.499968 + 20 +22132.1279 + 30 +0.0 + 11 +22249.999968 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19F2 + 8 +0 + 62 + 0 + 10 +22274.999968 + 20 +22153.778535 + 30 +0.0 + 11 +22287.499968 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19F3 + 8 +0 + 62 + 0 + 10 +22277.61117 + 20 +22115.0 + 30 +0.0 + 11 +22287.499968 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +19F4 + 8 +0 + 62 + 0 + 10 +22312.499968 + 20 +22175.42917 + 30 +0.0 + 11 +22323.799192 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19F5 + 8 +0 + 62 + 0 + 10 +22312.499968 + 20 +22132.1279 + 30 +0.0 + 11 +22324.999968 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19F6 + 8 +0 + 62 + 0 + 10 +22349.999968 + 20 +22153.778535 + 30 +0.0 + 11 +22362.499968 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19F7 + 8 +0 + 62 + 0 + 10 +22352.61117 + 20 +22115.0 + 30 +0.0 + 11 +22362.499967 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +19F8 + 8 +0 + 62 + 0 + 10 +22387.499967 + 20 +22175.42917 + 30 +0.0 + 11 +22398.799191 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19F9 + 8 +0 + 62 + 0 + 10 +22387.499967 + 20 +22132.1279 + 30 +0.0 + 11 +22399.999967 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19FA + 8 +0 + 62 + 0 + 10 +22424.999967 + 20 +22153.778535 + 30 +0.0 + 11 +22437.499967 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19FB + 8 +0 + 62 + 0 + 10 +22427.611169 + 20 +22115.0 + 30 +0.0 + 11 +22437.499967 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +19FC + 8 +0 + 62 + 0 + 10 +22462.499967 + 20 +22175.42917 + 30 +0.0 + 11 +22473.799191 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +19FD + 8 +0 + 62 + 0 + 10 +22462.499967 + 20 +22132.1279 + 30 +0.0 + 11 +22474.999967 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +19FE + 8 +0 + 62 + 0 + 10 +22499.999967 + 20 +22153.778535 + 30 +0.0 + 11 +22512.499967 + 21 +22175.42917 + 31 +0.0 + 0 +LINE + 5 +19FF + 8 +0 + 62 + 0 + 10 +22502.611169 + 20 +22115.0 + 30 +0.0 + 11 +22512.499967 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +1A00 + 8 +0 + 62 + 0 + 10 +22537.499967 + 20 +22175.429171 + 30 +0.0 + 11 +22548.799191 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A01 + 8 +0 + 62 + 0 + 10 +22537.499967 + 20 +22132.1279 + 30 +0.0 + 11 +22549.999967 + 21 +22153.778535 + 31 +0.0 + 0 +LINE + 5 +1A02 + 8 +0 + 62 + 0 + 10 +22574.999967 + 20 +22153.778536 + 30 +0.0 + 11 +22587.499967 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A03 + 8 +0 + 62 + 0 + 10 +22577.611169 + 20 +22115.0 + 30 +0.0 + 11 +22587.499967 + 21 +22132.1279 + 31 +0.0 + 0 +LINE + 5 +1A04 + 8 +0 + 62 + 0 + 10 +22612.499967 + 20 +22175.429171 + 30 +0.0 + 11 +22623.79919 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A05 + 8 +0 + 62 + 0 + 10 +22612.499967 + 20 +22132.127901 + 30 +0.0 + 11 +22624.999967 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A06 + 8 +0 + 62 + 0 + 10 +22649.999967 + 20 +22153.778536 + 30 +0.0 + 11 +22662.499967 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A07 + 8 +0 + 62 + 0 + 10 +22652.611168 + 20 +22115.0 + 30 +0.0 + 11 +22662.499966 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A08 + 8 +0 + 62 + 0 + 10 +22687.499966 + 20 +22175.429171 + 30 +0.0 + 11 +22698.79919 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A09 + 8 +0 + 62 + 0 + 10 +22687.499966 + 20 +22132.127901 + 30 +0.0 + 11 +22699.999966 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A0A + 8 +0 + 62 + 0 + 10 +22724.999966 + 20 +22153.778536 + 30 +0.0 + 11 +22737.499966 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A0B + 8 +0 + 62 + 0 + 10 +22727.611168 + 20 +22115.0 + 30 +0.0 + 11 +22737.499966 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A0C + 8 +0 + 62 + 0 + 10 +22762.499966 + 20 +22175.429171 + 30 +0.0 + 11 +22773.79919 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A0D + 8 +0 + 62 + 0 + 10 +22762.499966 + 20 +22132.127901 + 30 +0.0 + 11 +22774.999966 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A0E + 8 +0 + 62 + 0 + 10 +22799.999966 + 20 +22153.778536 + 30 +0.0 + 11 +22812.499966 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A0F + 8 +0 + 62 + 0 + 10 +22802.611168 + 20 +22115.0 + 30 +0.0 + 11 +22812.499966 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A10 + 8 +0 + 62 + 0 + 10 +22837.499966 + 20 +22175.429171 + 30 +0.0 + 11 +22848.799189 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A11 + 8 +0 + 62 + 0 + 10 +22837.499966 + 20 +22132.127901 + 30 +0.0 + 11 +22849.999966 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A12 + 8 +0 + 62 + 0 + 10 +22874.999966 + 20 +22153.778536 + 30 +0.0 + 11 +22887.499966 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A13 + 8 +0 + 62 + 0 + 10 +22877.611167 + 20 +22115.0 + 30 +0.0 + 11 +22887.499966 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A14 + 8 +0 + 62 + 0 + 10 +22912.499966 + 20 +22175.429171 + 30 +0.0 + 11 +22923.799189 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A15 + 8 +0 + 62 + 0 + 10 +22912.499966 + 20 +22132.127901 + 30 +0.0 + 11 +22924.999966 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A16 + 8 +0 + 62 + 0 + 10 +22949.999966 + 20 +22153.778536 + 30 +0.0 + 11 +22962.499966 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A17 + 8 +0 + 62 + 0 + 10 +22952.611167 + 20 +22115.0 + 30 +0.0 + 11 +22962.499966 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A18 + 8 +0 + 62 + 0 + 10 +22987.499966 + 20 +22175.429171 + 30 +0.0 + 11 +22998.799189 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A19 + 8 +0 + 62 + 0 + 10 +22987.499965 + 20 +22132.127901 + 30 +0.0 + 11 +22999.999965 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A1A + 8 +0 + 62 + 0 + 10 +23024.999965 + 20 +22153.778536 + 30 +0.0 + 11 +23037.499965 + 21 +22175.429171 + 31 +0.0 + 0 +LINE + 5 +1A1B + 8 +0 + 62 + 0 + 10 +23027.611167 + 20 +22115.0 + 30 +0.0 + 11 +23037.499965 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A1C + 8 +0 + 62 + 0 + 10 +23062.499965 + 20 +22175.429172 + 30 +0.0 + 11 +23073.799188 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A1D + 8 +0 + 62 + 0 + 10 +23062.499965 + 20 +22132.127901 + 30 +0.0 + 11 +23074.999965 + 21 +22153.778536 + 31 +0.0 + 0 +LINE + 5 +1A1E + 8 +0 + 62 + 0 + 10 +23099.999965 + 20 +22153.778537 + 30 +0.0 + 11 +23112.499965 + 21 +22175.429172 + 31 +0.0 + 0 +LINE + 5 +1A1F + 8 +0 + 62 + 0 + 10 +23102.611166 + 20 +22115.0 + 30 +0.0 + 11 +23112.499965 + 21 +22132.127901 + 31 +0.0 + 0 +LINE + 5 +1A20 + 8 +0 + 62 + 0 + 10 +23137.499965 + 20 +22175.429172 + 30 +0.0 + 11 +23148.799188 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A21 + 8 +0 + 62 + 0 + 10 +23137.499965 + 20 +22132.127902 + 30 +0.0 + 11 +23149.999965 + 21 +22153.778537 + 31 +0.0 + 0 +LINE + 5 +1A22 + 8 +0 + 62 + 0 + 10 +23174.999965 + 20 +22153.778537 + 30 +0.0 + 11 +23187.499965 + 21 +22175.429172 + 31 +0.0 + 0 +LINE + 5 +1A23 + 8 +0 + 62 + 0 + 10 +23177.611166 + 20 +22115.0 + 30 +0.0 + 11 +23187.499965 + 21 +22132.127902 + 31 +0.0 + 0 +LINE + 5 +1A24 + 8 +0 + 62 + 0 + 10 +23212.499965 + 20 +22175.429172 + 30 +0.0 + 11 +23223.799188 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A25 + 8 +0 + 62 + 0 + 10 +23212.499965 + 20 +22132.127902 + 30 +0.0 + 11 +23224.999965 + 21 +22153.778537 + 31 +0.0 + 0 +LINE + 5 +1A26 + 8 +0 + 62 + 0 + 10 +23249.999965 + 20 +22153.778537 + 30 +0.0 + 11 +23262.499965 + 21 +22175.429172 + 31 +0.0 + 0 +LINE + 5 +1A27 + 8 +0 + 62 + 0 + 10 +23252.611166 + 20 +22115.0 + 30 +0.0 + 11 +23262.499965 + 21 +22132.127902 + 31 +0.0 + 0 +LINE + 5 +1A28 + 8 +0 + 62 + 0 + 10 +23287.499965 + 20 +22175.429172 + 30 +0.0 + 11 +23298.799187 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A29 + 8 +0 + 62 + 0 + 10 +23287.499964 + 20 +22132.127902 + 30 +0.0 + 11 +23299.999964 + 21 +22153.778537 + 31 +0.0 + 0 +LINE + 5 +1A2A + 8 +0 + 62 + 0 + 10 +23324.999964 + 20 +22153.778537 + 30 +0.0 + 11 +23337.499964 + 21 +22175.429172 + 31 +0.0 + 0 +LINE + 5 +1A2B + 8 +0 + 62 + 0 + 10 +23327.611165 + 20 +22115.0 + 30 +0.0 + 11 +23337.499964 + 21 +22132.127902 + 31 +0.0 + 0 +LINE + 5 +1A2C + 8 +0 + 62 + 0 + 10 +23362.499964 + 20 +22175.429172 + 30 +0.0 + 11 +23373.799187 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1A2D + 8 +0 + 62 + 0 + 10 +23362.499964 + 20 +22132.127902 + 30 +0.0 + 11 +23374.999964 + 21 +22153.778537 + 31 +0.0 + 0 +ENDBLK + 5 +1A2E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X49 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X49 + 1 + + 0 +LINE + 5 +1A30 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20270.173215 + 30 +0.0 + 11 +26812.5 + 21 +20270.173215 + 31 +0.0 + 0 +LINE + 5 +1A31 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20291.82385 + 30 +0.0 + 11 +26775.0 + 21 +20291.82385 + 31 +0.0 + 0 +LINE + 5 +1A32 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20313.474485 + 30 +0.0 + 11 +26812.5 + 21 +20313.474485 + 31 +0.0 + 0 +LINE + 5 +1A33 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20335.12512 + 30 +0.0 + 11 +26775.0 + 21 +20335.12512 + 31 +0.0 + 0 +LINE + 5 +1A34 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20356.775755 + 30 +0.0 + 11 +26812.5 + 21 +20356.775755 + 31 +0.0 + 0 +LINE + 5 +1A35 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20378.42639 + 30 +0.0 + 11 +26775.0 + 21 +20378.42639 + 31 +0.0 + 0 +LINE + 5 +1A36 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20400.077025 + 30 +0.0 + 11 +26812.5 + 21 +20400.077025 + 31 +0.0 + 0 +LINE + 5 +1A37 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20421.72766 + 30 +0.0 + 11 +26775.0 + 21 +20421.72766 + 31 +0.0 + 0 +LINE + 5 +1A38 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20443.378295 + 30 +0.0 + 11 +26812.5 + 21 +20443.378295 + 31 +0.0 + 0 +LINE + 5 +1A39 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20465.02893 + 30 +0.0 + 11 +26775.0 + 21 +20465.02893 + 31 +0.0 + 0 +LINE + 5 +1A3A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20486.679565 + 30 +0.0 + 11 +26812.5 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +1A3B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20508.3302 + 30 +0.0 + 11 +26775.0 + 21 +20508.3302 + 31 +0.0 + 0 +LINE + 5 +1A3C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20529.980835 + 30 +0.0 + 11 +26812.5 + 21 +20529.980835 + 31 +0.0 + 0 +LINE + 5 +1A3D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20551.63147 + 30 +0.0 + 11 +26775.0 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +1A3E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20573.282105 + 30 +0.0 + 11 +26812.5 + 21 +20573.282105 + 31 +0.0 + 0 +LINE + 5 +1A3F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20594.93274 + 30 +0.0 + 11 +26775.0 + 21 +20594.93274 + 31 +0.0 + 0 +LINE + 5 +1A40 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20616.583375 + 30 +0.0 + 11 +26812.5 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +1A41 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20638.23401 + 30 +0.0 + 11 +26775.0 + 21 +20638.23401 + 31 +0.0 + 0 +LINE + 5 +1A42 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20659.884645 + 30 +0.0 + 11 +26812.5 + 21 +20659.884645 + 31 +0.0 + 0 +LINE + 5 +1A43 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20681.53528 + 30 +0.0 + 11 +26775.0 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +1A44 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20703.185915 + 30 +0.0 + 11 +26812.5 + 21 +20703.185915 + 31 +0.0 + 0 +LINE + 5 +1A45 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20724.83655 + 30 +0.0 + 11 +26775.0 + 21 +20724.83655 + 31 +0.0 + 0 +LINE + 5 +1A46 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20746.487185 + 30 +0.0 + 11 +26812.5 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +1A47 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20768.13782 + 30 +0.0 + 11 +26775.0 + 21 +20768.13782 + 31 +0.0 + 0 +LINE + 5 +1A48 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20789.788455 + 30 +0.0 + 11 +26812.5 + 21 +20789.788455 + 31 +0.0 + 0 +LINE + 5 +1A49 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20811.43909 + 30 +0.0 + 11 +26775.0 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +1A4A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20833.089725 + 30 +0.0 + 11 +26812.5 + 21 +20833.089725 + 31 +0.0 + 0 +LINE + 5 +1A4B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20854.74036 + 30 +0.0 + 11 +26775.0 + 21 +20854.74036 + 31 +0.0 + 0 +LINE + 5 +1A4C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20876.390995 + 30 +0.0 + 11 +26812.5 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +1A4D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20898.04163 + 30 +0.0 + 11 +26775.0 + 21 +20898.04163 + 31 +0.0 + 0 +LINE + 5 +1A4E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20919.692265 + 30 +0.0 + 11 +26812.5 + 21 +20919.692265 + 31 +0.0 + 0 +LINE + 5 +1A4F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20941.3429 + 30 +0.0 + 11 +26775.0 + 21 +20941.3429 + 31 +0.0 + 0 +LINE + 5 +1A50 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20962.993535 + 30 +0.0 + 11 +26812.5 + 21 +20962.993535 + 31 +0.0 + 0 +LINE + 5 +1A51 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20984.64417 + 30 +0.0 + 11 +26775.0 + 21 +20984.64417 + 31 +0.0 + 0 +LINE + 5 +1A52 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21006.294805 + 30 +0.0 + 11 +26812.5 + 21 +21006.294805 + 31 +0.0 + 0 +LINE + 5 +1A53 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21027.94544 + 30 +0.0 + 11 +26775.0 + 21 +21027.94544 + 31 +0.0 + 0 +LINE + 5 +1A54 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21049.596075 + 30 +0.0 + 11 +26812.5 + 21 +21049.596075 + 31 +0.0 + 0 +LINE + 5 +1A55 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21071.24671 + 30 +0.0 + 11 +26775.0 + 21 +21071.24671 + 31 +0.0 + 0 +LINE + 5 +1A56 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21092.897345 + 30 +0.0 + 11 +26812.5 + 21 +21092.897345 + 31 +0.0 + 0 +LINE + 5 +1A57 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21114.54798 + 30 +0.0 + 11 +26775.0 + 21 +21114.54798 + 31 +0.0 + 0 +LINE + 5 +1A58 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21136.198615 + 30 +0.0 + 11 +26812.5 + 21 +21136.198615 + 31 +0.0 + 0 +LINE + 5 +1A59 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21157.84925 + 30 +0.0 + 11 +26775.0 + 21 +21157.84925 + 31 +0.0 + 0 +LINE + 5 +1A5A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21179.499885 + 30 +0.0 + 11 +26812.5 + 21 +21179.499885 + 31 +0.0 + 0 +LINE + 5 +1A5B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21201.15052 + 30 +0.0 + 11 +26775.0 + 21 +21201.15052 + 31 +0.0 + 0 +LINE + 5 +1A5C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21222.801155 + 30 +0.0 + 11 +26812.5 + 21 +21222.801155 + 31 +0.0 + 0 +LINE + 5 +1A5D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21244.45179 + 30 +0.0 + 11 +26775.0 + 21 +21244.45179 + 31 +0.0 + 0 +LINE + 5 +1A5E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21266.102425 + 30 +0.0 + 11 +26812.5 + 21 +21266.102425 + 31 +0.0 + 0 +LINE + 5 +1A5F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21287.75306 + 30 +0.0 + 11 +26775.0 + 21 +21287.75306 + 31 +0.0 + 0 +LINE + 5 +1A60 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21309.403695 + 30 +0.0 + 11 +26812.5 + 21 +21309.403695 + 31 +0.0 + 0 +LINE + 5 +1A61 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21331.05433 + 30 +0.0 + 11 +26775.0 + 21 +21331.05433 + 31 +0.0 + 0 +LINE + 5 +1A62 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21352.704965 + 30 +0.0 + 11 +26812.5 + 21 +21352.704965 + 31 +0.0 + 0 +LINE + 5 +1A63 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21374.3556 + 30 +0.0 + 11 +26775.0 + 21 +21374.3556 + 31 +0.0 + 0 +LINE + 5 +1A64 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21396.006235 + 30 +0.0 + 11 +26812.5 + 21 +21396.006235 + 31 +0.0 + 0 +LINE + 5 +1A65 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21417.65687 + 30 +0.0 + 11 +26775.0 + 21 +21417.65687 + 31 +0.0 + 0 +LINE + 5 +1A66 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21439.307505 + 30 +0.0 + 11 +26812.5 + 21 +21439.307505 + 31 +0.0 + 0 +LINE + 5 +1A67 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21460.95814 + 30 +0.0 + 11 +26775.0 + 21 +21460.95814 + 31 +0.0 + 0 +LINE + 5 +1A68 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21482.608775 + 30 +0.0 + 11 +26812.5 + 21 +21482.608775 + 31 +0.0 + 0 +LINE + 5 +1A69 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21504.25941 + 30 +0.0 + 11 +26775.0 + 21 +21504.25941 + 31 +0.0 + 0 +LINE + 5 +1A6A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21525.910045 + 30 +0.0 + 11 +26812.5 + 21 +21525.910045 + 31 +0.0 + 0 +LINE + 5 +1A6B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21547.56068 + 30 +0.0 + 11 +26775.0 + 21 +21547.56068 + 31 +0.0 + 0 +LINE + 5 +1A6C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21569.211315 + 30 +0.0 + 11 +26812.5 + 21 +21569.211315 + 31 +0.0 + 0 +LINE + 5 +1A6D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21590.86195 + 30 +0.0 + 11 +26775.0 + 21 +21590.86195 + 31 +0.0 + 0 +LINE + 5 +1A6E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21612.512585 + 30 +0.0 + 11 +26812.5 + 21 +21612.512585 + 31 +0.0 + 0 +LINE + 5 +1A6F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21634.16322 + 30 +0.0 + 11 +26775.0 + 21 +21634.16322 + 31 +0.0 + 0 +LINE + 5 +1A70 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21655.813855 + 30 +0.0 + 11 +26812.5 + 21 +21655.813855 + 31 +0.0 + 0 +LINE + 5 +1A71 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21677.46449 + 30 +0.0 + 11 +26775.0 + 21 +21677.46449 + 31 +0.0 + 0 +LINE + 5 +1A72 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21699.115125 + 30 +0.0 + 11 +26812.5 + 21 +21699.115125 + 31 +0.0 + 0 +LINE + 5 +1A73 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21720.76576 + 30 +0.0 + 11 +26775.0 + 21 +21720.76576 + 31 +0.0 + 0 +LINE + 5 +1A74 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21742.416395 + 30 +0.0 + 11 +26812.5 + 21 +21742.416395 + 31 +0.0 + 0 +LINE + 5 +1A75 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21764.06703 + 30 +0.0 + 11 +26775.0 + 21 +21764.06703 + 31 +0.0 + 0 +LINE + 5 +1A76 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21785.717665 + 30 +0.0 + 11 +26812.5 + 21 +21785.717665 + 31 +0.0 + 0 +LINE + 5 +1A77 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21807.3683 + 30 +0.0 + 11 +26775.0 + 21 +21807.3683 + 31 +0.0 + 0 +LINE + 5 +1A78 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21829.018935 + 30 +0.0 + 11 +26812.5 + 21 +21829.018935 + 31 +0.0 + 0 +LINE + 5 +1A79 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21850.66957 + 30 +0.0 + 11 +26775.0 + 21 +21850.66957 + 31 +0.0 + 0 +LINE + 5 +1A7A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21872.320205 + 30 +0.0 + 11 +26812.5 + 21 +21872.320205 + 31 +0.0 + 0 +LINE + 5 +1A7B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21893.97084 + 30 +0.0 + 11 +26775.0 + 21 +21893.97084 + 31 +0.0 + 0 +LINE + 5 +1A7C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21915.621475 + 30 +0.0 + 11 +26812.5 + 21 +21915.621475 + 31 +0.0 + 0 +LINE + 5 +1A7D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21937.27211 + 30 +0.0 + 11 +26775.0 + 21 +21937.27211 + 31 +0.0 + 0 +LINE + 5 +1A7E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +21958.922745 + 30 +0.0 + 11 +26812.5 + 21 +21958.922745 + 31 +0.0 + 0 +LINE + 5 +1A7F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +21980.57338 + 30 +0.0 + 11 +26775.0 + 21 +21980.57338 + 31 +0.0 + 0 +LINE + 5 +1A80 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +22002.224015 + 30 +0.0 + 11 +26812.5 + 21 +22002.224015 + 31 +0.0 + 0 +LINE + 5 +1A81 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +22023.87465 + 30 +0.0 + 11 +26775.0 + 21 +22023.87465 + 31 +0.0 + 0 +LINE + 5 +1A82 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +22045.525285 + 30 +0.0 + 11 +26812.5 + 21 +22045.525285 + 31 +0.0 + 0 +LINE + 5 +1A83 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +22067.17592 + 30 +0.0 + 11 +26775.0 + 21 +22067.17592 + 31 +0.0 + 0 +LINE + 5 +1A84 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +22088.826555 + 30 +0.0 + 11 +26812.5 + 21 +22088.826555 + 31 +0.0 + 0 +LINE + 5 +1A85 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +22110.47719 + 30 +0.0 + 11 +26775.0 + 21 +22110.47719 + 31 +0.0 + 0 +LINE + 5 +1A86 + 8 +0 + 62 + 0 + 10 +25287.5 + 20 +22132.127825 + 30 +0.0 + 11 +25312.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A87 + 8 +0 + 62 + 0 + 10 +25362.5 + 20 +22132.127825 + 30 +0.0 + 11 +25387.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A88 + 8 +0 + 62 + 0 + 10 +25437.5 + 20 +22132.127825 + 30 +0.0 + 11 +25462.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A89 + 8 +0 + 62 + 0 + 10 +25512.5 + 20 +22132.127825 + 30 +0.0 + 11 +25537.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A8A + 8 +0 + 62 + 0 + 10 +25587.5 + 20 +22132.127825 + 30 +0.0 + 11 +25612.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A8B + 8 +0 + 62 + 0 + 10 +25662.5 + 20 +22132.127825 + 30 +0.0 + 11 +25687.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A8C + 8 +0 + 62 + 0 + 10 +25737.5 + 20 +22132.127825 + 30 +0.0 + 11 +25762.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A8D + 8 +0 + 62 + 0 + 10 +25812.5 + 20 +22132.127825 + 30 +0.0 + 11 +25837.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A8E + 8 +0 + 62 + 0 + 10 +25887.5 + 20 +22132.127825 + 30 +0.0 + 11 +25912.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A8F + 8 +0 + 62 + 0 + 10 +25962.5 + 20 +22132.127825 + 30 +0.0 + 11 +25987.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A90 + 8 +0 + 62 + 0 + 10 +26037.5 + 20 +22132.127825 + 30 +0.0 + 11 +26062.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A91 + 8 +0 + 62 + 0 + 10 +26112.5 + 20 +22132.127825 + 30 +0.0 + 11 +26137.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A92 + 8 +0 + 62 + 0 + 10 +26187.5 + 20 +22132.127825 + 30 +0.0 + 11 +26212.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A93 + 8 +0 + 62 + 0 + 10 +26262.5 + 20 +22132.127825 + 30 +0.0 + 11 +26287.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A94 + 8 +0 + 62 + 0 + 10 +26337.5 + 20 +22132.127825 + 30 +0.0 + 11 +26362.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A95 + 8 +0 + 62 + 0 + 10 +26412.5 + 20 +22132.127825 + 30 +0.0 + 11 +26437.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A96 + 8 +0 + 62 + 0 + 10 +26487.5 + 20 +22132.127825 + 30 +0.0 + 11 +26512.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A97 + 8 +0 + 62 + 0 + 10 +26562.5 + 20 +22132.127825 + 30 +0.0 + 11 +26587.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A98 + 8 +0 + 62 + 0 + 10 +26637.5 + 20 +22132.127825 + 30 +0.0 + 11 +26662.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A99 + 8 +0 + 62 + 0 + 10 +26712.5 + 20 +22132.127825 + 30 +0.0 + 11 +26737.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A9A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +22132.127825 + 30 +0.0 + 11 +26812.5 + 21 +22132.127825 + 31 +0.0 + 0 +LINE + 5 +1A9B + 8 +0 + 62 + 0 + 10 +25250.0 + 20 +22153.77846 + 30 +0.0 + 11 +25275.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1A9C + 8 +0 + 62 + 0 + 10 +25325.0 + 20 +22153.77846 + 30 +0.0 + 11 +25350.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1A9D + 8 +0 + 62 + 0 + 10 +25400.0 + 20 +22153.77846 + 30 +0.0 + 11 +25425.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1A9E + 8 +0 + 62 + 0 + 10 +25475.0 + 20 +22153.77846 + 30 +0.0 + 11 +25500.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1A9F + 8 +0 + 62 + 0 + 10 +25550.0 + 20 +22153.77846 + 30 +0.0 + 11 +25575.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA0 + 8 +0 + 62 + 0 + 10 +25625.0 + 20 +22153.77846 + 30 +0.0 + 11 +25650.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA1 + 8 +0 + 62 + 0 + 10 +25700.0 + 20 +22153.77846 + 30 +0.0 + 11 +25725.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA2 + 8 +0 + 62 + 0 + 10 +25775.0 + 20 +22153.77846 + 30 +0.0 + 11 +25800.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA3 + 8 +0 + 62 + 0 + 10 +25850.0 + 20 +22153.77846 + 30 +0.0 + 11 +25875.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA4 + 8 +0 + 62 + 0 + 10 +25925.0 + 20 +22153.77846 + 30 +0.0 + 11 +25950.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA5 + 8 +0 + 62 + 0 + 10 +26000.0 + 20 +22153.77846 + 30 +0.0 + 11 +26025.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA6 + 8 +0 + 62 + 0 + 10 +26075.0 + 20 +22153.77846 + 30 +0.0 + 11 +26100.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA7 + 8 +0 + 62 + 0 + 10 +26150.0 + 20 +22153.77846 + 30 +0.0 + 11 +26175.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA8 + 8 +0 + 62 + 0 + 10 +26225.0 + 20 +22153.77846 + 30 +0.0 + 11 +26250.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AA9 + 8 +0 + 62 + 0 + 10 +26300.0 + 20 +22153.77846 + 30 +0.0 + 11 +26325.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AAA + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +22153.77846 + 30 +0.0 + 11 +26400.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AAB + 8 +0 + 62 + 0 + 10 +26450.0 + 20 +22153.77846 + 30 +0.0 + 11 +26475.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AAC + 8 +0 + 62 + 0 + 10 +26525.0 + 20 +22153.77846 + 30 +0.0 + 11 +26550.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AAD + 8 +0 + 62 + 0 + 10 +26600.0 + 20 +22153.77846 + 30 +0.0 + 11 +26625.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AAE + 8 +0 + 62 + 0 + 10 +26675.0 + 20 +22153.77846 + 30 +0.0 + 11 +26700.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AAF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +22153.77846 + 30 +0.0 + 11 +26775.0 + 21 +22153.77846 + 31 +0.0 + 0 +LINE + 5 +1AB0 + 8 +0 + 62 + 0 + 10 +25287.5 + 20 +22175.429095 + 30 +0.0 + 11 +25312.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB1 + 8 +0 + 62 + 0 + 10 +25362.5 + 20 +22175.429095 + 30 +0.0 + 11 +25387.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB2 + 8 +0 + 62 + 0 + 10 +25437.5 + 20 +22175.429095 + 30 +0.0 + 11 +25462.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB3 + 8 +0 + 62 + 0 + 10 +25512.5 + 20 +22175.429095 + 30 +0.0 + 11 +25537.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB4 + 8 +0 + 62 + 0 + 10 +25587.5 + 20 +22175.429095 + 30 +0.0 + 11 +25612.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB5 + 8 +0 + 62 + 0 + 10 +25662.5 + 20 +22175.429095 + 30 +0.0 + 11 +25687.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB6 + 8 +0 + 62 + 0 + 10 +25737.5 + 20 +22175.429095 + 30 +0.0 + 11 +25762.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB7 + 8 +0 + 62 + 0 + 10 +25812.5 + 20 +22175.429095 + 30 +0.0 + 11 +25837.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB8 + 8 +0 + 62 + 0 + 10 +25887.5 + 20 +22175.429095 + 30 +0.0 + 11 +25912.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AB9 + 8 +0 + 62 + 0 + 10 +25962.5 + 20 +22175.429095 + 30 +0.0 + 11 +25987.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1ABA + 8 +0 + 62 + 0 + 10 +26037.5 + 20 +22175.429095 + 30 +0.0 + 11 +26062.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1ABB + 8 +0 + 62 + 0 + 10 +26112.5 + 20 +22175.429095 + 30 +0.0 + 11 +26137.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1ABC + 8 +0 + 62 + 0 + 10 +26187.5 + 20 +22175.429095 + 30 +0.0 + 11 +26212.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1ABD + 8 +0 + 62 + 0 + 10 +26262.5 + 20 +22175.429095 + 30 +0.0 + 11 +26287.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1ABE + 8 +0 + 62 + 0 + 10 +26337.5 + 20 +22175.429095 + 30 +0.0 + 11 +26362.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1ABF + 8 +0 + 62 + 0 + 10 +26412.5 + 20 +22175.429095 + 30 +0.0 + 11 +26437.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AC0 + 8 +0 + 62 + 0 + 10 +26487.5 + 20 +22175.429095 + 30 +0.0 + 11 +26512.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AC1 + 8 +0 + 62 + 0 + 10 +26562.5 + 20 +22175.429095 + 30 +0.0 + 11 +26587.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AC2 + 8 +0 + 62 + 0 + 10 +26637.5 + 20 +22175.429095 + 30 +0.0 + 11 +26662.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AC3 + 8 +0 + 62 + 0 + 10 +26712.5 + 20 +22175.429095 + 30 +0.0 + 11 +26737.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AC4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +22175.429095 + 30 +0.0 + 11 +26812.5 + 21 +22175.429095 + 31 +0.0 + 0 +LINE + 5 +1AC5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20248.52258 + 30 +0.0 + 11 +26775.0 + 21 +20248.52258 + 31 +0.0 + 0 +LINE + 5 +1AC6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20226.871945 + 30 +0.0 + 11 +26812.5 + 21 +20226.871945 + 31 +0.0 + 0 +LINE + 5 +1AC7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20205.22131 + 30 +0.0 + 11 +26775.0 + 21 +20205.22131 + 31 +0.0 + 0 +LINE + 5 +1AC8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20183.570675 + 30 +0.0 + 11 +26812.5 + 21 +20183.570675 + 31 +0.0 + 0 +LINE + 5 +1AC9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20161.92004 + 30 +0.0 + 11 +26775.0 + 21 +20161.92004 + 31 +0.0 + 0 +LINE + 5 +1ACA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20140.269405 + 30 +0.0 + 11 +26812.5 + 21 +20140.269405 + 31 +0.0 + 0 +LINE + 5 +1ACB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20118.61877 + 30 +0.0 + 11 +26775.0 + 21 +20118.61877 + 31 +0.0 + 0 +LINE + 5 +1ACC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20096.968135 + 30 +0.0 + 11 +26812.5 + 21 +20096.968135 + 31 +0.0 + 0 +LINE + 5 +1ACD + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20075.3175 + 30 +0.0 + 11 +26775.0 + 21 +20075.3175 + 31 +0.0 + 0 +LINE + 5 +1ACE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20053.666865 + 30 +0.0 + 11 +26812.5 + 21 +20053.666865 + 31 +0.0 + 0 +LINE + 5 +1ACF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +20032.01623 + 30 +0.0 + 11 +26775.0 + 21 +20032.01623 + 31 +0.0 + 0 +LINE + 5 +1AD0 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +20010.365595 + 30 +0.0 + 11 +26812.5 + 21 +20010.365595 + 31 +0.0 + 0 +LINE + 5 +1AD1 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19988.71496 + 30 +0.0 + 11 +26775.0 + 21 +19988.71496 + 31 +0.0 + 0 +LINE + 5 +1AD2 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19967.064325 + 30 +0.0 + 11 +26812.5 + 21 +19967.064325 + 31 +0.0 + 0 +LINE + 5 +1AD3 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19945.41369 + 30 +0.0 + 11 +26775.0 + 21 +19945.41369 + 31 +0.0 + 0 +LINE + 5 +1AD4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19923.763055 + 30 +0.0 + 11 +26812.5 + 21 +19923.763055 + 31 +0.0 + 0 +LINE + 5 +1AD5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19902.11242 + 30 +0.0 + 11 +26775.0 + 21 +19902.11242 + 31 +0.0 + 0 +LINE + 5 +1AD6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19880.461785 + 30 +0.0 + 11 +26812.5 + 21 +19880.461785 + 31 +0.0 + 0 +LINE + 5 +1AD7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19858.81115 + 30 +0.0 + 11 +26775.0 + 21 +19858.81115 + 31 +0.0 + 0 +LINE + 5 +1AD8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19837.160515 + 30 +0.0 + 11 +26812.5 + 21 +19837.160515 + 31 +0.0 + 0 +LINE + 5 +1AD9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19815.50988 + 30 +0.0 + 11 +26775.0 + 21 +19815.50988 + 31 +0.0 + 0 +LINE + 5 +1ADA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19793.859245 + 30 +0.0 + 11 +26812.5 + 21 +19793.859245 + 31 +0.0 + 0 +LINE + 5 +1ADB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19772.20861 + 30 +0.0 + 11 +26775.0 + 21 +19772.20861 + 31 +0.0 + 0 +LINE + 5 +1ADC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19750.557975 + 30 +0.0 + 11 +26812.5 + 21 +19750.557975 + 31 +0.0 + 0 +LINE + 5 +1ADD + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19728.90734 + 30 +0.0 + 11 +26775.0 + 21 +19728.90734 + 31 +0.0 + 0 +LINE + 5 +1ADE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19707.256705 + 30 +0.0 + 11 +26812.5 + 21 +19707.256705 + 31 +0.0 + 0 +LINE + 5 +1ADF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19685.60607 + 30 +0.0 + 11 +26775.0 + 21 +19685.60607 + 31 +0.0 + 0 +LINE + 5 +1AE0 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19663.955435 + 30 +0.0 + 11 +26812.5 + 21 +19663.955435 + 31 +0.0 + 0 +LINE + 5 +1AE1 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19642.3048 + 30 +0.0 + 11 +26775.0 + 21 +19642.3048 + 31 +0.0 + 0 +LINE + 5 +1AE2 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19620.654165 + 30 +0.0 + 11 +26812.5 + 21 +19620.654165 + 31 +0.0 + 0 +LINE + 5 +1AE3 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19599.00353 + 30 +0.0 + 11 +26775.0 + 21 +19599.00353 + 31 +0.0 + 0 +LINE + 5 +1AE4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19577.352895 + 30 +0.0 + 11 +26812.5 + 21 +19577.352895 + 31 +0.0 + 0 +LINE + 5 +1AE5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19555.70226 + 30 +0.0 + 11 +26775.0 + 21 +19555.70226 + 31 +0.0 + 0 +LINE + 5 +1AE6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19534.051625 + 30 +0.0 + 11 +26812.5 + 21 +19534.051625 + 31 +0.0 + 0 +LINE + 5 +1AE7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19512.40099 + 30 +0.0 + 11 +26775.0 + 21 +19512.40099 + 31 +0.0 + 0 +LINE + 5 +1AE8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19490.750355 + 30 +0.0 + 11 +26812.5 + 21 +19490.750355 + 31 +0.0 + 0 +LINE + 5 +1AE9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19469.09972 + 30 +0.0 + 11 +26775.0 + 21 +19469.09972 + 31 +0.0 + 0 +LINE + 5 +1AEA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19447.449085 + 30 +0.0 + 11 +26812.5 + 21 +19447.449085 + 31 +0.0 + 0 +LINE + 5 +1AEB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19425.79845 + 30 +0.0 + 11 +26775.0 + 21 +19425.79845 + 31 +0.0 + 0 +LINE + 5 +1AEC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19404.147815 + 30 +0.0 + 11 +26812.5 + 21 +19404.147815 + 31 +0.0 + 0 +LINE + 5 +1AED + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19382.49718 + 30 +0.0 + 11 +26775.0 + 21 +19382.49718 + 31 +0.0 + 0 +LINE + 5 +1AEE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19360.846545 + 30 +0.0 + 11 +26812.5 + 21 +19360.846545 + 31 +0.0 + 0 +LINE + 5 +1AEF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19339.19591 + 30 +0.0 + 11 +26775.0 + 21 +19339.19591 + 31 +0.0 + 0 +LINE + 5 +1AF0 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19317.545275 + 30 +0.0 + 11 +26812.5 + 21 +19317.545275 + 31 +0.0 + 0 +LINE + 5 +1AF1 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19295.89464 + 30 +0.0 + 11 +26775.0 + 21 +19295.89464 + 31 +0.0 + 0 +LINE + 5 +1AF2 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19274.244005 + 30 +0.0 + 11 +26812.5 + 21 +19274.244005 + 31 +0.0 + 0 +LINE + 5 +1AF3 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19252.59337 + 30 +0.0 + 11 +26775.0 + 21 +19252.59337 + 31 +0.0 + 0 +LINE + 5 +1AF4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19230.942735 + 30 +0.0 + 11 +26812.5 + 21 +19230.942735 + 31 +0.0 + 0 +LINE + 5 +1AF5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19209.2921 + 30 +0.0 + 11 +26775.0 + 21 +19209.2921 + 31 +0.0 + 0 +LINE + 5 +1AF6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19187.641465 + 30 +0.0 + 11 +26812.5 + 21 +19187.641465 + 31 +0.0 + 0 +LINE + 5 +1AF7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19165.99083 + 30 +0.0 + 11 +26775.0 + 21 +19165.99083 + 31 +0.0 + 0 +LINE + 5 +1AF8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19144.340195 + 30 +0.0 + 11 +26812.5 + 21 +19144.340195 + 31 +0.0 + 0 +LINE + 5 +1AF9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19122.68956 + 30 +0.0 + 11 +26775.0 + 21 +19122.68956 + 31 +0.0 + 0 +LINE + 5 +1AFA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19101.038925 + 30 +0.0 + 11 +26812.5 + 21 +19101.038925 + 31 +0.0 + 0 +LINE + 5 +1AFB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19079.38829 + 30 +0.0 + 11 +26775.0 + 21 +19079.38829 + 31 +0.0 + 0 +LINE + 5 +1AFC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19057.737655 + 30 +0.0 + 11 +26812.5 + 21 +19057.737655 + 31 +0.0 + 0 +LINE + 5 +1AFD + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +19036.08702 + 30 +0.0 + 11 +26775.0 + 21 +19036.08702 + 31 +0.0 + 0 +LINE + 5 +1AFE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +19014.436385 + 30 +0.0 + 11 +26812.5 + 21 +19014.436385 + 31 +0.0 + 0 +LINE + 5 +1AFF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18992.78575 + 30 +0.0 + 11 +26775.0 + 21 +18992.78575 + 31 +0.0 + 0 +LINE + 5 +1B00 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18971.135115 + 30 +0.0 + 11 +26812.5 + 21 +18971.135115 + 31 +0.0 + 0 +LINE + 5 +1B01 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18949.48448 + 30 +0.0 + 11 +26775.0 + 21 +18949.48448 + 31 +0.0 + 0 +LINE + 5 +1B02 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18927.833845 + 30 +0.0 + 11 +26812.5 + 21 +18927.833845 + 31 +0.0 + 0 +LINE + 5 +1B03 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18906.18321 + 30 +0.0 + 11 +26775.0 + 21 +18906.18321 + 31 +0.0 + 0 +LINE + 5 +1B04 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18884.532575 + 30 +0.0 + 11 +26812.5 + 21 +18884.532575 + 31 +0.0 + 0 +LINE + 5 +1B05 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18862.88194 + 30 +0.0 + 11 +26775.0 + 21 +18862.88194 + 31 +0.0 + 0 +LINE + 5 +1B06 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18841.231305 + 30 +0.0 + 11 +26812.5 + 21 +18841.231305 + 31 +0.0 + 0 +LINE + 5 +1B07 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18819.58067 + 30 +0.0 + 11 +26775.0 + 21 +18819.58067 + 31 +0.0 + 0 +LINE + 5 +1B08 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18797.930035 + 30 +0.0 + 11 +26812.5 + 21 +18797.930035 + 31 +0.0 + 0 +LINE + 5 +1B09 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18776.2794 + 30 +0.0 + 11 +26775.0 + 21 +18776.2794 + 31 +0.0 + 0 +LINE + 5 +1B0A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18754.628765 + 30 +0.0 + 11 +26812.5 + 21 +18754.628765 + 31 +0.0 + 0 +LINE + 5 +1B0B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18732.97813 + 30 +0.0 + 11 +26775.0 + 21 +18732.97813 + 31 +0.0 + 0 +LINE + 5 +1B0C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18711.327495 + 30 +0.0 + 11 +26812.5 + 21 +18711.327495 + 31 +0.0 + 0 +LINE + 5 +1B0D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18689.67686 + 30 +0.0 + 11 +26775.0 + 21 +18689.67686 + 31 +0.0 + 0 +LINE + 5 +1B0E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18668.026225 + 30 +0.0 + 11 +26812.5 + 21 +18668.026225 + 31 +0.0 + 0 +LINE + 5 +1B0F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18646.37559 + 30 +0.0 + 11 +26775.0 + 21 +18646.37559 + 31 +0.0 + 0 +LINE + 5 +1B10 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18624.724955 + 30 +0.0 + 11 +26812.5 + 21 +18624.724955 + 31 +0.0 + 0 +LINE + 5 +1B11 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18603.07432 + 30 +0.0 + 11 +26775.0 + 21 +18603.07432 + 31 +0.0 + 0 +LINE + 5 +1B12 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18581.423685 + 30 +0.0 + 11 +26812.5 + 21 +18581.423685 + 31 +0.0 + 0 +LINE + 5 +1B13 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18559.77305 + 30 +0.0 + 11 +26775.0 + 21 +18559.77305 + 31 +0.0 + 0 +LINE + 5 +1B14 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18538.122415 + 30 +0.0 + 11 +26812.5 + 21 +18538.122415 + 31 +0.0 + 0 +LINE + 5 +1B15 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18516.47178 + 30 +0.0 + 11 +26775.0 + 21 +18516.47178 + 31 +0.0 + 0 +LINE + 5 +1B16 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18494.821145 + 30 +0.0 + 11 +26812.5 + 21 +18494.821145 + 31 +0.0 + 0 +LINE + 5 +1B17 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18473.17051 + 30 +0.0 + 11 +26775.0 + 21 +18473.17051 + 31 +0.0 + 0 +LINE + 5 +1B18 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18451.519875 + 30 +0.0 + 11 +26812.5 + 21 +18451.519875 + 31 +0.0 + 0 +LINE + 5 +1B19 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18429.86924 + 30 +0.0 + 11 +26775.0 + 21 +18429.86924 + 31 +0.0 + 0 +LINE + 5 +1B1A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18408.218605 + 30 +0.0 + 11 +26812.5 + 21 +18408.218605 + 31 +0.0 + 0 +LINE + 5 +1B1B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +18386.56797 + 30 +0.0 + 11 +26775.0 + 21 +18386.56797 + 31 +0.0 + 0 +LINE + 5 +1B1C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +18364.917335 + 30 +0.0 + 11 +26812.5 + 21 +18364.917335 + 31 +0.0 + 0 +LINE + 5 +1B1D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18871.542029 + 30 +0.0 + 11 +26812.49991 + 21 +18884.532565 + 31 +0.0 + 0 +LINE + 5 +1B1E + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +18927.833835 + 30 +0.0 + 11 +26774.99991 + 21 +18949.484471 + 31 +0.0 + 0 +LINE + 5 +1B1F + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +18992.785741 + 30 +0.0 + 11 +26740.0 + 21 +19010.106093 + 31 +0.0 + 0 +LINE + 5 +1B20 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18828.240759 + 30 +0.0 + 11 +26812.49991 + 21 +18841.231295 + 31 +0.0 + 0 +LINE + 5 +1B21 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +18884.532565 + 30 +0.0 + 11 +26774.99991 + 21 +18906.1832 + 31 +0.0 + 0 +LINE + 5 +1B22 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +18949.484471 + 30 +0.0 + 11 +26740.0 + 21 +18966.804823 + 31 +0.0 + 0 +LINE + 5 +1B23 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18784.939489 + 30 +0.0 + 11 +26812.49991 + 21 +18797.930025 + 31 +0.0 + 0 +LINE + 5 +1B24 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +18841.231295 + 30 +0.0 + 11 +26774.99991 + 21 +18862.88193 + 31 +0.0 + 0 +LINE + 5 +1B25 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +18906.1832 + 30 +0.0 + 11 +26740.0 + 21 +18923.503553 + 31 +0.0 + 0 +LINE + 5 +1B26 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18741.638219 + 30 +0.0 + 11 +26812.499911 + 21 +18754.628755 + 31 +0.0 + 0 +LINE + 5 +1B27 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18797.930025 + 30 +0.0 + 11 +26774.999911 + 21 +18819.58066 + 31 +0.0 + 0 +LINE + 5 +1B28 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18862.88193 + 30 +0.0 + 11 +26740.0 + 21 +18880.202283 + 31 +0.0 + 0 +LINE + 5 +1B29 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18698.336949 + 30 +0.0 + 11 +26812.499911 + 21 +18711.327485 + 31 +0.0 + 0 +LINE + 5 +1B2A + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18754.628755 + 30 +0.0 + 11 +26774.999911 + 21 +18776.27939 + 31 +0.0 + 0 +LINE + 5 +1B2B + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18819.58066 + 30 +0.0 + 11 +26740.0 + 21 +18836.901013 + 31 +0.0 + 0 +LINE + 5 +1B2C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18655.035679 + 30 +0.0 + 11 +26812.499911 + 21 +18668.026215 + 31 +0.0 + 0 +LINE + 5 +1B2D + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18711.327485 + 30 +0.0 + 11 +26774.999911 + 21 +18732.97812 + 31 +0.0 + 0 +LINE + 5 +1B2E + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18776.27939 + 30 +0.0 + 11 +26740.0 + 21 +18793.599743 + 31 +0.0 + 0 +LINE + 5 +1B2F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18611.734409 + 30 +0.0 + 11 +26812.499911 + 21 +18624.724944 + 31 +0.0 + 0 +LINE + 5 +1B30 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18668.026215 + 30 +0.0 + 11 +26774.999911 + 21 +18689.67685 + 31 +0.0 + 0 +LINE + 5 +1B31 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18732.97812 + 30 +0.0 + 11 +26740.0 + 21 +18750.298473 + 31 +0.0 + 0 +LINE + 5 +1B32 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18568.433139 + 30 +0.0 + 11 +26812.499911 + 21 +18581.423674 + 31 +0.0 + 0 +LINE + 5 +1B33 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18624.724944 + 30 +0.0 + 11 +26774.999911 + 21 +18646.37558 + 31 +0.0 + 0 +LINE + 5 +1B34 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18689.67685 + 30 +0.0 + 11 +26740.0 + 21 +18706.997203 + 31 +0.0 + 0 +LINE + 5 +1B35 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18525.131869 + 30 +0.0 + 11 +26812.499911 + 21 +18538.122404 + 31 +0.0 + 0 +LINE + 5 +1B36 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18581.423674 + 30 +0.0 + 11 +26774.999911 + 21 +18603.074309 + 31 +0.0 + 0 +LINE + 5 +1B37 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18646.37558 + 30 +0.0 + 11 +26740.0 + 21 +18663.695933 + 31 +0.0 + 0 +LINE + 5 +1B38 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18481.830599 + 30 +0.0 + 11 +26812.499911 + 21 +18494.821134 + 31 +0.0 + 0 +LINE + 5 +1B39 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18538.122404 + 30 +0.0 + 11 +26774.999911 + 21 +18559.773039 + 31 +0.0 + 0 +LINE + 5 +1B3A + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18603.074309 + 30 +0.0 + 11 +26740.0 + 21 +18620.394663 + 31 +0.0 + 0 +LINE + 5 +1B3B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18438.529329 + 30 +0.0 + 11 +26812.499911 + 21 +18451.519864 + 31 +0.0 + 0 +LINE + 5 +1B3C + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18494.821134 + 30 +0.0 + 11 +26774.999911 + 21 +18516.471769 + 31 +0.0 + 0 +LINE + 5 +1B3D + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18559.773039 + 30 +0.0 + 11 +26740.0 + 21 +18577.093393 + 31 +0.0 + 0 +LINE + 5 +1B3E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18395.228059 + 30 +0.0 + 11 +26812.499911 + 21 +18408.218594 + 31 +0.0 + 0 +LINE + 5 +1B3F + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18451.519864 + 30 +0.0 + 11 +26774.999911 + 21 +18473.170499 + 31 +0.0 + 0 +LINE + 5 +1B40 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18516.471769 + 30 +0.0 + 11 +26740.0 + 21 +18533.792123 + 31 +0.0 + 0 +LINE + 5 +1B41 + 8 +0 + 62 + 0 + 10 +26813.173866 + 20 +18363.75 + 30 +0.0 + 11 +26812.499911 + 21 +18364.917324 + 31 +0.0 + 0 +LINE + 5 +1B42 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18408.218594 + 30 +0.0 + 11 +26774.999911 + 21 +18429.869229 + 31 +0.0 + 0 +LINE + 5 +1B43 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18473.170499 + 30 +0.0 + 11 +26740.0 + 21 +18490.490853 + 31 +0.0 + 0 +LINE + 5 +1B44 + 8 +0 + 62 + 0 + 10 +26787.499911 + 20 +18364.917324 + 30 +0.0 + 11 +26774.999911 + 21 +18386.567959 + 31 +0.0 + 0 +LINE + 5 +1B45 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18429.869229 + 30 +0.0 + 11 +26740.0 + 21 +18447.189583 + 31 +0.0 + 0 +LINE + 5 +1B46 + 8 +0 + 62 + 0 + 10 +26749.999911 + 20 +18386.567959 + 30 +0.0 + 11 +26740.0 + 21 +18403.888313 + 31 +0.0 + 0 +LINE + 5 +1B47 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18914.843299 + 30 +0.0 + 11 +26812.49991 + 21 +18927.833835 + 31 +0.0 + 0 +LINE + 5 +1B48 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +18971.135106 + 30 +0.0 + 11 +26774.99991 + 21 +18992.785741 + 31 +0.0 + 0 +LINE + 5 +1B49 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19036.087011 + 30 +0.0 + 11 +26740.0 + 21 +19053.407363 + 31 +0.0 + 0 +LINE + 5 +1B4A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +18958.144569 + 30 +0.0 + 11 +26812.49991 + 21 +18971.135106 + 31 +0.0 + 0 +LINE + 5 +1B4B + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19014.436376 + 30 +0.0 + 11 +26774.99991 + 21 +19036.087011 + 31 +0.0 + 0 +LINE + 5 +1B4C + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19079.388281 + 30 +0.0 + 11 +26740.0 + 21 +19096.708633 + 31 +0.0 + 0 +LINE + 5 +1B4D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19001.445839 + 30 +0.0 + 11 +26812.49991 + 21 +19014.436376 + 31 +0.0 + 0 +LINE + 5 +1B4E + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19057.737646 + 30 +0.0 + 11 +26774.99991 + 21 +19079.388281 + 31 +0.0 + 0 +LINE + 5 +1B4F + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19122.689551 + 30 +0.0 + 11 +26740.0 + 21 +19140.009903 + 31 +0.0 + 0 +LINE + 5 +1B50 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19044.747109 + 30 +0.0 + 11 +26812.49991 + 21 +19057.737646 + 31 +0.0 + 0 +LINE + 5 +1B51 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19101.038916 + 30 +0.0 + 11 +26774.99991 + 21 +19122.689551 + 31 +0.0 + 0 +LINE + 5 +1B52 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19165.990821 + 30 +0.0 + 11 +26740.0 + 21 +19183.311173 + 31 +0.0 + 0 +LINE + 5 +1B53 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19088.048379 + 30 +0.0 + 11 +26812.49991 + 21 +19101.038916 + 31 +0.0 + 0 +LINE + 5 +1B54 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19144.340186 + 30 +0.0 + 11 +26774.99991 + 21 +19165.990821 + 31 +0.0 + 0 +LINE + 5 +1B55 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19209.292091 + 30 +0.0 + 11 +26740.0 + 21 +19226.612443 + 31 +0.0 + 0 +LINE + 5 +1B56 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19131.349649 + 30 +0.0 + 11 +26812.49991 + 21 +19144.340186 + 31 +0.0 + 0 +LINE + 5 +1B57 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19187.641456 + 30 +0.0 + 11 +26774.99991 + 21 +19209.292091 + 31 +0.0 + 0 +LINE + 5 +1B58 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19252.593362 + 30 +0.0 + 11 +26740.0 + 21 +19269.913713 + 31 +0.0 + 0 +LINE + 5 +1B59 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19174.650919 + 30 +0.0 + 11 +26812.49991 + 21 +19187.641456 + 31 +0.0 + 0 +LINE + 5 +1B5A + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19230.942726 + 30 +0.0 + 11 +26774.99991 + 21 +19252.593362 + 31 +0.0 + 0 +LINE + 5 +1B5B + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19295.894632 + 30 +0.0 + 11 +26740.0 + 21 +19313.214983 + 31 +0.0 + 0 +LINE + 5 +1B5C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19217.952189 + 30 +0.0 + 11 +26812.49991 + 21 +19230.942726 + 31 +0.0 + 0 +LINE + 5 +1B5D + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19274.243997 + 30 +0.0 + 11 +26774.99991 + 21 +19295.894632 + 31 +0.0 + 0 +LINE + 5 +1B5E + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19339.195902 + 30 +0.0 + 11 +26740.0 + 21 +19356.516253 + 31 +0.0 + 0 +LINE + 5 +1B5F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19261.253459 + 30 +0.0 + 11 +26812.49991 + 21 +19274.243997 + 31 +0.0 + 0 +LINE + 5 +1B60 + 8 +0 + 62 + 0 + 10 +26787.49991 + 20 +19317.545267 + 30 +0.0 + 11 +26774.99991 + 21 +19339.195902 + 31 +0.0 + 0 +LINE + 5 +1B61 + 8 +0 + 62 + 0 + 10 +26749.99991 + 20 +19382.497172 + 30 +0.0 + 11 +26740.0 + 21 +19399.817523 + 31 +0.0 + 0 +LINE + 5 +1B62 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19304.554729 + 30 +0.0 + 11 +26812.499909 + 21 +19317.545267 + 31 +0.0 + 0 +LINE + 5 +1B63 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19360.846537 + 30 +0.0 + 11 +26774.999909 + 21 +19382.497172 + 31 +0.0 + 0 +LINE + 5 +1B64 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19425.798442 + 30 +0.0 + 11 +26740.0 + 21 +19443.118793 + 31 +0.0 + 0 +LINE + 5 +1B65 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19347.855999 + 30 +0.0 + 11 +26812.499909 + 21 +19360.846537 + 31 +0.0 + 0 +LINE + 5 +1B66 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19404.147807 + 30 +0.0 + 11 +26774.999909 + 21 +19425.798442 + 31 +0.0 + 0 +LINE + 5 +1B67 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19469.099712 + 30 +0.0 + 11 +26740.0 + 21 +19486.420063 + 31 +0.0 + 0 +LINE + 5 +1B68 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19391.157269 + 30 +0.0 + 11 +26812.499909 + 21 +19404.147807 + 31 +0.0 + 0 +LINE + 5 +1B69 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19447.449077 + 30 +0.0 + 11 +26774.999909 + 21 +19469.099712 + 31 +0.0 + 0 +LINE + 5 +1B6A + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19512.400982 + 30 +0.0 + 11 +26740.0 + 21 +19529.721333 + 31 +0.0 + 0 +LINE + 5 +1B6B + 8 +0 + 62 + 0 + 10 +25247.388666 + 20 +22115.0 + 30 +0.0 + 11 +25238.75 + 21 +22129.962608 + 31 +0.0 + 0 +LINE + 5 +1B6C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19434.458539 + 30 +0.0 + 11 +26812.499909 + 21 +19447.449077 + 31 +0.0 + 0 +LINE + 5 +1B6D + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19490.750347 + 30 +0.0 + 11 +26774.999909 + 21 +19512.400982 + 31 +0.0 + 0 +LINE + 5 +1B6E + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19555.702253 + 30 +0.0 + 11 +26740.0 + 21 +19573.022603 + 31 +0.0 + 0 +LINE + 5 +1B6F + 8 +0 + 62 + 0 + 10 +25249.999909 + 20 +22153.778464 + 30 +0.0 + 11 +25238.75 + 21 +22173.263878 + 31 +0.0 + 0 +LINE + 5 +1B70 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19477.759809 + 30 +0.0 + 11 +26812.499909 + 21 +19490.750347 + 31 +0.0 + 0 +LINE + 5 +1B71 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19534.051617 + 30 +0.0 + 11 +26774.999909 + 21 +19555.702253 + 31 +0.0 + 0 +LINE + 5 +1B72 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19599.003523 + 30 +0.0 + 11 +26740.0 + 21 +19616.323873 + 31 +0.0 + 0 +LINE + 5 +1B73 + 8 +0 + 62 + 0 + 10 +25287.499909 + 20 +22132.127829 + 30 +0.0 + 11 +25274.999909 + 21 +22153.778464 + 31 +0.0 + 0 +LINE + 5 +1B74 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19521.061079 + 30 +0.0 + 11 +26812.499909 + 21 +19534.051617 + 31 +0.0 + 0 +LINE + 5 +1B75 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19577.352888 + 30 +0.0 + 11 +26774.999909 + 21 +19599.003523 + 31 +0.0 + 0 +LINE + 5 +1B76 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19642.304793 + 30 +0.0 + 11 +26740.0 + 21 +19659.625143 + 31 +0.0 + 0 +LINE + 5 +1B77 + 8 +0 + 62 + 0 + 10 +25322.388666 + 20 +22115.0 + 30 +0.0 + 11 +25312.499909 + 21 +22132.127829 + 31 +0.0 + 0 +LINE + 5 +1B78 + 8 +0 + 62 + 0 + 10 +25287.499909 + 20 +22175.429099 + 30 +0.0 + 11 +25276.200644 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1B79 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19564.362349 + 30 +0.0 + 11 +26812.499909 + 21 +19577.352888 + 31 +0.0 + 0 +LINE + 5 +1B7A + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19620.654158 + 30 +0.0 + 11 +26774.999909 + 21 +19642.304793 + 31 +0.0 + 0 +LINE + 5 +1B7B + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19685.606063 + 30 +0.0 + 11 +26740.0 + 21 +19702.926413 + 31 +0.0 + 0 +LINE + 5 +1B7C + 8 +0 + 62 + 0 + 10 +25324.999909 + 20 +22153.778464 + 30 +0.0 + 11 +25312.499909 + 21 +22175.429099 + 31 +0.0 + 0 +LINE + 5 +1B7D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19607.663619 + 30 +0.0 + 11 +26812.499909 + 21 +19620.654158 + 31 +0.0 + 0 +LINE + 5 +1B7E + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19663.955428 + 30 +0.0 + 11 +26774.999909 + 21 +19685.606063 + 31 +0.0 + 0 +LINE + 5 +1B7F + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19728.907333 + 30 +0.0 + 11 +26740.0 + 21 +19746.227683 + 31 +0.0 + 0 +LINE + 5 +1B80 + 8 +0 + 62 + 0 + 10 +25362.499909 + 20 +22132.127829 + 30 +0.0 + 11 +25349.999909 + 21 +22153.778464 + 31 +0.0 + 0 +LINE + 5 +1B81 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19650.964889 + 30 +0.0 + 11 +26812.499909 + 21 +19663.955428 + 31 +0.0 + 0 +LINE + 5 +1B82 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19707.256698 + 30 +0.0 + 11 +26774.999909 + 21 +19728.907333 + 31 +0.0 + 0 +LINE + 5 +1B83 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19772.208603 + 30 +0.0 + 11 +26740.0 + 21 +19789.528953 + 31 +0.0 + 0 +LINE + 5 +1B84 + 8 +0 + 62 + 0 + 10 +25397.388665 + 20 +22115.0 + 30 +0.0 + 11 +25387.499909 + 21 +22132.127829 + 31 +0.0 + 0 +LINE + 5 +1B85 + 8 +0 + 62 + 0 + 10 +25362.499909 + 20 +22175.429099 + 30 +0.0 + 11 +25351.200644 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1B86 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19694.266159 + 30 +0.0 + 11 +26812.499909 + 21 +19707.256698 + 31 +0.0 + 0 +LINE + 5 +1B87 + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19750.557968 + 30 +0.0 + 11 +26774.999909 + 21 +19772.208603 + 31 +0.0 + 0 +LINE + 5 +1B88 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19815.509873 + 30 +0.0 + 11 +26740.0 + 21 +19832.830223 + 31 +0.0 + 0 +LINE + 5 +1B89 + 8 +0 + 62 + 0 + 10 +25399.999909 + 20 +22153.778464 + 30 +0.0 + 11 +25387.499909 + 21 +22175.429099 + 31 +0.0 + 0 +LINE + 5 +1B8A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19737.567429 + 30 +0.0 + 11 +26812.499909 + 21 +19750.557968 + 31 +0.0 + 0 +LINE + 5 +1B8B + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19793.859238 + 30 +0.0 + 11 +26774.999909 + 21 +19815.509873 + 31 +0.0 + 0 +LINE + 5 +1B8C + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19858.811144 + 30 +0.0 + 11 +26740.0 + 21 +19876.131493 + 31 +0.0 + 0 +LINE + 5 +1B8D + 8 +0 + 62 + 0 + 10 +25437.499909 + 20 +22132.127829 + 30 +0.0 + 11 +25424.999909 + 21 +22153.778464 + 31 +0.0 + 0 +LINE + 5 +1B8E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19780.868699 + 30 +0.0 + 11 +26812.499909 + 21 +19793.859238 + 31 +0.0 + 0 +LINE + 5 +1B8F + 8 +0 + 62 + 0 + 10 +26787.499909 + 20 +19837.160508 + 30 +0.0 + 11 +26774.999909 + 21 +19858.811144 + 31 +0.0 + 0 +LINE + 5 +1B90 + 8 +0 + 62 + 0 + 10 +26749.999909 + 20 +19902.112414 + 30 +0.0 + 11 +26740.0 + 21 +19919.432763 + 31 +0.0 + 0 +LINE + 5 +1B91 + 8 +0 + 62 + 0 + 10 +25472.388665 + 20 +22115.0 + 30 +0.0 + 11 +25462.499909 + 21 +22132.127829 + 31 +0.0 + 0 +LINE + 5 +1B92 + 8 +0 + 62 + 0 + 10 +25437.499909 + 20 +22175.429099 + 30 +0.0 + 11 +25426.200643 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1B93 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19824.169969 + 30 +0.0 + 11 +26812.499908 + 21 +19837.160508 + 31 +0.0 + 0 +LINE + 5 +1B94 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +19880.461779 + 30 +0.0 + 11 +26774.999908 + 21 +19902.112414 + 31 +0.0 + 0 +LINE + 5 +1B95 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +19945.413684 + 30 +0.0 + 11 +26740.0 + 21 +19962.734033 + 31 +0.0 + 0 +LINE + 5 +1B96 + 8 +0 + 62 + 0 + 10 +25474.999908 + 20 +22153.778464 + 30 +0.0 + 11 +25462.499908 + 21 +22175.429099 + 31 +0.0 + 0 +LINE + 5 +1B97 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19867.471239 + 30 +0.0 + 11 +26812.499908 + 21 +19880.461779 + 31 +0.0 + 0 +LINE + 5 +1B98 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +19923.763049 + 30 +0.0 + 11 +26774.999908 + 21 +19945.413684 + 31 +0.0 + 0 +LINE + 5 +1B99 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +19988.714954 + 30 +0.0 + 11 +26740.0 + 21 +20006.035303 + 31 +0.0 + 0 +LINE + 5 +1B9A + 8 +0 + 62 + 0 + 10 +25512.499908 + 20 +22132.127828 + 30 +0.0 + 11 +25499.999908 + 21 +22153.778464 + 31 +0.0 + 0 +LINE + 5 +1B9B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19910.772509 + 30 +0.0 + 11 +26812.499908 + 21 +19923.763049 + 31 +0.0 + 0 +LINE + 5 +1B9C + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +19967.064319 + 30 +0.0 + 11 +26774.999908 + 21 +19988.714954 + 31 +0.0 + 0 +LINE + 5 +1B9D + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20032.016224 + 30 +0.0 + 11 +26740.0 + 21 +20049.336573 + 31 +0.0 + 0 +LINE + 5 +1B9E + 8 +0 + 62 + 0 + 10 +25547.388665 + 20 +22115.0 + 30 +0.0 + 11 +25537.499908 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1B9F + 8 +0 + 62 + 0 + 10 +25512.499908 + 20 +22175.429099 + 30 +0.0 + 11 +25501.200643 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BA0 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19954.073779 + 30 +0.0 + 11 +26812.499908 + 21 +19967.064319 + 31 +0.0 + 0 +LINE + 5 +1BA1 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20010.365589 + 30 +0.0 + 11 +26774.999908 + 21 +20032.016224 + 31 +0.0 + 0 +LINE + 5 +1BA2 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20075.317494 + 30 +0.0 + 11 +26740.0 + 21 +20092.637843 + 31 +0.0 + 0 +LINE + 5 +1BA3 + 8 +0 + 62 + 0 + 10 +25549.999908 + 20 +22153.778463 + 30 +0.0 + 11 +25537.499908 + 21 +22175.429099 + 31 +0.0 + 0 +LINE + 5 +1BA4 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +19997.375049 + 30 +0.0 + 11 +26812.499908 + 21 +20010.365589 + 31 +0.0 + 0 +LINE + 5 +1BA5 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20053.666859 + 30 +0.0 + 11 +26774.999908 + 21 +20075.317494 + 31 +0.0 + 0 +LINE + 5 +1BA6 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20118.618764 + 30 +0.0 + 11 +26740.0 + 21 +20135.939113 + 31 +0.0 + 0 +LINE + 5 +1BA7 + 8 +0 + 62 + 0 + 10 +25587.499908 + 20 +22132.127828 + 30 +0.0 + 11 +25574.999908 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BA8 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20040.676319 + 30 +0.0 + 11 +26812.499908 + 21 +20053.666859 + 31 +0.0 + 0 +LINE + 5 +1BA9 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20096.968129 + 30 +0.0 + 11 +26774.999908 + 21 +20118.618764 + 31 +0.0 + 0 +LINE + 5 +1BAA + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20161.920035 + 30 +0.0 + 11 +26740.0 + 21 +20179.240383 + 31 +0.0 + 0 +LINE + 5 +1BAB + 8 +0 + 62 + 0 + 10 +25622.388664 + 20 +22115.0 + 30 +0.0 + 11 +25612.499908 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1BAC + 8 +0 + 62 + 0 + 10 +25587.499908 + 20 +22175.429098 + 30 +0.0 + 11 +25576.200643 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BAD + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20083.977589 + 30 +0.0 + 11 +26812.499908 + 21 +20096.968129 + 31 +0.0 + 0 +LINE + 5 +1BAE + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20140.269399 + 30 +0.0 + 11 +26774.999908 + 21 +20161.920035 + 31 +0.0 + 0 +LINE + 5 +1BAF + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20205.221305 + 30 +0.0 + 11 +26740.0 + 21 +20222.541653 + 31 +0.0 + 0 +LINE + 5 +1BB0 + 8 +0 + 62 + 0 + 10 +25624.999908 + 20 +22153.778463 + 30 +0.0 + 11 +25612.499908 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BB1 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20127.278859 + 30 +0.0 + 11 +26812.499908 + 21 +20140.269399 + 31 +0.0 + 0 +LINE + 5 +1BB2 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20183.57067 + 30 +0.0 + 11 +26774.999908 + 21 +20205.221305 + 31 +0.0 + 0 +LINE + 5 +1BB3 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20248.522575 + 30 +0.0 + 11 +26740.0 + 21 +20265.842923 + 31 +0.0 + 0 +LINE + 5 +1BB4 + 8 +0 + 62 + 0 + 10 +25662.499908 + 20 +22132.127828 + 30 +0.0 + 11 +25649.999908 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BB5 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20170.580129 + 30 +0.0 + 11 +26812.499908 + 21 +20183.57067 + 31 +0.0 + 0 +LINE + 5 +1BB6 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20226.87194 + 30 +0.0 + 11 +26774.999908 + 21 +20248.522575 + 31 +0.0 + 0 +LINE + 5 +1BB7 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20291.823845 + 30 +0.0 + 11 +26740.0 + 21 +20309.144193 + 31 +0.0 + 0 +LINE + 5 +1BB8 + 8 +0 + 62 + 0 + 10 +25697.388664 + 20 +22115.0 + 30 +0.0 + 11 +25687.499908 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1BB9 + 8 +0 + 62 + 0 + 10 +25662.499908 + 20 +22175.429098 + 30 +0.0 + 11 +25651.200642 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BBA + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20213.881399 + 30 +0.0 + 11 +26812.499908 + 21 +20226.87194 + 31 +0.0 + 0 +LINE + 5 +1BBB + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20270.17321 + 30 +0.0 + 11 +26774.999908 + 21 +20291.823845 + 31 +0.0 + 0 +LINE + 5 +1BBC + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20335.125115 + 30 +0.0 + 11 +26740.0 + 21 +20352.445463 + 31 +0.0 + 0 +LINE + 5 +1BBD + 8 +0 + 62 + 0 + 10 +25699.999908 + 20 +22153.778463 + 30 +0.0 + 11 +25687.499908 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BBE + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20257.182669 + 30 +0.0 + 11 +26812.499908 + 21 +20270.17321 + 31 +0.0 + 0 +LINE + 5 +1BBF + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20313.47448 + 30 +0.0 + 11 +26774.999908 + 21 +20335.125115 + 31 +0.0 + 0 +LINE + 5 +1BC0 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20378.426385 + 30 +0.0 + 11 +26740.0 + 21 +20395.746733 + 31 +0.0 + 0 +LINE + 5 +1BC1 + 8 +0 + 62 + 0 + 10 +25737.499908 + 20 +22132.127828 + 30 +0.0 + 11 +25724.999908 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BC2 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20300.483939 + 30 +0.0 + 11 +26812.499908 + 21 +20313.47448 + 31 +0.0 + 0 +LINE + 5 +1BC3 + 8 +0 + 62 + 0 + 10 +26787.499908 + 20 +20356.77575 + 30 +0.0 + 11 +26774.999908 + 21 +20378.426385 + 31 +0.0 + 0 +LINE + 5 +1BC4 + 8 +0 + 62 + 0 + 10 +26749.999908 + 20 +20421.727655 + 30 +0.0 + 11 +26740.0 + 21 +20439.048003 + 31 +0.0 + 0 +LINE + 5 +1BC5 + 8 +0 + 62 + 0 + 10 +25772.388664 + 20 +22115.0 + 30 +0.0 + 11 +25762.499908 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1BC6 + 8 +0 + 62 + 0 + 10 +25737.499908 + 20 +22175.429098 + 30 +0.0 + 11 +25726.200642 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BC7 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20343.785209 + 30 +0.0 + 11 +26812.499907 + 21 +20356.77575 + 31 +0.0 + 0 +LINE + 5 +1BC8 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20400.07702 + 30 +0.0 + 11 +26774.999907 + 21 +20421.727655 + 31 +0.0 + 0 +LINE + 5 +1BC9 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20465.028926 + 30 +0.0 + 11 +26740.0 + 21 +20482.349273 + 31 +0.0 + 0 +LINE + 5 +1BCA + 8 +0 + 62 + 0 + 10 +25774.999907 + 20 +22153.778463 + 30 +0.0 + 11 +25762.499907 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BCB + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20387.086479 + 30 +0.0 + 11 +26812.499907 + 21 +20400.07702 + 31 +0.0 + 0 +LINE + 5 +1BCC + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20443.37829 + 30 +0.0 + 11 +26774.999907 + 21 +20465.028926 + 31 +0.0 + 0 +LINE + 5 +1BCD + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20508.330196 + 30 +0.0 + 11 +26740.0 + 21 +20525.650543 + 31 +0.0 + 0 +LINE + 5 +1BCE + 8 +0 + 62 + 0 + 10 +25812.499907 + 20 +22132.127828 + 30 +0.0 + 11 +25799.999907 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BCF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20430.387749 + 30 +0.0 + 11 +26812.499907 + 21 +20443.37829 + 31 +0.0 + 0 +LINE + 5 +1BD0 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20486.679561 + 30 +0.0 + 11 +26774.999907 + 21 +20508.330196 + 31 +0.0 + 0 +LINE + 5 +1BD1 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20551.631466 + 30 +0.0 + 11 +26740.0 + 21 +20568.951813 + 31 +0.0 + 0 +LINE + 5 +1BD2 + 8 +0 + 62 + 0 + 10 +25847.388663 + 20 +22115.0 + 30 +0.0 + 11 +25837.499907 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1BD3 + 8 +0 + 62 + 0 + 10 +25812.499907 + 20 +22175.429098 + 30 +0.0 + 11 +25801.200642 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BD4 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20473.689019 + 30 +0.0 + 11 +26812.499907 + 21 +20486.679561 + 31 +0.0 + 0 +LINE + 5 +1BD5 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20529.980831 + 30 +0.0 + 11 +26774.999907 + 21 +20551.631466 + 31 +0.0 + 0 +LINE + 5 +1BD6 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20594.932736 + 30 +0.0 + 11 +26740.0 + 21 +20612.253083 + 31 +0.0 + 0 +LINE + 5 +1BD7 + 8 +0 + 62 + 0 + 10 +25849.999907 + 20 +22153.778463 + 30 +0.0 + 11 +25837.499907 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BD8 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20516.990289 + 30 +0.0 + 11 +26812.499907 + 21 +20529.980831 + 31 +0.0 + 0 +LINE + 5 +1BD9 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20573.282101 + 30 +0.0 + 11 +26774.999907 + 21 +20594.932736 + 31 +0.0 + 0 +LINE + 5 +1BDA + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20638.234006 + 30 +0.0 + 11 +26740.0 + 21 +20655.554353 + 31 +0.0 + 0 +LINE + 5 +1BDB + 8 +0 + 62 + 0 + 10 +25887.499907 + 20 +22132.127828 + 30 +0.0 + 11 +25874.999907 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BDC + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20560.291559 + 30 +0.0 + 11 +26812.499907 + 21 +20573.282101 + 31 +0.0 + 0 +LINE + 5 +1BDD + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20616.583371 + 30 +0.0 + 11 +26774.999907 + 21 +20638.234006 + 31 +0.0 + 0 +LINE + 5 +1BDE + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20681.535276 + 30 +0.0 + 11 +26740.0 + 21 +20698.855623 + 31 +0.0 + 0 +LINE + 5 +1BDF + 8 +0 + 62 + 0 + 10 +25922.388663 + 20 +22115.0 + 30 +0.0 + 11 +25912.499907 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1BE0 + 8 +0 + 62 + 0 + 10 +25887.499907 + 20 +22175.429098 + 30 +0.0 + 11 +25876.200641 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BE1 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20603.592829 + 30 +0.0 + 11 +26812.499907 + 21 +20616.583371 + 31 +0.0 + 0 +LINE + 5 +1BE2 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20659.884641 + 30 +0.0 + 11 +26774.999907 + 21 +20681.535276 + 31 +0.0 + 0 +LINE + 5 +1BE3 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20724.836546 + 30 +0.0 + 11 +26740.0 + 21 +20742.156893 + 31 +0.0 + 0 +LINE + 5 +1BE4 + 8 +0 + 62 + 0 + 10 +25924.999907 + 20 +22153.778463 + 30 +0.0 + 11 +25912.499907 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BE5 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20646.894099 + 30 +0.0 + 11 +26812.499907 + 21 +20659.884641 + 31 +0.0 + 0 +LINE + 5 +1BE6 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20703.185911 + 30 +0.0 + 11 +26774.999907 + 21 +20724.836546 + 31 +0.0 + 0 +LINE + 5 +1BE7 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20768.137817 + 30 +0.0 + 11 +26740.0 + 21 +20785.458163 + 31 +0.0 + 0 +LINE + 5 +1BE8 + 8 +0 + 62 + 0 + 10 +25962.499907 + 20 +22132.127828 + 30 +0.0 + 11 +25949.999907 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BE9 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20690.195369 + 30 +0.0 + 11 +26812.499907 + 21 +20703.185911 + 31 +0.0 + 0 +LINE + 5 +1BEA + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20746.487181 + 30 +0.0 + 11 +26774.999907 + 21 +20768.137817 + 31 +0.0 + 0 +LINE + 5 +1BEB + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20811.439087 + 30 +0.0 + 11 +26740.0 + 21 +20828.759433 + 31 +0.0 + 0 +LINE + 5 +1BEC + 8 +0 + 62 + 0 + 10 +25997.388663 + 20 +22115.0 + 30 +0.0 + 11 +25987.499907 + 21 +22132.127828 + 31 +0.0 + 0 +LINE + 5 +1BED + 8 +0 + 62 + 0 + 10 +25962.499907 + 20 +22175.429098 + 30 +0.0 + 11 +25951.200641 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BEE + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20733.496639 + 30 +0.0 + 11 +26812.499907 + 21 +20746.487181 + 31 +0.0 + 0 +LINE + 5 +1BEF + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20789.788452 + 30 +0.0 + 11 +26774.999907 + 21 +20811.439087 + 31 +0.0 + 0 +LINE + 5 +1BF0 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20854.740357 + 30 +0.0 + 11 +26740.0 + 21 +20872.060703 + 31 +0.0 + 0 +LINE + 5 +1BF1 + 8 +0 + 62 + 0 + 10 +25999.999907 + 20 +22153.778463 + 30 +0.0 + 11 +25987.499907 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BF2 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20776.797909 + 30 +0.0 + 11 +26812.499907 + 21 +20789.788452 + 31 +0.0 + 0 +LINE + 5 +1BF3 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20833.089722 + 30 +0.0 + 11 +26774.999907 + 21 +20854.740357 + 31 +0.0 + 0 +LINE + 5 +1BF4 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20898.041627 + 30 +0.0 + 11 +26740.0 + 21 +20915.361973 + 31 +0.0 + 0 +LINE + 5 +1BF5 + 8 +0 + 62 + 0 + 10 +26037.499907 + 20 +22132.127827 + 30 +0.0 + 11 +26024.999907 + 21 +22153.778463 + 31 +0.0 + 0 +LINE + 5 +1BF6 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20820.099179 + 30 +0.0 + 11 +26812.499907 + 21 +20833.089722 + 31 +0.0 + 0 +LINE + 5 +1BF7 + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20876.390992 + 30 +0.0 + 11 +26774.999907 + 21 +20898.041627 + 31 +0.0 + 0 +LINE + 5 +1BF8 + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20941.342897 + 30 +0.0 + 11 +26740.0 + 21 +20958.663243 + 31 +0.0 + 0 +LINE + 5 +1BF9 + 8 +0 + 62 + 0 + 10 +26072.388662 + 20 +22115.0 + 30 +0.0 + 11 +26062.499907 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1BFA + 8 +0 + 62 + 0 + 10 +26037.499907 + 20 +22175.429098 + 30 +0.0 + 11 +26026.200641 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1BFB + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20863.400449 + 30 +0.0 + 11 +26812.499907 + 21 +20876.390992 + 31 +0.0 + 0 +LINE + 5 +1BFC + 8 +0 + 62 + 0 + 10 +26787.499907 + 20 +20919.692262 + 30 +0.0 + 11 +26774.999907 + 21 +20941.342897 + 31 +0.0 + 0 +LINE + 5 +1BFD + 8 +0 + 62 + 0 + 10 +26749.999907 + 20 +20984.644167 + 30 +0.0 + 11 +26740.0 + 21 +21001.964513 + 31 +0.0 + 0 +LINE + 5 +1BFE + 8 +0 + 62 + 0 + 10 +26074.999907 + 20 +22153.778462 + 30 +0.0 + 11 +26062.499907 + 21 +22175.429098 + 31 +0.0 + 0 +LINE + 5 +1BFF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20906.701719 + 30 +0.0 + 11 +26812.499906 + 21 +20919.692262 + 31 +0.0 + 0 +LINE + 5 +1C00 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +20962.993532 + 30 +0.0 + 11 +26774.999906 + 21 +20984.644167 + 31 +0.0 + 0 +LINE + 5 +1C01 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21027.945437 + 30 +0.0 + 11 +26740.0 + 21 +21045.265783 + 31 +0.0 + 0 +LINE + 5 +1C02 + 8 +0 + 62 + 0 + 10 +26112.499906 + 20 +22132.127827 + 30 +0.0 + 11 +26099.999906 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C03 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20950.002989 + 30 +0.0 + 11 +26812.499906 + 21 +20962.993532 + 31 +0.0 + 0 +LINE + 5 +1C04 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21006.294802 + 30 +0.0 + 11 +26774.999906 + 21 +21027.945437 + 31 +0.0 + 0 +LINE + 5 +1C05 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21071.246708 + 30 +0.0 + 11 +26740.0 + 21 +21088.567053 + 31 +0.0 + 0 +LINE + 5 +1C06 + 8 +0 + 62 + 0 + 10 +26147.388662 + 20 +22115.0 + 30 +0.0 + 11 +26137.499906 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1C07 + 8 +0 + 62 + 0 + 10 +26112.499906 + 20 +22175.429097 + 30 +0.0 + 11 +26101.20064 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C08 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +20993.304259 + 30 +0.0 + 11 +26812.499906 + 21 +21006.294802 + 31 +0.0 + 0 +LINE + 5 +1C09 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21049.596072 + 30 +0.0 + 11 +26774.999906 + 21 +21071.246708 + 31 +0.0 + 0 +LINE + 5 +1C0A + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21114.547978 + 30 +0.0 + 11 +26740.0 + 21 +21131.868323 + 31 +0.0 + 0 +LINE + 5 +1C0B + 8 +0 + 62 + 0 + 10 +26149.999906 + 20 +22153.778462 + 30 +0.0 + 11 +26137.499906 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C0C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21036.605529 + 30 +0.0 + 11 +26812.499906 + 21 +21049.596072 + 31 +0.0 + 0 +LINE + 5 +1C0D + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21092.897343 + 30 +0.0 + 11 +26774.999906 + 21 +21114.547978 + 31 +0.0 + 0 +LINE + 5 +1C0E + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21157.849248 + 30 +0.0 + 11 +26740.0 + 21 +21175.169593 + 31 +0.0 + 0 +LINE + 5 +1C0F + 8 +0 + 62 + 0 + 10 +26187.499906 + 20 +22132.127827 + 30 +0.0 + 11 +26174.999906 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C10 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21079.906799 + 30 +0.0 + 11 +26812.499906 + 21 +21092.897343 + 31 +0.0 + 0 +LINE + 5 +1C11 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21136.198613 + 30 +0.0 + 11 +26774.999906 + 21 +21157.849248 + 31 +0.0 + 0 +LINE + 5 +1C12 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21201.150518 + 30 +0.0 + 11 +26740.0 + 21 +21218.470863 + 31 +0.0 + 0 +LINE + 5 +1C13 + 8 +0 + 62 + 0 + 10 +26222.388662 + 20 +22115.0 + 30 +0.0 + 11 +26212.499906 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1C14 + 8 +0 + 62 + 0 + 10 +26187.499906 + 20 +22175.429097 + 30 +0.0 + 11 +26176.20064 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C15 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21123.208069 + 30 +0.0 + 11 +26812.499906 + 21 +21136.198613 + 31 +0.0 + 0 +LINE + 5 +1C16 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21179.499883 + 30 +0.0 + 11 +26774.999906 + 21 +21201.150518 + 31 +0.0 + 0 +LINE + 5 +1C17 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21244.451788 + 30 +0.0 + 11 +26740.0 + 21 +21261.772133 + 31 +0.0 + 0 +LINE + 5 +1C18 + 8 +0 + 62 + 0 + 10 +26224.999906 + 20 +22153.778462 + 30 +0.0 + 11 +26212.499906 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C19 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21166.509339 + 30 +0.0 + 11 +26812.499906 + 21 +21179.499883 + 31 +0.0 + 0 +LINE + 5 +1C1A + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21222.801153 + 30 +0.0 + 11 +26774.999906 + 21 +21244.451788 + 31 +0.0 + 0 +LINE + 5 +1C1B + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21287.753058 + 30 +0.0 + 11 +26740.0 + 21 +21305.073403 + 31 +0.0 + 0 +LINE + 5 +1C1C + 8 +0 + 62 + 0 + 10 +26262.499906 + 20 +22132.127827 + 30 +0.0 + 11 +26249.999906 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C1D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21209.810609 + 30 +0.0 + 11 +26812.499906 + 21 +21222.801153 + 31 +0.0 + 0 +LINE + 5 +1C1E + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21266.102423 + 30 +0.0 + 11 +26774.999906 + 21 +21287.753058 + 31 +0.0 + 0 +LINE + 5 +1C1F + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21331.054328 + 30 +0.0 + 11 +26740.0 + 21 +21348.374673 + 31 +0.0 + 0 +LINE + 5 +1C20 + 8 +0 + 62 + 0 + 10 +26297.388661 + 20 +22115.0 + 30 +0.0 + 11 +26287.499906 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1C21 + 8 +0 + 62 + 0 + 10 +26262.499906 + 20 +22175.429097 + 30 +0.0 + 11 +26251.20064 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C22 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21253.111879 + 30 +0.0 + 11 +26812.499906 + 21 +21266.102423 + 31 +0.0 + 0 +LINE + 5 +1C23 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21309.403693 + 30 +0.0 + 11 +26774.999906 + 21 +21331.054328 + 31 +0.0 + 0 +LINE + 5 +1C24 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21374.355599 + 30 +0.0 + 11 +26740.0 + 21 +21391.675943 + 31 +0.0 + 0 +LINE + 5 +1C25 + 8 +0 + 62 + 0 + 10 +26299.999906 + 20 +22153.778462 + 30 +0.0 + 11 +26287.499906 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C26 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21296.413149 + 30 +0.0 + 11 +26812.499906 + 21 +21309.403693 + 31 +0.0 + 0 +LINE + 5 +1C27 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21352.704963 + 30 +0.0 + 11 +26774.999906 + 21 +21374.355599 + 31 +0.0 + 0 +LINE + 5 +1C28 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21417.656869 + 30 +0.0 + 11 +26740.0 + 21 +21434.977213 + 31 +0.0 + 0 +LINE + 5 +1C29 + 8 +0 + 62 + 0 + 10 +26337.499906 + 20 +22132.127827 + 30 +0.0 + 11 +26324.999906 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C2A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21339.714419 + 30 +0.0 + 11 +26812.499906 + 21 +21352.704963 + 31 +0.0 + 0 +LINE + 5 +1C2B + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21396.006234 + 30 +0.0 + 11 +26774.999906 + 21 +21417.656869 + 31 +0.0 + 0 +LINE + 5 +1C2C + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21460.958139 + 30 +0.0 + 11 +26740.0 + 21 +21478.278483 + 31 +0.0 + 0 +LINE + 5 +1C2D + 8 +0 + 62 + 0 + 10 +26372.388661 + 20 +22115.0 + 30 +0.0 + 11 +26362.499906 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1C2E + 8 +0 + 62 + 0 + 10 +26337.499906 + 20 +22175.429097 + 30 +0.0 + 11 +26326.200639 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C2F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21383.015689 + 30 +0.0 + 11 +26812.499906 + 21 +21396.006234 + 31 +0.0 + 0 +LINE + 5 +1C30 + 8 +0 + 62 + 0 + 10 +26787.499906 + 20 +21439.307504 + 30 +0.0 + 11 +26774.999906 + 21 +21460.958139 + 31 +0.0 + 0 +LINE + 5 +1C31 + 8 +0 + 62 + 0 + 10 +26749.999906 + 20 +21504.259409 + 30 +0.0 + 11 +26740.0 + 21 +21521.579753 + 31 +0.0 + 0 +LINE + 5 +1C32 + 8 +0 + 62 + 0 + 10 +26374.999906 + 20 +22153.778462 + 30 +0.0 + 11 +26362.499906 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C33 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21426.316959 + 30 +0.0 + 11 +26812.499905 + 21 +21439.307504 + 31 +0.0 + 0 +LINE + 5 +1C34 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21482.608774 + 30 +0.0 + 11 +26774.999905 + 21 +21504.259409 + 31 +0.0 + 0 +LINE + 5 +1C35 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21547.560679 + 30 +0.0 + 11 +26740.0 + 21 +21564.881023 + 31 +0.0 + 0 +LINE + 5 +1C36 + 8 +0 + 62 + 0 + 10 +26412.499905 + 20 +22132.127827 + 30 +0.0 + 11 +26399.999905 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C37 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21469.618229 + 30 +0.0 + 11 +26812.499905 + 21 +21482.608774 + 31 +0.0 + 0 +LINE + 5 +1C38 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21525.910044 + 30 +0.0 + 11 +26774.999905 + 21 +21547.560679 + 31 +0.0 + 0 +LINE + 5 +1C39 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21590.861949 + 30 +0.0 + 11 +26740.0 + 21 +21608.182293 + 31 +0.0 + 0 +LINE + 5 +1C3A + 8 +0 + 62 + 0 + 10 +26447.388661 + 20 +22115.0 + 30 +0.0 + 11 +26437.499905 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1C3B + 8 +0 + 62 + 0 + 10 +26412.499905 + 20 +22175.429097 + 30 +0.0 + 11 +26401.200639 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C3C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21512.919499 + 30 +0.0 + 11 +26812.499905 + 21 +21525.910044 + 31 +0.0 + 0 +LINE + 5 +1C3D + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21569.211314 + 30 +0.0 + 11 +26774.999905 + 21 +21590.861949 + 31 +0.0 + 0 +LINE + 5 +1C3E + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21634.163219 + 30 +0.0 + 11 +26740.0 + 21 +21651.483563 + 31 +0.0 + 0 +LINE + 5 +1C3F + 8 +0 + 62 + 0 + 10 +26449.999905 + 20 +22153.778462 + 30 +0.0 + 11 +26437.499905 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C40 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21556.220769 + 30 +0.0 + 11 +26812.499905 + 21 +21569.211314 + 31 +0.0 + 0 +LINE + 5 +1C41 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21612.512584 + 30 +0.0 + 11 +26774.999905 + 21 +21634.163219 + 31 +0.0 + 0 +LINE + 5 +1C42 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21677.46449 + 30 +0.0 + 11 +26740.0 + 21 +21694.784833 + 31 +0.0 + 0 +LINE + 5 +1C43 + 8 +0 + 62 + 0 + 10 +26487.499905 + 20 +22132.127827 + 30 +0.0 + 11 +26474.999905 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C44 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21599.522039 + 30 +0.0 + 11 +26812.499905 + 21 +21612.512584 + 31 +0.0 + 0 +LINE + 5 +1C45 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21655.813854 + 30 +0.0 + 11 +26774.999905 + 21 +21677.46449 + 31 +0.0 + 0 +LINE + 5 +1C46 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21720.76576 + 30 +0.0 + 11 +26740.0 + 21 +21738.086103 + 31 +0.0 + 0 +LINE + 5 +1C47 + 8 +0 + 62 + 0 + 10 +26522.38866 + 20 +22115.0 + 30 +0.0 + 11 +26512.499905 + 21 +22132.127827 + 31 +0.0 + 0 +LINE + 5 +1C48 + 8 +0 + 62 + 0 + 10 +26487.499905 + 20 +22175.429097 + 30 +0.0 + 11 +26476.200639 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C49 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21642.823309 + 30 +0.0 + 11 +26812.499905 + 21 +21655.813854 + 31 +0.0 + 0 +LINE + 5 +1C4A + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21699.115125 + 30 +0.0 + 11 +26774.999905 + 21 +21720.76576 + 31 +0.0 + 0 +LINE + 5 +1C4B + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21764.06703 + 30 +0.0 + 11 +26740.0 + 21 +21781.387373 + 31 +0.0 + 0 +LINE + 5 +1C4C + 8 +0 + 62 + 0 + 10 +26524.999905 + 20 +22153.778462 + 30 +0.0 + 11 +26512.499905 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C4D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21686.124579 + 30 +0.0 + 11 +26812.499905 + 21 +21699.115125 + 31 +0.0 + 0 +LINE + 5 +1C4E + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21742.416395 + 30 +0.0 + 11 +26774.999905 + 21 +21764.06703 + 31 +0.0 + 0 +LINE + 5 +1C4F + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21807.3683 + 30 +0.0 + 11 +26740.0 + 21 +21824.688643 + 31 +0.0 + 0 +LINE + 5 +1C50 + 8 +0 + 62 + 0 + 10 +26562.499905 + 20 +22132.127826 + 30 +0.0 + 11 +26549.999905 + 21 +22153.778462 + 31 +0.0 + 0 +LINE + 5 +1C51 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21729.425849 + 30 +0.0 + 11 +26812.499905 + 21 +21742.416395 + 31 +0.0 + 0 +LINE + 5 +1C52 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21785.717665 + 30 +0.0 + 11 +26774.999905 + 21 +21807.3683 + 31 +0.0 + 0 +LINE + 5 +1C53 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21850.66957 + 30 +0.0 + 11 +26740.0 + 21 +21867.989913 + 31 +0.0 + 0 +LINE + 5 +1C54 + 8 +0 + 62 + 0 + 10 +26597.38866 + 20 +22115.0 + 30 +0.0 + 11 +26587.499905 + 21 +22132.127826 + 31 +0.0 + 0 +LINE + 5 +1C55 + 8 +0 + 62 + 0 + 10 +26562.499905 + 20 +22175.429097 + 30 +0.0 + 11 +26551.200639 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C56 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21772.727119 + 30 +0.0 + 11 +26812.499905 + 21 +21785.717665 + 31 +0.0 + 0 +LINE + 5 +1C57 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21829.018935 + 30 +0.0 + 11 +26774.999905 + 21 +21850.66957 + 31 +0.0 + 0 +LINE + 5 +1C58 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21893.97084 + 30 +0.0 + 11 +26740.0 + 21 +21911.291183 + 31 +0.0 + 0 +LINE + 5 +1C59 + 8 +0 + 62 + 0 + 10 +26599.999905 + 20 +22153.778461 + 30 +0.0 + 11 +26587.499905 + 21 +22175.429097 + 31 +0.0 + 0 +LINE + 5 +1C5A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21816.028389 + 30 +0.0 + 11 +26812.499905 + 21 +21829.018935 + 31 +0.0 + 0 +LINE + 5 +1C5B + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21872.320205 + 30 +0.0 + 11 +26774.999905 + 21 +21893.97084 + 31 +0.0 + 0 +LINE + 5 +1C5C + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21937.27211 + 30 +0.0 + 11 +26740.0 + 21 +21954.592453 + 31 +0.0 + 0 +LINE + 5 +1C5D + 8 +0 + 62 + 0 + 10 +26637.499905 + 20 +22132.127826 + 30 +0.0 + 11 +26624.999905 + 21 +22153.778461 + 31 +0.0 + 0 +LINE + 5 +1C5E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21859.329659 + 30 +0.0 + 11 +26812.499905 + 21 +21872.320205 + 31 +0.0 + 0 +LINE + 5 +1C5F + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21915.621475 + 30 +0.0 + 11 +26774.999905 + 21 +21937.27211 + 31 +0.0 + 0 +LINE + 5 +1C60 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +21980.573381 + 30 +0.0 + 11 +26740.0 + 21 +21997.893723 + 31 +0.0 + 0 +LINE + 5 +1C61 + 8 +0 + 62 + 0 + 10 +26672.38866 + 20 +22115.0 + 30 +0.0 + 11 +26662.499905 + 21 +22132.127826 + 31 +0.0 + 0 +LINE + 5 +1C62 + 8 +0 + 62 + 0 + 10 +26637.499905 + 20 +22175.429096 + 30 +0.0 + 11 +26626.200638 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C63 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21902.630929 + 30 +0.0 + 11 +26812.499905 + 21 +21915.621475 + 31 +0.0 + 0 +LINE + 5 +1C64 + 8 +0 + 62 + 0 + 10 +26787.499905 + 20 +21958.922745 + 30 +0.0 + 11 +26774.999905 + 21 +21980.573381 + 31 +0.0 + 0 +LINE + 5 +1C65 + 8 +0 + 62 + 0 + 10 +26749.999905 + 20 +22023.874651 + 30 +0.0 + 11 +26740.0 + 21 +22041.194993 + 31 +0.0 + 0 +LINE + 5 +1C66 + 8 +0 + 62 + 0 + 10 +26674.999905 + 20 +22153.778461 + 30 +0.0 + 11 +26662.499905 + 21 +22175.429096 + 31 +0.0 + 0 +LINE + 5 +1C67 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21945.932199 + 30 +0.0 + 11 +26812.499904 + 21 +21958.922745 + 31 +0.0 + 0 +LINE + 5 +1C68 + 8 +0 + 62 + 0 + 10 +26787.499904 + 20 +22002.224016 + 30 +0.0 + 11 +26774.999904 + 21 +22023.874651 + 31 +0.0 + 0 +LINE + 5 +1C69 + 8 +0 + 62 + 0 + 10 +26749.999904 + 20 +22067.175921 + 30 +0.0 + 11 +26740.0 + 21 +22084.496263 + 31 +0.0 + 0 +LINE + 5 +1C6A + 8 +0 + 62 + 0 + 10 +26712.499904 + 20 +22132.127826 + 30 +0.0 + 11 +26699.999904 + 21 +22153.778461 + 31 +0.0 + 0 +LINE + 5 +1C6B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +21989.233469 + 30 +0.0 + 11 +26812.499904 + 21 +22002.224016 + 31 +0.0 + 0 +LINE + 5 +1C6C + 8 +0 + 62 + 0 + 10 +26787.499904 + 20 +22045.525286 + 30 +0.0 + 11 +26774.999904 + 21 +22067.175921 + 31 +0.0 + 0 +LINE + 5 +1C6D + 8 +0 + 62 + 0 + 10 +26749.999904 + 20 +22110.477191 + 30 +0.0 + 11 +26737.499904 + 21 +22132.127826 + 31 +0.0 + 0 +LINE + 5 +1C6E + 8 +0 + 62 + 0 + 10 +26712.499904 + 20 +22175.429096 + 30 +0.0 + 11 +26701.200638 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C6F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +22032.534739 + 30 +0.0 + 11 +26812.499904 + 21 +22045.525286 + 31 +0.0 + 0 +LINE + 5 +1C70 + 8 +0 + 62 + 0 + 10 +26787.499904 + 20 +22088.826556 + 30 +0.0 + 11 +26774.999904 + 21 +22110.477191 + 31 +0.0 + 0 +LINE + 5 +1C71 + 8 +0 + 62 + 0 + 10 +26749.999904 + 20 +22153.778461 + 30 +0.0 + 11 +26737.499904 + 21 +22175.429096 + 31 +0.0 + 0 +LINE + 5 +1C72 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +22075.836009 + 30 +0.0 + 11 +26812.499904 + 21 +22088.826556 + 31 +0.0 + 0 +LINE + 5 +1C73 + 8 +0 + 62 + 0 + 10 +26787.499904 + 20 +22132.127826 + 30 +0.0 + 11 +26774.999904 + 21 +22153.778461 + 31 +0.0 + 0 +LINE + 5 +1C74 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +22119.137279 + 30 +0.0 + 11 +26812.499904 + 21 +22132.127826 + 31 +0.0 + 0 +LINE + 5 +1C75 + 8 +0 + 62 + 0 + 10 +26787.499904 + 20 +22175.429096 + 30 +0.0 + 11 +26776.200638 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1C76 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +22162.438549 + 30 +0.0 + 11 +26812.499904 + 21 +22175.429096 + 31 +0.0 + 0 +LINE + 5 +1C77 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21530.240337 + 30 +0.0 + 11 +26749.999952 + 21 +21547.560761 + 31 +0.0 + 0 +LINE + 5 +1C78 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21590.862032 + 30 +0.0 + 11 +26787.499952 + 21 +21612.512667 + 31 +0.0 + 0 +LINE + 5 +1C79 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21655.813937 + 30 +0.0 + 11 +26820.0 + 21 +21668.804401 + 31 +0.0 + 0 +LINE + 5 +1C7A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21573.541607 + 30 +0.0 + 11 +26749.999952 + 21 +21590.862032 + 31 +0.0 + 0 +LINE + 5 +1C7B + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21634.163302 + 30 +0.0 + 11 +26787.499952 + 21 +21655.813937 + 31 +0.0 + 0 +LINE + 5 +1C7C + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21699.115207 + 30 +0.0 + 11 +26820.0 + 21 +21712.105671 + 31 +0.0 + 0 +LINE + 5 +1C7D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21616.842877 + 30 +0.0 + 11 +26749.999952 + 21 +21634.163302 + 31 +0.0 + 0 +LINE + 5 +1C7E + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21677.464572 + 30 +0.0 + 11 +26787.499952 + 21 +21699.115207 + 31 +0.0 + 0 +LINE + 5 +1C7F + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21742.416477 + 30 +0.0 + 11 +26820.0 + 21 +21755.406941 + 31 +0.0 + 0 +LINE + 5 +1C80 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21660.144147 + 30 +0.0 + 11 +26749.999952 + 21 +21677.464572 + 31 +0.0 + 0 +LINE + 5 +1C81 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21720.765842 + 30 +0.0 + 11 +26787.499952 + 21 +21742.416477 + 31 +0.0 + 0 +LINE + 5 +1C82 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21785.717747 + 30 +0.0 + 11 +26820.0 + 21 +21798.708211 + 31 +0.0 + 0 +LINE + 5 +1C83 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21703.445417 + 30 +0.0 + 11 +26749.999952 + 21 +21720.765842 + 31 +0.0 + 0 +LINE + 5 +1C84 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21764.067112 + 30 +0.0 + 11 +26787.499952 + 21 +21785.717747 + 31 +0.0 + 0 +LINE + 5 +1C85 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21829.019018 + 30 +0.0 + 11 +26820.0 + 21 +21842.009481 + 31 +0.0 + 0 +LINE + 5 +1C86 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21746.746687 + 30 +0.0 + 11 +26749.999952 + 21 +21764.067112 + 31 +0.0 + 0 +LINE + 5 +1C87 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21807.368382 + 30 +0.0 + 11 +26787.499952 + 21 +21829.019017 + 31 +0.0 + 0 +LINE + 5 +1C88 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21872.320288 + 30 +0.0 + 11 +26820.0 + 21 +21885.310751 + 31 +0.0 + 0 +LINE + 5 +1C89 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21790.047957 + 30 +0.0 + 11 +26749.999952 + 21 +21807.368382 + 31 +0.0 + 0 +LINE + 5 +1C8A + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21850.669653 + 30 +0.0 + 11 +26787.499952 + 21 +21872.320288 + 31 +0.0 + 0 +LINE + 5 +1C8B + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21915.621558 + 30 +0.0 + 11 +26820.0 + 21 +21928.612021 + 31 +0.0 + 0 +LINE + 5 +1C8C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21833.349227 + 30 +0.0 + 11 +26749.999953 + 21 +21850.669652 + 31 +0.0 + 0 +LINE + 5 +1C8D + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +21893.970923 + 30 +0.0 + 11 +26787.499953 + 21 +21915.621558 + 31 +0.0 + 0 +LINE + 5 +1C8E + 8 +0 + 62 + 0 + 10 +26812.499953 + 20 +21958.922828 + 30 +0.0 + 11 +26820.0 + 21 +21971.913291 + 31 +0.0 + 0 +LINE + 5 +1C8F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21876.650497 + 30 +0.0 + 11 +26749.999953 + 21 +21893.970923 + 31 +0.0 + 0 +LINE + 5 +1C90 + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +21937.272193 + 30 +0.0 + 11 +26787.499953 + 21 +21958.922828 + 31 +0.0 + 0 +LINE + 5 +1C91 + 8 +0 + 62 + 0 + 10 +26812.499953 + 20 +22002.224098 + 30 +0.0 + 11 +26820.0 + 21 +22015.214561 + 31 +0.0 + 0 +LINE + 5 +1C92 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21919.951767 + 30 +0.0 + 11 +26749.999953 + 21 +21937.272193 + 31 +0.0 + 0 +LINE + 5 +1C93 + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +21980.573463 + 30 +0.0 + 11 +26787.499953 + 21 +22002.224098 + 31 +0.0 + 0 +LINE + 5 +1C94 + 8 +0 + 62 + 0 + 10 +26812.499953 + 20 +22045.525368 + 30 +0.0 + 11 +26820.0 + 21 +22058.515831 + 31 +0.0 + 0 +LINE + 5 +1C95 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21963.253037 + 30 +0.0 + 11 +26749.999953 + 21 +21980.573463 + 31 +0.0 + 0 +LINE + 5 +1C96 + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +22023.874733 + 30 +0.0 + 11 +26787.499953 + 21 +22045.525368 + 31 +0.0 + 0 +LINE + 5 +1C97 + 8 +0 + 62 + 0 + 10 +26812.499953 + 20 +22088.826638 + 30 +0.0 + 11 +26820.0 + 21 +22101.817101 + 31 +0.0 + 0 +LINE + 5 +1C98 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +22006.554307 + 30 +0.0 + 11 +26749.999953 + 21 +22023.874733 + 31 +0.0 + 0 +LINE + 5 +1C99 + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +22067.176003 + 30 +0.0 + 11 +26787.499953 + 21 +22088.826638 + 31 +0.0 + 0 +LINE + 5 +1C9A + 8 +0 + 62 + 0 + 10 +26812.499953 + 20 +22132.127908 + 30 +0.0 + 11 +26820.0 + 21 +22145.118371 + 31 +0.0 + 0 +LINE + 5 +1C9B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +22049.855577 + 30 +0.0 + 11 +26749.999953 + 21 +22067.176003 + 31 +0.0 + 0 +LINE + 5 +1C9C + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +22110.477273 + 30 +0.0 + 11 +26787.499953 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1C9D + 8 +0 + 62 + 0 + 10 +26812.499953 + 20 +22175.429179 + 30 +0.0 + 11 +26820.0 + 21 +22188.419641 + 31 +0.0 + 0 +LINE + 5 +1C9E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +22093.156847 + 30 +0.0 + 11 +26749.999953 + 21 +22110.477273 + 31 +0.0 + 0 +LINE + 5 +1C9F + 8 +0 + 62 + 0 + 10 +26774.999953 + 20 +22153.778543 + 30 +0.0 + 11 +26787.499953 + 21 +22175.429179 + 31 +0.0 + 0 +LINE + 5 +1CA0 + 8 +0 + 62 + 0 + 10 +26737.499953 + 20 +22132.127908 + 30 +0.0 + 11 +26749.999953 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CA1 + 8 +0 + 62 + 0 + 10 +26702.611151 + 20 +22115.0 + 30 +0.0 + 11 +26712.499953 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1CA2 + 8 +0 + 62 + 0 + 10 +26737.499953 + 20 +22175.429178 + 30 +0.0 + 11 +26748.799172 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CA3 + 8 +0 + 62 + 0 + 10 +26699.999953 + 20 +22153.778543 + 30 +0.0 + 11 +26712.499953 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CA4 + 8 +0 + 62 + 0 + 10 +26662.499953 + 20 +22132.127908 + 30 +0.0 + 11 +26674.999953 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CA5 + 8 +0 + 62 + 0 + 10 +26627.611151 + 20 +22115.0 + 30 +0.0 + 11 +26637.499953 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1CA6 + 8 +0 + 62 + 0 + 10 +26662.499953 + 20 +22175.429178 + 30 +0.0 + 11 +26673.799173 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CA7 + 8 +0 + 62 + 0 + 10 +26624.999954 + 20 +22153.778543 + 30 +0.0 + 11 +26637.499954 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CA8 + 8 +0 + 62 + 0 + 10 +26587.499954 + 20 +22132.127908 + 30 +0.0 + 11 +26599.999954 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CA9 + 8 +0 + 62 + 0 + 10 +26552.611151 + 20 +22115.0 + 30 +0.0 + 11 +26562.499954 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1CAA + 8 +0 + 62 + 0 + 10 +26587.499954 + 20 +22175.429178 + 30 +0.0 + 11 +26598.799173 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CAB + 8 +0 + 62 + 0 + 10 +26549.999954 + 20 +22153.778543 + 30 +0.0 + 11 +26562.499954 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CAC + 8 +0 + 62 + 0 + 10 +26512.499954 + 20 +22132.127908 + 30 +0.0 + 11 +26524.999954 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CAD + 8 +0 + 62 + 0 + 10 +26477.611152 + 20 +22115.0 + 30 +0.0 + 11 +26487.499954 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1CAE + 8 +0 + 62 + 0 + 10 +26512.499954 + 20 +22175.429178 + 30 +0.0 + 11 +26523.799173 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CAF + 8 +0 + 62 + 0 + 10 +26474.999954 + 20 +22153.778543 + 30 +0.0 + 11 +26487.499954 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CB0 + 8 +0 + 62 + 0 + 10 +26437.499954 + 20 +22132.127908 + 30 +0.0 + 11 +26449.999954 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CB1 + 8 +0 + 62 + 0 + 10 +26402.611152 + 20 +22115.0 + 30 +0.0 + 11 +26412.499954 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1CB2 + 8 +0 + 62 + 0 + 10 +26437.499954 + 20 +22175.429178 + 30 +0.0 + 11 +26448.799174 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CB3 + 8 +0 + 62 + 0 + 10 +26399.999954 + 20 +22153.778543 + 30 +0.0 + 11 +26412.499954 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CB4 + 8 +0 + 62 + 0 + 10 +26362.499954 + 20 +22132.127908 + 30 +0.0 + 11 +26374.999954 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CB5 + 8 +0 + 62 + 0 + 10 +26327.611152 + 20 +22115.0 + 30 +0.0 + 11 +26337.499954 + 21 +22132.127908 + 31 +0.0 + 0 +LINE + 5 +1CB6 + 8 +0 + 62 + 0 + 10 +26362.499954 + 20 +22175.429178 + 30 +0.0 + 11 +26373.799174 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CB7 + 8 +0 + 62 + 0 + 10 +26324.999955 + 20 +22153.778543 + 30 +0.0 + 11 +26337.499955 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CB8 + 8 +0 + 62 + 0 + 10 +26287.499955 + 20 +22132.127908 + 30 +0.0 + 11 +26299.999955 + 21 +22153.778543 + 31 +0.0 + 0 +LINE + 5 +1CB9 + 8 +0 + 62 + 0 + 10 +26252.611153 + 20 +22115.0 + 30 +0.0 + 11 +26262.499955 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CBA + 8 +0 + 62 + 0 + 10 +26287.499955 + 20 +22175.429178 + 30 +0.0 + 11 +26298.799174 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CBB + 8 +0 + 62 + 0 + 10 +26249.999955 + 20 +22153.778543 + 30 +0.0 + 11 +26262.499955 + 21 +22175.429178 + 31 +0.0 + 0 +LINE + 5 +1CBC + 8 +0 + 62 + 0 + 10 +26212.499955 + 20 +22132.127907 + 30 +0.0 + 11 +26224.999955 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CBD + 8 +0 + 62 + 0 + 10 +26177.611153 + 20 +22115.0 + 30 +0.0 + 11 +26187.499955 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CBE + 8 +0 + 62 + 0 + 10 +26212.499955 + 20 +22175.429178 + 30 +0.0 + 11 +26223.799175 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CBF + 8 +0 + 62 + 0 + 10 +26174.999955 + 20 +22153.778542 + 30 +0.0 + 11 +26187.499955 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CC0 + 8 +0 + 62 + 0 + 10 +26137.499955 + 20 +22132.127907 + 30 +0.0 + 11 +26149.999955 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CC1 + 8 +0 + 62 + 0 + 10 +26102.611153 + 20 +22115.0 + 30 +0.0 + 11 +26112.499955 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CC2 + 8 +0 + 62 + 0 + 10 +26137.499955 + 20 +22175.429177 + 30 +0.0 + 11 +26148.799175 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CC3 + 8 +0 + 62 + 0 + 10 +26099.999955 + 20 +22153.778542 + 30 +0.0 + 11 +26112.499955 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CC4 + 8 +0 + 62 + 0 + 10 +26062.499955 + 20 +22132.127907 + 30 +0.0 + 11 +26074.999955 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CC5 + 8 +0 + 62 + 0 + 10 +26027.611154 + 20 +22115.0 + 30 +0.0 + 11 +26037.499955 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CC6 + 8 +0 + 62 + 0 + 10 +26062.499955 + 20 +22175.429177 + 30 +0.0 + 11 +26073.799175 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CC7 + 8 +0 + 62 + 0 + 10 +26024.999956 + 20 +22153.778542 + 30 +0.0 + 11 +26037.499956 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CC8 + 8 +0 + 62 + 0 + 10 +25987.499956 + 20 +22132.127907 + 30 +0.0 + 11 +25999.999956 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CC9 + 8 +0 + 62 + 0 + 10 +25952.611154 + 20 +22115.0 + 30 +0.0 + 11 +25962.499956 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CCA + 8 +0 + 62 + 0 + 10 +25987.499956 + 20 +22175.429177 + 30 +0.0 + 11 +25998.799176 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CCB + 8 +0 + 62 + 0 + 10 +25949.999956 + 20 +22153.778542 + 30 +0.0 + 11 +25962.499956 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CCC + 8 +0 + 62 + 0 + 10 +25912.499956 + 20 +22132.127907 + 30 +0.0 + 11 +25924.999956 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CCD + 8 +0 + 62 + 0 + 10 +25877.611154 + 20 +22115.0 + 30 +0.0 + 11 +25887.499956 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CCE + 8 +0 + 62 + 0 + 10 +25912.499956 + 20 +22175.429177 + 30 +0.0 + 11 +25923.799176 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CCF + 8 +0 + 62 + 0 + 10 +25874.999956 + 20 +22153.778542 + 30 +0.0 + 11 +25887.499956 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CD0 + 8 +0 + 62 + 0 + 10 +25837.499956 + 20 +22132.127907 + 30 +0.0 + 11 +25849.999956 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CD1 + 8 +0 + 62 + 0 + 10 +25802.611155 + 20 +22115.0 + 30 +0.0 + 11 +25812.499956 + 21 +22132.127907 + 31 +0.0 + 0 +LINE + 5 +1CD2 + 8 +0 + 62 + 0 + 10 +25837.499956 + 20 +22175.429177 + 30 +0.0 + 11 +25848.799176 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CD3 + 8 +0 + 62 + 0 + 10 +25799.999956 + 20 +22153.778542 + 30 +0.0 + 11 +25812.499956 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CD4 + 8 +0 + 62 + 0 + 10 +25762.499956 + 20 +22132.127907 + 30 +0.0 + 11 +25774.999956 + 21 +22153.778542 + 31 +0.0 + 0 +LINE + 5 +1CD5 + 8 +0 + 62 + 0 + 10 +25727.611155 + 20 +22115.0 + 30 +0.0 + 11 +25737.499956 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CD6 + 8 +0 + 62 + 0 + 10 +25762.499956 + 20 +22175.429177 + 30 +0.0 + 11 +25773.799177 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CD7 + 8 +0 + 62 + 0 + 10 +25724.999956 + 20 +22153.778542 + 30 +0.0 + 11 +25737.499956 + 21 +22175.429177 + 31 +0.0 + 0 +LINE + 5 +1CD8 + 8 +0 + 62 + 0 + 10 +25687.499957 + 20 +22132.127906 + 30 +0.0 + 11 +25699.999957 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CD9 + 8 +0 + 62 + 0 + 10 +25652.611155 + 20 +22115.0 + 30 +0.0 + 11 +25662.499957 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CDA + 8 +0 + 62 + 0 + 10 +25687.499957 + 20 +22175.429177 + 30 +0.0 + 11 +25698.799177 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CDB + 8 +0 + 62 + 0 + 10 +25649.999957 + 20 +22153.778541 + 30 +0.0 + 11 +25662.499957 + 21 +22175.429176 + 31 +0.0 + 0 +LINE + 5 +1CDC + 8 +0 + 62 + 0 + 10 +25612.499957 + 20 +22132.127906 + 30 +0.0 + 11 +25624.999957 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CDD + 8 +0 + 62 + 0 + 10 +25577.611156 + 20 +22115.0 + 30 +0.0 + 11 +25587.499957 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CDE + 8 +0 + 62 + 0 + 10 +25612.499957 + 20 +22175.429176 + 30 +0.0 + 11 +25623.799177 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CDF + 8 +0 + 62 + 0 + 10 +25574.999957 + 20 +22153.778541 + 30 +0.0 + 11 +25587.499957 + 21 +22175.429176 + 31 +0.0 + 0 +LINE + 5 +1CE0 + 8 +0 + 62 + 0 + 10 +25537.499957 + 20 +22132.127906 + 30 +0.0 + 11 +25549.999957 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CE1 + 8 +0 + 62 + 0 + 10 +25502.611156 + 20 +22115.0 + 30 +0.0 + 11 +25512.499957 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CE2 + 8 +0 + 62 + 0 + 10 +25537.499957 + 20 +22175.429176 + 30 +0.0 + 11 +25548.799178 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CE3 + 8 +0 + 62 + 0 + 10 +25499.999957 + 20 +22153.778541 + 30 +0.0 + 11 +25512.499957 + 21 +22175.429176 + 31 +0.0 + 0 +LINE + 5 +1CE4 + 8 +0 + 62 + 0 + 10 +25462.499957 + 20 +22132.127906 + 30 +0.0 + 11 +25474.999957 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CE5 + 8 +0 + 62 + 0 + 10 +25427.611156 + 20 +22115.0 + 30 +0.0 + 11 +25437.499957 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CE6 + 8 +0 + 62 + 0 + 10 +25462.499957 + 20 +22175.429176 + 30 +0.0 + 11 +25473.799178 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CE7 + 8 +0 + 62 + 0 + 10 +25424.999957 + 20 +22153.778541 + 30 +0.0 + 11 +25437.499957 + 21 +22175.429176 + 31 +0.0 + 0 +LINE + 5 +1CE8 + 8 +0 + 62 + 0 + 10 +25387.499958 + 20 +22132.127906 + 30 +0.0 + 11 +25399.999958 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CE9 + 8 +0 + 62 + 0 + 10 +25352.611157 + 20 +22115.0 + 30 +0.0 + 11 +25362.499958 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CEA + 8 +0 + 62 + 0 + 10 +25387.499958 + 20 +22175.429176 + 30 +0.0 + 11 +25398.799178 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CEB + 8 +0 + 62 + 0 + 10 +25349.999958 + 20 +22153.778541 + 30 +0.0 + 11 +25362.499958 + 21 +22175.429176 + 31 +0.0 + 0 +LINE + 5 +1CEC + 8 +0 + 62 + 0 + 10 +25312.499958 + 20 +22132.127906 + 30 +0.0 + 11 +25324.999958 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CED + 8 +0 + 62 + 0 + 10 +25277.611157 + 20 +22115.0 + 30 +0.0 + 11 +25287.499958 + 21 +22132.127906 + 31 +0.0 + 0 +LINE + 5 +1CEE + 8 +0 + 62 + 0 + 10 +25312.499958 + 20 +22175.429176 + 30 +0.0 + 11 +25323.799179 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CEF + 8 +0 + 62 + 0 + 10 +25274.999958 + 20 +22153.778541 + 30 +0.0 + 11 +25287.499958 + 21 +22175.429176 + 31 +0.0 + 0 +LINE + 5 +1CF0 + 8 +0 + 62 + 0 + 10 +25238.75 + 20 +22134.293042 + 30 +0.0 + 11 +25249.999958 + 21 +22153.778541 + 31 +0.0 + 0 +LINE + 5 +1CF1 + 8 +0 + 62 + 0 + 10 +25238.75 + 20 +22177.594312 + 30 +0.0 + 11 +25248.799179 + 21 +22195.0 + 31 +0.0 + 0 +LINE + 5 +1CF2 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21486.939067 + 30 +0.0 + 11 +26749.999952 + 21 +21504.259491 + 31 +0.0 + 0 +LINE + 5 +1CF3 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21547.560762 + 30 +0.0 + 11 +26787.499952 + 21 +21569.211397 + 31 +0.0 + 0 +LINE + 5 +1CF4 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21612.512667 + 30 +0.0 + 11 +26820.0 + 21 +21625.503131 + 31 +0.0 + 0 +LINE + 5 +1CF5 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21443.637797 + 30 +0.0 + 11 +26749.999952 + 21 +21460.958221 + 31 +0.0 + 0 +LINE + 5 +1CF6 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21504.259491 + 30 +0.0 + 11 +26787.499952 + 21 +21525.910126 + 31 +0.0 + 0 +LINE + 5 +1CF7 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21569.211397 + 30 +0.0 + 11 +26820.0 + 21 +21582.201861 + 31 +0.0 + 0 +LINE + 5 +1CF8 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21400.336527 + 30 +0.0 + 11 +26749.999952 + 21 +21417.656951 + 31 +0.0 + 0 +LINE + 5 +1CF9 + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21460.958221 + 30 +0.0 + 11 +26787.499952 + 21 +21482.608856 + 31 +0.0 + 0 +LINE + 5 +1CFA + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21525.910127 + 30 +0.0 + 11 +26820.0 + 21 +21538.900591 + 31 +0.0 + 0 +LINE + 5 +1CFB + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21357.035257 + 30 +0.0 + 11 +26749.999952 + 21 +21374.355681 + 31 +0.0 + 0 +LINE + 5 +1CFC + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21417.656951 + 30 +0.0 + 11 +26787.499952 + 21 +21439.307586 + 31 +0.0 + 0 +LINE + 5 +1CFD + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21482.608856 + 30 +0.0 + 11 +26820.0 + 21 +21495.599321 + 31 +0.0 + 0 +LINE + 5 +1CFE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21313.733987 + 30 +0.0 + 11 +26749.999952 + 21 +21331.054411 + 31 +0.0 + 0 +LINE + 5 +1CFF + 8 +0 + 62 + 0 + 10 +26774.999952 + 20 +21374.355681 + 30 +0.0 + 11 +26787.499952 + 21 +21396.006316 + 31 +0.0 + 0 +LINE + 5 +1D00 + 8 +0 + 62 + 0 + 10 +26812.499952 + 20 +21439.307586 + 30 +0.0 + 11 +26820.0 + 21 +21452.298051 + 31 +0.0 + 0 +LINE + 5 +1D01 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21270.432717 + 30 +0.0 + 11 +26749.999951 + 21 +21287.753141 + 31 +0.0 + 0 +LINE + 5 +1D02 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21331.054411 + 30 +0.0 + 11 +26787.499951 + 21 +21352.705046 + 31 +0.0 + 0 +LINE + 5 +1D03 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21396.006316 + 30 +0.0 + 11 +26820.0 + 21 +21408.996781 + 31 +0.0 + 0 +LINE + 5 +1D04 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21227.131447 + 30 +0.0 + 11 +26749.999951 + 21 +21244.45187 + 31 +0.0 + 0 +LINE + 5 +1D05 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21287.753141 + 30 +0.0 + 11 +26787.499951 + 21 +21309.403776 + 31 +0.0 + 0 +LINE + 5 +1D06 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21352.705046 + 30 +0.0 + 11 +26820.0 + 21 +21365.695511 + 31 +0.0 + 0 +LINE + 5 +1D07 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21183.830177 + 30 +0.0 + 11 +26749.999951 + 21 +21201.1506 + 31 +0.0 + 0 +LINE + 5 +1D08 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21244.451871 + 30 +0.0 + 11 +26787.499951 + 21 +21266.102506 + 31 +0.0 + 0 +LINE + 5 +1D09 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21309.403776 + 30 +0.0 + 11 +26820.0 + 21 +21322.394241 + 31 +0.0 + 0 +LINE + 5 +1D0A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21140.528907 + 30 +0.0 + 11 +26749.999951 + 21 +21157.84933 + 31 +0.0 + 0 +LINE + 5 +1D0B + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21201.1506 + 30 +0.0 + 11 +26787.499951 + 21 +21222.801235 + 31 +0.0 + 0 +LINE + 5 +1D0C + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21266.102506 + 30 +0.0 + 11 +26820.0 + 21 +21279.092971 + 31 +0.0 + 0 +LINE + 5 +1D0D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21097.227637 + 30 +0.0 + 11 +26749.999951 + 21 +21114.54806 + 31 +0.0 + 0 +LINE + 5 +1D0E + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21157.84933 + 30 +0.0 + 11 +26787.499951 + 21 +21179.499965 + 31 +0.0 + 0 +LINE + 5 +1D0F + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21222.801236 + 30 +0.0 + 11 +26820.0 + 21 +21235.791701 + 31 +0.0 + 0 +LINE + 5 +1D10 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21053.926367 + 30 +0.0 + 11 +26749.999951 + 21 +21071.24679 + 31 +0.0 + 0 +LINE + 5 +1D11 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21114.54806 + 30 +0.0 + 11 +26787.499951 + 21 +21136.198695 + 31 +0.0 + 0 +LINE + 5 +1D12 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21179.499965 + 30 +0.0 + 11 +26820.0 + 21 +21192.490431 + 31 +0.0 + 0 +LINE + 5 +1D13 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +21010.625097 + 30 +0.0 + 11 +26749.999951 + 21 +21027.94552 + 31 +0.0 + 0 +LINE + 5 +1D14 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21071.24679 + 30 +0.0 + 11 +26787.499951 + 21 +21092.897425 + 31 +0.0 + 0 +LINE + 5 +1D15 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21136.198695 + 30 +0.0 + 11 +26820.0 + 21 +21149.189161 + 31 +0.0 + 0 +LINE + 5 +1D16 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20967.323827 + 30 +0.0 + 11 +26749.999951 + 21 +20984.64425 + 31 +0.0 + 0 +LINE + 5 +1D17 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +21027.94552 + 30 +0.0 + 11 +26787.499951 + 21 +21049.596155 + 31 +0.0 + 0 +LINE + 5 +1D18 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21092.897425 + 30 +0.0 + 11 +26820.0 + 21 +21105.887891 + 31 +0.0 + 0 +LINE + 5 +1D19 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20924.022557 + 30 +0.0 + 11 +26749.999951 + 21 +20941.342979 + 31 +0.0 + 0 +LINE + 5 +1D1A + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +20984.64425 + 30 +0.0 + 11 +26787.499951 + 21 +21006.294885 + 31 +0.0 + 0 +LINE + 5 +1D1B + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21049.596155 + 30 +0.0 + 11 +26820.0 + 21 +21062.586621 + 31 +0.0 + 0 +LINE + 5 +1D1C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20880.721287 + 30 +0.0 + 11 +26749.999951 + 21 +20898.041709 + 31 +0.0 + 0 +LINE + 5 +1D1D + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +20941.34298 + 30 +0.0 + 11 +26787.499951 + 21 +20962.993615 + 31 +0.0 + 0 +LINE + 5 +1D1E + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +21006.294885 + 30 +0.0 + 11 +26820.0 + 21 +21019.285351 + 31 +0.0 + 0 +LINE + 5 +1D1F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20837.420017 + 30 +0.0 + 11 +26749.999951 + 21 +20854.740439 + 31 +0.0 + 0 +LINE + 5 +1D20 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +20898.041709 + 30 +0.0 + 11 +26787.499951 + 21 +20919.692344 + 31 +0.0 + 0 +LINE + 5 +1D21 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +20962.993615 + 30 +0.0 + 11 +26820.0 + 21 +20975.984081 + 31 +0.0 + 0 +LINE + 5 +1D22 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20794.118747 + 30 +0.0 + 11 +26749.999951 + 21 +20811.439169 + 31 +0.0 + 0 +LINE + 5 +1D23 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +20854.740439 + 30 +0.0 + 11 +26787.499951 + 21 +20876.391074 + 31 +0.0 + 0 +LINE + 5 +1D24 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +20919.692345 + 30 +0.0 + 11 +26820.0 + 21 +20932.682811 + 31 +0.0 + 0 +LINE + 5 +1D25 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20750.817477 + 30 +0.0 + 11 +26749.999951 + 21 +20768.137899 + 31 +0.0 + 0 +LINE + 5 +1D26 + 8 +0 + 62 + 0 + 10 +26774.999951 + 20 +20811.439169 + 30 +0.0 + 11 +26787.499951 + 21 +20833.089804 + 31 +0.0 + 0 +LINE + 5 +1D27 + 8 +0 + 62 + 0 + 10 +26812.499951 + 20 +20876.391074 + 30 +0.0 + 11 +26820.0 + 21 +20889.381541 + 31 +0.0 + 0 +LINE + 5 +1D28 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20707.516207 + 30 +0.0 + 11 +26749.99995 + 21 +20724.836629 + 31 +0.0 + 0 +LINE + 5 +1D29 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20768.137899 + 30 +0.0 + 11 +26787.49995 + 21 +20789.788534 + 31 +0.0 + 0 +LINE + 5 +1D2A + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20833.089804 + 30 +0.0 + 11 +26820.0 + 21 +20846.080271 + 31 +0.0 + 0 +LINE + 5 +1D2B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20664.214937 + 30 +0.0 + 11 +26749.99995 + 21 +20681.535359 + 31 +0.0 + 0 +LINE + 5 +1D2C + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20724.836629 + 30 +0.0 + 11 +26787.49995 + 21 +20746.487264 + 31 +0.0 + 0 +LINE + 5 +1D2D + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20789.788534 + 30 +0.0 + 11 +26820.0 + 21 +20802.779001 + 31 +0.0 + 0 +LINE + 5 +1D2E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20620.913667 + 30 +0.0 + 11 +26749.99995 + 21 +20638.234088 + 31 +0.0 + 0 +LINE + 5 +1D2F + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20681.535359 + 30 +0.0 + 11 +26787.49995 + 21 +20703.185994 + 31 +0.0 + 0 +LINE + 5 +1D30 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20746.487264 + 30 +0.0 + 11 +26820.0 + 21 +20759.477731 + 31 +0.0 + 0 +LINE + 5 +1D31 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20577.612397 + 30 +0.0 + 11 +26749.99995 + 21 +20594.932818 + 31 +0.0 + 0 +LINE + 5 +1D32 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20638.234089 + 30 +0.0 + 11 +26787.49995 + 21 +20659.884724 + 31 +0.0 + 0 +LINE + 5 +1D33 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20703.185994 + 30 +0.0 + 11 +26820.0 + 21 +20716.176461 + 31 +0.0 + 0 +LINE + 5 +1D34 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20534.311127 + 30 +0.0 + 11 +26749.99995 + 21 +20551.631548 + 31 +0.0 + 0 +LINE + 5 +1D35 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20594.932818 + 30 +0.0 + 11 +26787.49995 + 21 +20616.583453 + 31 +0.0 + 0 +LINE + 5 +1D36 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20659.884724 + 30 +0.0 + 11 +26820.0 + 21 +20672.875191 + 31 +0.0 + 0 +LINE + 5 +1D37 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20491.009857 + 30 +0.0 + 11 +26749.99995 + 21 +20508.330278 + 31 +0.0 + 0 +LINE + 5 +1D38 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20551.631548 + 30 +0.0 + 11 +26787.49995 + 21 +20573.282183 + 31 +0.0 + 0 +LINE + 5 +1D39 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20616.583454 + 30 +0.0 + 11 +26820.0 + 21 +20629.573921 + 31 +0.0 + 0 +LINE + 5 +1D3A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20447.708587 + 30 +0.0 + 11 +26749.99995 + 21 +20465.029008 + 31 +0.0 + 0 +LINE + 5 +1D3B + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20508.330278 + 30 +0.0 + 11 +26787.49995 + 21 +20529.980913 + 31 +0.0 + 0 +LINE + 5 +1D3C + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20573.282183 + 30 +0.0 + 11 +26820.0 + 21 +20586.272651 + 31 +0.0 + 0 +LINE + 5 +1D3D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20404.407317 + 30 +0.0 + 11 +26749.99995 + 21 +20421.727738 + 31 +0.0 + 0 +LINE + 5 +1D3E + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20465.029008 + 30 +0.0 + 11 +26787.49995 + 21 +20486.679643 + 31 +0.0 + 0 +LINE + 5 +1D3F + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20529.980913 + 30 +0.0 + 11 +26820.0 + 21 +20542.971381 + 31 +0.0 + 0 +LINE + 5 +1D40 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20361.106047 + 30 +0.0 + 11 +26749.99995 + 21 +20378.426468 + 31 +0.0 + 0 +LINE + 5 +1D41 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20421.727738 + 30 +0.0 + 11 +26787.49995 + 21 +20443.378373 + 31 +0.0 + 0 +LINE + 5 +1D42 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20486.679643 + 30 +0.0 + 11 +26820.0 + 21 +20499.670111 + 31 +0.0 + 0 +LINE + 5 +1D43 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20317.804777 + 30 +0.0 + 11 +26749.99995 + 21 +20335.125197 + 31 +0.0 + 0 +LINE + 5 +1D44 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20378.426468 + 30 +0.0 + 11 +26787.49995 + 21 +20400.077103 + 31 +0.0 + 0 +LINE + 5 +1D45 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20443.378373 + 30 +0.0 + 11 +26820.0 + 21 +20456.368841 + 31 +0.0 + 0 +LINE + 5 +1D46 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20274.503507 + 30 +0.0 + 11 +26749.99995 + 21 +20291.823927 + 31 +0.0 + 0 +LINE + 5 +1D47 + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20335.125198 + 30 +0.0 + 11 +26787.49995 + 21 +20356.775833 + 31 +0.0 + 0 +LINE + 5 +1D48 + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20400.077103 + 30 +0.0 + 11 +26820.0 + 21 +20413.067571 + 31 +0.0 + 0 +LINE + 5 +1D49 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20231.202237 + 30 +0.0 + 11 +26749.99995 + 21 +20248.522657 + 31 +0.0 + 0 +LINE + 5 +1D4A + 8 +0 + 62 + 0 + 10 +26774.99995 + 20 +20291.823927 + 30 +0.0 + 11 +26787.49995 + 21 +20313.474562 + 31 +0.0 + 0 +LINE + 5 +1D4B + 8 +0 + 62 + 0 + 10 +26812.49995 + 20 +20356.775833 + 30 +0.0 + 11 +26820.0 + 21 +20369.766301 + 31 +0.0 + 0 +LINE + 5 +1D4C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20187.900967 + 30 +0.0 + 11 +26749.999949 + 21 +20205.221387 + 31 +0.0 + 0 +LINE + 5 +1D4D + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +20248.522657 + 30 +0.0 + 11 +26787.499949 + 21 +20270.173292 + 31 +0.0 + 0 +LINE + 5 +1D4E + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20313.474563 + 30 +0.0 + 11 +26820.0 + 21 +20326.465031 + 31 +0.0 + 0 +LINE + 5 +1D4F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20144.599697 + 30 +0.0 + 11 +26749.999949 + 21 +20161.920117 + 31 +0.0 + 0 +LINE + 5 +1D50 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +20205.221387 + 30 +0.0 + 11 +26787.499949 + 21 +20226.872022 + 31 +0.0 + 0 +LINE + 5 +1D51 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20270.173292 + 30 +0.0 + 11 +26820.0 + 21 +20283.163761 + 31 +0.0 + 0 +LINE + 5 +1D52 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20101.298427 + 30 +0.0 + 11 +26749.999949 + 21 +20118.618847 + 31 +0.0 + 0 +LINE + 5 +1D53 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +20161.920117 + 30 +0.0 + 11 +26787.499949 + 21 +20183.570752 + 31 +0.0 + 0 +LINE + 5 +1D54 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20226.872022 + 30 +0.0 + 11 +26820.0 + 21 +20239.862491 + 31 +0.0 + 0 +LINE + 5 +1D55 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20057.997157 + 30 +0.0 + 11 +26749.999949 + 21 +20075.317577 + 31 +0.0 + 0 +LINE + 5 +1D56 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +20118.618847 + 30 +0.0 + 11 +26787.499949 + 21 +20140.269482 + 31 +0.0 + 0 +LINE + 5 +1D57 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20183.570752 + 30 +0.0 + 11 +26820.0 + 21 +20196.561221 + 31 +0.0 + 0 +LINE + 5 +1D58 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +20014.695887 + 30 +0.0 + 11 +26749.999949 + 21 +20032.016306 + 31 +0.0 + 0 +LINE + 5 +1D59 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +20075.317577 + 30 +0.0 + 11 +26787.499949 + 21 +20096.968212 + 31 +0.0 + 0 +LINE + 5 +1D5A + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20140.269482 + 30 +0.0 + 11 +26820.0 + 21 +20153.259951 + 31 +0.0 + 0 +LINE + 5 +1D5B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19971.394617 + 30 +0.0 + 11 +26749.999949 + 21 +19988.715036 + 31 +0.0 + 0 +LINE + 5 +1D5C + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +20032.016307 + 30 +0.0 + 11 +26787.499949 + 21 +20053.666942 + 31 +0.0 + 0 +LINE + 5 +1D5D + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20096.968212 + 30 +0.0 + 11 +26820.0 + 21 +20109.958681 + 31 +0.0 + 0 +LINE + 5 +1D5E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19928.093347 + 30 +0.0 + 11 +26749.999949 + 21 +19945.413766 + 31 +0.0 + 0 +LINE + 5 +1D5F + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +19988.715036 + 30 +0.0 + 11 +26787.499949 + 21 +20010.365671 + 31 +0.0 + 0 +LINE + 5 +1D60 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20053.666942 + 30 +0.0 + 11 +26820.0 + 21 +20066.657411 + 31 +0.0 + 0 +LINE + 5 +1D61 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19884.792077 + 30 +0.0 + 11 +26749.999949 + 21 +19902.112496 + 31 +0.0 + 0 +LINE + 5 +1D62 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +19945.413766 + 30 +0.0 + 11 +26787.499949 + 21 +19967.064401 + 31 +0.0 + 0 +LINE + 5 +1D63 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +20010.365672 + 30 +0.0 + 11 +26820.0 + 21 +20023.356141 + 31 +0.0 + 0 +LINE + 5 +1D64 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19841.490807 + 30 +0.0 + 11 +26749.999949 + 21 +19858.811226 + 31 +0.0 + 0 +LINE + 5 +1D65 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +19902.112496 + 30 +0.0 + 11 +26787.499949 + 21 +19923.763131 + 31 +0.0 + 0 +LINE + 5 +1D66 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +19967.064401 + 30 +0.0 + 11 +26820.0 + 21 +19980.054871 + 31 +0.0 + 0 +LINE + 5 +1D67 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19798.189537 + 30 +0.0 + 11 +26749.999949 + 21 +19815.509956 + 31 +0.0 + 0 +LINE + 5 +1D68 + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +19858.811226 + 30 +0.0 + 11 +26787.499949 + 21 +19880.461861 + 31 +0.0 + 0 +LINE + 5 +1D69 + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +19923.763131 + 30 +0.0 + 11 +26820.0 + 21 +19936.753601 + 31 +0.0 + 0 +LINE + 5 +1D6A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19754.888267 + 30 +0.0 + 11 +26749.999949 + 21 +19772.208686 + 31 +0.0 + 0 +LINE + 5 +1D6B + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +19815.509956 + 30 +0.0 + 11 +26787.499949 + 21 +19837.160591 + 31 +0.0 + 0 +LINE + 5 +1D6C + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +19880.461861 + 30 +0.0 + 11 +26820.0 + 21 +19893.452331 + 31 +0.0 + 0 +LINE + 5 +1D6D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19711.586997 + 30 +0.0 + 11 +26749.999949 + 21 +19728.907415 + 31 +0.0 + 0 +LINE + 5 +1D6E + 8 +0 + 62 + 0 + 10 +26774.999949 + 20 +19772.208686 + 30 +0.0 + 11 +26787.499949 + 21 +19793.859321 + 31 +0.0 + 0 +LINE + 5 +1D6F + 8 +0 + 62 + 0 + 10 +26812.499949 + 20 +19837.160591 + 30 +0.0 + 11 +26820.0 + 21 +19850.151061 + 31 +0.0 + 0 +LINE + 5 +1D70 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19668.285727 + 30 +0.0 + 11 +26749.999948 + 21 +19685.606145 + 31 +0.0 + 0 +LINE + 5 +1D71 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19728.907416 + 30 +0.0 + 11 +26787.499948 + 21 +19750.558051 + 31 +0.0 + 0 +LINE + 5 +1D72 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19793.859321 + 30 +0.0 + 11 +26820.0 + 21 +19806.849791 + 31 +0.0 + 0 +LINE + 5 +1D73 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19624.984457 + 30 +0.0 + 11 +26749.999948 + 21 +19642.304875 + 31 +0.0 + 0 +LINE + 5 +1D74 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19685.606145 + 30 +0.0 + 11 +26787.499948 + 21 +19707.25678 + 31 +0.0 + 0 +LINE + 5 +1D75 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19750.558051 + 30 +0.0 + 11 +26820.0 + 21 +19763.548521 + 31 +0.0 + 0 +LINE + 5 +1D76 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19581.683187 + 30 +0.0 + 11 +26749.999948 + 21 +19599.003605 + 31 +0.0 + 0 +LINE + 5 +1D77 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19642.304875 + 30 +0.0 + 11 +26787.499948 + 21 +19663.95551 + 31 +0.0 + 0 +LINE + 5 +1D78 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19707.256781 + 30 +0.0 + 11 +26820.0 + 21 +19720.247251 + 31 +0.0 + 0 +LINE + 5 +1D79 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19538.381917 + 30 +0.0 + 11 +26749.999948 + 21 +19555.702335 + 31 +0.0 + 0 +LINE + 5 +1D7A + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19599.003605 + 30 +0.0 + 11 +26787.499948 + 21 +19620.65424 + 31 +0.0 + 0 +LINE + 5 +1D7B + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19663.95551 + 30 +0.0 + 11 +26820.0 + 21 +19676.945981 + 31 +0.0 + 0 +LINE + 5 +1D7C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19495.080647 + 30 +0.0 + 11 +26749.999948 + 21 +19512.401065 + 31 +0.0 + 0 +LINE + 5 +1D7D + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19555.702335 + 30 +0.0 + 11 +26787.499948 + 21 +19577.35297 + 31 +0.0 + 0 +LINE + 5 +1D7E + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19620.65424 + 30 +0.0 + 11 +26820.0 + 21 +19633.644711 + 31 +0.0 + 0 +LINE + 5 +1D7F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19451.779377 + 30 +0.0 + 11 +26749.999948 + 21 +19469.099795 + 31 +0.0 + 0 +LINE + 5 +1D80 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19512.401065 + 30 +0.0 + 11 +26787.499948 + 21 +19534.0517 + 31 +0.0 + 0 +LINE + 5 +1D81 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19577.35297 + 30 +0.0 + 11 +26820.0 + 21 +19590.343441 + 31 +0.0 + 0 +LINE + 5 +1D82 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19408.478107 + 30 +0.0 + 11 +26749.999948 + 21 +19425.798525 + 31 +0.0 + 0 +LINE + 5 +1D83 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19469.099795 + 30 +0.0 + 11 +26787.499948 + 21 +19490.75043 + 31 +0.0 + 0 +LINE + 5 +1D84 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19534.0517 + 30 +0.0 + 11 +26820.0 + 21 +19547.042171 + 31 +0.0 + 0 +LINE + 5 +1D85 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19365.176837 + 30 +0.0 + 11 +26749.999948 + 21 +19382.497254 + 31 +0.0 + 0 +LINE + 5 +1D86 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19425.798525 + 30 +0.0 + 11 +26787.499948 + 21 +19447.44916 + 31 +0.0 + 0 +LINE + 5 +1D87 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19490.75043 + 30 +0.0 + 11 +26820.0 + 21 +19503.740901 + 31 +0.0 + 0 +LINE + 5 +1D88 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19321.875567 + 30 +0.0 + 11 +26749.999948 + 21 +19339.195984 + 31 +0.0 + 0 +LINE + 5 +1D89 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19382.497254 + 30 +0.0 + 11 +26787.499948 + 21 +19404.14789 + 31 +0.0 + 0 +LINE + 5 +1D8A + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19447.44916 + 30 +0.0 + 11 +26820.0 + 21 +19460.439631 + 31 +0.0 + 0 +LINE + 5 +1D8B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19278.574297 + 30 +0.0 + 11 +26749.999948 + 21 +19295.894714 + 31 +0.0 + 0 +LINE + 5 +1D8C + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19339.195984 + 30 +0.0 + 11 +26787.499948 + 21 +19360.846619 + 31 +0.0 + 0 +LINE + 5 +1D8D + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19404.14789 + 30 +0.0 + 11 +26820.0 + 21 +19417.138361 + 31 +0.0 + 0 +LINE + 5 +1D8E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19235.273027 + 30 +0.0 + 11 +26749.999948 + 21 +19252.593444 + 31 +0.0 + 0 +LINE + 5 +1D8F + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19295.894714 + 30 +0.0 + 11 +26787.499948 + 21 +19317.545349 + 31 +0.0 + 0 +LINE + 5 +1D90 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19360.846619 + 30 +0.0 + 11 +26820.0 + 21 +19373.837091 + 31 +0.0 + 0 +LINE + 5 +1D91 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19191.971757 + 30 +0.0 + 11 +26749.999948 + 21 +19209.292174 + 31 +0.0 + 0 +LINE + 5 +1D92 + 8 +0 + 62 + 0 + 10 +26774.999948 + 20 +19252.593444 + 30 +0.0 + 11 +26787.499948 + 21 +19274.244079 + 31 +0.0 + 0 +LINE + 5 +1D93 + 8 +0 + 62 + 0 + 10 +26812.499948 + 20 +19317.545349 + 30 +0.0 + 11 +26820.0 + 21 +19330.535821 + 31 +0.0 + 0 +LINE + 5 +1D94 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19148.670487 + 30 +0.0 + 11 +26749.999947 + 21 +19165.990904 + 31 +0.0 + 0 +LINE + 5 +1D95 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +19209.292174 + 30 +0.0 + 11 +26787.499947 + 21 +19230.942809 + 31 +0.0 + 0 +LINE + 5 +1D96 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19274.244079 + 30 +0.0 + 11 +26820.0 + 21 +19287.234551 + 31 +0.0 + 0 +LINE + 5 +1D97 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19105.369217 + 30 +0.0 + 11 +26749.999947 + 21 +19122.689634 + 31 +0.0 + 0 +LINE + 5 +1D98 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +19165.990904 + 30 +0.0 + 11 +26787.499947 + 21 +19187.641539 + 31 +0.0 + 0 +LINE + 5 +1D99 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19230.942809 + 30 +0.0 + 11 +26820.0 + 21 +19243.933281 + 31 +0.0 + 0 +LINE + 5 +1D9A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19062.067947 + 30 +0.0 + 11 +26749.999947 + 21 +19079.388363 + 31 +0.0 + 0 +LINE + 5 +1D9B + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +19122.689634 + 30 +0.0 + 11 +26787.499947 + 21 +19144.340269 + 31 +0.0 + 0 +LINE + 5 +1D9C + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19187.641539 + 30 +0.0 + 11 +26820.0 + 21 +19200.632011 + 31 +0.0 + 0 +LINE + 5 +1D9D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +19018.766677 + 30 +0.0 + 11 +26749.999947 + 21 +19036.087093 + 31 +0.0 + 0 +LINE + 5 +1D9E + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +19079.388363 + 30 +0.0 + 11 +26787.499947 + 21 +19101.038999 + 31 +0.0 + 0 +LINE + 5 +1D9F + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19144.340269 + 30 +0.0 + 11 +26820.0 + 21 +19157.330741 + 31 +0.0 + 0 +LINE + 5 +1DA0 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18975.465407 + 30 +0.0 + 11 +26749.999947 + 21 +18992.785823 + 31 +0.0 + 0 +LINE + 5 +1DA1 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +19036.087093 + 30 +0.0 + 11 +26787.499947 + 21 +19057.737728 + 31 +0.0 + 0 +LINE + 5 +1DA2 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19101.038999 + 30 +0.0 + 11 +26820.0 + 21 +19114.029471 + 31 +0.0 + 0 +LINE + 5 +1DA3 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18932.164137 + 30 +0.0 + 11 +26749.999947 + 21 +18949.484553 + 31 +0.0 + 0 +LINE + 5 +1DA4 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18992.785823 + 30 +0.0 + 11 +26787.499947 + 21 +19014.436458 + 31 +0.0 + 0 +LINE + 5 +1DA5 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19057.737728 + 30 +0.0 + 11 +26820.0 + 21 +19070.728201 + 31 +0.0 + 0 +LINE + 5 +1DA6 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18888.862867 + 30 +0.0 + 11 +26749.999947 + 21 +18906.183283 + 31 +0.0 + 0 +LINE + 5 +1DA7 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18949.484553 + 30 +0.0 + 11 +26787.499947 + 21 +18971.135188 + 31 +0.0 + 0 +LINE + 5 +1DA8 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +19014.436458 + 30 +0.0 + 11 +26820.0 + 21 +19027.426931 + 31 +0.0 + 0 +LINE + 5 +1DA9 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18845.561597 + 30 +0.0 + 11 +26749.999947 + 21 +18862.882013 + 31 +0.0 + 0 +LINE + 5 +1DAA + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18906.183283 + 30 +0.0 + 11 +26787.499947 + 21 +18927.833918 + 31 +0.0 + 0 +LINE + 5 +1DAB + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +18971.135188 + 30 +0.0 + 11 +26820.0 + 21 +18984.125661 + 31 +0.0 + 0 +LINE + 5 +1DAC + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18802.260327 + 30 +0.0 + 11 +26749.999947 + 21 +18819.580743 + 31 +0.0 + 0 +LINE + 5 +1DAD + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18862.882013 + 30 +0.0 + 11 +26787.499947 + 21 +18884.532648 + 31 +0.0 + 0 +LINE + 5 +1DAE + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +18927.833918 + 30 +0.0 + 11 +26820.0 + 21 +18940.824391 + 31 +0.0 + 0 +LINE + 5 +1DAF + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18758.959057 + 30 +0.0 + 11 +26749.999947 + 21 +18776.279472 + 31 +0.0 + 0 +LINE + 5 +1DB0 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18819.580743 + 30 +0.0 + 11 +26787.499947 + 21 +18841.231378 + 31 +0.0 + 0 +LINE + 5 +1DB1 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +18884.532648 + 30 +0.0 + 11 +26820.0 + 21 +18897.523121 + 31 +0.0 + 0 +LINE + 5 +1DB2 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18715.657787 + 30 +0.0 + 11 +26749.999947 + 21 +18732.978202 + 31 +0.0 + 0 +LINE + 5 +1DB3 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18776.279472 + 30 +0.0 + 11 +26787.499947 + 21 +18797.930108 + 31 +0.0 + 0 +LINE + 5 +1DB4 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +18841.231378 + 30 +0.0 + 11 +26820.0 + 21 +18854.221851 + 31 +0.0 + 0 +LINE + 5 +1DB5 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18672.356517 + 30 +0.0 + 11 +26749.999947 + 21 +18689.676932 + 31 +0.0 + 0 +LINE + 5 +1DB6 + 8 +0 + 62 + 0 + 10 +26774.999947 + 20 +18732.978202 + 30 +0.0 + 11 +26787.499947 + 21 +18754.628837 + 31 +0.0 + 0 +LINE + 5 +1DB7 + 8 +0 + 62 + 0 + 10 +26812.499947 + 20 +18797.930108 + 30 +0.0 + 11 +26820.0 + 21 +18810.920581 + 31 +0.0 + 0 +LINE + 5 +1DB8 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18629.055247 + 30 +0.0 + 11 +26749.999946 + 21 +18646.375662 + 31 +0.0 + 0 +LINE + 5 +1DB9 + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18689.676932 + 30 +0.0 + 11 +26787.499946 + 21 +18711.327567 + 31 +0.0 + 0 +LINE + 5 +1DBA + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18754.628837 + 30 +0.0 + 11 +26820.0 + 21 +18767.619311 + 31 +0.0 + 0 +LINE + 5 +1DBB + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18585.753977 + 30 +0.0 + 11 +26749.999946 + 21 +18603.074392 + 31 +0.0 + 0 +LINE + 5 +1DBC + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18646.375662 + 30 +0.0 + 11 +26787.499946 + 21 +18668.026297 + 31 +0.0 + 0 +LINE + 5 +1DBD + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18711.327567 + 30 +0.0 + 11 +26820.0 + 21 +18724.318041 + 31 +0.0 + 0 +LINE + 5 +1DBE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18542.452707 + 30 +0.0 + 11 +26749.999946 + 21 +18559.773122 + 31 +0.0 + 0 +LINE + 5 +1DBF + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18603.074392 + 30 +0.0 + 11 +26787.499946 + 21 +18624.725027 + 31 +0.0 + 0 +LINE + 5 +1DC0 + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18668.026297 + 30 +0.0 + 11 +26820.0 + 21 +18681.016771 + 31 +0.0 + 0 +LINE + 5 +1DC1 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18499.151437 + 30 +0.0 + 11 +26749.999946 + 21 +18516.471852 + 31 +0.0 + 0 +LINE + 5 +1DC2 + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18559.773122 + 30 +0.0 + 11 +26787.499946 + 21 +18581.423757 + 31 +0.0 + 0 +LINE + 5 +1DC3 + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18624.725027 + 30 +0.0 + 11 +26820.0 + 21 +18637.715501 + 31 +0.0 + 0 +LINE + 5 +1DC4 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18455.850167 + 30 +0.0 + 11 +26749.999946 + 21 +18473.170581 + 31 +0.0 + 0 +LINE + 5 +1DC5 + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18516.471852 + 30 +0.0 + 11 +26787.499946 + 21 +18538.122487 + 31 +0.0 + 0 +LINE + 5 +1DC6 + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18581.423757 + 30 +0.0 + 11 +26820.0 + 21 +18594.414231 + 31 +0.0 + 0 +LINE + 5 +1DC7 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18412.548897 + 30 +0.0 + 11 +26749.999946 + 21 +18429.869311 + 31 +0.0 + 0 +LINE + 5 +1DC8 + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18473.170581 + 30 +0.0 + 11 +26787.499946 + 21 +18494.821217 + 31 +0.0 + 0 +LINE + 5 +1DC9 + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18538.122487 + 30 +0.0 + 11 +26820.0 + 21 +18551.112961 + 31 +0.0 + 0 +LINE + 5 +1DCA + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +18369.247627 + 30 +0.0 + 11 +26749.999946 + 21 +18386.568041 + 31 +0.0 + 0 +LINE + 5 +1DCB + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18429.869311 + 30 +0.0 + 11 +26787.499946 + 21 +18451.519946 + 31 +0.0 + 0 +LINE + 5 +1DCC + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18494.821217 + 30 +0.0 + 11 +26820.0 + 21 +18507.811691 + 31 +0.0 + 0 +LINE + 5 +1DCD + 8 +0 + 62 + 0 + 10 +26774.999946 + 20 +18386.568041 + 30 +0.0 + 11 +26787.499946 + 21 +18408.218676 + 31 +0.0 + 0 +LINE + 5 +1DCE + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18451.519946 + 30 +0.0 + 11 +26820.0 + 21 +18464.510421 + 31 +0.0 + 0 +LINE + 5 +1DCF + 8 +0 + 62 + 0 + 10 +26786.825944 + 20 +18363.75 + 30 +0.0 + 11 +26787.499946 + 21 +18364.917406 + 31 +0.0 + 0 +LINE + 5 +1DD0 + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18408.218676 + 30 +0.0 + 11 +26820.0 + 21 +18421.209151 + 31 +0.0 + 0 +LINE + 5 +1DD1 + 8 +0 + 62 + 0 + 10 +26812.499946 + 20 +18364.917406 + 30 +0.0 + 11 +26820.0 + 21 +18377.907881 + 31 +0.0 + 0 +ENDBLK + 5 +1DD2 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X50 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X50 + 1 + + 0 +LINE + 5 +1DD4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14857.514465 + 30 +0.0 + 11 +26812.5 + 21 +14857.514465 + 31 +0.0 + 0 +LINE + 5 +1DD5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14879.1651 + 30 +0.0 + 11 +26775.0 + 21 +14879.1651 + 31 +0.0 + 0 +LINE + 5 +1DD6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14900.815735 + 30 +0.0 + 11 +26812.5 + 21 +14900.815735 + 31 +0.0 + 0 +LINE + 5 +1DD7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14922.46637 + 30 +0.0 + 11 +26775.0 + 21 +14922.46637 + 31 +0.0 + 0 +LINE + 5 +1DD8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14944.117005 + 30 +0.0 + 11 +26812.5 + 21 +14944.117005 + 31 +0.0 + 0 +LINE + 5 +1DD9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14965.76764 + 30 +0.0 + 11 +26775.0 + 21 +14965.76764 + 31 +0.0 + 0 +LINE + 5 +1DDA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14987.418275 + 30 +0.0 + 11 +26812.5 + 21 +14987.418275 + 31 +0.0 + 0 +LINE + 5 +1DDB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15009.06891 + 30 +0.0 + 11 +26775.0 + 21 +15009.06891 + 31 +0.0 + 0 +LINE + 5 +1DDC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15030.719545 + 30 +0.0 + 11 +26812.5 + 21 +15030.719545 + 31 +0.0 + 0 +LINE + 5 +1DDD + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15052.37018 + 30 +0.0 + 11 +26775.0 + 21 +15052.37018 + 31 +0.0 + 0 +LINE + 5 +1DDE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15074.020815 + 30 +0.0 + 11 +26812.5 + 21 +15074.020815 + 31 +0.0 + 0 +LINE + 5 +1DDF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15095.67145 + 30 +0.0 + 11 +26775.0 + 21 +15095.67145 + 31 +0.0 + 0 +LINE + 5 +1DE0 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15117.322085 + 30 +0.0 + 11 +26812.5 + 21 +15117.322085 + 31 +0.0 + 0 +LINE + 5 +1DE1 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15138.97272 + 30 +0.0 + 11 +26775.0 + 21 +15138.97272 + 31 +0.0 + 0 +LINE + 5 +1DE2 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15160.623355 + 30 +0.0 + 11 +26812.5 + 21 +15160.623355 + 31 +0.0 + 0 +LINE + 5 +1DE3 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15182.27399 + 30 +0.0 + 11 +26775.0 + 21 +15182.27399 + 31 +0.0 + 0 +LINE + 5 +1DE4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15203.924625 + 30 +0.0 + 11 +26812.5 + 21 +15203.924625 + 31 +0.0 + 0 +LINE + 5 +1DE5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15225.57526 + 30 +0.0 + 11 +26775.0 + 21 +15225.57526 + 31 +0.0 + 0 +LINE + 5 +1DE6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15247.225895 + 30 +0.0 + 11 +26812.5 + 21 +15247.225895 + 31 +0.0 + 0 +LINE + 5 +1DE7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15268.87653 + 30 +0.0 + 11 +26775.0 + 21 +15268.87653 + 31 +0.0 + 0 +LINE + 5 +1DE8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15290.527165 + 30 +0.0 + 11 +26812.5 + 21 +15290.527165 + 31 +0.0 + 0 +LINE + 5 +1DE9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15312.1778 + 30 +0.0 + 11 +26775.0 + 21 +15312.1778 + 31 +0.0 + 0 +LINE + 5 +1DEA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15333.828435 + 30 +0.0 + 11 +26812.5 + 21 +15333.828435 + 31 +0.0 + 0 +LINE + 5 +1DEB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15355.47907 + 30 +0.0 + 11 +26775.0 + 21 +15355.47907 + 31 +0.0 + 0 +LINE + 5 +1DEC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15377.129705 + 30 +0.0 + 11 +26812.5 + 21 +15377.129705 + 31 +0.0 + 0 +LINE + 5 +1DED + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15398.78034 + 30 +0.0 + 11 +26775.0 + 21 +15398.78034 + 31 +0.0 + 0 +LINE + 5 +1DEE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15420.430975 + 30 +0.0 + 11 +26812.5 + 21 +15420.430975 + 31 +0.0 + 0 +LINE + 5 +1DEF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15442.08161 + 30 +0.0 + 11 +26775.0 + 21 +15442.08161 + 31 +0.0 + 0 +LINE + 5 +1DF0 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15463.732245 + 30 +0.0 + 11 +26812.5 + 21 +15463.732245 + 31 +0.0 + 0 +LINE + 5 +1DF1 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15485.38288 + 30 +0.0 + 11 +26775.0 + 21 +15485.38288 + 31 +0.0 + 0 +LINE + 5 +1DF2 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15507.033515 + 30 +0.0 + 11 +26812.5 + 21 +15507.033515 + 31 +0.0 + 0 +LINE + 5 +1DF3 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15528.68415 + 30 +0.0 + 11 +26775.0 + 21 +15528.68415 + 31 +0.0 + 0 +LINE + 5 +1DF4 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15550.334785 + 30 +0.0 + 11 +26812.5 + 21 +15550.334785 + 31 +0.0 + 0 +LINE + 5 +1DF5 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15571.98542 + 30 +0.0 + 11 +26775.0 + 21 +15571.98542 + 31 +0.0 + 0 +LINE + 5 +1DF6 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15593.636055 + 30 +0.0 + 11 +26812.5 + 21 +15593.636055 + 31 +0.0 + 0 +LINE + 5 +1DF7 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15615.28669 + 30 +0.0 + 11 +26775.0 + 21 +15615.28669 + 31 +0.0 + 0 +LINE + 5 +1DF8 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15636.937325 + 30 +0.0 + 11 +26812.5 + 21 +15636.937325 + 31 +0.0 + 0 +LINE + 5 +1DF9 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15658.58796 + 30 +0.0 + 11 +26775.0 + 21 +15658.58796 + 31 +0.0 + 0 +LINE + 5 +1DFA + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15680.238595 + 30 +0.0 + 11 +26812.5 + 21 +15680.238595 + 31 +0.0 + 0 +LINE + 5 +1DFB + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15701.88923 + 30 +0.0 + 11 +26775.0 + 21 +15701.88923 + 31 +0.0 + 0 +LINE + 5 +1DFC + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15723.539865 + 30 +0.0 + 11 +26812.5 + 21 +15723.539865 + 31 +0.0 + 0 +LINE + 5 +1DFD + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15745.1905 + 30 +0.0 + 11 +26775.0 + 21 +15745.1905 + 31 +0.0 + 0 +LINE + 5 +1DFE + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15766.841135 + 30 +0.0 + 11 +26812.5 + 21 +15766.841135 + 31 +0.0 + 0 +LINE + 5 +1DFF + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15788.49177 + 30 +0.0 + 11 +26775.0 + 21 +15788.49177 + 31 +0.0 + 0 +LINE + 5 +1E00 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15810.142405 + 30 +0.0 + 11 +26812.5 + 21 +15810.142405 + 31 +0.0 + 0 +LINE + 5 +1E01 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15831.79304 + 30 +0.0 + 11 +26775.0 + 21 +15831.79304 + 31 +0.0 + 0 +LINE + 5 +1E02 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15853.443675 + 30 +0.0 + 11 +26812.5 + 21 +15853.443675 + 31 +0.0 + 0 +LINE + 5 +1E03 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15875.09431 + 30 +0.0 + 11 +26775.0 + 21 +15875.09431 + 31 +0.0 + 0 +LINE + 5 +1E04 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15896.744945 + 30 +0.0 + 11 +26812.5 + 21 +15896.744945 + 31 +0.0 + 0 +LINE + 5 +1E05 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15918.39558 + 30 +0.0 + 11 +26775.0 + 21 +15918.39558 + 31 +0.0 + 0 +LINE + 5 +1E06 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15940.046215 + 30 +0.0 + 11 +26812.5 + 21 +15940.046215 + 31 +0.0 + 0 +LINE + 5 +1E07 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +15961.69685 + 30 +0.0 + 11 +26775.0 + 21 +15961.69685 + 31 +0.0 + 0 +LINE + 5 +1E08 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +15983.347485 + 30 +0.0 + 11 +26812.5 + 21 +15983.347485 + 31 +0.0 + 0 +LINE + 5 +1E09 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16004.99812 + 30 +0.0 + 11 +26775.0 + 21 +16004.99812 + 31 +0.0 + 0 +LINE + 5 +1E0A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16026.648755 + 30 +0.0 + 11 +26812.5 + 21 +16026.648755 + 31 +0.0 + 0 +LINE + 5 +1E0B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16048.29939 + 30 +0.0 + 11 +26775.0 + 21 +16048.29939 + 31 +0.0 + 0 +LINE + 5 +1E0C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16069.950025 + 30 +0.0 + 11 +26812.5 + 21 +16069.950025 + 31 +0.0 + 0 +LINE + 5 +1E0D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16091.60066 + 30 +0.0 + 11 +26775.0 + 21 +16091.60066 + 31 +0.0 + 0 +LINE + 5 +1E0E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16113.251295 + 30 +0.0 + 11 +26812.5 + 21 +16113.251295 + 31 +0.0 + 0 +LINE + 5 +1E0F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16134.90193 + 30 +0.0 + 11 +26775.0 + 21 +16134.90193 + 31 +0.0 + 0 +LINE + 5 +1E10 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16156.552565 + 30 +0.0 + 11 +26812.5 + 21 +16156.552565 + 31 +0.0 + 0 +LINE + 5 +1E11 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16178.2032 + 30 +0.0 + 11 +26775.0 + 21 +16178.2032 + 31 +0.0 + 0 +LINE + 5 +1E12 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16199.853835 + 30 +0.0 + 11 +26812.5 + 21 +16199.853835 + 31 +0.0 + 0 +LINE + 5 +1E13 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16221.50447 + 30 +0.0 + 11 +26775.0 + 21 +16221.50447 + 31 +0.0 + 0 +LINE + 5 +1E14 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16243.155105 + 30 +0.0 + 11 +26812.5 + 21 +16243.155105 + 31 +0.0 + 0 +LINE + 5 +1E15 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16264.80574 + 30 +0.0 + 11 +26775.0 + 21 +16264.80574 + 31 +0.0 + 0 +LINE + 5 +1E16 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16286.456375 + 30 +0.0 + 11 +26812.5 + 21 +16286.456375 + 31 +0.0 + 0 +LINE + 5 +1E17 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16308.10701 + 30 +0.0 + 11 +26775.0 + 21 +16308.10701 + 31 +0.0 + 0 +LINE + 5 +1E18 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16329.757645 + 30 +0.0 + 11 +26812.5 + 21 +16329.757645 + 31 +0.0 + 0 +LINE + 5 +1E19 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16351.40828 + 30 +0.0 + 11 +26775.0 + 21 +16351.40828 + 31 +0.0 + 0 +LINE + 5 +1E1A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16373.058915 + 30 +0.0 + 11 +26812.5 + 21 +16373.058915 + 31 +0.0 + 0 +LINE + 5 +1E1B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16394.70955 + 30 +0.0 + 11 +26775.0 + 21 +16394.70955 + 31 +0.0 + 0 +LINE + 5 +1E1C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16416.360185 + 30 +0.0 + 11 +26812.5 + 21 +16416.360185 + 31 +0.0 + 0 +LINE + 5 +1E1D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16438.01082 + 30 +0.0 + 11 +26775.0 + 21 +16438.01082 + 31 +0.0 + 0 +LINE + 5 +1E1E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16459.661455 + 30 +0.0 + 11 +26812.5 + 21 +16459.661455 + 31 +0.0 + 0 +LINE + 5 +1E1F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16481.31209 + 30 +0.0 + 11 +26775.0 + 21 +16481.31209 + 31 +0.0 + 0 +LINE + 5 +1E20 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16502.962725 + 30 +0.0 + 11 +26812.5 + 21 +16502.962725 + 31 +0.0 + 0 +LINE + 5 +1E21 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16524.61336 + 30 +0.0 + 11 +26775.0 + 21 +16524.61336 + 31 +0.0 + 0 +LINE + 5 +1E22 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16546.263995 + 30 +0.0 + 11 +26812.5 + 21 +16546.263995 + 31 +0.0 + 0 +LINE + 5 +1E23 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16567.91463 + 30 +0.0 + 11 +26775.0 + 21 +16567.91463 + 31 +0.0 + 0 +LINE + 5 +1E24 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16589.565265 + 30 +0.0 + 11 +26812.5 + 21 +16589.565265 + 31 +0.0 + 0 +LINE + 5 +1E25 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16611.2159 + 30 +0.0 + 11 +26775.0 + 21 +16611.2159 + 31 +0.0 + 0 +LINE + 5 +1E26 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16632.866535 + 30 +0.0 + 11 +26812.5 + 21 +16632.866535 + 31 +0.0 + 0 +LINE + 5 +1E27 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16654.51717 + 30 +0.0 + 11 +26775.0 + 21 +16654.51717 + 31 +0.0 + 0 +LINE + 5 +1E28 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16676.167805 + 30 +0.0 + 11 +26812.5 + 21 +16676.167805 + 31 +0.0 + 0 +LINE + 5 +1E29 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16697.81844 + 30 +0.0 + 11 +26775.0 + 21 +16697.81844 + 31 +0.0 + 0 +LINE + 5 +1E2A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16719.469075 + 30 +0.0 + 11 +26812.5 + 21 +16719.469075 + 31 +0.0 + 0 +LINE + 5 +1E2B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16741.11971 + 30 +0.0 + 11 +26775.0 + 21 +16741.11971 + 31 +0.0 + 0 +LINE + 5 +1E2C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16762.770345 + 30 +0.0 + 11 +26812.5 + 21 +16762.770345 + 31 +0.0 + 0 +LINE + 5 +1E2D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16784.42098 + 30 +0.0 + 11 +26775.0 + 21 +16784.42098 + 31 +0.0 + 0 +LINE + 5 +1E2E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16806.071615 + 30 +0.0 + 11 +26812.5 + 21 +16806.071615 + 31 +0.0 + 0 +LINE + 5 +1E2F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16827.72225 + 30 +0.0 + 11 +26775.0 + 21 +16827.72225 + 31 +0.0 + 0 +LINE + 5 +1E30 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16849.372885 + 30 +0.0 + 11 +26812.5 + 21 +16849.372885 + 31 +0.0 + 0 +LINE + 5 +1E31 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16871.02352 + 30 +0.0 + 11 +26775.0 + 21 +16871.02352 + 31 +0.0 + 0 +LINE + 5 +1E32 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16892.674155 + 30 +0.0 + 11 +26812.5 + 21 +16892.674155 + 31 +0.0 + 0 +LINE + 5 +1E33 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16914.32479 + 30 +0.0 + 11 +26775.0 + 21 +16914.32479 + 31 +0.0 + 0 +LINE + 5 +1E34 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16935.975425 + 30 +0.0 + 11 +26812.5 + 21 +16935.975425 + 31 +0.0 + 0 +LINE + 5 +1E35 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +16957.62606 + 30 +0.0 + 11 +26775.0 + 21 +16957.62606 + 31 +0.0 + 0 +LINE + 5 +1E36 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +16979.276695 + 30 +0.0 + 11 +26812.5 + 21 +16979.276695 + 31 +0.0 + 0 +LINE + 5 +1E37 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17000.92733 + 30 +0.0 + 11 +26775.0 + 21 +17000.92733 + 31 +0.0 + 0 +LINE + 5 +1E38 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17022.577965 + 30 +0.0 + 11 +26812.5 + 21 +17022.577965 + 31 +0.0 + 0 +LINE + 5 +1E39 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17044.2286 + 30 +0.0 + 11 +26775.0 + 21 +17044.2286 + 31 +0.0 + 0 +LINE + 5 +1E3A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17065.879235 + 30 +0.0 + 11 +26812.5 + 21 +17065.879235 + 31 +0.0 + 0 +LINE + 5 +1E3B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17087.52987 + 30 +0.0 + 11 +26775.0 + 21 +17087.52987 + 31 +0.0 + 0 +LINE + 5 +1E3C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17109.180505 + 30 +0.0 + 11 +26812.5 + 21 +17109.180505 + 31 +0.0 + 0 +LINE + 5 +1E3D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17130.83114 + 30 +0.0 + 11 +26775.0 + 21 +17130.83114 + 31 +0.0 + 0 +LINE + 5 +1E3E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17152.481775 + 30 +0.0 + 11 +26812.5 + 21 +17152.481775 + 31 +0.0 + 0 +LINE + 5 +1E3F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17174.13241 + 30 +0.0 + 11 +26775.0 + 21 +17174.13241 + 31 +0.0 + 0 +LINE + 5 +1E40 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17195.783045 + 30 +0.0 + 11 +26812.5 + 21 +17195.783045 + 31 +0.0 + 0 +LINE + 5 +1E41 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17217.43368 + 30 +0.0 + 11 +26775.0 + 21 +17217.43368 + 31 +0.0 + 0 +LINE + 5 +1E42 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17239.084315 + 30 +0.0 + 11 +26812.5 + 21 +17239.084315 + 31 +0.0 + 0 +LINE + 5 +1E43 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17260.73495 + 30 +0.0 + 11 +26775.0 + 21 +17260.73495 + 31 +0.0 + 0 +LINE + 5 +1E44 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17282.385585 + 30 +0.0 + 11 +26812.5 + 21 +17282.385585 + 31 +0.0 + 0 +LINE + 5 +1E45 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17304.03622 + 30 +0.0 + 11 +26775.0 + 21 +17304.03622 + 31 +0.0 + 0 +LINE + 5 +1E46 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17325.686855 + 30 +0.0 + 11 +26812.5 + 21 +17325.686855 + 31 +0.0 + 0 +LINE + 5 +1E47 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17347.33749 + 30 +0.0 + 11 +26775.0 + 21 +17347.33749 + 31 +0.0 + 0 +LINE + 5 +1E48 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17368.988125 + 30 +0.0 + 11 +26812.5 + 21 +17368.988125 + 31 +0.0 + 0 +LINE + 5 +1E49 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17390.63876 + 30 +0.0 + 11 +26775.0 + 21 +17390.63876 + 31 +0.0 + 0 +LINE + 5 +1E4A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17412.289395 + 30 +0.0 + 11 +26812.5 + 21 +17412.289395 + 31 +0.0 + 0 +LINE + 5 +1E4B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17433.94003 + 30 +0.0 + 11 +26775.0 + 21 +17433.94003 + 31 +0.0 + 0 +LINE + 5 +1E4C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17455.590665 + 30 +0.0 + 11 +26812.5 + 21 +17455.590665 + 31 +0.0 + 0 +LINE + 5 +1E4D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17477.2413 + 30 +0.0 + 11 +26775.0 + 21 +17477.2413 + 31 +0.0 + 0 +LINE + 5 +1E4E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17498.891935 + 30 +0.0 + 11 +26812.5 + 21 +17498.891935 + 31 +0.0 + 0 +LINE + 5 +1E4F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17520.54257 + 30 +0.0 + 11 +26775.0 + 21 +17520.54257 + 31 +0.0 + 0 +LINE + 5 +1E50 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17542.193205 + 30 +0.0 + 11 +26812.5 + 21 +17542.193205 + 31 +0.0 + 0 +LINE + 5 +1E51 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17563.84384 + 30 +0.0 + 11 +26775.0 + 21 +17563.84384 + 31 +0.0 + 0 +LINE + 5 +1E52 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17585.494475 + 30 +0.0 + 11 +26812.5 + 21 +17585.494475 + 31 +0.0 + 0 +LINE + 5 +1E53 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17607.14511 + 30 +0.0 + 11 +26775.0 + 21 +17607.14511 + 31 +0.0 + 0 +LINE + 5 +1E54 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17628.795745 + 30 +0.0 + 11 +26812.5 + 21 +17628.795745 + 31 +0.0 + 0 +LINE + 5 +1E55 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17650.44638 + 30 +0.0 + 11 +26775.0 + 21 +17650.44638 + 31 +0.0 + 0 +LINE + 5 +1E56 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17672.097015 + 30 +0.0 + 11 +26812.5 + 21 +17672.097015 + 31 +0.0 + 0 +LINE + 5 +1E57 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17693.74765 + 30 +0.0 + 11 +26775.0 + 21 +17693.74765 + 31 +0.0 + 0 +LINE + 5 +1E58 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +17715.398285 + 30 +0.0 + 11 +26812.5 + 21 +17715.398285 + 31 +0.0 + 0 +LINE + 5 +1E59 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +17737.04892 + 30 +0.0 + 11 +26775.0 + 21 +17737.04892 + 31 +0.0 + 0 +LINE + 5 +1E5A + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14835.86383 + 30 +0.0 + 11 +26775.0 + 21 +14835.86383 + 31 +0.0 + 0 +LINE + 5 +1E5B + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14814.213195 + 30 +0.0 + 11 +26812.5 + 21 +14814.213195 + 31 +0.0 + 0 +LINE + 5 +1E5C + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14792.56256 + 30 +0.0 + 11 +26775.0 + 21 +14792.56256 + 31 +0.0 + 0 +LINE + 5 +1E5D + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14770.911925 + 30 +0.0 + 11 +26812.5 + 21 +14770.911925 + 31 +0.0 + 0 +LINE + 5 +1E5E + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14749.26129 + 30 +0.0 + 11 +26775.0 + 21 +14749.26129 + 31 +0.0 + 0 +LINE + 5 +1E5F + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14727.610655 + 30 +0.0 + 11 +26812.5 + 21 +14727.610655 + 31 +0.0 + 0 +LINE + 5 +1E60 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14705.96002 + 30 +0.0 + 11 +26775.0 + 21 +14705.96002 + 31 +0.0 + 0 +LINE + 5 +1E61 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14684.309385 + 30 +0.0 + 11 +26812.5 + 21 +14684.309385 + 31 +0.0 + 0 +LINE + 5 +1E62 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14662.65875 + 30 +0.0 + 11 +26775.0 + 21 +14662.65875 + 31 +0.0 + 0 +LINE + 5 +1E63 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14641.008115 + 30 +0.0 + 11 +26812.5 + 21 +14641.008115 + 31 +0.0 + 0 +LINE + 5 +1E64 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14619.35748 + 30 +0.0 + 11 +26775.0 + 21 +14619.35748 + 31 +0.0 + 0 +LINE + 5 +1E65 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14597.706845 + 30 +0.0 + 11 +26812.5 + 21 +14597.706845 + 31 +0.0 + 0 +LINE + 5 +1E66 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14576.05621 + 30 +0.0 + 11 +26775.0 + 21 +14576.05621 + 31 +0.0 + 0 +LINE + 5 +1E67 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14554.405575 + 30 +0.0 + 11 +26812.5 + 21 +14554.405575 + 31 +0.0 + 0 +LINE + 5 +1E68 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14532.75494 + 30 +0.0 + 11 +26775.0 + 21 +14532.75494 + 31 +0.0 + 0 +LINE + 5 +1E69 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14511.104305 + 30 +0.0 + 11 +26812.5 + 21 +14511.104305 + 31 +0.0 + 0 +LINE + 5 +1E6A + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14489.45367 + 30 +0.0 + 11 +26775.0 + 21 +14489.45367 + 31 +0.0 + 0 +LINE + 5 +1E6B + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14467.803035 + 30 +0.0 + 11 +26812.5 + 21 +14467.803035 + 31 +0.0 + 0 +LINE + 5 +1E6C + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14446.1524 + 30 +0.0 + 11 +26775.0 + 21 +14446.1524 + 31 +0.0 + 0 +LINE + 5 +1E6D + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14424.501765 + 30 +0.0 + 11 +26812.5 + 21 +14424.501765 + 31 +0.0 + 0 +LINE + 5 +1E6E + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14402.85113 + 30 +0.0 + 11 +26775.0 + 21 +14402.85113 + 31 +0.0 + 0 +LINE + 5 +1E6F + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14381.200495 + 30 +0.0 + 11 +26812.5 + 21 +14381.200495 + 31 +0.0 + 0 +LINE + 5 +1E70 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14359.54986 + 30 +0.0 + 11 +26775.0 + 21 +14359.54986 + 31 +0.0 + 0 +LINE + 5 +1E71 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14337.899225 + 30 +0.0 + 11 +26812.5 + 21 +14337.899225 + 31 +0.0 + 0 +LINE + 5 +1E72 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14316.24859 + 30 +0.0 + 11 +26775.0 + 21 +14316.24859 + 31 +0.0 + 0 +LINE + 5 +1E73 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14294.597955 + 30 +0.0 + 11 +26812.5 + 21 +14294.597955 + 31 +0.0 + 0 +LINE + 5 +1E74 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14272.94732 + 30 +0.0 + 11 +26775.0 + 21 +14272.94732 + 31 +0.0 + 0 +LINE + 5 +1E75 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14251.296685 + 30 +0.0 + 11 +26812.5 + 21 +14251.296685 + 31 +0.0 + 0 +LINE + 5 +1E76 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14229.64605 + 30 +0.0 + 11 +26775.0 + 21 +14229.64605 + 31 +0.0 + 0 +LINE + 5 +1E77 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14207.995415 + 30 +0.0 + 11 +26812.5 + 21 +14207.995415 + 31 +0.0 + 0 +LINE + 5 +1E78 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14186.34478 + 30 +0.0 + 11 +26775.0 + 21 +14186.34478 + 31 +0.0 + 0 +LINE + 5 +1E79 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14164.694145 + 30 +0.0 + 11 +26812.5 + 21 +14164.694145 + 31 +0.0 + 0 +LINE + 5 +1E7A + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14143.04351 + 30 +0.0 + 11 +26775.0 + 21 +14143.04351 + 31 +0.0 + 0 +LINE + 5 +1E7B + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14121.392875 + 30 +0.0 + 11 +26812.5 + 21 +14121.392875 + 31 +0.0 + 0 +LINE + 5 +1E7C + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14099.74224 + 30 +0.0 + 11 +26775.0 + 21 +14099.74224 + 31 +0.0 + 0 +LINE + 5 +1E7D + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14078.091605 + 30 +0.0 + 11 +26812.5 + 21 +14078.091605 + 31 +0.0 + 0 +LINE + 5 +1E7E + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14056.44097 + 30 +0.0 + 11 +26775.0 + 21 +14056.44097 + 31 +0.0 + 0 +LINE + 5 +1E7F + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +14034.790335 + 30 +0.0 + 11 +26812.5 + 21 +14034.790335 + 31 +0.0 + 0 +LINE + 5 +1E80 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +14013.1397 + 30 +0.0 + 11 +26775.0 + 21 +14013.1397 + 31 +0.0 + 0 +LINE + 5 +1E81 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13991.489065 + 30 +0.0 + 11 +26812.5 + 21 +13991.489065 + 31 +0.0 + 0 +LINE + 5 +1E82 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13969.83843 + 30 +0.0 + 11 +26775.0 + 21 +13969.83843 + 31 +0.0 + 0 +LINE + 5 +1E83 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13948.187795 + 30 +0.0 + 11 +26812.5 + 21 +13948.187795 + 31 +0.0 + 0 +LINE + 5 +1E84 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13926.53716 + 30 +0.0 + 11 +26775.0 + 21 +13926.53716 + 31 +0.0 + 0 +LINE + 5 +1E85 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13904.886525 + 30 +0.0 + 11 +26812.5 + 21 +13904.886525 + 31 +0.0 + 0 +LINE + 5 +1E86 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13883.23589 + 30 +0.0 + 11 +26775.0 + 21 +13883.23589 + 31 +0.0 + 0 +LINE + 5 +1E87 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13861.585255 + 30 +0.0 + 11 +26812.5 + 21 +13861.585255 + 31 +0.0 + 0 +LINE + 5 +1E88 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13839.93462 + 30 +0.0 + 11 +26775.0 + 21 +13839.93462 + 31 +0.0 + 0 +LINE + 5 +1E89 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13818.283985 + 30 +0.0 + 11 +26812.5 + 21 +13818.283985 + 31 +0.0 + 0 +LINE + 5 +1E8A + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13796.63335 + 30 +0.0 + 11 +26775.0 + 21 +13796.63335 + 31 +0.0 + 0 +LINE + 5 +1E8B + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13774.982715 + 30 +0.0 + 11 +26812.5 + 21 +13774.982715 + 31 +0.0 + 0 +LINE + 5 +1E8C + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13753.33208 + 30 +0.0 + 11 +26775.0 + 21 +13753.33208 + 31 +0.0 + 0 +LINE + 5 +1E8D + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13731.681445 + 30 +0.0 + 11 +26812.5 + 21 +13731.681445 + 31 +0.0 + 0 +LINE + 5 +1E8E + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13710.03081 + 30 +0.0 + 11 +26775.0 + 21 +13710.03081 + 31 +0.0 + 0 +LINE + 5 +1E8F + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13688.380175 + 30 +0.0 + 11 +26812.5 + 21 +13688.380175 + 31 +0.0 + 0 +LINE + 5 +1E90 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13666.72954 + 30 +0.0 + 11 +26775.0 + 21 +13666.72954 + 31 +0.0 + 0 +LINE + 5 +1E91 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13645.078905 + 30 +0.0 + 11 +26812.5 + 21 +13645.078905 + 31 +0.0 + 0 +LINE + 5 +1E92 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13623.42827 + 30 +0.0 + 11 +26775.0 + 21 +13623.42827 + 31 +0.0 + 0 +LINE + 5 +1E93 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13601.777635 + 30 +0.0 + 11 +26812.5 + 21 +13601.777635 + 31 +0.0 + 0 +LINE + 5 +1E94 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13580.127 + 30 +0.0 + 11 +26775.0 + 21 +13580.127 + 31 +0.0 + 0 +LINE + 5 +1E95 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13558.476365 + 30 +0.0 + 11 +26812.5 + 21 +13558.476365 + 31 +0.0 + 0 +LINE + 5 +1E96 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13536.82573 + 30 +0.0 + 11 +26775.0 + 21 +13536.82573 + 31 +0.0 + 0 +LINE + 5 +1E97 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13515.175095 + 30 +0.0 + 11 +26812.5 + 21 +13515.175095 + 31 +0.0 + 0 +LINE + 5 +1E98 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13493.52446 + 30 +0.0 + 11 +26775.0 + 21 +13493.52446 + 31 +0.0 + 0 +LINE + 5 +1E99 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13471.873825 + 30 +0.0 + 11 +26812.5 + 21 +13471.873825 + 31 +0.0 + 0 +LINE + 5 +1E9A + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13450.22319 + 30 +0.0 + 11 +26775.0 + 21 +13450.22319 + 31 +0.0 + 0 +LINE + 5 +1E9B + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13428.572555 + 30 +0.0 + 11 +26812.5 + 21 +13428.572555 + 31 +0.0 + 0 +LINE + 5 +1E9C + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13406.92192 + 30 +0.0 + 11 +26775.0 + 21 +13406.92192 + 31 +0.0 + 0 +LINE + 5 +1E9D + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13385.271285 + 30 +0.0 + 11 +26812.5 + 21 +13385.271285 + 31 +0.0 + 0 +LINE + 5 +1E9E + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13363.62065 + 30 +0.0 + 11 +26775.0 + 21 +13363.62065 + 31 +0.0 + 0 +LINE + 5 +1E9F + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13341.970015 + 30 +0.0 + 11 +26812.5 + 21 +13341.970015 + 31 +0.0 + 0 +LINE + 5 +1EA0 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13320.31938 + 30 +0.0 + 11 +26775.0 + 21 +13320.31938 + 31 +0.0 + 0 +LINE + 5 +1EA1 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13298.668745 + 30 +0.0 + 11 +26812.5 + 21 +13298.668745 + 31 +0.0 + 0 +LINE + 5 +1EA2 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13277.01811 + 30 +0.0 + 11 +26775.0 + 21 +13277.01811 + 31 +0.0 + 0 +LINE + 5 +1EA3 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13255.367475 + 30 +0.0 + 11 +26812.5 + 21 +13255.367475 + 31 +0.0 + 0 +LINE + 5 +1EA4 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13233.71684 + 30 +0.0 + 11 +26775.0 + 21 +13233.71684 + 31 +0.0 + 0 +LINE + 5 +1EA5 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13212.066205 + 30 +0.0 + 11 +26812.5 + 21 +13212.066205 + 31 +0.0 + 0 +LINE + 5 +1EA6 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13190.41557 + 30 +0.0 + 11 +26775.0 + 21 +13190.41557 + 31 +0.0 + 0 +LINE + 5 +1EA7 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13168.764935 + 30 +0.0 + 11 +26812.5 + 21 +13168.764935 + 31 +0.0 + 0 +LINE + 5 +1EA8 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13147.1143 + 30 +0.0 + 11 +26775.0 + 21 +13147.1143 + 31 +0.0 + 0 +LINE + 5 +1EA9 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13125.463665 + 30 +0.0 + 11 +26812.5 + 21 +13125.463665 + 31 +0.0 + 0 +LINE + 5 +1EAA + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13103.81303 + 30 +0.0 + 11 +26775.0 + 21 +13103.81303 + 31 +0.0 + 0 +LINE + 5 +1EAB + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13082.162395 + 30 +0.0 + 11 +26812.5 + 21 +13082.162395 + 31 +0.0 + 0 +LINE + 5 +1EAC + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13060.51176 + 30 +0.0 + 11 +26775.0 + 21 +13060.51176 + 31 +0.0 + 0 +LINE + 5 +1EAD + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +13038.861125 + 30 +0.0 + 11 +26812.5 + 21 +13038.861125 + 31 +0.0 + 0 +LINE + 5 +1EAE + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +13017.21049 + 30 +0.0 + 11 +26775.0 + 21 +13017.21049 + 31 +0.0 + 0 +LINE + 5 +1EAF + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12995.559855 + 30 +0.0 + 11 +26812.5 + 21 +12995.559855 + 31 +0.0 + 0 +LINE + 5 +1EB0 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12973.90922 + 30 +0.0 + 11 +26775.0 + 21 +12973.90922 + 31 +0.0 + 0 +LINE + 5 +1EB1 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12952.258585 + 30 +0.0 + 11 +26812.5 + 21 +12952.258585 + 31 +0.0 + 0 +LINE + 5 +1EB2 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12930.60795 + 30 +0.0 + 11 +26775.0 + 21 +12930.60795 + 31 +0.0 + 0 +LINE + 5 +1EB3 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12908.957315 + 30 +0.0 + 11 +26812.5 + 21 +12908.957315 + 31 +0.0 + 0 +LINE + 5 +1EB4 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12887.30668 + 30 +0.0 + 11 +26775.0 + 21 +12887.30668 + 31 +0.0 + 0 +LINE + 5 +1EB5 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12865.656045 + 30 +0.0 + 11 +26812.5 + 21 +12865.656045 + 31 +0.0 + 0 +LINE + 5 +1EB6 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12844.00541 + 30 +0.0 + 11 +26775.0 + 21 +12844.00541 + 31 +0.0 + 0 +LINE + 5 +1EB7 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12822.354775 + 30 +0.0 + 11 +26812.5 + 21 +12822.354775 + 31 +0.0 + 0 +LINE + 5 +1EB8 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12800.70414 + 30 +0.0 + 11 +26775.0 + 21 +12800.70414 + 31 +0.0 + 0 +LINE + 5 +1EB9 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12779.053505 + 30 +0.0 + 11 +26812.5 + 21 +12779.053505 + 31 +0.0 + 0 +LINE + 5 +1EBA + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12757.40287 + 30 +0.0 + 11 +26775.0 + 21 +12757.40287 + 31 +0.0 + 0 +LINE + 5 +1EBB + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12735.752235 + 30 +0.0 + 11 +26812.5 + 21 +12735.752235 + 31 +0.0 + 0 +LINE + 5 +1EBC + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12714.1016 + 30 +0.0 + 11 +26775.0 + 21 +12714.1016 + 31 +0.0 + 0 +LINE + 5 +1EBD + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12692.450965 + 30 +0.0 + 11 +26812.5 + 21 +12692.450965 + 31 +0.0 + 0 +LINE + 5 +1EBE + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12670.80033 + 30 +0.0 + 11 +26775.0 + 21 +12670.80033 + 31 +0.0 + 0 +LINE + 5 +1EBF + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12649.149695 + 30 +0.0 + 11 +26812.5 + 21 +12649.149695 + 31 +0.0 + 0 +LINE + 5 +1EC0 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12627.49906 + 30 +0.0 + 11 +26775.0 + 21 +12627.49906 + 31 +0.0 + 0 +LINE + 5 +1EC1 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12605.848425 + 30 +0.0 + 11 +26812.5 + 21 +12605.848425 + 31 +0.0 + 0 +LINE + 5 +1EC2 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12584.19779 + 30 +0.0 + 11 +26775.0 + 21 +12584.19779 + 31 +0.0 + 0 +LINE + 5 +1EC3 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12562.547155 + 30 +0.0 + 11 +26812.5 + 21 +12562.547155 + 31 +0.0 + 0 +LINE + 5 +1EC4 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12540.89652 + 30 +0.0 + 11 +26775.0 + 21 +12540.89652 + 31 +0.0 + 0 +LINE + 5 +1EC5 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12519.245885 + 30 +0.0 + 11 +26812.5 + 21 +12519.245885 + 31 +0.0 + 0 +LINE + 5 +1EC6 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12497.59525 + 30 +0.0 + 11 +26775.0 + 21 +12497.59525 + 31 +0.0 + 0 +LINE + 5 +1EC7 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12475.944615 + 30 +0.0 + 11 +26812.5 + 21 +12475.944615 + 31 +0.0 + 0 +LINE + 5 +1EC8 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12454.29398 + 30 +0.0 + 11 +26775.0 + 21 +12454.29398 + 31 +0.0 + 0 +LINE + 5 +1EC9 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12432.643345 + 30 +0.0 + 11 +26812.5 + 21 +12432.643345 + 31 +0.0 + 0 +LINE + 5 +1ECA + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12410.99271 + 30 +0.0 + 11 +26775.0 + 21 +12410.99271 + 31 +0.0 + 0 +LINE + 5 +1ECB + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12389.342075 + 30 +0.0 + 11 +26812.5 + 21 +12389.342075 + 31 +0.0 + 0 +LINE + 5 +1ECC + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12367.69144 + 30 +0.0 + 11 +26775.0 + 21 +12367.69144 + 31 +0.0 + 0 +LINE + 5 +1ECD + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12346.040805 + 30 +0.0 + 11 +26812.5 + 21 +12346.040805 + 31 +0.0 + 0 +LINE + 5 +1ECE + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12324.39017 + 30 +0.0 + 11 +26775.0 + 21 +12324.39017 + 31 +0.0 + 0 +LINE + 5 +1ECF + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12302.739535 + 30 +0.0 + 11 +26812.5 + 21 +12302.739535 + 31 +0.0 + 0 +LINE + 5 +1ED0 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12281.0889 + 30 +0.0 + 11 +26775.0 + 21 +12281.0889 + 31 +0.0 + 0 +LINE + 5 +1ED1 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12259.438265 + 30 +0.0 + 11 +26812.5 + 21 +12259.438265 + 31 +0.0 + 0 +LINE + 5 +1ED2 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12237.78763 + 30 +0.0 + 11 +26775.0 + 21 +12237.78763 + 31 +0.0 + 0 +LINE + 5 +1ED3 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12216.136995 + 30 +0.0 + 11 +26812.5 + 21 +12216.136995 + 31 +0.0 + 0 +LINE + 5 +1ED4 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12194.48636 + 30 +0.0 + 11 +26775.0 + 21 +12194.48636 + 31 +0.0 + 0 +LINE + 5 +1ED5 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12172.835725 + 30 +0.0 + 11 +26812.5 + 21 +12172.835725 + 31 +0.0 + 0 +LINE + 5 +1ED6 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12151.18509 + 30 +0.0 + 11 +26775.0 + 21 +12151.18509 + 31 +0.0 + 0 +LINE + 5 +1ED7 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12129.534455 + 30 +0.0 + 11 +26812.5 + 21 +12129.534455 + 31 +0.0 + 0 +LINE + 5 +1ED8 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12107.88382 + 30 +0.0 + 11 +26775.0 + 21 +12107.88382 + 31 +0.0 + 0 +LINE + 5 +1ED9 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12086.233185 + 30 +0.0 + 11 +26812.5 + 21 +12086.233185 + 31 +0.0 + 0 +LINE + 5 +1EDA + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12064.58255 + 30 +0.0 + 11 +26775.0 + 21 +12064.58255 + 31 +0.0 + 0 +LINE + 5 +1EDB + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +12042.931915 + 30 +0.0 + 11 +26812.5 + 21 +12042.931915 + 31 +0.0 + 0 +LINE + 5 +1EDC + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +12021.28128 + 30 +0.0 + 11 +26775.0 + 21 +12021.28128 + 31 +0.0 + 0 +LINE + 5 +1EDD + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +11999.630645 + 30 +0.0 + 11 +26812.5 + 21 +11999.630645 + 31 +0.0 + 0 +LINE + 5 +1EDE + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14757.921379 + 30 +0.0 + 11 +26812.499918 + 21 +14770.911902 + 31 +0.0 + 0 +LINE + 5 +1EDF + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14814.213172 + 30 +0.0 + 11 +26774.999918 + 21 +14835.863807 + 31 +0.0 + 0 +LINE + 5 +1EE0 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14879.165077 + 30 +0.0 + 11 +26740.0 + 21 +14896.485443 + 31 +0.0 + 0 +LINE + 5 +1EE1 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14714.620109 + 30 +0.0 + 11 +26812.499918 + 21 +14727.610632 + 31 +0.0 + 0 +LINE + 5 +1EE2 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14770.911902 + 30 +0.0 + 11 +26774.999918 + 21 +14792.562537 + 31 +0.0 + 0 +LINE + 5 +1EE3 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14835.863807 + 30 +0.0 + 11 +26740.0 + 21 +14853.184173 + 31 +0.0 + 0 +LINE + 5 +1EE4 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14671.318839 + 30 +0.0 + 11 +26812.499918 + 21 +14684.309362 + 31 +0.0 + 0 +LINE + 5 +1EE5 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14727.610632 + 30 +0.0 + 11 +26774.999918 + 21 +14749.261267 + 31 +0.0 + 0 +LINE + 5 +1EE6 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14792.562537 + 30 +0.0 + 11 +26740.0 + 21 +14809.882903 + 31 +0.0 + 0 +LINE + 5 +1EE7 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14628.017569 + 30 +0.0 + 11 +26812.499918 + 21 +14641.008091 + 31 +0.0 + 0 +LINE + 5 +1EE8 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14684.309362 + 30 +0.0 + 11 +26774.999918 + 21 +14705.959997 + 31 +0.0 + 0 +LINE + 5 +1EE9 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14749.261267 + 30 +0.0 + 11 +26740.0 + 21 +14766.581633 + 31 +0.0 + 0 +LINE + 5 +1EEA + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14584.716299 + 30 +0.0 + 11 +26812.499918 + 21 +14597.706821 + 31 +0.0 + 0 +LINE + 5 +1EEB + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14641.008091 + 30 +0.0 + 11 +26774.999918 + 21 +14662.658727 + 31 +0.0 + 0 +LINE + 5 +1EEC + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14705.959997 + 30 +0.0 + 11 +26740.0 + 21 +14723.280363 + 31 +0.0 + 0 +LINE + 5 +1EED + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14541.415029 + 30 +0.0 + 11 +26812.499918 + 21 +14554.405551 + 31 +0.0 + 0 +LINE + 5 +1EEE + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14597.706821 + 30 +0.0 + 11 +26774.999918 + 21 +14619.357456 + 31 +0.0 + 0 +LINE + 5 +1EEF + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14662.658727 + 30 +0.0 + 11 +26740.0 + 21 +14679.979093 + 31 +0.0 + 0 +LINE + 5 +1EF0 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14498.113759 + 30 +0.0 + 11 +26812.499919 + 21 +14511.104281 + 31 +0.0 + 0 +LINE + 5 +1EF1 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14554.405551 + 30 +0.0 + 11 +26774.999919 + 21 +14576.056186 + 31 +0.0 + 0 +LINE + 5 +1EF2 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14619.357456 + 30 +0.0 + 11 +26740.0 + 21 +14636.677823 + 31 +0.0 + 0 +LINE + 5 +1EF3 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14454.812489 + 30 +0.0 + 11 +26812.499919 + 21 +14467.803011 + 31 +0.0 + 0 +LINE + 5 +1EF4 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14511.104281 + 30 +0.0 + 11 +26774.999919 + 21 +14532.754916 + 31 +0.0 + 0 +LINE + 5 +1EF5 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14576.056186 + 30 +0.0 + 11 +26740.0 + 21 +14593.376553 + 31 +0.0 + 0 +LINE + 5 +1EF6 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14411.511219 + 30 +0.0 + 11 +26812.499919 + 21 +14424.501741 + 31 +0.0 + 0 +LINE + 5 +1EF7 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14467.803011 + 30 +0.0 + 11 +26774.999919 + 21 +14489.453646 + 31 +0.0 + 0 +LINE + 5 +1EF8 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14532.754916 + 30 +0.0 + 11 +26740.0 + 21 +14550.075283 + 31 +0.0 + 0 +LINE + 5 +1EF9 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14368.209949 + 30 +0.0 + 11 +26812.499919 + 21 +14381.200471 + 31 +0.0 + 0 +LINE + 5 +1EFA + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14424.501741 + 30 +0.0 + 11 +26774.999919 + 21 +14446.152376 + 31 +0.0 + 0 +LINE + 5 +1EFB + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14489.453646 + 30 +0.0 + 11 +26740.0 + 21 +14506.774013 + 31 +0.0 + 0 +LINE + 5 +1EFC + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14324.908679 + 30 +0.0 + 11 +26812.499919 + 21 +14337.8992 + 31 +0.0 + 0 +LINE + 5 +1EFD + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14381.200471 + 30 +0.0 + 11 +26774.999919 + 21 +14402.851106 + 31 +0.0 + 0 +LINE + 5 +1EFE + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14446.152376 + 30 +0.0 + 11 +26740.0 + 21 +14463.472743 + 31 +0.0 + 0 +LINE + 5 +1EFF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14281.607409 + 30 +0.0 + 11 +26812.499919 + 21 +14294.59793 + 31 +0.0 + 0 +LINE + 5 +1F00 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14337.8992 + 30 +0.0 + 11 +26774.999919 + 21 +14359.549836 + 31 +0.0 + 0 +LINE + 5 +1F01 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14402.851106 + 30 +0.0 + 11 +26740.0 + 21 +14420.171473 + 31 +0.0 + 0 +LINE + 5 +1F02 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14238.306139 + 30 +0.0 + 11 +26812.499919 + 21 +14251.29666 + 31 +0.0 + 0 +LINE + 5 +1F03 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14294.59793 + 30 +0.0 + 11 +26774.999919 + 21 +14316.248565 + 31 +0.0 + 0 +LINE + 5 +1F04 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14359.549836 + 30 +0.0 + 11 +26740.0 + 21 +14376.870203 + 31 +0.0 + 0 +LINE + 5 +1F05 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14195.004869 + 30 +0.0 + 11 +26812.499919 + 21 +14207.99539 + 31 +0.0 + 0 +LINE + 5 +1F06 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14251.29666 + 30 +0.0 + 11 +26774.999919 + 21 +14272.947295 + 31 +0.0 + 0 +LINE + 5 +1F07 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14316.248565 + 30 +0.0 + 11 +26740.0 + 21 +14333.568933 + 31 +0.0 + 0 +LINE + 5 +1F08 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14151.703599 + 30 +0.0 + 11 +26812.499919 + 21 +14164.69412 + 31 +0.0 + 0 +LINE + 5 +1F09 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14207.99539 + 30 +0.0 + 11 +26774.999919 + 21 +14229.646025 + 31 +0.0 + 0 +LINE + 5 +1F0A + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14272.947295 + 30 +0.0 + 11 +26740.0 + 21 +14290.267663 + 31 +0.0 + 0 +LINE + 5 +1F0B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14108.402329 + 30 +0.0 + 11 +26812.499919 + 21 +14121.39285 + 31 +0.0 + 0 +LINE + 5 +1F0C + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14164.69412 + 30 +0.0 + 11 +26774.999919 + 21 +14186.344755 + 31 +0.0 + 0 +LINE + 5 +1F0D + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14229.646025 + 30 +0.0 + 11 +26740.0 + 21 +14246.966393 + 31 +0.0 + 0 +LINE + 5 +1F0E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14065.101059 + 30 +0.0 + 11 +26812.499919 + 21 +14078.09158 + 31 +0.0 + 0 +LINE + 5 +1F0F + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14121.39285 + 30 +0.0 + 11 +26774.999919 + 21 +14143.043485 + 31 +0.0 + 0 +LINE + 5 +1F10 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14186.344755 + 30 +0.0 + 11 +26740.0 + 21 +14203.665123 + 31 +0.0 + 0 +LINE + 5 +1F11 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14021.799789 + 30 +0.0 + 11 +26812.499919 + 21 +14034.790309 + 31 +0.0 + 0 +LINE + 5 +1F12 + 8 +0 + 62 + 0 + 10 +26787.499919 + 20 +14078.09158 + 30 +0.0 + 11 +26774.999919 + 21 +14099.742215 + 31 +0.0 + 0 +LINE + 5 +1F13 + 8 +0 + 62 + 0 + 10 +26749.999919 + 20 +14143.043485 + 30 +0.0 + 11 +26740.0 + 21 +14160.363853 + 31 +0.0 + 0 +LINE + 5 +1F14 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13978.498519 + 30 +0.0 + 11 +26812.49992 + 21 +13991.489039 + 31 +0.0 + 0 +LINE + 5 +1F15 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +14034.790309 + 30 +0.0 + 11 +26774.99992 + 21 +14056.440945 + 31 +0.0 + 0 +LINE + 5 +1F16 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +14099.742215 + 30 +0.0 + 11 +26740.0 + 21 +14117.062583 + 31 +0.0 + 0 +LINE + 5 +1F17 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13935.197249 + 30 +0.0 + 11 +26812.49992 + 21 +13948.187769 + 31 +0.0 + 0 +LINE + 5 +1F18 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13991.489039 + 30 +0.0 + 11 +26774.99992 + 21 +14013.139674 + 31 +0.0 + 0 +LINE + 5 +1F19 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +14056.440945 + 30 +0.0 + 11 +26740.0 + 21 +14073.761313 + 31 +0.0 + 0 +LINE + 5 +1F1A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13891.895979 + 30 +0.0 + 11 +26812.49992 + 21 +13904.886499 + 31 +0.0 + 0 +LINE + 5 +1F1B + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13948.187769 + 30 +0.0 + 11 +26774.99992 + 21 +13969.838404 + 31 +0.0 + 0 +LINE + 5 +1F1C + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +14013.139674 + 30 +0.0 + 11 +26740.0 + 21 +14030.460043 + 31 +0.0 + 0 +LINE + 5 +1F1D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13848.594709 + 30 +0.0 + 11 +26812.49992 + 21 +13861.585229 + 31 +0.0 + 0 +LINE + 5 +1F1E + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13904.886499 + 30 +0.0 + 11 +26774.99992 + 21 +13926.537134 + 31 +0.0 + 0 +LINE + 5 +1F1F + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13969.838404 + 30 +0.0 + 11 +26740.0 + 21 +13987.158773 + 31 +0.0 + 0 +LINE + 5 +1F20 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13805.293439 + 30 +0.0 + 11 +26812.49992 + 21 +13818.283959 + 31 +0.0 + 0 +LINE + 5 +1F21 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13861.585229 + 30 +0.0 + 11 +26774.99992 + 21 +13883.235864 + 31 +0.0 + 0 +LINE + 5 +1F22 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13926.537134 + 30 +0.0 + 11 +26740.0 + 21 +13943.857503 + 31 +0.0 + 0 +LINE + 5 +1F23 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13761.992169 + 30 +0.0 + 11 +26812.49992 + 21 +13774.982689 + 31 +0.0 + 0 +LINE + 5 +1F24 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13818.283959 + 30 +0.0 + 11 +26774.99992 + 21 +13839.934594 + 31 +0.0 + 0 +LINE + 5 +1F25 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13883.235864 + 30 +0.0 + 11 +26740.0 + 21 +13900.556233 + 31 +0.0 + 0 +LINE + 5 +1F26 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13718.690899 + 30 +0.0 + 11 +26812.49992 + 21 +13731.681418 + 31 +0.0 + 0 +LINE + 5 +1F27 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13774.982689 + 30 +0.0 + 11 +26774.99992 + 21 +13796.633324 + 31 +0.0 + 0 +LINE + 5 +1F28 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13839.934594 + 30 +0.0 + 11 +26740.0 + 21 +13857.254963 + 31 +0.0 + 0 +LINE + 5 +1F29 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13675.389629 + 30 +0.0 + 11 +26812.49992 + 21 +13688.380148 + 31 +0.0 + 0 +LINE + 5 +1F2A + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13731.681418 + 30 +0.0 + 11 +26774.99992 + 21 +13753.332054 + 31 +0.0 + 0 +LINE + 5 +1F2B + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13796.633324 + 30 +0.0 + 11 +26740.0 + 21 +13813.953693 + 31 +0.0 + 0 +LINE + 5 +1F2C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13632.088359 + 30 +0.0 + 11 +26812.49992 + 21 +13645.078878 + 31 +0.0 + 0 +LINE + 5 +1F2D + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13688.380148 + 30 +0.0 + 11 +26774.99992 + 21 +13710.030783 + 31 +0.0 + 0 +LINE + 5 +1F2E + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13753.332054 + 30 +0.0 + 11 +26740.0 + 21 +13770.652423 + 31 +0.0 + 0 +LINE + 5 +1F2F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13588.787089 + 30 +0.0 + 11 +26812.49992 + 21 +13601.777608 + 31 +0.0 + 0 +LINE + 5 +1F30 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13645.078878 + 30 +0.0 + 11 +26774.99992 + 21 +13666.729513 + 31 +0.0 + 0 +LINE + 5 +1F31 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13710.030783 + 30 +0.0 + 11 +26740.0 + 21 +13727.351153 + 31 +0.0 + 0 +LINE + 5 +1F32 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13545.485819 + 30 +0.0 + 11 +26812.49992 + 21 +13558.476338 + 31 +0.0 + 0 +LINE + 5 +1F33 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13601.777608 + 30 +0.0 + 11 +26774.99992 + 21 +13623.428243 + 31 +0.0 + 0 +LINE + 5 +1F34 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13666.729513 + 30 +0.0 + 11 +26740.0 + 21 +13684.049883 + 31 +0.0 + 0 +LINE + 5 +1F35 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13502.184549 + 30 +0.0 + 11 +26812.49992 + 21 +13515.175068 + 31 +0.0 + 0 +LINE + 5 +1F36 + 8 +0 + 62 + 0 + 10 +26787.49992 + 20 +13558.476338 + 30 +0.0 + 11 +26774.99992 + 21 +13580.126973 + 31 +0.0 + 0 +LINE + 5 +1F37 + 8 +0 + 62 + 0 + 10 +26749.99992 + 20 +13623.428243 + 30 +0.0 + 11 +26740.0 + 21 +13640.748613 + 31 +0.0 + 0 +LINE + 5 +1F38 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13458.883279 + 30 +0.0 + 11 +26812.499921 + 21 +13471.873798 + 31 +0.0 + 0 +LINE + 5 +1F39 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13515.175068 + 30 +0.0 + 11 +26774.999921 + 21 +13536.825703 + 31 +0.0 + 0 +LINE + 5 +1F3A + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13580.126973 + 30 +0.0 + 11 +26740.0 + 21 +13597.447343 + 31 +0.0 + 0 +LINE + 5 +1F3B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13415.582009 + 30 +0.0 + 11 +26812.499921 + 21 +13428.572527 + 31 +0.0 + 0 +LINE + 5 +1F3C + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13471.873798 + 30 +0.0 + 11 +26774.999921 + 21 +13493.524433 + 31 +0.0 + 0 +LINE + 5 +1F3D + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13536.825703 + 30 +0.0 + 11 +26740.0 + 21 +13554.146073 + 31 +0.0 + 0 +LINE + 5 +1F3E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13372.280739 + 30 +0.0 + 11 +26812.499921 + 21 +13385.271257 + 31 +0.0 + 0 +LINE + 5 +1F3F + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13428.572527 + 30 +0.0 + 11 +26774.999921 + 21 +13450.223163 + 31 +0.0 + 0 +LINE + 5 +1F40 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13493.524433 + 30 +0.0 + 11 +26740.0 + 21 +13510.844803 + 31 +0.0 + 0 +LINE + 5 +1F41 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13328.979469 + 30 +0.0 + 11 +26812.499921 + 21 +13341.969987 + 31 +0.0 + 0 +LINE + 5 +1F42 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13385.271257 + 30 +0.0 + 11 +26774.999921 + 21 +13406.921892 + 31 +0.0 + 0 +LINE + 5 +1F43 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13450.223163 + 30 +0.0 + 11 +26740.0 + 21 +13467.543533 + 31 +0.0 + 0 +LINE + 5 +1F44 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13285.678199 + 30 +0.0 + 11 +26812.499921 + 21 +13298.668717 + 31 +0.0 + 0 +LINE + 5 +1F45 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13341.969987 + 30 +0.0 + 11 +26774.999921 + 21 +13363.620622 + 31 +0.0 + 0 +LINE + 5 +1F46 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13406.921892 + 30 +0.0 + 11 +26740.0 + 21 +13424.242263 + 31 +0.0 + 0 +LINE + 5 +1F47 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13242.376929 + 30 +0.0 + 11 +26812.499921 + 21 +13255.367447 + 31 +0.0 + 0 +LINE + 5 +1F48 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13298.668717 + 30 +0.0 + 11 +26774.999921 + 21 +13320.319352 + 31 +0.0 + 0 +LINE + 5 +1F49 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13363.620622 + 30 +0.0 + 11 +26740.0 + 21 +13380.940993 + 31 +0.0 + 0 +LINE + 5 +1F4A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13199.075659 + 30 +0.0 + 11 +26812.499921 + 21 +13212.066177 + 31 +0.0 + 0 +LINE + 5 +1F4B + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13255.367447 + 30 +0.0 + 11 +26774.999921 + 21 +13277.018082 + 31 +0.0 + 0 +LINE + 5 +1F4C + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13320.319352 + 30 +0.0 + 11 +26740.0 + 21 +13337.639723 + 31 +0.0 + 0 +LINE + 5 +1F4D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13155.774389 + 30 +0.0 + 11 +26812.499921 + 21 +13168.764907 + 31 +0.0 + 0 +LINE + 5 +1F4E + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13212.066177 + 30 +0.0 + 11 +26774.999921 + 21 +13233.716812 + 31 +0.0 + 0 +LINE + 5 +1F4F + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13277.018082 + 30 +0.0 + 11 +26740.0 + 21 +13294.338453 + 31 +0.0 + 0 +LINE + 5 +1F50 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13112.473119 + 30 +0.0 + 11 +26812.499921 + 21 +13125.463636 + 31 +0.0 + 0 +LINE + 5 +1F51 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13168.764907 + 30 +0.0 + 11 +26774.999921 + 21 +13190.415542 + 31 +0.0 + 0 +LINE + 5 +1F52 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13233.716812 + 30 +0.0 + 11 +26740.0 + 21 +13251.037183 + 31 +0.0 + 0 +LINE + 5 +1F53 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13069.171849 + 30 +0.0 + 11 +26812.499921 + 21 +13082.162366 + 31 +0.0 + 0 +LINE + 5 +1F54 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13125.463636 + 30 +0.0 + 11 +26774.999921 + 21 +13147.114272 + 31 +0.0 + 0 +LINE + 5 +1F55 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13190.415542 + 30 +0.0 + 11 +26740.0 + 21 +13207.735913 + 31 +0.0 + 0 +LINE + 5 +1F56 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +13025.870579 + 30 +0.0 + 11 +26812.499921 + 21 +13038.861096 + 31 +0.0 + 0 +LINE + 5 +1F57 + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13082.162366 + 30 +0.0 + 11 +26774.999921 + 21 +13103.813001 + 31 +0.0 + 0 +LINE + 5 +1F58 + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13147.114272 + 30 +0.0 + 11 +26740.0 + 21 +13164.434643 + 31 +0.0 + 0 +LINE + 5 +1F59 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12982.569309 + 30 +0.0 + 11 +26812.499921 + 21 +12995.559826 + 31 +0.0 + 0 +LINE + 5 +1F5A + 8 +0 + 62 + 0 + 10 +26787.499921 + 20 +13038.861096 + 30 +0.0 + 11 +26774.999921 + 21 +13060.511731 + 31 +0.0 + 0 +LINE + 5 +1F5B + 8 +0 + 62 + 0 + 10 +26749.999921 + 20 +13103.813001 + 30 +0.0 + 11 +26740.0 + 21 +13121.133373 + 31 +0.0 + 0 +LINE + 5 +1F5C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12939.268039 + 30 +0.0 + 11 +26812.499922 + 21 +12952.258556 + 31 +0.0 + 0 +LINE + 5 +1F5D + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12995.559826 + 30 +0.0 + 11 +26774.999922 + 21 +13017.210461 + 31 +0.0 + 0 +LINE + 5 +1F5E + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +13060.511731 + 30 +0.0 + 11 +26740.0 + 21 +13077.832103 + 31 +0.0 + 0 +LINE + 5 +1F5F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12895.966769 + 30 +0.0 + 11 +26812.499922 + 21 +12908.957286 + 31 +0.0 + 0 +LINE + 5 +1F60 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12952.258556 + 30 +0.0 + 11 +26774.999922 + 21 +12973.909191 + 31 +0.0 + 0 +LINE + 5 +1F61 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +13017.210461 + 30 +0.0 + 11 +26740.0 + 21 +13034.530833 + 31 +0.0 + 0 +LINE + 5 +1F62 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12852.665499 + 30 +0.0 + 11 +26812.499922 + 21 +12865.656016 + 31 +0.0 + 0 +LINE + 5 +1F63 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12908.957286 + 30 +0.0 + 11 +26774.999922 + 21 +12930.607921 + 31 +0.0 + 0 +LINE + 5 +1F64 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12973.909191 + 30 +0.0 + 11 +26740.0 + 21 +12991.229563 + 31 +0.0 + 0 +LINE + 5 +1F65 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12809.364229 + 30 +0.0 + 11 +26812.499922 + 21 +12822.354745 + 31 +0.0 + 0 +LINE + 5 +1F66 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12865.656016 + 30 +0.0 + 11 +26774.999922 + 21 +12887.306651 + 31 +0.0 + 0 +LINE + 5 +1F67 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12930.607921 + 30 +0.0 + 11 +26740.0 + 21 +12947.928293 + 31 +0.0 + 0 +LINE + 5 +1F68 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12766.062959 + 30 +0.0 + 11 +26812.499922 + 21 +12779.053475 + 31 +0.0 + 0 +LINE + 5 +1F69 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12822.354745 + 30 +0.0 + 11 +26774.999922 + 21 +12844.005381 + 31 +0.0 + 0 +LINE + 5 +1F6A + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12887.306651 + 30 +0.0 + 11 +26740.0 + 21 +12904.627023 + 31 +0.0 + 0 +LINE + 5 +1F6B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12722.761689 + 30 +0.0 + 11 +26812.499922 + 21 +12735.752205 + 31 +0.0 + 0 +LINE + 5 +1F6C + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12779.053475 + 30 +0.0 + 11 +26774.999922 + 21 +12800.70411 + 31 +0.0 + 0 +LINE + 5 +1F6D + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12844.005381 + 30 +0.0 + 11 +26740.0 + 21 +12861.325753 + 31 +0.0 + 0 +LINE + 5 +1F6E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12679.460419 + 30 +0.0 + 11 +26812.499922 + 21 +12692.450935 + 31 +0.0 + 0 +LINE + 5 +1F6F + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12735.752205 + 30 +0.0 + 11 +26774.999922 + 21 +12757.40284 + 31 +0.0 + 0 +LINE + 5 +1F70 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12800.70411 + 30 +0.0 + 11 +26740.0 + 21 +12818.024483 + 31 +0.0 + 0 +LINE + 5 +1F71 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12636.159149 + 30 +0.0 + 11 +26812.499922 + 21 +12649.149665 + 31 +0.0 + 0 +LINE + 5 +1F72 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12692.450935 + 30 +0.0 + 11 +26774.999922 + 21 +12714.10157 + 31 +0.0 + 0 +LINE + 5 +1F73 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12757.40284 + 30 +0.0 + 11 +26740.0 + 21 +12774.723213 + 31 +0.0 + 0 +LINE + 5 +1F74 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12592.857879 + 30 +0.0 + 11 +26812.499922 + 21 +12605.848395 + 31 +0.0 + 0 +LINE + 5 +1F75 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12649.149665 + 30 +0.0 + 11 +26774.999922 + 21 +12670.8003 + 31 +0.0 + 0 +LINE + 5 +1F76 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12714.10157 + 30 +0.0 + 11 +26740.0 + 21 +12731.421943 + 31 +0.0 + 0 +LINE + 5 +1F77 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12549.556609 + 30 +0.0 + 11 +26812.499922 + 21 +12562.547125 + 31 +0.0 + 0 +LINE + 5 +1F78 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12605.848395 + 30 +0.0 + 11 +26774.999922 + 21 +12627.49903 + 31 +0.0 + 0 +LINE + 5 +1F79 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12670.8003 + 30 +0.0 + 11 +26740.0 + 21 +12688.120673 + 31 +0.0 + 0 +LINE + 5 +1F7A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12506.255339 + 30 +0.0 + 11 +26812.499922 + 21 +12519.245854 + 31 +0.0 + 0 +LINE + 5 +1F7B + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12562.547125 + 30 +0.0 + 11 +26774.999922 + 21 +12584.19776 + 31 +0.0 + 0 +LINE + 5 +1F7C + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12627.49903 + 30 +0.0 + 11 +26740.0 + 21 +12644.819403 + 31 +0.0 + 0 +LINE + 5 +1F7D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12462.954069 + 30 +0.0 + 11 +26812.499922 + 21 +12475.944584 + 31 +0.0 + 0 +LINE + 5 +1F7E + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12519.245854 + 30 +0.0 + 11 +26774.999922 + 21 +12540.89649 + 31 +0.0 + 0 +LINE + 5 +1F7F + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12584.19776 + 30 +0.0 + 11 +26740.0 + 21 +12601.518133 + 31 +0.0 + 0 +LINE + 5 +1F80 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12419.652799 + 30 +0.0 + 11 +26812.499922 + 21 +12432.643314 + 31 +0.0 + 0 +LINE + 5 +1F81 + 8 +0 + 62 + 0 + 10 +26787.499922 + 20 +12475.944584 + 30 +0.0 + 11 +26774.999922 + 21 +12497.595219 + 31 +0.0 + 0 +LINE + 5 +1F82 + 8 +0 + 62 + 0 + 10 +26749.999922 + 20 +12540.89649 + 30 +0.0 + 11 +26740.0 + 21 +12558.216863 + 31 +0.0 + 0 +LINE + 5 +1F83 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12376.351529 + 30 +0.0 + 11 +26812.499923 + 21 +12389.342044 + 31 +0.0 + 0 +LINE + 5 +1F84 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12432.643314 + 30 +0.0 + 11 +26774.999923 + 21 +12454.293949 + 31 +0.0 + 0 +LINE + 5 +1F85 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12497.595219 + 30 +0.0 + 11 +26740.0 + 21 +12514.915593 + 31 +0.0 + 0 +LINE + 5 +1F86 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12333.050259 + 30 +0.0 + 11 +26812.499923 + 21 +12346.040774 + 31 +0.0 + 0 +LINE + 5 +1F87 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12389.342044 + 30 +0.0 + 11 +26774.999923 + 21 +12410.992679 + 31 +0.0 + 0 +LINE + 5 +1F88 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12454.293949 + 30 +0.0 + 11 +26740.0 + 21 +12471.614323 + 31 +0.0 + 0 +LINE + 5 +1F89 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12289.748989 + 30 +0.0 + 11 +26812.499923 + 21 +12302.739504 + 31 +0.0 + 0 +LINE + 5 +1F8A + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12346.040774 + 30 +0.0 + 11 +26774.999923 + 21 +12367.691409 + 31 +0.0 + 0 +LINE + 5 +1F8B + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12410.992679 + 30 +0.0 + 11 +26740.0 + 21 +12428.313053 + 31 +0.0 + 0 +LINE + 5 +1F8C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12246.447719 + 30 +0.0 + 11 +26812.499923 + 21 +12259.438234 + 31 +0.0 + 0 +LINE + 5 +1F8D + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12302.739504 + 30 +0.0 + 11 +26774.999923 + 21 +12324.390139 + 31 +0.0 + 0 +LINE + 5 +1F8E + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12367.691409 + 30 +0.0 + 11 +26740.0 + 21 +12385.011783 + 31 +0.0 + 0 +LINE + 5 +1F8F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12203.146449 + 30 +0.0 + 11 +26812.499923 + 21 +12216.136963 + 31 +0.0 + 0 +LINE + 5 +1F90 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12259.438234 + 30 +0.0 + 11 +26774.999923 + 21 +12281.088869 + 31 +0.0 + 0 +LINE + 5 +1F91 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12324.390139 + 30 +0.0 + 11 +26740.0 + 21 +12341.710513 + 31 +0.0 + 0 +LINE + 5 +1F92 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12159.845179 + 30 +0.0 + 11 +26812.499923 + 21 +12172.835693 + 31 +0.0 + 0 +LINE + 5 +1F93 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12216.136963 + 30 +0.0 + 11 +26774.999923 + 21 +12237.787599 + 31 +0.0 + 0 +LINE + 5 +1F94 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12281.088869 + 30 +0.0 + 11 +26740.0 + 21 +12298.409243 + 31 +0.0 + 0 +LINE + 5 +1F95 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12116.543909 + 30 +0.0 + 11 +26812.499923 + 21 +12129.534423 + 31 +0.0 + 0 +LINE + 5 +1F96 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12172.835693 + 30 +0.0 + 11 +26774.999923 + 21 +12194.486328 + 31 +0.0 + 0 +LINE + 5 +1F97 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12237.787599 + 30 +0.0 + 11 +26740.0 + 21 +12255.107973 + 31 +0.0 + 0 +LINE + 5 +1F98 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12073.242639 + 30 +0.0 + 11 +26812.499923 + 21 +12086.233153 + 31 +0.0 + 0 +LINE + 5 +1F99 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12129.534423 + 30 +0.0 + 11 +26774.999923 + 21 +12151.185058 + 31 +0.0 + 0 +LINE + 5 +1F9A + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12194.486328 + 30 +0.0 + 11 +26740.0 + 21 +12211.806703 + 31 +0.0 + 0 +LINE + 5 +1F9B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +12029.941369 + 30 +0.0 + 11 +26812.499923 + 21 +12042.931883 + 31 +0.0 + 0 +LINE + 5 +1F9C + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12086.233153 + 30 +0.0 + 11 +26774.999923 + 21 +12107.883788 + 31 +0.0 + 0 +LINE + 5 +1F9D + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12151.185058 + 30 +0.0 + 11 +26740.0 + 21 +12168.505433 + 31 +0.0 + 0 +LINE + 5 +1F9E + 8 +0 + 62 + 0 + 10 +26818.781848 + 20 +11988.75 + 30 +0.0 + 11 +26812.499923 + 21 +11999.630613 + 31 +0.0 + 0 +LINE + 5 +1F9F + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +12042.931883 + 30 +0.0 + 11 +26774.999923 + 21 +12064.582518 + 31 +0.0 + 0 +LINE + 5 +1FA0 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12107.883788 + 30 +0.0 + 11 +26740.0 + 21 +12125.204163 + 31 +0.0 + 0 +LINE + 5 +1FA1 + 8 +0 + 62 + 0 + 10 +26787.499923 + 20 +11999.630613 + 30 +0.0 + 11 +26774.999923 + 21 +12021.281248 + 31 +0.0 + 0 +LINE + 5 +1FA2 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12064.582518 + 30 +0.0 + 11 +26740.0 + 21 +12081.902893 + 31 +0.0 + 0 +LINE + 5 +1FA3 + 8 +0 + 62 + 0 + 10 +26749.999923 + 20 +12021.281248 + 30 +0.0 + 11 +26740.0 + 21 +12038.601623 + 31 +0.0 + 0 +LINE + 5 +1FA4 + 8 +0 + 62 + 0 + 10 +26743.781848 + 20 +11988.75 + 30 +0.0 + 11 +26740.0 + 21 +11995.300353 + 31 +0.0 + 0 +LINE + 5 +1FA5 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14801.222649 + 30 +0.0 + 11 +26812.499918 + 21 +14814.213172 + 31 +0.0 + 0 +LINE + 5 +1FA6 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14857.514442 + 30 +0.0 + 11 +26774.999918 + 21 +14879.165077 + 31 +0.0 + 0 +LINE + 5 +1FA7 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14922.466347 + 30 +0.0 + 11 +26740.0 + 21 +14939.786713 + 31 +0.0 + 0 +LINE + 5 +1FA8 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14844.523919 + 30 +0.0 + 11 +26812.499918 + 21 +14857.514442 + 31 +0.0 + 0 +LINE + 5 +1FA9 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14900.815712 + 30 +0.0 + 11 +26774.999918 + 21 +14922.466347 + 31 +0.0 + 0 +LINE + 5 +1FAA + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +14965.767618 + 30 +0.0 + 11 +26740.0 + 21 +14983.087983 + 31 +0.0 + 0 +LINE + 5 +1FAB + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14887.825189 + 30 +0.0 + 11 +26812.499918 + 21 +14900.815712 + 31 +0.0 + 0 +LINE + 5 +1FAC + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14944.116982 + 30 +0.0 + 11 +26774.999918 + 21 +14965.767618 + 31 +0.0 + 0 +LINE + 5 +1FAD + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +15009.068888 + 30 +0.0 + 11 +26740.0 + 21 +15026.389253 + 31 +0.0 + 0 +LINE + 5 +1FAE + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14931.126459 + 30 +0.0 + 11 +26812.499918 + 21 +14944.116982 + 31 +0.0 + 0 +LINE + 5 +1FAF + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +14987.418253 + 30 +0.0 + 11 +26774.999918 + 21 +15009.068888 + 31 +0.0 + 0 +LINE + 5 +1FB0 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +15052.370158 + 30 +0.0 + 11 +26740.0 + 21 +15069.690523 + 31 +0.0 + 0 +LINE + 5 +1FB1 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +14974.427729 + 30 +0.0 + 11 +26812.499918 + 21 +14987.418253 + 31 +0.0 + 0 +LINE + 5 +1FB2 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +15030.719523 + 30 +0.0 + 11 +26774.999918 + 21 +15052.370158 + 31 +0.0 + 0 +LINE + 5 +1FB3 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +15095.671428 + 30 +0.0 + 11 +26740.0 + 21 +15112.991793 + 31 +0.0 + 0 +LINE + 5 +1FB4 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15017.728999 + 30 +0.0 + 11 +26812.499918 + 21 +15030.719523 + 31 +0.0 + 0 +LINE + 5 +1FB5 + 8 +0 + 62 + 0 + 10 +26787.499918 + 20 +15074.020793 + 30 +0.0 + 11 +26774.999918 + 21 +15095.671428 + 31 +0.0 + 0 +LINE + 5 +1FB6 + 8 +0 + 62 + 0 + 10 +26749.999918 + 20 +15138.972698 + 30 +0.0 + 11 +26740.0 + 21 +15156.293063 + 31 +0.0 + 0 +LINE + 5 +1FB7 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15061.030269 + 30 +0.0 + 11 +26812.499917 + 21 +15074.020793 + 31 +0.0 + 0 +LINE + 5 +1FB8 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15117.322063 + 30 +0.0 + 11 +26774.999917 + 21 +15138.972698 + 31 +0.0 + 0 +LINE + 5 +1FB9 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15182.273968 + 30 +0.0 + 11 +26740.0 + 21 +15199.594333 + 31 +0.0 + 0 +LINE + 5 +1FBA + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15104.331539 + 30 +0.0 + 11 +26812.499917 + 21 +15117.322063 + 31 +0.0 + 0 +LINE + 5 +1FBB + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15160.623333 + 30 +0.0 + 11 +26774.999917 + 21 +15182.273968 + 31 +0.0 + 0 +LINE + 5 +1FBC + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15225.575238 + 30 +0.0 + 11 +26740.0 + 21 +15242.895603 + 31 +0.0 + 0 +LINE + 5 +1FBD + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15147.632809 + 30 +0.0 + 11 +26812.499917 + 21 +15160.623333 + 31 +0.0 + 0 +LINE + 5 +1FBE + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15203.924603 + 30 +0.0 + 11 +26774.999917 + 21 +15225.575238 + 31 +0.0 + 0 +LINE + 5 +1FBF + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15268.876509 + 30 +0.0 + 11 +26740.0 + 21 +15286.196873 + 31 +0.0 + 0 +LINE + 5 +1FC0 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15190.934079 + 30 +0.0 + 11 +26812.499917 + 21 +15203.924603 + 31 +0.0 + 0 +LINE + 5 +1FC1 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15247.225873 + 30 +0.0 + 11 +26774.999917 + 21 +15268.876509 + 31 +0.0 + 0 +LINE + 5 +1FC2 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15312.177779 + 30 +0.0 + 11 +26740.0 + 21 +15329.498143 + 31 +0.0 + 0 +LINE + 5 +1FC3 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15234.235349 + 30 +0.0 + 11 +26812.499917 + 21 +15247.225873 + 31 +0.0 + 0 +LINE + 5 +1FC4 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15290.527144 + 30 +0.0 + 11 +26774.999917 + 21 +15312.177779 + 31 +0.0 + 0 +LINE + 5 +1FC5 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15355.479049 + 30 +0.0 + 11 +26740.0 + 21 +15372.799413 + 31 +0.0 + 0 +LINE + 5 +1FC6 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15277.536619 + 30 +0.0 + 11 +26812.499917 + 21 +15290.527144 + 31 +0.0 + 0 +LINE + 5 +1FC7 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15333.828414 + 30 +0.0 + 11 +26774.999917 + 21 +15355.479049 + 31 +0.0 + 0 +LINE + 5 +1FC8 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15398.780319 + 30 +0.0 + 11 +26740.0 + 21 +15416.100683 + 31 +0.0 + 0 +LINE + 5 +1FC9 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15320.837889 + 30 +0.0 + 11 +26812.499917 + 21 +15333.828414 + 31 +0.0 + 0 +LINE + 5 +1FCA + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15377.129684 + 30 +0.0 + 11 +26774.999917 + 21 +15398.780319 + 31 +0.0 + 0 +LINE + 5 +1FCB + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15442.081589 + 30 +0.0 + 11 +26740.0 + 21 +15459.401953 + 31 +0.0 + 0 +LINE + 5 +1FCC + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15364.139159 + 30 +0.0 + 11 +26812.499917 + 21 +15377.129684 + 31 +0.0 + 0 +LINE + 5 +1FCD + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15420.430954 + 30 +0.0 + 11 +26774.999917 + 21 +15442.081589 + 31 +0.0 + 0 +LINE + 5 +1FCE + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15485.382859 + 30 +0.0 + 11 +26740.0 + 21 +15502.703223 + 31 +0.0 + 0 +LINE + 5 +1FCF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15407.440429 + 30 +0.0 + 11 +26812.499917 + 21 +15420.430954 + 31 +0.0 + 0 +LINE + 5 +1FD0 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15463.732224 + 30 +0.0 + 11 +26774.999917 + 21 +15485.382859 + 31 +0.0 + 0 +LINE + 5 +1FD1 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15528.684129 + 30 +0.0 + 11 +26740.0 + 21 +15546.004493 + 31 +0.0 + 0 +LINE + 5 +1FD2 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15450.741699 + 30 +0.0 + 11 +26812.499917 + 21 +15463.732224 + 31 +0.0 + 0 +LINE + 5 +1FD3 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15507.033494 + 30 +0.0 + 11 +26774.999917 + 21 +15528.684129 + 31 +0.0 + 0 +LINE + 5 +1FD4 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15571.9854 + 30 +0.0 + 11 +26740.0 + 21 +15589.305763 + 31 +0.0 + 0 +LINE + 5 +1FD5 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15494.042969 + 30 +0.0 + 11 +26812.499917 + 21 +15507.033494 + 31 +0.0 + 0 +LINE + 5 +1FD6 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15550.334764 + 30 +0.0 + 11 +26774.999917 + 21 +15571.9854 + 31 +0.0 + 0 +LINE + 5 +1FD7 + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15615.28667 + 30 +0.0 + 11 +26740.0 + 21 +15632.607033 + 31 +0.0 + 0 +LINE + 5 +1FD8 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15537.344239 + 30 +0.0 + 11 +26812.499917 + 21 +15550.334764 + 31 +0.0 + 0 +LINE + 5 +1FD9 + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15593.636035 + 30 +0.0 + 11 +26774.999917 + 21 +15615.28667 + 31 +0.0 + 0 +LINE + 5 +1FDA + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15658.58794 + 30 +0.0 + 11 +26740.0 + 21 +15675.908303 + 31 +0.0 + 0 +LINE + 5 +1FDB + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15580.645509 + 30 +0.0 + 11 +26812.499917 + 21 +15593.636035 + 31 +0.0 + 0 +LINE + 5 +1FDC + 8 +0 + 62 + 0 + 10 +26787.499917 + 20 +15636.937305 + 30 +0.0 + 11 +26774.999917 + 21 +15658.58794 + 31 +0.0 + 0 +LINE + 5 +1FDD + 8 +0 + 62 + 0 + 10 +26749.999917 + 20 +15701.88921 + 30 +0.0 + 11 +26740.0 + 21 +15719.209573 + 31 +0.0 + 0 +LINE + 5 +1FDE + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15623.946779 + 30 +0.0 + 11 +26812.499916 + 21 +15636.937305 + 31 +0.0 + 0 +LINE + 5 +1FDF + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15680.238575 + 30 +0.0 + 11 +26774.999916 + 21 +15701.88921 + 31 +0.0 + 0 +LINE + 5 +1FE0 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +15745.19048 + 30 +0.0 + 11 +26740.0 + 21 +15762.510843 + 31 +0.0 + 0 +LINE + 5 +1FE1 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15667.248049 + 30 +0.0 + 11 +26812.499916 + 21 +15680.238575 + 31 +0.0 + 0 +LINE + 5 +1FE2 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15723.539845 + 30 +0.0 + 11 +26774.999916 + 21 +15745.19048 + 31 +0.0 + 0 +LINE + 5 +1FE3 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +15788.49175 + 30 +0.0 + 11 +26740.0 + 21 +15805.812113 + 31 +0.0 + 0 +LINE + 5 +1FE4 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15710.549319 + 30 +0.0 + 11 +26812.499916 + 21 +15723.539845 + 31 +0.0 + 0 +LINE + 5 +1FE5 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15766.841115 + 30 +0.0 + 11 +26774.999916 + 21 +15788.49175 + 31 +0.0 + 0 +LINE + 5 +1FE6 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +15831.79302 + 30 +0.0 + 11 +26740.0 + 21 +15849.113383 + 31 +0.0 + 0 +LINE + 5 +1FE7 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15753.850589 + 30 +0.0 + 11 +26812.499916 + 21 +15766.841115 + 31 +0.0 + 0 +LINE + 5 +1FE8 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15810.142385 + 30 +0.0 + 11 +26774.999916 + 21 +15831.79302 + 31 +0.0 + 0 +LINE + 5 +1FE9 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +15875.094291 + 30 +0.0 + 11 +26740.0 + 21 +15892.414653 + 31 +0.0 + 0 +LINE + 5 +1FEA + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15797.151859 + 30 +0.0 + 11 +26812.499916 + 21 +15810.142385 + 31 +0.0 + 0 +LINE + 5 +1FEB + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15853.443655 + 30 +0.0 + 11 +26774.999916 + 21 +15875.094291 + 31 +0.0 + 0 +LINE + 5 +1FEC + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +15918.395561 + 30 +0.0 + 11 +26740.0 + 21 +15935.715923 + 31 +0.0 + 0 +LINE + 5 +1FED + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15840.453129 + 30 +0.0 + 11 +26812.499916 + 21 +15853.443655 + 31 +0.0 + 0 +LINE + 5 +1FEE + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15896.744926 + 30 +0.0 + 11 +26774.999916 + 21 +15918.395561 + 31 +0.0 + 0 +LINE + 5 +1FEF + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +15961.696831 + 30 +0.0 + 11 +26740.0 + 21 +15979.017193 + 31 +0.0 + 0 +LINE + 5 +1FF0 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15883.754399 + 30 +0.0 + 11 +26812.499916 + 21 +15896.744926 + 31 +0.0 + 0 +LINE + 5 +1FF1 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15940.046196 + 30 +0.0 + 11 +26774.999916 + 21 +15961.696831 + 31 +0.0 + 0 +LINE + 5 +1FF2 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +16004.998101 + 30 +0.0 + 11 +26740.0 + 21 +16022.318463 + 31 +0.0 + 0 +LINE + 5 +1FF3 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15927.055669 + 30 +0.0 + 11 +26812.499916 + 21 +15940.046196 + 31 +0.0 + 0 +LINE + 5 +1FF4 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +15983.347466 + 30 +0.0 + 11 +26774.999916 + 21 +16004.998101 + 31 +0.0 + 0 +LINE + 5 +1FF5 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +16048.299371 + 30 +0.0 + 11 +26740.0 + 21 +16065.619733 + 31 +0.0 + 0 +LINE + 5 +1FF6 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +15970.356939 + 30 +0.0 + 11 +26812.499916 + 21 +15983.347466 + 31 +0.0 + 0 +LINE + 5 +1FF7 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +16026.648736 + 30 +0.0 + 11 +26774.999916 + 21 +16048.299371 + 31 +0.0 + 0 +LINE + 5 +1FF8 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +16091.600641 + 30 +0.0 + 11 +26740.0 + 21 +16108.921003 + 31 +0.0 + 0 +LINE + 5 +1FF9 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16013.658209 + 30 +0.0 + 11 +26812.499916 + 21 +16026.648736 + 31 +0.0 + 0 +LINE + 5 +1FFA + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +16069.950006 + 30 +0.0 + 11 +26774.999916 + 21 +16091.600641 + 31 +0.0 + 0 +LINE + 5 +1FFB + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +16134.901911 + 30 +0.0 + 11 +26740.0 + 21 +16152.222273 + 31 +0.0 + 0 +LINE + 5 +1FFC + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16056.959479 + 30 +0.0 + 11 +26812.499916 + 21 +16069.950006 + 31 +0.0 + 0 +LINE + 5 +1FFD + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +16113.251276 + 30 +0.0 + 11 +26774.999916 + 21 +16134.901911 + 31 +0.0 + 0 +LINE + 5 +1FFE + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +16178.203182 + 30 +0.0 + 11 +26740.0 + 21 +16195.523543 + 31 +0.0 + 0 +LINE + 5 +1FFF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16100.260749 + 30 +0.0 + 11 +26812.499916 + 21 +16113.251276 + 31 +0.0 + 0 +LINE + 5 +2000 + 8 +0 + 62 + 0 + 10 +26787.499916 + 20 +16156.552546 + 30 +0.0 + 11 +26774.999916 + 21 +16178.203182 + 31 +0.0 + 0 +LINE + 5 +2001 + 8 +0 + 62 + 0 + 10 +26749.999916 + 20 +16221.504452 + 30 +0.0 + 11 +26740.0 + 21 +16238.824813 + 31 +0.0 + 0 +LINE + 5 +2002 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16143.562019 + 30 +0.0 + 11 +26812.499915 + 21 +16156.552546 + 31 +0.0 + 0 +LINE + 5 +2003 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16199.853817 + 30 +0.0 + 11 +26774.999915 + 21 +16221.504452 + 31 +0.0 + 0 +LINE + 5 +2004 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16264.805722 + 30 +0.0 + 11 +26740.0 + 21 +16282.126083 + 31 +0.0 + 0 +LINE + 5 +2005 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16186.863289 + 30 +0.0 + 11 +26812.499915 + 21 +16199.853817 + 31 +0.0 + 0 +LINE + 5 +2006 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16243.155087 + 30 +0.0 + 11 +26774.999915 + 21 +16264.805722 + 31 +0.0 + 0 +LINE + 5 +2007 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16308.106992 + 30 +0.0 + 11 +26740.0 + 21 +16325.427353 + 31 +0.0 + 0 +LINE + 5 +2008 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16230.164559 + 30 +0.0 + 11 +26812.499915 + 21 +16243.155087 + 31 +0.0 + 0 +LINE + 5 +2009 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16286.456357 + 30 +0.0 + 11 +26774.999915 + 21 +16308.106992 + 31 +0.0 + 0 +LINE + 5 +200A + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16351.408262 + 30 +0.0 + 11 +26740.0 + 21 +16368.728623 + 31 +0.0 + 0 +LINE + 5 +200B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16273.465829 + 30 +0.0 + 11 +26812.499915 + 21 +16286.456357 + 31 +0.0 + 0 +LINE + 5 +200C + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16329.757627 + 30 +0.0 + 11 +26774.999915 + 21 +16351.408262 + 31 +0.0 + 0 +LINE + 5 +200D + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16394.709532 + 30 +0.0 + 11 +26740.0 + 21 +16412.029893 + 31 +0.0 + 0 +LINE + 5 +200E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16316.767099 + 30 +0.0 + 11 +26812.499915 + 21 +16329.757627 + 31 +0.0 + 0 +LINE + 5 +200F + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16373.058897 + 30 +0.0 + 11 +26774.999915 + 21 +16394.709532 + 31 +0.0 + 0 +LINE + 5 +2010 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16438.010802 + 30 +0.0 + 11 +26740.0 + 21 +16455.331163 + 31 +0.0 + 0 +LINE + 5 +2011 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16360.068369 + 30 +0.0 + 11 +26812.499915 + 21 +16373.058897 + 31 +0.0 + 0 +LINE + 5 +2012 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16416.360167 + 30 +0.0 + 11 +26774.999915 + 21 +16438.010802 + 31 +0.0 + 0 +LINE + 5 +2013 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16481.312073 + 30 +0.0 + 11 +26740.0 + 21 +16498.632433 + 31 +0.0 + 0 +LINE + 5 +2014 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16403.369639 + 30 +0.0 + 11 +26812.499915 + 21 +16416.360167 + 31 +0.0 + 0 +LINE + 5 +2015 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16459.661437 + 30 +0.0 + 11 +26774.999915 + 21 +16481.312072 + 31 +0.0 + 0 +LINE + 5 +2016 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16524.613343 + 30 +0.0 + 11 +26740.0 + 21 +16541.933703 + 31 +0.0 + 0 +LINE + 5 +2017 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16446.670909 + 30 +0.0 + 11 +26812.499915 + 21 +16459.661437 + 31 +0.0 + 0 +LINE + 5 +2018 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16502.962708 + 30 +0.0 + 11 +26774.999915 + 21 +16524.613343 + 31 +0.0 + 0 +LINE + 5 +2019 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16567.914613 + 30 +0.0 + 11 +26740.0 + 21 +16585.234973 + 31 +0.0 + 0 +LINE + 5 +201A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16489.972179 + 30 +0.0 + 11 +26812.499915 + 21 +16502.962707 + 31 +0.0 + 0 +LINE + 5 +201B + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16546.263978 + 30 +0.0 + 11 +26774.999915 + 21 +16567.914613 + 31 +0.0 + 0 +LINE + 5 +201C + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16611.215883 + 30 +0.0 + 11 +26740.0 + 21 +16628.536243 + 31 +0.0 + 0 +LINE + 5 +201D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16533.273449 + 30 +0.0 + 11 +26812.499915 + 21 +16546.263978 + 31 +0.0 + 0 +LINE + 5 +201E + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16589.565248 + 30 +0.0 + 11 +26774.999915 + 21 +16611.215883 + 31 +0.0 + 0 +LINE + 5 +201F + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16654.517153 + 30 +0.0 + 11 +26740.0 + 21 +16671.837513 + 31 +0.0 + 0 +LINE + 5 +2020 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16576.574719 + 30 +0.0 + 11 +26812.499915 + 21 +16589.565248 + 31 +0.0 + 0 +LINE + 5 +2021 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16632.866518 + 30 +0.0 + 11 +26774.999915 + 21 +16654.517153 + 31 +0.0 + 0 +LINE + 5 +2022 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16697.818423 + 30 +0.0 + 11 +26740.0 + 21 +16715.138783 + 31 +0.0 + 0 +LINE + 5 +2023 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16619.875989 + 30 +0.0 + 11 +26812.499915 + 21 +16632.866518 + 31 +0.0 + 0 +LINE + 5 +2024 + 8 +0 + 62 + 0 + 10 +26787.499915 + 20 +16676.167788 + 30 +0.0 + 11 +26774.999915 + 21 +16697.818423 + 31 +0.0 + 0 +LINE + 5 +2025 + 8 +0 + 62 + 0 + 10 +26749.999915 + 20 +16741.119693 + 30 +0.0 + 11 +26740.0 + 21 +16758.440053 + 31 +0.0 + 0 +LINE + 5 +2026 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16663.177259 + 30 +0.0 + 11 +26812.499914 + 21 +16676.167788 + 31 +0.0 + 0 +LINE + 5 +2027 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16719.469058 + 30 +0.0 + 11 +26774.999914 + 21 +16741.119693 + 31 +0.0 + 0 +LINE + 5 +2028 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +16784.420964 + 30 +0.0 + 11 +26740.0 + 21 +16801.741323 + 31 +0.0 + 0 +LINE + 5 +2029 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16706.478529 + 30 +0.0 + 11 +26812.499914 + 21 +16719.469058 + 31 +0.0 + 0 +LINE + 5 +202A + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16762.770328 + 30 +0.0 + 11 +26774.999914 + 21 +16784.420963 + 31 +0.0 + 0 +LINE + 5 +202B + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +16827.722234 + 30 +0.0 + 11 +26740.0 + 21 +16845.042593 + 31 +0.0 + 0 +LINE + 5 +202C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16749.779799 + 30 +0.0 + 11 +26812.499914 + 21 +16762.770328 + 31 +0.0 + 0 +LINE + 5 +202D + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16806.071599 + 30 +0.0 + 11 +26774.999914 + 21 +16827.722234 + 31 +0.0 + 0 +LINE + 5 +202E + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +16871.023504 + 30 +0.0 + 11 +26740.0 + 21 +16888.343863 + 31 +0.0 + 0 +LINE + 5 +202F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16793.081069 + 30 +0.0 + 11 +26812.499914 + 21 +16806.071598 + 31 +0.0 + 0 +LINE + 5 +2030 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16849.372869 + 30 +0.0 + 11 +26774.999914 + 21 +16871.023504 + 31 +0.0 + 0 +LINE + 5 +2031 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +16914.324774 + 30 +0.0 + 11 +26740.0 + 21 +16931.645133 + 31 +0.0 + 0 +LINE + 5 +2032 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16836.382339 + 30 +0.0 + 11 +26812.499914 + 21 +16849.372869 + 31 +0.0 + 0 +LINE + 5 +2033 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16892.674139 + 30 +0.0 + 11 +26774.999914 + 21 +16914.324774 + 31 +0.0 + 0 +LINE + 5 +2034 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +16957.626044 + 30 +0.0 + 11 +26740.0 + 21 +16974.946403 + 31 +0.0 + 0 +LINE + 5 +2035 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16879.683609 + 30 +0.0 + 11 +26812.499914 + 21 +16892.674139 + 31 +0.0 + 0 +LINE + 5 +2036 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16935.975409 + 30 +0.0 + 11 +26774.999914 + 21 +16957.626044 + 31 +0.0 + 0 +LINE + 5 +2037 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17000.927314 + 30 +0.0 + 11 +26740.0 + 21 +17018.247673 + 31 +0.0 + 0 +LINE + 5 +2038 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16922.984879 + 30 +0.0 + 11 +26812.499914 + 21 +16935.975409 + 31 +0.0 + 0 +LINE + 5 +2039 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +16979.276679 + 30 +0.0 + 11 +26774.999914 + 21 +17000.927314 + 31 +0.0 + 0 +LINE + 5 +203A + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17044.228584 + 30 +0.0 + 11 +26740.0 + 21 +17061.548943 + 31 +0.0 + 0 +LINE + 5 +203B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +16966.286149 + 30 +0.0 + 11 +26812.499914 + 21 +16979.276679 + 31 +0.0 + 0 +LINE + 5 +203C + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +17022.577949 + 30 +0.0 + 11 +26774.999914 + 21 +17044.228584 + 31 +0.0 + 0 +LINE + 5 +203D + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17087.529855 + 30 +0.0 + 11 +26740.0 + 21 +17104.850213 + 31 +0.0 + 0 +LINE + 5 +203E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17009.587419 + 30 +0.0 + 11 +26812.499914 + 21 +17022.577949 + 31 +0.0 + 0 +LINE + 5 +203F + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +17065.879219 + 30 +0.0 + 11 +26774.999914 + 21 +17087.529854 + 31 +0.0 + 0 +LINE + 5 +2040 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17130.831125 + 30 +0.0 + 11 +26740.0 + 21 +17148.151483 + 31 +0.0 + 0 +LINE + 5 +2041 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17052.888689 + 30 +0.0 + 11 +26812.499914 + 21 +17065.879219 + 31 +0.0 + 0 +LINE + 5 +2042 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +17109.18049 + 30 +0.0 + 11 +26774.999914 + 21 +17130.831125 + 31 +0.0 + 0 +LINE + 5 +2043 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17174.132395 + 30 +0.0 + 11 +26740.0 + 21 +17191.452753 + 31 +0.0 + 0 +LINE + 5 +2044 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17096.189959 + 30 +0.0 + 11 +26812.499914 + 21 +17109.180489 + 31 +0.0 + 0 +LINE + 5 +2045 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +17152.48176 + 30 +0.0 + 11 +26774.999914 + 21 +17174.132395 + 31 +0.0 + 0 +LINE + 5 +2046 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17217.433665 + 30 +0.0 + 11 +26740.0 + 21 +17234.754023 + 31 +0.0 + 0 +LINE + 5 +2047 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17139.491229 + 30 +0.0 + 11 +26812.499914 + 21 +17152.48176 + 31 +0.0 + 0 +LINE + 5 +2048 + 8 +0 + 62 + 0 + 10 +26787.499914 + 20 +17195.78303 + 30 +0.0 + 11 +26774.999914 + 21 +17217.433665 + 31 +0.0 + 0 +LINE + 5 +2049 + 8 +0 + 62 + 0 + 10 +26749.999914 + 20 +17260.734935 + 30 +0.0 + 11 +26740.0 + 21 +17278.055293 + 31 +0.0 + 0 +LINE + 5 +204A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17182.792499 + 30 +0.0 + 11 +26812.499913 + 21 +17195.78303 + 31 +0.0 + 0 +LINE + 5 +204B + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17239.0843 + 30 +0.0 + 11 +26774.999913 + 21 +17260.734935 + 31 +0.0 + 0 +LINE + 5 +204C + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17304.036205 + 30 +0.0 + 11 +26740.0 + 21 +17321.356563 + 31 +0.0 + 0 +LINE + 5 +204D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17226.093769 + 30 +0.0 + 11 +26812.499913 + 21 +17239.0843 + 31 +0.0 + 0 +LINE + 5 +204E + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17282.38557 + 30 +0.0 + 11 +26774.999913 + 21 +17304.036205 + 31 +0.0 + 0 +LINE + 5 +204F + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17347.337475 + 30 +0.0 + 11 +26740.0 + 21 +17364.657833 + 31 +0.0 + 0 +LINE + 5 +2050 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17269.395039 + 30 +0.0 + 11 +26812.499913 + 21 +17282.38557 + 31 +0.0 + 0 +LINE + 5 +2051 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17325.68684 + 30 +0.0 + 11 +26774.999913 + 21 +17347.337475 + 31 +0.0 + 0 +LINE + 5 +2052 + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17390.638746 + 30 +0.0 + 11 +26740.0 + 21 +17407.959103 + 31 +0.0 + 0 +LINE + 5 +2053 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17312.696309 + 30 +0.0 + 11 +26812.499913 + 21 +17325.68684 + 31 +0.0 + 0 +LINE + 5 +2054 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17368.98811 + 30 +0.0 + 11 +26774.999913 + 21 +17390.638745 + 31 +0.0 + 0 +LINE + 5 +2055 + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17433.940016 + 30 +0.0 + 11 +26740.0 + 21 +17451.260373 + 31 +0.0 + 0 +LINE + 5 +2056 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17355.997579 + 30 +0.0 + 11 +26812.499913 + 21 +17368.98811 + 31 +0.0 + 0 +LINE + 5 +2057 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17412.289381 + 30 +0.0 + 11 +26774.999913 + 21 +17433.940016 + 31 +0.0 + 0 +LINE + 5 +2058 + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17477.241286 + 30 +0.0 + 11 +26740.0 + 21 +17494.561643 + 31 +0.0 + 0 +LINE + 5 +2059 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17399.298849 + 30 +0.0 + 11 +26812.499913 + 21 +17412.28938 + 31 +0.0 + 0 +LINE + 5 +205A + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17455.590651 + 30 +0.0 + 11 +26774.999913 + 21 +17477.241286 + 31 +0.0 + 0 +LINE + 5 +205B + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17520.542556 + 30 +0.0 + 11 +26740.0 + 21 +17537.862913 + 31 +0.0 + 0 +LINE + 5 +205C + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17442.600119 + 30 +0.0 + 11 +26812.499913 + 21 +17455.590651 + 31 +0.0 + 0 +LINE + 5 +205D + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17498.891921 + 30 +0.0 + 11 +26774.999913 + 21 +17520.542556 + 31 +0.0 + 0 +LINE + 5 +205E + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17563.843826 + 30 +0.0 + 11 +26740.0 + 21 +17581.164183 + 31 +0.0 + 0 +LINE + 5 +205F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17485.901389 + 30 +0.0 + 11 +26812.499913 + 21 +17498.891921 + 31 +0.0 + 0 +LINE + 5 +2060 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17542.193191 + 30 +0.0 + 11 +26774.999913 + 21 +17563.843826 + 31 +0.0 + 0 +LINE + 5 +2061 + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17607.145096 + 30 +0.0 + 11 +26740.0 + 21 +17624.465453 + 31 +0.0 + 0 +LINE + 5 +2062 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17529.202659 + 30 +0.0 + 11 +26812.499913 + 21 +17542.193191 + 31 +0.0 + 0 +LINE + 5 +2063 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17585.494461 + 30 +0.0 + 11 +26774.999913 + 21 +17607.145096 + 31 +0.0 + 0 +LINE + 5 +2064 + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17650.446366 + 30 +0.0 + 11 +26740.0 + 21 +17667.766723 + 31 +0.0 + 0 +LINE + 5 +2065 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17572.503929 + 30 +0.0 + 11 +26812.499913 + 21 +17585.494461 + 31 +0.0 + 0 +LINE + 5 +2066 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17628.795731 + 30 +0.0 + 11 +26774.999913 + 21 +17650.446366 + 31 +0.0 + 0 +LINE + 5 +2067 + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17693.747637 + 30 +0.0 + 11 +26740.0 + 21 +17711.067993 + 31 +0.0 + 0 +LINE + 5 +2068 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17615.805199 + 30 +0.0 + 11 +26812.499913 + 21 +17628.795731 + 31 +0.0 + 0 +LINE + 5 +2069 + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17672.097001 + 30 +0.0 + 11 +26774.999913 + 21 +17693.747636 + 31 +0.0 + 0 +LINE + 5 +206A + 8 +0 + 62 + 0 + 10 +26749.999913 + 20 +17737.048907 + 30 +0.0 + 11 +26741.800908 + 21 +17751.25 + 31 +0.0 + 0 +LINE + 5 +206B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17659.106469 + 30 +0.0 + 11 +26812.499913 + 21 +17672.097001 + 31 +0.0 + 0 +LINE + 5 +206C + 8 +0 + 62 + 0 + 10 +26787.499913 + 20 +17715.398272 + 30 +0.0 + 11 +26774.999913 + 21 +17737.048907 + 31 +0.0 + 0 +LINE + 5 +206D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17702.407739 + 30 +0.0 + 11 +26812.499912 + 21 +17715.398271 + 31 +0.0 + 0 +LINE + 5 +206E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +17745.709009 + 30 +0.0 + 11 +26816.800907 + 21 +17751.25 + 31 +0.0 + 0 +LINE + 5 +206F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14818.543487 + 30 +0.0 + 11 +26749.999939 + 21 +14835.863889 + 31 +0.0 + 0 +LINE + 5 +2070 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14879.16516 + 30 +0.0 + 11 +26787.499939 + 21 +14900.815795 + 31 +0.0 + 0 +LINE + 5 +2071 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14944.117065 + 30 +0.0 + 11 +26820.0 + 21 +14957.107551 + 31 +0.0 + 0 +LINE + 5 +2072 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14861.844757 + 30 +0.0 + 11 +26749.999939 + 21 +14879.16516 + 31 +0.0 + 0 +LINE + 5 +2073 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14922.46643 + 30 +0.0 + 11 +26787.499939 + 21 +14944.117065 + 31 +0.0 + 0 +LINE + 5 +2074 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14987.418335 + 30 +0.0 + 11 +26820.0 + 21 +15000.408821 + 31 +0.0 + 0 +LINE + 5 +2075 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14905.146027 + 30 +0.0 + 11 +26749.999939 + 21 +14922.46643 + 31 +0.0 + 0 +LINE + 5 +2076 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14965.7677 + 30 +0.0 + 11 +26787.499939 + 21 +14987.418335 + 31 +0.0 + 0 +LINE + 5 +2077 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +15030.719605 + 30 +0.0 + 11 +26820.0 + 21 +15043.710091 + 31 +0.0 + 0 +LINE + 5 +2078 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14948.447297 + 30 +0.0 + 11 +26749.99994 + 21 +14965.7677 + 31 +0.0 + 0 +LINE + 5 +2079 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15009.06897 + 30 +0.0 + 11 +26787.49994 + 21 +15030.719605 + 31 +0.0 + 0 +LINE + 5 +207A + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15074.020875 + 30 +0.0 + 11 +26820.0 + 21 +15087.011361 + 31 +0.0 + 0 +LINE + 5 +207B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14991.748567 + 30 +0.0 + 11 +26749.99994 + 21 +15009.06897 + 31 +0.0 + 0 +LINE + 5 +207C + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15052.37024 + 30 +0.0 + 11 +26787.49994 + 21 +15074.020875 + 31 +0.0 + 0 +LINE + 5 +207D + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15117.322146 + 30 +0.0 + 11 +26820.0 + 21 +15130.312631 + 31 +0.0 + 0 +LINE + 5 +207E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15035.049837 + 30 +0.0 + 11 +26749.99994 + 21 +15052.37024 + 31 +0.0 + 0 +LINE + 5 +207F + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15095.67151 + 30 +0.0 + 11 +26787.49994 + 21 +15117.322145 + 31 +0.0 + 0 +LINE + 5 +2080 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15160.623416 + 30 +0.0 + 11 +26820.0 + 21 +15173.613901 + 31 +0.0 + 0 +LINE + 5 +2081 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15078.351107 + 30 +0.0 + 11 +26749.99994 + 21 +15095.67151 + 31 +0.0 + 0 +LINE + 5 +2082 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15138.972781 + 30 +0.0 + 11 +26787.49994 + 21 +15160.623416 + 31 +0.0 + 0 +LINE + 5 +2083 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15203.924686 + 30 +0.0 + 11 +26820.0 + 21 +15216.915171 + 31 +0.0 + 0 +LINE + 5 +2084 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15121.652377 + 30 +0.0 + 11 +26749.99994 + 21 +15138.97278 + 31 +0.0 + 0 +LINE + 5 +2085 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15182.274051 + 30 +0.0 + 11 +26787.49994 + 21 +15203.924686 + 31 +0.0 + 0 +LINE + 5 +2086 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15247.225956 + 30 +0.0 + 11 +26820.0 + 21 +15260.216441 + 31 +0.0 + 0 +LINE + 5 +2087 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15164.953647 + 30 +0.0 + 11 +26749.99994 + 21 +15182.274051 + 31 +0.0 + 0 +LINE + 5 +2088 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15225.575321 + 30 +0.0 + 11 +26787.49994 + 21 +15247.225956 + 31 +0.0 + 0 +LINE + 5 +2089 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15290.527226 + 30 +0.0 + 11 +26820.0 + 21 +15303.517711 + 31 +0.0 + 0 +LINE + 5 +208A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15208.254917 + 30 +0.0 + 11 +26749.99994 + 21 +15225.575321 + 31 +0.0 + 0 +LINE + 5 +208B + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15268.876591 + 30 +0.0 + 11 +26787.49994 + 21 +15290.527226 + 31 +0.0 + 0 +LINE + 5 +208C + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15333.828496 + 30 +0.0 + 11 +26820.0 + 21 +15346.818981 + 31 +0.0 + 0 +LINE + 5 +208D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15251.556187 + 30 +0.0 + 11 +26749.99994 + 21 +15268.876591 + 31 +0.0 + 0 +LINE + 5 +208E + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15312.177861 + 30 +0.0 + 11 +26787.49994 + 21 +15333.828496 + 31 +0.0 + 0 +LINE + 5 +208F + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15377.129766 + 30 +0.0 + 11 +26820.0 + 21 +15390.120251 + 31 +0.0 + 0 +LINE + 5 +2090 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15294.857457 + 30 +0.0 + 11 +26749.99994 + 21 +15312.177861 + 31 +0.0 + 0 +LINE + 5 +2091 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15355.479131 + 30 +0.0 + 11 +26787.49994 + 21 +15377.129766 + 31 +0.0 + 0 +LINE + 5 +2092 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15420.431036 + 30 +0.0 + 11 +26820.0 + 21 +15433.421521 + 31 +0.0 + 0 +LINE + 5 +2093 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15338.158727 + 30 +0.0 + 11 +26749.99994 + 21 +15355.479131 + 31 +0.0 + 0 +LINE + 5 +2094 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15398.780401 + 30 +0.0 + 11 +26787.49994 + 21 +15420.431036 + 31 +0.0 + 0 +LINE + 5 +2095 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15463.732307 + 30 +0.0 + 11 +26820.0 + 21 +15476.722791 + 31 +0.0 + 0 +LINE + 5 +2096 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15381.459997 + 30 +0.0 + 11 +26749.99994 + 21 +15398.780401 + 31 +0.0 + 0 +LINE + 5 +2097 + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15442.081671 + 30 +0.0 + 11 +26787.49994 + 21 +15463.732307 + 31 +0.0 + 0 +LINE + 5 +2098 + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15507.033577 + 30 +0.0 + 11 +26820.0 + 21 +15520.024061 + 31 +0.0 + 0 +LINE + 5 +2099 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15424.761267 + 30 +0.0 + 11 +26749.99994 + 21 +15442.081671 + 31 +0.0 + 0 +LINE + 5 +209A + 8 +0 + 62 + 0 + 10 +26774.99994 + 20 +15485.382942 + 30 +0.0 + 11 +26787.49994 + 21 +15507.033577 + 31 +0.0 + 0 +LINE + 5 +209B + 8 +0 + 62 + 0 + 10 +26812.49994 + 20 +15550.334847 + 30 +0.0 + 11 +26820.0 + 21 +15563.325331 + 31 +0.0 + 0 +LINE + 5 +209C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15468.062537 + 30 +0.0 + 11 +26749.999941 + 21 +15485.382942 + 31 +0.0 + 0 +LINE + 5 +209D + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15528.684212 + 30 +0.0 + 11 +26787.499941 + 21 +15550.334847 + 31 +0.0 + 0 +LINE + 5 +209E + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15593.636117 + 30 +0.0 + 11 +26820.0 + 21 +15606.626601 + 31 +0.0 + 0 +LINE + 5 +209F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15511.363807 + 30 +0.0 + 11 +26749.999941 + 21 +15528.684212 + 31 +0.0 + 0 +LINE + 5 +20A0 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15571.985482 + 30 +0.0 + 11 +26787.499941 + 21 +15593.636117 + 31 +0.0 + 0 +LINE + 5 +20A1 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15636.937387 + 30 +0.0 + 11 +26820.0 + 21 +15649.927871 + 31 +0.0 + 0 +LINE + 5 +20A2 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15554.665077 + 30 +0.0 + 11 +26749.999941 + 21 +15571.985482 + 31 +0.0 + 0 +LINE + 5 +20A3 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15615.286752 + 30 +0.0 + 11 +26787.499941 + 21 +15636.937387 + 31 +0.0 + 0 +LINE + 5 +20A4 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15680.238657 + 30 +0.0 + 11 +26820.0 + 21 +15693.229141 + 31 +0.0 + 0 +LINE + 5 +20A5 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15597.966347 + 30 +0.0 + 11 +26749.999941 + 21 +15615.286752 + 31 +0.0 + 0 +LINE + 5 +20A6 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15658.588022 + 30 +0.0 + 11 +26787.499941 + 21 +15680.238657 + 31 +0.0 + 0 +LINE + 5 +20A7 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15723.539927 + 30 +0.0 + 11 +26820.0 + 21 +15736.530411 + 31 +0.0 + 0 +LINE + 5 +20A8 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15641.267617 + 30 +0.0 + 11 +26749.999941 + 21 +15658.588022 + 31 +0.0 + 0 +LINE + 5 +20A9 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15701.889292 + 30 +0.0 + 11 +26787.499941 + 21 +15723.539927 + 31 +0.0 + 0 +LINE + 5 +20AA + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15766.841198 + 30 +0.0 + 11 +26820.0 + 21 +15779.831681 + 31 +0.0 + 0 +LINE + 5 +20AB + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15684.568887 + 30 +0.0 + 11 +26749.999941 + 21 +15701.889292 + 31 +0.0 + 0 +LINE + 5 +20AC + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15745.190562 + 30 +0.0 + 11 +26787.499941 + 21 +15766.841198 + 31 +0.0 + 0 +LINE + 5 +20AD + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15810.142468 + 30 +0.0 + 11 +26820.0 + 21 +15823.132951 + 31 +0.0 + 0 +LINE + 5 +20AE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15727.870157 + 30 +0.0 + 11 +26749.999941 + 21 +15745.190562 + 31 +0.0 + 0 +LINE + 5 +20AF + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15788.491833 + 30 +0.0 + 11 +26787.499941 + 21 +15810.142468 + 31 +0.0 + 0 +LINE + 5 +20B0 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15853.443738 + 30 +0.0 + 11 +26820.0 + 21 +15866.434221 + 31 +0.0 + 0 +LINE + 5 +20B1 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15771.171427 + 30 +0.0 + 11 +26749.999941 + 21 +15788.491833 + 31 +0.0 + 0 +LINE + 5 +20B2 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15831.793103 + 30 +0.0 + 11 +26787.499941 + 21 +15853.443738 + 31 +0.0 + 0 +LINE + 5 +20B3 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15896.745008 + 30 +0.0 + 11 +26820.0 + 21 +15909.735491 + 31 +0.0 + 0 +LINE + 5 +20B4 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15814.472697 + 30 +0.0 + 11 +26749.999941 + 21 +15831.793103 + 31 +0.0 + 0 +LINE + 5 +20B5 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15875.094373 + 30 +0.0 + 11 +26787.499941 + 21 +15896.745008 + 31 +0.0 + 0 +LINE + 5 +20B6 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15940.046278 + 30 +0.0 + 11 +26820.0 + 21 +15953.036761 + 31 +0.0 + 0 +LINE + 5 +20B7 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15857.773967 + 30 +0.0 + 11 +26749.999941 + 21 +15875.094373 + 31 +0.0 + 0 +LINE + 5 +20B8 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15918.395643 + 30 +0.0 + 11 +26787.499941 + 21 +15940.046278 + 31 +0.0 + 0 +LINE + 5 +20B9 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +15983.347548 + 30 +0.0 + 11 +26820.0 + 21 +15996.338031 + 31 +0.0 + 0 +LINE + 5 +20BA + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15901.075237 + 30 +0.0 + 11 +26749.999941 + 21 +15918.395643 + 31 +0.0 + 0 +LINE + 5 +20BB + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +15961.696913 + 30 +0.0 + 11 +26787.499941 + 21 +15983.347548 + 31 +0.0 + 0 +LINE + 5 +20BC + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +16026.648818 + 30 +0.0 + 11 +26820.0 + 21 +16039.639301 + 31 +0.0 + 0 +LINE + 5 +20BD + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15944.376507 + 30 +0.0 + 11 +26749.999941 + 21 +15961.696913 + 31 +0.0 + 0 +LINE + 5 +20BE + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +16004.998183 + 30 +0.0 + 11 +26787.499941 + 21 +16026.648818 + 31 +0.0 + 0 +LINE + 5 +20BF + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +16069.950089 + 30 +0.0 + 11 +26820.0 + 21 +16082.940571 + 31 +0.0 + 0 +LINE + 5 +20C0 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +15987.677777 + 30 +0.0 + 11 +26749.999941 + 21 +16004.998183 + 31 +0.0 + 0 +LINE + 5 +20C1 + 8 +0 + 62 + 0 + 10 +26774.999941 + 20 +16048.299453 + 30 +0.0 + 11 +26787.499941 + 21 +16069.950089 + 31 +0.0 + 0 +LINE + 5 +20C2 + 8 +0 + 62 + 0 + 10 +26812.499941 + 20 +16113.251359 + 30 +0.0 + 11 +26820.0 + 21 +16126.241841 + 31 +0.0 + 0 +LINE + 5 +20C3 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16030.979047 + 30 +0.0 + 11 +26749.999942 + 21 +16048.299453 + 31 +0.0 + 0 +LINE + 5 +20C4 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16091.600724 + 30 +0.0 + 11 +26787.499942 + 21 +16113.251359 + 31 +0.0 + 0 +LINE + 5 +20C5 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16156.552629 + 30 +0.0 + 11 +26820.0 + 21 +16169.543111 + 31 +0.0 + 0 +LINE + 5 +20C6 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16074.280317 + 30 +0.0 + 11 +26749.999942 + 21 +16091.600724 + 31 +0.0 + 0 +LINE + 5 +20C7 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16134.901994 + 30 +0.0 + 11 +26787.499942 + 21 +16156.552629 + 31 +0.0 + 0 +LINE + 5 +20C8 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16199.853899 + 30 +0.0 + 11 +26820.0 + 21 +16212.844381 + 31 +0.0 + 0 +LINE + 5 +20C9 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16117.581587 + 30 +0.0 + 11 +26749.999942 + 21 +16134.901994 + 31 +0.0 + 0 +LINE + 5 +20CA + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16178.203264 + 30 +0.0 + 11 +26787.499942 + 21 +16199.853899 + 31 +0.0 + 0 +LINE + 5 +20CB + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16243.155169 + 30 +0.0 + 11 +26820.0 + 21 +16256.145651 + 31 +0.0 + 0 +LINE + 5 +20CC + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16160.882857 + 30 +0.0 + 11 +26749.999942 + 21 +16178.203264 + 31 +0.0 + 0 +LINE + 5 +20CD + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16221.504534 + 30 +0.0 + 11 +26787.499942 + 21 +16243.155169 + 31 +0.0 + 0 +LINE + 5 +20CE + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16286.456439 + 30 +0.0 + 11 +26820.0 + 21 +16299.446921 + 31 +0.0 + 0 +LINE + 5 +20CF + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16204.184127 + 30 +0.0 + 11 +26749.999942 + 21 +16221.504534 + 31 +0.0 + 0 +LINE + 5 +20D0 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16264.805804 + 30 +0.0 + 11 +26787.499942 + 21 +16286.456439 + 31 +0.0 + 0 +LINE + 5 +20D1 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16329.757709 + 30 +0.0 + 11 +26820.0 + 21 +16342.748191 + 31 +0.0 + 0 +LINE + 5 +20D2 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16247.485397 + 30 +0.0 + 11 +26749.999942 + 21 +16264.805804 + 31 +0.0 + 0 +LINE + 5 +20D3 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16308.107074 + 30 +0.0 + 11 +26787.499942 + 21 +16329.757709 + 31 +0.0 + 0 +LINE + 5 +20D4 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16373.05898 + 30 +0.0 + 11 +26820.0 + 21 +16386.049461 + 31 +0.0 + 0 +LINE + 5 +20D5 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16290.786667 + 30 +0.0 + 11 +26749.999942 + 21 +16308.107074 + 31 +0.0 + 0 +LINE + 5 +20D6 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16351.408344 + 30 +0.0 + 11 +26787.499942 + 21 +16373.05898 + 31 +0.0 + 0 +LINE + 5 +20D7 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16416.36025 + 30 +0.0 + 11 +26820.0 + 21 +16429.350731 + 31 +0.0 + 0 +LINE + 5 +20D8 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16334.087937 + 30 +0.0 + 11 +26749.999942 + 21 +16351.408344 + 31 +0.0 + 0 +LINE + 5 +20D9 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16394.709615 + 30 +0.0 + 11 +26787.499942 + 21 +16416.36025 + 31 +0.0 + 0 +LINE + 5 +20DA + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16459.66152 + 30 +0.0 + 11 +26820.0 + 21 +16472.652001 + 31 +0.0 + 0 +LINE + 5 +20DB + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16377.389207 + 30 +0.0 + 11 +26749.999942 + 21 +16394.709615 + 31 +0.0 + 0 +LINE + 5 +20DC + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16438.010885 + 30 +0.0 + 11 +26787.499942 + 21 +16459.66152 + 31 +0.0 + 0 +LINE + 5 +20DD + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16502.96279 + 30 +0.0 + 11 +26820.0 + 21 +16515.953271 + 31 +0.0 + 0 +LINE + 5 +20DE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16420.690477 + 30 +0.0 + 11 +26749.999942 + 21 +16438.010885 + 31 +0.0 + 0 +LINE + 5 +20DF + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16481.312155 + 30 +0.0 + 11 +26787.499942 + 21 +16502.96279 + 31 +0.0 + 0 +LINE + 5 +20E0 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16546.26406 + 30 +0.0 + 11 +26820.0 + 21 +16559.254541 + 31 +0.0 + 0 +LINE + 5 +20E1 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16463.991747 + 30 +0.0 + 11 +26749.999942 + 21 +16481.312155 + 31 +0.0 + 0 +LINE + 5 +20E2 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16524.613425 + 30 +0.0 + 11 +26787.499942 + 21 +16546.26406 + 31 +0.0 + 0 +LINE + 5 +20E3 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16589.56533 + 30 +0.0 + 11 +26820.0 + 21 +16602.555811 + 31 +0.0 + 0 +LINE + 5 +20E4 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16507.293017 + 30 +0.0 + 11 +26749.999942 + 21 +16524.613425 + 31 +0.0 + 0 +LINE + 5 +20E5 + 8 +0 + 62 + 0 + 10 +26774.999942 + 20 +16567.914695 + 30 +0.0 + 11 +26787.499942 + 21 +16589.56533 + 31 +0.0 + 0 +LINE + 5 +20E6 + 8 +0 + 62 + 0 + 10 +26812.499942 + 20 +16632.8666 + 30 +0.0 + 11 +26820.0 + 21 +16645.857081 + 31 +0.0 + 0 +LINE + 5 +20E7 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16550.594287 + 30 +0.0 + 11 +26749.999943 + 21 +16567.914695 + 31 +0.0 + 0 +LINE + 5 +20E8 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16611.215965 + 30 +0.0 + 11 +26787.499943 + 21 +16632.8666 + 31 +0.0 + 0 +LINE + 5 +20E9 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16676.167871 + 30 +0.0 + 11 +26820.0 + 21 +16689.158351 + 31 +0.0 + 0 +LINE + 5 +20EA + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16593.895557 + 30 +0.0 + 11 +26749.999943 + 21 +16611.215965 + 31 +0.0 + 0 +LINE + 5 +20EB + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16654.517235 + 30 +0.0 + 11 +26787.499943 + 21 +16676.167871 + 31 +0.0 + 0 +LINE + 5 +20EC + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16719.469141 + 30 +0.0 + 11 +26820.0 + 21 +16732.459621 + 31 +0.0 + 0 +LINE + 5 +20ED + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16637.196827 + 30 +0.0 + 11 +26749.999943 + 21 +16654.517235 + 31 +0.0 + 0 +LINE + 5 +20EE + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16697.818506 + 30 +0.0 + 11 +26787.499943 + 21 +16719.469141 + 31 +0.0 + 0 +LINE + 5 +20EF + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16762.770411 + 30 +0.0 + 11 +26820.0 + 21 +16775.760891 + 31 +0.0 + 0 +LINE + 5 +20F0 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16680.498097 + 30 +0.0 + 11 +26749.999943 + 21 +16697.818506 + 31 +0.0 + 0 +LINE + 5 +20F1 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16741.119776 + 30 +0.0 + 11 +26787.499943 + 21 +16762.770411 + 31 +0.0 + 0 +LINE + 5 +20F2 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16806.071681 + 30 +0.0 + 11 +26820.0 + 21 +16819.062161 + 31 +0.0 + 0 +LINE + 5 +20F3 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16723.799367 + 30 +0.0 + 11 +26749.999943 + 21 +16741.119776 + 31 +0.0 + 0 +LINE + 5 +20F4 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16784.421046 + 30 +0.0 + 11 +26787.499943 + 21 +16806.071681 + 31 +0.0 + 0 +LINE + 5 +20F5 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16849.372951 + 30 +0.0 + 11 +26820.0 + 21 +16862.363431 + 31 +0.0 + 0 +LINE + 5 +20F6 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16767.100637 + 30 +0.0 + 11 +26749.999943 + 21 +16784.421046 + 31 +0.0 + 0 +LINE + 5 +20F7 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16827.722316 + 30 +0.0 + 11 +26787.499943 + 21 +16849.372951 + 31 +0.0 + 0 +LINE + 5 +20F8 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16892.674221 + 30 +0.0 + 11 +26820.0 + 21 +16905.664701 + 31 +0.0 + 0 +LINE + 5 +20F9 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16810.401907 + 30 +0.0 + 11 +26749.999943 + 21 +16827.722316 + 31 +0.0 + 0 +LINE + 5 +20FA + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16871.023586 + 30 +0.0 + 11 +26787.499943 + 21 +16892.674221 + 31 +0.0 + 0 +LINE + 5 +20FB + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16935.975491 + 30 +0.0 + 11 +26820.0 + 21 +16948.965971 + 31 +0.0 + 0 +LINE + 5 +20FC + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16853.703177 + 30 +0.0 + 11 +26749.999943 + 21 +16871.023586 + 31 +0.0 + 0 +LINE + 5 +20FD + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16914.324856 + 30 +0.0 + 11 +26787.499943 + 21 +16935.975491 + 31 +0.0 + 0 +LINE + 5 +20FE + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +16979.276762 + 30 +0.0 + 11 +26820.0 + 21 +16992.267241 + 31 +0.0 + 0 +LINE + 5 +20FF + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16897.004447 + 30 +0.0 + 11 +26749.999943 + 21 +16914.324856 + 31 +0.0 + 0 +LINE + 5 +2100 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +16957.626126 + 30 +0.0 + 11 +26787.499943 + 21 +16979.276762 + 31 +0.0 + 0 +LINE + 5 +2101 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +17022.578032 + 30 +0.0 + 11 +26820.0 + 21 +17035.568511 + 31 +0.0 + 0 +LINE + 5 +2102 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16940.305717 + 30 +0.0 + 11 +26749.999943 + 21 +16957.626126 + 31 +0.0 + 0 +LINE + 5 +2103 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +17000.927397 + 30 +0.0 + 11 +26787.499943 + 21 +17022.578032 + 31 +0.0 + 0 +LINE + 5 +2104 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +17065.879302 + 30 +0.0 + 11 +26820.0 + 21 +17078.869781 + 31 +0.0 + 0 +LINE + 5 +2105 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +16983.606987 + 30 +0.0 + 11 +26749.999943 + 21 +17000.927397 + 31 +0.0 + 0 +LINE + 5 +2106 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +17044.228667 + 30 +0.0 + 11 +26787.499943 + 21 +17065.879302 + 31 +0.0 + 0 +LINE + 5 +2107 + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +17109.180572 + 30 +0.0 + 11 +26820.0 + 21 +17122.171051 + 31 +0.0 + 0 +LINE + 5 +2108 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17026.908257 + 30 +0.0 + 11 +26749.999943 + 21 +17044.228667 + 31 +0.0 + 0 +LINE + 5 +2109 + 8 +0 + 62 + 0 + 10 +26774.999943 + 20 +17087.529937 + 30 +0.0 + 11 +26787.499943 + 21 +17109.180572 + 31 +0.0 + 0 +LINE + 5 +210A + 8 +0 + 62 + 0 + 10 +26812.499943 + 20 +17152.481842 + 30 +0.0 + 11 +26820.0 + 21 +17165.472321 + 31 +0.0 + 0 +LINE + 5 +210B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17070.209527 + 30 +0.0 + 11 +26749.999944 + 21 +17087.529937 + 31 +0.0 + 0 +LINE + 5 +210C + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17130.831207 + 30 +0.0 + 11 +26787.499944 + 21 +17152.481842 + 31 +0.0 + 0 +LINE + 5 +210D + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17195.783112 + 30 +0.0 + 11 +26820.0 + 21 +17208.773591 + 31 +0.0 + 0 +LINE + 5 +210E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17113.510797 + 30 +0.0 + 11 +26749.999944 + 21 +17130.831207 + 31 +0.0 + 0 +LINE + 5 +210F + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17174.132477 + 30 +0.0 + 11 +26787.499944 + 21 +17195.783112 + 31 +0.0 + 0 +LINE + 5 +2110 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17239.084382 + 30 +0.0 + 11 +26820.0 + 21 +17252.074861 + 31 +0.0 + 0 +LINE + 5 +2111 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17156.812067 + 30 +0.0 + 11 +26749.999944 + 21 +17174.132477 + 31 +0.0 + 0 +LINE + 5 +2112 + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17217.433747 + 30 +0.0 + 11 +26787.499944 + 21 +17239.084382 + 31 +0.0 + 0 +LINE + 5 +2113 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17282.385653 + 30 +0.0 + 11 +26820.0 + 21 +17295.376131 + 31 +0.0 + 0 +LINE + 5 +2114 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17200.113337 + 30 +0.0 + 11 +26749.999944 + 21 +17217.433747 + 31 +0.0 + 0 +LINE + 5 +2115 + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17260.735017 + 30 +0.0 + 11 +26787.499944 + 21 +17282.385653 + 31 +0.0 + 0 +LINE + 5 +2116 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17325.686923 + 30 +0.0 + 11 +26820.0 + 21 +17338.677401 + 31 +0.0 + 0 +LINE + 5 +2117 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17243.414607 + 30 +0.0 + 11 +26749.999944 + 21 +17260.735017 + 31 +0.0 + 0 +LINE + 5 +2118 + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17304.036288 + 30 +0.0 + 11 +26787.499944 + 21 +17325.686923 + 31 +0.0 + 0 +LINE + 5 +2119 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17368.988193 + 30 +0.0 + 11 +26820.0 + 21 +17381.978671 + 31 +0.0 + 0 +LINE + 5 +211A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17286.715877 + 30 +0.0 + 11 +26749.999944 + 21 +17304.036288 + 31 +0.0 + 0 +LINE + 5 +211B + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17347.337558 + 30 +0.0 + 11 +26787.499944 + 21 +17368.988193 + 31 +0.0 + 0 +LINE + 5 +211C + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17412.289463 + 30 +0.0 + 11 +26820.0 + 21 +17425.279941 + 31 +0.0 + 0 +LINE + 5 +211D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17330.017147 + 30 +0.0 + 11 +26749.999944 + 21 +17347.337558 + 31 +0.0 + 0 +LINE + 5 +211E + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17390.638828 + 30 +0.0 + 11 +26787.499944 + 21 +17412.289463 + 31 +0.0 + 0 +LINE + 5 +211F + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17455.590733 + 30 +0.0 + 11 +26820.0 + 21 +17468.581211 + 31 +0.0 + 0 +LINE + 5 +2120 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17373.318417 + 30 +0.0 + 11 +26749.999944 + 21 +17390.638828 + 31 +0.0 + 0 +LINE + 5 +2121 + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17433.940098 + 30 +0.0 + 11 +26787.499944 + 21 +17455.590733 + 31 +0.0 + 0 +LINE + 5 +2122 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17498.892003 + 30 +0.0 + 11 +26820.0 + 21 +17511.882481 + 31 +0.0 + 0 +LINE + 5 +2123 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17416.619687 + 30 +0.0 + 11 +26749.999944 + 21 +17433.940098 + 31 +0.0 + 0 +LINE + 5 +2124 + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17477.241368 + 30 +0.0 + 11 +26787.499944 + 21 +17498.892003 + 31 +0.0 + 0 +LINE + 5 +2125 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17542.193273 + 30 +0.0 + 11 +26820.0 + 21 +17555.183751 + 31 +0.0 + 0 +LINE + 5 +2126 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17459.920957 + 30 +0.0 + 11 +26749.999944 + 21 +17477.241368 + 31 +0.0 + 0 +LINE + 5 +2127 + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17520.542638 + 30 +0.0 + 11 +26787.499944 + 21 +17542.193273 + 31 +0.0 + 0 +LINE + 5 +2128 + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17585.494544 + 30 +0.0 + 11 +26820.0 + 21 +17598.485021 + 31 +0.0 + 0 +LINE + 5 +2129 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17503.222227 + 30 +0.0 + 11 +26749.999944 + 21 +17520.542638 + 31 +0.0 + 0 +LINE + 5 +212A + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17563.843908 + 30 +0.0 + 11 +26787.499944 + 21 +17585.494544 + 31 +0.0 + 0 +LINE + 5 +212B + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17628.795814 + 30 +0.0 + 11 +26820.0 + 21 +17641.786291 + 31 +0.0 + 0 +LINE + 5 +212C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17546.523497 + 30 +0.0 + 11 +26749.999944 + 21 +17563.843908 + 31 +0.0 + 0 +LINE + 5 +212D + 8 +0 + 62 + 0 + 10 +26774.999944 + 20 +17607.145179 + 30 +0.0 + 11 +26787.499944 + 21 +17628.795814 + 31 +0.0 + 0 +LINE + 5 +212E + 8 +0 + 62 + 0 + 10 +26812.499944 + 20 +17672.097084 + 30 +0.0 + 11 +26820.0 + 21 +17685.087561 + 31 +0.0 + 0 +LINE + 5 +212F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17589.824767 + 30 +0.0 + 11 +26749.999945 + 21 +17607.145179 + 31 +0.0 + 0 +LINE + 5 +2130 + 8 +0 + 62 + 0 + 10 +26774.999945 + 20 +17650.446449 + 30 +0.0 + 11 +26787.499945 + 21 +17672.097084 + 31 +0.0 + 0 +LINE + 5 +2131 + 8 +0 + 62 + 0 + 10 +26812.499945 + 20 +17715.398354 + 30 +0.0 + 11 +26820.0 + 21 +17728.388831 + 31 +0.0 + 0 +LINE + 5 +2132 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17633.126037 + 30 +0.0 + 11 +26749.999945 + 21 +17650.446449 + 31 +0.0 + 0 +LINE + 5 +2133 + 8 +0 + 62 + 0 + 10 +26774.999945 + 20 +17693.747719 + 30 +0.0 + 11 +26787.499945 + 21 +17715.398354 + 31 +0.0 + 0 +LINE + 5 +2134 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17676.427307 + 30 +0.0 + 11 +26749.999945 + 21 +17693.747719 + 31 +0.0 + 0 +LINE + 5 +2135 + 8 +0 + 62 + 0 + 10 +26774.999945 + 20 +17737.048989 + 30 +0.0 + 11 +26783.198902 + 21 +17751.25 + 31 +0.0 + 0 +LINE + 5 +2136 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +17719.728577 + 30 +0.0 + 11 +26749.999945 + 21 +17737.048989 + 31 +0.0 + 0 +LINE + 5 +2137 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14775.242217 + 30 +0.0 + 11 +26749.999939 + 21 +14792.562619 + 31 +0.0 + 0 +LINE + 5 +2138 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14835.86389 + 30 +0.0 + 11 +26787.499939 + 21 +14857.514525 + 31 +0.0 + 0 +LINE + 5 +2139 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14900.815795 + 30 +0.0 + 11 +26820.0 + 21 +14913.806281 + 31 +0.0 + 0 +LINE + 5 +213A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14731.940947 + 30 +0.0 + 11 +26749.999939 + 21 +14749.261349 + 31 +0.0 + 0 +LINE + 5 +213B + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14792.562619 + 30 +0.0 + 11 +26787.499939 + 21 +14814.213254 + 31 +0.0 + 0 +LINE + 5 +213C + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14857.514525 + 30 +0.0 + 11 +26820.0 + 21 +14870.505011 + 31 +0.0 + 0 +LINE + 5 +213D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14688.639677 + 30 +0.0 + 11 +26749.999939 + 21 +14705.960079 + 31 +0.0 + 0 +LINE + 5 +213E + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14749.261349 + 30 +0.0 + 11 +26787.499939 + 21 +14770.911984 + 31 +0.0 + 0 +LINE + 5 +213F + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14814.213255 + 30 +0.0 + 11 +26820.0 + 21 +14827.203741 + 31 +0.0 + 0 +LINE + 5 +2140 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14645.338407 + 30 +0.0 + 11 +26749.999939 + 21 +14662.658809 + 31 +0.0 + 0 +LINE + 5 +2141 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14705.960079 + 30 +0.0 + 11 +26787.499939 + 21 +14727.610714 + 31 +0.0 + 0 +LINE + 5 +2142 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14770.911984 + 30 +0.0 + 11 +26820.0 + 21 +14783.902471 + 31 +0.0 + 0 +LINE + 5 +2143 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14602.037137 + 30 +0.0 + 11 +26749.999939 + 21 +14619.357539 + 31 +0.0 + 0 +LINE + 5 +2144 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14662.658809 + 30 +0.0 + 11 +26787.499939 + 21 +14684.309444 + 31 +0.0 + 0 +LINE + 5 +2145 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14727.610714 + 30 +0.0 + 11 +26820.0 + 21 +14740.601201 + 31 +0.0 + 0 +LINE + 5 +2146 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14558.735867 + 30 +0.0 + 11 +26749.999939 + 21 +14576.056269 + 31 +0.0 + 0 +LINE + 5 +2147 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14619.357539 + 30 +0.0 + 11 +26787.499939 + 21 +14641.008174 + 31 +0.0 + 0 +LINE + 5 +2148 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14684.309444 + 30 +0.0 + 11 +26820.0 + 21 +14697.299931 + 31 +0.0 + 0 +LINE + 5 +2149 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14515.434597 + 30 +0.0 + 11 +26749.999939 + 21 +14532.754998 + 31 +0.0 + 0 +LINE + 5 +214A + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14576.056269 + 30 +0.0 + 11 +26787.499939 + 21 +14597.706904 + 31 +0.0 + 0 +LINE + 5 +214B + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14641.008174 + 30 +0.0 + 11 +26820.0 + 21 +14653.998661 + 31 +0.0 + 0 +LINE + 5 +214C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14472.133327 + 30 +0.0 + 11 +26749.999939 + 21 +14489.453728 + 31 +0.0 + 0 +LINE + 5 +214D + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14532.754999 + 30 +0.0 + 11 +26787.499939 + 21 +14554.405634 + 31 +0.0 + 0 +LINE + 5 +214E + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14597.706904 + 30 +0.0 + 11 +26820.0 + 21 +14610.697391 + 31 +0.0 + 0 +LINE + 5 +214F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14428.832057 + 30 +0.0 + 11 +26749.999939 + 21 +14446.152458 + 31 +0.0 + 0 +LINE + 5 +2150 + 8 +0 + 62 + 0 + 10 +26774.999939 + 20 +14489.453728 + 30 +0.0 + 11 +26787.499939 + 21 +14511.104363 + 31 +0.0 + 0 +LINE + 5 +2151 + 8 +0 + 62 + 0 + 10 +26812.499939 + 20 +14554.405634 + 30 +0.0 + 11 +26820.0 + 21 +14567.396121 + 31 +0.0 + 0 +LINE + 5 +2152 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14385.530787 + 30 +0.0 + 11 +26749.999938 + 21 +14402.851188 + 31 +0.0 + 0 +LINE + 5 +2153 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14446.152458 + 30 +0.0 + 11 +26787.499938 + 21 +14467.803093 + 31 +0.0 + 0 +LINE + 5 +2154 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14511.104364 + 30 +0.0 + 11 +26820.0 + 21 +14524.094851 + 31 +0.0 + 0 +LINE + 5 +2155 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14342.229517 + 30 +0.0 + 11 +26749.999938 + 21 +14359.549918 + 31 +0.0 + 0 +LINE + 5 +2156 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14402.851188 + 30 +0.0 + 11 +26787.499938 + 21 +14424.501823 + 31 +0.0 + 0 +LINE + 5 +2157 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14467.803093 + 30 +0.0 + 11 +26820.0 + 21 +14480.793581 + 31 +0.0 + 0 +LINE + 5 +2158 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14298.928247 + 30 +0.0 + 11 +26749.999938 + 21 +14316.248648 + 31 +0.0 + 0 +LINE + 5 +2159 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14359.549918 + 30 +0.0 + 11 +26787.499938 + 21 +14381.200553 + 31 +0.0 + 0 +LINE + 5 +215A + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14424.501823 + 30 +0.0 + 11 +26820.0 + 21 +14437.492311 + 31 +0.0 + 0 +LINE + 5 +215B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14255.626977 + 30 +0.0 + 11 +26749.999938 + 21 +14272.947378 + 31 +0.0 + 0 +LINE + 5 +215C + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14316.248648 + 30 +0.0 + 11 +26787.499938 + 21 +14337.899283 + 31 +0.0 + 0 +LINE + 5 +215D + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14381.200553 + 30 +0.0 + 11 +26820.0 + 21 +14394.191041 + 31 +0.0 + 0 +LINE + 5 +215E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14212.325707 + 30 +0.0 + 11 +26749.999938 + 21 +14229.646107 + 31 +0.0 + 0 +LINE + 5 +215F + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14272.947378 + 30 +0.0 + 11 +26787.499938 + 21 +14294.598013 + 31 +0.0 + 0 +LINE + 5 +2160 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14337.899283 + 30 +0.0 + 11 +26820.0 + 21 +14350.889771 + 31 +0.0 + 0 +LINE + 5 +2161 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14169.024437 + 30 +0.0 + 11 +26749.999938 + 21 +14186.344837 + 31 +0.0 + 0 +LINE + 5 +2162 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14229.646108 + 30 +0.0 + 11 +26787.499938 + 21 +14251.296743 + 31 +0.0 + 0 +LINE + 5 +2163 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14294.598013 + 30 +0.0 + 11 +26820.0 + 21 +14307.588501 + 31 +0.0 + 0 +LINE + 5 +2164 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14125.723167 + 30 +0.0 + 11 +26749.999938 + 21 +14143.043567 + 31 +0.0 + 0 +LINE + 5 +2165 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14186.344837 + 30 +0.0 + 11 +26787.499938 + 21 +14207.995472 + 31 +0.0 + 0 +LINE + 5 +2166 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14251.296743 + 30 +0.0 + 11 +26820.0 + 21 +14264.287231 + 31 +0.0 + 0 +LINE + 5 +2167 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14082.421897 + 30 +0.0 + 11 +26749.999938 + 21 +14099.742297 + 31 +0.0 + 0 +LINE + 5 +2168 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14143.043567 + 30 +0.0 + 11 +26787.499938 + 21 +14164.694202 + 31 +0.0 + 0 +LINE + 5 +2169 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14207.995473 + 30 +0.0 + 11 +26820.0 + 21 +14220.985961 + 31 +0.0 + 0 +LINE + 5 +216A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +14039.120627 + 30 +0.0 + 11 +26749.999938 + 21 +14056.441027 + 31 +0.0 + 0 +LINE + 5 +216B + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14099.742297 + 30 +0.0 + 11 +26787.499938 + 21 +14121.392932 + 31 +0.0 + 0 +LINE + 5 +216C + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14164.694202 + 30 +0.0 + 11 +26820.0 + 21 +14177.684691 + 31 +0.0 + 0 +LINE + 5 +216D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13995.819357 + 30 +0.0 + 11 +26749.999938 + 21 +14013.139757 + 31 +0.0 + 0 +LINE + 5 +216E + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14056.441027 + 30 +0.0 + 11 +26787.499938 + 21 +14078.091662 + 31 +0.0 + 0 +LINE + 5 +216F + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14121.392932 + 30 +0.0 + 11 +26820.0 + 21 +14134.383421 + 31 +0.0 + 0 +LINE + 5 +2170 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13952.518087 + 30 +0.0 + 11 +26749.999938 + 21 +13969.838487 + 31 +0.0 + 0 +LINE + 5 +2171 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +14013.139757 + 30 +0.0 + 11 +26787.499938 + 21 +14034.790392 + 31 +0.0 + 0 +LINE + 5 +2172 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14078.091662 + 30 +0.0 + 11 +26820.0 + 21 +14091.082151 + 31 +0.0 + 0 +LINE + 5 +2173 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13909.216817 + 30 +0.0 + 11 +26749.999938 + 21 +13926.537216 + 31 +0.0 + 0 +LINE + 5 +2174 + 8 +0 + 62 + 0 + 10 +26774.999938 + 20 +13969.838487 + 30 +0.0 + 11 +26787.499938 + 21 +13991.489122 + 31 +0.0 + 0 +LINE + 5 +2175 + 8 +0 + 62 + 0 + 10 +26812.499938 + 20 +14034.790392 + 30 +0.0 + 11 +26820.0 + 21 +14047.780881 + 31 +0.0 + 0 +LINE + 5 +2176 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13865.915547 + 30 +0.0 + 11 +26749.999937 + 21 +13883.235946 + 31 +0.0 + 0 +LINE + 5 +2177 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13926.537217 + 30 +0.0 + 11 +26787.499937 + 21 +13948.187852 + 31 +0.0 + 0 +LINE + 5 +2178 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13991.489122 + 30 +0.0 + 11 +26820.0 + 21 +14004.479611 + 31 +0.0 + 0 +LINE + 5 +2179 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13822.614277 + 30 +0.0 + 11 +26749.999937 + 21 +13839.934676 + 31 +0.0 + 0 +LINE + 5 +217A + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13883.235946 + 30 +0.0 + 11 +26787.499937 + 21 +13904.886581 + 31 +0.0 + 0 +LINE + 5 +217B + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13948.187852 + 30 +0.0 + 11 +26820.0 + 21 +13961.178341 + 31 +0.0 + 0 +LINE + 5 +217C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13779.313007 + 30 +0.0 + 11 +26749.999937 + 21 +13796.633406 + 31 +0.0 + 0 +LINE + 5 +217D + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13839.934676 + 30 +0.0 + 11 +26787.499937 + 21 +13861.585311 + 31 +0.0 + 0 +LINE + 5 +217E + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13904.886582 + 30 +0.0 + 11 +26820.0 + 21 +13917.877071 + 31 +0.0 + 0 +LINE + 5 +217F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13736.011737 + 30 +0.0 + 11 +26749.999937 + 21 +13753.332136 + 31 +0.0 + 0 +LINE + 5 +2180 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13796.633406 + 30 +0.0 + 11 +26787.499937 + 21 +13818.284041 + 31 +0.0 + 0 +LINE + 5 +2181 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13861.585311 + 30 +0.0 + 11 +26820.0 + 21 +13874.575801 + 31 +0.0 + 0 +LINE + 5 +2182 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13692.710467 + 30 +0.0 + 11 +26749.999937 + 21 +13710.030866 + 31 +0.0 + 0 +LINE + 5 +2183 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13753.332136 + 30 +0.0 + 11 +26787.499937 + 21 +13774.982771 + 31 +0.0 + 0 +LINE + 5 +2184 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13818.284041 + 30 +0.0 + 11 +26820.0 + 21 +13831.274531 + 31 +0.0 + 0 +LINE + 5 +2185 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13649.409197 + 30 +0.0 + 11 +26749.999937 + 21 +13666.729596 + 31 +0.0 + 0 +LINE + 5 +2186 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13710.030866 + 30 +0.0 + 11 +26787.499937 + 21 +13731.681501 + 31 +0.0 + 0 +LINE + 5 +2187 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13774.982771 + 30 +0.0 + 11 +26820.0 + 21 +13787.973261 + 31 +0.0 + 0 +LINE + 5 +2188 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13606.107927 + 30 +0.0 + 11 +26749.999937 + 21 +13623.428325 + 31 +0.0 + 0 +LINE + 5 +2189 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13666.729596 + 30 +0.0 + 11 +26787.499937 + 21 +13688.380231 + 31 +0.0 + 0 +LINE + 5 +218A + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13731.681501 + 30 +0.0 + 11 +26820.0 + 21 +13744.671991 + 31 +0.0 + 0 +LINE + 5 +218B + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13562.806657 + 30 +0.0 + 11 +26749.999937 + 21 +13580.127055 + 31 +0.0 + 0 +LINE + 5 +218C + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13623.428326 + 30 +0.0 + 11 +26787.499937 + 21 +13645.078961 + 31 +0.0 + 0 +LINE + 5 +218D + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13688.380231 + 30 +0.0 + 11 +26820.0 + 21 +13701.370721 + 31 +0.0 + 0 +LINE + 5 +218E + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13519.505387 + 30 +0.0 + 11 +26749.999937 + 21 +13536.825785 + 31 +0.0 + 0 +LINE + 5 +218F + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13580.127055 + 30 +0.0 + 11 +26787.499937 + 21 +13601.77769 + 31 +0.0 + 0 +LINE + 5 +2190 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13645.078961 + 30 +0.0 + 11 +26820.0 + 21 +13658.069451 + 31 +0.0 + 0 +LINE + 5 +2191 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13476.204117 + 30 +0.0 + 11 +26749.999937 + 21 +13493.524515 + 31 +0.0 + 0 +LINE + 5 +2192 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13536.825785 + 30 +0.0 + 11 +26787.499937 + 21 +13558.47642 + 31 +0.0 + 0 +LINE + 5 +2193 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13601.777691 + 30 +0.0 + 11 +26820.0 + 21 +13614.768181 + 31 +0.0 + 0 +LINE + 5 +2194 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13432.902847 + 30 +0.0 + 11 +26749.999937 + 21 +13450.223245 + 31 +0.0 + 0 +LINE + 5 +2195 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13493.524515 + 30 +0.0 + 11 +26787.499937 + 21 +13515.17515 + 31 +0.0 + 0 +LINE + 5 +2196 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13558.47642 + 30 +0.0 + 11 +26820.0 + 21 +13571.466911 + 31 +0.0 + 0 +LINE + 5 +2197 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13389.601577 + 30 +0.0 + 11 +26749.999937 + 21 +13406.921975 + 31 +0.0 + 0 +LINE + 5 +2198 + 8 +0 + 62 + 0 + 10 +26774.999937 + 20 +13450.223245 + 30 +0.0 + 11 +26787.499937 + 21 +13471.87388 + 31 +0.0 + 0 +LINE + 5 +2199 + 8 +0 + 62 + 0 + 10 +26812.499937 + 20 +13515.17515 + 30 +0.0 + 11 +26820.0 + 21 +13528.165641 + 31 +0.0 + 0 +LINE + 5 +219A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13346.300307 + 30 +0.0 + 11 +26749.999936 + 21 +13363.620705 + 31 +0.0 + 0 +LINE + 5 +219B + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13406.921975 + 30 +0.0 + 11 +26787.499936 + 21 +13428.57261 + 31 +0.0 + 0 +LINE + 5 +219C + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13471.87388 + 30 +0.0 + 11 +26820.0 + 21 +13484.864371 + 31 +0.0 + 0 +LINE + 5 +219D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13302.999037 + 30 +0.0 + 11 +26749.999936 + 21 +13320.319434 + 31 +0.0 + 0 +LINE + 5 +219E + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13363.620705 + 30 +0.0 + 11 +26787.499936 + 21 +13385.27134 + 31 +0.0 + 0 +LINE + 5 +219F + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13428.57261 + 30 +0.0 + 11 +26820.0 + 21 +13441.563101 + 31 +0.0 + 0 +LINE + 5 +21A0 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13259.697767 + 30 +0.0 + 11 +26749.999936 + 21 +13277.018164 + 31 +0.0 + 0 +LINE + 5 +21A1 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13320.319435 + 30 +0.0 + 11 +26787.499936 + 21 +13341.97007 + 31 +0.0 + 0 +LINE + 5 +21A2 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13385.27134 + 30 +0.0 + 11 +26820.0 + 21 +13398.261831 + 31 +0.0 + 0 +LINE + 5 +21A3 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13216.396497 + 30 +0.0 + 11 +26749.999936 + 21 +13233.716894 + 31 +0.0 + 0 +LINE + 5 +21A4 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13277.018164 + 30 +0.0 + 11 +26787.499936 + 21 +13298.668799 + 31 +0.0 + 0 +LINE + 5 +21A5 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13341.97007 + 30 +0.0 + 11 +26820.0 + 21 +13354.960561 + 31 +0.0 + 0 +LINE + 5 +21A6 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13173.095227 + 30 +0.0 + 11 +26749.999936 + 21 +13190.415624 + 31 +0.0 + 0 +LINE + 5 +21A7 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13233.716894 + 30 +0.0 + 11 +26787.499936 + 21 +13255.367529 + 31 +0.0 + 0 +LINE + 5 +21A8 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13298.6688 + 30 +0.0 + 11 +26820.0 + 21 +13311.659291 + 31 +0.0 + 0 +LINE + 5 +21A9 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13129.793957 + 30 +0.0 + 11 +26749.999936 + 21 +13147.114354 + 31 +0.0 + 0 +LINE + 5 +21AA + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13190.415624 + 30 +0.0 + 11 +26787.499936 + 21 +13212.066259 + 31 +0.0 + 0 +LINE + 5 +21AB + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13255.367529 + 30 +0.0 + 11 +26820.0 + 21 +13268.358021 + 31 +0.0 + 0 +LINE + 5 +21AC + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13086.492687 + 30 +0.0 + 11 +26749.999936 + 21 +13103.813084 + 31 +0.0 + 0 +LINE + 5 +21AD + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13147.114354 + 30 +0.0 + 11 +26787.499936 + 21 +13168.764989 + 31 +0.0 + 0 +LINE + 5 +21AE + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13212.066259 + 30 +0.0 + 11 +26820.0 + 21 +13225.056751 + 31 +0.0 + 0 +LINE + 5 +21AF + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +13043.191417 + 30 +0.0 + 11 +26749.999936 + 21 +13060.511814 + 31 +0.0 + 0 +LINE + 5 +21B0 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13103.813084 + 30 +0.0 + 11 +26787.499936 + 21 +13125.463719 + 31 +0.0 + 0 +LINE + 5 +21B1 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13168.764989 + 30 +0.0 + 11 +26820.0 + 21 +13181.755481 + 31 +0.0 + 0 +LINE + 5 +21B2 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12999.890147 + 30 +0.0 + 11 +26749.999936 + 21 +13017.210544 + 31 +0.0 + 0 +LINE + 5 +21B3 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13060.511814 + 30 +0.0 + 11 +26787.499936 + 21 +13082.162449 + 31 +0.0 + 0 +LINE + 5 +21B4 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13125.463719 + 30 +0.0 + 11 +26820.0 + 21 +13138.454211 + 31 +0.0 + 0 +LINE + 5 +21B5 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12956.588877 + 30 +0.0 + 11 +26749.999936 + 21 +12973.909273 + 31 +0.0 + 0 +LINE + 5 +21B6 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +13017.210544 + 30 +0.0 + 11 +26787.499936 + 21 +13038.861179 + 31 +0.0 + 0 +LINE + 5 +21B7 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13082.162449 + 30 +0.0 + 11 +26820.0 + 21 +13095.152941 + 31 +0.0 + 0 +LINE + 5 +21B8 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12913.287607 + 30 +0.0 + 11 +26749.999936 + 21 +12930.608003 + 31 +0.0 + 0 +LINE + 5 +21B9 + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +12973.909273 + 30 +0.0 + 11 +26787.499936 + 21 +12995.559909 + 31 +0.0 + 0 +LINE + 5 +21BA + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +13038.861179 + 30 +0.0 + 11 +26820.0 + 21 +13051.851671 + 31 +0.0 + 0 +LINE + 5 +21BB + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12869.986337 + 30 +0.0 + 11 +26749.999936 + 21 +12887.306733 + 31 +0.0 + 0 +LINE + 5 +21BC + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +12930.608003 + 30 +0.0 + 11 +26787.499936 + 21 +12952.258638 + 31 +0.0 + 0 +LINE + 5 +21BD + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +12995.559909 + 30 +0.0 + 11 +26820.0 + 21 +13008.550401 + 31 +0.0 + 0 +LINE + 5 +21BE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12826.685067 + 30 +0.0 + 11 +26749.999936 + 21 +12844.005463 + 31 +0.0 + 0 +LINE + 5 +21BF + 8 +0 + 62 + 0 + 10 +26774.999936 + 20 +12887.306733 + 30 +0.0 + 11 +26787.499936 + 21 +12908.957368 + 31 +0.0 + 0 +LINE + 5 +21C0 + 8 +0 + 62 + 0 + 10 +26812.499936 + 20 +12952.258638 + 30 +0.0 + 11 +26820.0 + 21 +12965.249131 + 31 +0.0 + 0 +LINE + 5 +21C1 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12783.383797 + 30 +0.0 + 11 +26749.999935 + 21 +12800.704193 + 31 +0.0 + 0 +LINE + 5 +21C2 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12844.005463 + 30 +0.0 + 11 +26787.499935 + 21 +12865.656098 + 31 +0.0 + 0 +LINE + 5 +21C3 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12908.957368 + 30 +0.0 + 11 +26820.0 + 21 +12921.947861 + 31 +0.0 + 0 +LINE + 5 +21C4 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12740.082527 + 30 +0.0 + 11 +26749.999935 + 21 +12757.402923 + 31 +0.0 + 0 +LINE + 5 +21C5 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12800.704193 + 30 +0.0 + 11 +26787.499935 + 21 +12822.354828 + 31 +0.0 + 0 +LINE + 5 +21C6 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12865.656098 + 30 +0.0 + 11 +26820.0 + 21 +12878.646591 + 31 +0.0 + 0 +LINE + 5 +21C7 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12696.781257 + 30 +0.0 + 11 +26749.999935 + 21 +12714.101653 + 31 +0.0 + 0 +LINE + 5 +21C8 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12757.402923 + 30 +0.0 + 11 +26787.499935 + 21 +12779.053558 + 31 +0.0 + 0 +LINE + 5 +21C9 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12822.354828 + 30 +0.0 + 11 +26820.0 + 21 +12835.345321 + 31 +0.0 + 0 +LINE + 5 +21CA + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12653.479987 + 30 +0.0 + 11 +26749.999935 + 21 +12670.800382 + 31 +0.0 + 0 +LINE + 5 +21CB + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12714.101653 + 30 +0.0 + 11 +26787.499935 + 21 +12735.752288 + 31 +0.0 + 0 +LINE + 5 +21CC + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12779.053558 + 30 +0.0 + 11 +26820.0 + 21 +12792.044051 + 31 +0.0 + 0 +LINE + 5 +21CD + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12610.178717 + 30 +0.0 + 11 +26749.999935 + 21 +12627.499112 + 31 +0.0 + 0 +LINE + 5 +21CE + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12670.800382 + 30 +0.0 + 11 +26787.499935 + 21 +12692.451018 + 31 +0.0 + 0 +LINE + 5 +21CF + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12735.752288 + 30 +0.0 + 11 +26820.0 + 21 +12748.742781 + 31 +0.0 + 0 +LINE + 5 +21D0 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12566.877447 + 30 +0.0 + 11 +26749.999935 + 21 +12584.197842 + 31 +0.0 + 0 +LINE + 5 +21D1 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12627.499112 + 30 +0.0 + 11 +26787.499935 + 21 +12649.149747 + 31 +0.0 + 0 +LINE + 5 +21D2 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12692.451018 + 30 +0.0 + 11 +26820.0 + 21 +12705.441511 + 31 +0.0 + 0 +LINE + 5 +21D3 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12523.576177 + 30 +0.0 + 11 +26749.999935 + 21 +12540.896572 + 31 +0.0 + 0 +LINE + 5 +21D4 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12584.197842 + 30 +0.0 + 11 +26787.499935 + 21 +12605.848477 + 31 +0.0 + 0 +LINE + 5 +21D5 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12649.149747 + 30 +0.0 + 11 +26820.0 + 21 +12662.140241 + 31 +0.0 + 0 +LINE + 5 +21D6 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12480.274907 + 30 +0.0 + 11 +26749.999935 + 21 +12497.595302 + 31 +0.0 + 0 +LINE + 5 +21D7 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12540.896572 + 30 +0.0 + 11 +26787.499935 + 21 +12562.547207 + 31 +0.0 + 0 +LINE + 5 +21D8 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12605.848477 + 30 +0.0 + 11 +26820.0 + 21 +12618.838971 + 31 +0.0 + 0 +LINE + 5 +21D9 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12436.973637 + 30 +0.0 + 11 +26749.999935 + 21 +12454.294032 + 31 +0.0 + 0 +LINE + 5 +21DA + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12497.595302 + 30 +0.0 + 11 +26787.499935 + 21 +12519.245937 + 31 +0.0 + 0 +LINE + 5 +21DB + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12562.547207 + 30 +0.0 + 11 +26820.0 + 21 +12575.537701 + 31 +0.0 + 0 +LINE + 5 +21DC + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12393.672367 + 30 +0.0 + 11 +26749.999935 + 21 +12410.992762 + 31 +0.0 + 0 +LINE + 5 +21DD + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12454.294032 + 30 +0.0 + 11 +26787.499935 + 21 +12475.944667 + 31 +0.0 + 0 +LINE + 5 +21DE + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12519.245937 + 30 +0.0 + 11 +26820.0 + 21 +12532.236431 + 31 +0.0 + 0 +LINE + 5 +21DF + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12350.371097 + 30 +0.0 + 11 +26749.999935 + 21 +12367.691491 + 31 +0.0 + 0 +LINE + 5 +21E0 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12410.992762 + 30 +0.0 + 11 +26787.499935 + 21 +12432.643397 + 31 +0.0 + 0 +LINE + 5 +21E1 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12475.944667 + 30 +0.0 + 11 +26820.0 + 21 +12488.935161 + 31 +0.0 + 0 +LINE + 5 +21E2 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12307.069827 + 30 +0.0 + 11 +26749.999935 + 21 +12324.390221 + 31 +0.0 + 0 +LINE + 5 +21E3 + 8 +0 + 62 + 0 + 10 +26774.999935 + 20 +12367.691491 + 30 +0.0 + 11 +26787.499935 + 21 +12389.342127 + 31 +0.0 + 0 +LINE + 5 +21E4 + 8 +0 + 62 + 0 + 10 +26812.499935 + 20 +12432.643397 + 30 +0.0 + 11 +26820.0 + 21 +12445.633891 + 31 +0.0 + 0 +LINE + 5 +21E5 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12263.768557 + 30 +0.0 + 11 +26749.999934 + 21 +12281.088951 + 31 +0.0 + 0 +LINE + 5 +21E6 + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12324.390221 + 30 +0.0 + 11 +26787.499934 + 21 +12346.040856 + 31 +0.0 + 0 +LINE + 5 +21E7 + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12389.342127 + 30 +0.0 + 11 +26820.0 + 21 +12402.332621 + 31 +0.0 + 0 +LINE + 5 +21E8 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12220.467287 + 30 +0.0 + 11 +26749.999934 + 21 +12237.787681 + 31 +0.0 + 0 +LINE + 5 +21E9 + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12281.088951 + 30 +0.0 + 11 +26787.499934 + 21 +12302.739586 + 31 +0.0 + 0 +LINE + 5 +21EA + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12346.040856 + 30 +0.0 + 11 +26820.0 + 21 +12359.031351 + 31 +0.0 + 0 +LINE + 5 +21EB + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12177.166017 + 30 +0.0 + 11 +26749.999934 + 21 +12194.486411 + 31 +0.0 + 0 +LINE + 5 +21EC + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12237.787681 + 30 +0.0 + 11 +26787.499934 + 21 +12259.438316 + 31 +0.0 + 0 +LINE + 5 +21ED + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12302.739586 + 30 +0.0 + 11 +26820.0 + 21 +12315.730081 + 31 +0.0 + 0 +LINE + 5 +21EE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12133.864747 + 30 +0.0 + 11 +26749.999934 + 21 +12151.185141 + 31 +0.0 + 0 +LINE + 5 +21EF + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12194.486411 + 30 +0.0 + 11 +26787.499934 + 21 +12216.137046 + 31 +0.0 + 0 +LINE + 5 +21F0 + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12259.438316 + 30 +0.0 + 11 +26820.0 + 21 +12272.428811 + 31 +0.0 + 0 +LINE + 5 +21F1 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12090.563477 + 30 +0.0 + 11 +26749.999934 + 21 +12107.883871 + 31 +0.0 + 0 +LINE + 5 +21F2 + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12151.185141 + 30 +0.0 + 11 +26787.499934 + 21 +12172.835776 + 31 +0.0 + 0 +LINE + 5 +21F3 + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12216.137046 + 30 +0.0 + 11 +26820.0 + 21 +12229.127541 + 31 +0.0 + 0 +LINE + 5 +21F4 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12047.262207 + 30 +0.0 + 11 +26749.999934 + 21 +12064.5826 + 31 +0.0 + 0 +LINE + 5 +21F5 + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12107.883871 + 30 +0.0 + 11 +26787.499934 + 21 +12129.534506 + 31 +0.0 + 0 +LINE + 5 +21F6 + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12172.835776 + 30 +0.0 + 11 +26820.0 + 21 +12185.826271 + 31 +0.0 + 0 +LINE + 5 +21F7 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +12003.960937 + 30 +0.0 + 11 +26749.999934 + 21 +12021.28133 + 31 +0.0 + 0 +LINE + 5 +21F8 + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12064.5826 + 30 +0.0 + 11 +26787.499934 + 21 +12086.233236 + 31 +0.0 + 0 +LINE + 5 +21F9 + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12129.534506 + 30 +0.0 + 11 +26820.0 + 21 +12142.525001 + 31 +0.0 + 0 +LINE + 5 +21FA + 8 +0 + 62 + 0 + 10 +26774.999934 + 20 +12021.28133 + 30 +0.0 + 11 +26787.499934 + 21 +12042.931965 + 31 +0.0 + 0 +LINE + 5 +21FB + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12086.233236 + 30 +0.0 + 11 +26820.0 + 21 +12099.223731 + 31 +0.0 + 0 +LINE + 5 +21FC + 8 +0 + 62 + 0 + 10 +26781.217961 + 20 +11988.75 + 30 +0.0 + 11 +26787.499934 + 21 +11999.630695 + 31 +0.0 + 0 +LINE + 5 +21FD + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +12042.931965 + 30 +0.0 + 11 +26820.0 + 21 +12055.922461 + 31 +0.0 + 0 +LINE + 5 +21FE + 8 +0 + 62 + 0 + 10 +26812.499934 + 20 +11999.630695 + 30 +0.0 + 11 +26820.0 + 21 +12012.621191 + 31 +0.0 + 0 +ENDBLK + 5 +21FF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X51 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X51 + 1 + + 0 +LINE + 5 +2201 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9769.61524 + 30 +0.0 + 11 +26775.0 + 21 +9769.61524 + 31 +0.0 + 0 +LINE + 5 +2202 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9791.265875 + 30 +0.0 + 11 +26812.5 + 21 +9791.265875 + 31 +0.0 + 0 +LINE + 5 +2203 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9812.91651 + 30 +0.0 + 11 +26775.0 + 21 +9812.91651 + 31 +0.0 + 0 +LINE + 5 +2204 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9834.567145 + 30 +0.0 + 11 +26812.5 + 21 +9834.567145 + 31 +0.0 + 0 +LINE + 5 +2205 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9856.21778 + 30 +0.0 + 11 +26775.0 + 21 +9856.21778 + 31 +0.0 + 0 +LINE + 5 +2206 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9877.868415 + 30 +0.0 + 11 +26812.5 + 21 +9877.868415 + 31 +0.0 + 0 +LINE + 5 +2207 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9899.51905 + 30 +0.0 + 11 +26775.0 + 21 +9899.51905 + 31 +0.0 + 0 +LINE + 5 +2208 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9921.169685 + 30 +0.0 + 11 +26812.5 + 21 +9921.169685 + 31 +0.0 + 0 +LINE + 5 +2209 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9942.82032 + 30 +0.0 + 11 +26775.0 + 21 +9942.82032 + 31 +0.0 + 0 +LINE + 5 +220A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9964.470955 + 30 +0.0 + 11 +26812.5 + 21 +9964.470955 + 31 +0.0 + 0 +LINE + 5 +220B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9986.12159 + 30 +0.0 + 11 +26775.0 + 21 +9986.12159 + 31 +0.0 + 0 +LINE + 5 +220C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10007.772225 + 30 +0.0 + 11 +26812.5 + 21 +10007.772225 + 31 +0.0 + 0 +LINE + 5 +220D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10029.42286 + 30 +0.0 + 11 +26775.0 + 21 +10029.42286 + 31 +0.0 + 0 +LINE + 5 +220E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10051.073495 + 30 +0.0 + 11 +26812.5 + 21 +10051.073495 + 31 +0.0 + 0 +LINE + 5 +220F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10072.72413 + 30 +0.0 + 11 +26775.0 + 21 +10072.72413 + 31 +0.0 + 0 +LINE + 5 +2210 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10094.374765 + 30 +0.0 + 11 +26812.5 + 21 +10094.374765 + 31 +0.0 + 0 +LINE + 5 +2211 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10116.0254 + 30 +0.0 + 11 +26775.0 + 21 +10116.0254 + 31 +0.0 + 0 +LINE + 5 +2212 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10137.676035 + 30 +0.0 + 11 +26812.5 + 21 +10137.676035 + 31 +0.0 + 0 +LINE + 5 +2213 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10159.32667 + 30 +0.0 + 11 +26775.0 + 21 +10159.32667 + 31 +0.0 + 0 +LINE + 5 +2214 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10180.977305 + 30 +0.0 + 11 +26812.5 + 21 +10180.977305 + 31 +0.0 + 0 +LINE + 5 +2215 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10202.62794 + 30 +0.0 + 11 +26775.0 + 21 +10202.62794 + 31 +0.0 + 0 +LINE + 5 +2216 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10224.278575 + 30 +0.0 + 11 +26812.5 + 21 +10224.278575 + 31 +0.0 + 0 +LINE + 5 +2217 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10245.92921 + 30 +0.0 + 11 +26775.0 + 21 +10245.92921 + 31 +0.0 + 0 +LINE + 5 +2218 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10267.579845 + 30 +0.0 + 11 +26812.5 + 21 +10267.579845 + 31 +0.0 + 0 +LINE + 5 +2219 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10289.23048 + 30 +0.0 + 11 +26775.0 + 21 +10289.23048 + 31 +0.0 + 0 +LINE + 5 +221A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10310.881115 + 30 +0.0 + 11 +26812.5 + 21 +10310.881115 + 31 +0.0 + 0 +LINE + 5 +221B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10332.53175 + 30 +0.0 + 11 +26775.0 + 21 +10332.53175 + 31 +0.0 + 0 +LINE + 5 +221C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +10354.182385 + 30 +0.0 + 11 +26812.5 + 21 +10354.182385 + 31 +0.0 + 0 +LINE + 5 +221D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +10375.83302 + 30 +0.0 + 11 +26775.0 + 21 +10375.83302 + 31 +0.0 + 0 +LINE + 5 +221E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9747.964605 + 30 +0.0 + 11 +26812.5 + 21 +9747.964605 + 31 +0.0 + 0 +LINE + 5 +221F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9726.31397 + 30 +0.0 + 11 +26775.0 + 21 +9726.31397 + 31 +0.0 + 0 +LINE + 5 +2220 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9704.663335 + 30 +0.0 + 11 +26812.5 + 21 +9704.663335 + 31 +0.0 + 0 +LINE + 5 +2221 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9683.0127 + 30 +0.0 + 11 +26775.0 + 21 +9683.0127 + 31 +0.0 + 0 +LINE + 5 +2222 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9661.362065 + 30 +0.0 + 11 +26812.5 + 21 +9661.362065 + 31 +0.0 + 0 +LINE + 5 +2223 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9639.71143 + 30 +0.0 + 11 +26775.0 + 21 +9639.71143 + 31 +0.0 + 0 +LINE + 5 +2224 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9618.060795 + 30 +0.0 + 11 +26812.5 + 21 +9618.060795 + 31 +0.0 + 0 +LINE + 5 +2225 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9596.41016 + 30 +0.0 + 11 +26775.0 + 21 +9596.41016 + 31 +0.0 + 0 +LINE + 5 +2226 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9574.759525 + 30 +0.0 + 11 +26812.5 + 21 +9574.759525 + 31 +0.0 + 0 +LINE + 5 +2227 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9553.10889 + 30 +0.0 + 11 +26775.0 + 21 +9553.10889 + 31 +0.0 + 0 +LINE + 5 +2228 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9531.458255 + 30 +0.0 + 11 +26812.5 + 21 +9531.458255 + 31 +0.0 + 0 +LINE + 5 +2229 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9509.80762 + 30 +0.0 + 11 +26775.0 + 21 +9509.80762 + 31 +0.0 + 0 +LINE + 5 +222A + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9488.156985 + 30 +0.0 + 11 +26812.5 + 21 +9488.156985 + 31 +0.0 + 0 +LINE + 5 +222B + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9466.50635 + 30 +0.0 + 11 +26775.0 + 21 +9466.50635 + 31 +0.0 + 0 +LINE + 5 +222C + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9444.855715 + 30 +0.0 + 11 +26812.5 + 21 +9444.855715 + 31 +0.0 + 0 +LINE + 5 +222D + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9423.20508 + 30 +0.0 + 11 +26775.0 + 21 +9423.20508 + 31 +0.0 + 0 +LINE + 5 +222E + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9401.554445 + 30 +0.0 + 11 +26812.5 + 21 +9401.554445 + 31 +0.0 + 0 +LINE + 5 +222F + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9379.90381 + 30 +0.0 + 11 +26775.0 + 21 +9379.90381 + 31 +0.0 + 0 +LINE + 5 +2230 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9358.253175 + 30 +0.0 + 11 +26812.5 + 21 +9358.253175 + 31 +0.0 + 0 +LINE + 5 +2231 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9336.60254 + 30 +0.0 + 11 +26775.0 + 21 +9336.60254 + 31 +0.0 + 0 +LINE + 5 +2232 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9314.951905 + 30 +0.0 + 11 +26812.5 + 21 +9314.951905 + 31 +0.0 + 0 +LINE + 5 +2233 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9293.30127 + 30 +0.0 + 11 +26775.0 + 21 +9293.30127 + 31 +0.0 + 0 +LINE + 5 +2234 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9271.650635 + 30 +0.0 + 11 +26812.5 + 21 +9271.650635 + 31 +0.0 + 0 +LINE + 5 +2235 + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9250.0 + 30 +0.0 + 11 +26775.0 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2236 + 8 +0 + 62 + 0 + 10 +25363.75 + 20 +9228.349365 + 30 +0.0 + 11 +25387.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2237 + 8 +0 + 62 + 0 + 10 +25437.5 + 20 +9228.349365 + 30 +0.0 + 11 +25462.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2238 + 8 +0 + 62 + 0 + 10 +25512.5 + 20 +9228.349365 + 30 +0.0 + 11 +25537.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2239 + 8 +0 + 62 + 0 + 10 +25587.5 + 20 +9228.349365 + 30 +0.0 + 11 +25612.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +223A + 8 +0 + 62 + 0 + 10 +25662.5 + 20 +9228.349365 + 30 +0.0 + 11 +25687.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +223B + 8 +0 + 62 + 0 + 10 +25737.5 + 20 +9228.349365 + 30 +0.0 + 11 +25762.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +223C + 8 +0 + 62 + 0 + 10 +25812.5 + 20 +9228.349365 + 30 +0.0 + 11 +25837.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +223D + 8 +0 + 62 + 0 + 10 +25887.5 + 20 +9228.349365 + 30 +0.0 + 11 +25912.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +223E + 8 +0 + 62 + 0 + 10 +25962.5 + 20 +9228.349365 + 30 +0.0 + 11 +25987.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +223F + 8 +0 + 62 + 0 + 10 +26037.5 + 20 +9228.349365 + 30 +0.0 + 11 +26062.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2240 + 8 +0 + 62 + 0 + 10 +26112.5 + 20 +9228.349365 + 30 +0.0 + 11 +26137.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2241 + 8 +0 + 62 + 0 + 10 +26187.5 + 20 +9228.349365 + 30 +0.0 + 11 +26212.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2242 + 8 +0 + 62 + 0 + 10 +26262.5 + 20 +9228.349365 + 30 +0.0 + 11 +26287.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2243 + 8 +0 + 62 + 0 + 10 +26337.5 + 20 +9228.349365 + 30 +0.0 + 11 +26362.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2244 + 8 +0 + 62 + 0 + 10 +26412.5 + 20 +9228.349365 + 30 +0.0 + 11 +26437.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2245 + 8 +0 + 62 + 0 + 10 +26487.5 + 20 +9228.349365 + 30 +0.0 + 11 +26512.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2246 + 8 +0 + 62 + 0 + 10 +26562.5 + 20 +9228.349365 + 30 +0.0 + 11 +26587.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2247 + 8 +0 + 62 + 0 + 10 +26637.5 + 20 +9228.349365 + 30 +0.0 + 11 +26662.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2248 + 8 +0 + 62 + 0 + 10 +26712.5 + 20 +9228.349365 + 30 +0.0 + 11 +26737.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +2249 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9228.349365 + 30 +0.0 + 11 +26812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +224A + 8 +0 + 62 + 0 + 10 +25400.0 + 20 +9206.69873 + 30 +0.0 + 11 +25425.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +224B + 8 +0 + 62 + 0 + 10 +25475.0 + 20 +9206.69873 + 30 +0.0 + 11 +25500.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +224C + 8 +0 + 62 + 0 + 10 +25550.0 + 20 +9206.69873 + 30 +0.0 + 11 +25575.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +224D + 8 +0 + 62 + 0 + 10 +25625.0 + 20 +9206.69873 + 30 +0.0 + 11 +25650.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +224E + 8 +0 + 62 + 0 + 10 +25700.0 + 20 +9206.69873 + 30 +0.0 + 11 +25725.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +224F + 8 +0 + 62 + 0 + 10 +25775.0 + 20 +9206.69873 + 30 +0.0 + 11 +25800.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2250 + 8 +0 + 62 + 0 + 10 +25850.0 + 20 +9206.69873 + 30 +0.0 + 11 +25875.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2251 + 8 +0 + 62 + 0 + 10 +25925.0 + 20 +9206.69873 + 30 +0.0 + 11 +25950.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2252 + 8 +0 + 62 + 0 + 10 +26000.0 + 20 +9206.69873 + 30 +0.0 + 11 +26025.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2253 + 8 +0 + 62 + 0 + 10 +26075.0 + 20 +9206.69873 + 30 +0.0 + 11 +26100.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2254 + 8 +0 + 62 + 0 + 10 +26150.0 + 20 +9206.69873 + 30 +0.0 + 11 +26175.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2255 + 8 +0 + 62 + 0 + 10 +26225.0 + 20 +9206.69873 + 30 +0.0 + 11 +26250.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2256 + 8 +0 + 62 + 0 + 10 +26300.0 + 20 +9206.69873 + 30 +0.0 + 11 +26325.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2257 + 8 +0 + 62 + 0 + 10 +26375.0 + 20 +9206.69873 + 30 +0.0 + 11 +26400.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2258 + 8 +0 + 62 + 0 + 10 +26450.0 + 20 +9206.69873 + 30 +0.0 + 11 +26475.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +2259 + 8 +0 + 62 + 0 + 10 +26525.0 + 20 +9206.69873 + 30 +0.0 + 11 +26550.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +225A + 8 +0 + 62 + 0 + 10 +26600.0 + 20 +9206.69873 + 30 +0.0 + 11 +26625.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +225B + 8 +0 + 62 + 0 + 10 +26675.0 + 20 +9206.69873 + 30 +0.0 + 11 +26700.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +225C + 8 +0 + 62 + 0 + 10 +26750.0 + 20 +9206.69873 + 30 +0.0 + 11 +26775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +225D + 8 +0 + 62 + 0 + 10 +25363.75 + 20 +9185.048095 + 30 +0.0 + 11 +25387.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +225E + 8 +0 + 62 + 0 + 10 +25437.5 + 20 +9185.048095 + 30 +0.0 + 11 +25462.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +225F + 8 +0 + 62 + 0 + 10 +25512.5 + 20 +9185.048095 + 30 +0.0 + 11 +25537.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2260 + 8 +0 + 62 + 0 + 10 +25587.5 + 20 +9185.048095 + 30 +0.0 + 11 +25612.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2261 + 8 +0 + 62 + 0 + 10 +25662.5 + 20 +9185.048095 + 30 +0.0 + 11 +25687.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2262 + 8 +0 + 62 + 0 + 10 +25737.5 + 20 +9185.048095 + 30 +0.0 + 11 +25762.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2263 + 8 +0 + 62 + 0 + 10 +25812.5 + 20 +9185.048095 + 30 +0.0 + 11 +25837.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2264 + 8 +0 + 62 + 0 + 10 +25887.5 + 20 +9185.048095 + 30 +0.0 + 11 +25912.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2265 + 8 +0 + 62 + 0 + 10 +25962.5 + 20 +9185.048095 + 30 +0.0 + 11 +25987.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2266 + 8 +0 + 62 + 0 + 10 +26037.5 + 20 +9185.048095 + 30 +0.0 + 11 +26062.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2267 + 8 +0 + 62 + 0 + 10 +26112.5 + 20 +9185.048095 + 30 +0.0 + 11 +26137.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2268 + 8 +0 + 62 + 0 + 10 +26187.5 + 20 +9185.048095 + 30 +0.0 + 11 +26212.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2269 + 8 +0 + 62 + 0 + 10 +26262.5 + 20 +9185.048095 + 30 +0.0 + 11 +26287.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +226A + 8 +0 + 62 + 0 + 10 +26337.5 + 20 +9185.048095 + 30 +0.0 + 11 +26362.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +226B + 8 +0 + 62 + 0 + 10 +26412.5 + 20 +9185.048095 + 30 +0.0 + 11 +26437.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +226C + 8 +0 + 62 + 0 + 10 +26487.5 + 20 +9185.048095 + 30 +0.0 + 11 +26512.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +226D + 8 +0 + 62 + 0 + 10 +26562.5 + 20 +9185.048095 + 30 +0.0 + 11 +26587.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +226E + 8 +0 + 62 + 0 + 10 +26637.5 + 20 +9185.048095 + 30 +0.0 + 11 +26662.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +226F + 8 +0 + 62 + 0 + 10 +26712.5 + 20 +9185.048095 + 30 +0.0 + 11 +26737.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2270 + 8 +0 + 62 + 0 + 10 +26787.5 + 20 +9185.048095 + 30 +0.0 + 11 +26812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +2271 + 8 +0 + 62 + 0 + 10 +26412.49993 + 20 +9185.048054 + 30 +0.0 + 11 +26399.99993 + 21 +9206.698689 + 31 +0.0 + 0 +LINE + 5 +2272 + 8 +0 + 62 + 0 + 10 +26374.99993 + 20 +9249.99996 + 30 +0.0 + 11 +26374.999907 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2273 + 8 +0 + 62 + 0 + 10 +26374.99993 + 20 +9206.698689 + 30 +0.0 + 11 +26362.49993 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +2274 + 8 +0 + 62 + 0 + 10 +26371.187928 + 20 +9170.0 + 30 +0.0 + 11 +26362.49993 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +2275 + 8 +0 + 62 + 0 + 10 +26337.49993 + 20 +9228.349325 + 30 +0.0 + 11 +26324.99993 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +2276 + 8 +0 + 62 + 0 + 10 +26337.49993 + 20 +9185.048054 + 30 +0.0 + 11 +26324.99993 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +2277 + 8 +0 + 62 + 0 + 10 +26299.99993 + 20 +9249.99996 + 30 +0.0 + 11 +26299.999907 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2278 + 8 +0 + 62 + 0 + 10 +26299.99993 + 20 +9206.69869 + 30 +0.0 + 11 +26287.49993 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +2279 + 8 +0 + 62 + 0 + 10 +26296.187929 + 20 +9170.0 + 30 +0.0 + 11 +26287.49993 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +227A + 8 +0 + 62 + 0 + 10 +26262.49993 + 20 +9228.349325 + 30 +0.0 + 11 +26249.99993 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +227B + 8 +0 + 62 + 0 + 10 +26262.49993 + 20 +9185.048055 + 30 +0.0 + 11 +26249.99993 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +227C + 8 +0 + 62 + 0 + 10 +26224.99993 + 20 +9249.99996 + 30 +0.0 + 11 +26224.999907 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +227D + 8 +0 + 62 + 0 + 10 +26224.999931 + 20 +9206.69869 + 30 +0.0 + 11 +26212.499931 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +227E + 8 +0 + 62 + 0 + 10 +26221.187929 + 20 +9170.0 + 30 +0.0 + 11 +26212.499931 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +227F + 8 +0 + 62 + 0 + 10 +26187.499931 + 20 +9228.349325 + 30 +0.0 + 11 +26174.999931 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +2280 + 8 +0 + 62 + 0 + 10 +26187.499931 + 20 +9185.048055 + 30 +0.0 + 11 +26174.999931 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +2281 + 8 +0 + 62 + 0 + 10 +26149.999931 + 20 +9249.99996 + 30 +0.0 + 11 +26149.999908 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2282 + 8 +0 + 62 + 0 + 10 +26149.999931 + 20 +9206.69869 + 30 +0.0 + 11 +26137.499931 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +2283 + 8 +0 + 62 + 0 + 10 +26146.187929 + 20 +9170.0 + 30 +0.0 + 11 +26137.499931 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +2284 + 8 +0 + 62 + 0 + 10 +26112.499931 + 20 +9228.349325 + 30 +0.0 + 11 +26099.999931 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +2285 + 8 +0 + 62 + 0 + 10 +26112.499931 + 20 +9185.048055 + 30 +0.0 + 11 +26099.999931 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +2286 + 8 +0 + 62 + 0 + 10 +26074.999931 + 20 +9249.99996 + 30 +0.0 + 11 +26074.999908 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2287 + 8 +0 + 62 + 0 + 10 +26074.999931 + 20 +9206.69869 + 30 +0.0 + 11 +26062.499931 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +2288 + 8 +0 + 62 + 0 + 10 +26071.18793 + 20 +9170.0 + 30 +0.0 + 11 +26062.499931 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +2289 + 8 +0 + 62 + 0 + 10 +26037.499931 + 20 +9228.349325 + 30 +0.0 + 11 +26024.999931 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +228A + 8 +0 + 62 + 0 + 10 +26037.499931 + 20 +9185.048055 + 30 +0.0 + 11 +26024.999931 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +228B + 8 +0 + 62 + 0 + 10 +25999.999931 + 20 +9249.99996 + 30 +0.0 + 11 +25999.999908 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +228C + 8 +0 + 62 + 0 + 10 +25999.999931 + 20 +9206.69869 + 30 +0.0 + 11 +25987.499931 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +228D + 8 +0 + 62 + 0 + 10 +25996.18793 + 20 +9170.0 + 30 +0.0 + 11 +25987.499931 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +228E + 8 +0 + 62 + 0 + 10 +25962.499931 + 20 +9228.349325 + 30 +0.0 + 11 +25949.999931 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +228F + 8 +0 + 62 + 0 + 10 +25962.499931 + 20 +9185.048055 + 30 +0.0 + 11 +25949.999931 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +2290 + 8 +0 + 62 + 0 + 10 +25924.999931 + 20 +9249.99996 + 30 +0.0 + 11 +25924.999909 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2291 + 8 +0 + 62 + 0 + 10 +25924.999932 + 20 +9206.69869 + 30 +0.0 + 11 +25912.499932 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +2292 + 8 +0 + 62 + 0 + 10 +25921.18793 + 20 +9170.0 + 30 +0.0 + 11 +25912.499932 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +2293 + 8 +0 + 62 + 0 + 10 +25887.499932 + 20 +9228.349325 + 30 +0.0 + 11 +25874.999932 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +2294 + 8 +0 + 62 + 0 + 10 +25887.499932 + 20 +9185.048055 + 30 +0.0 + 11 +25874.999932 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +2295 + 8 +0 + 62 + 0 + 10 +25849.999932 + 20 +9249.999961 + 30 +0.0 + 11 +25849.999909 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2296 + 8 +0 + 62 + 0 + 10 +25849.999932 + 20 +9206.69869 + 30 +0.0 + 11 +25837.499932 + 21 +9228.349325 + 31 +0.0 + 0 +LINE + 5 +2297 + 8 +0 + 62 + 0 + 10 +25846.187931 + 20 +9170.0 + 30 +0.0 + 11 +25837.499932 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +2298 + 8 +0 + 62 + 0 + 10 +25812.499932 + 20 +9228.349326 + 30 +0.0 + 11 +25799.999932 + 21 +9249.999961 + 31 +0.0 + 0 +LINE + 5 +2299 + 8 +0 + 62 + 0 + 10 +25812.499932 + 20 +9185.048055 + 30 +0.0 + 11 +25799.999932 + 21 +9206.69869 + 31 +0.0 + 0 +LINE + 5 +229A + 8 +0 + 62 + 0 + 10 +25774.999932 + 20 +9249.999961 + 30 +0.0 + 11 +25774.999909 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +229B + 8 +0 + 62 + 0 + 10 +25774.999932 + 20 +9206.698691 + 30 +0.0 + 11 +25762.499932 + 21 +9228.349326 + 31 +0.0 + 0 +LINE + 5 +229C + 8 +0 + 62 + 0 + 10 +25771.187931 + 20 +9170.0 + 30 +0.0 + 11 +25762.499932 + 21 +9185.048055 + 31 +0.0 + 0 +LINE + 5 +229D + 8 +0 + 62 + 0 + 10 +25737.499932 + 20 +9228.349326 + 30 +0.0 + 11 +25724.999932 + 21 +9249.999961 + 31 +0.0 + 0 +LINE + 5 +229E + 8 +0 + 62 + 0 + 10 +25737.499932 + 20 +9185.048056 + 30 +0.0 + 11 +25724.999932 + 21 +9206.698691 + 31 +0.0 + 0 +LINE + 5 +229F + 8 +0 + 62 + 0 + 10 +25699.999932 + 20 +9249.999961 + 30 +0.0 + 11 +25699.99991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22A0 + 8 +0 + 62 + 0 + 10 +25699.999932 + 20 +9206.698691 + 30 +0.0 + 11 +25687.499932 + 21 +9228.349326 + 31 +0.0 + 0 +LINE + 5 +22A1 + 8 +0 + 62 + 0 + 10 +25696.187931 + 20 +9170.0 + 30 +0.0 + 11 +25687.499932 + 21 +9185.048056 + 31 +0.0 + 0 +LINE + 5 +22A2 + 8 +0 + 62 + 0 + 10 +25662.499932 + 20 +9228.349326 + 30 +0.0 + 11 +25649.999932 + 21 +9249.999961 + 31 +0.0 + 0 +LINE + 5 +22A3 + 8 +0 + 62 + 0 + 10 +25662.499932 + 20 +9185.048056 + 30 +0.0 + 11 +25649.999932 + 21 +9206.698691 + 31 +0.0 + 0 +LINE + 5 +22A4 + 8 +0 + 62 + 0 + 10 +25624.999932 + 20 +9249.999961 + 30 +0.0 + 11 +25624.99991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22A5 + 8 +0 + 62 + 0 + 10 +25624.999932 + 20 +9206.698691 + 30 +0.0 + 11 +25612.499932 + 21 +9228.349326 + 31 +0.0 + 0 +LINE + 5 +22A6 + 8 +0 + 62 + 0 + 10 +25621.187932 + 20 +9170.0 + 30 +0.0 + 11 +25612.499933 + 21 +9185.048056 + 31 +0.0 + 0 +LINE + 5 +22A7 + 8 +0 + 62 + 0 + 10 +25587.499933 + 20 +9228.349326 + 30 +0.0 + 11 +25574.999933 + 21 +9249.999961 + 31 +0.0 + 0 +LINE + 5 +22A8 + 8 +0 + 62 + 0 + 10 +25587.499933 + 20 +9185.048056 + 30 +0.0 + 11 +25574.999933 + 21 +9206.698691 + 31 +0.0 + 0 +LINE + 5 +22A9 + 8 +0 + 62 + 0 + 10 +25549.999933 + 20 +9249.999961 + 30 +0.0 + 11 +25549.99991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22AA + 8 +0 + 62 + 0 + 10 +25549.999933 + 20 +9206.698691 + 30 +0.0 + 11 +25537.499933 + 21 +9228.349326 + 31 +0.0 + 0 +LINE + 5 +22AB + 8 +0 + 62 + 0 + 10 +25546.187932 + 20 +9170.0 + 30 +0.0 + 11 +25537.499933 + 21 +9185.048056 + 31 +0.0 + 0 +LINE + 5 +22AC + 8 +0 + 62 + 0 + 10 +25512.499933 + 20 +9228.349326 + 30 +0.0 + 11 +25499.999933 + 21 +9249.999961 + 31 +0.0 + 0 +LINE + 5 +22AD + 8 +0 + 62 + 0 + 10 +25512.499933 + 20 +9185.048056 + 30 +0.0 + 11 +25499.999933 + 21 +9206.698691 + 31 +0.0 + 0 +LINE + 5 +22AE + 8 +0 + 62 + 0 + 10 +25474.999933 + 20 +9249.999961 + 30 +0.0 + 11 +25474.999911 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22AF + 8 +0 + 62 + 0 + 10 +25474.999933 + 20 +9206.698691 + 30 +0.0 + 11 +25462.499933 + 21 +9228.349326 + 31 +0.0 + 0 +LINE + 5 +22B0 + 8 +0 + 62 + 0 + 10 +25471.187932 + 20 +9170.0 + 30 +0.0 + 11 +25462.499933 + 21 +9185.048056 + 31 +0.0 + 0 +LINE + 5 +22B1 + 8 +0 + 62 + 0 + 10 +25437.499933 + 20 +9228.349326 + 30 +0.0 + 11 +25424.999933 + 21 +9249.999961 + 31 +0.0 + 0 +LINE + 5 +22B2 + 8 +0 + 62 + 0 + 10 +25437.499933 + 20 +9185.048056 + 30 +0.0 + 11 +25424.999933 + 21 +9206.698691 + 31 +0.0 + 0 +LINE + 5 +22B3 + 8 +0 + 62 + 0 + 10 +25399.999933 + 20 +9249.999961 + 30 +0.0 + 11 +25399.999911 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22B4 + 8 +0 + 62 + 0 + 10 +25399.999933 + 20 +9206.698691 + 30 +0.0 + 11 +25387.499933 + 21 +9228.349326 + 31 +0.0 + 0 +LINE + 5 +22B5 + 8 +0 + 62 + 0 + 10 +25396.187933 + 20 +9170.0 + 30 +0.0 + 11 +25387.499933 + 21 +9185.048056 + 31 +0.0 + 0 +LINE + 5 +22B6 + 8 +0 + 62 + 0 + 10 +26446.187928 + 20 +9170.0 + 30 +0.0 + 11 +26437.49993 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +22B7 + 8 +0 + 62 + 0 + 10 +26412.49993 + 20 +9228.349324 + 30 +0.0 + 11 +26399.99993 + 21 +9249.99996 + 31 +0.0 + 0 +LINE + 5 +22B8 + 8 +0 + 62 + 0 + 10 +26449.99993 + 20 +9206.698689 + 30 +0.0 + 11 +26437.49993 + 21 +9228.349324 + 31 +0.0 + 0 +LINE + 5 +22B9 + 8 +0 + 62 + 0 + 10 +26487.49993 + 20 +9185.048054 + 30 +0.0 + 11 +26474.99993 + 21 +9206.698689 + 31 +0.0 + 0 +LINE + 5 +22BA + 8 +0 + 62 + 0 + 10 +26449.99993 + 20 +9249.999959 + 30 +0.0 + 11 +26449.999906 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22BB + 8 +0 + 62 + 0 + 10 +26521.187928 + 20 +9170.0 + 30 +0.0 + 11 +26512.49993 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +22BC + 8 +0 + 62 + 0 + 10 +26487.49993 + 20 +9228.349324 + 30 +0.0 + 11 +26474.99993 + 21 +9249.999959 + 31 +0.0 + 0 +LINE + 5 +22BD + 8 +0 + 62 + 0 + 10 +26524.99993 + 20 +9206.698689 + 30 +0.0 + 11 +26512.49993 + 21 +9228.349324 + 31 +0.0 + 0 +LINE + 5 +22BE + 8 +0 + 62 + 0 + 10 +26562.499929 + 20 +9185.048054 + 30 +0.0 + 11 +26549.999929 + 21 +9206.698689 + 31 +0.0 + 0 +LINE + 5 +22BF + 8 +0 + 62 + 0 + 10 +26524.999929 + 20 +9249.999959 + 30 +0.0 + 11 +26524.999906 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22C0 + 8 +0 + 62 + 0 + 10 +26596.187927 + 20 +9170.0 + 30 +0.0 + 11 +26587.499929 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +22C1 + 8 +0 + 62 + 0 + 10 +26562.499929 + 20 +9228.349324 + 30 +0.0 + 11 +26549.999929 + 21 +9249.999959 + 31 +0.0 + 0 +LINE + 5 +22C2 + 8 +0 + 62 + 0 + 10 +26599.999929 + 20 +9206.698689 + 30 +0.0 + 11 +26587.499929 + 21 +9228.349324 + 31 +0.0 + 0 +LINE + 5 +22C3 + 8 +0 + 62 + 0 + 10 +26637.499929 + 20 +9185.048054 + 30 +0.0 + 11 +26624.999929 + 21 +9206.698689 + 31 +0.0 + 0 +LINE + 5 +22C4 + 8 +0 + 62 + 0 + 10 +26599.999929 + 20 +9249.999959 + 30 +0.0 + 11 +26599.999906 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22C5 + 8 +0 + 62 + 0 + 10 +26671.187927 + 20 +9170.0 + 30 +0.0 + 11 +26662.499929 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +22C6 + 8 +0 + 62 + 0 + 10 +26637.499929 + 20 +9228.349324 + 30 +0.0 + 11 +26624.999929 + 21 +9249.999959 + 31 +0.0 + 0 +LINE + 5 +22C7 + 8 +0 + 62 + 0 + 10 +26674.999929 + 20 +9206.698689 + 30 +0.0 + 11 +26662.499929 + 21 +9228.349324 + 31 +0.0 + 0 +LINE + 5 +22C8 + 8 +0 + 62 + 0 + 10 +26712.499929 + 20 +9185.048054 + 30 +0.0 + 11 +26699.999929 + 21 +9206.698689 + 31 +0.0 + 0 +LINE + 5 +22C9 + 8 +0 + 62 + 0 + 10 +26674.999929 + 20 +9249.999959 + 30 +0.0 + 11 +26674.999905 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +22CA + 8 +0 + 62 + 0 + 10 +26746.187927 + 20 +9170.0 + 30 +0.0 + 11 +26737.499929 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +22CB + 8 +0 + 62 + 0 + 10 +26712.499929 + 20 +9228.349324 + 30 +0.0 + 11 +26699.999929 + 21 +9249.999959 + 31 +0.0 + 0 +LINE + 5 +22CC + 8 +0 + 62 + 0 + 10 +26749.999929 + 20 +9206.698689 + 30 +0.0 + 11 +26737.499929 + 21 +9228.349324 + 31 +0.0 + 0 +LINE + 5 +22CD + 8 +0 + 62 + 0 + 10 +26787.499929 + 20 +9185.048054 + 30 +0.0 + 11 +26774.999929 + 21 +9206.698689 + 31 +0.0 + 0 +LINE + 5 +22CE + 8 +0 + 62 + 0 + 10 +26749.999929 + 20 +9249.999959 + 30 +0.0 + 11 +26740.0 + 21 +9267.320343 + 31 +0.0 + 0 +LINE + 5 +22CF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9172.057549 + 30 +0.0 + 11 +26812.499929 + 21 +9185.048054 + 31 +0.0 + 0 +LINE + 5 +22D0 + 8 +0 + 62 + 0 + 10 +26787.499929 + 20 +9228.349324 + 30 +0.0 + 11 +26774.999929 + 21 +9249.999959 + 31 +0.0 + 0 +LINE + 5 +22D1 + 8 +0 + 62 + 0 + 10 +26749.999929 + 20 +9293.301229 + 30 +0.0 + 11 +26740.0 + 21 +9310.621613 + 31 +0.0 + 0 +LINE + 5 +22D2 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9215.358819 + 30 +0.0 + 11 +26812.499929 + 21 +9228.349324 + 31 +0.0 + 0 +LINE + 5 +22D3 + 8 +0 + 62 + 0 + 10 +26787.499929 + 20 +9271.650594 + 30 +0.0 + 11 +26774.999929 + 21 +9293.301229 + 31 +0.0 + 0 +LINE + 5 +22D4 + 8 +0 + 62 + 0 + 10 +26749.999929 + 20 +9336.602499 + 30 +0.0 + 11 +26740.0 + 21 +9353.922883 + 31 +0.0 + 0 +LINE + 5 +22D5 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9258.660089 + 30 +0.0 + 11 +26812.499928 + 21 +9271.650594 + 31 +0.0 + 0 +LINE + 5 +22D6 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9314.951864 + 30 +0.0 + 11 +26774.999928 + 21 +9336.602499 + 31 +0.0 + 0 +LINE + 5 +22D7 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9379.903769 + 30 +0.0 + 11 +26740.0 + 21 +9397.224153 + 31 +0.0 + 0 +LINE + 5 +22D8 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9301.961359 + 30 +0.0 + 11 +26812.499928 + 21 +9314.951864 + 31 +0.0 + 0 +LINE + 5 +22D9 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9358.253134 + 30 +0.0 + 11 +26774.999928 + 21 +9379.903769 + 31 +0.0 + 0 +LINE + 5 +22DA + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9423.205039 + 30 +0.0 + 11 +26740.0 + 21 +9440.525423 + 31 +0.0 + 0 +LINE + 5 +22DB + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9345.262629 + 30 +0.0 + 11 +26812.499928 + 21 +9358.253134 + 31 +0.0 + 0 +LINE + 5 +22DC + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9401.554404 + 30 +0.0 + 11 +26774.999928 + 21 +9423.205039 + 31 +0.0 + 0 +LINE + 5 +22DD + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9466.50631 + 30 +0.0 + 11 +26740.0 + 21 +9483.826693 + 31 +0.0 + 0 +LINE + 5 +22DE + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9388.563899 + 30 +0.0 + 11 +26812.499928 + 21 +9401.554404 + 31 +0.0 + 0 +LINE + 5 +22DF + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9444.855674 + 30 +0.0 + 11 +26774.999928 + 21 +9466.50631 + 31 +0.0 + 0 +LINE + 5 +22E0 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9509.80758 + 30 +0.0 + 11 +26740.0 + 21 +9527.127963 + 31 +0.0 + 0 +LINE + 5 +22E1 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9431.865169 + 30 +0.0 + 11 +26812.499928 + 21 +9444.855674 + 31 +0.0 + 0 +LINE + 5 +22E2 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9488.156945 + 30 +0.0 + 11 +26774.999928 + 21 +9509.80758 + 31 +0.0 + 0 +LINE + 5 +22E3 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9553.10885 + 30 +0.0 + 11 +26740.0 + 21 +9570.429233 + 31 +0.0 + 0 +LINE + 5 +22E4 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9475.166439 + 30 +0.0 + 11 +26812.499928 + 21 +9488.156945 + 31 +0.0 + 0 +LINE + 5 +22E5 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9531.458215 + 30 +0.0 + 11 +26774.999928 + 21 +9553.10885 + 31 +0.0 + 0 +LINE + 5 +22E6 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9596.41012 + 30 +0.0 + 11 +26740.0 + 21 +9613.730503 + 31 +0.0 + 0 +LINE + 5 +22E7 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9518.467709 + 30 +0.0 + 11 +26812.499928 + 21 +9531.458215 + 31 +0.0 + 0 +LINE + 5 +22E8 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9574.759485 + 30 +0.0 + 11 +26774.999928 + 21 +9596.41012 + 31 +0.0 + 0 +LINE + 5 +22E9 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9639.71139 + 30 +0.0 + 11 +26740.0 + 21 +9657.031773 + 31 +0.0 + 0 +LINE + 5 +22EA + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9561.768979 + 30 +0.0 + 11 +26812.499928 + 21 +9574.759485 + 31 +0.0 + 0 +LINE + 5 +22EB + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9618.060755 + 30 +0.0 + 11 +26774.999928 + 21 +9639.71139 + 31 +0.0 + 0 +LINE + 5 +22EC + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9683.01266 + 30 +0.0 + 11 +26740.0 + 21 +9700.333043 + 31 +0.0 + 0 +LINE + 5 +22ED + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9605.070249 + 30 +0.0 + 11 +26812.499928 + 21 +9618.060755 + 31 +0.0 + 0 +LINE + 5 +22EE + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9661.362025 + 30 +0.0 + 11 +26774.999928 + 21 +9683.01266 + 31 +0.0 + 0 +LINE + 5 +22EF + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9726.31393 + 30 +0.0 + 11 +26740.0 + 21 +9743.634313 + 31 +0.0 + 0 +LINE + 5 +22F0 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9648.371519 + 30 +0.0 + 11 +26812.499928 + 21 +9661.362025 + 31 +0.0 + 0 +LINE + 5 +22F1 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9704.663295 + 30 +0.0 + 11 +26774.999928 + 21 +9726.31393 + 31 +0.0 + 0 +LINE + 5 +22F2 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9769.615201 + 30 +0.0 + 11 +26740.0 + 21 +9786.935583 + 31 +0.0 + 0 +LINE + 5 +22F3 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9691.672789 + 30 +0.0 + 11 +26812.499928 + 21 +9704.663295 + 31 +0.0 + 0 +LINE + 5 +22F4 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9747.964565 + 30 +0.0 + 11 +26774.999928 + 21 +9769.6152 + 31 +0.0 + 0 +LINE + 5 +22F5 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9812.916471 + 30 +0.0 + 11 +26740.0 + 21 +9830.236853 + 31 +0.0 + 0 +LINE + 5 +22F6 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9734.974059 + 30 +0.0 + 11 +26812.499928 + 21 +9747.964565 + 31 +0.0 + 0 +LINE + 5 +22F7 + 8 +0 + 62 + 0 + 10 +26787.499928 + 20 +9791.265836 + 30 +0.0 + 11 +26774.999928 + 21 +9812.916471 + 31 +0.0 + 0 +LINE + 5 +22F8 + 8 +0 + 62 + 0 + 10 +26749.999928 + 20 +9856.217741 + 30 +0.0 + 11 +26740.0 + 21 +9873.538123 + 31 +0.0 + 0 +LINE + 5 +22F9 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9778.275329 + 30 +0.0 + 11 +26812.499927 + 21 +9791.265835 + 31 +0.0 + 0 +LINE + 5 +22FA + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +9834.567106 + 30 +0.0 + 11 +26774.999927 + 21 +9856.217741 + 31 +0.0 + 0 +LINE + 5 +22FB + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +9899.519011 + 30 +0.0 + 11 +26740.0 + 21 +9916.839393 + 31 +0.0 + 0 +LINE + 5 +22FC + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9821.576599 + 30 +0.0 + 11 +26812.499927 + 21 +9834.567106 + 31 +0.0 + 0 +LINE + 5 +22FD + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +9877.868376 + 30 +0.0 + 11 +26774.999927 + 21 +9899.519011 + 31 +0.0 + 0 +LINE + 5 +22FE + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +9942.820281 + 30 +0.0 + 11 +26740.0 + 21 +9960.140663 + 31 +0.0 + 0 +LINE + 5 +22FF + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9864.877869 + 30 +0.0 + 11 +26812.499927 + 21 +9877.868376 + 31 +0.0 + 0 +LINE + 5 +2300 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +9921.169646 + 30 +0.0 + 11 +26774.999927 + 21 +9942.820281 + 31 +0.0 + 0 +LINE + 5 +2301 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +9986.121551 + 30 +0.0 + 11 +26740.0 + 21 +10003.441933 + 31 +0.0 + 0 +LINE + 5 +2302 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9908.179139 + 30 +0.0 + 11 +26812.499927 + 21 +9921.169646 + 31 +0.0 + 0 +LINE + 5 +2303 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +9964.470916 + 30 +0.0 + 11 +26774.999927 + 21 +9986.121551 + 31 +0.0 + 0 +LINE + 5 +2304 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10029.422821 + 30 +0.0 + 11 +26740.0 + 21 +10046.743203 + 31 +0.0 + 0 +LINE + 5 +2305 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9951.480409 + 30 +0.0 + 11 +26812.499927 + 21 +9964.470916 + 31 +0.0 + 0 +LINE + 5 +2306 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10007.772186 + 30 +0.0 + 11 +26774.999927 + 21 +10029.422821 + 31 +0.0 + 0 +LINE + 5 +2307 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10072.724092 + 30 +0.0 + 11 +26740.0 + 21 +10090.044473 + 31 +0.0 + 0 +LINE + 5 +2308 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +9994.781679 + 30 +0.0 + 11 +26812.499927 + 21 +10007.772186 + 31 +0.0 + 0 +LINE + 5 +2309 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10051.073456 + 30 +0.0 + 11 +26774.999927 + 21 +10072.724091 + 31 +0.0 + 0 +LINE + 5 +230A + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10116.025362 + 30 +0.0 + 11 +26740.0 + 21 +10133.345743 + 31 +0.0 + 0 +LINE + 5 +230B + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10038.082949 + 30 +0.0 + 11 +26812.499927 + 21 +10051.073456 + 31 +0.0 + 0 +LINE + 5 +230C + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10094.374727 + 30 +0.0 + 11 +26774.999927 + 21 +10116.025362 + 31 +0.0 + 0 +LINE + 5 +230D + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10159.326632 + 30 +0.0 + 11 +26740.0 + 21 +10176.647013 + 31 +0.0 + 0 +LINE + 5 +230E + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10081.384219 + 30 +0.0 + 11 +26812.499927 + 21 +10094.374726 + 31 +0.0 + 0 +LINE + 5 +230F + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10137.675997 + 30 +0.0 + 11 +26774.999927 + 21 +10159.326632 + 31 +0.0 + 0 +LINE + 5 +2310 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10202.627902 + 30 +0.0 + 11 +26740.0 + 21 +10219.948283 + 31 +0.0 + 0 +LINE + 5 +2311 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10124.685489 + 30 +0.0 + 11 +26812.499927 + 21 +10137.675997 + 31 +0.0 + 0 +LINE + 5 +2312 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10180.977267 + 30 +0.0 + 11 +26774.999927 + 21 +10202.627902 + 31 +0.0 + 0 +LINE + 5 +2313 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10245.929172 + 30 +0.0 + 11 +26740.0 + 21 +10263.249553 + 31 +0.0 + 0 +LINE + 5 +2314 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10167.986759 + 30 +0.0 + 11 +26812.499927 + 21 +10180.977267 + 31 +0.0 + 0 +LINE + 5 +2315 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10224.278537 + 30 +0.0 + 11 +26774.999927 + 21 +10245.929172 + 31 +0.0 + 0 +LINE + 5 +2316 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10289.230442 + 30 +0.0 + 11 +26740.0 + 21 +10306.550823 + 31 +0.0 + 0 +LINE + 5 +2317 + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10211.288029 + 30 +0.0 + 11 +26812.499927 + 21 +10224.278537 + 31 +0.0 + 0 +LINE + 5 +2318 + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10267.579807 + 30 +0.0 + 11 +26774.999927 + 21 +10289.230442 + 31 +0.0 + 0 +LINE + 5 +2319 + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10332.531712 + 30 +0.0 + 11 +26740.0 + 21 +10349.852093 + 31 +0.0 + 0 +LINE + 5 +231A + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10254.589299 + 30 +0.0 + 11 +26812.499927 + 21 +10267.579807 + 31 +0.0 + 0 +LINE + 5 +231B + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10310.881077 + 30 +0.0 + 11 +26774.999927 + 21 +10332.531712 + 31 +0.0 + 0 +LINE + 5 +231C + 8 +0 + 62 + 0 + 10 +26749.999927 + 20 +10375.832983 + 30 +0.0 + 11 +26749.759161 + 21 +10376.25 + 31 +0.0 + 0 +LINE + 5 +231D + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10297.890569 + 30 +0.0 + 11 +26812.499927 + 21 +10310.881077 + 31 +0.0 + 0 +LINE + 5 +231E + 8 +0 + 62 + 0 + 10 +26787.499927 + 20 +10354.182347 + 30 +0.0 + 11 +26774.999927 + 21 +10375.832982 + 31 +0.0 + 0 +LINE + 5 +231F + 8 +0 + 62 + 0 + 10 +26820.0 + 20 +10341.191839 + 30 +0.0 + 11 +26812.499926 + 21 +10354.182347 + 31 +0.0 + 0 +LINE + 5 +2320 + 8 +0 + 62 + 0 + 10 +25728.811888 + 20 +9170.0 + 30 +0.0 + 11 +25737.499932 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +2321 + 8 +0 + 62 + 0 + 10 +25762.499932 + 20 +9228.349404 + 30 +0.0 + 11 +25774.999909 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2322 + 8 +0 + 62 + 0 + 10 +25724.999932 + 20 +9206.698769 + 30 +0.0 + 11 +25737.499932 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +2323 + 8 +0 + 62 + 0 + 10 +25687.499932 + 20 +9185.048134 + 30 +0.0 + 11 +25699.999932 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +2324 + 8 +0 + 62 + 0 + 10 +25653.811888 + 20 +9170.0 + 30 +0.0 + 11 +25662.499932 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +2325 + 8 +0 + 62 + 0 + 10 +25687.499932 + 20 +9228.349404 + 30 +0.0 + 11 +25699.99991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2326 + 8 +0 + 62 + 0 + 10 +25649.999932 + 20 +9206.698769 + 30 +0.0 + 11 +25662.499932 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +2327 + 8 +0 + 62 + 0 + 10 +25612.499932 + 20 +9185.048134 + 30 +0.0 + 11 +25624.999932 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +2328 + 8 +0 + 62 + 0 + 10 +25578.811888 + 20 +9170.0 + 30 +0.0 + 11 +25587.499932 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +2329 + 8 +0 + 62 + 0 + 10 +25612.499932 + 20 +9228.349404 + 30 +0.0 + 11 +25624.99991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +232A + 8 +0 + 62 + 0 + 10 +25574.999932 + 20 +9206.698769 + 30 +0.0 + 11 +25587.499932 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +232B + 8 +0 + 62 + 0 + 10 +25537.499933 + 20 +9185.048134 + 30 +0.0 + 11 +25549.999933 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +232C + 8 +0 + 62 + 0 + 10 +25503.811889 + 20 +9170.0 + 30 +0.0 + 11 +25512.499933 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +232D + 8 +0 + 62 + 0 + 10 +25537.499933 + 20 +9228.349404 + 30 +0.0 + 11 +25549.99991 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +232E + 8 +0 + 62 + 0 + 10 +25499.999933 + 20 +9206.698769 + 30 +0.0 + 11 +25512.499933 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +232F + 8 +0 + 62 + 0 + 10 +25462.499933 + 20 +9185.048134 + 30 +0.0 + 11 +25474.999933 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +2330 + 8 +0 + 62 + 0 + 10 +25428.811889 + 20 +9170.0 + 30 +0.0 + 11 +25437.499933 + 21 +9185.048133 + 31 +0.0 + 0 +LINE + 5 +2331 + 8 +0 + 62 + 0 + 10 +25462.499933 + 20 +9228.349404 + 30 +0.0 + 11 +25474.999911 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2332 + 8 +0 + 62 + 0 + 10 +25424.999933 + 20 +9206.698769 + 30 +0.0 + 11 +25437.499933 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +2333 + 8 +0 + 62 + 0 + 10 +25387.499933 + 20 +9185.048133 + 30 +0.0 + 11 +25399.999933 + 21 +9206.698768 + 31 +0.0 + 0 +LINE + 5 +2334 + 8 +0 + 62 + 0 + 10 +25387.499933 + 20 +9228.349404 + 30 +0.0 + 11 +25399.999911 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2335 + 8 +0 + 62 + 0 + 10 +25762.499932 + 20 +9185.048134 + 30 +0.0 + 11 +25774.999932 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +2336 + 8 +0 + 62 + 0 + 10 +25799.999932 + 20 +9206.698769 + 30 +0.0 + 11 +25812.499932 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +2337 + 8 +0 + 62 + 0 + 10 +25803.811887 + 20 +9170.0 + 30 +0.0 + 11 +25812.499932 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +2338 + 8 +0 + 62 + 0 + 10 +25837.499932 + 20 +9228.349404 + 30 +0.0 + 11 +25849.999909 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2339 + 8 +0 + 62 + 0 + 10 +25837.499932 + 20 +9185.048134 + 30 +0.0 + 11 +25849.999932 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +233A + 8 +0 + 62 + 0 + 10 +25874.999932 + 20 +9206.698769 + 30 +0.0 + 11 +25887.499932 + 21 +9228.349404 + 31 +0.0 + 0 +LINE + 5 +233B + 8 +0 + 62 + 0 + 10 +25878.811887 + 20 +9170.0 + 30 +0.0 + 11 +25887.499931 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +233C + 8 +0 + 62 + 0 + 10 +25912.499931 + 20 +9228.349405 + 30 +0.0 + 11 +25924.999909 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +233D + 8 +0 + 62 + 0 + 10 +25912.499931 + 20 +9185.048134 + 30 +0.0 + 11 +25924.999931 + 21 +9206.698769 + 31 +0.0 + 0 +LINE + 5 +233E + 8 +0 + 62 + 0 + 10 +25949.999931 + 20 +9206.69877 + 30 +0.0 + 11 +25962.499931 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +233F + 8 +0 + 62 + 0 + 10 +25953.811887 + 20 +9170.0 + 30 +0.0 + 11 +25962.499931 + 21 +9185.048134 + 31 +0.0 + 0 +LINE + 5 +2340 + 8 +0 + 62 + 0 + 10 +25987.499931 + 20 +9228.349405 + 30 +0.0 + 11 +25999.999908 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2341 + 8 +0 + 62 + 0 + 10 +25987.499931 + 20 +9185.048135 + 30 +0.0 + 11 +25999.999931 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +2342 + 8 +0 + 62 + 0 + 10 +26024.999931 + 20 +9206.69877 + 30 +0.0 + 11 +26037.499931 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +2343 + 8 +0 + 62 + 0 + 10 +26028.811886 + 20 +9170.0 + 30 +0.0 + 11 +26037.499931 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +2344 + 8 +0 + 62 + 0 + 10 +26062.499931 + 20 +9228.349405 + 30 +0.0 + 11 +26074.999908 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2345 + 8 +0 + 62 + 0 + 10 +26062.499931 + 20 +9185.048135 + 30 +0.0 + 11 +26074.999931 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +2346 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10358.512677 + 30 +0.0 + 11 +26749.999931 + 21 +10375.833065 + 31 +0.0 + 0 +LINE + 5 +2347 + 8 +0 + 62 + 0 + 10 +26099.999931 + 20 +9206.69877 + 30 +0.0 + 11 +26112.499931 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +2348 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10315.211407 + 30 +0.0 + 11 +26749.999931 + 21 +10332.531795 + 31 +0.0 + 0 +LINE + 5 +2349 + 8 +0 + 62 + 0 + 10 +26774.999931 + 20 +10375.833065 + 30 +0.0 + 11 +26775.240648 + 21 +10376.25 + 31 +0.0 + 0 +LINE + 5 +234A + 8 +0 + 62 + 0 + 10 +26103.811886 + 20 +9170.0 + 30 +0.0 + 11 +26112.499931 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +234B + 8 +0 + 62 + 0 + 10 +26137.499931 + 20 +9228.349405 + 30 +0.0 + 11 +26149.999908 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +234C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10271.910137 + 30 +0.0 + 11 +26749.999931 + 21 +10289.230525 + 31 +0.0 + 0 +LINE + 5 +234D + 8 +0 + 62 + 0 + 10 +26774.999931 + 20 +10332.531795 + 30 +0.0 + 11 +26787.499931 + 21 +10354.18243 + 31 +0.0 + 0 +LINE + 5 +234E + 8 +0 + 62 + 0 + 10 +26137.499931 + 20 +9185.048135 + 30 +0.0 + 11 +26149.999931 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +234F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10228.608867 + 30 +0.0 + 11 +26749.999931 + 21 +10245.929254 + 31 +0.0 + 0 +LINE + 5 +2350 + 8 +0 + 62 + 0 + 10 +26774.999931 + 20 +10289.230525 + 30 +0.0 + 11 +26787.499931 + 21 +10310.88116 + 31 +0.0 + 0 +LINE + 5 +2351 + 8 +0 + 62 + 0 + 10 +26812.499931 + 20 +10354.18243 + 30 +0.0 + 11 +26820.0 + 21 +10367.172931 + 31 +0.0 + 0 +LINE + 5 +2352 + 8 +0 + 62 + 0 + 10 +26174.999931 + 20 +9206.69877 + 30 +0.0 + 11 +26187.499931 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +2353 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10185.307597 + 30 +0.0 + 11 +26749.999931 + 21 +10202.627984 + 31 +0.0 + 0 +LINE + 5 +2354 + 8 +0 + 62 + 0 + 10 +26774.999931 + 20 +10245.929254 + 30 +0.0 + 11 +26787.499931 + 21 +10267.57989 + 31 +0.0 + 0 +LINE + 5 +2355 + 8 +0 + 62 + 0 + 10 +26812.499931 + 20 +10310.88116 + 30 +0.0 + 11 +26820.0 + 21 +10323.871661 + 31 +0.0 + 0 +LINE + 5 +2356 + 8 +0 + 62 + 0 + 10 +26178.811886 + 20 +9170.0 + 30 +0.0 + 11 +26187.49993 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +2357 + 8 +0 + 62 + 0 + 10 +26212.49993 + 20 +9228.349405 + 30 +0.0 + 11 +26224.999907 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2358 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10142.006327 + 30 +0.0 + 11 +26749.99993 + 21 +10159.326714 + 31 +0.0 + 0 +LINE + 5 +2359 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +10202.627984 + 30 +0.0 + 11 +26787.49993 + 21 +10224.278619 + 31 +0.0 + 0 +LINE + 5 +235A + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10267.57989 + 30 +0.0 + 11 +26820.0 + 21 +10280.570391 + 31 +0.0 + 0 +LINE + 5 +235B + 8 +0 + 62 + 0 + 10 +26212.49993 + 20 +9185.048135 + 30 +0.0 + 11 +26224.99993 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +235C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10098.705057 + 30 +0.0 + 11 +26749.99993 + 21 +10116.025444 + 31 +0.0 + 0 +LINE + 5 +235D + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +10159.326714 + 30 +0.0 + 11 +26787.49993 + 21 +10180.977349 + 31 +0.0 + 0 +LINE + 5 +235E + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10224.278619 + 30 +0.0 + 11 +26820.0 + 21 +10237.269121 + 31 +0.0 + 0 +LINE + 5 +235F + 8 +0 + 62 + 0 + 10 +26249.99993 + 20 +9206.69877 + 30 +0.0 + 11 +26262.49993 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +2360 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10055.403787 + 30 +0.0 + 11 +26749.99993 + 21 +10072.724174 + 31 +0.0 + 0 +LINE + 5 +2361 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +10116.025444 + 30 +0.0 + 11 +26787.49993 + 21 +10137.676079 + 31 +0.0 + 0 +LINE + 5 +2362 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10180.977349 + 30 +0.0 + 11 +26820.0 + 21 +10193.967851 + 31 +0.0 + 0 +LINE + 5 +2363 + 8 +0 + 62 + 0 + 10 +26253.811885 + 20 +9170.0 + 30 +0.0 + 11 +26262.49993 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +2364 + 8 +0 + 62 + 0 + 10 +26287.49993 + 20 +9228.349405 + 30 +0.0 + 11 +26299.999907 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2365 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +10012.102517 + 30 +0.0 + 11 +26749.99993 + 21 +10029.422904 + 31 +0.0 + 0 +LINE + 5 +2366 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +10072.724174 + 30 +0.0 + 11 +26787.49993 + 21 +10094.374809 + 31 +0.0 + 0 +LINE + 5 +2367 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10137.676079 + 30 +0.0 + 11 +26820.0 + 21 +10150.666581 + 31 +0.0 + 0 +LINE + 5 +2368 + 8 +0 + 62 + 0 + 10 +26287.49993 + 20 +9185.048135 + 30 +0.0 + 11 +26299.99993 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +2369 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9968.801247 + 30 +0.0 + 11 +26749.99993 + 21 +9986.121634 + 31 +0.0 + 0 +LINE + 5 +236A + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +10029.422904 + 30 +0.0 + 11 +26787.49993 + 21 +10051.073539 + 31 +0.0 + 0 +LINE + 5 +236B + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10094.374809 + 30 +0.0 + 11 +26820.0 + 21 +10107.365311 + 31 +0.0 + 0 +LINE + 5 +236C + 8 +0 + 62 + 0 + 10 +26324.99993 + 20 +9206.69877 + 30 +0.0 + 11 +26337.49993 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +236D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9925.499977 + 30 +0.0 + 11 +26749.99993 + 21 +9942.820363 + 31 +0.0 + 0 +LINE + 5 +236E + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9986.121634 + 30 +0.0 + 11 +26787.49993 + 21 +10007.772269 + 31 +0.0 + 0 +LINE + 5 +236F + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10051.073539 + 30 +0.0 + 11 +26820.0 + 21 +10064.064041 + 31 +0.0 + 0 +LINE + 5 +2370 + 8 +0 + 62 + 0 + 10 +26328.811885 + 20 +9170.0 + 30 +0.0 + 11 +26337.49993 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +2371 + 8 +0 + 62 + 0 + 10 +26362.49993 + 20 +9228.349405 + 30 +0.0 + 11 +26374.999907 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2372 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9882.198707 + 30 +0.0 + 11 +26749.99993 + 21 +9899.519093 + 31 +0.0 + 0 +LINE + 5 +2373 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9942.820363 + 30 +0.0 + 11 +26787.49993 + 21 +9964.470999 + 31 +0.0 + 0 +LINE + 5 +2374 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +10007.772269 + 30 +0.0 + 11 +26820.0 + 21 +10020.762771 + 31 +0.0 + 0 +LINE + 5 +2375 + 8 +0 + 62 + 0 + 10 +26362.49993 + 20 +9185.048135 + 30 +0.0 + 11 +26374.99993 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +2376 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9838.897437 + 30 +0.0 + 11 +26749.99993 + 21 +9856.217823 + 31 +0.0 + 0 +LINE + 5 +2377 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9899.519093 + 30 +0.0 + 11 +26787.49993 + 21 +9921.169728 + 31 +0.0 + 0 +LINE + 5 +2378 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +9964.470999 + 30 +0.0 + 11 +26820.0 + 21 +9977.461501 + 31 +0.0 + 0 +LINE + 5 +2379 + 8 +0 + 62 + 0 + 10 +26399.99993 + 20 +9206.69877 + 30 +0.0 + 11 +26412.49993 + 21 +9228.349405 + 31 +0.0 + 0 +LINE + 5 +237A + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9795.596167 + 30 +0.0 + 11 +26749.99993 + 21 +9812.916553 + 31 +0.0 + 0 +LINE + 5 +237B + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9856.217823 + 30 +0.0 + 11 +26787.49993 + 21 +9877.868458 + 31 +0.0 + 0 +LINE + 5 +237C + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +9921.169728 + 30 +0.0 + 11 +26820.0 + 21 +9934.160231 + 31 +0.0 + 0 +LINE + 5 +237D + 8 +0 + 62 + 0 + 10 +26403.811885 + 20 +9170.0 + 30 +0.0 + 11 +26412.49993 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +237E + 8 +0 + 62 + 0 + 10 +26437.49993 + 20 +9228.349405 + 30 +0.0 + 11 +26449.999906 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +237F + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9752.294897 + 30 +0.0 + 11 +26749.99993 + 21 +9769.615283 + 31 +0.0 + 0 +LINE + 5 +2380 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9812.916553 + 30 +0.0 + 11 +26787.49993 + 21 +9834.567188 + 31 +0.0 + 0 +LINE + 5 +2381 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +9877.868458 + 30 +0.0 + 11 +26820.0 + 21 +9890.858961 + 31 +0.0 + 0 +LINE + 5 +2382 + 8 +0 + 62 + 0 + 10 +26437.49993 + 20 +9185.048135 + 30 +0.0 + 11 +26449.99993 + 21 +9206.69877 + 31 +0.0 + 0 +LINE + 5 +2383 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9708.993627 + 30 +0.0 + 11 +26749.99993 + 21 +9726.314013 + 31 +0.0 + 0 +LINE + 5 +2384 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9769.615283 + 30 +0.0 + 11 +26787.49993 + 21 +9791.265918 + 31 +0.0 + 0 +LINE + 5 +2385 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +9834.567188 + 30 +0.0 + 11 +26820.0 + 21 +9847.557691 + 31 +0.0 + 0 +LINE + 5 +2386 + 8 +0 + 62 + 0 + 10 +26474.99993 + 20 +9206.69877 + 30 +0.0 + 11 +26487.49993 + 21 +9228.349406 + 31 +0.0 + 0 +LINE + 5 +2387 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9665.692357 + 30 +0.0 + 11 +26749.99993 + 21 +9683.012743 + 31 +0.0 + 0 +LINE + 5 +2388 + 8 +0 + 62 + 0 + 10 +26774.99993 + 20 +9726.314013 + 30 +0.0 + 11 +26787.49993 + 21 +9747.964648 + 31 +0.0 + 0 +LINE + 5 +2389 + 8 +0 + 62 + 0 + 10 +26812.49993 + 20 +9791.265918 + 30 +0.0 + 11 +26820.0 + 21 +9804.256421 + 31 +0.0 + 0 +LINE + 5 +238A + 8 +0 + 62 + 0 + 10 +26478.811884 + 20 +9170.0 + 30 +0.0 + 11 +26487.499929 + 21 +9185.048135 + 31 +0.0 + 0 +LINE + 5 +238B + 8 +0 + 62 + 0 + 10 +26512.499929 + 20 +9228.349406 + 30 +0.0 + 11 +26524.999906 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +238C + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9622.391087 + 30 +0.0 + 11 +26749.999929 + 21 +9639.711472 + 31 +0.0 + 0 +LINE + 5 +238D + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9683.012743 + 30 +0.0 + 11 +26787.499929 + 21 +9704.663378 + 31 +0.0 + 0 +LINE + 5 +238E + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9747.964648 + 30 +0.0 + 11 +26820.0 + 21 +9760.955151 + 31 +0.0 + 0 +LINE + 5 +238F + 8 +0 + 62 + 0 + 10 +26512.499929 + 20 +9185.048135 + 30 +0.0 + 11 +26524.999929 + 21 +9206.698771 + 31 +0.0 + 0 +LINE + 5 +2390 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9579.089817 + 30 +0.0 + 11 +26749.999929 + 21 +9596.410202 + 31 +0.0 + 0 +LINE + 5 +2391 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9639.711472 + 30 +0.0 + 11 +26787.499929 + 21 +9661.362108 + 31 +0.0 + 0 +LINE + 5 +2392 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9704.663378 + 30 +0.0 + 11 +26820.0 + 21 +9717.653881 + 31 +0.0 + 0 +LINE + 5 +2393 + 8 +0 + 62 + 0 + 10 +26549.999929 + 20 +9206.698771 + 30 +0.0 + 11 +26562.499929 + 21 +9228.349406 + 31 +0.0 + 0 +LINE + 5 +2394 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9535.788547 + 30 +0.0 + 11 +26749.999929 + 21 +9553.108932 + 31 +0.0 + 0 +LINE + 5 +2395 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9596.410202 + 30 +0.0 + 11 +26787.499929 + 21 +9618.060837 + 31 +0.0 + 0 +LINE + 5 +2396 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9661.362108 + 30 +0.0 + 11 +26820.0 + 21 +9674.352611 + 31 +0.0 + 0 +LINE + 5 +2397 + 8 +0 + 62 + 0 + 10 +26553.811884 + 20 +9170.0 + 30 +0.0 + 11 +26562.499929 + 21 +9185.048136 + 31 +0.0 + 0 +LINE + 5 +2398 + 8 +0 + 62 + 0 + 10 +26587.499929 + 20 +9228.349406 + 30 +0.0 + 11 +26599.999906 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2399 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9492.487277 + 30 +0.0 + 11 +26749.999929 + 21 +9509.807662 + 31 +0.0 + 0 +LINE + 5 +239A + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9553.108932 + 30 +0.0 + 11 +26787.499929 + 21 +9574.759567 + 31 +0.0 + 0 +LINE + 5 +239B + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9618.060837 + 30 +0.0 + 11 +26820.0 + 21 +9631.051341 + 31 +0.0 + 0 +LINE + 5 +239C + 8 +0 + 62 + 0 + 10 +26587.499929 + 20 +9185.048136 + 30 +0.0 + 11 +26599.999929 + 21 +9206.698771 + 31 +0.0 + 0 +LINE + 5 +239D + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9449.186007 + 30 +0.0 + 11 +26749.999929 + 21 +9466.506392 + 31 +0.0 + 0 +LINE + 5 +239E + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9509.807662 + 30 +0.0 + 11 +26787.499929 + 21 +9531.458297 + 31 +0.0 + 0 +LINE + 5 +239F + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9574.759567 + 30 +0.0 + 11 +26820.0 + 21 +9587.750071 + 31 +0.0 + 0 +LINE + 5 +23A0 + 8 +0 + 62 + 0 + 10 +26624.999929 + 20 +9206.698771 + 30 +0.0 + 11 +26637.499929 + 21 +9228.349406 + 31 +0.0 + 0 +LINE + 5 +23A1 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9405.884737 + 30 +0.0 + 11 +26749.999929 + 21 +9423.205122 + 31 +0.0 + 0 +LINE + 5 +23A2 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9466.506392 + 30 +0.0 + 11 +26787.499929 + 21 +9488.157027 + 31 +0.0 + 0 +LINE + 5 +23A3 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9531.458297 + 30 +0.0 + 11 +26820.0 + 21 +9544.448801 + 31 +0.0 + 0 +LINE + 5 +23A4 + 8 +0 + 62 + 0 + 10 +26628.811884 + 20 +9170.0 + 30 +0.0 + 11 +26637.499929 + 21 +9185.048136 + 31 +0.0 + 0 +LINE + 5 +23A5 + 8 +0 + 62 + 0 + 10 +26662.499929 + 20 +9228.349406 + 30 +0.0 + 11 +26674.999905 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +23A6 + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9362.583467 + 30 +0.0 + 11 +26749.999929 + 21 +9379.903852 + 31 +0.0 + 0 +LINE + 5 +23A7 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9423.205122 + 30 +0.0 + 11 +26787.499929 + 21 +9444.855757 + 31 +0.0 + 0 +LINE + 5 +23A8 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9488.157027 + 30 +0.0 + 11 +26820.0 + 21 +9501.147531 + 31 +0.0 + 0 +LINE + 5 +23A9 + 8 +0 + 62 + 0 + 10 +26662.499929 + 20 +9185.048136 + 30 +0.0 + 11 +26674.999929 + 21 +9206.698771 + 31 +0.0 + 0 +LINE + 5 +23AA + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9319.282197 + 30 +0.0 + 11 +26749.999929 + 21 +9336.602581 + 31 +0.0 + 0 +LINE + 5 +23AB + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9379.903852 + 30 +0.0 + 11 +26787.499929 + 21 +9401.554487 + 31 +0.0 + 0 +LINE + 5 +23AC + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9444.855757 + 30 +0.0 + 11 +26820.0 + 21 +9457.846261 + 31 +0.0 + 0 +LINE + 5 +23AD + 8 +0 + 62 + 0 + 10 +26699.999929 + 20 +9206.698771 + 30 +0.0 + 11 +26712.499929 + 21 +9228.349406 + 31 +0.0 + 0 +LINE + 5 +23AE + 8 +0 + 62 + 0 + 10 +26740.0 + 20 +9275.980927 + 30 +0.0 + 11 +26749.999929 + 21 +9293.301311 + 31 +0.0 + 0 +LINE + 5 +23AF + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9336.602581 + 30 +0.0 + 11 +26787.499929 + 21 +9358.253217 + 31 +0.0 + 0 +LINE + 5 +23B0 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9401.554487 + 30 +0.0 + 11 +26820.0 + 21 +9414.544991 + 31 +0.0 + 0 +LINE + 5 +23B1 + 8 +0 + 62 + 0 + 10 +26703.811883 + 20 +9170.0 + 30 +0.0 + 11 +26712.499929 + 21 +9185.048136 + 31 +0.0 + 0 +LINE + 5 +23B2 + 8 +0 + 62 + 0 + 10 +26737.499929 + 20 +9228.349406 + 30 +0.0 + 11 +26749.999929 + 21 +9250.000041 + 31 +0.0 + 0 +LINE + 5 +23B3 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9293.301311 + 30 +0.0 + 11 +26787.499929 + 21 +9314.951946 + 31 +0.0 + 0 +LINE + 5 +23B4 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9358.253217 + 30 +0.0 + 11 +26820.0 + 21 +9371.243721 + 31 +0.0 + 0 +LINE + 5 +23B5 + 8 +0 + 62 + 0 + 10 +26737.499929 + 20 +9185.048136 + 30 +0.0 + 11 +26749.999929 + 21 +9206.698771 + 31 +0.0 + 0 +LINE + 5 +23B6 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9250.000041 + 30 +0.0 + 11 +26787.499929 + 21 +9271.650676 + 31 +0.0 + 0 +LINE + 5 +23B7 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9314.951946 + 30 +0.0 + 11 +26820.0 + 21 +9327.942451 + 31 +0.0 + 0 +LINE + 5 +23B8 + 8 +0 + 62 + 0 + 10 +26774.999929 + 20 +9206.698771 + 30 +0.0 + 11 +26787.499929 + 21 +9228.349406 + 31 +0.0 + 0 +LINE + 5 +23B9 + 8 +0 + 62 + 0 + 10 +26812.499929 + 20 +9271.650676 + 30 +0.0 + 11 +26820.0 + 21 +9284.641181 + 31 +0.0 + 0 +LINE + 5 +23BA + 8 +0 + 62 + 0 + 10 +26778.811883 + 20 +9170.0 + 30 +0.0 + 11 +26787.499928 + 21 +9185.048136 + 31 +0.0 + 0 +LINE + 5 +23BB + 8 +0 + 62 + 0 + 10 +26812.499928 + 20 +9228.349406 + 30 +0.0 + 11 +26820.0 + 21 +9241.339911 + 31 +0.0 + 0 +LINE + 5 +23BC + 8 +0 + 62 + 0 + 10 +26812.499928 + 20 +9185.048136 + 30 +0.0 + 11 +26820.0 + 21 +9198.038641 + 31 +0.0 + 0 +ENDBLK + 5 +23BD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X52 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X52 + 1 + + 0 +LINE + 5 +23BF + 8 +0 + 62 + 0 + 10 +21912.5 + 20 +9228.349365 + 30 +0.0 + 11 +21937.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C0 + 8 +0 + 62 + 0 + 10 +21987.5 + 20 +9228.349365 + 30 +0.0 + 11 +22012.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C1 + 8 +0 + 62 + 0 + 10 +22062.5 + 20 +9228.349365 + 30 +0.0 + 11 +22087.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C2 + 8 +0 + 62 + 0 + 10 +22137.5 + 20 +9228.349365 + 30 +0.0 + 11 +22162.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C3 + 8 +0 + 62 + 0 + 10 +22212.5 + 20 +9228.349365 + 30 +0.0 + 11 +22237.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C4 + 8 +0 + 62 + 0 + 10 +22287.5 + 20 +9228.349365 + 30 +0.0 + 11 +22312.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C5 + 8 +0 + 62 + 0 + 10 +22362.5 + 20 +9228.349365 + 30 +0.0 + 11 +22387.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C6 + 8 +0 + 62 + 0 + 10 +22437.5 + 20 +9228.349365 + 30 +0.0 + 11 +22462.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C7 + 8 +0 + 62 + 0 + 10 +22512.5 + 20 +9228.349365 + 30 +0.0 + 11 +22537.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C8 + 8 +0 + 62 + 0 + 10 +22587.5 + 20 +9228.349365 + 30 +0.0 + 11 +22612.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23C9 + 8 +0 + 62 + 0 + 10 +22662.5 + 20 +9228.349365 + 30 +0.0 + 11 +22687.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23CA + 8 +0 + 62 + 0 + 10 +22737.5 + 20 +9228.349365 + 30 +0.0 + 11 +22762.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23CB + 8 +0 + 62 + 0 + 10 +22812.5 + 20 +9228.349365 + 30 +0.0 + 11 +22837.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23CC + 8 +0 + 62 + 0 + 10 +22887.5 + 20 +9228.349365 + 30 +0.0 + 11 +22912.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23CD + 8 +0 + 62 + 0 + 10 +22962.5 + 20 +9228.349365 + 30 +0.0 + 11 +22987.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23CE + 8 +0 + 62 + 0 + 10 +23037.5 + 20 +9228.349365 + 30 +0.0 + 11 +23062.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23CF + 8 +0 + 62 + 0 + 10 +23112.5 + 20 +9228.349365 + 30 +0.0 + 11 +23137.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23D0 + 8 +0 + 62 + 0 + 10 +23187.5 + 20 +9228.349365 + 30 +0.0 + 11 +23212.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +23D1 + 8 +0 + 62 + 0 + 10 +21875.0 + 20 +9206.69873 + 30 +0.0 + 11 +21900.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D2 + 8 +0 + 62 + 0 + 10 +21950.0 + 20 +9206.69873 + 30 +0.0 + 11 +21975.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D3 + 8 +0 + 62 + 0 + 10 +22025.0 + 20 +9206.69873 + 30 +0.0 + 11 +22050.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D4 + 8 +0 + 62 + 0 + 10 +22100.0 + 20 +9206.69873 + 30 +0.0 + 11 +22125.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D5 + 8 +0 + 62 + 0 + 10 +22175.0 + 20 +9206.69873 + 30 +0.0 + 11 +22200.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D6 + 8 +0 + 62 + 0 + 10 +22250.0 + 20 +9206.69873 + 30 +0.0 + 11 +22275.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D7 + 8 +0 + 62 + 0 + 10 +22325.0 + 20 +9206.69873 + 30 +0.0 + 11 +22350.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D8 + 8 +0 + 62 + 0 + 10 +22400.0 + 20 +9206.69873 + 30 +0.0 + 11 +22425.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23D9 + 8 +0 + 62 + 0 + 10 +22475.0 + 20 +9206.69873 + 30 +0.0 + 11 +22500.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23DA + 8 +0 + 62 + 0 + 10 +22550.0 + 20 +9206.69873 + 30 +0.0 + 11 +22575.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23DB + 8 +0 + 62 + 0 + 10 +22625.0 + 20 +9206.69873 + 30 +0.0 + 11 +22650.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23DC + 8 +0 + 62 + 0 + 10 +22700.0 + 20 +9206.69873 + 30 +0.0 + 11 +22725.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23DD + 8 +0 + 62 + 0 + 10 +22775.0 + 20 +9206.69873 + 30 +0.0 + 11 +22800.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23DE + 8 +0 + 62 + 0 + 10 +22850.0 + 20 +9206.69873 + 30 +0.0 + 11 +22875.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23DF + 8 +0 + 62 + 0 + 10 +22925.0 + 20 +9206.69873 + 30 +0.0 + 11 +22950.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23E0 + 8 +0 + 62 + 0 + 10 +23000.0 + 20 +9206.69873 + 30 +0.0 + 11 +23025.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23E1 + 8 +0 + 62 + 0 + 10 +23075.0 + 20 +9206.69873 + 30 +0.0 + 11 +23100.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23E2 + 8 +0 + 62 + 0 + 10 +23150.0 + 20 +9206.69873 + 30 +0.0 + 11 +23175.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23E3 + 8 +0 + 62 + 0 + 10 +23225.0 + 20 +9206.69873 + 30 +0.0 + 11 +23250.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +23E4 + 8 +0 + 62 + 0 + 10 +21912.5 + 20 +9185.048095 + 30 +0.0 + 11 +21937.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23E5 + 8 +0 + 62 + 0 + 10 +21987.5 + 20 +9185.048095 + 30 +0.0 + 11 +22012.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23E6 + 8 +0 + 62 + 0 + 10 +22062.5 + 20 +9185.048095 + 30 +0.0 + 11 +22087.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23E7 + 8 +0 + 62 + 0 + 10 +22137.5 + 20 +9185.048095 + 30 +0.0 + 11 +22162.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23E8 + 8 +0 + 62 + 0 + 10 +22212.5 + 20 +9185.048095 + 30 +0.0 + 11 +22237.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23E9 + 8 +0 + 62 + 0 + 10 +22287.5 + 20 +9185.048095 + 30 +0.0 + 11 +22312.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23EA + 8 +0 + 62 + 0 + 10 +22362.5 + 20 +9185.048095 + 30 +0.0 + 11 +22387.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23EB + 8 +0 + 62 + 0 + 10 +22437.5 + 20 +9185.048095 + 30 +0.0 + 11 +22462.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23EC + 8 +0 + 62 + 0 + 10 +22512.5 + 20 +9185.048095 + 30 +0.0 + 11 +22537.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23ED + 8 +0 + 62 + 0 + 10 +22587.5 + 20 +9185.048095 + 30 +0.0 + 11 +22612.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23EE + 8 +0 + 62 + 0 + 10 +22662.5 + 20 +9185.048095 + 30 +0.0 + 11 +22687.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23EF + 8 +0 + 62 + 0 + 10 +22737.5 + 20 +9185.048095 + 30 +0.0 + 11 +22762.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F0 + 8 +0 + 62 + 0 + 10 +22812.5 + 20 +9185.048095 + 30 +0.0 + 11 +22837.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F1 + 8 +0 + 62 + 0 + 10 +22887.5 + 20 +9185.048095 + 30 +0.0 + 11 +22912.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F2 + 8 +0 + 62 + 0 + 10 +22962.5 + 20 +9185.048095 + 30 +0.0 + 11 +22987.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F3 + 8 +0 + 62 + 0 + 10 +23037.5 + 20 +9185.048095 + 30 +0.0 + 11 +23062.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F4 + 8 +0 + 62 + 0 + 10 +23112.5 + 20 +9185.048095 + 30 +0.0 + 11 +23137.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F5 + 8 +0 + 62 + 0 + 10 +23187.5 + 20 +9185.048095 + 30 +0.0 + 11 +23212.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +23F6 + 8 +0 + 62 + 0 + 10 +22549.999943 + 20 +9206.698697 + 30 +0.0 + 11 +22537.499943 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +23F7 + 8 +0 + 62 + 0 + 10 +22546.187945 + 20 +9170.0 + 30 +0.0 + 11 +22537.499943 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +23F8 + 8 +0 + 62 + 0 + 10 +22512.499943 + 20 +9228.349332 + 30 +0.0 + 11 +22499.999943 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +23F9 + 8 +0 + 62 + 0 + 10 +22512.499943 + 20 +9185.048062 + 30 +0.0 + 11 +22499.999943 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +23FA + 8 +0 + 62 + 0 + 10 +22474.999943 + 20 +9249.999967 + 30 +0.0 + 11 +22474.999924 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +23FB + 8 +0 + 62 + 0 + 10 +22474.999943 + 20 +9206.698697 + 30 +0.0 + 11 +22462.499943 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +23FC + 8 +0 + 62 + 0 + 10 +22471.187945 + 20 +9170.0 + 30 +0.0 + 11 +22462.499943 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +23FD + 8 +0 + 62 + 0 + 10 +22437.499943 + 20 +9228.349332 + 30 +0.0 + 11 +22424.999943 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +23FE + 8 +0 + 62 + 0 + 10 +22437.499943 + 20 +9185.048062 + 30 +0.0 + 11 +22424.999943 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +23FF + 8 +0 + 62 + 0 + 10 +22399.999943 + 20 +9249.999967 + 30 +0.0 + 11 +22399.999924 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2400 + 8 +0 + 62 + 0 + 10 +22399.999943 + 20 +9206.698697 + 30 +0.0 + 11 +22387.499943 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +2401 + 8 +0 + 62 + 0 + 10 +22396.187946 + 20 +9170.0 + 30 +0.0 + 11 +22387.499943 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +2402 + 8 +0 + 62 + 0 + 10 +22362.499943 + 20 +9228.349332 + 30 +0.0 + 11 +22349.999943 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +2403 + 8 +0 + 62 + 0 + 10 +22362.499943 + 20 +9185.048062 + 30 +0.0 + 11 +22349.999943 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +2404 + 8 +0 + 62 + 0 + 10 +22324.999943 + 20 +9249.999967 + 30 +0.0 + 11 +22324.999924 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2405 + 8 +0 + 62 + 0 + 10 +22324.999943 + 20 +9206.698697 + 30 +0.0 + 11 +22312.499943 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +2406 + 8 +0 + 62 + 0 + 10 +22321.187946 + 20 +9170.0 + 30 +0.0 + 11 +22312.499943 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +2407 + 8 +0 + 62 + 0 + 10 +22287.499943 + 20 +9228.349332 + 30 +0.0 + 11 +22274.999943 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +2408 + 8 +0 + 62 + 0 + 10 +22287.499943 + 20 +9185.048062 + 30 +0.0 + 11 +22274.999943 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +2409 + 8 +0 + 62 + 0 + 10 +22249.999943 + 20 +9249.999967 + 30 +0.0 + 11 +22249.999925 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +240A + 8 +0 + 62 + 0 + 10 +22249.999944 + 20 +9206.698697 + 30 +0.0 + 11 +22237.499944 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +240B + 8 +0 + 62 + 0 + 10 +22246.187946 + 20 +9170.0 + 30 +0.0 + 11 +22237.499944 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +240C + 8 +0 + 62 + 0 + 10 +22212.499944 + 20 +9228.349332 + 30 +0.0 + 11 +22199.999944 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +240D + 8 +0 + 62 + 0 + 10 +22212.499944 + 20 +9185.048062 + 30 +0.0 + 11 +22199.999944 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +240E + 8 +0 + 62 + 0 + 10 +22174.999944 + 20 +9249.999968 + 30 +0.0 + 11 +22174.999925 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +240F + 8 +0 + 62 + 0 + 10 +22174.999944 + 20 +9206.698697 + 30 +0.0 + 11 +22162.499944 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +2410 + 8 +0 + 62 + 0 + 10 +22171.187947 + 20 +9170.0 + 30 +0.0 + 11 +22162.499944 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +2411 + 8 +0 + 62 + 0 + 10 +22137.499944 + 20 +9228.349333 + 30 +0.0 + 11 +22124.999944 + 21 +9249.999968 + 31 +0.0 + 0 +LINE + 5 +2412 + 8 +0 + 62 + 0 + 10 +22137.499944 + 20 +9185.048062 + 30 +0.0 + 11 +22124.999944 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +2413 + 8 +0 + 62 + 0 + 10 +22099.999944 + 20 +9249.999968 + 30 +0.0 + 11 +22099.999925 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2414 + 8 +0 + 62 + 0 + 10 +22099.999944 + 20 +9206.698698 + 30 +0.0 + 11 +22087.499944 + 21 +9228.349333 + 31 +0.0 + 0 +LINE + 5 +2415 + 8 +0 + 62 + 0 + 10 +22096.187947 + 20 +9170.0 + 30 +0.0 + 11 +22087.499944 + 21 +9185.048062 + 31 +0.0 + 0 +LINE + 5 +2416 + 8 +0 + 62 + 0 + 10 +22062.499944 + 20 +9228.349333 + 30 +0.0 + 11 +22049.999944 + 21 +9249.999968 + 31 +0.0 + 0 +LINE + 5 +2417 + 8 +0 + 62 + 0 + 10 +22062.499944 + 20 +9185.048063 + 30 +0.0 + 11 +22049.999944 + 21 +9206.698698 + 31 +0.0 + 0 +LINE + 5 +2418 + 8 +0 + 62 + 0 + 10 +22024.999944 + 20 +9249.999968 + 30 +0.0 + 11 +22024.999926 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2419 + 8 +0 + 62 + 0 + 10 +22024.999944 + 20 +9206.698698 + 30 +0.0 + 11 +22012.499944 + 21 +9228.349333 + 31 +0.0 + 0 +LINE + 5 +241A + 8 +0 + 62 + 0 + 10 +22021.187947 + 20 +9170.0 + 30 +0.0 + 11 +22012.499944 + 21 +9185.048063 + 31 +0.0 + 0 +LINE + 5 +241B + 8 +0 + 62 + 0 + 10 +21987.499944 + 20 +9228.349333 + 30 +0.0 + 11 +21974.999944 + 21 +9249.999968 + 31 +0.0 + 0 +LINE + 5 +241C + 8 +0 + 62 + 0 + 10 +21987.499944 + 20 +9185.048063 + 30 +0.0 + 11 +21974.999944 + 21 +9206.698698 + 31 +0.0 + 0 +LINE + 5 +241D + 8 +0 + 62 + 0 + 10 +21949.999944 + 20 +9249.999968 + 30 +0.0 + 11 +21949.999926 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +241E + 8 +0 + 62 + 0 + 10 +21949.999945 + 20 +9206.698698 + 30 +0.0 + 11 +21937.499945 + 21 +9228.349333 + 31 +0.0 + 0 +LINE + 5 +241F + 8 +0 + 62 + 0 + 10 +21946.187948 + 20 +9170.0 + 30 +0.0 + 11 +21937.499945 + 21 +9185.048063 + 31 +0.0 + 0 +LINE + 5 +2420 + 8 +0 + 62 + 0 + 10 +21912.499945 + 20 +9228.349333 + 30 +0.0 + 11 +21899.999945 + 21 +9249.999968 + 31 +0.0 + 0 +LINE + 5 +2421 + 8 +0 + 62 + 0 + 10 +21912.499945 + 20 +9185.048063 + 30 +0.0 + 11 +21899.999945 + 21 +9206.698698 + 31 +0.0 + 0 +LINE + 5 +2422 + 8 +0 + 62 + 0 + 10 +21874.999945 + 20 +9249.999968 + 30 +0.0 + 11 +21874.999926 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2423 + 8 +0 + 62 + 0 + 10 +21874.999945 + 20 +9206.698698 + 30 +0.0 + 11 +21863.75 + 21 +9226.184174 + 31 +0.0 + 0 +LINE + 5 +2424 + 8 +0 + 62 + 0 + 10 +21871.187948 + 20 +9170.0 + 30 +0.0 + 11 +21863.75 + 21 +9182.882904 + 31 +0.0 + 0 +LINE + 5 +2425 + 8 +0 + 62 + 0 + 10 +22587.499942 + 20 +9185.048062 + 30 +0.0 + 11 +22574.999942 + 21 +9206.698697 + 31 +0.0 + 0 +LINE + 5 +2426 + 8 +0 + 62 + 0 + 10 +22549.999942 + 20 +9249.999967 + 30 +0.0 + 11 +22549.999923 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2427 + 8 +0 + 62 + 0 + 10 +22621.187945 + 20 +9170.0 + 30 +0.0 + 11 +22612.499942 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +2428 + 8 +0 + 62 + 0 + 10 +22587.499942 + 20 +9228.349332 + 30 +0.0 + 11 +22574.999942 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +2429 + 8 +0 + 62 + 0 + 10 +22624.999942 + 20 +9206.698697 + 30 +0.0 + 11 +22612.499942 + 21 +9228.349332 + 31 +0.0 + 0 +LINE + 5 +242A + 8 +0 + 62 + 0 + 10 +22662.499942 + 20 +9185.048061 + 30 +0.0 + 11 +22649.999942 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +242B + 8 +0 + 62 + 0 + 10 +22624.999942 + 20 +9249.999967 + 30 +0.0 + 11 +22624.999923 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +242C + 8 +0 + 62 + 0 + 10 +22696.187944 + 20 +9170.0 + 30 +0.0 + 11 +22687.499942 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +242D + 8 +0 + 62 + 0 + 10 +22662.499942 + 20 +9228.349332 + 30 +0.0 + 11 +22649.999942 + 21 +9249.999967 + 31 +0.0 + 0 +LINE + 5 +242E + 8 +0 + 62 + 0 + 10 +22699.999942 + 20 +9206.698696 + 30 +0.0 + 11 +22687.499942 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +242F + 8 +0 + 62 + 0 + 10 +22737.499942 + 20 +9185.048061 + 30 +0.0 + 11 +22724.999942 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +2430 + 8 +0 + 62 + 0 + 10 +22699.999942 + 20 +9249.999967 + 30 +0.0 + 11 +22699.999923 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2431 + 8 +0 + 62 + 0 + 10 +22771.187944 + 20 +9170.0 + 30 +0.0 + 11 +22762.499942 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +2432 + 8 +0 + 62 + 0 + 10 +22737.499942 + 20 +9228.349331 + 30 +0.0 + 11 +22724.999942 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +2433 + 8 +0 + 62 + 0 + 10 +22774.999942 + 20 +9206.698696 + 30 +0.0 + 11 +22762.499942 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +2434 + 8 +0 + 62 + 0 + 10 +22812.499942 + 20 +9185.048061 + 30 +0.0 + 11 +22799.999942 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +2435 + 8 +0 + 62 + 0 + 10 +22774.999942 + 20 +9249.999966 + 30 +0.0 + 11 +22774.999922 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2436 + 8 +0 + 62 + 0 + 10 +22846.187944 + 20 +9170.0 + 30 +0.0 + 11 +22837.499942 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +2437 + 8 +0 + 62 + 0 + 10 +22812.499942 + 20 +9228.349331 + 30 +0.0 + 11 +22799.999942 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +2438 + 8 +0 + 62 + 0 + 10 +22849.999942 + 20 +9206.698696 + 30 +0.0 + 11 +22837.499942 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +2439 + 8 +0 + 62 + 0 + 10 +22887.499941 + 20 +9185.048061 + 30 +0.0 + 11 +22874.999941 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +243A + 8 +0 + 62 + 0 + 10 +22849.999941 + 20 +9249.999966 + 30 +0.0 + 11 +22849.999922 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +243B + 8 +0 + 62 + 0 + 10 +22921.187943 + 20 +9170.0 + 30 +0.0 + 11 +22912.499941 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +243C + 8 +0 + 62 + 0 + 10 +22887.499941 + 20 +9228.349331 + 30 +0.0 + 11 +22874.999941 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +243D + 8 +0 + 62 + 0 + 10 +22924.999941 + 20 +9206.698696 + 30 +0.0 + 11 +22912.499941 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +243E + 8 +0 + 62 + 0 + 10 +22962.499941 + 20 +9185.048061 + 30 +0.0 + 11 +22949.999941 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +243F + 8 +0 + 62 + 0 + 10 +22924.999941 + 20 +9249.999966 + 30 +0.0 + 11 +22924.999922 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2440 + 8 +0 + 62 + 0 + 10 +22996.187943 + 20 +9170.0 + 30 +0.0 + 11 +22987.499941 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +2441 + 8 +0 + 62 + 0 + 10 +22962.499941 + 20 +9228.349331 + 30 +0.0 + 11 +22949.999941 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +2442 + 8 +0 + 62 + 0 + 10 +22999.999941 + 20 +9206.698696 + 30 +0.0 + 11 +22987.499941 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +2443 + 8 +0 + 62 + 0 + 10 +23037.499941 + 20 +9185.048061 + 30 +0.0 + 11 +23024.999941 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +2444 + 8 +0 + 62 + 0 + 10 +22999.999941 + 20 +9249.999966 + 30 +0.0 + 11 +22999.999921 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2445 + 8 +0 + 62 + 0 + 10 +23071.187943 + 20 +9170.0 + 30 +0.0 + 11 +23062.499941 + 21 +9185.048061 + 31 +0.0 + 0 +LINE + 5 +2446 + 8 +0 + 62 + 0 + 10 +23037.499941 + 20 +9228.349331 + 30 +0.0 + 11 +23024.999941 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +2447 + 8 +0 + 62 + 0 + 10 +23074.999941 + 20 +9206.698696 + 30 +0.0 + 11 +23062.499941 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +2448 + 8 +0 + 62 + 0 + 10 +23112.499941 + 20 +9185.048061 + 30 +0.0 + 11 +23099.999941 + 21 +9206.698696 + 31 +0.0 + 0 +LINE + 5 +2449 + 8 +0 + 62 + 0 + 10 +23074.999941 + 20 +9249.999966 + 30 +0.0 + 11 +23074.999921 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +244A + 8 +0 + 62 + 0 + 10 +23146.187942 + 20 +9170.0 + 30 +0.0 + 11 +23137.499941 + 21 +9185.04806 + 31 +0.0 + 0 +LINE + 5 +244B + 8 +0 + 62 + 0 + 10 +23112.499941 + 20 +9228.349331 + 30 +0.0 + 11 +23099.999941 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +244C + 8 +0 + 62 + 0 + 10 +23149.999941 + 20 +9206.698696 + 30 +0.0 + 11 +23137.499941 + 21 +9228.349331 + 31 +0.0 + 0 +LINE + 5 +244D + 8 +0 + 62 + 0 + 10 +23187.499941 + 20 +9185.04806 + 30 +0.0 + 11 +23174.999941 + 21 +9206.698695 + 31 +0.0 + 0 +LINE + 5 +244E + 8 +0 + 62 + 0 + 10 +23149.999941 + 20 +9249.999966 + 30 +0.0 + 11 +23149.999921 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +244F + 8 +0 + 62 + 0 + 10 +23221.187942 + 20 +9170.0 + 30 +0.0 + 11 +23212.49994 + 21 +9185.04806 + 31 +0.0 + 0 +LINE + 5 +2450 + 8 +0 + 62 + 0 + 10 +23187.49994 + 20 +9228.349331 + 30 +0.0 + 11 +23174.99994 + 21 +9249.999966 + 31 +0.0 + 0 +LINE + 5 +2451 + 8 +0 + 62 + 0 + 10 +23224.99994 + 20 +9206.698695 + 30 +0.0 + 11 +23212.49994 + 21 +9228.34933 + 31 +0.0 + 0 +LINE + 5 +2452 + 8 +0 + 62 + 0 + 10 +23251.25 + 20 +9204.533528 + 30 +0.0 + 11 +23249.99994 + 21 +9206.698695 + 31 +0.0 + 0 +LINE + 5 +2453 + 8 +0 + 62 + 0 + 10 +23224.99994 + 20 +9249.999966 + 30 +0.0 + 11 +23224.99992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2454 + 8 +0 + 62 + 0 + 10 +23251.25 + 20 +9247.834798 + 30 +0.0 + 11 +23249.99994 + 21 +9249.999965 + 31 +0.0 + 0 +LINE + 5 +2455 + 8 +0 + 62 + 0 + 10 +22537.499942 + 20 +9185.048128 + 30 +0.0 + 11 +22549.999942 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +2456 + 8 +0 + 62 + 0 + 10 +22503.811902 + 20 +9170.0 + 30 +0.0 + 11 +22512.499942 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +2457 + 8 +0 + 62 + 0 + 10 +22537.499942 + 20 +9228.349398 + 30 +0.0 + 11 +22549.999923 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2458 + 8 +0 + 62 + 0 + 10 +22499.999943 + 20 +9206.698763 + 30 +0.0 + 11 +22512.499943 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +2459 + 8 +0 + 62 + 0 + 10 +22462.499943 + 20 +9185.048128 + 30 +0.0 + 11 +22474.999943 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +245A + 8 +0 + 62 + 0 + 10 +22428.811902 + 20 +9170.0 + 30 +0.0 + 11 +22437.499943 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +245B + 8 +0 + 62 + 0 + 10 +22462.499943 + 20 +9228.349398 + 30 +0.0 + 11 +22474.999924 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +245C + 8 +0 + 62 + 0 + 10 +22424.999943 + 20 +9206.698763 + 30 +0.0 + 11 +22437.499943 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +245D + 8 +0 + 62 + 0 + 10 +22387.499943 + 20 +9185.048128 + 30 +0.0 + 11 +22399.999943 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +245E + 8 +0 + 62 + 0 + 10 +22353.811902 + 20 +9170.0 + 30 +0.0 + 11 +22362.499943 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +245F + 8 +0 + 62 + 0 + 10 +22387.499943 + 20 +9228.349398 + 30 +0.0 + 11 +22399.999924 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2460 + 8 +0 + 62 + 0 + 10 +22349.999943 + 20 +9206.698763 + 30 +0.0 + 11 +22362.499943 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +2461 + 8 +0 + 62 + 0 + 10 +22312.499943 + 20 +9185.048128 + 30 +0.0 + 11 +22324.999943 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +2462 + 8 +0 + 62 + 0 + 10 +22278.811903 + 20 +9170.0 + 30 +0.0 + 11 +22287.499943 + 21 +9185.048127 + 31 +0.0 + 0 +LINE + 5 +2463 + 8 +0 + 62 + 0 + 10 +22312.499943 + 20 +9228.349398 + 30 +0.0 + 11 +22324.999924 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2464 + 8 +0 + 62 + 0 + 10 +22274.999943 + 20 +9206.698763 + 30 +0.0 + 11 +22287.499943 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +2465 + 8 +0 + 62 + 0 + 10 +22237.499943 + 20 +9185.048127 + 30 +0.0 + 11 +22249.999943 + 21 +9206.698762 + 31 +0.0 + 0 +LINE + 5 +2466 + 8 +0 + 62 + 0 + 10 +22203.811903 + 20 +9170.0 + 30 +0.0 + 11 +22212.499943 + 21 +9185.048127 + 31 +0.0 + 0 +LINE + 5 +2467 + 8 +0 + 62 + 0 + 10 +22237.499943 + 20 +9228.349398 + 30 +0.0 + 11 +22249.999925 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2468 + 8 +0 + 62 + 0 + 10 +22199.999944 + 20 +9206.698762 + 30 +0.0 + 11 +22212.499944 + 21 +9228.349397 + 31 +0.0 + 0 +LINE + 5 +2469 + 8 +0 + 62 + 0 + 10 +22162.499944 + 20 +9185.048127 + 30 +0.0 + 11 +22174.999944 + 21 +9206.698762 + 31 +0.0 + 0 +LINE + 5 +246A + 8 +0 + 62 + 0 + 10 +22128.811903 + 20 +9170.0 + 30 +0.0 + 11 +22137.499944 + 21 +9185.048127 + 31 +0.0 + 0 +LINE + 5 +246B + 8 +0 + 62 + 0 + 10 +22162.499944 + 20 +9228.349397 + 30 +0.0 + 11 +22174.999925 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +246C + 8 +0 + 62 + 0 + 10 +22124.999944 + 20 +9206.698762 + 30 +0.0 + 11 +22137.499944 + 21 +9228.349397 + 31 +0.0 + 0 +LINE + 5 +246D + 8 +0 + 62 + 0 + 10 +22087.499944 + 20 +9185.048127 + 30 +0.0 + 11 +22099.999944 + 21 +9206.698762 + 31 +0.0 + 0 +LINE + 5 +246E + 8 +0 + 62 + 0 + 10 +22053.811904 + 20 +9170.0 + 30 +0.0 + 11 +22062.499944 + 21 +9185.048127 + 31 +0.0 + 0 +LINE + 5 +246F + 8 +0 + 62 + 0 + 10 +22087.499944 + 20 +9228.349397 + 30 +0.0 + 11 +22099.999925 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2470 + 8 +0 + 62 + 0 + 10 +22049.999944 + 20 +9206.698762 + 30 +0.0 + 11 +22062.499944 + 21 +9228.349397 + 31 +0.0 + 0 +LINE + 5 +2471 + 8 +0 + 62 + 0 + 10 +22012.499944 + 20 +9185.048127 + 30 +0.0 + 11 +22024.999944 + 21 +9206.698762 + 31 +0.0 + 0 +LINE + 5 +2472 + 8 +0 + 62 + 0 + 10 +21978.811904 + 20 +9170.0 + 30 +0.0 + 11 +21987.499944 + 21 +9185.048127 + 31 +0.0 + 0 +LINE + 5 +2473 + 8 +0 + 62 + 0 + 10 +22012.499944 + 20 +9228.349397 + 30 +0.0 + 11 +22024.999926 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2474 + 8 +0 + 62 + 0 + 10 +21974.999944 + 20 +9206.698762 + 30 +0.0 + 11 +21987.499944 + 21 +9228.349397 + 31 +0.0 + 0 +LINE + 5 +2475 + 8 +0 + 62 + 0 + 10 +21937.499944 + 20 +9185.048127 + 30 +0.0 + 11 +21949.999944 + 21 +9206.698762 + 31 +0.0 + 0 +LINE + 5 +2476 + 8 +0 + 62 + 0 + 10 +21903.811904 + 20 +9170.0 + 30 +0.0 + 11 +21912.499944 + 21 +9185.048127 + 31 +0.0 + 0 +LINE + 5 +2477 + 8 +0 + 62 + 0 + 10 +21937.499944 + 20 +9228.349397 + 30 +0.0 + 11 +21949.999926 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2478 + 8 +0 + 62 + 0 + 10 +21899.999945 + 20 +9206.698762 + 30 +0.0 + 11 +21912.499945 + 21 +9228.349397 + 31 +0.0 + 0 +LINE + 5 +2479 + 8 +0 + 62 + 0 + 10 +21863.75 + 20 +9187.213286 + 30 +0.0 + 11 +21874.999945 + 21 +9206.698762 + 31 +0.0 + 0 +LINE + 5 +247A + 8 +0 + 62 + 0 + 10 +21863.75 + 20 +9230.514556 + 30 +0.0 + 11 +21874.999926 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +247B + 8 +0 + 62 + 0 + 10 +22574.999942 + 20 +9206.698763 + 30 +0.0 + 11 +22587.499942 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +247C + 8 +0 + 62 + 0 + 10 +22578.811901 + 20 +9170.0 + 30 +0.0 + 11 +22587.499942 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +247D + 8 +0 + 62 + 0 + 10 +22612.499942 + 20 +9228.349398 + 30 +0.0 + 11 +22624.999923 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +247E + 8 +0 + 62 + 0 + 10 +22612.499942 + 20 +9185.048128 + 30 +0.0 + 11 +22624.999942 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +247F + 8 +0 + 62 + 0 + 10 +22649.999942 + 20 +9206.698763 + 30 +0.0 + 11 +22662.499942 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +2480 + 8 +0 + 62 + 0 + 10 +22653.811901 + 20 +9170.0 + 30 +0.0 + 11 +22662.499942 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +2481 + 8 +0 + 62 + 0 + 10 +22687.499942 + 20 +9228.349398 + 30 +0.0 + 11 +22699.999923 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2482 + 8 +0 + 62 + 0 + 10 +22687.499942 + 20 +9185.048128 + 30 +0.0 + 11 +22699.999942 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +2483 + 8 +0 + 62 + 0 + 10 +22724.999942 + 20 +9206.698763 + 30 +0.0 + 11 +22737.499942 + 21 +9228.349398 + 31 +0.0 + 0 +LINE + 5 +2484 + 8 +0 + 62 + 0 + 10 +22728.811901 + 20 +9170.0 + 30 +0.0 + 11 +22737.499942 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +2485 + 8 +0 + 62 + 0 + 10 +22762.499942 + 20 +9228.349399 + 30 +0.0 + 11 +22774.999922 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2486 + 8 +0 + 62 + 0 + 10 +22762.499942 + 20 +9185.048128 + 30 +0.0 + 11 +22774.999942 + 21 +9206.698763 + 31 +0.0 + 0 +LINE + 5 +2487 + 8 +0 + 62 + 0 + 10 +22799.999942 + 20 +9206.698764 + 30 +0.0 + 11 +22812.499942 + 21 +9228.349399 + 31 +0.0 + 0 +LINE + 5 +2488 + 8 +0 + 62 + 0 + 10 +22803.8119 + 20 +9170.0 + 30 +0.0 + 11 +22812.499941 + 21 +9185.048128 + 31 +0.0 + 0 +LINE + 5 +2489 + 8 +0 + 62 + 0 + 10 +22837.499941 + 20 +9228.349399 + 30 +0.0 + 11 +22849.999922 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +248A + 8 +0 + 62 + 0 + 10 +22837.499941 + 20 +9185.048129 + 30 +0.0 + 11 +22849.999941 + 21 +9206.698764 + 31 +0.0 + 0 +LINE + 5 +248B + 8 +0 + 62 + 0 + 10 +22874.999941 + 20 +9206.698764 + 30 +0.0 + 11 +22887.499941 + 21 +9228.349399 + 31 +0.0 + 0 +LINE + 5 +248C + 8 +0 + 62 + 0 + 10 +22878.8119 + 20 +9170.0 + 30 +0.0 + 11 +22887.499941 + 21 +9185.048129 + 31 +0.0 + 0 +LINE + 5 +248D + 8 +0 + 62 + 0 + 10 +22912.499941 + 20 +9228.349399 + 30 +0.0 + 11 +22924.999922 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +248E + 8 +0 + 62 + 0 + 10 +22912.499941 + 20 +9185.048129 + 30 +0.0 + 11 +22924.999941 + 21 +9206.698764 + 31 +0.0 + 0 +LINE + 5 +248F + 8 +0 + 62 + 0 + 10 +22949.999941 + 20 +9206.698764 + 30 +0.0 + 11 +22962.499941 + 21 +9228.349399 + 31 +0.0 + 0 +LINE + 5 +2490 + 8 +0 + 62 + 0 + 10 +22953.8119 + 20 +9170.0 + 30 +0.0 + 11 +22962.499941 + 21 +9185.048129 + 31 +0.0 + 0 +LINE + 5 +2491 + 8 +0 + 62 + 0 + 10 +22987.499941 + 20 +9228.349399 + 30 +0.0 + 11 +22999.999921 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2492 + 8 +0 + 62 + 0 + 10 +22987.499941 + 20 +9185.048129 + 30 +0.0 + 11 +22999.999941 + 21 +9206.698764 + 31 +0.0 + 0 +LINE + 5 +2493 + 8 +0 + 62 + 0 + 10 +23024.999941 + 20 +9206.698764 + 30 +0.0 + 11 +23037.499941 + 21 +9228.349399 + 31 +0.0 + 0 +LINE + 5 +2494 + 8 +0 + 62 + 0 + 10 +23028.811899 + 20 +9170.0 + 30 +0.0 + 11 +23037.499941 + 21 +9185.048129 + 31 +0.0 + 0 +LINE + 5 +2495 + 8 +0 + 62 + 0 + 10 +23062.499941 + 20 +9228.349399 + 30 +0.0 + 11 +23074.999921 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2496 + 8 +0 + 62 + 0 + 10 +23062.499941 + 20 +9185.048129 + 30 +0.0 + 11 +23074.999941 + 21 +9206.698764 + 31 +0.0 + 0 +LINE + 5 +2497 + 8 +0 + 62 + 0 + 10 +23099.999941 + 20 +9206.698764 + 30 +0.0 + 11 +23112.499941 + 21 +9228.349399 + 31 +0.0 + 0 +LINE + 5 +2498 + 8 +0 + 62 + 0 + 10 +23103.811899 + 20 +9170.0 + 30 +0.0 + 11 +23112.499941 + 21 +9185.048129 + 31 +0.0 + 0 +LINE + 5 +2499 + 8 +0 + 62 + 0 + 10 +23137.499941 + 20 +9228.349399 + 30 +0.0 + 11 +23149.999921 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +249A + 8 +0 + 62 + 0 + 10 +23137.49994 + 20 +9185.048129 + 30 +0.0 + 11 +23149.99994 + 21 +9206.698764 + 31 +0.0 + 0 +LINE + 5 +249B + 8 +0 + 62 + 0 + 10 +23174.99994 + 20 +9206.698764 + 30 +0.0 + 11 +23187.49994 + 21 +9228.349399 + 31 +0.0 + 0 +LINE + 5 +249C + 8 +0 + 62 + 0 + 10 +23178.811899 + 20 +9170.0 + 30 +0.0 + 11 +23187.49994 + 21 +9185.048129 + 31 +0.0 + 0 +LINE + 5 +249D + 8 +0 + 62 + 0 + 10 +23212.49994 + 20 +9228.349399 + 30 +0.0 + 11 +23224.99992 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +249E + 8 +0 + 62 + 0 + 10 +23212.49994 + 20 +9185.048129 + 30 +0.0 + 11 +23224.99994 + 21 +9206.698764 + 31 +0.0 + 0 +LINE + 5 +249F + 8 +0 + 62 + 0 + 10 +23249.99994 + 20 +9206.698764 + 30 +0.0 + 11 +23251.25 + 21 +9208.863932 + 31 +0.0 + 0 +ENDBLK + 5 +24A0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X53 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X53 + 1 + + 0 +LINE + 5 +24A2 + 8 +0 + 62 + 0 + 10 +20412.5 + 20 +9228.349365 + 30 +0.0 + 11 +20437.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A3 + 8 +0 + 62 + 0 + 10 +20487.5 + 20 +9228.349365 + 30 +0.0 + 11 +20512.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A4 + 8 +0 + 62 + 0 + 10 +20562.5 + 20 +9228.349365 + 30 +0.0 + 11 +20587.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A5 + 8 +0 + 62 + 0 + 10 +20637.5 + 20 +9228.349365 + 30 +0.0 + 11 +20662.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A6 + 8 +0 + 62 + 0 + 10 +20712.5 + 20 +9228.349365 + 30 +0.0 + 11 +20737.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A7 + 8 +0 + 62 + 0 + 10 +20787.5 + 20 +9228.349365 + 30 +0.0 + 11 +20812.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A8 + 8 +0 + 62 + 0 + 10 +20862.5 + 20 +9228.349365 + 30 +0.0 + 11 +20887.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24A9 + 8 +0 + 62 + 0 + 10 +20937.5 + 20 +9228.349365 + 30 +0.0 + 11 +20962.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24AA + 8 +0 + 62 + 0 + 10 +21012.5 + 20 +9228.349365 + 30 +0.0 + 11 +21037.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24AB + 8 +0 + 62 + 0 + 10 +21087.5 + 20 +9228.349365 + 30 +0.0 + 11 +21112.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24AC + 8 +0 + 62 + 0 + 10 +21162.5 + 20 +9228.349365 + 30 +0.0 + 11 +21187.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24AD + 8 +0 + 62 + 0 + 10 +21237.5 + 20 +9228.349365 + 30 +0.0 + 11 +21262.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24AE + 8 +0 + 62 + 0 + 10 +21312.5 + 20 +9228.349365 + 30 +0.0 + 11 +21337.5 + 21 +9228.349365 + 31 +0.0 + 0 +LINE + 5 +24AF + 8 +0 + 62 + 0 + 10 +20375.0 + 20 +9206.69873 + 30 +0.0 + 11 +20400.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B0 + 8 +0 + 62 + 0 + 10 +20450.0 + 20 +9206.69873 + 30 +0.0 + 11 +20475.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B1 + 8 +0 + 62 + 0 + 10 +20525.0 + 20 +9206.69873 + 30 +0.0 + 11 +20550.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B2 + 8 +0 + 62 + 0 + 10 +20600.0 + 20 +9206.69873 + 30 +0.0 + 11 +20625.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B3 + 8 +0 + 62 + 0 + 10 +20675.0 + 20 +9206.69873 + 30 +0.0 + 11 +20700.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B4 + 8 +0 + 62 + 0 + 10 +20750.0 + 20 +9206.69873 + 30 +0.0 + 11 +20775.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B5 + 8 +0 + 62 + 0 + 10 +20825.0 + 20 +9206.69873 + 30 +0.0 + 11 +20850.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B6 + 8 +0 + 62 + 0 + 10 +20900.0 + 20 +9206.69873 + 30 +0.0 + 11 +20925.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B7 + 8 +0 + 62 + 0 + 10 +20975.0 + 20 +9206.69873 + 30 +0.0 + 11 +21000.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B8 + 8 +0 + 62 + 0 + 10 +21050.0 + 20 +9206.69873 + 30 +0.0 + 11 +21075.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24B9 + 8 +0 + 62 + 0 + 10 +21125.0 + 20 +9206.69873 + 30 +0.0 + 11 +21150.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24BA + 8 +0 + 62 + 0 + 10 +21200.0 + 20 +9206.69873 + 30 +0.0 + 11 +21225.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24BB + 8 +0 + 62 + 0 + 10 +21275.0 + 20 +9206.69873 + 30 +0.0 + 11 +21300.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24BC + 8 +0 + 62 + 0 + 10 +21350.0 + 20 +9206.69873 + 30 +0.0 + 11 +21375.0 + 21 +9206.69873 + 31 +0.0 + 0 +LINE + 5 +24BD + 8 +0 + 62 + 0 + 10 +20412.5 + 20 +9185.048095 + 30 +0.0 + 11 +20437.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24BE + 8 +0 + 62 + 0 + 10 +20487.5 + 20 +9185.048095 + 30 +0.0 + 11 +20512.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24BF + 8 +0 + 62 + 0 + 10 +20562.5 + 20 +9185.048095 + 30 +0.0 + 11 +20587.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C0 + 8 +0 + 62 + 0 + 10 +20637.5 + 20 +9185.048095 + 30 +0.0 + 11 +20662.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C1 + 8 +0 + 62 + 0 + 10 +20712.5 + 20 +9185.048095 + 30 +0.0 + 11 +20737.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C2 + 8 +0 + 62 + 0 + 10 +20787.5 + 20 +9185.048095 + 30 +0.0 + 11 +20812.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C3 + 8 +0 + 62 + 0 + 10 +20862.5 + 20 +9185.048095 + 30 +0.0 + 11 +20887.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C4 + 8 +0 + 62 + 0 + 10 +20937.5 + 20 +9185.048095 + 30 +0.0 + 11 +20962.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C5 + 8 +0 + 62 + 0 + 10 +21012.5 + 20 +9185.048095 + 30 +0.0 + 11 +21037.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C6 + 8 +0 + 62 + 0 + 10 +21087.5 + 20 +9185.048095 + 30 +0.0 + 11 +21112.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C7 + 8 +0 + 62 + 0 + 10 +21162.5 + 20 +9185.048095 + 30 +0.0 + 11 +21187.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C8 + 8 +0 + 62 + 0 + 10 +21237.5 + 20 +9185.048095 + 30 +0.0 + 11 +21262.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24C9 + 8 +0 + 62 + 0 + 10 +21312.5 + 20 +9185.048095 + 30 +0.0 + 11 +21337.5 + 21 +9185.048095 + 31 +0.0 + 0 +LINE + 5 +24CA + 8 +0 + 62 + 0 + 10 +20862.499948 + 20 +9185.048065 + 30 +0.0 + 11 +20849.999948 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24CB + 8 +0 + 62 + 0 + 10 +20824.999948 + 20 +9249.99997 + 30 +0.0 + 11 +20824.999931 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24CC + 8 +0 + 62 + 0 + 10 +20824.999948 + 20 +9206.6987 + 30 +0.0 + 11 +20812.499948 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24CD + 8 +0 + 62 + 0 + 10 +20821.187953 + 20 +9170.0 + 30 +0.0 + 11 +20812.499948 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24CE + 8 +0 + 62 + 0 + 10 +20787.499948 + 20 +9228.349335 + 30 +0.0 + 11 +20774.999948 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24CF + 8 +0 + 62 + 0 + 10 +20787.499948 + 20 +9185.048065 + 30 +0.0 + 11 +20774.999948 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24D0 + 8 +0 + 62 + 0 + 10 +20749.999948 + 20 +9249.99997 + 30 +0.0 + 11 +20749.999931 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24D1 + 8 +0 + 62 + 0 + 10 +20749.999948 + 20 +9206.6987 + 30 +0.0 + 11 +20737.499948 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24D2 + 8 +0 + 62 + 0 + 10 +20746.187953 + 20 +9170.0 + 30 +0.0 + 11 +20737.499949 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24D3 + 8 +0 + 62 + 0 + 10 +20712.499949 + 20 +9228.349335 + 30 +0.0 + 11 +20699.999949 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24D4 + 8 +0 + 62 + 0 + 10 +20712.499949 + 20 +9185.048065 + 30 +0.0 + 11 +20699.999949 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24D5 + 8 +0 + 62 + 0 + 10 +20674.999949 + 20 +9249.99997 + 30 +0.0 + 11 +20674.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24D6 + 8 +0 + 62 + 0 + 10 +20674.999949 + 20 +9206.6987 + 30 +0.0 + 11 +20662.499949 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24D7 + 8 +0 + 62 + 0 + 10 +20671.187953 + 20 +9170.0 + 30 +0.0 + 11 +20662.499949 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24D8 + 8 +0 + 62 + 0 + 10 +20637.499949 + 20 +9228.349335 + 30 +0.0 + 11 +20624.999949 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24D9 + 8 +0 + 62 + 0 + 10 +20637.499949 + 20 +9185.048065 + 30 +0.0 + 11 +20624.999949 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24DA + 8 +0 + 62 + 0 + 10 +20599.999949 + 20 +9249.99997 + 30 +0.0 + 11 +20599.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24DB + 8 +0 + 62 + 0 + 10 +20599.999949 + 20 +9206.6987 + 30 +0.0 + 11 +20587.499949 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24DC + 8 +0 + 62 + 0 + 10 +20596.187954 + 20 +9170.0 + 30 +0.0 + 11 +20587.499949 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24DD + 8 +0 + 62 + 0 + 10 +20562.499949 + 20 +9228.349335 + 30 +0.0 + 11 +20549.999949 + 21 +9249.999971 + 31 +0.0 + 0 +LINE + 5 +24DE + 8 +0 + 62 + 0 + 10 +20562.499949 + 20 +9185.048065 + 30 +0.0 + 11 +20549.999949 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24DF + 8 +0 + 62 + 0 + 10 +20524.999949 + 20 +9249.999971 + 30 +0.0 + 11 +20524.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24E0 + 8 +0 + 62 + 0 + 10 +20524.999949 + 20 +9206.6987 + 30 +0.0 + 11 +20512.499949 + 21 +9228.349336 + 31 +0.0 + 0 +LINE + 5 +24E1 + 8 +0 + 62 + 0 + 10 +20521.187954 + 20 +9170.0 + 30 +0.0 + 11 +20512.499949 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24E2 + 8 +0 + 62 + 0 + 10 +20487.499949 + 20 +9228.349336 + 30 +0.0 + 11 +20474.999949 + 21 +9249.999971 + 31 +0.0 + 0 +LINE + 5 +24E3 + 8 +0 + 62 + 0 + 10 +20487.499949 + 20 +9185.048065 + 30 +0.0 + 11 +20474.999949 + 21 +9206.698701 + 31 +0.0 + 0 +LINE + 5 +24E4 + 8 +0 + 62 + 0 + 10 +20449.999949 + 20 +9249.999971 + 30 +0.0 + 11 +20449.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24E5 + 8 +0 + 62 + 0 + 10 +20449.999949 + 20 +9206.698701 + 30 +0.0 + 11 +20437.499949 + 21 +9228.349336 + 31 +0.0 + 0 +LINE + 5 +24E6 + 8 +0 + 62 + 0 + 10 +20446.187954 + 20 +9170.0 + 30 +0.0 + 11 +20437.49995 + 21 +9185.048066 + 31 +0.0 + 0 +LINE + 5 +24E7 + 8 +0 + 62 + 0 + 10 +20412.49995 + 20 +9228.349336 + 30 +0.0 + 11 +20399.99995 + 21 +9249.999971 + 31 +0.0 + 0 +LINE + 5 +24E8 + 8 +0 + 62 + 0 + 10 +20412.49995 + 20 +9185.048066 + 30 +0.0 + 11 +20399.99995 + 21 +9206.698701 + 31 +0.0 + 0 +LINE + 5 +24E9 + 8 +0 + 62 + 0 + 10 +20374.99995 + 20 +9249.999971 + 30 +0.0 + 11 +20374.999933 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24EA + 8 +0 + 62 + 0 + 10 +20374.99995 + 20 +9206.698701 + 30 +0.0 + 11 +20363.75 + 21 +9226.184185 + 31 +0.0 + 0 +LINE + 5 +24EB + 8 +0 + 62 + 0 + 10 +20371.187955 + 20 +9170.0 + 30 +0.0 + 11 +20363.75 + 21 +9182.882915 + 31 +0.0 + 0 +LINE + 5 +24EC + 8 +0 + 62 + 0 + 10 +20896.187952 + 20 +9170.0 + 30 +0.0 + 11 +20887.499948 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24ED + 8 +0 + 62 + 0 + 10 +20862.499948 + 20 +9228.349335 + 30 +0.0 + 11 +20849.999948 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24EE + 8 +0 + 62 + 0 + 10 +20899.999948 + 20 +9206.6987 + 30 +0.0 + 11 +20887.499948 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24EF + 8 +0 + 62 + 0 + 10 +20937.499948 + 20 +9185.048065 + 30 +0.0 + 11 +20924.999948 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24F0 + 8 +0 + 62 + 0 + 10 +20899.999948 + 20 +9249.99997 + 30 +0.0 + 11 +20899.999931 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24F1 + 8 +0 + 62 + 0 + 10 +20971.187952 + 20 +9170.0 + 30 +0.0 + 11 +20962.499948 + 21 +9185.048065 + 31 +0.0 + 0 +LINE + 5 +24F2 + 8 +0 + 62 + 0 + 10 +20937.499948 + 20 +9228.349335 + 30 +0.0 + 11 +20924.999948 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24F3 + 8 +0 + 62 + 0 + 10 +20974.999948 + 20 +9206.6987 + 30 +0.0 + 11 +20962.499948 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24F4 + 8 +0 + 62 + 0 + 10 +21012.499948 + 20 +9185.048064 + 30 +0.0 + 11 +20999.999948 + 21 +9206.6987 + 31 +0.0 + 0 +LINE + 5 +24F5 + 8 +0 + 62 + 0 + 10 +20974.999948 + 20 +9249.99997 + 30 +0.0 + 11 +20974.99993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24F6 + 8 +0 + 62 + 0 + 10 +21046.187952 + 20 +9170.0 + 30 +0.0 + 11 +21037.499948 + 21 +9185.048064 + 31 +0.0 + 0 +LINE + 5 +24F7 + 8 +0 + 62 + 0 + 10 +21012.499948 + 20 +9228.349335 + 30 +0.0 + 11 +20999.999948 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24F8 + 8 +0 + 62 + 0 + 10 +21049.999947 + 20 +9206.698699 + 30 +0.0 + 11 +21037.499947 + 21 +9228.349335 + 31 +0.0 + 0 +LINE + 5 +24F9 + 8 +0 + 62 + 0 + 10 +21087.499947 + 20 +9185.048064 + 30 +0.0 + 11 +21074.999947 + 21 +9206.698699 + 31 +0.0 + 0 +LINE + 5 +24FA + 8 +0 + 62 + 0 + 10 +21049.999947 + 20 +9249.99997 + 30 +0.0 + 11 +21049.99993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +24FB + 8 +0 + 62 + 0 + 10 +21121.187951 + 20 +9170.0 + 30 +0.0 + 11 +21112.499947 + 21 +9185.048064 + 31 +0.0 + 0 +LINE + 5 +24FC + 8 +0 + 62 + 0 + 10 +21087.499947 + 20 +9228.349334 + 30 +0.0 + 11 +21074.999947 + 21 +9249.99997 + 31 +0.0 + 0 +LINE + 5 +24FD + 8 +0 + 62 + 0 + 10 +21124.999947 + 20 +9206.698699 + 30 +0.0 + 11 +21112.499947 + 21 +9228.349334 + 31 +0.0 + 0 +LINE + 5 +24FE + 8 +0 + 62 + 0 + 10 +21162.499947 + 20 +9185.048064 + 30 +0.0 + 11 +21149.999947 + 21 +9206.698699 + 31 +0.0 + 0 +LINE + 5 +24FF + 8 +0 + 62 + 0 + 10 +21124.999947 + 20 +9249.999969 + 30 +0.0 + 11 +21124.99993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2500 + 8 +0 + 62 + 0 + 10 +21196.187951 + 20 +9170.0 + 30 +0.0 + 11 +21187.499947 + 21 +9185.048064 + 31 +0.0 + 0 +LINE + 5 +2501 + 8 +0 + 62 + 0 + 10 +21162.499947 + 20 +9228.349334 + 30 +0.0 + 11 +21149.999947 + 21 +9249.999969 + 31 +0.0 + 0 +LINE + 5 +2502 + 8 +0 + 62 + 0 + 10 +21199.999947 + 20 +9206.698699 + 30 +0.0 + 11 +21187.499947 + 21 +9228.349334 + 31 +0.0 + 0 +LINE + 5 +2503 + 8 +0 + 62 + 0 + 10 +21237.499947 + 20 +9185.048064 + 30 +0.0 + 11 +21224.999947 + 21 +9206.698699 + 31 +0.0 + 0 +LINE + 5 +2504 + 8 +0 + 62 + 0 + 10 +21199.999947 + 20 +9249.999969 + 30 +0.0 + 11 +21199.999929 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2505 + 8 +0 + 62 + 0 + 10 +21271.187951 + 20 +9170.0 + 30 +0.0 + 11 +21262.499947 + 21 +9185.048064 + 31 +0.0 + 0 +LINE + 5 +2506 + 8 +0 + 62 + 0 + 10 +21237.499947 + 20 +9228.349334 + 30 +0.0 + 11 +21224.999947 + 21 +9249.999969 + 31 +0.0 + 0 +LINE + 5 +2507 + 8 +0 + 62 + 0 + 10 +21274.999947 + 20 +9206.698699 + 30 +0.0 + 11 +21262.499947 + 21 +9228.349334 + 31 +0.0 + 0 +LINE + 5 +2508 + 8 +0 + 62 + 0 + 10 +21312.499947 + 20 +9185.048064 + 30 +0.0 + 11 +21299.999947 + 21 +9206.698699 + 31 +0.0 + 0 +LINE + 5 +2509 + 8 +0 + 62 + 0 + 10 +21274.999947 + 20 +9249.999969 + 30 +0.0 + 11 +21274.999929 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +250A + 8 +0 + 62 + 0 + 10 +21346.18795 + 20 +9170.0 + 30 +0.0 + 11 +21337.499947 + 21 +9185.048064 + 31 +0.0 + 0 +LINE + 5 +250B + 8 +0 + 62 + 0 + 10 +21312.499947 + 20 +9228.349334 + 30 +0.0 + 11 +21299.999947 + 21 +9249.999969 + 31 +0.0 + 0 +LINE + 5 +250C + 8 +0 + 62 + 0 + 10 +21349.999946 + 20 +9206.698699 + 30 +0.0 + 11 +21337.499946 + 21 +9228.349334 + 31 +0.0 + 0 +LINE + 5 +250D + 8 +0 + 62 + 0 + 10 +21376.25 + 20 +9204.533543 + 30 +0.0 + 11 +21374.999946 + 21 +9206.698699 + 31 +0.0 + 0 +LINE + 5 +250E + 8 +0 + 62 + 0 + 10 +21349.999946 + 20 +9249.999969 + 30 +0.0 + 11 +21349.999929 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +250F + 8 +0 + 62 + 0 + 10 +21376.25 + 20 +9247.834813 + 30 +0.0 + 11 +21374.999946 + 21 +9249.999969 + 31 +0.0 + 0 +LINE + 5 +2510 + 8 +0 + 62 + 0 + 10 +20849.999948 + 20 +9206.69876 + 30 +0.0 + 11 +20862.499948 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +2511 + 8 +0 + 62 + 0 + 10 +20812.499948 + 20 +9185.048125 + 30 +0.0 + 11 +20824.999948 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +2512 + 8 +0 + 62 + 0 + 10 +20778.811909 + 20 +9170.0 + 30 +0.0 + 11 +20787.499948 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +2513 + 8 +0 + 62 + 0 + 10 +20812.499948 + 20 +9228.349395 + 30 +0.0 + 11 +20824.999931 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2514 + 8 +0 + 62 + 0 + 10 +20774.999948 + 20 +9206.69876 + 30 +0.0 + 11 +20787.499948 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +2515 + 8 +0 + 62 + 0 + 10 +20737.499948 + 20 +9185.048125 + 30 +0.0 + 11 +20749.999948 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +2516 + 8 +0 + 62 + 0 + 10 +20703.81191 + 20 +9170.0 + 30 +0.0 + 11 +20712.499948 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +2517 + 8 +0 + 62 + 0 + 10 +20737.499948 + 20 +9228.349395 + 30 +0.0 + 11 +20749.999931 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2518 + 8 +0 + 62 + 0 + 10 +20699.999948 + 20 +9206.69876 + 30 +0.0 + 11 +20712.499948 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +2519 + 8 +0 + 62 + 0 + 10 +20662.499949 + 20 +9185.048124 + 30 +0.0 + 11 +20674.999949 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +251A + 8 +0 + 62 + 0 + 10 +20628.81191 + 20 +9170.0 + 30 +0.0 + 11 +20637.499949 + 21 +9185.048124 + 31 +0.0 + 0 +LINE + 5 +251B + 8 +0 + 62 + 0 + 10 +20662.499949 + 20 +9228.349395 + 30 +0.0 + 11 +20674.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +251C + 8 +0 + 62 + 0 + 10 +20624.999949 + 20 +9206.698759 + 30 +0.0 + 11 +20637.499949 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +251D + 8 +0 + 62 + 0 + 10 +20587.499949 + 20 +9185.048124 + 30 +0.0 + 11 +20599.999949 + 21 +9206.698759 + 31 +0.0 + 0 +LINE + 5 +251E + 8 +0 + 62 + 0 + 10 +20553.81191 + 20 +9170.0 + 30 +0.0 + 11 +20562.499949 + 21 +9185.048124 + 31 +0.0 + 0 +LINE + 5 +251F + 8 +0 + 62 + 0 + 10 +20587.499949 + 20 +9228.349394 + 30 +0.0 + 11 +20599.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2520 + 8 +0 + 62 + 0 + 10 +20549.999949 + 20 +9206.698759 + 30 +0.0 + 11 +20562.499949 + 21 +9228.349394 + 31 +0.0 + 0 +LINE + 5 +2521 + 8 +0 + 62 + 0 + 10 +20512.499949 + 20 +9185.048124 + 30 +0.0 + 11 +20524.999949 + 21 +9206.698759 + 31 +0.0 + 0 +LINE + 5 +2522 + 8 +0 + 62 + 0 + 10 +20478.811911 + 20 +9170.0 + 30 +0.0 + 11 +20487.499949 + 21 +9185.048124 + 31 +0.0 + 0 +LINE + 5 +2523 + 8 +0 + 62 + 0 + 10 +20512.499949 + 20 +9228.349394 + 30 +0.0 + 11 +20524.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2524 + 8 +0 + 62 + 0 + 10 +20474.999949 + 20 +9206.698759 + 30 +0.0 + 11 +20487.499949 + 21 +9228.349394 + 31 +0.0 + 0 +LINE + 5 +2525 + 8 +0 + 62 + 0 + 10 +20437.499949 + 20 +9185.048124 + 30 +0.0 + 11 +20449.999949 + 21 +9206.698759 + 31 +0.0 + 0 +LINE + 5 +2526 + 8 +0 + 62 + 0 + 10 +20403.811911 + 20 +9170.0 + 30 +0.0 + 11 +20412.499949 + 21 +9185.048124 + 31 +0.0 + 0 +LINE + 5 +2527 + 8 +0 + 62 + 0 + 10 +20437.499949 + 20 +9228.349394 + 30 +0.0 + 11 +20449.999932 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2528 + 8 +0 + 62 + 0 + 10 +20399.999949 + 20 +9206.698759 + 30 +0.0 + 11 +20412.499949 + 21 +9228.349394 + 31 +0.0 + 0 +LINE + 5 +2529 + 8 +0 + 62 + 0 + 10 +20363.75 + 20 +9187.213275 + 30 +0.0 + 11 +20374.99995 + 21 +9206.698759 + 31 +0.0 + 0 +LINE + 5 +252A + 8 +0 + 62 + 0 + 10 +20363.75 + 20 +9230.514545 + 30 +0.0 + 11 +20374.999933 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +252B + 8 +0 + 62 + 0 + 10 +20853.811909 + 20 +9170.0 + 30 +0.0 + 11 +20862.499948 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +252C + 8 +0 + 62 + 0 + 10 +20887.499948 + 20 +9228.349395 + 30 +0.0 + 11 +20899.999931 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +252D + 8 +0 + 62 + 0 + 10 +20887.499948 + 20 +9185.048125 + 30 +0.0 + 11 +20899.999948 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +252E + 8 +0 + 62 + 0 + 10 +20924.999948 + 20 +9206.69876 + 30 +0.0 + 11 +20937.499948 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +252F + 8 +0 + 62 + 0 + 10 +20928.811909 + 20 +9170.0 + 30 +0.0 + 11 +20937.499948 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +2530 + 8 +0 + 62 + 0 + 10 +20962.499948 + 20 +9228.349395 + 30 +0.0 + 11 +20974.99993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2531 + 8 +0 + 62 + 0 + 10 +20962.499948 + 20 +9185.048125 + 30 +0.0 + 11 +20974.999948 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +2532 + 8 +0 + 62 + 0 + 10 +20999.999947 + 20 +9206.69876 + 30 +0.0 + 11 +21012.499947 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +2533 + 8 +0 + 62 + 0 + 10 +21003.811908 + 20 +9170.0 + 30 +0.0 + 11 +21012.499947 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +2534 + 8 +0 + 62 + 0 + 10 +21037.499947 + 20 +9228.349395 + 30 +0.0 + 11 +21049.99993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2535 + 8 +0 + 62 + 0 + 10 +21037.499947 + 20 +9185.048125 + 30 +0.0 + 11 +21049.999947 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +2536 + 8 +0 + 62 + 0 + 10 +21074.999947 + 20 +9206.69876 + 30 +0.0 + 11 +21087.499947 + 21 +9228.349395 + 31 +0.0 + 0 +LINE + 5 +2537 + 8 +0 + 62 + 0 + 10 +21078.811908 + 20 +9170.0 + 30 +0.0 + 11 +21087.499947 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +2538 + 8 +0 + 62 + 0 + 10 +21112.499947 + 20 +9228.349395 + 30 +0.0 + 11 +21124.99993 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2539 + 8 +0 + 62 + 0 + 10 +21112.499947 + 20 +9185.048125 + 30 +0.0 + 11 +21124.999947 + 21 +9206.69876 + 31 +0.0 + 0 +LINE + 5 +253A + 8 +0 + 62 + 0 + 10 +21149.999947 + 20 +9206.69876 + 30 +0.0 + 11 +21162.499947 + 21 +9228.349396 + 31 +0.0 + 0 +LINE + 5 +253B + 8 +0 + 62 + 0 + 10 +21153.811908 + 20 +9170.0 + 30 +0.0 + 11 +21162.499947 + 21 +9185.048125 + 31 +0.0 + 0 +LINE + 5 +253C + 8 +0 + 62 + 0 + 10 +21187.499947 + 20 +9228.349396 + 30 +0.0 + 11 +21199.999929 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +253D + 8 +0 + 62 + 0 + 10 +21187.499947 + 20 +9185.048125 + 30 +0.0 + 11 +21199.999947 + 21 +9206.698761 + 31 +0.0 + 0 +LINE + 5 +253E + 8 +0 + 62 + 0 + 10 +21224.999947 + 20 +9206.698761 + 30 +0.0 + 11 +21237.499947 + 21 +9228.349396 + 31 +0.0 + 0 +LINE + 5 +253F + 8 +0 + 62 + 0 + 10 +21228.811907 + 20 +9170.0 + 30 +0.0 + 11 +21237.499947 + 21 +9185.048126 + 31 +0.0 + 0 +LINE + 5 +2540 + 8 +0 + 62 + 0 + 10 +21262.499947 + 20 +9228.349396 + 30 +0.0 + 11 +21274.999929 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2541 + 8 +0 + 62 + 0 + 10 +21262.499947 + 20 +9185.048126 + 30 +0.0 + 11 +21274.999947 + 21 +9206.698761 + 31 +0.0 + 0 +LINE + 5 +2542 + 8 +0 + 62 + 0 + 10 +21299.999946 + 20 +9206.698761 + 30 +0.0 + 11 +21312.499946 + 21 +9228.349396 + 31 +0.0 + 0 +LINE + 5 +2543 + 8 +0 + 62 + 0 + 10 +21303.811907 + 20 +9170.0 + 30 +0.0 + 11 +21312.499946 + 21 +9185.048126 + 31 +0.0 + 0 +LINE + 5 +2544 + 8 +0 + 62 + 0 + 10 +21337.499946 + 20 +9228.349396 + 30 +0.0 + 11 +21349.999929 + 21 +9250.0 + 31 +0.0 + 0 +LINE + 5 +2545 + 8 +0 + 62 + 0 + 10 +21337.499946 + 20 +9185.048126 + 30 +0.0 + 11 +21349.999946 + 21 +9206.698761 + 31 +0.0 + 0 +LINE + 5 +2546 + 8 +0 + 62 + 0 + 10 +21374.999946 + 20 +9206.698761 + 30 +0.0 + 11 +21376.25 + 21 +9208.863917 + 31 +0.0 + 0 +ENDBLK + 5 +2547 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +MASSHILFSLINIE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +MASSHILFSLINIE + 1 + + 0 +POLYLINE + 5 +2549 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34A9 + 8 +0 + 10 +-150.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34AA + 8 +0 + 10 +150.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +34AB + 8 +0 + 0 +POLYLINE + 5 +254D + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34AC + 8 +0 + 10 +0.0 + 20 +-350.0 + 30 +0.0 + 0 +VERTEX + 5 +34AD + 8 +0 + 10 +0.0 + 20 +350.0 + 30 +0.0 + 0 +SEQEND + 5 +34AE + 8 +0 + 0 +POLYLINE + 5 +2551 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34AF + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34B0 + 8 +0 + 10 +53.033009 + 20 +53.033009 + 30 +0.0 + 0 +SEQEND + 5 +34B1 + 8 +0 + 0 +POLYLINE + 5 +2555 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34B2 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +34B3 + 8 +0 + 10 +-53.033009 + 20 +-53.033009 + 30 +0.0 + 0 +SEQEND + 5 +34B4 + 8 +0 + 0 +ENDBLK + 5 +2559 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D55 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D55 + 1 + + 0 +LINE + 5 +255B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9746.0 + 20 +11975.0 + 30 +0.0 + 11 +12614.0 + 21 +11975.0 + 31 +0.0 + 0 +INSERT + 5 +255C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9745.0 + 20 +11975.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +255D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +12615.0 + 20 +11975.0 + 30 +0.0 + 0 +TEXT + 5 +255E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10983.125 + 20 +12062.5 + 30 +0.0 + 40 +175.0 + 1 +2.87 + 41 +0.75 + 72 + 1 + 11 +11180.0 + 21 +12150.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2560 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9745.0 + 20 +12370.0 + 30 +0.0 + 0 +POINT + 5 +2561 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +12615.0 + 20 +12370.0 + 30 +0.0 + 0 +POINT + 5 +2562 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +12615.0 + 20 +11975.0 + 30 +0.0 + 0 +ENDBLK + 5 +2563 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D56 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D56 + 1 + + 0 +LINE + 5 +2565 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13881.0 + 20 +11975.0 + 30 +0.0 + 11 +14119.0 + 21 +11975.0 + 31 +0.0 + 0 +INSERT + 5 +2566 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13880.0 + 20 +11975.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2567 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14120.0 + 20 +11975.0 + 30 +0.0 + 0 +TEXT + 5 +2568 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13890.625 + 20 +12062.5 + 30 +0.0 + 40 +175.0 + 1 +25 + 41 +0.75 + 72 + 1 + 11 +14000.0 + 21 +12150.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2569 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13880.0 + 20 +11955.0 + 30 +0.0 + 0 +POINT + 5 +256A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14120.0 + 20 +11975.0 + 30 +0.0 + 0 +POINT + 5 +256B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14120.0 + 20 +11975.0 + 30 +0.0 + 0 +ENDBLK + 5 +256C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D57 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D57 + 1 + + 0 +LINE + 5 +256E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5371.0 + 20 +16165.0 + 30 +0.0 + 11 +7619.0 + 21 +16165.0 + 31 +0.0 + 0 +INSERT + 5 +256F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5370.0 + 20 +16165.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2570 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7620.0 + 20 +16165.0 + 30 +0.0 + 0 +TEXT + 5 +2571 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6298.125 + 20 +16252.5 + 30 +0.0 + 40 +175.0 + 1 +2.25 + 41 +0.75 + 72 + 1 + 11 +6495.0 + 21 +16340.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2572 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5370.0 + 20 +16875.0 + 30 +0.0 + 0 +POINT + 5 +2573 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7620.0 + 20 +16875.0 + 30 +0.0 + 0 +POINT + 5 +2574 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7620.0 + 20 +16165.0 + 30 +0.0 + 0 +ENDBLK + 5 +2575 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D58 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D58 + 1 + + 0 +LINE + 5 +2577 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7619.0 + 20 +16165.0 + 30 +0.0 + 11 +7618.0 + 21 +16165.0 + 31 +0.0 + 0 +LINE + 5 +2578 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7741.0 + 20 +16165.0 + 30 +0.0 + 11 +7742.0 + 21 +16165.0 + 31 +0.0 + 0 +LINE + 5 +2579 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7742.0 + 20 +16165.0 + 30 +0.0 + 11 +7917.0 + 21 +16165.0 + 31 +0.0 + 0 +INSERT + 5 +257A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7620.0 + 20 +16165.0 + 30 +0.0 + 0 +INSERT + 5 +257B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7740.0 + 20 +16165.0 + 30 +0.0 + 50 +180.0 + 0 +TEXT + 5 +257C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7742.0 + 20 +16252.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 41 +0.75 + 72 + 1 + 11 +7829.5 + 21 +16340.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +257D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7620.0 + 20 +16875.0 + 30 +0.0 + 0 +POINT + 5 +257E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7740.0 + 20 +16195.0 + 30 +0.0 + 0 +POINT + 5 +257F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7740.0 + 20 +16165.0 + 30 +0.0 + 0 +ENDBLK + 5 +2580 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D59 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D59 + 1 + + 0 +LINE + 5 +2582 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +14616.0 + 30 +0.0 + 11 +3500.0 + 21 +16124.0 + 31 +0.0 + 0 +INSERT + 5 +2583 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +14615.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2584 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +16125.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2585 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3412.5 + 20 +15216.875 + 30 +0.0 + 40 +175.0 + 1 +1.51 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +3325.0 + 21 +15370.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2586 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +14615.0 + 30 +0.0 + 0 +POINT + 5 +2587 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +16125.0 + 30 +0.0 + 0 +POINT + 5 +2588 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +16125.0 + 30 +0.0 + 0 +ENDBLK + 5 +2589 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D60 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D60 + 1 + + 0 +LINE + 5 +258B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +16126.0 + 30 +0.0 + 11 +3500.0 + 21 +18239.0 + 31 +0.0 + 0 +INSERT + 5 +258C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +16125.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +258D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +18240.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +258E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3412.5 + 20 +17029.375 + 30 +0.0 + 40 +175.0 + 1 +2.11 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +3325.0 + 21 +17182.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +258F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +16125.0 + 30 +0.0 + 0 +POINT + 5 +2590 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +18240.0 + 30 +0.0 + 0 +POINT + 5 +2591 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +18240.0 + 30 +0.0 + 0 +ENDBLK + 5 +2592 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D61 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D61 + 1 + + 0 +LINE + 5 +2594 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +18241.0 + 30 +0.0 + 11 +3500.0 + 21 +19374.0 + 31 +0.0 + 0 +INSERT + 5 +2595 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +18240.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2596 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +19375.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2597 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3412.5 + 20 +18654.375 + 30 +0.0 + 40 +175.0 + 1 +1.13 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +3325.0 + 21 +18807.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2598 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +18240.0 + 30 +0.0 + 0 +POINT + 5 +2599 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +19375.0 + 30 +0.0 + 0 +POINT + 5 +259A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +19375.0 + 30 +0.0 + 0 +ENDBLK + 5 +259B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D62 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D62 + 1 + + 0 +LINE + 5 +259D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +19376.0 + 30 +0.0 + 11 +3500.0 + 21 +22114.0 + 31 +0.0 + 0 +INSERT + 5 +259E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +19375.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +259F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +22115.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +25A0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3412.5 + 20 +20548.125 + 30 +0.0 + 40 +175.0 + 1 +2.74 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +3325.0 + 21 +20745.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25A1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +19375.0 + 30 +0.0 + 0 +POINT + 5 +25A2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +25A3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +22115.0 + 30 +0.0 + 0 +ENDBLK + 5 +25A4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D63 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D63 + 1 + + 0 +LINE + 5 +25A6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +9251.0 + 30 +0.0 + 11 +3500.0 + 21 +14614.0 + 31 +0.0 + 0 +INSERT + 5 +25A7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +9250.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +25A8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3500.0 + 20 +14615.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +25A9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3412.5 + 20 +11735.625 + 30 +0.0 + 40 +175.0 + 1 +5.36 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +3325.0 + 21 +11932.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25AA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +25AB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +14615.0 + 30 +0.0 + 0 +POINT + 5 +25AC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3500.0 + 20 +14615.0 + 30 +0.0 + 0 +ENDBLK + 5 +25AD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D64 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D64 + 1 + + 0 +LINE + 5 +25AF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5366.0 + 20 +18105.0 + 30 +0.0 + 11 +8114.0 + 21 +18105.0 + 31 +0.0 + 0 +INSERT + 5 +25B0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5365.0 + 20 +18105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25B1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8115.0 + 20 +18105.0 + 30 +0.0 + 0 +TEXT + 5 +25B2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6543.125 + 20 +18192.5 + 30 +0.0 + 40 +175.0 + 1 +2.75 + 41 +0.75 + 72 + 1 + 11 +6740.0 + 21 +18280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25B3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +17255.0 + 30 +0.0 + 0 +POINT + 5 +25B4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8115.0 + 20 +17255.0 + 30 +0.0 + 0 +POINT + 5 +25B5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8115.0 + 20 +18105.0 + 30 +0.0 + 0 +ENDBLK + 5 +25B6 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D65 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D65 + 1 + + 0 +LINE + 5 +25B8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8116.0 + 20 +18105.0 + 30 +0.0 + 11 +9004.0 + 21 +18105.0 + 31 +0.0 + 0 +INSERT + 5 +25B9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8115.0 + 20 +18105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25BA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9005.0 + 20 +18105.0 + 30 +0.0 + 0 +TEXT + 5 +25BB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8450.625 + 20 +18192.5 + 30 +0.0 + 40 +175.0 + 1 +88 + 41 +0.75 + 72 + 1 + 11 +8560.0 + 21 +18280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25BC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8115.0 + 20 +17255.0 + 30 +0.0 + 0 +POINT + 5 +25BD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9005.0 + 20 +17185.0 + 30 +0.0 + 0 +POINT + 5 +25BE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9005.0 + 20 +18105.0 + 30 +0.0 + 0 +ENDBLK + 5 +25BF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D66 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D66 + 1 + + 0 +LINE + 5 +25C1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9006.0 + 20 +18105.0 + 30 +0.0 + 11 +9749.0 + 21 +18105.0 + 31 +0.0 + 0 +INSERT + 5 +25C2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9005.0 + 20 +18105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25C3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9750.0 + 20 +18105.0 + 30 +0.0 + 0 +TEXT + 5 +25C4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9268.125 + 20 +18192.5 + 30 +0.0 + 40 +175.0 + 1 +75 + 41 +0.75 + 72 + 1 + 11 +9377.5 + 21 +18280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25C5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9005.0 + 20 +17185.0 + 30 +0.0 + 0 +POINT + 5 +25C6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +18100.0 + 30 +0.0 + 0 +POINT + 5 +25C7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +18105.0 + 30 +0.0 + 0 +ENDBLK + 5 +25C8 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D67 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D67 + 1 + + 0 +LINE + 5 +25CA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5001.0 + 20 +26015.0 + 30 +0.0 + 11 +26739.0 + 21 +26015.0 + 31 +0.0 + 0 +INSERT + 5 +25CB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5000.0 + 20 +26015.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25CC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26740.0 + 20 +26015.0 + 30 +0.0 + 0 +TEXT + 5 +25CD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15629.375 + 20 +26102.5 + 30 +0.0 + 40 +175.0 + 1 +21.74 + 41 +0.75 + 72 + 1 + 11 +15870.0 + 21 +26190.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25CE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +25CF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +25D0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +26015.0 + 30 +0.0 + 0 +ENDBLK + 5 +25D1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D68 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D68 + 1 + + 0 +LINE + 5 +25D3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5366.0 + 20 +25315.0 + 30 +0.0 + 11 +9749.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +25D4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5365.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25D5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9750.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +25D6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7360.625 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +4.38 + 41 +0.75 + 72 + 1 + 11 +7557.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25D7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +25D8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +21740.0 + 30 +0.0 + 0 +POINT + 5 +25D9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +25DA + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D69 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D69 + 1 + + 0 +LINE + 5 +25DC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5001.0 + 20 +25315.0 + 30 +0.0 + 11 +5364.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +25DD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5000.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25DE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5365.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +25DF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5073.125 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +5182.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25E0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +25E1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +25E2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +25E3 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D70 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D70 + 1 + + 0 +LINE + 5 +25E5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10111.0 + 20 +25315.0 + 30 +0.0 + 11 +14874.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +25E6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10110.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25E7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14875.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +25E8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12295.625 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +4.76 + 41 +0.75 + 72 + 1 + 11 +12492.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25E9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10110.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +25EA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14875.0 + 20 +21735.0 + 30 +0.0 + 0 +POINT + 5 +25EB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14875.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +25EC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D71 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D71 + 1 + + 0 +LINE + 5 +25EE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9751.0 + 20 +25315.0 + 30 +0.0 + 11 +10109.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +25EF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9750.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25F0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10110.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +25F1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9820.625 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +9930.0 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25F2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +21740.0 + 30 +0.0 + 0 +POINT + 5 +25F3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10110.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +25F4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10110.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +25F5 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D72 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D72 + 1 + + 0 +LINE + 5 +25F7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14876.0 + 20 +25315.0 + 30 +0.0 + 11 +15239.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +25F8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14875.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +25F9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15240.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +25FA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14948.125 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +15057.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +25FB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14875.0 + 20 +21735.0 + 30 +0.0 + 0 +POINT + 5 +25FC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15240.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +25FD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15240.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +25FE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D73 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D73 + 1 + + 0 +LINE + 5 +2600 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15241.0 + 20 +25315.0 + 30 +0.0 + 11 +17614.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +2601 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15240.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2602 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17615.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +2603 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16230.625 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +2.38 + 41 +0.75 + 72 + 1 + 11 +16427.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2604 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15240.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2605 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17615.0 + 20 +21735.0 + 30 +0.0 + 0 +POINT + 5 +2606 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17615.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +2607 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D74 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D74 + 1 + + 0 +LINE + 5 +2609 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17616.0 + 20 +25315.0 + 30 +0.0 + 11 +17994.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +260A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17615.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +260B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17995.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +260C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17695.625 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +17805.0 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +260D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17615.0 + 20 +21735.0 + 30 +0.0 + 0 +POINT + 5 +260E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17995.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +260F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17995.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +2610 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D75 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D75 + 1 + + 0 +LINE + 5 +2612 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17996.0 + 20 +25315.0 + 30 +0.0 + 11 +22499.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +2613 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17995.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2614 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22500.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +2615 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +20072.5 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +4.51 + 41 +0.75 + 72 + 1 + 11 +20247.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2616 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17995.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +2617 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22500.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2618 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22500.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +2619 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D76 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D76 + 1 + + 0 +LINE + 5 +261B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22501.0 + 20 +25315.0 + 30 +0.0 + 11 +22864.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +261C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22500.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +261D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22865.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +261E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22573.125 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +22682.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +261F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22500.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2620 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22865.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2621 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22865.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +2622 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D77 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D77 + 1 + + 0 +LINE + 5 +2624 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22866.0 + 20 +25315.0 + 30 +0.0 + 11 +26369.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +2625 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22865.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2626 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26370.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +2627 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24442.5 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +3.51 + 41 +0.75 + 72 + 1 + 11 +24617.5 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2628 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22865.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2629 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26370.0 + 20 +21740.0 + 30 +0.0 + 0 +POINT + 5 +262A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26370.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +262B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D78 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D78 + 1 + + 0 +LINE + 5 +262D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +26371.0 + 20 +25315.0 + 30 +0.0 + 11 +26739.0 + 21 +25315.0 + 31 +0.0 + 0 +INSERT + 5 +262E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26370.0 + 20 +25315.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +262F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26740.0 + 20 +25315.0 + 30 +0.0 + 0 +TEXT + 5 +2630 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +26445.625 + 20 +25402.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +26555.0 + 21 +25490.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2631 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26370.0 + 20 +21740.0 + 30 +0.0 + 0 +POINT + 5 +2632 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +22000.0 + 30 +0.0 + 0 +POINT + 5 +2633 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +25315.0 + 30 +0.0 + 0 +ENDBLK + 5 +2634 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D79 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D79 + 1 + + 0 +LINE + 5 +2636 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +25251.0 + 20 +24615.0 + 30 +0.0 + 11 +26739.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2637 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +25250.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2638 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26740.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2639 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +25820.0 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.49 + 41 +0.75 + 72 + 1 + 11 +25995.0 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +263A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +25250.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +263B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +263C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +263D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D80 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D80 + 1 + + 0 +LINE + 5 +263F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +19751.0 + 20 +24615.0 + 30 +0.0 + 11 +23364.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2640 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +19750.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2641 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +23365.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2642 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21382.5 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +3.61 + 41 +0.75 + 72 + 1 + 11 +21557.5 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2643 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +19750.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2644 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23365.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2645 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23365.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +2646 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D81 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D81 + 1 + + 0 +LINE + 5 +2648 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18736.0 + 20 +24615.0 + 30 +0.0 + 11 +19749.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2649 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18735.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +264A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +19750.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +264B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +19100.3125 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 41 +0.75 + 72 + 1 + 11 +19242.5 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +264C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18735.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +264D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +19750.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +264E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +19750.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +264F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D82 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D82 + 1 + + 0 +LINE + 5 +2651 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16876.0 + 20 +24615.0 + 30 +0.0 + 11 +18734.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2652 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16875.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2653 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18735.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2654 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17630.0 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.86 + 41 +0.75 + 72 + 1 + 11 +17805.0 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2655 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16875.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +2656 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18735.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +2657 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18735.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +2658 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D83 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D83 + 1 + + 0 +LINE + 5 +265A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15861.0 + 20 +24615.0 + 30 +0.0 + 11 +16874.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +265B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15860.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +265C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16875.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +265D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16225.3125 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 41 +0.75 + 72 + 1 + 11 +16367.5 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +265E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15860.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +265F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16875.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +2660 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16875.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +2661 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D84 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D84 + 1 + + 0 +LINE + 5 +2663 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11256.0 + 20 +24615.0 + 30 +0.0 + 11 +15859.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2664 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11255.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2665 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15860.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2666 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13382.5 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +4.61 + 41 +0.75 + 72 + 1 + 11 +13557.5 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2667 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11255.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +2668 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15860.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +2669 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15860.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +266A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D85 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D85 + 1 + + 0 +LINE + 5 +266C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10241.0 + 20 +24615.0 + 30 +0.0 + 11 +11254.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +266D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10240.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +266E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11255.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +266F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10605.3125 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 41 +0.75 + 72 + 1 + 11 +10747.5 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2670 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10240.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2671 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11255.0 + 20 +22105.0 + 30 +0.0 + 0 +POINT + 5 +2672 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11255.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +2673 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D86 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D86 + 1 + + 0 +LINE + 5 +2675 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8501.0 + 20 +24615.0 + 30 +0.0 + 11 +10239.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2676 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8500.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2677 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10240.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2678 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9195.0 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.74 + 41 +0.75 + 72 + 1 + 11 +9370.0 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2679 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8500.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +267A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10240.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +267B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10240.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +267C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D87 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D87 + 1 + + 0 +LINE + 5 +267E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5001.0 + 20 +24615.0 + 30 +0.0 + 11 +6739.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +267F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5000.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2680 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6740.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2681 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5695.0 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.74 + 41 +0.75 + 72 + 1 + 11 +5870.0 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2682 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2683 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6740.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2684 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6740.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +2685 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D88 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D88 + 1 + + 0 +LINE + 5 +2687 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +23366.0 + 20 +24615.0 + 30 +0.0 + 11 +25249.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2688 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +23365.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2689 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +25250.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +268A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24132.5 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.88 + 41 +0.75 + 72 + 1 + 11 +24307.5 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +268B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23365.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +268C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +25250.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +268D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +25250.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +268E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D89 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D89 + 1 + + 0 +LINE + 5 +2690 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6741.0 + 20 +24615.0 + 30 +0.0 + 11 +8499.0 + 21 +24615.0 + 31 +0.0 + 0 +INSERT + 5 +2691 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6740.0 + 20 +24615.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2692 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8500.0 + 20 +24615.0 + 30 +0.0 + 0 +TEXT + 5 +2693 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7445.0 + 20 +24702.5 + 30 +0.0 + 40 +175.0 + 1 +1.76 + 41 +0.75 + 72 + 1 + 11 +7620.0 + 21 +24790.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2694 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6740.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2695 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8500.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2696 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8500.0 + 20 +24615.0 + 30 +0.0 + 0 +ENDBLK + 5 +2697 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D90 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D90 + 1 + + 0 +LINE + 5 +2699 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +9251.0 + 30 +0.0 + 11 +2800.0 + 21 +9614.0 + 31 +0.0 + 0 +INSERT + 5 +269A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +9250.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +269B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +9615.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +269C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +9323.125 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +9432.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +269D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +269E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9615.0 + 30 +0.0 + 0 +POINT + 5 +269F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +9615.0 + 30 +0.0 + 0 +ENDBLK + 5 +26A0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D91 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D91 + 1 + + 0 +LINE + 5 +26A2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +9616.0 + 30 +0.0 + 11 +2800.0 + 21 +14114.0 + 31 +0.0 + 0 +INSERT + 5 +26A3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +9615.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +26A4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +14115.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +26A5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +11690.0 + 30 +0.0 + 40 +175.0 + 1 +4.51 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +11865.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26A6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9615.0 + 30 +0.0 + 0 +POINT + 5 +26A7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +14115.0 + 30 +0.0 + 0 +POINT + 5 +26A8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +14115.0 + 30 +0.0 + 0 +ENDBLK + 5 +26A9 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D92 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D92 + 1 + + 0 +LINE + 5 +26AB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +14116.0 + 30 +0.0 + 11 +2800.0 + 21 +14474.0 + 31 +0.0 + 0 +INSERT + 5 +26AC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +14115.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +26AD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +14475.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +26AE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +14185.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +14295.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26AF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +14115.0 + 30 +0.0 + 0 +POINT + 5 +26B0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5390.0 + 20 +14475.0 + 30 +0.0 + 0 +POINT + 5 +26B1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +14475.0 + 30 +0.0 + 0 +ENDBLK + 5 +26B2 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D93 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D93 + 1 + + 0 +LINE + 5 +26B4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +14476.0 + 30 +0.0 + 11 +2800.0 + 21 +16874.0 + 31 +0.0 + 0 +INSERT + 5 +26B5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +14475.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +26B6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +16875.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +26B7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +15478.125 + 30 +0.0 + 40 +175.0 + 1 +2.38 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +15675.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26B8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5390.0 + 20 +14475.0 + 30 +0.0 + 0 +POINT + 5 +26B9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +16875.0 + 30 +0.0 + 0 +POINT + 5 +26BA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +16875.0 + 30 +0.0 + 0 +ENDBLK + 5 +26BB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D94 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D94 + 1 + + 0 +LINE + 5 +26BD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +16876.0 + 30 +0.0 + 11 +2800.0 + 21 +17234.0 + 31 +0.0 + 0 +INSERT + 5 +26BE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +16875.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +26BF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +17235.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +26C0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +16945.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +17055.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26C1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +16875.0 + 30 +0.0 + 0 +POINT + 5 +26C2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5375.0 + 20 +17235.0 + 30 +0.0 + 0 +POINT + 5 +26C3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +17235.0 + 30 +0.0 + 0 +ENDBLK + 5 +26C4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D95 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D95 + 1 + + 0 +LINE + 5 +26C6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +17236.0 + 30 +0.0 + 11 +2800.0 + 21 +21749.0 + 31 +0.0 + 0 +INSERT + 5 +26C7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +17235.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +26C8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +21750.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +26C9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +19317.5 + 30 +0.0 + 40 +175.0 + 1 +4.51 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +19492.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26CA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5375.0 + 20 +17235.0 + 30 +0.0 + 0 +POINT + 5 +26CB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5355.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +26CC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +21750.0 + 30 +0.0 + 0 +ENDBLK + 5 +26CD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D96 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D96 + 1 + + 0 +LINE + 5 +26CF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +21751.0 + 30 +0.0 + 11 +2800.0 + 21 +22119.0 + 31 +0.0 + 0 +INSERT + 5 +26D0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +21750.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +26D1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +22120.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +26D2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +21825.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +21935.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26D3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5355.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +26D4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5345.0 + 20 +22120.0 + 30 +0.0 + 0 +POINT + 5 +26D5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +22120.0 + 30 +0.0 + 0 +ENDBLK + 5 +26D6 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D97 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D97 + 1 + + 0 +LINE + 5 +26D8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10121.0 + 20 +18105.0 + 30 +0.0 + 11 +13529.0 + 21 +18105.0 + 31 +0.0 + 0 +INSERT + 5 +26D9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10120.0 + 20 +18105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +26DA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13530.0 + 20 +18105.0 + 30 +0.0 + 0 +TEXT + 5 +26DB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11650.0 + 20 +18192.5 + 30 +0.0 + 40 +175.0 + 1 +3.41 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +11825.0 + 21 +18280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26DC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10120.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +26DD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13530.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +26DE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13530.0 + 20 +18105.0 + 30 +0.0 + 0 +ENDBLK + 5 +26DF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D98 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D98 + 1 + + 0 +LINE + 5 +26E1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14561.0 + 20 +18105.0 + 30 +0.0 + 11 +14884.0 + 21 +18105.0 + 31 +0.0 + 0 +INSERT + 5 +26E2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14560.0 + 20 +18105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +26E3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14885.0 + 20 +18105.0 + 30 +0.0 + 0 +TEXT + 5 +26E4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14613.125 + 20 +18192.5 + 30 +0.0 + 40 +175.0 + 1 +32 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14722.5 + 21 +18280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26E5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14560.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +26E6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14885.0 + 20 +17395.0 + 30 +0.0 + 0 +POINT + 5 +26E7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14885.0 + 20 +18105.0 + 30 +0.0 + 0 +ENDBLK + 5 +26E8 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D99 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D99 + 1 + + 0 +LINE + 5 +26EA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15236.0 + 20 +18110.0 + 30 +0.0 + 11 +15989.0 + 21 +18110.0 + 31 +0.0 + 0 +INSERT + 5 +26EB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15235.0 + 20 +18110.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +26EC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15990.0 + 20 +18110.0 + 30 +0.0 + 0 +TEXT + 5 +26ED + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15503.125 + 20 +18197.5 + 30 +0.0 + 40 +175.0 + 1 +75 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +15612.5 + 21 +18285.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26EE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15235.0 + 20 +17380.0 + 30 +0.0 + 0 +POINT + 5 +26EF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15990.0 + 20 +17380.0 + 30 +0.0 + 0 +POINT + 5 +26F0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15990.0 + 20 +18110.0 + 30 +0.0 + 0 +ENDBLK + 5 +26F1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D100 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D100 + 1 + + 0 +LINE + 5 +26F3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15991.0 + 20 +18110.0 + 30 +0.0 + 11 +16869.0 + 21 +18110.0 + 31 +0.0 + 0 +INSERT + 5 +26F4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15990.0 + 20 +18110.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +26F5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16870.0 + 20 +18110.0 + 30 +0.0 + 0 +TEXT + 5 +26F6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16320.625 + 20 +18197.5 + 30 +0.0 + 40 +175.0 + 1 +88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16430.0 + 21 +18285.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +26F7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15990.0 + 20 +17380.0 + 30 +0.0 + 0 +POINT + 5 +26F8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16870.0 + 20 +17370.0 + 30 +0.0 + 0 +POINT + 5 +26F9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16870.0 + 20 +18110.0 + 30 +0.0 + 0 +ENDBLK + 5 +26FA + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D101 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D101 + 1 + + 0 +LINE + 5 +26FC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16871.0 + 20 +18110.0 + 30 +0.0 + 11 +17624.0 + 21 +18110.0 + 31 +0.0 + 0 +INSERT + 5 +26FD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16870.0 + 20 +18110.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +26FE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17625.0 + 20 +18110.0 + 30 +0.0 + 0 +TEXT + 5 +26FF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17138.125 + 20 +18197.5 + 30 +0.0 + 40 +175.0 + 1 +75 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +17247.5 + 21 +18285.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2700 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16870.0 + 20 +17370.0 + 30 +0.0 + 0 +POINT + 5 +2701 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17625.0 + 20 +17380.0 + 30 +0.0 + 0 +POINT + 5 +2702 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17625.0 + 20 +18110.0 + 30 +0.0 + 0 +ENDBLK + 5 +2703 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D102 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D102 + 1 + + 0 +LINE + 5 +2705 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17986.0 + 20 +16810.0 + 30 +0.0 + 11 +21359.0 + 21 +16810.0 + 31 +0.0 + 0 +INSERT + 5 +2706 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17985.0 + 20 +16810.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2707 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21360.0 + 20 +16810.0 + 30 +0.0 + 0 +TEXT + 5 +2708 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +19475.625 + 20 +16897.5 + 30 +0.0 + 40 +175.0 + 1 +3.37 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +19672.5 + 21 +16985.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2709 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17985.0 + 20 +16005.0 + 30 +0.0 + 0 +POINT + 5 +270A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21360.0 + 20 +16005.0 + 30 +0.0 + 0 +POINT + 5 +270B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21360.0 + 20 +16810.0 + 30 +0.0 + 0 +ENDBLK + 5 +270C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D103 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D103 + 1 + + 0 +LINE + 5 +270E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21361.0 + 20 +16810.0 + 30 +0.0 + 11 +22254.0 + 21 +16810.0 + 31 +0.0 + 0 +INSERT + 5 +270F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21360.0 + 20 +16810.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2710 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22255.0 + 20 +16810.0 + 30 +0.0 + 0 +TEXT + 5 +2711 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21698.125 + 20 +16897.5 + 30 +0.0 + 40 +175.0 + 1 +88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21807.5 + 21 +16985.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2712 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21360.0 + 20 +16005.0 + 30 +0.0 + 0 +POINT + 5 +2713 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22255.0 + 20 +15975.0 + 30 +0.0 + 0 +POINT + 5 +2714 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22255.0 + 20 +16810.0 + 30 +0.0 + 0 +ENDBLK + 5 +2715 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D104 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D104 + 1 + + 0 +LINE + 5 +2717 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22256.0 + 20 +16810.0 + 30 +0.0 + 11 +22509.0 + 21 +16810.0 + 31 +0.0 + 0 +INSERT + 5 +2718 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22255.0 + 20 +16810.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2719 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22510.0 + 20 +16810.0 + 30 +0.0 + 0 +TEXT + 5 +271A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22273.125 + 20 +16897.5 + 30 +0.0 + 40 +175.0 + 1 +25 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +22382.5 + 21 +16985.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +271B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22255.0 + 20 +15975.0 + 30 +0.0 + 0 +POINT + 5 +271C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22510.0 + 20 +16010.0 + 30 +0.0 + 0 +POINT + 5 +271D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22510.0 + 20 +16810.0 + 30 +0.0 + 0 +ENDBLK + 5 +271E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D105 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D105 + 1 + + 0 +LINE + 5 +2720 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +15986.0 + 30 +0.0 + 11 +24520.0 + 21 +16244.0 + 31 +0.0 + 0 +INSERT + 5 +2721 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +15985.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2722 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +16245.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2723 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24432.5 + 20 +16005.625 + 30 +0.0 + 40 +175.0 + 1 +25 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24345.0 + 21 +16115.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2724 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22865.0 + 20 +15985.0 + 30 +0.0 + 0 +POINT + 5 +2725 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22865.0 + 20 +16245.0 + 30 +0.0 + 0 +POINT + 5 +2726 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +16245.0 + 30 +0.0 + 0 +ENDBLK + 5 +2727 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D106 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D106 + 1 + + 0 +LINE + 5 +2729 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +16246.0 + 30 +0.0 + 11 +24520.0 + 21 +17129.0 + 31 +0.0 + 0 +INSERT + 5 +272A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +16245.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +272B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +17130.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +272C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24432.5 + 20 +16578.125 + 30 +0.0 + 40 +175.0 + 1 +88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24345.0 + 21 +16687.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +272D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22865.0 + 20 +16245.0 + 30 +0.0 + 0 +POINT + 5 +272E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22845.0 + 20 +17130.0 + 30 +0.0 + 0 +POINT + 5 +272F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +17130.0 + 30 +0.0 + 0 +ENDBLK + 5 +2730 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D107 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D107 + 1 + + 0 +LINE + 5 +2732 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +17131.0 + 30 +0.0 + 11 +24520.0 + 21 +21739.0 + 31 +0.0 + 0 +INSERT + 5 +2733 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +17130.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2734 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +21740.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2735 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24432.5 + 20 +19238.125 + 30 +0.0 + 40 +175.0 + 1 +4.62 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24345.0 + 21 +19435.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2736 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22845.0 + 20 +17130.0 + 30 +0.0 + 0 +POINT + 5 +2737 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23355.0 + 20 +21740.0 + 30 +0.0 + 0 +POINT + 5 +2738 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +21740.0 + 30 +0.0 + 0 +ENDBLK + 5 +2739 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D108 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D108 + 1 + + 0 +LINE + 5 +273B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +9256.0 + 30 +0.0 + 11 +28240.0 + 21 +10359.0 + 31 +0.0 + 0 +INSERT + 5 +273C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +9255.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +273D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +10360.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +273E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28152.5 + 20 +9676.25 + 30 +0.0 + 40 +175.0 + 1 +1.11 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28065.0 + 21 +9807.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +273F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +9255.0 + 30 +0.0 + 0 +POINT + 5 +2740 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +10360.0 + 30 +0.0 + 0 +POINT + 5 +2741 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +10360.0 + 30 +0.0 + 0 +ENDBLK + 5 +2742 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D109 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D109 + 1 + + 0 +LINE + 5 +2744 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +10361.0 + 30 +0.0 + 11 +28240.0 + 21 +12009.0 + 31 +0.0 + 0 +INSERT + 5 +2745 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +10360.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2746 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +12010.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2747 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28152.5 + 20 +11010.0 + 30 +0.0 + 40 +175.0 + 1 +1.63 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28065.0 + 21 +11185.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2748 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +10360.0 + 30 +0.0 + 0 +POINT + 5 +2749 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26730.0 + 20 +12010.0 + 30 +0.0 + 0 +POINT + 5 +274A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +12010.0 + 30 +0.0 + 0 +ENDBLK + 5 +274B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D110 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D110 + 1 + + 0 +LINE + 5 +274D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +12011.0 + 30 +0.0 + 11 +28240.0 + 21 +17729.0 + 31 +0.0 + 0 +INSERT + 5 +274E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +12010.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +274F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +17730.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2750 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28152.5 + 20 +14673.125 + 30 +0.0 + 40 +175.0 + 1 +5.74 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28065.0 + 21 +14870.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2751 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26730.0 + 20 +12010.0 + 30 +0.0 + 0 +POINT + 5 +2752 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26725.0 + 20 +17730.0 + 30 +0.0 + 0 +POINT + 5 +2753 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +17730.0 + 30 +0.0 + 0 +ENDBLK + 5 +2754 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D111 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D111 + 1 + + 0 +LINE + 5 +2756 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +17731.0 + 30 +0.0 + 11 +28240.0 + 21 +18384.0 + 31 +0.0 + 0 +INSERT + 5 +2757 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +17730.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2758 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +18385.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2759 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28152.5 + 20 +17948.125 + 30 +0.0 + 40 +175.0 + 1 +63 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28065.0 + 21 +18057.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +275A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26725.0 + 20 +17730.0 + 30 +0.0 + 0 +POINT + 5 +275B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26720.0 + 20 +18385.0 + 30 +0.0 + 0 +POINT + 5 +275C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +18385.0 + 30 +0.0 + 0 +ENDBLK + 5 +275D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D112 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D112 + 1 + + 0 +LINE + 5 +275F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +18386.0 + 30 +0.0 + 11 +28240.0 + 21 +22114.0 + 31 +0.0 + 0 +INSERT + 5 +2760 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +18385.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2761 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28240.0 + 20 +22115.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2762 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28152.5 + 20 +20053.125 + 30 +0.0 + 40 +175.0 + 1 +3.74 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28065.0 + 21 +20250.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2763 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26720.0 + 20 +18385.0 + 30 +0.0 + 0 +POINT + 5 +2764 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26725.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2765 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28240.0 + 20 +22115.0 + 30 +0.0 + 0 +ENDBLK + 5 +2766 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D113 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D113 + 1 + + 0 +LINE + 5 +2768 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +9256.0 + 30 +0.0 + 11 +28940.0 + 21 +9614.0 + 31 +0.0 + 0 +INSERT + 5 +2769 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +9255.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +276A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +9615.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +276B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28852.5 + 20 +9325.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28765.0 + 21 +9435.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +276C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26685.0 + 20 +9255.0 + 30 +0.0 + 0 +POINT + 5 +276D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26685.0 + 20 +9615.0 + 30 +0.0 + 0 +POINT + 5 +276E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +9615.0 + 30 +0.0 + 0 +ENDBLK + 5 +276F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D114 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D114 + 1 + + 0 +LINE + 5 +2771 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +9616.0 + 30 +0.0 + 11 +28940.0 + 21 +15624.0 + 31 +0.0 + 0 +INSERT + 5 +2772 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +9615.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2773 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +15625.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2774 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28852.5 + 20 +12455.9375 + 30 +0.0 + 40 +175.0 + 1 +6.01 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28765.0 + 21 +12620.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2775 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26685.0 + 20 +9615.0 + 30 +0.0 + 0 +POINT + 5 +2776 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26365.0 + 20 +15625.0 + 30 +0.0 + 0 +POINT + 5 +2777 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +15625.0 + 30 +0.0 + 0 +ENDBLK + 5 +2778 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D115 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D115 + 1 + + 0 +LINE + 5 +277A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +15626.0 + 30 +0.0 + 11 +28940.0 + 21 +15994.0 + 31 +0.0 + 0 +INSERT + 5 +277B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +15625.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +277C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +15995.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +277D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28852.5 + 20 +15700.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28765.0 + 21 +15810.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +277E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26365.0 + 20 +15625.0 + 30 +0.0 + 0 +POINT + 5 +277F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26365.0 + 20 +15995.0 + 30 +0.0 + 0 +POINT + 5 +2780 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +15995.0 + 30 +0.0 + 0 +ENDBLK + 5 +2781 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D116 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D116 + 1 + + 0 +LINE + 5 +2783 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +15996.0 + 30 +0.0 + 11 +28940.0 + 21 +21744.0 + 31 +0.0 + 0 +INSERT + 5 +2784 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +15995.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2785 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +21745.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2786 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28852.5 + 20 +18673.125 + 30 +0.0 + 40 +175.0 + 1 +5.76 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28765.0 + 21 +18870.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2787 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26365.0 + 20 +15995.0 + 30 +0.0 + 0 +POINT + 5 +2788 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26370.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +2789 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +21745.0 + 30 +0.0 + 0 +ENDBLK + 5 +278A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D117 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D117 + 1 + + 0 +LINE + 5 +278C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +21746.0 + 30 +0.0 + 11 +28940.0 + 21 +22114.0 + 31 +0.0 + 0 +INSERT + 5 +278D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +21745.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +278E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +22115.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +278F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28852.5 + 20 +21820.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28765.0 + 21 +21930.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2790 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26370.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +2791 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26380.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +2792 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +22115.0 + 30 +0.0 + 0 +ENDBLK + 5 +2793 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D118 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D118 + 1 + + 0 +LINE + 5 +2795 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +29640.0 + 20 +9256.0 + 30 +0.0 + 11 +29640.0 + 21 +22114.0 + 31 +0.0 + 0 +INSERT + 5 +2796 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +29640.0 + 20 +9255.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2797 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +29640.0 + 20 +22115.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2798 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +29552.5 + 20 +15444.375 + 30 +0.0 + 40 +175.0 + 1 +12.86 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +29465.0 + 21 +15685.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2799 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26720.0 + 20 +9255.0 + 30 +0.0 + 0 +POINT + 5 +279A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26720.0 + 20 +22115.0 + 30 +0.0 + 0 +POINT + 5 +279B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +29640.0 + 20 +22115.0 + 30 +0.0 + 0 +ENDBLK + 5 +279C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D119 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D119 + 1 + + 0 +LINE + 5 +279E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +15624.0 + 30 +0.0 + 11 +24520.0 + 21 +15241.0 + 31 +0.0 + 0 +INSERT + 5 +279F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +15625.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +27A0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +15240.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +27A1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24432.5 + 20 +15334.0625 + 30 +0.0 + 40 +175.0 + 1 +40 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24345.0 + 21 +15432.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27A2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22975.0 + 20 +15625.0 + 30 +0.0 + 0 +POINT + 5 +27A3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22975.0 + 20 +15240.0 + 30 +0.0 + 0 +POINT + 5 +27A4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +15240.0 + 30 +0.0 + 0 +ENDBLK + 5 +27A5 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D120 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D120 + 1 + + 0 +LINE + 5 +27A7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +15239.0 + 30 +0.0 + 11 +24520.0 + 21 +14361.0 + 31 +0.0 + 0 +INSERT + 5 +27A8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +15240.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +27A9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +14360.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +27AA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24432.5 + 20 +14690.625 + 30 +0.0 + 40 +175.0 + 1 +88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24345.0 + 21 +14800.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27AB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22975.0 + 20 +15240.0 + 30 +0.0 + 0 +POINT + 5 +27AC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22960.0 + 20 +14360.0 + 30 +0.0 + 0 +POINT + 5 +27AD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +14360.0 + 30 +0.0 + 0 +ENDBLK + 5 +27AE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D121 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D121 + 1 + + 0 +LINE + 5 +27B0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +14359.0 + 30 +0.0 + 11 +24520.0 + 21 +9626.0 + 31 +0.0 + 0 +INSERT + 5 +27B1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +14360.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +27B2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +24520.0 + 20 +9625.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +27B3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24432.5 + 20 +11795.625 + 30 +0.0 + 40 +175.0 + 1 +4.72 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24345.0 + 21 +11992.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27B4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22960.0 + 20 +14360.0 + 30 +0.0 + 0 +POINT + 5 +27B5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24375.0 + 20 +9625.0 + 30 +0.0 + 0 +POINT + 5 +27B6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +24520.0 + 20 +9625.0 + 30 +0.0 + 0 +ENDBLK + 5 +27B7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D122 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D122 + 1 + + 0 +LINE + 5 +27B9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +17244.0 + 30 +0.0 + 11 +13890.0 + 21 +17243.0 + 31 +0.0 + 0 +LINE + 5 +27BA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +17376.0 + 30 +0.0 + 11 +13890.0 + 21 +17377.0 + 31 +0.0 + 0 +LINE + 5 +27BB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +17377.0 + 30 +0.0 + 11 +13890.0 + 21 +17552.0 + 31 +0.0 + 0 +INSERT + 5 +27BC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13890.0 + 20 +17245.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +27BD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13890.0 + 20 +17375.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +27BE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13802.5 + 20 +17377.0 + 30 +0.0 + 40 +175.0 + 1 +12 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13715.0 + 21 +17464.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27BF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14555.0 + 20 +17245.0 + 30 +0.0 + 0 +POINT + 5 +27C0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14555.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +27C1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +17375.0 + 30 +0.0 + 0 +ENDBLK + 5 +27C2 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D123 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D123 + 1 + + 0 +LINE + 5 +27C4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +17376.0 + 30 +0.0 + 11 +13890.0 + 21 +21749.0 + 31 +0.0 + 0 +INSERT + 5 +27C5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13890.0 + 20 +17375.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27C6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13890.0 + 20 +21750.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27C7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13802.5 + 20 +19365.625 + 30 +0.0 + 40 +175.0 + 1 +4.37 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13715.0 + 21 +19562.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27C8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14555.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +27C9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +27CA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13890.0 + 20 +21750.0 + 30 +0.0 + 0 +ENDBLK + 5 +27CB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D124 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D124 + 1 + + 0 +LINE + 5 +27CD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10725.0 + 20 +15486.0 + 30 +0.0 + 11 +10725.0 + 21 +15739.0 + 31 +0.0 + 0 +INSERT + 5 +27CE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10725.0 + 20 +15485.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27CF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10725.0 + 20 +15740.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27D0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10637.5 + 20 +15503.125 + 30 +0.0 + 40 +175.0 + 1 +25 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +10550.0 + 21 +15612.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27D1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10130.0 + 20 +15485.0 + 30 +0.0 + 0 +POINT + 5 +27D2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10130.0 + 20 +15740.0 + 30 +0.0 + 0 +POINT + 5 +27D3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10725.0 + 20 +15740.0 + 30 +0.0 + 0 +ENDBLK + 5 +27D4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D125 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D125 + 1 + + 0 +LINE + 5 +27D6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10725.0 + 20 +16626.0 + 30 +0.0 + 11 +10725.0 + 21 +17254.0 + 31 +0.0 + 0 +INSERT + 5 +27D7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10725.0 + 20 +16625.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27D8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10725.0 + 20 +17255.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27D9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10637.5 + 20 +16830.625 + 30 +0.0 + 40 +175.0 + 1 +62 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +10550.0 + 21 +16940.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27DA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10115.0 + 20 +16625.0 + 30 +0.0 + 0 +POINT + 5 +27DB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10715.0 + 20 +17255.0 + 30 +0.0 + 0 +POINT + 5 +27DC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10725.0 + 20 +17255.0 + 30 +0.0 + 0 +ENDBLK + 5 +27DD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D126 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D126 + 1 + + 0 +LINE + 5 +27DF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8415.0 + 20 +16491.0 + 30 +0.0 + 11 +8415.0 + 21 +16879.0 + 31 +0.0 + 0 +INSERT + 5 +27E0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8415.0 + 20 +16490.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27E1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8415.0 + 20 +16880.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27E2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8327.5 + 20 +16586.5625 + 30 +0.0 + 40 +175.0 + 1 +40 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8240.0 + 21 +16685.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27E3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +16490.0 + 30 +0.0 + 0 +POINT + 5 +27E4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8115.0 + 20 +16880.0 + 30 +0.0 + 0 +POINT + 5 +27E5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8415.0 + 20 +16880.0 + 30 +0.0 + 0 +ENDBLK + 5 +27E6 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D127 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D127 + 1 + + 0 +LINE + 5 +27E8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8415.0 + 20 +15586.0 + 30 +0.0 + 11 +8415.0 + 21 +16489.0 + 31 +0.0 + 0 +INSERT + 5 +27E9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8415.0 + 20 +15585.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27EA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8415.0 + 20 +16490.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27EB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8327.5 + 20 +15928.125 + 30 +0.0 + 40 +175.0 + 1 +88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8240.0 + 21 +16037.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27EC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +15585.0 + 30 +0.0 + 0 +POINT + 5 +27ED + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +16490.0 + 30 +0.0 + 0 +POINT + 5 +27EE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8415.0 + 20 +16490.0 + 30 +0.0 + 0 +ENDBLK + 5 +27EF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D128 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D128 + 1 + + 0 +LINE + 5 +27F1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8415.0 + 20 +14491.0 + 30 +0.0 + 11 +8415.0 + 21 +15584.0 + 31 +0.0 + 0 +INSERT + 5 +27F2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8415.0 + 20 +14490.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27F3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8415.0 + 20 +15585.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27F4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8327.5 + 20 +14895.3125 + 30 +0.0 + 40 +175.0 + 1 +1.10 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8240.0 + 21 +15037.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27F5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +14490.0 + 30 +0.0 + 0 +POINT + 5 +27F6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +15585.0 + 30 +0.0 + 0 +POINT + 5 +27F7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8415.0 + 20 +15585.0 + 30 +0.0 + 0 +ENDBLK + 5 +27F8 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D129 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D129 + 1 + + 0 +LINE + 5 +27FA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8405.0 + 20 +19981.0 + 30 +0.0 + 11 +8405.0 + 21 +20874.0 + 31 +0.0 + 0 +INSERT + 5 +27FB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8405.0 + 20 +19980.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +27FC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8405.0 + 20 +20875.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +27FD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8317.5 + 20 +20318.125 + 30 +0.0 + 40 +175.0 + 1 +88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8230.0 + 21 +20427.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +27FE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +19980.0 + 30 +0.0 + 0 +POINT + 5 +27FF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9755.0 + 20 +20875.0 + 30 +0.0 + 0 +POINT + 5 +2800 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8405.0 + 20 +20875.0 + 30 +0.0 + 0 +ENDBLK + 5 +2801 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D130 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D130 + 1 + + 0 +LINE + 5 +2803 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8405.0 + 20 +20876.0 + 30 +0.0 + 11 +8405.0 + 21 +21749.0 + 31 +0.0 + 0 +INSERT + 5 +2804 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8405.0 + 20 +20875.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2805 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8405.0 + 20 +21750.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2806 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8317.5 + 20 +21203.125 + 30 +0.0 + 40 +175.0 + 1 +87 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8230.0 + 21 +21312.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2807 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9755.0 + 20 +20875.0 + 30 +0.0 + 0 +POINT + 5 +2808 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9740.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2809 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8405.0 + 20 +21750.0 + 30 +0.0 + 0 +ENDBLK + 5 +280A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D131 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D131 + 1 + + 0 +LINE + 5 +280C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8405.0 + 20 +17266.0 + 30 +0.0 + 11 +8405.0 + 21 +19979.0 + 31 +0.0 + 0 +INSERT + 5 +280D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8405.0 + 20 +17265.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +280E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8405.0 + 20 +19980.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +280F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8317.5 + 20 +18031.875 + 30 +0.0 + 40 +175.0 + 1 + 2.75 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8230.0 + 21 +18622.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2810 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +17265.0 + 30 +0.0 + 0 +POINT + 5 +2811 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +19980.0 + 30 +0.0 + 0 +POINT + 5 +2812 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8405.0 + 20 +19980.0 + 30 +0.0 + 0 +ENDBLK + 5 +2813 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D132 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D132 + 1 + + 0 +LINE + 5 +2815 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15746.0 + 20 +16480.0 + 30 +0.0 + 11 +16374.0 + 21 +16480.0 + 31 +0.0 + 0 +INSERT + 5 +2816 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15745.0 + 20 +16480.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2817 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16375.0 + 20 +16480.0 + 30 +0.0 + 0 +TEXT + 5 +2818 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15972.5 + 20 +16567.5 + 30 +0.0 + 40 +175.0 + 1 +61 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16060.0 + 21 +16655.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2819 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15745.0 + 20 +15815.0 + 30 +0.0 + 0 +POINT + 5 +281A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16375.0 + 20 +15815.0 + 30 +0.0 + 0 +POINT + 5 +281B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16375.0 + 20 +16480.0 + 30 +0.0 + 0 +ENDBLK + 5 +281C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D133 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D133 + 1 + + 0 +LINE + 5 +281E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17386.0 + 20 +16480.0 + 30 +0.0 + 11 +17634.0 + 21 +16480.0 + 31 +0.0 + 0 +INSERT + 5 +281F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17385.0 + 20 +16480.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2820 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17635.0 + 20 +16480.0 + 30 +0.0 + 0 +TEXT + 5 +2821 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17400.625 + 20 +16567.5 + 30 +0.0 + 40 +175.0 + 1 +25 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +17510.0 + 21 +16655.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2822 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17385.0 + 20 +15975.0 + 30 +0.0 + 0 +POINT + 5 +2823 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17635.0 + 20 +16015.0 + 30 +0.0 + 0 +POINT + 5 +2824 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17635.0 + 20 +16480.0 + 30 +0.0 + 0 +ENDBLK + 5 +2825 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D134 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D134 + 1 + + 0 +LINE + 5 +2827 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16376.0 + 20 +16480.0 + 30 +0.0 + 11 +17384.0 + 21 +16480.0 + 31 +0.0 + 0 +INSERT + 5 +2828 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16375.0 + 20 +16480.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2829 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17385.0 + 20 +16480.0 + 30 +0.0 + 0 +TEXT + 5 +282A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16737.8125 + 20 +16567.5 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16880.0 + 21 +16655.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +282B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16375.0 + 20 +15815.0 + 30 +0.0 + 0 +POINT + 5 +282C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17385.0 + 20 +15975.0 + 30 +0.0 + 0 +POINT + 5 +282D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17385.0 + 20 +16480.0 + 30 +0.0 + 0 +ENDBLK + 5 +282E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D135 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D135 + 1 + + 0 +LINE + 5 +2830 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10725.0 + 20 +15741.0 + 30 +0.0 + 11 +10725.0 + 21 +16624.0 + 31 +0.0 + 0 +INSERT + 5 +2831 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10725.0 + 20 +15740.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2832 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10725.0 + 20 +16625.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2833 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10637.5 + 20 +15870.625 + 30 +0.0 + 40 +175.0 + 1 +88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +10550.0 + 21 +15980.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2834 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10130.0 + 20 +15740.0 + 30 +0.0 + 0 +POINT + 5 +2835 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10115.0 + 20 +16625.0 + 30 +0.0 + 0 +POINT + 5 +2836 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10725.0 + 20 +16625.0 + 30 +0.0 + 0 +ENDBLK + 5 +2837 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D136 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D136 + 1 + + 0 +LINE + 5 +2839 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10106.0 + 20 +16480.0 + 30 +0.0 + 11 +15744.0 + 21 +16480.0 + 31 +0.0 + 0 +INSERT + 5 +283A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10105.0 + 20 +16480.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +283B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15745.0 + 20 +16480.0 + 30 +0.0 + 0 +TEXT + 5 +283C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12728.125 + 20 +16567.5 + 30 +0.0 + 40 +175.0 + 1 +5.63 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +12925.0 + 21 +16655.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +283D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10105.0 + 20 +15495.0 + 30 +0.0 + 0 +POINT + 5 +283E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15745.0 + 20 +15495.0 + 30 +0.0 + 0 +POINT + 5 +283F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15745.0 + 20 +16480.0 + 30 +0.0 + 0 +ENDBLK + 5 +2840 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D137 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D137 + 1 + + 0 +LINE + 5 +2842 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18650.0 + 20 +21744.0 + 30 +0.0 + 11 +18650.0 + 21 +18981.0 + 31 +0.0 + 0 +INSERT + 5 +2843 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18650.0 + 20 +21745.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2844 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18650.0 + 20 +18980.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2845 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18562.5 + 20 +20165.625 + 30 +0.0 + 40 +175.0 + 1 +2.76 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +18475.0 + 21 +20362.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2846 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17990.0 + 20 +21745.0 + 30 +0.0 + 0 +POINT + 5 +2847 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17990.0 + 20 +18980.0 + 30 +0.0 + 0 +POINT + 5 +2848 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18650.0 + 20 +18980.0 + 30 +0.0 + 0 +ENDBLK + 5 +2849 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D138 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D138 + 1 + + 0 +LINE + 5 +284B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18650.0 + 20 +18979.0 + 30 +0.0 + 11 +18650.0 + 21 +17491.0 + 31 +0.0 + 0 +INSERT + 5 +284C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18650.0 + 20 +18980.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +284D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18650.0 + 20 +17490.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +284E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18562.5 + 20 +18060.0 + 30 +0.0 + 40 +175.0 + 1 +1.49 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +18475.0 + 21 +18235.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +284F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17990.0 + 20 +18980.0 + 30 +0.0 + 0 +POINT + 5 +2850 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17990.0 + 20 +17490.0 + 30 +0.0 + 0 +POINT + 5 +2851 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18650.0 + 20 +17490.0 + 30 +0.0 + 0 +ENDBLK + 5 +2852 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D139 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D139 + 1 + + 0 +LINE + 5 +2854 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15486.0 + 30 +0.0 + 11 +15005.0 + 21 +15994.0 + 31 +0.0 + 0 +INSERT + 5 +2855 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15005.0 + 20 +15485.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2856 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15005.0 + 20 +15995.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2857 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14917.5 + 20 +15641.5625 + 30 +0.0 + 40 +175.0 + 1 +50 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14830.0 + 21 +15740.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2858 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15485.0 + 30 +0.0 + 0 +POINT + 5 +2859 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15995.0 + 30 +0.0 + 0 +POINT + 5 +285A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15995.0 + 30 +0.0 + 0 +ENDBLK + 5 +285B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D140 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D140 + 1 + + 0 +LINE + 5 +285D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15996.0 + 30 +0.0 + 11 +15005.0 + 21 +17249.0 + 31 +0.0 + 0 +INSERT + 5 +285E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15005.0 + 20 +15995.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +285F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15005.0 + 20 +17250.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2860 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14917.5 + 20 +16580.0 + 30 +0.0 + 40 +175.0 + 1 +1.26 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14830.0 + 21 +16755.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2861 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15995.0 + 30 +0.0 + 0 +POINT + 5 +2862 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15010.0 + 20 +17250.0 + 30 +0.0 + 0 +POINT + 5 +2863 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +17250.0 + 30 +0.0 + 0 +ENDBLK + 5 +2864 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D141 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D141 + 1 + + 0 +LINE + 5 +2866 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +9611.0 + 30 +0.0 + 11 +8745.0 + 21 +12739.0 + 31 +0.0 + 0 +INSERT + 5 +2867 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +9610.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2868 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +12740.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2869 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8657.5 + 20 +11000.0 + 30 +0.0 + 40 +175.0 + 1 +3.12 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8570.0 + 21 +11175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +286A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9010.0 + 20 +9610.0 + 30 +0.0 + 0 +POINT + 5 +286B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9010.0 + 20 +12740.0 + 30 +0.0 + 0 +POINT + 5 +286C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +12740.0 + 30 +0.0 + 0 +ENDBLK + 5 +286D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D142 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D142 + 1 + + 0 +LINE + 5 +286F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +12741.0 + 30 +0.0 + 11 +8745.0 + 21 +12994.0 + 31 +0.0 + 0 +INSERT + 5 +2870 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +12740.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2871 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +12995.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2872 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8657.5 + 20 +12758.125 + 30 +0.0 + 40 +175.0 + 1 +25 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8570.0 + 21 +12867.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2873 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9010.0 + 20 +12740.0 + 30 +0.0 + 0 +POINT + 5 +2874 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9745.0 + 20 +12995.0 + 30 +0.0 + 0 +POINT + 5 +2875 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +12995.0 + 30 +0.0 + 0 +ENDBLK + 5 +2876 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D143 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D143 + 1 + + 0 +LINE + 5 +2878 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +12996.0 + 30 +0.0 + 11 +8745.0 + 21 +13874.0 + 31 +0.0 + 0 +INSERT + 5 +2879 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +12995.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +287A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +13875.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +287B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8657.5 + 20 +13325.625 + 30 +0.0 + 40 +175.0 + 1 +88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8570.0 + 21 +13435.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +287C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9745.0 + 20 +12995.0 + 30 +0.0 + 0 +POINT + 5 +287D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9755.0 + 20 +13875.0 + 30 +0.0 + 0 +POINT + 5 +287E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +13875.0 + 30 +0.0 + 0 +ENDBLK + 5 +287F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D144 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D144 + 1 + + 0 +LINE + 5 +2881 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +13876.0 + 30 +0.0 + 11 +8745.0 + 21 +14129.0 + 31 +0.0 + 0 +INSERT + 5 +2882 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +13875.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2883 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8745.0 + 20 +14130.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2884 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8657.5 + 20 +13893.125 + 30 +0.0 + 40 +175.0 + 1 +25 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8570.0 + 21 +14002.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2885 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9755.0 + 20 +13875.0 + 30 +0.0 + 0 +POINT + 5 +2886 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9735.0 + 20 +14130.0 + 30 +0.0 + 0 +POINT + 5 +2887 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8745.0 + 20 +14130.0 + 30 +0.0 + 0 +ENDBLK + 5 +2888 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D145 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D145 + 1 + + 0 +LINE + 5 +288A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9371.0 + 20 +13450.0 + 30 +0.0 + 11 +9744.0 + 21 +13450.0 + 31 +0.0 + 0 +INSERT + 5 +288B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9370.0 + 20 +13450.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +288C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9745.0 + 20 +13450.0 + 30 +0.0 + 0 +TEXT + 5 +288D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9448.125 + 20 +13537.5 + 30 +0.0 + 40 +175.0 + 1 +37 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +9557.5 + 21 +13625.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +288E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9370.0 + 20 +12745.0 + 30 +0.0 + 0 +POINT + 5 +288F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9745.0 + 20 +12745.0 + 30 +0.0 + 0 +POINT + 5 +2890 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9745.0 + 20 +13450.0 + 30 +0.0 + 0 +ENDBLK + 5 +2891 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D146 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D146 + 1 + + 0 +LINE + 5 +2893 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12616.0 + 20 +11975.0 + 30 +0.0 + 11 +13247.5 + 21 +11975.0 + 31 +0.0 + 0 +LINE + 5 +2894 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13879.0 + 20 +11975.0 + 30 +0.0 + 11 +13247.5 + 21 +11975.0 + 31 +0.0 + 0 +INSERT + 5 +2895 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +12615.0 + 20 +11975.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2896 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13880.0 + 20 +11975.0 + 30 +0.0 + 0 +TEXT + 5 +2897 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12850.0 + 20 +12062.5 + 30 +0.0 + 40 +175.0 + 1 +1.26 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13025.0 + 21 +12150.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2898 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +12615.0 + 20 +12370.0 + 30 +0.0 + 0 +POINT + 5 +2899 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13880.0 + 20 +11955.0 + 30 +0.0 + 0 +POINT + 5 +289A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13880.0 + 20 +11975.0 + 30 +0.0 + 0 +ENDBLK + 5 +289B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D147 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D147 + 1 + + 0 +LINE + 5 +289D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +9611.0 + 30 +0.0 + 11 +13590.0 + 21 +12374.0 + 31 +0.0 + 0 +INSERT + 5 +289E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +9610.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +289F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +12375.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +28A0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13502.5 + 20 +10795.625 + 30 +0.0 + 40 +175.0 + 1 +2.76 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13415.0 + 21 +10992.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28A1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13775.0 + 20 +9610.0 + 30 +0.0 + 0 +POINT + 5 +28A2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13775.0 + 20 +12375.0 + 30 +0.0 + 0 +POINT + 5 +28A3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12375.0 + 30 +0.0 + 0 +ENDBLK + 5 +28A4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D148 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D148 + 1 + + 0 +LINE + 5 +28A6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12376.0 + 30 +0.0 + 11 +13590.0 + 21 +12744.0 + 31 +0.0 + 0 +INSERT + 5 +28A7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +12375.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +28A8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +12745.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +28A9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13502.5 + 20 +12450.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13415.0 + 21 +12560.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28AA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13775.0 + 20 +12375.0 + 30 +0.0 + 0 +POINT + 5 +28AB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13875.0 + 20 +12745.0 + 30 +0.0 + 0 +POINT + 5 +28AC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12745.0 + 30 +0.0 + 0 +ENDBLK + 5 +28AD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D149 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D149 + 1 + + 0 +LINE + 5 +28AF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12746.0 + 30 +0.0 + 11 +13590.0 + 21 +13499.0 + 31 +0.0 + 0 +INSERT + 5 +28B0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +12745.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +28B1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +13500.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +28B2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13502.5 + 20 +13013.125 + 30 +0.0 + 40 +175.0 + 1 +76 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13415.0 + 21 +13122.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28B3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13880.0 + 20 +12745.0 + 30 +0.0 + 0 +POINT + 5 +28B4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13880.0 + 20 +13500.0 + 30 +0.0 + 0 +POINT + 5 +28B5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +13500.0 + 30 +0.0 + 0 +ENDBLK + 5 +28B6 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D150 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D150 + 1 + + 0 +LINE + 5 +28B8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +13501.0 + 30 +0.0 + 11 +13590.0 + 21 +13869.0 + 31 +0.0 + 0 +INSERT + 5 +28B9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +13500.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +28BA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13590.0 + 20 +13870.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +28BB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13502.5 + 20 +13575.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13415.0 + 21 +13685.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28BC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13880.0 + 20 +13500.0 + 30 +0.0 + 0 +POINT + 5 +28BD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14125.0 + 20 +13870.0 + 30 +0.0 + 0 +POINT + 5 +28BE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +13870.0 + 30 +0.0 + 0 +ENDBLK + 5 +28BF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D151 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D151 + 1 + + 0 +LINE + 5 +28C1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14484.0 + 20 +11975.0 + 30 +0.0 + 11 +14483.0 + 21 +11975.0 + 31 +0.0 + 0 +LINE + 5 +28C2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14621.0 + 20 +11975.0 + 30 +0.0 + 11 +14622.0 + 21 +11975.0 + 31 +0.0 + 0 +LINE + 5 +28C3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14622.0 + 20 +11975.0 + 30 +0.0 + 11 +14797.0 + 21 +11975.0 + 31 +0.0 + 0 +INSERT + 5 +28C4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14485.0 + 20 +11975.0 + 30 +0.0 + 0 +INSERT + 5 +28C5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14620.0 + 20 +11975.0 + 30 +0.0 + 50 +180.0 + 0 +TEXT + 5 +28C6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14622.0 + 20 +12062.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14709.5 + 21 +12150.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28C7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14485.0 + 20 +13495.0 + 30 +0.0 + 0 +POINT + 5 +28C8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14620.0 + 20 +13495.0 + 30 +0.0 + 0 +POINT + 5 +28C9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14620.0 + 20 +11975.0 + 30 +0.0 + 0 +ENDBLK + 5 +28CA + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D152 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D152 + 1 + + 0 +LINE + 5 +28CC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15506.0 + 20 +11975.0 + 30 +0.0 + 11 +17619.0 + 21 +11975.0 + 31 +0.0 + 0 +INSERT + 5 +28CD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15505.0 + 20 +11975.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +28CE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17620.0 + 20 +11975.0 + 30 +0.0 + 0 +TEXT + 5 +28CF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16387.5 + 20 +12062.5 + 30 +0.0 + 40 +175.0 + 1 +2.12 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16562.5 + 21 +12150.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28D0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15505.0 + 20 +11975.0 + 30 +0.0 + 0 +POINT + 5 +28D1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17620.0 + 20 +11975.0 + 30 +0.0 + 0 +POINT + 5 +28D2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17620.0 + 20 +11975.0 + 30 +0.0 + 0 +ENDBLK + 5 +28D3 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D153 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D153 + 1 + + 0 +LINE + 5 +28D5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16955.0 + 20 +9626.0 + 30 +0.0 + 11 +16955.0 + 21 +13499.0 + 31 +0.0 + 0 +INSERT + 5 +28D6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16955.0 + 20 +9625.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +28D7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16955.0 + 20 +13500.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +28D8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16867.5 + 20 +10923.125 + 30 +0.0 + 40 +175.0 + 1 +3.88 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16780.0 + 21 +11120.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28D9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17360.0 + 20 +9625.0 + 30 +0.0 + 0 +POINT + 5 +28DA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17360.0 + 20 +13500.0 + 30 +0.0 + 0 +POINT + 5 +28DB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16955.0 + 20 +13500.0 + 30 +0.0 + 0 +ENDBLK + 5 +28DC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D154 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D154 + 1 + + 0 +LINE + 5 +28DE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +15634.0 + 30 +0.0 + 11 +16850.0 + 21 +15491.0 + 31 +0.0 + 0 +INSERT + 5 +28DF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +15635.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +28E0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +15490.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +28E1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16762.5 + 20 +15667.5 + 30 +0.0 + 40 +175.0 + 1 +13 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16675.0 + 21 +15755.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28E2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16120.0 + 20 +15635.0 + 30 +0.0 + 0 +POINT + 5 +28E3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16120.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +28E4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +15490.0 + 30 +0.0 + 0 +ENDBLK + 5 +28E5 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D155 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D155 + 1 + + 0 +LINE + 5 +28E7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +13974.0 + 30 +0.0 + 11 +16850.0 + 21 +13866.0 + 31 +0.0 + 0 +INSERT + 5 +28E8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +13975.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +28E9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +13865.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +28EA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16762.5 + 20 +14012.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16675.0 + 21 +14100.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28EB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16125.0 + 20 +13975.0 + 30 +0.0 + 0 +POINT + 5 +28EC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16120.0 + 20 +13865.0 + 30 +0.0 + 0 +POINT + 5 +28ED + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +13865.0 + 30 +0.0 + 0 +ENDBLK + 5 +28EE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D156 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D156 + 1 + + 0 +LINE + 5 +28F0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15746.0 + 20 +14495.0 + 30 +0.0 + 11 +16104.0 + 21 +14495.0 + 31 +0.0 + 0 +INSERT + 5 +28F1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15745.0 + 20 +14495.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +28F2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16105.0 + 20 +14495.0 + 30 +0.0 + 0 +TEXT + 5 +28F3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15815.625 + 20 +14582.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +15925.0 + 21 +14670.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28F4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15745.0 + 20 +13980.0 + 30 +0.0 + 0 +POINT + 5 +28F5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16105.0 + 20 +13980.0 + 30 +0.0 + 0 +POINT + 5 +28F6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16105.0 + 20 +14495.0 + 30 +0.0 + 0 +ENDBLK + 5 +28F7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D157 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D157 + 1 + + 0 +LINE + 5 +28F9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +13914.0 + 30 +0.0 + 11 +21880.0 + 21 +9626.0 + 31 +0.0 + 0 +INSERT + 5 +28FA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +13915.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +28FB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +9625.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +28FC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21792.5 + 20 +11584.0625 + 30 +0.0 + 40 +175.0 + 1 +4.30 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21705.0 + 21 +11770.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +28FD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21565.0 + 20 +13915.0 + 30 +0.0 + 0 +POINT + 5 +28FE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21855.0 + 20 +9625.0 + 30 +0.0 + 0 +POINT + 5 +28FF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +9625.0 + 30 +0.0 + 0 +ENDBLK + 5 +2900 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D158 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D158 + 1 + + 0 +LINE + 5 +2902 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +14044.0 + 30 +0.0 + 11 +21880.0 + 21 +13916.0 + 31 +0.0 + 0 +INSERT + 5 +2903 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +14045.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2904 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +13915.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2905 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21792.5 + 20 +13627.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21705.0 + 21 +13715.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2906 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21560.0 + 20 +14045.0 + 30 +0.0 + 0 +POINT + 5 +2907 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21565.0 + 20 +13915.0 + 30 +0.0 + 0 +POINT + 5 +2908 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +13915.0 + 30 +0.0 + 0 +ENDBLK + 5 +2909 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D159 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D159 + 1 + + 0 +LINE + 5 +290B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +15249.0 + 30 +0.0 + 11 +21880.0 + 21 +14246.0 + 31 +0.0 + 0 +INSERT + 5 +290C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +15250.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +290D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +14245.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +290E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21792.5 + 20 +14772.8125 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21705.0 + 21 +14915.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +290F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21235.0 + 20 +15250.0 + 30 +0.0 + 0 +POINT + 5 +2910 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21225.0 + 20 +14245.0 + 30 +0.0 + 0 +POINT + 5 +2911 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +14245.0 + 30 +0.0 + 0 +ENDBLK + 5 +2912 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D160 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D160 + 1 + + 0 +LINE + 5 +2914 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +14244.0 + 30 +0.0 + 11 +21880.0 + 21 +14046.0 + 31 +0.0 + 0 +INSERT + 5 +2915 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +14245.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2916 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +14045.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2917 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21792.5 + 20 +14291.5625 + 30 +0.0 + 40 +175.0 + 1 +20 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21705.0 + 21 +14390.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2918 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21225.0 + 20 +14245.0 + 30 +0.0 + 0 +POINT + 5 +2919 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21560.0 + 20 +14045.0 + 30 +0.0 + 0 +POINT + 5 +291A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +14045.0 + 30 +0.0 + 0 +ENDBLK + 5 +291B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D161 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D161 + 1 + + 0 +LINE + 5 +291D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +15634.0 + 30 +0.0 + 11 +21880.0 + 21 +15251.0 + 31 +0.0 + 0 +INSERT + 5 +291E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +15635.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +291F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21880.0 + 20 +15250.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2920 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21792.5 + 20 +15280.625 + 30 +0.0 + 40 +175.0 + 1 +37 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21705.0 + 21 +15390.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2921 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21235.0 + 20 +15635.0 + 30 +0.0 + 0 +POINT + 5 +2922 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21235.0 + 20 +15250.0 + 30 +0.0 + 0 +POINT + 5 +2923 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21880.0 + 20 +15250.0 + 30 +0.0 + 0 +ENDBLK + 5 +2924 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D162 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D162 + 1 + + 0 +LINE + 5 +2926 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22456.0 + 20 +12880.0 + 30 +0.0 + 11 +22849.0 + 21 +12880.0 + 31 +0.0 + 0 +INSERT + 5 +2927 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22455.0 + 20 +12880.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2928 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22850.0 + 20 +12880.0 + 30 +0.0 + 0 +TEXT + 5 +2929 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22554.0625 + 20 +12967.5 + 30 +0.0 + 40 +175.0 + 1 +40 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +22652.5 + 21 +13055.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +292A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22455.0 + 20 +13925.0 + 30 +0.0 + 0 +POINT + 5 +292B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22850.0 + 20 +12875.0 + 30 +0.0 + 0 +POINT + 5 +292C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22850.0 + 20 +12880.0 + 30 +0.0 + 0 +ENDBLK + 5 +292D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D163 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D163 + 1 + + 0 +LINE + 5 +292F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21566.0 + 20 +12880.0 + 30 +0.0 + 11 +22454.0 + 21 +12880.0 + 31 +0.0 + 0 +INSERT + 5 +2930 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21565.0 + 20 +12880.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2931 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22455.0 + 20 +12880.0 + 30 +0.0 + 0 +TEXT + 5 +2932 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22030.625 + 20 +12967.5 + 30 +0.0 + 40 +175.0 + 1 +88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +22140.0 + 21 +13055.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2933 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21565.0 + 20 +13920.0 + 30 +0.0 + 0 +POINT + 5 +2934 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22455.0 + 20 +13925.0 + 30 +0.0 + 0 +POINT + 5 +2935 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22455.0 + 20 +12880.0 + 30 +0.0 + 0 +ENDBLK + 5 +2936 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D164 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D164 + 1 + + 0 +LINE + 5 +2938 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21236.0 + 20 +12880.0 + 30 +0.0 + 11 +21564.0 + 21 +12880.0 + 31 +0.0 + 0 +INSERT + 5 +2939 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21235.0 + 20 +12880.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +293A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21565.0 + 20 +12880.0 + 30 +0.0 + 0 +TEXT + 5 +293B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21270.625 + 20 +12967.5 + 30 +0.0 + 40 +175.0 + 1 +32 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21380.0 + 21 +13055.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +293C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21235.0 + 20 +13920.0 + 30 +0.0 + 0 +POINT + 5 +293D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21565.0 + 20 +13920.0 + 30 +0.0 + 0 +POINT + 5 +293E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21565.0 + 20 +12880.0 + 30 +0.0 + 0 +ENDBLK + 5 +293F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D165 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D165 + 1 + + 0 +LINE + 5 +2941 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14621.0 + 20 +11975.0 + 30 +0.0 + 11 +15062.5 + 21 +11975.0 + 31 +0.0 + 0 +LINE + 5 +2942 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15504.0 + 20 +11975.0 + 30 +0.0 + 11 +15062.5 + 21 +11975.0 + 31 +0.0 + 0 +INSERT + 5 +2943 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14620.0 + 20 +11975.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2944 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15505.0 + 20 +11975.0 + 30 +0.0 + 0 +TEXT + 5 +2945 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15030.625 + 20 +12062.5 + 30 +0.0 + 40 +175.0 + 1 +88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +15140.0 + 21 +12150.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2946 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14620.0 + 20 +13495.0 + 30 +0.0 + 0 +POINT + 5 +2947 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15505.0 + 20 +11975.0 + 30 +0.0 + 0 +POINT + 5 +2948 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15505.0 + 20 +11975.0 + 30 +0.0 + 0 +ENDBLK + 5 +2949 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D166 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D166 + 1 + + 0 +LINE + 5 +294B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +15119.0 + 30 +0.0 + 11 +16850.0 + 21 +14996.0 + 31 +0.0 + 0 +INSERT + 5 +294C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +15120.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +294D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +14995.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +294E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16762.5 + 20 +15147.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16675.0 + 21 +15235.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +294F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15740.0 + 20 +15120.0 + 30 +0.0 + 0 +POINT + 5 +2950 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16110.0 + 20 +14995.0 + 30 +0.0 + 0 +POINT + 5 +2951 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +14995.0 + 30 +0.0 + 0 +ENDBLK + 5 +2952 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D167 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D167 + 1 + + 0 +LINE + 5 +2954 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +14994.0 + 30 +0.0 + 11 +16850.0 + 21 +13976.0 + 31 +0.0 + 0 +INSERT + 5 +2955 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +14995.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2956 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16850.0 + 20 +13975.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2957 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16762.5 + 20 +14452.8125 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16675.0 + 21 +14595.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2958 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16110.0 + 20 +14995.0 + 30 +0.0 + 0 +POINT + 5 +2959 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16125.0 + 20 +13975.0 + 30 +0.0 + 0 +POINT + 5 +295A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16850.0 + 20 +13975.0 + 30 +0.0 + 0 +ENDBLK + 5 +295B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D168 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D168 + 1 + + 0 +LINE + 5 +295D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15484.0 + 30 +0.0 + 11 +15005.0 + 21 +15116.0 + 31 +0.0 + 0 +INSERT + 5 +295E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15005.0 + 20 +15485.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +295F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15005.0 + 20 +15115.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2960 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14902.5 + 20 +14765.625 + 30 +0.0 + 40 +175.0 + 1 +36 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14815.0 + 21 +14875.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2961 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15485.0 + 30 +0.0 + 0 +POINT + 5 +2962 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15115.0 + 30 +0.0 + 0 +POINT + 5 +2963 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15005.0 + 20 +15115.0 + 30 +0.0 + 0 +ENDBLK + 5 +2964 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D169 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D169 + 1 + + 0 +LINE + 5 +2966 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5001.0 + 20 +6000.0 + 30 +0.0 + 11 +7734.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +2967 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5000.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2968 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7735.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +2969 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6170.625 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +2.74 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +6367.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +296A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +296B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7735.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +296C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7735.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +296D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D170 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D170 + 1 + + 0 +LINE + 5 +296F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7736.0 + 20 +6000.0 + 30 +0.0 + 11 +8749.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +2970 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7735.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2971 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8750.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +2972 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8100.3125 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.01 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +8242.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2973 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7735.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +2974 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8750.0 + 20 +9275.0 + 30 +0.0 + 0 +POINT + 5 +2975 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8750.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +2976 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D171 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D171 + 1 + + 0 +LINE + 5 +2978 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8751.0 + 20 +6000.0 + 30 +0.0 + 11 +9864.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +2979 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8750.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +297A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9865.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +297B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9176.25 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.11 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +9307.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +297C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8750.0 + 20 +9275.0 + 30 +0.0 + 0 +POINT + 5 +297D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9865.0 + 20 +9460.0 + 30 +0.0 + 0 +POINT + 5 +297E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9865.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +297F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D172 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D172 + 1 + + 0 +LINE + 5 +2981 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9866.0 + 20 +6000.0 + 30 +0.0 + 11 +11239.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +2982 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9865.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2983 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11240.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +2984 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10377.5 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.38 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +10552.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2985 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9865.0 + 20 +9460.0 + 30 +0.0 + 0 +POINT + 5 +2986 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11240.0 + 20 +9435.0 + 30 +0.0 + 0 +POINT + 5 +2987 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11240.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +2988 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D173 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D173 + 1 + + 0 +LINE + 5 +298A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11241.0 + 20 +6000.0 + 30 +0.0 + 11 +16109.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +298B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11240.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +298C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16110.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +298D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13478.125 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +4.86 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +13675.0 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +298E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11240.0 + 20 +9435.0 + 30 +0.0 + 0 +POINT + 5 +298F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16110.0 + 20 +9380.0 + 30 +0.0 + 0 +POINT + 5 +2990 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16110.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +2991 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D174 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D174 + 1 + + 0 +LINE + 5 +2993 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16111.0 + 20 +6000.0 + 30 +0.0 + 11 +17369.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +2994 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16110.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2995 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17370.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +2996 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16565.0 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.26 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16740.0 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2997 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16110.0 + 20 +9380.0 + 30 +0.0 + 0 +POINT + 5 +2998 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17370.0 + 20 +9460.0 + 30 +0.0 + 0 +POINT + 5 +2999 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17370.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +299A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D175 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D175 + 1 + + 0 +LINE + 5 +299C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17371.0 + 20 +6000.0 + 30 +0.0 + 11 +18494.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +299D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17370.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +299E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18495.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +299F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17801.25 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.11 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +17932.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29A0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17370.0 + 20 +9460.0 + 30 +0.0 + 0 +POINT + 5 +29A1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18495.0 + 20 +9420.0 + 30 +0.0 + 0 +POINT + 5 +29A2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18495.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29A3 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D176 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D176 + 1 + + 0 +LINE + 5 +29A5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18496.0 + 20 +6000.0 + 30 +0.0 + 11 +20369.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +29A6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18495.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29A7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +20370.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +29A8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +19257.5 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +19432.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29A9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18495.0 + 20 +9420.0 + 30 +0.0 + 0 +POINT + 5 +29AA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +20370.0 + 20 +9390.0 + 30 +0.0 + 0 +POINT + 5 +29AB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +20370.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29AC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D177 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D177 + 1 + + 0 +LINE + 5 +29AE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +20371.0 + 20 +6000.0 + 30 +0.0 + 11 +21369.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +29AF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +20370.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29B0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21370.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +29B1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +20760.625 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +99 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +20870.0 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29B2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +20370.0 + 20 +9390.0 + 30 +0.0 + 0 +POINT + 5 +29B3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21370.0 + 20 +9355.0 + 30 +0.0 + 0 +POINT + 5 +29B4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21370.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29B5 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D178 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D178 + 1 + + 0 +LINE + 5 +29B7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21371.0 + 20 +6000.0 + 30 +0.0 + 11 +21869.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +29B8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21370.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29B9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21870.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +29BA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21532.5 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +51 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21620.0 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29BB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21370.0 + 20 +9355.0 + 30 +0.0 + 0 +POINT + 5 +29BC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21870.0 + 20 +9360.0 + 30 +0.0 + 0 +POINT + 5 +29BD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21870.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29BE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D179 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D179 + 1 + + 0 +LINE + 5 +29C0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21871.0 + 20 +6000.0 + 30 +0.0 + 11 +23239.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +29C1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21870.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29C2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +23240.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +29C3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22380.0 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +22555.0 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29C4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21870.0 + 20 +9360.0 + 30 +0.0 + 0 +POINT + 5 +29C5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23240.0 + 20 +9370.0 + 30 +0.0 + 0 +POINT + 5 +29C6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23240.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29C7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D180 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D180 + 1 + + 0 +LINE + 5 +29C9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +23241.0 + 20 +6000.0 + 30 +0.0 + 11 +25374.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +29CA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +23240.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29CB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +25375.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +29CC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24132.5 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +2.13 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24307.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29CD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23240.0 + 20 +9370.0 + 30 +0.0 + 0 +POINT + 5 +29CE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +25375.0 + 20 +9440.0 + 30 +0.0 + 0 +POINT + 5 +29CF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +25375.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29D0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D181 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D181 + 1 + + 0 +LINE + 5 +29D2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +25376.0 + 20 +6000.0 + 30 +0.0 + 11 +26739.0 + 21 +6000.0 + 31 +0.0 + 0 +INSERT + 5 +29D3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +25375.0 + 20 +6000.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29D4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26740.0 + 20 +6000.0 + 30 +0.0 + 0 +TEXT + 5 +29D5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +25882.5 + 20 +6087.5 + 30 +0.0 + 40 +175.0 + 1 +1.36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +26057.5 + 21 +6175.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29D6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +25375.0 + 20 +9440.0 + 30 +0.0 + 0 +POINT + 5 +29D7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +9330.0 + 30 +0.0 + 0 +POINT + 5 +29D8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +6000.0 + 30 +0.0 + 0 +ENDBLK + 5 +29D9 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D182 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D182 + 1 + + 0 +LINE + 5 +29DB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5001.0 + 20 +5300.0 + 30 +0.0 + 11 +5364.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +29DC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5000.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29DD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5365.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +29DE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5073.125 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +5182.5 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29DF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +29E0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +29E1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +29E2 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D183 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D183 + 1 + + 0 +LINE + 5 +29E4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5366.0 + 20 +5300.0 + 30 +0.0 + 11 +9374.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +29E5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5365.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29E6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9375.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +29E7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7205.9375 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +4.01 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +7370.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29E8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5365.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +29E9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9375.0 + 20 +9645.0 + 30 +0.0 + 0 +POINT + 5 +29EA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9375.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +29EB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D184 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D184 + 1 + + 0 +LINE + 5 +29ED + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9751.0 + 20 +5300.0 + 30 +0.0 + 11 +14124.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +29EE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9750.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29EF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14125.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +29F0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11740.625 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +4.38 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +11937.5 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29F1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +9635.0 + 30 +0.0 + 0 +POINT + 5 +29F2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14125.0 + 20 +9650.0 + 30 +0.0 + 0 +POINT + 5 +29F3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14125.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +29F4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D185 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D185 + 1 + + 0 +LINE + 5 +29F6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14126.0 + 20 +5300.0 + 30 +0.0 + 11 +14499.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +29F7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14125.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +29F8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14500.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +29F9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14203.125 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14312.5 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +29FA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14125.0 + 20 +9650.0 + 30 +0.0 + 0 +POINT + 5 +29FB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14500.0 + 20 +9660.0 + 30 +0.0 + 0 +POINT + 5 +29FC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14500.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +29FD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D186 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D186 + 1 + + 0 +LINE + 5 +29FF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14501.0 + 20 +5300.0 + 30 +0.0 + 11 +17629.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A00 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14500.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A01 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17630.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A02 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15890.0 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +3.13 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +16065.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A03 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14500.0 + 20 +9660.0 + 30 +0.0 + 0 +POINT + 5 +2A04 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17630.0 + 20 +9660.0 + 30 +0.0 + 0 +POINT + 5 +2A05 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17630.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A06 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D187 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D187 + 1 + + 0 +LINE + 5 +2A08 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17631.0 + 20 +5300.0 + 30 +0.0 + 11 +17999.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A09 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17630.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A0A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18000.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A0B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17705.625 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +17815.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A0C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17630.0 + 20 +9660.0 + 30 +0.0 + 0 +POINT + 5 +2A0D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18000.0 + 20 +9630.0 + 30 +0.0 + 0 +POINT + 5 +2A0E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18000.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A0F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D188 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D188 + 1 + + 0 +LINE + 5 +2A11 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18001.0 + 20 +5300.0 + 30 +0.0 + 11 +20869.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A12 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18000.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A13 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +20870.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A14 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +19238.125 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +2.88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +19435.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A15 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18000.0 + 20 +9630.0 + 30 +0.0 + 0 +POINT + 5 +2A16 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +20870.0 + 20 +9630.0 + 30 +0.0 + 0 +POINT + 5 +2A17 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +20870.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A18 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D189 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D189 + 1 + + 0 +LINE + 5 +2A1A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +20871.0 + 20 +5300.0 + 30 +0.0 + 11 +21239.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A1B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +20870.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A1C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21240.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A1D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +20945.625 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +21055.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A1E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +20870.0 + 20 +9630.0 + 30 +0.0 + 0 +POINT + 5 +2A1F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21240.0 + 20 +9660.0 + 30 +0.0 + 0 +POINT + 5 +2A20 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21240.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A21 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D190 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D190 + 1 + + 0 +LINE + 5 +2A23 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21241.0 + 20 +5300.0 + 30 +0.0 + 11 +22849.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A24 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +21240.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A25 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22850.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A26 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +21891.875 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +1.61 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +22045.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A27 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +21240.0 + 20 +9660.0 + 30 +0.0 + 0 +POINT + 5 +2A28 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22850.0 + 20 +9645.0 + 30 +0.0 + 0 +POINT + 5 +2A29 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22850.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A2A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D191 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D191 + 1 + + 0 +LINE + 5 +2A2C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22976.0 + 20 +5300.0 + 30 +0.0 + 11 +26374.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A2D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22975.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A2E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26375.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A2F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24489.0625 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +3.40 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24675.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A30 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22975.0 + 20 +9650.0 + 30 +0.0 + 0 +POINT + 5 +2A31 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26375.0 + 20 +9670.0 + 30 +0.0 + 0 +POINT + 5 +2A32 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26375.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A33 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D192 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D192 + 1 + + 0 +LINE + 5 +2A35 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +26376.0 + 20 +5300.0 + 30 +0.0 + 11 +26739.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A36 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26375.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A37 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26740.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A38 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +26448.125 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +26557.5 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A39 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26375.0 + 20 +9670.0 + 30 +0.0 + 0 +POINT + 5 +2A3A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +9690.0 + 30 +0.0 + 0 +POINT + 5 +2A3B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26740.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A3C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D193 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D193 + 1 + + 0 +LINE + 5 +2A3E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +22851.0 + 20 +5300.0 + 30 +0.0 + 11 +22974.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A3F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22850.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A40 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +22975.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A41 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +23007.5 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +23095.0 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A42 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22850.0 + 20 +9645.0 + 30 +0.0 + 0 +POINT + 5 +2A43 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22975.0 + 20 +9650.0 + 30 +0.0 + 0 +POINT + 5 +2A44 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +22975.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A45 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D194 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D194 + 1 + + 0 +LINE + 5 +2A47 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9376.0 + 20 +5300.0 + 30 +0.0 + 11 +9749.0 + 21 +5300.0 + 31 +0.0 + 0 +INSERT + 5 +2A48 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9375.0 + 20 +5300.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A49 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9750.0 + 20 +5300.0 + 30 +0.0 + 0 +TEXT + 5 +2A4A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9453.125 + 20 +5387.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +9562.5 + 21 +5475.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A4B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9375.0 + 20 +9645.0 + 30 +0.0 + 0 +POINT + 5 +2A4C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +9635.0 + 30 +0.0 + 0 +POINT + 5 +2A4D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9750.0 + 20 +5300.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A4E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D195 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D195 + 1 + + 0 +LINE + 5 +2A50 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5856.0 + 20 +8070.0 + 30 +0.0 + 11 +8854.0 + 21 +8070.0 + 31 +0.0 + 0 +INSERT + 5 +2A51 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5855.0 + 20 +8070.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A52 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8855.0 + 20 +8070.0 + 30 +0.0 + 0 +TEXT + 5 +2A53 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7455.0 + 20 +8157.5 + 30 +0.0 + 40 +175.0 + 1 +3.00 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +7630.0 + 21 +8245.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A54 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5855.0 + 20 +9300.0 + 30 +0.0 + 0 +POINT + 5 +2A55 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8855.0 + 20 +8125.0 + 30 +0.0 + 0 +POINT + 5 +2A56 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8855.0 + 20 +8070.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A57 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D196 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D196 + 1 + + 0 +LINE + 5 +2A59 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4991.0 + 20 +8070.0 + 30 +0.0 + 11 +5854.0 + 21 +8070.0 + 31 +0.0 + 0 +INSERT + 5 +2A5A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4990.0 + 20 +8070.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A5B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5855.0 + 20 +8070.0 + 30 +0.0 + 0 +TEXT + 5 +2A5C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5165.625 + 20 +8157.5 + 30 +0.0 + 40 +175.0 + 1 +85 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +5275.0 + 21 +8245.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A5D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4990.0 + 20 +9300.0 + 30 +0.0 + 0 +POINT + 5 +2A5E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5855.0 + 20 +9300.0 + 30 +0.0 + 0 +POINT + 5 +2A5F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5855.0 + 20 +8070.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A60 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D197 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D197 + 1 + + 0 +LINE + 5 +2A62 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +9249.0 + 30 +0.0 + 11 +2800.0 + 21 +7646.0 + 31 +0.0 + 0 +INSERT + 5 +2A63 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +9250.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2A64 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2800.0 + 20 +7645.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2A65 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2712.5 + 20 +8283.4375 + 30 +0.0 + 40 +175.0 + 1 +1.60 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +2625.0 + 21 +8447.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A66 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +2A67 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5000.0 + 20 +7645.0 + 30 +0.0 + 0 +POINT + 5 +2A68 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2800.0 + 20 +7645.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A69 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D198 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D198 + 1 + + 0 +LINE + 5 +2A6B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +26046.0 + 20 +8105.0 + 30 +0.0 + 11 +26744.0 + 21 +8105.0 + 31 +0.0 + 0 +INSERT + 5 +2A6C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26045.0 + 20 +8105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A6D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26745.0 + 20 +8105.0 + 30 +0.0 + 0 +TEXT + 5 +2A6E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +26296.5625 + 20 +8192.5 + 30 +0.0 + 40 +175.0 + 1 +70 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +26395.0 + 21 +8280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A6F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26045.0 + 20 +8095.0 + 30 +0.0 + 0 +POINT + 5 +2A70 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26745.0 + 20 +9300.0 + 30 +0.0 + 0 +POINT + 5 +2A71 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26745.0 + 20 +8105.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A72 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D199 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D199 + 1 + + 0 +LINE + 5 +2A74 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +23031.0 + 20 +8105.0 + 30 +0.0 + 11 +26044.0 + 21 +8105.0 + 31 +0.0 + 0 +INSERT + 5 +2A75 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +23030.0 + 20 +8105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A76 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +26045.0 + 20 +8105.0 + 30 +0.0 + 0 +TEXT + 5 +2A77 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +24670.0 + 20 +8192.5 + 30 +0.0 + 40 +175.0 + 1 +3.00 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +24845.0 + 21 +8280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A78 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +23030.0 + 20 +8095.0 + 30 +0.0 + 0 +POINT + 5 +2A79 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26045.0 + 20 +8095.0 + 30 +0.0 + 0 +POINT + 5 +2A7A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26045.0 + 20 +8105.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A7B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D200 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D200 + 1 + + 0 +LINE + 5 +2A7D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +9254.0 + 30 +0.0 + 11 +28940.0 + 21 +7646.0 + 31 +0.0 + 0 +INSERT + 5 +2A7E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +9255.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2A7F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +28940.0 + 20 +7645.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2A80 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +28852.5 + 20 +8285.9375 + 30 +0.0 + 40 +175.0 + 1 +1.60 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +28765.0 + 21 +8450.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A81 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26040.0 + 20 +9255.0 + 30 +0.0 + 0 +POINT + 5 +2A82 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +26040.0 + 20 +7645.0 + 30 +0.0 + 0 +POINT + 5 +2A83 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +28940.0 + 20 +7645.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A84 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D201 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D201 + 1 + + 0 +LINE + 5 +2A86 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13531.0 + 20 +18105.0 + 30 +0.0 + 11 +14559.0 + 21 +18105.0 + 31 +0.0 + 0 +INSERT + 5 +2A87 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13530.0 + 20 +18105.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2A88 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14560.0 + 20 +18105.0 + 30 +0.0 + 0 +TEXT + 5 +2A89 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14010.625 + 20 +18192.5 + 30 +0.0 + 40 +175.0 + 1 +88 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +14120.0 + 21 +18280.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2A8A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13530.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +2A8B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14560.0 + 20 +17375.0 + 30 +0.0 + 0 +POINT + 5 +2A8C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14560.0 + 20 +18105.0 + 30 +0.0 + 0 +ENDBLK + 5 +2A8D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X202 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X202 + 1 + + 0 +LINE + 5 +2A8F + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +22560.097423 + 30 +0.0 + 11 +34589.902577 + 21 +22930.0 + 31 +0.0 + 0 +LINE + 5 +2A90 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +22913.650814 + 30 +0.0 + 11 +34236.349186 + 21 +22930.0 + 31 +0.0 + 0 +LINE + 5 +2A91 + 8 +0 + 62 + 0 + 10 +34443.455967 + 20 +22430.0 + 30 +0.0 + 11 +34943.455967 + 21 +22930.0 + 31 +0.0 + 0 +LINE + 5 +2A92 + 8 +0 + 62 + 0 + 10 +34797.009358 + 20 +22430.0 + 30 +0.0 + 11 +34970.0 + 21 +22602.990642 + 31 +0.0 + 0 +ENDBLK + 5 +2A93 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X203 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X203 + 1 + + 0 +LINE + 5 +2A95 + 8 +0 + 62 + 0 + 10 +34327.339444 + 20 +21430.0 + 30 +0.0 + 11 +34827.339444 + 21 +21930.0 + 31 +0.0 + 0 +LINE + 5 +2A96 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +21499.437252 + 30 +0.0 + 11 +34650.562748 + 21 +21930.0 + 31 +0.0 + 0 +LINE + 5 +2A97 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +21676.213947 + 30 +0.0 + 11 +34473.786053 + 21 +21930.0 + 31 +0.0 + 0 +LINE + 5 +2A98 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +21852.990642 + 30 +0.0 + 11 +34297.009358 + 21 +21930.0 + 31 +0.0 + 0 +LINE + 5 +2A99 + 8 +0 + 62 + 0 + 10 +34504.116139 + 20 +21430.0 + 30 +0.0 + 11 +34970.0 + 21 +21895.883861 + 31 +0.0 + 0 +LINE + 5 +2A9A + 8 +0 + 62 + 0 + 10 +34680.892834 + 20 +21430.0 + 30 +0.0 + 11 +34970.0 + 21 +21719.107166 + 31 +0.0 + 0 +LINE + 5 +2A9B + 8 +0 + 62 + 0 + 10 +34857.66953 + 20 +21430.0 + 30 +0.0 + 11 +34970.0 + 21 +21542.33047 + 31 +0.0 + 0 +ENDBLK + 5 +2A9C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X204 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X204 + 1 + + 0 +LINE + 5 +2A9E + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20649.059328 + 30 +0.0 + 11 +34231.25 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2A9F + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20649.059328 + 30 +0.0 + 11 +34343.75 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2AA0 + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20649.059328 + 30 +0.0 + 11 +34456.25 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2AA1 + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20649.059328 + 30 +0.0 + 11 +34568.75 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2AA2 + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20649.059328 + 30 +0.0 + 11 +34681.25 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2AA3 + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20649.059328 + 30 +0.0 + 11 +34793.75 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2AA4 + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20649.059328 + 30 +0.0 + 11 +34906.25 + 21 +20649.059328 + 31 +0.0 + 0 +LINE + 5 +2AA5 + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20681.53528 + 30 +0.0 + 11 +34287.5 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AA6 + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20681.53528 + 30 +0.0 + 11 +34400.0 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AA7 + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20681.53528 + 30 +0.0 + 11 +34512.5 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AA8 + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20681.53528 + 30 +0.0 + 11 +34625.0 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AA9 + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20681.53528 + 30 +0.0 + 11 +34737.5 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AAA + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20681.53528 + 30 +0.0 + 11 +34850.0 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AAB + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20681.53528 + 30 +0.0 + 11 +34962.5 + 21 +20681.53528 + 31 +0.0 + 0 +LINE + 5 +2AAC + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20714.011233 + 30 +0.0 + 11 +34231.25 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AAD + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20714.011233 + 30 +0.0 + 11 +34343.75 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AAE + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20714.011233 + 30 +0.0 + 11 +34456.25 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AAF + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20714.011233 + 30 +0.0 + 11 +34568.75 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AB0 + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20714.011233 + 30 +0.0 + 11 +34681.25 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AB1 + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20714.011233 + 30 +0.0 + 11 +34793.75 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AB2 + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20714.011233 + 30 +0.0 + 11 +34906.25 + 21 +20714.011233 + 31 +0.0 + 0 +LINE + 5 +2AB3 + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20746.487185 + 30 +0.0 + 11 +34287.5 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2AB4 + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20746.487185 + 30 +0.0 + 11 +34400.0 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2AB5 + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20746.487185 + 30 +0.0 + 11 +34512.5 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2AB6 + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20746.487185 + 30 +0.0 + 11 +34625.0 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2AB7 + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20746.487185 + 30 +0.0 + 11 +34737.5 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2AB8 + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20746.487185 + 30 +0.0 + 11 +34850.0 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2AB9 + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20746.487185 + 30 +0.0 + 11 +34962.5 + 21 +20746.487185 + 31 +0.0 + 0 +LINE + 5 +2ABA + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20778.963138 + 30 +0.0 + 11 +34231.25 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2ABB + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20778.963138 + 30 +0.0 + 11 +34343.75 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2ABC + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20778.963138 + 30 +0.0 + 11 +34456.25 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2ABD + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20778.963138 + 30 +0.0 + 11 +34568.75 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2ABE + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20778.963138 + 30 +0.0 + 11 +34681.25 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2ABF + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20778.963138 + 30 +0.0 + 11 +34793.75 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2AC0 + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20778.963138 + 30 +0.0 + 11 +34906.25 + 21 +20778.963138 + 31 +0.0 + 0 +LINE + 5 +2AC1 + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20811.43909 + 30 +0.0 + 11 +34287.5 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC2 + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20811.43909 + 30 +0.0 + 11 +34400.0 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC3 + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20811.43909 + 30 +0.0 + 11 +34512.5 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC4 + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20811.43909 + 30 +0.0 + 11 +34625.0 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC5 + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20811.43909 + 30 +0.0 + 11 +34737.5 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC6 + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20811.43909 + 30 +0.0 + 11 +34850.0 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC7 + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20811.43909 + 30 +0.0 + 11 +34962.5 + 21 +20811.43909 + 31 +0.0 + 0 +LINE + 5 +2AC8 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20843.915043 + 30 +0.0 + 11 +34231.25 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2AC9 + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20843.915043 + 30 +0.0 + 11 +34343.75 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2ACA + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20843.915043 + 30 +0.0 + 11 +34456.25 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2ACB + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20843.915043 + 30 +0.0 + 11 +34568.75 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2ACC + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20843.915043 + 30 +0.0 + 11 +34681.25 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2ACD + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20843.915043 + 30 +0.0 + 11 +34793.75 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2ACE + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20843.915043 + 30 +0.0 + 11 +34906.25 + 21 +20843.915043 + 31 +0.0 + 0 +LINE + 5 +2ACF + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20876.390995 + 30 +0.0 + 11 +34287.5 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD0 + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20876.390995 + 30 +0.0 + 11 +34400.0 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD1 + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20876.390995 + 30 +0.0 + 11 +34512.5 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD2 + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20876.390995 + 30 +0.0 + 11 +34625.0 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD3 + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20876.390995 + 30 +0.0 + 11 +34737.5 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD4 + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20876.390995 + 30 +0.0 + 11 +34850.0 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD5 + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20876.390995 + 30 +0.0 + 11 +34962.5 + 21 +20876.390995 + 31 +0.0 + 0 +LINE + 5 +2AD6 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20908.866948 + 30 +0.0 + 11 +34231.25 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2AD7 + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20908.866948 + 30 +0.0 + 11 +34343.75 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2AD8 + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20908.866948 + 30 +0.0 + 11 +34456.25 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2AD9 + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20908.866948 + 30 +0.0 + 11 +34568.75 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2ADA + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20908.866948 + 30 +0.0 + 11 +34681.25 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2ADB + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20908.866948 + 30 +0.0 + 11 +34793.75 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2ADC + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20908.866948 + 30 +0.0 + 11 +34906.25 + 21 +20908.866948 + 31 +0.0 + 0 +LINE + 5 +2ADD + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20616.583375 + 30 +0.0 + 11 +34287.5 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2ADE + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20616.583375 + 30 +0.0 + 11 +34400.0 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2ADF + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20616.583375 + 30 +0.0 + 11 +34512.5 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2AE0 + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20616.583375 + 30 +0.0 + 11 +34625.0 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2AE1 + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20616.583375 + 30 +0.0 + 11 +34737.5 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2AE2 + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20616.583375 + 30 +0.0 + 11 +34850.0 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2AE3 + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20616.583375 + 30 +0.0 + 11 +34962.5 + 21 +20616.583375 + 31 +0.0 + 0 +LINE + 5 +2AE4 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20584.107423 + 30 +0.0 + 11 +34231.25 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AE5 + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20584.107423 + 30 +0.0 + 11 +34343.75 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AE6 + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20584.107423 + 30 +0.0 + 11 +34456.25 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AE7 + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20584.107423 + 30 +0.0 + 11 +34568.75 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AE8 + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20584.107423 + 30 +0.0 + 11 +34681.25 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AE9 + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20584.107423 + 30 +0.0 + 11 +34793.75 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AEA + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20584.107423 + 30 +0.0 + 11 +34906.25 + 21 +20584.107423 + 31 +0.0 + 0 +LINE + 5 +2AEB + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20551.63147 + 30 +0.0 + 11 +34287.5 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AEC + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20551.63147 + 30 +0.0 + 11 +34400.0 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AED + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20551.63147 + 30 +0.0 + 11 +34512.5 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AEE + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20551.63147 + 30 +0.0 + 11 +34625.0 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AEF + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20551.63147 + 30 +0.0 + 11 +34737.5 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AF0 + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20551.63147 + 30 +0.0 + 11 +34850.0 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AF1 + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20551.63147 + 30 +0.0 + 11 +34962.5 + 21 +20551.63147 + 31 +0.0 + 0 +LINE + 5 +2AF2 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20519.155518 + 30 +0.0 + 11 +34231.25 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF3 + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20519.155518 + 30 +0.0 + 11 +34343.75 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF4 + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20519.155518 + 30 +0.0 + 11 +34456.25 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF5 + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20519.155518 + 30 +0.0 + 11 +34568.75 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF6 + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20519.155518 + 30 +0.0 + 11 +34681.25 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF7 + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20519.155518 + 30 +0.0 + 11 +34793.75 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF8 + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20519.155518 + 30 +0.0 + 11 +34906.25 + 21 +20519.155518 + 31 +0.0 + 0 +LINE + 5 +2AF9 + 8 +0 + 62 + 0 + 10 +34250.0 + 20 +20486.679565 + 30 +0.0 + 11 +34287.5 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2AFA + 8 +0 + 62 + 0 + 10 +34362.5 + 20 +20486.679565 + 30 +0.0 + 11 +34400.0 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2AFB + 8 +0 + 62 + 0 + 10 +34475.0 + 20 +20486.679565 + 30 +0.0 + 11 +34512.5 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2AFC + 8 +0 + 62 + 0 + 10 +34587.5 + 20 +20486.679565 + 30 +0.0 + 11 +34625.0 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2AFD + 8 +0 + 62 + 0 + 10 +34700.0 + 20 +20486.679565 + 30 +0.0 + 11 +34737.5 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2AFE + 8 +0 + 62 + 0 + 10 +34812.5 + 20 +20486.679565 + 30 +0.0 + 11 +34850.0 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2AFF + 8 +0 + 62 + 0 + 10 +34925.0 + 20 +20486.679565 + 30 +0.0 + 11 +34962.5 + 21 +20486.679565 + 31 +0.0 + 0 +LINE + 5 +2B00 + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +20454.203613 + 30 +0.0 + 11 +34231.25 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B01 + 8 +0 + 62 + 0 + 10 +34306.25 + 20 +20454.203613 + 30 +0.0 + 11 +34343.75 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B02 + 8 +0 + 62 + 0 + 10 +34418.75 + 20 +20454.203613 + 30 +0.0 + 11 +34456.25 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B03 + 8 +0 + 62 + 0 + 10 +34531.25 + 20 +20454.203613 + 30 +0.0 + 11 +34568.75 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B04 + 8 +0 + 62 + 0 + 10 +34643.75 + 20 +20454.203613 + 30 +0.0 + 11 +34681.25 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B05 + 8 +0 + 62 + 0 + 10 +34756.25 + 20 +20454.203613 + 30 +0.0 + 11 +34793.75 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B06 + 8 +0 + 62 + 0 + 10 +34868.75 + 20 +20454.203613 + 30 +0.0 + 11 +34906.25 + 21 +20454.203613 + 31 +0.0 + 0 +LINE + 5 +2B07 + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20486.679546 + 30 +0.0 + 11 +34681.249881 + 21 +20519.155498 + 31 +0.0 + 0 +LINE + 5 +2B08 + 8 +0 + 62 + 0 + 10 +34643.749881 + 20 +20584.107404 + 30 +0.0 + 11 +34624.999881 + 21 +20616.583356 + 31 +0.0 + 0 +LINE + 5 +2B09 + 8 +0 + 62 + 0 + 10 +34587.499881 + 20 +20681.535261 + 30 +0.0 + 11 +34568.749881 + 21 +20714.011214 + 31 +0.0 + 0 +LINE + 5 +2B0A + 8 +0 + 62 + 0 + 10 +34531.249881 + 20 +20778.963119 + 30 +0.0 + 11 +34512.499881 + 21 +20811.439072 + 31 +0.0 + 0 +LINE + 5 +2B0B + 8 +0 + 62 + 0 + 10 +34474.999881 + 20 +20876.390977 + 30 +0.0 + 11 +34456.249881 + 21 +20908.86693 + 31 +0.0 + 0 +LINE + 5 +2B0C + 8 +0 + 62 + 0 + 10 +34695.223832 + 20 +20430.0 + 30 +0.0 + 11 +34681.249882 + 21 +20454.203593 + 31 +0.0 + 0 +LINE + 5 +2B0D + 8 +0 + 62 + 0 + 10 +34643.749882 + 20 +20519.155498 + 30 +0.0 + 11 +34624.999882 + 21 +20551.631451 + 31 +0.0 + 0 +LINE + 5 +2B0E + 8 +0 + 62 + 0 + 10 +34587.499882 + 20 +20616.583356 + 30 +0.0 + 11 +34568.749882 + 21 +20649.059309 + 31 +0.0 + 0 +LINE + 5 +2B0F + 8 +0 + 62 + 0 + 10 +34531.249882 + 20 +20714.011214 + 30 +0.0 + 11 +34512.499882 + 21 +20746.487167 + 31 +0.0 + 0 +LINE + 5 +2B10 + 8 +0 + 62 + 0 + 10 +34474.999882 + 20 +20811.439072 + 30 +0.0 + 11 +34456.249882 + 21 +20843.915025 + 31 +0.0 + 0 +LINE + 5 +2B11 + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20908.86693 + 30 +0.0 + 11 +34406.548698 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B12 + 8 +0 + 62 + 0 + 10 +34643.749882 + 20 +20454.203593 + 30 +0.0 + 11 +34624.999882 + 21 +20486.679546 + 31 +0.0 + 0 +LINE + 5 +2B13 + 8 +0 + 62 + 0 + 10 +34587.499882 + 20 +20551.631451 + 30 +0.0 + 11 +34568.749882 + 21 +20584.107404 + 31 +0.0 + 0 +LINE + 5 +2B14 + 8 +0 + 62 + 0 + 10 +34531.249882 + 20 +20649.059309 + 30 +0.0 + 11 +34512.499882 + 21 +20681.535262 + 31 +0.0 + 0 +LINE + 5 +2B15 + 8 +0 + 62 + 0 + 10 +34474.999882 + 20 +20746.487167 + 30 +0.0 + 11 +34456.249882 + 21 +20778.96312 + 31 +0.0 + 0 +LINE + 5 +2B16 + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20843.915025 + 30 +0.0 + 11 +34399.999882 + 21 +20876.390977 + 31 +0.0 + 0 +LINE + 5 +2B17 + 8 +0 + 62 + 0 + 10 +34587.499882 + 20 +20486.679546 + 30 +0.0 + 11 +34568.749882 + 21 +20519.155498 + 31 +0.0 + 0 +LINE + 5 +2B18 + 8 +0 + 62 + 0 + 10 +34531.249882 + 20 +20584.107404 + 30 +0.0 + 11 +34512.499882 + 21 +20616.583356 + 31 +0.0 + 0 +LINE + 5 +2B19 + 8 +0 + 62 + 0 + 10 +34474.999882 + 20 +20681.535262 + 30 +0.0 + 11 +34456.249882 + 21 +20714.011214 + 31 +0.0 + 0 +LINE + 5 +2B1A + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20778.96312 + 30 +0.0 + 11 +34399.999882 + 21 +20811.439072 + 31 +0.0 + 0 +LINE + 5 +2B1B + 8 +0 + 62 + 0 + 10 +34362.499882 + 20 +20876.390978 + 30 +0.0 + 11 +34343.749882 + 21 +20908.86693 + 31 +0.0 + 0 +LINE + 5 +2B1C + 8 +0 + 62 + 0 + 10 +34582.723833 + 20 +20430.0 + 30 +0.0 + 11 +34568.749882 + 21 +20454.203593 + 31 +0.0 + 0 +LINE + 5 +2B1D + 8 +0 + 62 + 0 + 10 +34531.249882 + 20 +20519.155499 + 30 +0.0 + 11 +34512.499882 + 21 +20551.631451 + 31 +0.0 + 0 +LINE + 5 +2B1E + 8 +0 + 62 + 0 + 10 +34474.999882 + 20 +20616.583356 + 30 +0.0 + 11 +34456.249882 + 21 +20649.059309 + 31 +0.0 + 0 +LINE + 5 +2B1F + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20714.011214 + 30 +0.0 + 11 +34399.999882 + 21 +20746.487167 + 31 +0.0 + 0 +LINE + 5 +2B20 + 8 +0 + 62 + 0 + 10 +34362.499882 + 20 +20811.439072 + 30 +0.0 + 11 +34343.749882 + 21 +20843.915025 + 31 +0.0 + 0 +LINE + 5 +2B21 + 8 +0 + 62 + 0 + 10 +34306.249882 + 20 +20908.86693 + 30 +0.0 + 11 +34294.048698 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B22 + 8 +0 + 62 + 0 + 10 +34531.249882 + 20 +20454.203593 + 30 +0.0 + 11 +34512.499882 + 21 +20486.679546 + 31 +0.0 + 0 +LINE + 5 +2B23 + 8 +0 + 62 + 0 + 10 +34474.999882 + 20 +20551.631451 + 30 +0.0 + 11 +34456.249882 + 21 +20584.107404 + 31 +0.0 + 0 +LINE + 5 +2B24 + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20649.059309 + 30 +0.0 + 11 +34399.999882 + 21 +20681.535262 + 31 +0.0 + 0 +LINE + 5 +2B25 + 8 +0 + 62 + 0 + 10 +34362.499882 + 20 +20746.487167 + 30 +0.0 + 11 +34343.749882 + 21 +20778.96312 + 31 +0.0 + 0 +LINE + 5 +2B26 + 8 +0 + 62 + 0 + 10 +34306.249882 + 20 +20843.915025 + 30 +0.0 + 11 +34287.499882 + 21 +20876.390978 + 31 +0.0 + 0 +LINE + 5 +2B27 + 8 +0 + 62 + 0 + 10 +34474.999882 + 20 +20486.679546 + 30 +0.0 + 11 +34456.249882 + 21 +20519.155499 + 31 +0.0 + 0 +LINE + 5 +2B28 + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20584.107404 + 30 +0.0 + 11 +34399.999882 + 21 +20616.583357 + 31 +0.0 + 0 +LINE + 5 +2B29 + 8 +0 + 62 + 0 + 10 +34362.499882 + 20 +20681.535262 + 30 +0.0 + 11 +34343.749882 + 21 +20714.011215 + 31 +0.0 + 0 +LINE + 5 +2B2A + 8 +0 + 62 + 0 + 10 +34306.249882 + 20 +20778.96312 + 30 +0.0 + 11 +34287.499882 + 21 +20811.439072 + 31 +0.0 + 0 +LINE + 5 +2B2B + 8 +0 + 62 + 0 + 10 +34249.999882 + 20 +20876.390978 + 30 +0.0 + 11 +34231.249882 + 21 +20908.86693 + 31 +0.0 + 0 +LINE + 5 +2B2C + 8 +0 + 62 + 0 + 10 +34470.223833 + 20 +20430.0 + 30 +0.0 + 11 +34456.249882 + 21 +20454.203593 + 31 +0.0 + 0 +LINE + 5 +2B2D + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20519.155499 + 30 +0.0 + 11 +34399.999882 + 21 +20551.631451 + 31 +0.0 + 0 +LINE + 5 +2B2E + 8 +0 + 62 + 0 + 10 +34362.499882 + 20 +20616.583357 + 30 +0.0 + 11 +34343.749882 + 21 +20649.059309 + 31 +0.0 + 0 +LINE + 5 +2B2F + 8 +0 + 62 + 0 + 10 +34306.249882 + 20 +20714.011215 + 30 +0.0 + 11 +34287.499882 + 21 +20746.487167 + 31 +0.0 + 0 +LINE + 5 +2B30 + 8 +0 + 62 + 0 + 10 +34249.999882 + 20 +20811.439073 + 30 +0.0 + 11 +34231.249882 + 21 +20843.915025 + 31 +0.0 + 0 +LINE + 5 +2B31 + 8 +0 + 62 + 0 + 10 +34418.749882 + 20 +20454.203594 + 30 +0.0 + 11 +34399.999882 + 21 +20486.679546 + 31 +0.0 + 0 +LINE + 5 +2B32 + 8 +0 + 62 + 0 + 10 +34362.499882 + 20 +20551.631451 + 30 +0.0 + 11 +34343.749882 + 21 +20584.107404 + 31 +0.0 + 0 +LINE + 5 +2B33 + 8 +0 + 62 + 0 + 10 +34306.249882 + 20 +20649.059309 + 30 +0.0 + 11 +34287.499882 + 21 +20681.535262 + 31 +0.0 + 0 +LINE + 5 +2B34 + 8 +0 + 62 + 0 + 10 +34249.999882 + 20 +20746.487167 + 30 +0.0 + 11 +34231.249882 + 21 +20778.96312 + 31 +0.0 + 0 +LINE + 5 +2B35 + 8 +0 + 62 + 0 + 10 +34362.499883 + 20 +20486.679546 + 30 +0.0 + 11 +34343.749883 + 21 +20519.155499 + 31 +0.0 + 0 +LINE + 5 +2B36 + 8 +0 + 62 + 0 + 10 +34306.249883 + 20 +20584.107404 + 30 +0.0 + 11 +34287.499883 + 21 +20616.583357 + 31 +0.0 + 0 +LINE + 5 +2B37 + 8 +0 + 62 + 0 + 10 +34249.999883 + 20 +20681.535262 + 30 +0.0 + 11 +34231.249883 + 21 +20714.011215 + 31 +0.0 + 0 +LINE + 5 +2B38 + 8 +0 + 62 + 0 + 10 +34357.723834 + 20 +20430.0 + 30 +0.0 + 11 +34343.749883 + 21 +20454.203594 + 31 +0.0 + 0 +LINE + 5 +2B39 + 8 +0 + 62 + 0 + 10 +34306.249883 + 20 +20519.155499 + 30 +0.0 + 11 +34287.499883 + 21 +20551.631452 + 31 +0.0 + 0 +LINE + 5 +2B3A + 8 +0 + 62 + 0 + 10 +34249.999883 + 20 +20616.583357 + 30 +0.0 + 11 +34231.249883 + 21 +20649.05931 + 31 +0.0 + 0 +LINE + 5 +2B3B + 8 +0 + 62 + 0 + 10 +34306.249883 + 20 +20454.203594 + 30 +0.0 + 11 +34287.499883 + 21 +20486.679546 + 31 +0.0 + 0 +LINE + 5 +2B3C + 8 +0 + 62 + 0 + 10 +34249.999883 + 20 +20551.631452 + 30 +0.0 + 11 +34231.249883 + 21 +20584.107404 + 31 +0.0 + 0 +LINE + 5 +2B3D + 8 +0 + 62 + 0 + 10 +34249.999883 + 20 +20486.679546 + 30 +0.0 + 11 +34231.249883 + 21 +20519.155499 + 31 +0.0 + 0 +LINE + 5 +2B3E + 8 +0 + 62 + 0 + 10 +34245.223834 + 20 +20430.0 + 30 +0.0 + 11 +34231.249883 + 21 +20454.203594 + 31 +0.0 + 0 +LINE + 5 +2B3F + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20454.203593 + 30 +0.0 + 11 +34737.499881 + 21 +20486.679546 + 31 +0.0 + 0 +LINE + 5 +2B40 + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20551.631451 + 30 +0.0 + 11 +34681.249881 + 21 +20584.107403 + 31 +0.0 + 0 +LINE + 5 +2B41 + 8 +0 + 62 + 0 + 10 +34643.749881 + 20 +20649.059309 + 30 +0.0 + 11 +34624.999881 + 21 +20681.535261 + 31 +0.0 + 0 +LINE + 5 +2B42 + 8 +0 + 62 + 0 + 10 +34587.499881 + 20 +20746.487167 + 30 +0.0 + 11 +34568.749881 + 21 +20778.963119 + 31 +0.0 + 0 +LINE + 5 +2B43 + 8 +0 + 62 + 0 + 10 +34531.249881 + 20 +20843.915025 + 30 +0.0 + 11 +34512.499881 + 21 +20876.390977 + 31 +0.0 + 0 +LINE + 5 +2B44 + 8 +0 + 62 + 0 + 10 +34807.723832 + 20 +20430.0 + 30 +0.0 + 11 +34793.749881 + 21 +20454.203593 + 31 +0.0 + 0 +LINE + 5 +2B45 + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20519.155498 + 30 +0.0 + 11 +34737.499881 + 21 +20551.631451 + 31 +0.0 + 0 +LINE + 5 +2B46 + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20616.583356 + 30 +0.0 + 11 +34681.249881 + 21 +20649.059309 + 31 +0.0 + 0 +LINE + 5 +2B47 + 8 +0 + 62 + 0 + 10 +34643.749881 + 20 +20714.011214 + 30 +0.0 + 11 +34624.999881 + 21 +20746.487167 + 31 +0.0 + 0 +LINE + 5 +2B48 + 8 +0 + 62 + 0 + 10 +34587.499881 + 20 +20811.439072 + 30 +0.0 + 11 +34568.749881 + 21 +20843.915025 + 31 +0.0 + 0 +LINE + 5 +2B49 + 8 +0 + 62 + 0 + 10 +34531.249881 + 20 +20908.86693 + 30 +0.0 + 11 +34519.048697 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B4A + 8 +0 + 62 + 0 + 10 +34812.499881 + 20 +20486.679545 + 30 +0.0 + 11 +34793.749881 + 21 +20519.155498 + 31 +0.0 + 0 +LINE + 5 +2B4B + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20584.107403 + 30 +0.0 + 11 +34737.499881 + 21 +20616.583356 + 31 +0.0 + 0 +LINE + 5 +2B4C + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20681.535261 + 30 +0.0 + 11 +34681.249881 + 21 +20714.011214 + 31 +0.0 + 0 +LINE + 5 +2B4D + 8 +0 + 62 + 0 + 10 +34643.749881 + 20 +20778.963119 + 30 +0.0 + 11 +34624.999881 + 21 +20811.439072 + 31 +0.0 + 0 +LINE + 5 +2B4E + 8 +0 + 62 + 0 + 10 +34587.499881 + 20 +20876.390977 + 30 +0.0 + 11 +34568.749881 + 21 +20908.86693 + 31 +0.0 + 0 +LINE + 5 +2B4F + 8 +0 + 62 + 0 + 10 +34868.749881 + 20 +20454.203593 + 30 +0.0 + 11 +34849.999881 + 21 +20486.679545 + 31 +0.0 + 0 +LINE + 5 +2B50 + 8 +0 + 62 + 0 + 10 +34812.499881 + 20 +20551.631451 + 30 +0.0 + 11 +34793.749881 + 21 +20584.107403 + 31 +0.0 + 0 +LINE + 5 +2B51 + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20649.059309 + 30 +0.0 + 11 +34737.499881 + 21 +20681.535261 + 31 +0.0 + 0 +LINE + 5 +2B52 + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20746.487166 + 30 +0.0 + 11 +34681.249881 + 21 +20778.963119 + 31 +0.0 + 0 +LINE + 5 +2B53 + 8 +0 + 62 + 0 + 10 +34643.749881 + 20 +20843.915024 + 30 +0.0 + 11 +34624.999881 + 21 +20876.390977 + 31 +0.0 + 0 +LINE + 5 +2B54 + 8 +0 + 62 + 0 + 10 +34920.223832 + 20 +20430.0 + 30 +0.0 + 11 +34906.249881 + 21 +20454.203593 + 31 +0.0 + 0 +LINE + 5 +2B55 + 8 +0 + 62 + 0 + 10 +34868.749881 + 20 +20519.155498 + 30 +0.0 + 11 +34849.999881 + 21 +20551.631451 + 31 +0.0 + 0 +LINE + 5 +2B56 + 8 +0 + 62 + 0 + 10 +34812.499881 + 20 +20616.583356 + 30 +0.0 + 11 +34793.749881 + 21 +20649.059308 + 31 +0.0 + 0 +LINE + 5 +2B57 + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20714.011214 + 30 +0.0 + 11 +34737.499881 + 21 +20746.487166 + 31 +0.0 + 0 +LINE + 5 +2B58 + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20811.439072 + 30 +0.0 + 11 +34681.249881 + 21 +20843.915024 + 31 +0.0 + 0 +LINE + 5 +2B59 + 8 +0 + 62 + 0 + 10 +34643.749881 + 20 +20908.86693 + 30 +0.0 + 11 +34631.548697 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B5A + 8 +0 + 62 + 0 + 10 +34924.999881 + 20 +20486.679545 + 30 +0.0 + 11 +34906.249881 + 21 +20519.155498 + 31 +0.0 + 0 +LINE + 5 +2B5B + 8 +0 + 62 + 0 + 10 +34868.749881 + 20 +20584.107403 + 30 +0.0 + 11 +34849.999881 + 21 +20616.583356 + 31 +0.0 + 0 +LINE + 5 +2B5C + 8 +0 + 62 + 0 + 10 +34812.499881 + 20 +20681.535261 + 30 +0.0 + 11 +34793.749881 + 21 +20714.011214 + 31 +0.0 + 0 +LINE + 5 +2B5D + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20778.963119 + 30 +0.0 + 11 +34737.499881 + 21 +20811.439072 + 31 +0.0 + 0 +LINE + 5 +2B5E + 8 +0 + 62 + 0 + 10 +34699.999881 + 20 +20876.390977 + 30 +0.0 + 11 +34681.249881 + 21 +20908.86693 + 31 +0.0 + 0 +LINE + 5 +2B5F + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20473.688957 + 30 +0.0 + 11 +34962.499881 + 21 +20486.679545 + 31 +0.0 + 0 +LINE + 5 +2B60 + 8 +0 + 62 + 0 + 10 +34924.999881 + 20 +20551.63145 + 30 +0.0 + 11 +34906.249881 + 21 +20584.107403 + 31 +0.0 + 0 +LINE + 5 +2B61 + 8 +0 + 62 + 0 + 10 +34868.749881 + 20 +20649.059308 + 30 +0.0 + 11 +34849.999881 + 21 +20681.535261 + 31 +0.0 + 0 +LINE + 5 +2B62 + 8 +0 + 62 + 0 + 10 +34812.499881 + 20 +20746.487166 + 30 +0.0 + 11 +34793.749881 + 21 +20778.963119 + 31 +0.0 + 0 +LINE + 5 +2B63 + 8 +0 + 62 + 0 + 10 +34756.249881 + 20 +20843.915024 + 30 +0.0 + 11 +34737.499881 + 21 +20876.390977 + 31 +0.0 + 0 +LINE + 5 +2B64 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20538.640862 + 30 +0.0 + 11 +34962.49988 + 21 +20551.63145 + 31 +0.0 + 0 +LINE + 5 +2B65 + 8 +0 + 62 + 0 + 10 +34924.99988 + 20 +20616.583356 + 30 +0.0 + 11 +34906.24988 + 21 +20649.059308 + 31 +0.0 + 0 +LINE + 5 +2B66 + 8 +0 + 62 + 0 + 10 +34868.74988 + 20 +20714.011214 + 30 +0.0 + 11 +34849.99988 + 21 +20746.487166 + 31 +0.0 + 0 +LINE + 5 +2B67 + 8 +0 + 62 + 0 + 10 +34812.49988 + 20 +20811.439071 + 30 +0.0 + 11 +34793.74988 + 21 +20843.915024 + 31 +0.0 + 0 +LINE + 5 +2B68 + 8 +0 + 62 + 0 + 10 +34756.24988 + 20 +20908.866929 + 30 +0.0 + 11 +34744.048696 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B69 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20603.592767 + 30 +0.0 + 11 +34962.49988 + 21 +20616.583356 + 31 +0.0 + 0 +LINE + 5 +2B6A + 8 +0 + 62 + 0 + 10 +34924.99988 + 20 +20681.535261 + 30 +0.0 + 11 +34906.24988 + 21 +20714.011213 + 31 +0.0 + 0 +LINE + 5 +2B6B + 8 +0 + 62 + 0 + 10 +34868.74988 + 20 +20778.963119 + 30 +0.0 + 11 +34849.99988 + 21 +20811.439071 + 31 +0.0 + 0 +LINE + 5 +2B6C + 8 +0 + 62 + 0 + 10 +34812.49988 + 20 +20876.390977 + 30 +0.0 + 11 +34793.74988 + 21 +20908.866929 + 31 +0.0 + 0 +LINE + 5 +2B6D + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20668.544672 + 30 +0.0 + 11 +34962.49988 + 21 +20681.535261 + 31 +0.0 + 0 +LINE + 5 +2B6E + 8 +0 + 62 + 0 + 10 +34924.99988 + 20 +20746.487166 + 30 +0.0 + 11 +34906.24988 + 21 +20778.963119 + 31 +0.0 + 0 +LINE + 5 +2B6F + 8 +0 + 62 + 0 + 10 +34868.74988 + 20 +20843.915024 + 30 +0.0 + 11 +34849.99988 + 21 +20876.390977 + 31 +0.0 + 0 +LINE + 5 +2B70 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20733.496577 + 30 +0.0 + 11 +34962.49988 + 21 +20746.487166 + 31 +0.0 + 0 +LINE + 5 +2B71 + 8 +0 + 62 + 0 + 10 +34924.99988 + 20 +20811.439071 + 30 +0.0 + 11 +34906.24988 + 21 +20843.915024 + 31 +0.0 + 0 +LINE + 5 +2B72 + 8 +0 + 62 + 0 + 10 +34868.74988 + 20 +20908.866929 + 30 +0.0 + 11 +34856.548696 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B73 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20798.448482 + 30 +0.0 + 11 +34962.49988 + 21 +20811.439071 + 31 +0.0 + 0 +LINE + 5 +2B74 + 8 +0 + 62 + 0 + 10 +34924.99988 + 20 +20876.390976 + 30 +0.0 + 11 +34906.24988 + 21 +20908.866929 + 31 +0.0 + 0 +LINE + 5 +2B75 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20863.400387 + 30 +0.0 + 11 +34962.49988 + 21 +20876.390976 + 31 +0.0 + 0 +LINE + 5 +2B76 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +20928.352292 + 30 +0.0 + 11 +34969.048695 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B77 + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20454.203705 + 30 +0.0 + 11 +34474.999925 + 21 +20486.679658 + 31 +0.0 + 0 +LINE + 5 +2B78 + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20551.631563 + 30 +0.0 + 11 +34531.249925 + 21 +20584.107516 + 31 +0.0 + 0 +LINE + 5 +2B79 + 8 +0 + 62 + 0 + 10 +34568.749925 + 20 +20649.059421 + 30 +0.0 + 11 +34587.499925 + 21 +20681.535373 + 31 +0.0 + 0 +LINE + 5 +2B7A + 8 +0 + 62 + 0 + 10 +34624.999925 + 20 +20746.487279 + 30 +0.0 + 11 +34643.749925 + 21 +20778.963231 + 31 +0.0 + 0 +LINE + 5 +2B7B + 8 +0 + 62 + 0 + 10 +34681.249925 + 20 +20843.915137 + 30 +0.0 + 11 +34699.999925 + 21 +20876.391089 + 31 +0.0 + 0 +LINE + 5 +2B7C + 8 +0 + 62 + 0 + 10 +34404.775909 + 20 +20430.0 + 30 +0.0 + 11 +34418.749925 + 21 +20454.203705 + 31 +0.0 + 0 +LINE + 5 +2B7D + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20519.15561 + 30 +0.0 + 11 +34474.999925 + 21 +20551.631563 + 31 +0.0 + 0 +LINE + 5 +2B7E + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20616.583468 + 30 +0.0 + 11 +34531.249925 + 21 +20649.059421 + 31 +0.0 + 0 +LINE + 5 +2B7F + 8 +0 + 62 + 0 + 10 +34568.749925 + 20 +20714.011326 + 30 +0.0 + 11 +34587.499925 + 21 +20746.487279 + 31 +0.0 + 0 +LINE + 5 +2B80 + 8 +0 + 62 + 0 + 10 +34624.999925 + 20 +20811.439184 + 30 +0.0 + 11 +34643.749925 + 21 +20843.915137 + 31 +0.0 + 0 +LINE + 5 +2B81 + 8 +0 + 62 + 0 + 10 +34681.249925 + 20 +20908.867042 + 30 +0.0 + 11 +34693.451044 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B82 + 8 +0 + 62 + 0 + 10 +34399.999925 + 20 +20486.679657 + 30 +0.0 + 11 +34418.749925 + 21 +20519.15561 + 31 +0.0 + 0 +LINE + 5 +2B83 + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20584.107515 + 30 +0.0 + 11 +34474.999925 + 21 +20616.583468 + 31 +0.0 + 0 +LINE + 5 +2B84 + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20681.535373 + 30 +0.0 + 11 +34531.249925 + 21 +20714.011326 + 31 +0.0 + 0 +LINE + 5 +2B85 + 8 +0 + 62 + 0 + 10 +34568.749925 + 20 +20778.963231 + 30 +0.0 + 11 +34587.499925 + 21 +20811.439184 + 31 +0.0 + 0 +LINE + 5 +2B86 + 8 +0 + 62 + 0 + 10 +34624.999925 + 20 +20876.391089 + 30 +0.0 + 11 +34643.749925 + 21 +20908.867042 + 31 +0.0 + 0 +LINE + 5 +2B87 + 8 +0 + 62 + 0 + 10 +34343.749925 + 20 +20454.203705 + 30 +0.0 + 11 +34362.499925 + 21 +20486.679657 + 31 +0.0 + 0 +LINE + 5 +2B88 + 8 +0 + 62 + 0 + 10 +34399.999925 + 20 +20551.631563 + 30 +0.0 + 11 +34418.749925 + 21 +20584.107515 + 31 +0.0 + 0 +LINE + 5 +2B89 + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20649.059421 + 30 +0.0 + 11 +34474.999925 + 21 +20681.535373 + 31 +0.0 + 0 +LINE + 5 +2B8A + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20746.487279 + 30 +0.0 + 11 +34531.249925 + 21 +20778.963231 + 31 +0.0 + 0 +LINE + 5 +2B8B + 8 +0 + 62 + 0 + 10 +34568.749925 + 20 +20843.915136 + 30 +0.0 + 11 +34587.499925 + 21 +20876.391089 + 31 +0.0 + 0 +LINE + 5 +2B8C + 8 +0 + 62 + 0 + 10 +34292.27591 + 20 +20430.0 + 30 +0.0 + 11 +34306.249925 + 21 +20454.203705 + 31 +0.0 + 0 +LINE + 5 +2B8D + 8 +0 + 62 + 0 + 10 +34343.749925 + 20 +20519.15561 + 30 +0.0 + 11 +34362.499925 + 21 +20551.631563 + 31 +0.0 + 0 +LINE + 5 +2B8E + 8 +0 + 62 + 0 + 10 +34399.999925 + 20 +20616.583468 + 30 +0.0 + 11 +34418.749925 + 21 +20649.059421 + 31 +0.0 + 0 +LINE + 5 +2B8F + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20714.011326 + 30 +0.0 + 11 +34474.999925 + 21 +20746.487278 + 31 +0.0 + 0 +LINE + 5 +2B90 + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20811.439184 + 30 +0.0 + 11 +34531.249925 + 21 +20843.915136 + 31 +0.0 + 0 +LINE + 5 +2B91 + 8 +0 + 62 + 0 + 10 +34568.749925 + 20 +20908.867042 + 30 +0.0 + 11 +34580.951044 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2B92 + 8 +0 + 62 + 0 + 10 +34287.499925 + 20 +20486.679657 + 30 +0.0 + 11 +34306.249925 + 21 +20519.15561 + 31 +0.0 + 0 +LINE + 5 +2B93 + 8 +0 + 62 + 0 + 10 +34343.749925 + 20 +20584.107515 + 30 +0.0 + 11 +34362.499925 + 21 +20616.583468 + 31 +0.0 + 0 +LINE + 5 +2B94 + 8 +0 + 62 + 0 + 10 +34399.999925 + 20 +20681.535373 + 30 +0.0 + 11 +34418.749925 + 21 +20714.011326 + 31 +0.0 + 0 +LINE + 5 +2B95 + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20778.963231 + 30 +0.0 + 11 +34474.999925 + 21 +20811.439184 + 31 +0.0 + 0 +LINE + 5 +2B96 + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20876.391089 + 30 +0.0 + 11 +34531.249925 + 21 +20908.867042 + 31 +0.0 + 0 +LINE + 5 +2B97 + 8 +0 + 62 + 0 + 10 +34231.249925 + 20 +20454.203705 + 30 +0.0 + 11 +34249.999925 + 21 +20486.679657 + 31 +0.0 + 0 +LINE + 5 +2B98 + 8 +0 + 62 + 0 + 10 +34287.499925 + 20 +20551.631562 + 30 +0.0 + 11 +34306.249925 + 21 +20584.107515 + 31 +0.0 + 0 +LINE + 5 +2B99 + 8 +0 + 62 + 0 + 10 +34343.749925 + 20 +20649.05942 + 30 +0.0 + 11 +34362.499925 + 21 +20681.535373 + 31 +0.0 + 0 +LINE + 5 +2B9A + 8 +0 + 62 + 0 + 10 +34399.999925 + 20 +20746.487278 + 30 +0.0 + 11 +34418.749925 + 21 +20778.963231 + 31 +0.0 + 0 +LINE + 5 +2B9B + 8 +0 + 62 + 0 + 10 +34456.249925 + 20 +20843.915136 + 30 +0.0 + 11 +34474.999925 + 21 +20876.391089 + 31 +0.0 + 0 +LINE + 5 +2B9C + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20519.15561 + 30 +0.0 + 11 +34249.999926 + 21 +20551.631562 + 31 +0.0 + 0 +LINE + 5 +2B9D + 8 +0 + 62 + 0 + 10 +34287.499926 + 20 +20616.583468 + 30 +0.0 + 11 +34306.249926 + 21 +20649.05942 + 31 +0.0 + 0 +LINE + 5 +2B9E + 8 +0 + 62 + 0 + 10 +34343.749926 + 20 +20714.011326 + 30 +0.0 + 11 +34362.499926 + 21 +20746.487278 + 31 +0.0 + 0 +LINE + 5 +2B9F + 8 +0 + 62 + 0 + 10 +34399.999926 + 20 +20811.439184 + 30 +0.0 + 11 +34418.749926 + 21 +20843.915136 + 31 +0.0 + 0 +LINE + 5 +2BA0 + 8 +0 + 62 + 0 + 10 +34456.249926 + 20 +20908.867041 + 30 +0.0 + 11 +34468.451045 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2BA1 + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20584.107515 + 30 +0.0 + 11 +34249.999926 + 21 +20616.583468 + 31 +0.0 + 0 +LINE + 5 +2BA2 + 8 +0 + 62 + 0 + 10 +34287.499926 + 20 +20681.535373 + 30 +0.0 + 11 +34306.249926 + 21 +20714.011326 + 31 +0.0 + 0 +LINE + 5 +2BA3 + 8 +0 + 62 + 0 + 10 +34343.749926 + 20 +20778.963231 + 30 +0.0 + 11 +34362.499926 + 21 +20811.439183 + 31 +0.0 + 0 +LINE + 5 +2BA4 + 8 +0 + 62 + 0 + 10 +34399.999926 + 20 +20876.391089 + 30 +0.0 + 11 +34418.749926 + 21 +20908.867041 + 31 +0.0 + 0 +LINE + 5 +2BA5 + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20649.05942 + 30 +0.0 + 11 +34249.999926 + 21 +20681.535373 + 31 +0.0 + 0 +LINE + 5 +2BA6 + 8 +0 + 62 + 0 + 10 +34287.499926 + 20 +20746.487278 + 30 +0.0 + 11 +34306.249926 + 21 +20778.963231 + 31 +0.0 + 0 +LINE + 5 +2BA7 + 8 +0 + 62 + 0 + 10 +34343.749926 + 20 +20843.915136 + 30 +0.0 + 11 +34362.499926 + 21 +20876.391089 + 31 +0.0 + 0 +LINE + 5 +2BA8 + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20714.011325 + 30 +0.0 + 11 +34249.999926 + 21 +20746.487278 + 31 +0.0 + 0 +LINE + 5 +2BA9 + 8 +0 + 62 + 0 + 10 +34287.499926 + 20 +20811.439183 + 30 +0.0 + 11 +34306.249926 + 21 +20843.915136 + 31 +0.0 + 0 +LINE + 5 +2BAA + 8 +0 + 62 + 0 + 10 +34343.749926 + 20 +20908.867041 + 30 +0.0 + 11 +34355.951045 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2BAB + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20778.963231 + 30 +0.0 + 11 +34249.999926 + 21 +20811.439183 + 31 +0.0 + 0 +LINE + 5 +2BAC + 8 +0 + 62 + 0 + 10 +34287.499926 + 20 +20876.391089 + 30 +0.0 + 11 +34306.249926 + 21 +20908.867041 + 31 +0.0 + 0 +LINE + 5 +2BAD + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20843.915136 + 30 +0.0 + 11 +34249.999926 + 21 +20876.391088 + 31 +0.0 + 0 +LINE + 5 +2BAE + 8 +0 + 62 + 0 + 10 +34231.249926 + 20 +20908.867041 + 30 +0.0 + 11 +34243.451046 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2BAF + 8 +0 + 62 + 0 + 10 +34512.499925 + 20 +20486.679658 + 30 +0.0 + 11 +34531.249925 + 21 +20519.15561 + 31 +0.0 + 0 +LINE + 5 +2BB0 + 8 +0 + 62 + 0 + 10 +34568.749925 + 20 +20584.107516 + 30 +0.0 + 11 +34587.499925 + 21 +20616.583468 + 31 +0.0 + 0 +LINE + 5 +2BB1 + 8 +0 + 62 + 0 + 10 +34624.999925 + 20 +20681.535374 + 30 +0.0 + 11 +34643.749925 + 21 +20714.011326 + 31 +0.0 + 0 +LINE + 5 +2BB2 + 8 +0 + 62 + 0 + 10 +34681.249925 + 20 +20778.963231 + 30 +0.0 + 11 +34699.999925 + 21 +20811.439184 + 31 +0.0 + 0 +LINE + 5 +2BB3 + 8 +0 + 62 + 0 + 10 +34737.499925 + 20 +20876.391089 + 30 +0.0 + 11 +34756.249925 + 21 +20908.867042 + 31 +0.0 + 0 +LINE + 5 +2BB4 + 8 +0 + 62 + 0 + 10 +34517.275909 + 20 +20430.0 + 30 +0.0 + 11 +34531.249924 + 21 +20454.203705 + 31 +0.0 + 0 +LINE + 5 +2BB5 + 8 +0 + 62 + 0 + 10 +34568.749924 + 20 +20519.15561 + 30 +0.0 + 11 +34587.499924 + 21 +20551.631563 + 31 +0.0 + 0 +LINE + 5 +2BB6 + 8 +0 + 62 + 0 + 10 +34624.999924 + 20 +20616.583468 + 30 +0.0 + 11 +34643.749924 + 21 +20649.059421 + 31 +0.0 + 0 +LINE + 5 +2BB7 + 8 +0 + 62 + 0 + 10 +34681.249924 + 20 +20714.011326 + 30 +0.0 + 11 +34699.999924 + 21 +20746.487279 + 31 +0.0 + 0 +LINE + 5 +2BB8 + 8 +0 + 62 + 0 + 10 +34737.499924 + 20 +20811.439184 + 30 +0.0 + 11 +34756.249924 + 21 +20843.915137 + 31 +0.0 + 0 +LINE + 5 +2BB9 + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20908.867042 + 30 +0.0 + 11 +34805.951043 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2BBA + 8 +0 + 62 + 0 + 10 +34568.749924 + 20 +20454.203705 + 30 +0.0 + 11 +34587.499924 + 21 +20486.679658 + 31 +0.0 + 0 +LINE + 5 +2BBB + 8 +0 + 62 + 0 + 10 +34624.999924 + 20 +20551.631563 + 30 +0.0 + 11 +34643.749924 + 21 +20584.107516 + 31 +0.0 + 0 +LINE + 5 +2BBC + 8 +0 + 62 + 0 + 10 +34681.249924 + 20 +20649.059421 + 30 +0.0 + 11 +34699.999924 + 21 +20681.535374 + 31 +0.0 + 0 +LINE + 5 +2BBD + 8 +0 + 62 + 0 + 10 +34737.499924 + 20 +20746.487279 + 30 +0.0 + 11 +34756.249924 + 21 +20778.963232 + 31 +0.0 + 0 +LINE + 5 +2BBE + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20843.915137 + 30 +0.0 + 11 +34812.499924 + 21 +20876.39109 + 31 +0.0 + 0 +LINE + 5 +2BBF + 8 +0 + 62 + 0 + 10 +34624.999924 + 20 +20486.679658 + 30 +0.0 + 11 +34643.749924 + 21 +20519.155611 + 31 +0.0 + 0 +LINE + 5 +2BC0 + 8 +0 + 62 + 0 + 10 +34681.249924 + 20 +20584.107516 + 30 +0.0 + 11 +34699.999924 + 21 +20616.583468 + 31 +0.0 + 0 +LINE + 5 +2BC1 + 8 +0 + 62 + 0 + 10 +34737.499924 + 20 +20681.535374 + 30 +0.0 + 11 +34756.249924 + 21 +20714.011326 + 31 +0.0 + 0 +LINE + 5 +2BC2 + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20778.963232 + 30 +0.0 + 11 +34812.499924 + 21 +20811.439184 + 31 +0.0 + 0 +LINE + 5 +2BC3 + 8 +0 + 62 + 0 + 10 +34849.999924 + 20 +20876.39109 + 30 +0.0 + 11 +34868.749924 + 21 +20908.867042 + 31 +0.0 + 0 +LINE + 5 +2BC4 + 8 +0 + 62 + 0 + 10 +34629.775908 + 20 +20430.0 + 30 +0.0 + 11 +34643.749924 + 21 +20454.203705 + 31 +0.0 + 0 +LINE + 5 +2BC5 + 8 +0 + 62 + 0 + 10 +34681.249924 + 20 +20519.155611 + 30 +0.0 + 11 +34699.999924 + 21 +20551.631563 + 31 +0.0 + 0 +LINE + 5 +2BC6 + 8 +0 + 62 + 0 + 10 +34737.499924 + 20 +20616.583469 + 30 +0.0 + 11 +34756.249924 + 21 +20649.059421 + 31 +0.0 + 0 +LINE + 5 +2BC7 + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20714.011326 + 30 +0.0 + 11 +34812.499924 + 21 +20746.487279 + 31 +0.0 + 0 +LINE + 5 +2BC8 + 8 +0 + 62 + 0 + 10 +34849.999924 + 20 +20811.439184 + 30 +0.0 + 11 +34868.749924 + 21 +20843.915137 + 31 +0.0 + 0 +LINE + 5 +2BC9 + 8 +0 + 62 + 0 + 10 +34906.249924 + 20 +20908.867042 + 30 +0.0 + 11 +34918.451043 + 21 +20930.0 + 31 +0.0 + 0 +LINE + 5 +2BCA + 8 +0 + 62 + 0 + 10 +34681.249924 + 20 +20454.203705 + 30 +0.0 + 11 +34699.999924 + 21 +20486.679658 + 31 +0.0 + 0 +LINE + 5 +2BCB + 8 +0 + 62 + 0 + 10 +34737.499924 + 20 +20551.631563 + 30 +0.0 + 11 +34756.249924 + 21 +20584.107516 + 31 +0.0 + 0 +LINE + 5 +2BCC + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20649.059421 + 30 +0.0 + 11 +34812.499924 + 21 +20681.535374 + 31 +0.0 + 0 +LINE + 5 +2BCD + 8 +0 + 62 + 0 + 10 +34849.999924 + 20 +20746.487279 + 30 +0.0 + 11 +34868.749924 + 21 +20778.963232 + 31 +0.0 + 0 +LINE + 5 +2BCE + 8 +0 + 62 + 0 + 10 +34906.249924 + 20 +20843.915137 + 30 +0.0 + 11 +34924.999924 + 21 +20876.39109 + 31 +0.0 + 0 +LINE + 5 +2BCF + 8 +0 + 62 + 0 + 10 +34737.499924 + 20 +20486.679658 + 30 +0.0 + 11 +34756.249924 + 21 +20519.155611 + 31 +0.0 + 0 +LINE + 5 +2BD0 + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20584.107516 + 30 +0.0 + 11 +34812.499924 + 21 +20616.583469 + 31 +0.0 + 0 +LINE + 5 +2BD1 + 8 +0 + 62 + 0 + 10 +34849.999924 + 20 +20681.535374 + 30 +0.0 + 11 +34868.749924 + 21 +20714.011327 + 31 +0.0 + 0 +LINE + 5 +2BD2 + 8 +0 + 62 + 0 + 10 +34906.249924 + 20 +20778.963232 + 30 +0.0 + 11 +34924.999924 + 21 +20811.439185 + 31 +0.0 + 0 +LINE + 5 +2BD3 + 8 +0 + 62 + 0 + 10 +34962.499924 + 20 +20876.39109 + 30 +0.0 + 11 +34970.0 + 21 +20889.381603 + 31 +0.0 + 0 +LINE + 5 +2BD4 + 8 +0 + 62 + 0 + 10 +34742.275908 + 20 +20430.0 + 30 +0.0 + 11 +34756.249924 + 21 +20454.203706 + 31 +0.0 + 0 +LINE + 5 +2BD5 + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20519.155611 + 30 +0.0 + 11 +34812.499924 + 21 +20551.631563 + 31 +0.0 + 0 +LINE + 5 +2BD6 + 8 +0 + 62 + 0 + 10 +34849.999924 + 20 +20616.583469 + 30 +0.0 + 11 +34868.749924 + 21 +20649.059421 + 31 +0.0 + 0 +LINE + 5 +2BD7 + 8 +0 + 62 + 0 + 10 +34906.249924 + 20 +20714.011327 + 30 +0.0 + 11 +34924.999924 + 21 +20746.487279 + 31 +0.0 + 0 +LINE + 5 +2BD8 + 8 +0 + 62 + 0 + 10 +34962.499924 + 20 +20811.439185 + 30 +0.0 + 11 +34970.0 + 21 +20824.429698 + 31 +0.0 + 0 +LINE + 5 +2BD9 + 8 +0 + 62 + 0 + 10 +34793.749924 + 20 +20454.203706 + 30 +0.0 + 11 +34812.499924 + 21 +20486.679658 + 31 +0.0 + 0 +LINE + 5 +2BDA + 8 +0 + 62 + 0 + 10 +34849.999924 + 20 +20551.631564 + 30 +0.0 + 11 +34868.749924 + 21 +20584.107516 + 31 +0.0 + 0 +LINE + 5 +2BDB + 8 +0 + 62 + 0 + 10 +34906.249924 + 20 +20649.059421 + 30 +0.0 + 11 +34924.999924 + 21 +20681.535374 + 31 +0.0 + 0 +LINE + 5 +2BDC + 8 +0 + 62 + 0 + 10 +34962.499924 + 20 +20746.487279 + 30 +0.0 + 11 +34970.0 + 21 +20759.477793 + 31 +0.0 + 0 +LINE + 5 +2BDD + 8 +0 + 62 + 0 + 10 +34849.999923 + 20 +20486.679658 + 30 +0.0 + 11 +34868.749923 + 21 +20519.155611 + 31 +0.0 + 0 +LINE + 5 +2BDE + 8 +0 + 62 + 0 + 10 +34906.249923 + 20 +20584.107516 + 30 +0.0 + 11 +34924.999923 + 21 +20616.583469 + 31 +0.0 + 0 +LINE + 5 +2BDF + 8 +0 + 62 + 0 + 10 +34962.499923 + 20 +20681.535374 + 30 +0.0 + 11 +34970.0 + 21 +20694.525888 + 31 +0.0 + 0 +LINE + 5 +2BE0 + 8 +0 + 62 + 0 + 10 +34854.775907 + 20 +20430.0 + 30 +0.0 + 11 +34868.749923 + 21 +20454.203706 + 31 +0.0 + 0 +LINE + 5 +2BE1 + 8 +0 + 62 + 0 + 10 +34906.249923 + 20 +20519.155611 + 30 +0.0 + 11 +34924.999923 + 21 +20551.631564 + 31 +0.0 + 0 +LINE + 5 +2BE2 + 8 +0 + 62 + 0 + 10 +34962.499923 + 20 +20616.583469 + 30 +0.0 + 11 +34970.0 + 21 +20629.573983 + 31 +0.0 + 0 +LINE + 5 +2BE3 + 8 +0 + 62 + 0 + 10 +34906.249923 + 20 +20454.203706 + 30 +0.0 + 11 +34924.999923 + 21 +20486.679658 + 31 +0.0 + 0 +LINE + 5 +2BE4 + 8 +0 + 62 + 0 + 10 +34962.499923 + 20 +20551.631564 + 30 +0.0 + 11 +34970.0 + 21 +20564.622078 + 31 +0.0 + 0 +LINE + 5 +2BE5 + 8 +0 + 62 + 0 + 10 +34962.499923 + 20 +20486.679659 + 30 +0.0 + 11 +34970.0 + 21 +20499.670173 + 31 +0.0 + 0 +LINE + 5 +2BE6 + 8 +0 + 62 + 0 + 10 +34967.275907 + 20 +20430.0 + 30 +0.0 + 11 +34970.0 + 21 +20434.718268 + 31 +0.0 + 0 +ENDBLK + 5 +2BE7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X205 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X205 + 1 + + 0 +LINE + 5 +2BE9 + 8 +0 + 62 + 0 + 10 +34271.883092 + 20 +19430.0 + 30 +0.0 + 11 +34771.883092 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BEA + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +19554.893603 + 30 +0.0 + 11 +34595.106397 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BEB + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +19731.670299 + 30 +0.0 + 11 +34418.329701 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BEC + 8 +0 + 62 + 0 + 10 +34220.0 + 20 +19908.446994 + 30 +0.0 + 11 +34241.553006 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BED + 8 +0 + 62 + 0 + 10 +34448.659787 + 20 +19430.0 + 30 +0.0 + 11 +34948.659787 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BEE + 8 +0 + 62 + 0 + 10 +34625.436483 + 20 +19430.0 + 30 +0.0 + 11 +34970.0 + 21 +19774.563517 + 31 +0.0 + 0 +LINE + 5 +2BEF + 8 +0 + 62 + 0 + 10 +34802.213178 + 20 +19430.0 + 30 +0.0 + 11 +34970.0 + 21 +19597.786822 + 31 +0.0 + 0 +LINE + 5 +2BF0 + 8 +0 + 62 + 0 + 10 +34771.533137 + 20 +19430.0 + 30 +0.0 + 11 +34271.533137 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BF1 + 8 +0 + 62 + 0 + 10 +34594.756442 + 20 +19430.0 + 30 +0.0 + 11 +34220.0 + 21 +19804.756442 + 31 +0.0 + 0 +LINE + 5 +2BF2 + 8 +0 + 62 + 0 + 10 +34417.979746 + 20 +19430.0 + 30 +0.0 + 11 +34220.0 + 21 +19627.979746 + 31 +0.0 + 0 +LINE + 5 +2BF3 + 8 +0 + 62 + 0 + 10 +34241.203051 + 20 +19430.0 + 30 +0.0 + 11 +34220.0 + 21 +19451.203051 + 31 +0.0 + 0 +LINE + 5 +2BF4 + 8 +0 + 62 + 0 + 10 +34948.309832 + 20 +19430.0 + 30 +0.0 + 11 +34448.309832 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BF5 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +19585.086528 + 30 +0.0 + 11 +34625.086528 + 21 +19930.0 + 31 +0.0 + 0 +LINE + 5 +2BF6 + 8 +0 + 62 + 0 + 10 +34970.0 + 20 +19761.863223 + 30 +0.0 + 11 +34801.863223 + 21 +19930.0 + 31 +0.0 + 0 +ENDBLK + 5 +2BF7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D206 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D206 + 1 + + 0 +LINE + 5 +2BF9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +33321.0 + 20 +5405.0 + 30 +0.0 + 11 +33894.0 + 21 +5405.0 + 31 +0.0 + 0 +INSERT + 5 +2BFA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +33320.0 + 20 +5405.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2BFB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +33895.0 + 20 +5405.0 + 30 +0.0 + 0 +TEXT + 5 +2BFC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +33541.875 + 20 +5492.5 + 30 +0.0 + 40 +175.0 + 1 +11 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +33607.5 + 21 +5580.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2BFD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +33320.0 + 20 +6755.0 + 30 +0.0 + 0 +POINT + 5 +2BFE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +33895.0 + 20 +6755.0 + 30 +0.0 + 0 +POINT + 5 +2BFF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +33895.0 + 20 +5405.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C00 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D207 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D207 + 1 + + 0 +LINE + 5 +2C02 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +33896.0 + 20 +5405.0 + 30 +0.0 + 11 +34199.0 + 21 +5405.0 + 31 +0.0 + 0 +INSERT + 5 +2C03 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +33895.0 + 20 +5405.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C04 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +34200.0 + 20 +5405.0 + 30 +0.0 + 0 +TEXT + 5 +2C05 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +34003.75 + 20 +5492.5 + 30 +0.0 + 40 +175.0 + 1 +6 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +34047.5 + 21 +5580.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C06 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +33895.0 + 20 +6755.0 + 30 +0.0 + 0 +POINT + 5 +2C07 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +34200.0 + 20 +6775.0 + 30 +0.0 + 0 +POINT + 5 +2C08 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +34200.0 + 20 +5405.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C09 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D208 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D208 + 1 + + 0 +LINE + 5 +2C0B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +34201.0 + 20 +5405.0 + 30 +0.0 + 11 +34599.0 + 21 +5405.0 + 31 +0.0 + 0 +INSERT + 5 +2C0C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +34200.0 + 20 +5405.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C0D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +34600.0 + 20 +5405.0 + 30 +0.0 + 0 +TEXT + 5 +2C0E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +34356.25 + 20 +5492.5 + 30 +0.0 + 40 +175.0 + 1 +8 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +34400.0 + 21 +5580.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C0F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +34200.0 + 20 +6775.0 + 30 +0.0 + 0 +POINT + 5 +2C10 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +34600.0 + 20 +6775.0 + 30 +0.0 + 0 +POINT + 5 +2C11 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +34600.0 + 20 +5405.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C12 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D209 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D209 + 1 + + 0 +LINE + 5 +2C14 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +34601.0 + 20 +5405.0 + 30 +0.0 + 11 +36424.0 + 21 +5405.0 + 31 +0.0 + 0 +INSERT + 5 +2C15 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +34600.0 + 20 +5405.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C16 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +36425.0 + 20 +5405.0 + 30 +0.0 + 0 +TEXT + 5 +2C17 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +35403.125 + 20 +5492.5 + 30 +0.0 + 40 +175.0 + 1 +36 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +35512.5 + 21 +5580.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C18 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +34600.0 + 20 +6775.0 + 30 +0.0 + 0 +POINT + 5 +2C19 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +36425.0 + 20 +6755.0 + 30 +0.0 + 0 +POINT + 5 +2C1A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +36425.0 + 20 +5405.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C1B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D210 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D210 + 1 + + 0 +LINE + 5 +2C1D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +36426.0 + 20 +5405.0 + 30 +0.0 + 11 +36504.0 + 21 +5405.0 + 31 +0.0 + 0 +INSERT + 5 +2C1E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +36425.0 + 20 +5405.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C1F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +36505.0 + 20 +5405.0 + 30 +0.0 + 0 +TEXT + 5 +2C20 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +36558.125 + 20 +5492.5 + 30 +0.0 + 40 +175.0 + 1 +1 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +36580.0 + 21 +5580.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C21 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +36425.0 + 20 +6755.0 + 30 +0.0 + 0 +POINT + 5 +2C22 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +36505.0 + 20 +6755.0 + 30 +0.0 + 0 +POINT + 5 +2C23 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +36505.0 + 20 +5405.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C24 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D211 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D211 + 1 + + 0 +LINE + 5 +2C26 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +37996.0 + 20 +9155.0 + 30 +0.0 + 11 +38574.0 + 21 +9155.0 + 31 +0.0 + 0 +INSERT + 5 +2C27 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +37995.0 + 20 +9155.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C28 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +38575.0 + 20 +9155.0 + 30 +0.0 + 0 +TEXT + 5 +2C29 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +38219.375 + 20 +9242.5 + 30 +0.0 + 40 +175.0 + 1 +11 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +38285.0 + 21 +9330.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C2A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +37995.0 + 20 +10130.0 + 30 +0.0 + 0 +POINT + 5 +2C2B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +38575.0 + 20 +10130.0 + 30 +0.0 + 0 +POINT + 5 +2C2C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +38575.0 + 20 +9155.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C2D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D212 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D212 + 1 + + 0 +LINE + 5 +2C2F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +38576.0 + 20 +9155.0 + 30 +0.0 + 11 +39239.0 + 21 +9155.0 + 31 +0.0 + 0 +INSERT + 5 +2C30 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +38575.0 + 20 +9155.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C31 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +39240.0 + 20 +9155.0 + 30 +0.0 + 0 +TEXT + 5 +2C32 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +38820.0 + 20 +9242.5 + 30 +0.0 + 40 +175.0 + 1 +13 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +38907.5 + 21 +9330.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C33 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +38575.0 + 20 +10130.0 + 30 +0.0 + 0 +POINT + 5 +2C34 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39240.0 + 20 +10720.0 + 30 +0.0 + 0 +POINT + 5 +2C35 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39240.0 + 20 +9155.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C36 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D213 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D213 + 1 + + 0 +LINE + 5 +2C38 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +39241.0 + 20 +9155.0 + 30 +0.0 + 11 +39834.0 + 21 +9155.0 + 31 +0.0 + 0 +INSERT + 5 +2C39 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +39240.0 + 20 +9155.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +2C3A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +39835.0 + 20 +9155.0 + 30 +0.0 + 0 +TEXT + 5 +2C3B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +39471.875 + 20 +9242.5 + 30 +0.0 + 40 +175.0 + 1 +11 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +39537.5 + 21 +9330.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C3C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39240.0 + 20 +10720.0 + 30 +0.0 + 0 +POINT + 5 +2C3D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39835.0 + 20 +10125.0 + 30 +0.0 + 0 +POINT + 5 +2C3E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39835.0 + 20 +9155.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C3F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D214 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D214 + 1 + + 0 +LINE + 5 +2C41 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +13254.0 + 30 +0.0 + 11 +40740.0 + 21 +12626.0 + 31 +0.0 + 0 +INSERT + 5 +2C42 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +13255.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2C43 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +12625.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2C44 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40652.5 + 20 +12852.5 + 30 +0.0 + 40 +175.0 + 1 +12 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +40565.0 + 21 +12940.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C45 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39815.0 + 20 +13255.0 + 30 +0.0 + 0 +POINT + 5 +2C46 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39815.0 + 20 +12625.0 + 30 +0.0 + 0 +POINT + 5 +2C47 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +12625.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C48 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D215 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D215 + 1 + + 0 +LINE + 5 +2C4A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +12624.0 + 30 +0.0 + 11 +40740.0 + 21 +11956.0 + 31 +0.0 + 0 +INSERT + 5 +2C4B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +12625.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2C4C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +11955.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2C4D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40652.5 + 20 +12202.5 + 30 +0.0 + 40 +175.0 + 1 +13 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +40565.0 + 21 +12290.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C4E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39815.0 + 20 +12625.0 + 30 +0.0 + 0 +POINT + 5 +2C4F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39250.0 + 20 +11955.0 + 30 +0.0 + 0 +POINT + 5 +2C50 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +11955.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C51 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D216 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D216 + 1 + + 0 +LINE + 5 +2C53 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +11954.0 + 30 +0.0 + 11 +40740.0 + 21 +11366.0 + 31 +0.0 + 0 +INSERT + 5 +2C54 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +11955.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2C55 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +11365.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2C56 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40652.5 + 20 +11594.375 + 30 +0.0 + 40 +175.0 + 1 +11 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +40565.0 + 21 +11660.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C57 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39250.0 + 20 +11955.0 + 30 +0.0 + 0 +POINT + 5 +2C58 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39240.0 + 20 +11365.0 + 30 +0.0 + 0 +POINT + 5 +2C59 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +11365.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C5A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D217 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D217 + 1 + + 0 +LINE + 5 +2C5C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +11364.0 + 30 +0.0 + 11 +40740.0 + 21 +10706.0 + 31 +0.0 + 0 +INSERT + 5 +2C5D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +11365.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +2C5E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +40740.0 + 20 +10705.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +2C5F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +40652.5 + 20 +10947.5 + 30 +0.0 + 40 +175.0 + 1 +13 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +40565.0 + 21 +11035.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2C60 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39240.0 + 20 +11365.0 + 30 +0.0 + 0 +POINT + 5 +2C61 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +39240.0 + 20 +10705.0 + 30 +0.0 + 0 +POINT + 5 +2C62 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +40740.0 + 20 +10705.0 + 30 +0.0 + 0 +ENDBLK + 5 +2C63 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X218 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X218 + 1 + + 0 +LINE + 5 +2C65 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9986.355394 + 30 +0.0 + 11 +34265.625 + 21 +9986.355394 + 31 +0.0 + 0 +LINE + 5 +2C66 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9986.355394 + 30 +0.0 + 11 +34546.875 + 21 +9986.355394 + 31 +0.0 + 0 +LINE + 5 +2C67 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +10067.545275 + 30 +0.0 + 11 +34406.25 + 21 +10067.545275 + 31 +0.0 + 0 +LINE + 5 +2C68 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +10067.545275 + 30 +0.0 + 11 +34600.0 + 21 +10067.545275 + 31 +0.0 + 0 +LINE + 5 +2C69 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +10148.735156 + 30 +0.0 + 11 +34265.625 + 21 +10148.735156 + 31 +0.0 + 0 +LINE + 5 +2C6A + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +10148.735156 + 30 +0.0 + 11 +34546.875 + 21 +10148.735156 + 31 +0.0 + 0 +LINE + 5 +2C6B + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +10229.925038 + 30 +0.0 + 11 +34406.25 + 21 +10229.925038 + 31 +0.0 + 0 +LINE + 5 +2C6C + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +10229.925038 + 30 +0.0 + 11 +34600.0 + 21 +10229.925038 + 31 +0.0 + 0 +LINE + 5 +2C6D + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +10311.114919 + 30 +0.0 + 11 +34265.625 + 21 +10311.114919 + 31 +0.0 + 0 +LINE + 5 +2C6E + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +10311.114919 + 30 +0.0 + 11 +34546.875 + 21 +10311.114919 + 31 +0.0 + 0 +LINE + 5 +2C6F + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +10392.3048 + 30 +0.0 + 11 +34406.25 + 21 +10392.3048 + 31 +0.0 + 0 +LINE + 5 +2C70 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +10392.3048 + 30 +0.0 + 11 +34600.0 + 21 +10392.3048 + 31 +0.0 + 0 +LINE + 5 +2C71 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +10473.494681 + 30 +0.0 + 11 +34265.625 + 21 +10473.494681 + 31 +0.0 + 0 +LINE + 5 +2C72 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +10473.494681 + 30 +0.0 + 11 +34546.875 + 21 +10473.494681 + 31 +0.0 + 0 +LINE + 5 +2C73 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +10554.684563 + 30 +0.0 + 11 +34406.25 + 21 +10554.684563 + 31 +0.0 + 0 +LINE + 5 +2C74 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +10554.684563 + 30 +0.0 + 11 +34600.0 + 21 +10554.684563 + 31 +0.0 + 0 +LINE + 5 +2C75 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +10635.874444 + 30 +0.0 + 11 +34265.625 + 21 +10635.874444 + 31 +0.0 + 0 +LINE + 5 +2C76 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +10635.874444 + 30 +0.0 + 11 +34546.875 + 21 +10635.874444 + 31 +0.0 + 0 +LINE + 5 +2C77 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +10717.064325 + 30 +0.0 + 11 +34406.25 + 21 +10717.064325 + 31 +0.0 + 0 +LINE + 5 +2C78 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +10717.064325 + 30 +0.0 + 11 +34600.0 + 21 +10717.064325 + 31 +0.0 + 0 +LINE + 5 +2C79 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +10798.254206 + 30 +0.0 + 11 +34265.625 + 21 +10798.254206 + 31 +0.0 + 0 +LINE + 5 +2C7A + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +10798.254206 + 30 +0.0 + 11 +34546.875 + 21 +10798.254206 + 31 +0.0 + 0 +LINE + 5 +2C7B + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +10879.444088 + 30 +0.0 + 11 +34406.25 + 21 +10879.444088 + 31 +0.0 + 0 +LINE + 5 +2C7C + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +10879.444088 + 30 +0.0 + 11 +34600.0 + 21 +10879.444088 + 31 +0.0 + 0 +LINE + 5 +2C7D + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +10960.633969 + 30 +0.0 + 11 +34265.625 + 21 +10960.633969 + 31 +0.0 + 0 +LINE + 5 +2C7E + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +10960.633969 + 30 +0.0 + 11 +34546.875 + 21 +10960.633969 + 31 +0.0 + 0 +LINE + 5 +2C7F + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +11041.82385 + 30 +0.0 + 11 +34406.25 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +2C80 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +11041.82385 + 30 +0.0 + 11 +34600.0 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +2C81 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +11123.013731 + 30 +0.0 + 11 +34265.625 + 21 +11123.013731 + 31 +0.0 + 0 +LINE + 5 +2C82 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +11123.013731 + 30 +0.0 + 11 +34546.875 + 21 +11123.013731 + 31 +0.0 + 0 +LINE + 5 +2C83 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +11204.203613 + 30 +0.0 + 11 +34406.25 + 21 +11204.203613 + 31 +0.0 + 0 +LINE + 5 +2C84 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +11204.203613 + 30 +0.0 + 11 +34600.0 + 21 +11204.203613 + 31 +0.0 + 0 +LINE + 5 +2C85 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +11285.393494 + 30 +0.0 + 11 +34265.625 + 21 +11285.393494 + 31 +0.0 + 0 +LINE + 5 +2C86 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +11285.393494 + 30 +0.0 + 11 +34546.875 + 21 +11285.393494 + 31 +0.0 + 0 +LINE + 5 +2C87 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +11366.583375 + 30 +0.0 + 11 +34406.25 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +2C88 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +11366.583375 + 30 +0.0 + 11 +34600.0 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +2C89 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +11447.773256 + 30 +0.0 + 11 +34265.625 + 21 +11447.773256 + 31 +0.0 + 0 +LINE + 5 +2C8A + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +11447.773256 + 30 +0.0 + 11 +34546.875 + 21 +11447.773256 + 31 +0.0 + 0 +LINE + 5 +2C8B + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +11528.963138 + 30 +0.0 + 11 +34406.25 + 21 +11528.963138 + 31 +0.0 + 0 +LINE + 5 +2C8C + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +11528.963138 + 30 +0.0 + 11 +34600.0 + 21 +11528.963138 + 31 +0.0 + 0 +LINE + 5 +2C8D + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +11610.153019 + 30 +0.0 + 11 +34265.625 + 21 +11610.153019 + 31 +0.0 + 0 +LINE + 5 +2C8E + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +11610.153019 + 30 +0.0 + 11 +34546.875 + 21 +11610.153019 + 31 +0.0 + 0 +LINE + 5 +2C8F + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +11691.3429 + 30 +0.0 + 11 +34406.25 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +2C90 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +11691.3429 + 30 +0.0 + 11 +34600.0 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +2C91 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +11772.532781 + 30 +0.0 + 11 +34265.625 + 21 +11772.532781 + 31 +0.0 + 0 +LINE + 5 +2C92 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +11772.532781 + 30 +0.0 + 11 +34546.875 + 21 +11772.532781 + 31 +0.0 + 0 +LINE + 5 +2C93 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +11853.722663 + 30 +0.0 + 11 +34406.25 + 21 +11853.722663 + 31 +0.0 + 0 +LINE + 5 +2C94 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +11853.722663 + 30 +0.0 + 11 +34600.0 + 21 +11853.722663 + 31 +0.0 + 0 +LINE + 5 +2C95 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +11934.912544 + 30 +0.0 + 11 +34265.625 + 21 +11934.912544 + 31 +0.0 + 0 +LINE + 5 +2C96 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +11934.912544 + 30 +0.0 + 11 +34546.875 + 21 +11934.912544 + 31 +0.0 + 0 +LINE + 5 +2C97 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12016.102425 + 30 +0.0 + 11 +34406.25 + 21 +12016.102425 + 31 +0.0 + 0 +LINE + 5 +2C98 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12016.102425 + 30 +0.0 + 11 +34600.0 + 21 +12016.102425 + 31 +0.0 + 0 +LINE + 5 +2C99 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +12097.292306 + 30 +0.0 + 11 +34265.625 + 21 +12097.292306 + 31 +0.0 + 0 +LINE + 5 +2C9A + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +12097.292306 + 30 +0.0 + 11 +34546.875 + 21 +12097.292306 + 31 +0.0 + 0 +LINE + 5 +2C9B + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12178.482188 + 30 +0.0 + 11 +34406.25 + 21 +12178.482188 + 31 +0.0 + 0 +LINE + 5 +2C9C + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12178.482188 + 30 +0.0 + 11 +34600.0 + 21 +12178.482188 + 31 +0.0 + 0 +LINE + 5 +2C9D + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +12259.672069 + 30 +0.0 + 11 +34265.625 + 21 +12259.672069 + 31 +0.0 + 0 +LINE + 5 +2C9E + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +12259.672069 + 30 +0.0 + 11 +34546.875 + 21 +12259.672069 + 31 +0.0 + 0 +LINE + 5 +2C9F + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12340.86195 + 30 +0.0 + 11 +34406.25 + 21 +12340.86195 + 31 +0.0 + 0 +LINE + 5 +2CA0 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12340.86195 + 30 +0.0 + 11 +34600.0 + 21 +12340.86195 + 31 +0.0 + 0 +LINE + 5 +2CA1 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +12422.051831 + 30 +0.0 + 11 +34265.625 + 21 +12422.051831 + 31 +0.0 + 0 +LINE + 5 +2CA2 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +12422.051831 + 30 +0.0 + 11 +34546.875 + 21 +12422.051831 + 31 +0.0 + 0 +LINE + 5 +2CA3 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12503.241713 + 30 +0.0 + 11 +34406.25 + 21 +12503.241713 + 31 +0.0 + 0 +LINE + 5 +2CA4 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12503.241713 + 30 +0.0 + 11 +34600.0 + 21 +12503.241713 + 31 +0.0 + 0 +LINE + 5 +2CA5 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +12584.431594 + 30 +0.0 + 11 +34265.625 + 21 +12584.431594 + 31 +0.0 + 0 +LINE + 5 +2CA6 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +12584.431594 + 30 +0.0 + 11 +34546.875 + 21 +12584.431594 + 31 +0.0 + 0 +LINE + 5 +2CA7 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12665.621475 + 30 +0.0 + 11 +34406.25 + 21 +12665.621475 + 31 +0.0 + 0 +LINE + 5 +2CA8 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12665.621475 + 30 +0.0 + 11 +34600.0 + 21 +12665.621475 + 31 +0.0 + 0 +LINE + 5 +2CA9 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +12746.811356 + 30 +0.0 + 11 +34265.625 + 21 +12746.811356 + 31 +0.0 + 0 +LINE + 5 +2CAA + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +12746.811356 + 30 +0.0 + 11 +34546.875 + 21 +12746.811356 + 31 +0.0 + 0 +LINE + 5 +2CAB + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12828.001238 + 30 +0.0 + 11 +34406.25 + 21 +12828.001238 + 31 +0.0 + 0 +LINE + 5 +2CAC + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12828.001238 + 30 +0.0 + 11 +34600.0 + 21 +12828.001238 + 31 +0.0 + 0 +LINE + 5 +2CAD + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +12909.191119 + 30 +0.0 + 11 +34265.625 + 21 +12909.191119 + 31 +0.0 + 0 +LINE + 5 +2CAE + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +12909.191119 + 30 +0.0 + 11 +34546.875 + 21 +12909.191119 + 31 +0.0 + 0 +LINE + 5 +2CAF + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +12990.381 + 30 +0.0 + 11 +34406.25 + 21 +12990.381 + 31 +0.0 + 0 +LINE + 5 +2CB0 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +12990.381 + 30 +0.0 + 11 +34600.0 + 21 +12990.381 + 31 +0.0 + 0 +LINE + 5 +2CB1 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +13071.570881 + 30 +0.0 + 11 +34265.625 + 21 +13071.570881 + 31 +0.0 + 0 +LINE + 5 +2CB2 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +13071.570881 + 30 +0.0 + 11 +34546.875 + 21 +13071.570881 + 31 +0.0 + 0 +LINE + 5 +2CB3 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +13152.760763 + 30 +0.0 + 11 +34406.25 + 21 +13152.760763 + 31 +0.0 + 0 +LINE + 5 +2CB4 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +13152.760763 + 30 +0.0 + 11 +34600.0 + 21 +13152.760763 + 31 +0.0 + 0 +LINE + 5 +2CB5 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +13233.950644 + 30 +0.0 + 11 +34265.625 + 21 +13233.950644 + 31 +0.0 + 0 +LINE + 5 +2CB6 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +13233.950644 + 30 +0.0 + 11 +34546.875 + 21 +13233.950644 + 31 +0.0 + 0 +LINE + 5 +2CB7 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +9905.165513 + 30 +0.0 + 11 +34406.25 + 21 +9905.165513 + 31 +0.0 + 0 +LINE + 5 +2CB8 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +9905.165513 + 30 +0.0 + 11 +34600.0 + 21 +9905.165513 + 31 +0.0 + 0 +LINE + 5 +2CB9 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9823.975631 + 30 +0.0 + 11 +34265.625 + 21 +9823.975631 + 31 +0.0 + 0 +LINE + 5 +2CBA + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9823.975631 + 30 +0.0 + 11 +34546.875 + 21 +9823.975631 + 31 +0.0 + 0 +LINE + 5 +2CBB + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +9742.78575 + 30 +0.0 + 11 +34406.25 + 21 +9742.78575 + 31 +0.0 + 0 +LINE + 5 +2CBC + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +9742.78575 + 30 +0.0 + 11 +34600.0 + 21 +9742.78575 + 31 +0.0 + 0 +LINE + 5 +2CBD + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9661.595869 + 30 +0.0 + 11 +34265.625 + 21 +9661.595869 + 31 +0.0 + 0 +LINE + 5 +2CBE + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9661.595869 + 30 +0.0 + 11 +34546.875 + 21 +9661.595869 + 31 +0.0 + 0 +LINE + 5 +2CBF + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +9580.405988 + 30 +0.0 + 11 +34406.25 + 21 +9580.405988 + 31 +0.0 + 0 +LINE + 5 +2CC0 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +9580.405988 + 30 +0.0 + 11 +34600.0 + 21 +9580.405988 + 31 +0.0 + 0 +LINE + 5 +2CC1 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9499.216106 + 30 +0.0 + 11 +34265.625 + 21 +9499.216106 + 31 +0.0 + 0 +LINE + 5 +2CC2 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9499.216106 + 30 +0.0 + 11 +34546.875 + 21 +9499.216106 + 31 +0.0 + 0 +LINE + 5 +2CC3 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +9418.026225 + 30 +0.0 + 11 +34406.25 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +2CC4 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +9418.026225 + 30 +0.0 + 11 +34600.0 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +2CC5 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9336.836344 + 30 +0.0 + 11 +34265.625 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +2CC6 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9336.836344 + 30 +0.0 + 11 +34546.875 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +2CC7 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +9255.646463 + 30 +0.0 + 11 +34406.25 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +2CC8 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +9255.646463 + 30 +0.0 + 11 +34600.0 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +2CC9 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9174.456581 + 30 +0.0 + 11 +34265.625 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +2CCA + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9174.456581 + 30 +0.0 + 11 +34546.875 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +2CCB + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +9093.2667 + 30 +0.0 + 11 +34406.25 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +2CCC + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +9093.2667 + 30 +0.0 + 11 +34600.0 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +2CCD + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +9012.076819 + 30 +0.0 + 11 +34265.625 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +2CCE + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +9012.076819 + 30 +0.0 + 11 +34546.875 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +2CCF + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +8930.886938 + 30 +0.0 + 11 +34406.25 + 21 +8930.886938 + 31 +0.0 + 0 +LINE + 5 +2CD0 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +8930.886938 + 30 +0.0 + 11 +34600.0 + 21 +8930.886938 + 31 +0.0 + 0 +LINE + 5 +2CD1 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +8849.697056 + 30 +0.0 + 11 +34265.625 + 21 +8849.697056 + 31 +0.0 + 0 +LINE + 5 +2CD2 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +8849.697056 + 30 +0.0 + 11 +34546.875 + 21 +8849.697056 + 31 +0.0 + 0 +LINE + 5 +2CD3 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +8768.507175 + 30 +0.0 + 11 +34406.25 + 21 +8768.507175 + 31 +0.0 + 0 +LINE + 5 +2CD4 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +8768.507175 + 30 +0.0 + 11 +34600.0 + 21 +8768.507175 + 31 +0.0 + 0 +LINE + 5 +2CD5 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +8687.317294 + 30 +0.0 + 11 +34265.625 + 21 +8687.317294 + 31 +0.0 + 0 +LINE + 5 +2CD6 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +8687.317294 + 30 +0.0 + 11 +34546.875 + 21 +8687.317294 + 31 +0.0 + 0 +LINE + 5 +2CD7 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +8606.127413 + 30 +0.0 + 11 +34406.25 + 21 +8606.127413 + 31 +0.0 + 0 +LINE + 5 +2CD8 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +8606.127413 + 30 +0.0 + 11 +34600.0 + 21 +8606.127413 + 31 +0.0 + 0 +LINE + 5 +2CD9 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +8524.937531 + 30 +0.0 + 11 +34265.625 + 21 +8524.937531 + 31 +0.0 + 0 +LINE + 5 +2CDA + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +8524.937531 + 30 +0.0 + 11 +34546.875 + 21 +8524.937531 + 31 +0.0 + 0 +LINE + 5 +2CDB + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +8443.74765 + 30 +0.0 + 11 +34406.25 + 21 +8443.74765 + 31 +0.0 + 0 +LINE + 5 +2CDC + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +8443.74765 + 30 +0.0 + 11 +34600.0 + 21 +8443.74765 + 31 +0.0 + 0 +LINE + 5 +2CDD + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +8362.557769 + 30 +0.0 + 11 +34265.625 + 21 +8362.557769 + 31 +0.0 + 0 +LINE + 5 +2CDE + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +8362.557769 + 30 +0.0 + 11 +34546.875 + 21 +8362.557769 + 31 +0.0 + 0 +LINE + 5 +2CDF + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +8281.367888 + 30 +0.0 + 11 +34406.25 + 21 +8281.367888 + 31 +0.0 + 0 +LINE + 5 +2CE0 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +8281.367888 + 30 +0.0 + 11 +34600.0 + 21 +8281.367888 + 31 +0.0 + 0 +LINE + 5 +2CE1 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +8200.178006 + 30 +0.0 + 11 +34265.625 + 21 +8200.178006 + 31 +0.0 + 0 +LINE + 5 +2CE2 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +8200.178006 + 30 +0.0 + 11 +34546.875 + 21 +8200.178006 + 31 +0.0 + 0 +LINE + 5 +2CE3 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +8118.988125 + 30 +0.0 + 11 +34406.25 + 21 +8118.988125 + 31 +0.0 + 0 +LINE + 5 +2CE4 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +8118.988125 + 30 +0.0 + 11 +34600.0 + 21 +8118.988125 + 31 +0.0 + 0 +LINE + 5 +2CE5 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +8037.798244 + 30 +0.0 + 11 +34265.625 + 21 +8037.798244 + 31 +0.0 + 0 +LINE + 5 +2CE6 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +8037.798244 + 30 +0.0 + 11 +34546.875 + 21 +8037.798244 + 31 +0.0 + 0 +LINE + 5 +2CE7 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +7956.608363 + 30 +0.0 + 11 +34406.25 + 21 +7956.608363 + 31 +0.0 + 0 +LINE + 5 +2CE8 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +7956.608363 + 30 +0.0 + 11 +34600.0 + 21 +7956.608363 + 31 +0.0 + 0 +LINE + 5 +2CE9 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +7875.418481 + 30 +0.0 + 11 +34265.625 + 21 +7875.418481 + 31 +0.0 + 0 +LINE + 5 +2CEA + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +7875.418481 + 30 +0.0 + 11 +34546.875 + 21 +7875.418481 + 31 +0.0 + 0 +LINE + 5 +2CEB + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +7794.2286 + 30 +0.0 + 11 +34406.25 + 21 +7794.2286 + 31 +0.0 + 0 +LINE + 5 +2CEC + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +7794.2286 + 30 +0.0 + 11 +34600.0 + 21 +7794.2286 + 31 +0.0 + 0 +LINE + 5 +2CED + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +7713.038719 + 30 +0.0 + 11 +34265.625 + 21 +7713.038719 + 31 +0.0 + 0 +LINE + 5 +2CEE + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +7713.038719 + 30 +0.0 + 11 +34546.875 + 21 +7713.038719 + 31 +0.0 + 0 +LINE + 5 +2CEF + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +7631.848838 + 30 +0.0 + 11 +34406.25 + 21 +7631.848838 + 31 +0.0 + 0 +LINE + 5 +2CF0 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +7631.848838 + 30 +0.0 + 11 +34600.0 + 21 +7631.848838 + 31 +0.0 + 0 +LINE + 5 +2CF1 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +7550.658956 + 30 +0.0 + 11 +34265.625 + 21 +7550.658956 + 31 +0.0 + 0 +LINE + 5 +2CF2 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +7550.658956 + 30 +0.0 + 11 +34546.875 + 21 +7550.658956 + 31 +0.0 + 0 +LINE + 5 +2CF3 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +7469.469075 + 30 +0.0 + 11 +34406.25 + 21 +7469.469075 + 31 +0.0 + 0 +LINE + 5 +2CF4 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +7469.469075 + 30 +0.0 + 11 +34600.0 + 21 +7469.469075 + 31 +0.0 + 0 +LINE + 5 +2CF5 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +7388.279194 + 30 +0.0 + 11 +34265.625 + 21 +7388.279194 + 31 +0.0 + 0 +LINE + 5 +2CF6 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +7388.279194 + 30 +0.0 + 11 +34546.875 + 21 +7388.279194 + 31 +0.0 + 0 +LINE + 5 +2CF7 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +7307.089313 + 30 +0.0 + 11 +34406.25 + 21 +7307.089313 + 31 +0.0 + 0 +LINE + 5 +2CF8 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +7307.089313 + 30 +0.0 + 11 +34600.0 + 21 +7307.089313 + 31 +0.0 + 0 +LINE + 5 +2CF9 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +7225.899431 + 30 +0.0 + 11 +34265.625 + 21 +7225.899431 + 31 +0.0 + 0 +LINE + 5 +2CFA + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +7225.899431 + 30 +0.0 + 11 +34546.875 + 21 +7225.899431 + 31 +0.0 + 0 +LINE + 5 +2CFB + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +7144.70955 + 30 +0.0 + 11 +34406.25 + 21 +7144.70955 + 31 +0.0 + 0 +LINE + 5 +2CFC + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +7144.70955 + 30 +0.0 + 11 +34600.0 + 21 +7144.70955 + 31 +0.0 + 0 +LINE + 5 +2CFD + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +7063.519669 + 30 +0.0 + 11 +34265.625 + 21 +7063.519669 + 31 +0.0 + 0 +LINE + 5 +2CFE + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +7063.519669 + 30 +0.0 + 11 +34546.875 + 21 +7063.519669 + 31 +0.0 + 0 +LINE + 5 +2CFF + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +6982.329788 + 30 +0.0 + 11 +34406.25 + 21 +6982.329788 + 31 +0.0 + 0 +LINE + 5 +2D00 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +6982.329788 + 30 +0.0 + 11 +34600.0 + 21 +6982.329788 + 31 +0.0 + 0 +LINE + 5 +2D01 + 8 +0 + 62 + 0 + 10 +34200.0 + 20 +6901.139906 + 30 +0.0 + 11 +34265.625 + 21 +6901.139906 + 31 +0.0 + 0 +LINE + 5 +2D02 + 8 +0 + 62 + 0 + 10 +34453.125 + 20 +6901.139906 + 30 +0.0 + 11 +34546.875 + 21 +6901.139906 + 31 +0.0 + 0 +LINE + 5 +2D03 + 8 +0 + 62 + 0 + 10 +34312.5 + 20 +6819.950025 + 30 +0.0 + 11 +34406.25 + 21 +6819.950025 + 31 +0.0 + 0 +LINE + 5 +2D04 + 8 +0 + 62 + 0 + 10 +34593.75 + 20 +6819.950025 + 30 +0.0 + 11 +34600.0 + 21 +6819.950025 + 31 +0.0 + 0 +LINE + 5 +2D05 + 8 +0 + 62 + 0 + 10 +34593.749868 + 20 +9580.405953 + 30 +0.0 + 11 +34546.874868 + 21 +9661.595835 + 31 +0.0 + 0 +LINE + 5 +2D06 + 8 +0 + 62 + 0 + 10 +34453.124868 + 20 +9823.975598 + 30 +0.0 + 11 +34406.249868 + 21 +9905.16548 + 31 +0.0 + 0 +LINE + 5 +2D07 + 8 +0 + 62 + 0 + 10 +34312.499868 + 20 +10067.545243 + 30 +0.0 + 11 +34265.624868 + 21 +10148.735125 + 31 +0.0 + 0 +LINE + 5 +2D08 + 8 +0 + 62 + 0 + 10 +34593.749869 + 20 +9418.02619 + 30 +0.0 + 11 +34546.874869 + 21 +9499.216072 + 31 +0.0 + 0 +LINE + 5 +2D09 + 8 +0 + 62 + 0 + 10 +34453.124869 + 20 +9661.595835 + 30 +0.0 + 11 +34406.249869 + 21 +9742.785717 + 31 +0.0 + 0 +LINE + 5 +2D0A + 8 +0 + 62 + 0 + 10 +34312.499869 + 20 +9905.16548 + 30 +0.0 + 11 +34265.624869 + 21 +9986.355362 + 31 +0.0 + 0 +LINE + 5 +2D0B + 8 +0 + 62 + 0 + 10 +34593.749869 + 20 +9255.646427 + 30 +0.0 + 11 +34546.874869 + 21 +9336.836309 + 31 +0.0 + 0 +LINE + 5 +2D0C + 8 +0 + 62 + 0 + 10 +34453.124869 + 20 +9499.216072 + 30 +0.0 + 11 +34406.249869 + 21 +9580.405954 + 31 +0.0 + 0 +LINE + 5 +2D0D + 8 +0 + 62 + 0 + 10 +34312.499869 + 20 +9742.785717 + 30 +0.0 + 11 +34265.624869 + 21 +9823.975599 + 31 +0.0 + 0 +LINE + 5 +2D0E + 8 +0 + 62 + 0 + 10 +34593.749869 + 20 +9093.266664 + 30 +0.0 + 11 +34546.874869 + 21 +9174.456546 + 31 +0.0 + 0 +LINE + 5 +2D0F + 8 +0 + 62 + 0 + 10 +34453.124869 + 20 +9336.836309 + 30 +0.0 + 11 +34406.249869 + 21 +9418.026191 + 31 +0.0 + 0 +LINE + 5 +2D10 + 8 +0 + 62 + 0 + 10 +34312.499869 + 20 +9580.405954 + 30 +0.0 + 11 +34265.624869 + 21 +9661.595836 + 31 +0.0 + 0 +LINE + 5 +2D11 + 8 +0 + 62 + 0 + 10 +34593.74987 + 20 +8930.886901 + 30 +0.0 + 11 +34546.87487 + 21 +9012.076783 + 31 +0.0 + 0 +LINE + 5 +2D12 + 8 +0 + 62 + 0 + 10 +34453.12487 + 20 +9174.456546 + 30 +0.0 + 11 +34406.24987 + 21 +9255.646428 + 31 +0.0 + 0 +LINE + 5 +2D13 + 8 +0 + 62 + 0 + 10 +34312.49987 + 20 +9418.026191 + 30 +0.0 + 11 +34265.62487 + 21 +9499.216073 + 31 +0.0 + 0 +LINE + 5 +2D14 + 8 +0 + 62 + 0 + 10 +34593.74987 + 20 +8768.507138 + 30 +0.0 + 11 +34546.87487 + 21 +8849.69702 + 31 +0.0 + 0 +LINE + 5 +2D15 + 8 +0 + 62 + 0 + 10 +34453.12487 + 20 +9012.076783 + 30 +0.0 + 11 +34406.24987 + 21 +9093.266665 + 31 +0.0 + 0 +LINE + 5 +2D16 + 8 +0 + 62 + 0 + 10 +34312.49987 + 20 +9255.646428 + 30 +0.0 + 11 +34265.62487 + 21 +9336.83631 + 31 +0.0 + 0 +LINE + 5 +2D17 + 8 +0 + 62 + 0 + 10 +34593.74987 + 20 +8606.127375 + 30 +0.0 + 11 +34546.87487 + 21 +8687.317257 + 31 +0.0 + 0 +LINE + 5 +2D18 + 8 +0 + 62 + 0 + 10 +34453.12487 + 20 +8849.69702 + 30 +0.0 + 11 +34406.24987 + 21 +8930.886902 + 31 +0.0 + 0 +LINE + 5 +2D19 + 8 +0 + 62 + 0 + 10 +34312.49987 + 20 +9093.266665 + 30 +0.0 + 11 +34265.62487 + 21 +9174.456546 + 31 +0.0 + 0 +LINE + 5 +2D1A + 8 +0 + 62 + 0 + 10 +34593.749871 + 20 +8443.747612 + 30 +0.0 + 11 +34546.874871 + 21 +8524.937494 + 31 +0.0 + 0 +LINE + 5 +2D1B + 8 +0 + 62 + 0 + 10 +34453.124871 + 20 +8687.317257 + 30 +0.0 + 11 +34406.249871 + 21 +8768.507139 + 31 +0.0 + 0 +LINE + 5 +2D1C + 8 +0 + 62 + 0 + 10 +34312.499871 + 20 +8930.886902 + 30 +0.0 + 11 +34265.624871 + 21 +9012.076783 + 31 +0.0 + 0 +LINE + 5 +2D1D + 8 +0 + 62 + 0 + 10 +34593.749871 + 20 +8281.367849 + 30 +0.0 + 11 +34546.874871 + 21 +8362.557731 + 31 +0.0 + 0 +LINE + 5 +2D1E + 8 +0 + 62 + 0 + 10 +34453.124871 + 20 +8524.937494 + 30 +0.0 + 11 +34406.249871 + 21 +8606.127376 + 31 +0.0 + 0 +LINE + 5 +2D1F + 8 +0 + 62 + 0 + 10 +34312.499871 + 20 +8768.507139 + 30 +0.0 + 11 +34265.624871 + 21 +8849.69702 + 31 +0.0 + 0 +LINE + 5 +2D20 + 8 +0 + 62 + 0 + 10 +34593.749871 + 20 +8118.988086 + 30 +0.0 + 11 +34546.874871 + 21 +8200.177968 + 31 +0.0 + 0 +LINE + 5 +2D21 + 8 +0 + 62 + 0 + 10 +34453.124871 + 20 +8362.557731 + 30 +0.0 + 11 +34406.249871 + 21 +8443.747613 + 31 +0.0 + 0 +LINE + 5 +2D22 + 8 +0 + 62 + 0 + 10 +34312.499871 + 20 +8606.127376 + 30 +0.0 + 11 +34265.624871 + 21 +8687.317257 + 31 +0.0 + 0 +LINE + 5 +2D23 + 8 +0 + 62 + 0 + 10 +34593.749872 + 20 +7956.608323 + 30 +0.0 + 11 +34546.874872 + 21 +8037.798205 + 31 +0.0 + 0 +LINE + 5 +2D24 + 8 +0 + 62 + 0 + 10 +34453.124872 + 20 +8200.177968 + 30 +0.0 + 11 +34406.249872 + 21 +8281.36785 + 31 +0.0 + 0 +LINE + 5 +2D25 + 8 +0 + 62 + 0 + 10 +34312.499872 + 20 +8443.747613 + 30 +0.0 + 11 +34265.624872 + 21 +8524.937494 + 31 +0.0 + 0 +LINE + 5 +2D26 + 8 +0 + 62 + 0 + 10 +34593.749872 + 20 +7794.22856 + 30 +0.0 + 11 +34546.874872 + 21 +7875.418442 + 31 +0.0 + 0 +LINE + 5 +2D27 + 8 +0 + 62 + 0 + 10 +34453.124872 + 20 +8037.798205 + 30 +0.0 + 11 +34406.249872 + 21 +8118.988087 + 31 +0.0 + 0 +LINE + 5 +2D28 + 8 +0 + 62 + 0 + 10 +34312.499872 + 20 +8281.36785 + 30 +0.0 + 11 +34265.624872 + 21 +8362.557731 + 31 +0.0 + 0 +LINE + 5 +2D29 + 8 +0 + 62 + 0 + 10 +34593.749872 + 20 +7631.848797 + 30 +0.0 + 11 +34546.874872 + 21 +7713.038679 + 31 +0.0 + 0 +LINE + 5 +2D2A + 8 +0 + 62 + 0 + 10 +34453.124872 + 20 +7875.418442 + 30 +0.0 + 11 +34406.249872 + 21 +7956.608323 + 31 +0.0 + 0 +LINE + 5 +2D2B + 8 +0 + 62 + 0 + 10 +34312.499872 + 20 +8118.988087 + 30 +0.0 + 11 +34265.624872 + 21 +8200.177968 + 31 +0.0 + 0 +LINE + 5 +2D2C + 8 +0 + 62 + 0 + 10 +34593.749872 + 20 +7469.469034 + 30 +0.0 + 11 +34546.874872 + 21 +7550.658916 + 31 +0.0 + 0 +LINE + 5 +2D2D + 8 +0 + 62 + 0 + 10 +34453.124872 + 20 +7713.038679 + 30 +0.0 + 11 +34406.249872 + 21 +7794.22856 + 31 +0.0 + 0 +LINE + 5 +2D2E + 8 +0 + 62 + 0 + 10 +34312.499872 + 20 +7956.608324 + 30 +0.0 + 11 +34265.624872 + 21 +8037.798205 + 31 +0.0 + 0 +LINE + 5 +2D2F + 8 +0 + 62 + 0 + 10 +34593.749873 + 20 +7307.089271 + 30 +0.0 + 11 +34546.874873 + 21 +7388.279153 + 31 +0.0 + 0 +LINE + 5 +2D30 + 8 +0 + 62 + 0 + 10 +34453.124873 + 20 +7550.658916 + 30 +0.0 + 11 +34406.249873 + 21 +7631.848797 + 31 +0.0 + 0 +LINE + 5 +2D31 + 8 +0 + 62 + 0 + 10 +34312.499873 + 20 +7794.228561 + 30 +0.0 + 11 +34265.624873 + 21 +7875.418442 + 31 +0.0 + 0 +LINE + 5 +2D32 + 8 +0 + 62 + 0 + 10 +34593.749873 + 20 +7144.709508 + 30 +0.0 + 11 +34546.874873 + 21 +7225.89939 + 31 +0.0 + 0 +LINE + 5 +2D33 + 8 +0 + 62 + 0 + 10 +34453.124873 + 20 +7388.279153 + 30 +0.0 + 11 +34406.249873 + 21 +7469.469034 + 31 +0.0 + 0 +LINE + 5 +2D34 + 8 +0 + 62 + 0 + 10 +34312.499873 + 20 +7631.848798 + 30 +0.0 + 11 +34265.624873 + 21 +7713.038679 + 31 +0.0 + 0 +LINE + 5 +2D35 + 8 +0 + 62 + 0 + 10 +34593.749873 + 20 +6982.329745 + 30 +0.0 + 11 +34546.874873 + 21 +7063.519627 + 31 +0.0 + 0 +LINE + 5 +2D36 + 8 +0 + 62 + 0 + 10 +34453.124873 + 20 +7225.89939 + 30 +0.0 + 11 +34406.249873 + 21 +7307.089271 + 31 +0.0 + 0 +LINE + 5 +2D37 + 8 +0 + 62 + 0 + 10 +34312.499873 + 20 +7469.469035 + 30 +0.0 + 11 +34265.624873 + 21 +7550.658916 + 31 +0.0 + 0 +LINE + 5 +2D38 + 8 +0 + 62 + 0 + 10 +34593.749874 + 20 +6819.949982 + 30 +0.0 + 11 +34546.874874 + 21 +6901.139863 + 31 +0.0 + 0 +LINE + 5 +2D39 + 8 +0 + 62 + 0 + 10 +34453.124874 + 20 +7063.519627 + 30 +0.0 + 11 +34406.249874 + 21 +7144.709508 + 31 +0.0 + 0 +LINE + 5 +2D3A + 8 +0 + 62 + 0 + 10 +34312.499874 + 20 +7307.089272 + 30 +0.0 + 11 +34265.624874 + 21 +7388.279153 + 31 +0.0 + 0 +LINE + 5 +2D3B + 8 +0 + 62 + 0 + 10 +34453.124874 + 20 +6901.139864 + 30 +0.0 + 11 +34406.249874 + 21 +6982.329745 + 31 +0.0 + 0 +LINE + 5 +2D3C + 8 +0 + 62 + 0 + 10 +34312.499874 + 20 +7144.709508 + 30 +0.0 + 11 +34265.624874 + 21 +7225.89939 + 31 +0.0 + 0 +LINE + 5 +2D3D + 8 +0 + 62 + 0 + 10 +34446.635515 + 20 +6750.0 + 30 +0.0 + 11 +34406.249874 + 21 +6819.949982 + 31 +0.0 + 0 +LINE + 5 +2D3E + 8 +0 + 62 + 0 + 10 +34312.499874 + 20 +6982.329745 + 30 +0.0 + 11 +34265.624874 + 21 +7063.519627 + 31 +0.0 + 0 +LINE + 5 +2D3F + 8 +0 + 62 + 0 + 10 +34312.499875 + 20 +6819.949982 + 30 +0.0 + 11 +34265.624875 + 21 +6901.139864 + 31 +0.0 + 0 +LINE + 5 +2D40 + 8 +0 + 62 + 0 + 10 +34593.749868 + 20 +9742.785716 + 30 +0.0 + 11 +34546.874868 + 21 +9823.975598 + 31 +0.0 + 0 +LINE + 5 +2D41 + 8 +0 + 62 + 0 + 10 +34453.124868 + 20 +9986.355361 + 30 +0.0 + 11 +34406.249868 + 21 +10067.545243 + 31 +0.0 + 0 +LINE + 5 +2D42 + 8 +0 + 62 + 0 + 10 +34312.499868 + 20 +10229.925006 + 30 +0.0 + 11 +34265.624868 + 21 +10311.114888 + 31 +0.0 + 0 +LINE + 5 +2D43 + 8 +0 + 62 + 0 + 10 +34593.749868 + 20 +9905.16548 + 30 +0.0 + 11 +34546.874868 + 21 +9986.355361 + 31 +0.0 + 0 +LINE + 5 +2D44 + 8 +0 + 62 + 0 + 10 +34453.124868 + 20 +10148.735124 + 30 +0.0 + 11 +34406.249868 + 21 +10229.925006 + 31 +0.0 + 0 +LINE + 5 +2D45 + 8 +0 + 62 + 0 + 10 +34312.499868 + 20 +10392.304769 + 30 +0.0 + 11 +34265.624868 + 21 +10473.494651 + 31 +0.0 + 0 +LINE + 5 +2D46 + 8 +0 + 62 + 0 + 10 +34593.749868 + 20 +10067.545243 + 30 +0.0 + 11 +34546.874868 + 21 +10148.735124 + 31 +0.0 + 0 +LINE + 5 +2D47 + 8 +0 + 62 + 0 + 10 +34453.124868 + 20 +10311.114887 + 30 +0.0 + 11 +34406.249868 + 21 +10392.304769 + 31 +0.0 + 0 +LINE + 5 +2D48 + 8 +0 + 62 + 0 + 10 +34312.499868 + 20 +10554.684532 + 30 +0.0 + 11 +34265.624868 + 21 +10635.874414 + 31 +0.0 + 0 +LINE + 5 +2D49 + 8 +0 + 62 + 0 + 10 +34593.749867 + 20 +10229.925006 + 30 +0.0 + 11 +34546.874867 + 21 +10311.114887 + 31 +0.0 + 0 +LINE + 5 +2D4A + 8 +0 + 62 + 0 + 10 +34453.124867 + 20 +10473.49465 + 30 +0.0 + 11 +34406.249867 + 21 +10554.684532 + 31 +0.0 + 0 +LINE + 5 +2D4B + 8 +0 + 62 + 0 + 10 +34312.499867 + 20 +10717.064295 + 30 +0.0 + 11 +34265.624867 + 21 +10798.254177 + 31 +0.0 + 0 +LINE + 5 +2D4C + 8 +0 + 62 + 0 + 10 +34593.749867 + 20 +10392.304769 + 30 +0.0 + 11 +34546.874867 + 21 +10473.49465 + 31 +0.0 + 0 +LINE + 5 +2D4D + 8 +0 + 62 + 0 + 10 +34453.124867 + 20 +10635.874413 + 30 +0.0 + 11 +34406.249867 + 21 +10717.064295 + 31 +0.0 + 0 +LINE + 5 +2D4E + 8 +0 + 62 + 0 + 10 +34312.499867 + 20 +10879.444058 + 30 +0.0 + 11 +34265.624867 + 21 +10960.63394 + 31 +0.0 + 0 +LINE + 5 +2D4F + 8 +0 + 62 + 0 + 10 +34593.749867 + 20 +10554.684532 + 30 +0.0 + 11 +34546.874867 + 21 +10635.874413 + 31 +0.0 + 0 +LINE + 5 +2D50 + 8 +0 + 62 + 0 + 10 +34453.124867 + 20 +10798.254176 + 30 +0.0 + 11 +34406.249867 + 21 +10879.444058 + 31 +0.0 + 0 +LINE + 5 +2D51 + 8 +0 + 62 + 0 + 10 +34312.499867 + 20 +11041.823821 + 30 +0.0 + 11 +34265.624867 + 21 +11123.013703 + 31 +0.0 + 0 +LINE + 5 +2D52 + 8 +0 + 62 + 0 + 10 +34593.749866 + 20 +10717.064295 + 30 +0.0 + 11 +34546.874866 + 21 +10798.254176 + 31 +0.0 + 0 +LINE + 5 +2D53 + 8 +0 + 62 + 0 + 10 +34453.124866 + 20 +10960.633939 + 30 +0.0 + 11 +34406.249866 + 21 +11041.823821 + 31 +0.0 + 0 +LINE + 5 +2D54 + 8 +0 + 62 + 0 + 10 +34312.499866 + 20 +11204.203584 + 30 +0.0 + 11 +34265.624866 + 21 +11285.393466 + 31 +0.0 + 0 +LINE + 5 +2D55 + 8 +0 + 62 + 0 + 10 +34593.749866 + 20 +10879.444058 + 30 +0.0 + 11 +34546.874866 + 21 +10960.633939 + 31 +0.0 + 0 +LINE + 5 +2D56 + 8 +0 + 62 + 0 + 10 +34453.124866 + 20 +11123.013703 + 30 +0.0 + 11 +34406.249866 + 21 +11204.203584 + 31 +0.0 + 0 +LINE + 5 +2D57 + 8 +0 + 62 + 0 + 10 +34312.499866 + 20 +11366.583347 + 30 +0.0 + 11 +34265.624866 + 21 +11447.773229 + 31 +0.0 + 0 +LINE + 5 +2D58 + 8 +0 + 62 + 0 + 10 +34593.749866 + 20 +11041.823821 + 30 +0.0 + 11 +34546.874866 + 21 +11123.013702 + 31 +0.0 + 0 +LINE + 5 +2D59 + 8 +0 + 62 + 0 + 10 +34453.124866 + 20 +11285.393466 + 30 +0.0 + 11 +34406.249866 + 21 +11366.583347 + 31 +0.0 + 0 +LINE + 5 +2D5A + 8 +0 + 62 + 0 + 10 +34312.499866 + 20 +11528.96311 + 30 +0.0 + 11 +34265.624866 + 21 +11610.152992 + 31 +0.0 + 0 +LINE + 5 +2D5B + 8 +0 + 62 + 0 + 10 +34593.749865 + 20 +11204.203584 + 30 +0.0 + 11 +34546.874865 + 21 +11285.393465 + 31 +0.0 + 0 +LINE + 5 +2D5C + 8 +0 + 62 + 0 + 10 +34453.124865 + 20 +11447.773229 + 30 +0.0 + 11 +34406.249865 + 21 +11528.96311 + 31 +0.0 + 0 +LINE + 5 +2D5D + 8 +0 + 62 + 0 + 10 +34312.499865 + 20 +11691.342873 + 30 +0.0 + 11 +34265.624865 + 21 +11772.532755 + 31 +0.0 + 0 +LINE + 5 +2D5E + 8 +0 + 62 + 0 + 10 +34593.749865 + 20 +11366.583347 + 30 +0.0 + 11 +34546.874865 + 21 +11447.773228 + 31 +0.0 + 0 +LINE + 5 +2D5F + 8 +0 + 62 + 0 + 10 +34453.124865 + 20 +11610.152992 + 30 +0.0 + 11 +34406.249865 + 21 +11691.342873 + 31 +0.0 + 0 +LINE + 5 +2D60 + 8 +0 + 62 + 0 + 10 +34312.499865 + 20 +11853.722636 + 30 +0.0 + 11 +34265.624865 + 21 +11934.912518 + 31 +0.0 + 0 +LINE + 5 +2D61 + 8 +0 + 62 + 0 + 10 +34593.749865 + 20 +11528.96311 + 30 +0.0 + 11 +34546.874865 + 21 +11610.152991 + 31 +0.0 + 0 +LINE + 5 +2D62 + 8 +0 + 62 + 0 + 10 +34453.124865 + 20 +11772.532755 + 30 +0.0 + 11 +34406.249865 + 21 +11853.722636 + 31 +0.0 + 0 +LINE + 5 +2D63 + 8 +0 + 62 + 0 + 10 +34312.499865 + 20 +12016.102399 + 30 +0.0 + 11 +34265.624865 + 21 +12097.292281 + 31 +0.0 + 0 +LINE + 5 +2D64 + 8 +0 + 62 + 0 + 10 +34593.749864 + 20 +11691.342873 + 30 +0.0 + 11 +34546.874864 + 21 +11772.532754 + 31 +0.0 + 0 +LINE + 5 +2D65 + 8 +0 + 62 + 0 + 10 +34453.124864 + 20 +11934.912518 + 30 +0.0 + 11 +34406.249864 + 21 +12016.102399 + 31 +0.0 + 0 +LINE + 5 +2D66 + 8 +0 + 62 + 0 + 10 +34312.499864 + 20 +12178.482162 + 30 +0.0 + 11 +34265.624864 + 21 +12259.672044 + 31 +0.0 + 0 +LINE + 5 +2D67 + 8 +0 + 62 + 0 + 10 +34593.749864 + 20 +11853.722636 + 30 +0.0 + 11 +34546.874864 + 21 +11934.912517 + 31 +0.0 + 0 +LINE + 5 +2D68 + 8 +0 + 62 + 0 + 10 +34453.124864 + 20 +12097.292281 + 30 +0.0 + 11 +34406.249864 + 21 +12178.482162 + 31 +0.0 + 0 +LINE + 5 +2D69 + 8 +0 + 62 + 0 + 10 +34312.499864 + 20 +12340.861926 + 30 +0.0 + 11 +34265.624864 + 21 +12422.051807 + 31 +0.0 + 0 +LINE + 5 +2D6A + 8 +0 + 62 + 0 + 10 +34593.749864 + 20 +12016.102399 + 30 +0.0 + 11 +34546.874864 + 21 +12097.292281 + 31 +0.0 + 0 +LINE + 5 +2D6B + 8 +0 + 62 + 0 + 10 +34453.124864 + 20 +12259.672044 + 30 +0.0 + 11 +34406.249864 + 21 +12340.861925 + 31 +0.0 + 0 +LINE + 5 +2D6C + 8 +0 + 62 + 0 + 10 +34312.499864 + 20 +12503.241689 + 30 +0.0 + 11 +34265.624864 + 21 +12584.43157 + 31 +0.0 + 0 +LINE + 5 +2D6D + 8 +0 + 62 + 0 + 10 +34593.749864 + 20 +12178.482162 + 30 +0.0 + 11 +34546.874864 + 21 +12259.672044 + 31 +0.0 + 0 +LINE + 5 +2D6E + 8 +0 + 62 + 0 + 10 +34453.124864 + 20 +12422.051807 + 30 +0.0 + 11 +34406.249864 + 21 +12503.241688 + 31 +0.0 + 0 +LINE + 5 +2D6F + 8 +0 + 62 + 0 + 10 +34312.499864 + 20 +12665.621452 + 30 +0.0 + 11 +34265.624864 + 21 +12746.811333 + 31 +0.0 + 0 +LINE + 5 +2D70 + 8 +0 + 62 + 0 + 10 +34593.749863 + 20 +12340.861925 + 30 +0.0 + 11 +34546.874863 + 21 +12422.051807 + 31 +0.0 + 0 +LINE + 5 +2D71 + 8 +0 + 62 + 0 + 10 +34453.124863 + 20 +12584.43157 + 30 +0.0 + 11 +34406.249863 + 21 +12665.621451 + 31 +0.0 + 0 +LINE + 5 +2D72 + 8 +0 + 62 + 0 + 10 +34312.499863 + 20 +12828.001215 + 30 +0.0 + 11 +34265.624863 + 21 +12909.191096 + 31 +0.0 + 0 +LINE + 5 +2D73 + 8 +0 + 62 + 0 + 10 +34593.749863 + 20 +12503.241688 + 30 +0.0 + 11 +34546.874863 + 21 +12584.43157 + 31 +0.0 + 0 +LINE + 5 +2D74 + 8 +0 + 62 + 0 + 10 +34453.124863 + 20 +12746.811333 + 30 +0.0 + 11 +34406.249863 + 21 +12828.001214 + 31 +0.0 + 0 +LINE + 5 +2D75 + 8 +0 + 62 + 0 + 10 +34312.499863 + 20 +12990.380978 + 30 +0.0 + 11 +34265.624863 + 21 +13071.570859 + 31 +0.0 + 0 +LINE + 5 +2D76 + 8 +0 + 62 + 0 + 10 +34593.749863 + 20 +12665.621451 + 30 +0.0 + 11 +34546.874863 + 21 +12746.811333 + 31 +0.0 + 0 +LINE + 5 +2D77 + 8 +0 + 62 + 0 + 10 +34453.124863 + 20 +12909.191096 + 30 +0.0 + 11 +34406.249863 + 21 +12990.380977 + 31 +0.0 + 0 +LINE + 5 +2D78 + 8 +0 + 62 + 0 + 10 +34312.499863 + 20 +13152.760741 + 30 +0.0 + 11 +34265.624863 + 21 +13233.950622 + 31 +0.0 + 0 +LINE + 5 +2D79 + 8 +0 + 62 + 0 + 10 +34593.749862 + 20 +12828.001214 + 30 +0.0 + 11 +34546.874862 + 21 +12909.191096 + 31 +0.0 + 0 +LINE + 5 +2D7A + 8 +0 + 62 + 0 + 10 +34453.124862 + 20 +13071.570859 + 30 +0.0 + 11 +34406.249862 + 21 +13152.760741 + 31 +0.0 + 0 +LINE + 5 +2D7B + 8 +0 + 62 + 0 + 10 +34593.749862 + 20 +12990.380977 + 30 +0.0 + 11 +34546.874862 + 21 +13071.570859 + 31 +0.0 + 0 +LINE + 5 +2D7C + 8 +0 + 62 + 0 + 10 +34453.124862 + 20 +13233.950622 + 30 +0.0 + 11 +34443.858749 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2D7D + 8 +0 + 62 + 0 + 10 +34593.749862 + 20 +13152.76074 + 30 +0.0 + 11 +34546.874862 + 21 +13233.950622 + 31 +0.0 + 0 +LINE + 5 +2D7E + 8 +0 + 62 + 0 + 10 +34265.624906 + 20 +9823.975728 + 30 +0.0 + 11 +34312.499906 + 21 +9905.16561 + 31 +0.0 + 0 +LINE + 5 +2D7F + 8 +0 + 62 + 0 + 10 +34406.249906 + 20 +10067.545373 + 30 +0.0 + 11 +34453.124906 + 21 +10148.735255 + 31 +0.0 + 0 +LINE + 5 +2D80 + 8 +0 + 62 + 0 + 10 +34546.874906 + 20 +10311.115018 + 30 +0.0 + 11 +34593.749906 + 21 +10392.3049 + 31 +0.0 + 0 +LINE + 5 +2D81 + 8 +0 + 62 + 0 + 10 +34265.624907 + 20 +9986.355491 + 30 +0.0 + 11 +34312.499907 + 21 +10067.545373 + 31 +0.0 + 0 +LINE + 5 +2D82 + 8 +0 + 62 + 0 + 10 +34406.249907 + 20 +10229.925136 + 30 +0.0 + 11 +34453.124907 + 21 +10311.115018 + 31 +0.0 + 0 +LINE + 5 +2D83 + 8 +0 + 62 + 0 + 10 +34546.874907 + 20 +10473.494781 + 30 +0.0 + 11 +34593.749907 + 21 +10554.684663 + 31 +0.0 + 0 +LINE + 5 +2D84 + 8 +0 + 62 + 0 + 10 +34265.624907 + 20 +10148.735254 + 30 +0.0 + 11 +34312.499907 + 21 +10229.925136 + 31 +0.0 + 0 +LINE + 5 +2D85 + 8 +0 + 62 + 0 + 10 +34406.249907 + 20 +10392.304899 + 30 +0.0 + 11 +34453.124907 + 21 +10473.494781 + 31 +0.0 + 0 +LINE + 5 +2D86 + 8 +0 + 62 + 0 + 10 +34546.874907 + 20 +10635.874544 + 30 +0.0 + 11 +34593.749907 + 21 +10717.064426 + 31 +0.0 + 0 +LINE + 5 +2D87 + 8 +0 + 62 + 0 + 10 +34265.624907 + 20 +10311.115017 + 30 +0.0 + 11 +34312.499907 + 21 +10392.304899 + 31 +0.0 + 0 +LINE + 5 +2D88 + 8 +0 + 62 + 0 + 10 +34406.249907 + 20 +10554.684662 + 30 +0.0 + 11 +34453.124907 + 21 +10635.874544 + 31 +0.0 + 0 +LINE + 5 +2D89 + 8 +0 + 62 + 0 + 10 +34546.874907 + 20 +10798.254307 + 30 +0.0 + 11 +34593.749907 + 21 +10879.444189 + 31 +0.0 + 0 +LINE + 5 +2D8A + 8 +0 + 62 + 0 + 10 +34265.624908 + 20 +10473.49478 + 30 +0.0 + 11 +34312.499908 + 21 +10554.684662 + 31 +0.0 + 0 +LINE + 5 +2D8B + 8 +0 + 62 + 0 + 10 +34406.249908 + 20 +10717.064425 + 30 +0.0 + 11 +34453.124908 + 21 +10798.254307 + 31 +0.0 + 0 +LINE + 5 +2D8C + 8 +0 + 62 + 0 + 10 +34546.874908 + 20 +10960.63407 + 30 +0.0 + 11 +34593.749908 + 21 +11041.823952 + 31 +0.0 + 0 +LINE + 5 +2D8D + 8 +0 + 62 + 0 + 10 +34265.624908 + 20 +10635.874543 + 30 +0.0 + 11 +34312.499908 + 21 +10717.064425 + 31 +0.0 + 0 +LINE + 5 +2D8E + 8 +0 + 62 + 0 + 10 +34406.249908 + 20 +10879.444188 + 30 +0.0 + 11 +34453.124908 + 21 +10960.63407 + 31 +0.0 + 0 +LINE + 5 +2D8F + 8 +0 + 62 + 0 + 10 +34546.874908 + 20 +11123.013833 + 30 +0.0 + 11 +34593.749908 + 21 +11204.203715 + 31 +0.0 + 0 +LINE + 5 +2D90 + 8 +0 + 62 + 0 + 10 +34265.624908 + 20 +10798.254306 + 30 +0.0 + 11 +34312.499908 + 21 +10879.444188 + 31 +0.0 + 0 +LINE + 5 +2D91 + 8 +0 + 62 + 0 + 10 +34406.249908 + 20 +11041.823951 + 30 +0.0 + 11 +34453.124908 + 21 +11123.013833 + 31 +0.0 + 0 +LINE + 5 +2D92 + 8 +0 + 62 + 0 + 10 +34546.874908 + 20 +11285.393596 + 30 +0.0 + 11 +34593.749908 + 21 +11366.583478 + 31 +0.0 + 0 +LINE + 5 +2D93 + 8 +0 + 62 + 0 + 10 +34265.624908 + 20 +10960.63407 + 30 +0.0 + 11 +34312.499908 + 21 +11041.823951 + 31 +0.0 + 0 +LINE + 5 +2D94 + 8 +0 + 62 + 0 + 10 +34406.249908 + 20 +11204.203714 + 30 +0.0 + 11 +34453.124908 + 21 +11285.393596 + 31 +0.0 + 0 +LINE + 5 +2D95 + 8 +0 + 62 + 0 + 10 +34546.874908 + 20 +11447.773359 + 30 +0.0 + 11 +34593.749908 + 21 +11528.963241 + 31 +0.0 + 0 +LINE + 5 +2D96 + 8 +0 + 62 + 0 + 10 +34265.624909 + 20 +11123.013833 + 30 +0.0 + 11 +34312.499909 + 21 +11204.203714 + 31 +0.0 + 0 +LINE + 5 +2D97 + 8 +0 + 62 + 0 + 10 +34406.249909 + 20 +11366.583477 + 30 +0.0 + 11 +34453.124909 + 21 +11447.773359 + 31 +0.0 + 0 +LINE + 5 +2D98 + 8 +0 + 62 + 0 + 10 +34546.874909 + 20 +11610.153122 + 30 +0.0 + 11 +34593.749909 + 21 +11691.343004 + 31 +0.0 + 0 +LINE + 5 +2D99 + 8 +0 + 62 + 0 + 10 +34265.624909 + 20 +11285.393596 + 30 +0.0 + 11 +34312.499909 + 21 +11366.583477 + 31 +0.0 + 0 +LINE + 5 +2D9A + 8 +0 + 62 + 0 + 10 +34406.249909 + 20 +11528.96324 + 30 +0.0 + 11 +34453.124909 + 21 +11610.153122 + 31 +0.0 + 0 +LINE + 5 +2D9B + 8 +0 + 62 + 0 + 10 +34546.874909 + 20 +11772.532885 + 30 +0.0 + 11 +34593.749909 + 21 +11853.722767 + 31 +0.0 + 0 +LINE + 5 +2D9C + 8 +0 + 62 + 0 + 10 +34265.624909 + 20 +11447.773359 + 30 +0.0 + 11 +34312.499909 + 21 +11528.96324 + 31 +0.0 + 0 +LINE + 5 +2D9D + 8 +0 + 62 + 0 + 10 +34406.249909 + 20 +11691.343003 + 30 +0.0 + 11 +34453.124909 + 21 +11772.532885 + 31 +0.0 + 0 +LINE + 5 +2D9E + 8 +0 + 62 + 0 + 10 +34546.874909 + 20 +11934.912648 + 30 +0.0 + 11 +34593.749909 + 21 +12016.10253 + 31 +0.0 + 0 +LINE + 5 +2D9F + 8 +0 + 62 + 0 + 10 +34265.62491 + 20 +11610.153122 + 30 +0.0 + 11 +34312.49991 + 21 +11691.343003 + 31 +0.0 + 0 +LINE + 5 +2DA0 + 8 +0 + 62 + 0 + 10 +34406.24991 + 20 +11853.722766 + 30 +0.0 + 11 +34453.12491 + 21 +11934.912648 + 31 +0.0 + 0 +LINE + 5 +2DA1 + 8 +0 + 62 + 0 + 10 +34546.87491 + 20 +12097.292411 + 30 +0.0 + 11 +34593.74991 + 21 +12178.482293 + 31 +0.0 + 0 +LINE + 5 +2DA2 + 8 +0 + 62 + 0 + 10 +34265.62491 + 20 +11772.532885 + 30 +0.0 + 11 +34312.49991 + 21 +11853.722766 + 31 +0.0 + 0 +LINE + 5 +2DA3 + 8 +0 + 62 + 0 + 10 +34406.24991 + 20 +12016.102529 + 30 +0.0 + 11 +34453.12491 + 21 +12097.292411 + 31 +0.0 + 0 +LINE + 5 +2DA4 + 8 +0 + 62 + 0 + 10 +34546.87491 + 20 +12259.672174 + 30 +0.0 + 11 +34593.74991 + 21 +12340.862056 + 31 +0.0 + 0 +LINE + 5 +2DA5 + 8 +0 + 62 + 0 + 10 +34265.62491 + 20 +11934.912648 + 30 +0.0 + 11 +34312.49991 + 21 +12016.102529 + 31 +0.0 + 0 +LINE + 5 +2DA6 + 8 +0 + 62 + 0 + 10 +34406.24991 + 20 +12178.482293 + 30 +0.0 + 11 +34453.12491 + 21 +12259.672174 + 31 +0.0 + 0 +LINE + 5 +2DA7 + 8 +0 + 62 + 0 + 10 +34546.87491 + 20 +12422.051937 + 30 +0.0 + 11 +34593.74991 + 21 +12503.241819 + 31 +0.0 + 0 +LINE + 5 +2DA8 + 8 +0 + 62 + 0 + 10 +34265.624911 + 20 +12097.292411 + 30 +0.0 + 11 +34312.499911 + 21 +12178.482292 + 31 +0.0 + 0 +LINE + 5 +2DA9 + 8 +0 + 62 + 0 + 10 +34406.249911 + 20 +12340.862056 + 30 +0.0 + 11 +34453.124911 + 21 +12422.051937 + 31 +0.0 + 0 +LINE + 5 +2DAA + 8 +0 + 62 + 0 + 10 +34546.874911 + 20 +12584.4317 + 30 +0.0 + 11 +34593.749911 + 21 +12665.621582 + 31 +0.0 + 0 +LINE + 5 +2DAB + 8 +0 + 62 + 0 + 10 +34265.624911 + 20 +12259.672174 + 30 +0.0 + 11 +34312.499911 + 21 +12340.862055 + 31 +0.0 + 0 +LINE + 5 +2DAC + 8 +0 + 62 + 0 + 10 +34406.249911 + 20 +12503.241819 + 30 +0.0 + 11 +34453.124911 + 21 +12584.4317 + 31 +0.0 + 0 +LINE + 5 +2DAD + 8 +0 + 62 + 0 + 10 +34546.874911 + 20 +12746.811463 + 30 +0.0 + 11 +34593.749911 + 21 +12828.001345 + 31 +0.0 + 0 +LINE + 5 +2DAE + 8 +0 + 62 + 0 + 10 +34265.624911 + 20 +12422.051937 + 30 +0.0 + 11 +34312.499911 + 21 +12503.241818 + 31 +0.0 + 0 +LINE + 5 +2DAF + 8 +0 + 62 + 0 + 10 +34406.249911 + 20 +12665.621582 + 30 +0.0 + 11 +34453.124911 + 21 +12746.811463 + 31 +0.0 + 0 +LINE + 5 +2DB0 + 8 +0 + 62 + 0 + 10 +34546.874911 + 20 +12909.191226 + 30 +0.0 + 11 +34593.749911 + 21 +12990.381108 + 31 +0.0 + 0 +LINE + 5 +2DB1 + 8 +0 + 62 + 0 + 10 +34265.624912 + 20 +12584.4317 + 30 +0.0 + 11 +34312.499912 + 21 +12665.621581 + 31 +0.0 + 0 +LINE + 5 +2DB2 + 8 +0 + 62 + 0 + 10 +34406.249912 + 20 +12828.001345 + 30 +0.0 + 11 +34453.124912 + 21 +12909.191226 + 31 +0.0 + 0 +LINE + 5 +2DB3 + 8 +0 + 62 + 0 + 10 +34546.874912 + 20 +13071.570989 + 30 +0.0 + 11 +34593.749912 + 21 +13152.760871 + 31 +0.0 + 0 +LINE + 5 +2DB4 + 8 +0 + 62 + 0 + 10 +34265.624912 + 20 +12746.811463 + 30 +0.0 + 11 +34312.499912 + 21 +12828.001344 + 31 +0.0 + 0 +LINE + 5 +2DB5 + 8 +0 + 62 + 0 + 10 +34406.249912 + 20 +12990.381108 + 30 +0.0 + 11 +34453.124912 + 21 +13071.570989 + 31 +0.0 + 0 +LINE + 5 +2DB6 + 8 +0 + 62 + 0 + 10 +34546.874912 + 20 +13233.950752 + 30 +0.0 + 11 +34556.140949 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2DB7 + 8 +0 + 62 + 0 + 10 +34265.624912 + 20 +12909.191226 + 30 +0.0 + 11 +34312.499912 + 21 +12990.381108 + 31 +0.0 + 0 +LINE + 5 +2DB8 + 8 +0 + 62 + 0 + 10 +34406.249912 + 20 +13152.760871 + 30 +0.0 + 11 +34453.124912 + 21 +13233.950752 + 31 +0.0 + 0 +LINE + 5 +2DB9 + 8 +0 + 62 + 0 + 10 +34265.624912 + 20 +13071.570989 + 30 +0.0 + 11 +34312.499912 + 21 +13152.760871 + 31 +0.0 + 0 +LINE + 5 +2DBA + 8 +0 + 62 + 0 + 10 +34265.624913 + 20 +13233.950752 + 30 +0.0 + 11 +34274.89095 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2DBB + 8 +0 + 62 + 0 + 10 +34265.624906 + 20 +9661.595965 + 30 +0.0 + 11 +34312.499906 + 21 +9742.785847 + 31 +0.0 + 0 +LINE + 5 +2DBC + 8 +0 + 62 + 0 + 10 +34406.249906 + 20 +9905.16561 + 30 +0.0 + 11 +34453.124906 + 21 +9986.355492 + 31 +0.0 + 0 +LINE + 5 +2DBD + 8 +0 + 62 + 0 + 10 +34546.874906 + 20 +10148.735255 + 30 +0.0 + 11 +34593.749906 + 21 +10229.925136 + 31 +0.0 + 0 +LINE + 5 +2DBE + 8 +0 + 62 + 0 + 10 +34265.624906 + 20 +9499.216202 + 30 +0.0 + 11 +34312.499906 + 21 +9580.406084 + 31 +0.0 + 0 +LINE + 5 +2DBF + 8 +0 + 62 + 0 + 10 +34406.249906 + 20 +9742.785847 + 30 +0.0 + 11 +34453.124906 + 21 +9823.975729 + 31 +0.0 + 0 +LINE + 5 +2DC0 + 8 +0 + 62 + 0 + 10 +34546.874906 + 20 +9986.355492 + 30 +0.0 + 11 +34593.749906 + 21 +10067.545373 + 31 +0.0 + 0 +LINE + 5 +2DC1 + 8 +0 + 62 + 0 + 10 +34265.624905 + 20 +9336.836439 + 30 +0.0 + 11 +34312.499905 + 21 +9418.026321 + 31 +0.0 + 0 +LINE + 5 +2DC2 + 8 +0 + 62 + 0 + 10 +34406.249905 + 20 +9580.406084 + 30 +0.0 + 11 +34453.124905 + 21 +9661.595966 + 31 +0.0 + 0 +LINE + 5 +2DC3 + 8 +0 + 62 + 0 + 10 +34546.874905 + 20 +9823.975729 + 30 +0.0 + 11 +34593.749905 + 21 +9905.16561 + 31 +0.0 + 0 +LINE + 5 +2DC4 + 8 +0 + 62 + 0 + 10 +34265.624905 + 20 +9174.456676 + 30 +0.0 + 11 +34312.499905 + 21 +9255.646558 + 31 +0.0 + 0 +LINE + 5 +2DC5 + 8 +0 + 62 + 0 + 10 +34406.249905 + 20 +9418.026321 + 30 +0.0 + 11 +34453.124905 + 21 +9499.216203 + 31 +0.0 + 0 +LINE + 5 +2DC6 + 8 +0 + 62 + 0 + 10 +34546.874905 + 20 +9661.595966 + 30 +0.0 + 11 +34593.749905 + 21 +9742.785847 + 31 +0.0 + 0 +LINE + 5 +2DC7 + 8 +0 + 62 + 0 + 10 +34265.624905 + 20 +9012.076913 + 30 +0.0 + 11 +34312.499905 + 21 +9093.266795 + 31 +0.0 + 0 +LINE + 5 +2DC8 + 8 +0 + 62 + 0 + 10 +34406.249905 + 20 +9255.646558 + 30 +0.0 + 11 +34453.124905 + 21 +9336.83644 + 31 +0.0 + 0 +LINE + 5 +2DC9 + 8 +0 + 62 + 0 + 10 +34546.874905 + 20 +9499.216203 + 30 +0.0 + 11 +34593.749905 + 21 +9580.406084 + 31 +0.0 + 0 +LINE + 5 +2DCA + 8 +0 + 62 + 0 + 10 +34265.624904 + 20 +8849.69715 + 30 +0.0 + 11 +34312.499904 + 21 +8930.887032 + 31 +0.0 + 0 +LINE + 5 +2DCB + 8 +0 + 62 + 0 + 10 +34406.249904 + 20 +9093.266795 + 30 +0.0 + 11 +34453.124904 + 21 +9174.456677 + 31 +0.0 + 0 +LINE + 5 +2DCC + 8 +0 + 62 + 0 + 10 +34546.874904 + 20 +9336.83644 + 30 +0.0 + 11 +34593.749904 + 21 +9418.026321 + 31 +0.0 + 0 +LINE + 5 +2DCD + 8 +0 + 62 + 0 + 10 +34265.624904 + 20 +8687.317387 + 30 +0.0 + 11 +34312.499904 + 21 +8768.507269 + 31 +0.0 + 0 +LINE + 5 +2DCE + 8 +0 + 62 + 0 + 10 +34406.249904 + 20 +8930.887032 + 30 +0.0 + 11 +34453.124904 + 21 +9012.076913 + 31 +0.0 + 0 +LINE + 5 +2DCF + 8 +0 + 62 + 0 + 10 +34546.874904 + 20 +9174.456677 + 30 +0.0 + 11 +34593.749904 + 21 +9255.646558 + 31 +0.0 + 0 +LINE + 5 +2DD0 + 8 +0 + 62 + 0 + 10 +34265.624904 + 20 +8524.937624 + 30 +0.0 + 11 +34312.499904 + 21 +8606.127506 + 31 +0.0 + 0 +LINE + 5 +2DD1 + 8 +0 + 62 + 0 + 10 +34406.249904 + 20 +8768.507269 + 30 +0.0 + 11 +34453.124904 + 21 +8849.69715 + 31 +0.0 + 0 +LINE + 5 +2DD2 + 8 +0 + 62 + 0 + 10 +34546.874904 + 20 +9012.076914 + 30 +0.0 + 11 +34593.749904 + 21 +9093.266795 + 31 +0.0 + 0 +LINE + 5 +2DD3 + 8 +0 + 62 + 0 + 10 +34265.624904 + 20 +8362.557861 + 30 +0.0 + 11 +34312.499904 + 21 +8443.747743 + 31 +0.0 + 0 +LINE + 5 +2DD4 + 8 +0 + 62 + 0 + 10 +34406.249904 + 20 +8606.127506 + 30 +0.0 + 11 +34453.124904 + 21 +8687.317387 + 31 +0.0 + 0 +LINE + 5 +2DD5 + 8 +0 + 62 + 0 + 10 +34546.874904 + 20 +8849.697151 + 30 +0.0 + 11 +34593.749904 + 21 +8930.887032 + 31 +0.0 + 0 +LINE + 5 +2DD6 + 8 +0 + 62 + 0 + 10 +34265.624903 + 20 +8200.178098 + 30 +0.0 + 11 +34312.499903 + 21 +8281.36798 + 31 +0.0 + 0 +LINE + 5 +2DD7 + 8 +0 + 62 + 0 + 10 +34406.249903 + 20 +8443.747743 + 30 +0.0 + 11 +34453.124903 + 21 +8524.937624 + 31 +0.0 + 0 +LINE + 5 +2DD8 + 8 +0 + 62 + 0 + 10 +34546.874903 + 20 +8687.317388 + 30 +0.0 + 11 +34593.749903 + 21 +8768.507269 + 31 +0.0 + 0 +LINE + 5 +2DD9 + 8 +0 + 62 + 0 + 10 +34265.624903 + 20 +8037.798335 + 30 +0.0 + 11 +34312.499903 + 21 +8118.988217 + 31 +0.0 + 0 +LINE + 5 +2DDA + 8 +0 + 62 + 0 + 10 +34406.249903 + 20 +8281.36798 + 30 +0.0 + 11 +34453.124903 + 21 +8362.557861 + 31 +0.0 + 0 +LINE + 5 +2DDB + 8 +0 + 62 + 0 + 10 +34546.874903 + 20 +8524.937625 + 30 +0.0 + 11 +34593.749903 + 21 +8606.127506 + 31 +0.0 + 0 +LINE + 5 +2DDC + 8 +0 + 62 + 0 + 10 +34265.624903 + 20 +7875.418572 + 30 +0.0 + 11 +34312.499903 + 21 +7956.608454 + 31 +0.0 + 0 +LINE + 5 +2DDD + 8 +0 + 62 + 0 + 10 +34406.249903 + 20 +8118.988217 + 30 +0.0 + 11 +34453.124903 + 21 +8200.178098 + 31 +0.0 + 0 +LINE + 5 +2DDE + 8 +0 + 62 + 0 + 10 +34546.874903 + 20 +8362.557862 + 30 +0.0 + 11 +34593.749903 + 21 +8443.747743 + 31 +0.0 + 0 +LINE + 5 +2DDF + 8 +0 + 62 + 0 + 10 +34265.624902 + 20 +7713.038809 + 30 +0.0 + 11 +34312.499902 + 21 +7794.22869 + 31 +0.0 + 0 +LINE + 5 +2DE0 + 8 +0 + 62 + 0 + 10 +34406.249902 + 20 +7956.608454 + 30 +0.0 + 11 +34453.124902 + 21 +8037.798335 + 31 +0.0 + 0 +LINE + 5 +2DE1 + 8 +0 + 62 + 0 + 10 +34546.874902 + 20 +8200.178098 + 30 +0.0 + 11 +34593.749902 + 21 +8281.36798 + 31 +0.0 + 0 +LINE + 5 +2DE2 + 8 +0 + 62 + 0 + 10 +34265.624902 + 20 +7550.659046 + 30 +0.0 + 11 +34312.499902 + 21 +7631.848927 + 31 +0.0 + 0 +LINE + 5 +2DE3 + 8 +0 + 62 + 0 + 10 +34406.249902 + 20 +7794.228691 + 30 +0.0 + 11 +34453.124902 + 21 +7875.418572 + 31 +0.0 + 0 +LINE + 5 +2DE4 + 8 +0 + 62 + 0 + 10 +34546.874902 + 20 +8037.798335 + 30 +0.0 + 11 +34593.749902 + 21 +8118.988217 + 31 +0.0 + 0 +LINE + 5 +2DE5 + 8 +0 + 62 + 0 + 10 +34265.624902 + 20 +7388.279283 + 30 +0.0 + 11 +34312.499902 + 21 +7469.469164 + 31 +0.0 + 0 +LINE + 5 +2DE6 + 8 +0 + 62 + 0 + 10 +34406.249902 + 20 +7631.848928 + 30 +0.0 + 11 +34453.124902 + 21 +7713.038809 + 31 +0.0 + 0 +LINE + 5 +2DE7 + 8 +0 + 62 + 0 + 10 +34546.874902 + 20 +7875.418572 + 30 +0.0 + 11 +34593.749902 + 21 +7956.608454 + 31 +0.0 + 0 +LINE + 5 +2DE8 + 8 +0 + 62 + 0 + 10 +34265.624901 + 20 +7225.89952 + 30 +0.0 + 11 +34312.499901 + 21 +7307.089401 + 31 +0.0 + 0 +LINE + 5 +2DE9 + 8 +0 + 62 + 0 + 10 +34406.249901 + 20 +7469.469165 + 30 +0.0 + 11 +34453.124901 + 21 +7550.659046 + 31 +0.0 + 0 +LINE + 5 +2DEA + 8 +0 + 62 + 0 + 10 +34546.874901 + 20 +7713.038809 + 30 +0.0 + 11 +34593.749901 + 21 +7794.228691 + 31 +0.0 + 0 +LINE + 5 +2DEB + 8 +0 + 62 + 0 + 10 +34265.624901 + 20 +7063.519757 + 30 +0.0 + 11 +34312.499901 + 21 +7144.709638 + 31 +0.0 + 0 +LINE + 5 +2DEC + 8 +0 + 62 + 0 + 10 +34406.249901 + 20 +7307.089402 + 30 +0.0 + 11 +34453.124901 + 21 +7388.279283 + 31 +0.0 + 0 +LINE + 5 +2DED + 8 +0 + 62 + 0 + 10 +34546.874901 + 20 +7550.659046 + 30 +0.0 + 11 +34593.749901 + 21 +7631.848928 + 31 +0.0 + 0 +LINE + 5 +2DEE + 8 +0 + 62 + 0 + 10 +34265.624901 + 20 +6901.139994 + 30 +0.0 + 11 +34312.499901 + 21 +6982.329875 + 31 +0.0 + 0 +LINE + 5 +2DEF + 8 +0 + 62 + 0 + 10 +34406.249901 + 20 +7144.709639 + 30 +0.0 + 11 +34453.124901 + 21 +7225.89952 + 31 +0.0 + 0 +LINE + 5 +2DF0 + 8 +0 + 62 + 0 + 10 +34546.874901 + 20 +7388.279283 + 30 +0.0 + 11 +34593.749901 + 21 +7469.469165 + 31 +0.0 + 0 +LINE + 5 +2DF1 + 8 +0 + 62 + 0 + 10 +34272.114184 + 20 +6750.0 + 30 +0.0 + 11 +34312.4999 + 21 +6819.950112 + 31 +0.0 + 0 +LINE + 5 +2DF2 + 8 +0 + 62 + 0 + 10 +34406.2499 + 20 +6982.329875 + 30 +0.0 + 11 +34453.1249 + 21 +7063.519757 + 31 +0.0 + 0 +LINE + 5 +2DF3 + 8 +0 + 62 + 0 + 10 +34546.8749 + 20 +7225.89952 + 30 +0.0 + 11 +34593.7499 + 21 +7307.089402 + 31 +0.0 + 0 +LINE + 5 +2DF4 + 8 +0 + 62 + 0 + 10 +34406.2499 + 20 +6819.950112 + 30 +0.0 + 11 +34453.1249 + 21 +6901.139994 + 31 +0.0 + 0 +LINE + 5 +2DF5 + 8 +0 + 62 + 0 + 10 +34546.8749 + 20 +7063.519757 + 30 +0.0 + 11 +34593.7499 + 21 +7144.709639 + 31 +0.0 + 0 +LINE + 5 +2DF6 + 8 +0 + 62 + 0 + 10 +34546.8749 + 20 +6901.139994 + 30 +0.0 + 11 +34593.7499 + 21 +6982.329876 + 31 +0.0 + 0 +LINE + 5 +2DF7 + 8 +0 + 62 + 0 + 10 +34553.364183 + 20 +6750.0 + 30 +0.0 + 11 +34593.7499 + 21 +6819.950113 + 31 +0.0 + 0 +ENDBLK + 5 +2DF8 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X219 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X219 + 1 + + 0 +LINE + 5 +2DFA + 8 +0 + 62 + 0 + 10 +34600.0 + 20 +9320.932573 + 30 +0.0 + 11 +36425.0 + 21 +11145.932573 + 31 +0.0 + 0 +LINE + 5 +2DFB + 8 +0 + 62 + 0 + 10 +34600.0 + 20 +10469.981092 + 30 +0.0 + 11 +36425.0 + 21 +12294.981092 + 31 +0.0 + 0 +LINE + 5 +2DFC + 8 +0 + 62 + 0 + 10 +34600.0 + 20 +11619.029611 + 30 +0.0 + 11 +36230.970389 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2DFD + 8 +0 + 62 + 0 + 10 +34600.0 + 20 +12768.078131 + 30 +0.0 + 11 +35081.921869 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2DFE + 8 +0 + 62 + 0 + 10 +34600.0 + 20 +8171.884053 + 30 +0.0 + 11 +36425.0 + 21 +9996.884053 + 31 +0.0 + 0 +LINE + 5 +2DFF + 8 +0 + 62 + 0 + 10 +34600.0 + 20 +7022.835534 + 30 +0.0 + 11 +36425.0 + 21 +8847.835534 + 31 +0.0 + 0 +LINE + 5 +2E00 + 8 +0 + 62 + 0 + 10 +35476.212986 + 20 +6750.0 + 30 +0.0 + 11 +36425.0 + 21 +7698.787014 + 31 +0.0 + 0 +ENDBLK + 5 +2E01 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X220 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X220 + 1 + + 0 +LINE + 5 +2E03 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +9990.476221 + 30 +0.0 + 11 +33900.0 + 21 +10565.476221 + 31 +0.0 + 0 +LINE + 5 +2E04 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +10344.029611 + 30 +0.0 + 11 +33900.0 + 21 +10919.029611 + 31 +0.0 + 0 +LINE + 5 +2E05 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +10697.583002 + 30 +0.0 + 11 +33900.0 + 21 +11272.583002 + 31 +0.0 + 0 +LINE + 5 +2E06 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +11051.136393 + 30 +0.0 + 11 +33900.0 + 21 +11626.136393 + 31 +0.0 + 0 +LINE + 5 +2E07 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +11404.689783 + 30 +0.0 + 11 +33900.0 + 21 +11979.689783 + 31 +0.0 + 0 +LINE + 5 +2E08 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +11758.243174 + 30 +0.0 + 11 +33900.0 + 21 +12333.243174 + 31 +0.0 + 0 +LINE + 5 +2E09 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +12111.796564 + 30 +0.0 + 11 +33900.0 + 21 +12686.796564 + 31 +0.0 + 0 +LINE + 5 +2E0A + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +12465.349955 + 30 +0.0 + 11 +33900.0 + 21 +13040.349955 + 31 +0.0 + 0 +LINE + 5 +2E0B + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +12818.903346 + 30 +0.0 + 11 +33756.096654 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2E0C + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +13172.456736 + 30 +0.0 + 11 +33402.543264 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +2E0D + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +9636.92283 + 30 +0.0 + 11 +33900.0 + 21 +10211.92283 + 31 +0.0 + 0 +LINE + 5 +2E0E + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +9283.36944 + 30 +0.0 + 11 +33900.0 + 21 +9858.36944 + 31 +0.0 + 0 +LINE + 5 +2E0F + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +8929.816049 + 30 +0.0 + 11 +33900.0 + 21 +9504.816049 + 31 +0.0 + 0 +LINE + 5 +2E10 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +8576.262658 + 30 +0.0 + 11 +33900.0 + 21 +9151.262658 + 31 +0.0 + 0 +LINE + 5 +2E11 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +8222.709268 + 30 +0.0 + 11 +33900.0 + 21 +8797.709268 + 31 +0.0 + 0 +LINE + 5 +2E12 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +7869.155877 + 30 +0.0 + 11 +33900.0 + 21 +8444.155877 + 31 +0.0 + 0 +LINE + 5 +2E13 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +7515.602487 + 30 +0.0 + 11 +33900.0 + 21 +8090.602487 + 31 +0.0 + 0 +LINE + 5 +2E14 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +7162.049096 + 30 +0.0 + 11 +33900.0 + 21 +7737.049096 + 31 +0.0 + 0 +LINE + 5 +2E15 + 8 +0 + 62 + 0 + 10 +33325.0 + 20 +6808.495706 + 30 +0.0 + 11 +33900.0 + 21 +7383.495706 + 31 +0.0 + 0 +LINE + 5 +2E16 + 8 +0 + 62 + 0 + 10 +33620.057685 + 20 +6750.0 + 30 +0.0 + 11 +33900.0 + 21 +7029.942315 + 31 +0.0 + 0 +ENDBLK + 5 +2E17 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D221 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D221 + 1 + + 0 +LINE + 5 +2E19 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18355.0 + 20 +9656.0 + 30 +0.0 + 11 +18355.0 + 21 +10854.0 + 31 +0.0 + 0 +INSERT + 5 +2E1A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18355.0 + 20 +9655.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2E1B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18355.0 + 20 +10855.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2E1C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18267.5 + 20 +10101.875 + 30 +0.0 + 40 +175.0 + 1 +1.21 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +18180.0 + 21 +10255.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2E1D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18365.0 + 20 +9655.0 + 30 +0.0 + 0 +POINT + 5 +2E1E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18355.0 + 20 +10855.0 + 30 +0.0 + 0 +POINT + 5 +2E1F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18355.0 + 20 +10855.0 + 30 +0.0 + 0 +ENDBLK + 5 +2E20 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D222 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D222 + 1 + + 0 +LINE + 5 +2E22 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18455.0 + 20 +9626.0 + 30 +0.0 + 11 +18455.0 + 21 +9654.0 + 31 +0.0 + 0 +INSERT + 5 +2E23 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18455.0 + 20 +9625.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2E24 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18455.0 + 20 +9655.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2E25 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18367.5 + 20 +9696.25 + 30 +0.0 + 40 +175.0 + 1 +3 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +18280.0 + 21 +9740.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2E26 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18465.0 + 20 +9625.0 + 30 +0.0 + 0 +POINT + 5 +2E27 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18465.0 + 20 +9655.0 + 30 +0.0 + 0 +POINT + 5 +2E28 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18455.0 + 20 +9655.0 + 30 +0.0 + 0 +ENDBLK + 5 +2E29 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D223 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D223 + 1 + + 0 +LINE + 5 +2E2B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18445.0 + 20 +13866.0 + 30 +0.0 + 11 +18445.0 + 21 +15624.0 + 31 +0.0 + 0 +INSERT + 5 +2E2C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18445.0 + 20 +13865.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +2E2D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18445.0 + 20 +15625.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +2E2E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18357.5 + 20 +14570.0 + 30 +0.0 + 40 +175.0 + 1 +1.76 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 72 + 1 + 11 +18270.0 + 21 +14745.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +2E2F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18490.0 + 20 +13865.0 + 30 +0.0 + 0 +POINT + 5 +2E30 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18490.0 + 20 +15625.0 + 30 +0.0 + 0 +POINT + 5 +2E31 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18445.0 + 20 +15625.0 + 30 +0.0 + 0 +ENDBLK + 5 +2E32 + 8 +0 + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +POLYLINE + 5 +2E33 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34B5 + 8 +0 + 10 +1000.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +34B6 + 8 +0 + 10 +41800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +34B7 + 8 +0 + 10 +41800.0 + 20 +29450.0 + 30 +0.0 + 0 +VERTEX + 5 +34B8 + 8 +0 + 10 +1000.0 + 20 +29450.0 + 30 +0.0 + 0 +SEQEND + 5 +34B9 + 8 +0 + 0 +POLYLINE + 5 +2E39 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34BA + 8 +MAUERWERK + 10 +8750.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +34BB + 8 +MAUERWERK + 10 +9865.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +34BC + 8 +MAUERWERK + 10 +9865.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +34BD + 8 +MAUERWERK + 10 +9740.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +34BE + 8 +MAUERWERK + 10 +9740.0 + 20 +12375.0 + 30 +0.0 + 0 +VERTEX + 5 +34BF + 8 +MAUERWERK + 10 +12615.0 + 20 +12375.0 + 30 +0.0 + 0 +VERTEX + 5 +34C0 + 8 +MAUERWERK + 10 +12615.0 + 20 +12740.0 + 30 +0.0 + 0 +VERTEX + 5 +34C1 + 8 +MAUERWERK + 10 +10115.0 + 20 +12740.0 + 30 +0.0 + 0 +VERTEX + 5 +34C2 + 8 +MAUERWERK + 10 +10115.0 + 20 +12990.0 + 30 +0.0 + 0 +VERTEX + 5 +34C3 + 8 +MAUERWERK + 10 +9750.0 + 20 +12990.0 + 30 +0.0 + 0 +VERTEX + 5 +34C4 + 8 +MAUERWERK + 10 +9750.0 + 20 +12740.0 + 30 +0.0 + 0 +VERTEX + 5 +34C5 + 8 +MAUERWERK + 10 +9375.0 + 20 +12740.0 + 30 +0.0 + 0 +VERTEX + 5 +34C6 + 8 +MAUERWERK + 10 +9375.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +34C7 + 8 +MAUERWERK + 10 +8750.0 + 20 +9615.0 + 30 +0.0 + 0 +SEQEND + 5 +34C8 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E49 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34C9 + 8 +MAUERWERK + 10 +5000.0 + 20 +16125.0 + 30 +0.0 + 0 +VERTEX + 5 +34CA + 8 +MAUERWERK + 10 +5365.0 + 20 +16125.0 + 30 +0.0 + 0 +VERTEX + 5 +34CB + 8 +MAUERWERK + 10 +5365.0 + 20 +16875.0 + 30 +0.0 + 0 +VERTEX + 5 +34CC + 8 +MAUERWERK + 10 +8115.0 + 20 +16875.0 + 30 +0.0 + 0 +VERTEX + 5 +34CD + 8 +MAUERWERK + 10 +8115.0 + 20 +17240.0 + 30 +0.0 + 0 +VERTEX + 5 +34CE + 8 +MAUERWERK + 10 +5365.0 + 20 +17240.0 + 30 +0.0 + 0 +VERTEX + 5 +34CF + 8 +MAUERWERK + 10 +5365.0 + 20 +18240.0 + 30 +0.0 + 0 +VERTEX + 5 +34D0 + 8 +MAUERWERK + 10 +5000.0 + 20 +18240.0 + 30 +0.0 + 0 +SEQEND + 5 +34D1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E53 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34D2 + 8 +MAUERWERK + 10 +5000.0 + 20 +19375.0 + 30 +0.0 + 0 +VERTEX + 5 +34D3 + 8 +MAUERWERK + 10 +5365.0 + 20 +19375.0 + 30 +0.0 + 0 +VERTEX + 5 +34D4 + 8 +MAUERWERK + 10 +5365.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34D5 + 8 +MAUERWERK + 10 +6740.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34D6 + 8 +MAUERWERK + 10 +6740.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +34D7 + 8 +MAUERWERK + 10 +5000.0 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +34D8 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E5B + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34D9 + 8 +MAUERWERK + 10 +8500.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +34DA + 8 +MAUERWERK + 10 +8500.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34DB + 8 +MAUERWERK + 10 +9750.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34DC + 8 +MAUERWERK + 10 +9750.0 + 20 +20875.0 + 30 +0.0 + 0 +VERTEX + 5 +34DD + 8 +MAUERWERK + 10 +10115.0 + 20 +20875.0 + 30 +0.0 + 0 +VERTEX + 5 +34DE + 8 +MAUERWERK + 10 +10115.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34DF + 8 +MAUERWERK + 10 +10240.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34E0 + 8 +MAUERWERK + 10 +10240.0 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +34E1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E65 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34E2 + 8 +MAUERWERK + 10 +9750.0 + 20 +19990.0 + 30 +0.0 + 0 +VERTEX + 5 +34E3 + 8 +MAUERWERK + 10 +9750.0 + 20 +17240.0 + 30 +0.0 + 0 +VERTEX + 5 +34E4 + 8 +MAUERWERK + 10 +9000.0 + 20 +17240.0 + 30 +0.0 + 0 +VERTEX + 5 +34E5 + 8 +MAUERWERK + 10 +9000.0 + 20 +16875.0 + 30 +0.0 + 0 +VERTEX + 5 +34E6 + 8 +MAUERWERK + 10 +9750.0 + 20 +16875.0 + 30 +0.0 + 0 +VERTEX + 5 +34E7 + 8 +MAUERWERK + 10 +9750.0 + 20 +16625.0 + 30 +0.0 + 0 +VERTEX + 5 +34E8 + 8 +MAUERWERK + 10 +10115.0 + 20 +16625.0 + 30 +0.0 + 0 +VERTEX + 5 +34E9 + 8 +MAUERWERK + 10 +10115.0 + 20 +19990.0 + 30 +0.0 + 0 +SEQEND + 5 +34EA + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E6F + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34EB + 8 +MAUERWERK + 10 +11250.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +34EC + 8 +MAUERWERK + 10 +11250.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34ED + 8 +MAUERWERK + 10 +14875.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34EE + 8 +MAUERWERK + 10 +14875.0 + 20 +17250.0 + 30 +0.0 + 0 +VERTEX + 5 +34EF + 8 +MAUERWERK + 10 +15240.0 + 20 +17250.0 + 30 +0.0 + 0 +VERTEX + 5 +34F0 + 8 +MAUERWERK + 10 +15240.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34F1 + 8 +MAUERWERK + 10 +15865.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34F2 + 8 +MAUERWERK + 10 +15865.0 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +34F3 + 8 +MAUERWERK + 0 +POINT + 5 +2E79 + 8 +MAUERWERK + 10 +14875.0 + 20 +21125.0 + 30 +0.0 + 0 +POINT + 5 +2E7A + 8 +MAUERWERK + 10 +15240.0 + 20 +17625.0 + 30 +0.0 + 0 +POINT + 5 +2E7B + 8 +MAUERWERK + 10 +15730.0 + 20 +21750.0 + 30 +0.0 + 0 +POINT + 5 +2E7C + 8 +MAUERWERK + 10 +11750.0 + 20 +22115.0 + 30 +0.0 + 0 +POLYLINE + 5 +2E7D + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34F4 + 8 +MAUERWERK + 10 +25250.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +34F5 + 8 +MAUERWERK + 10 +25250.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34F6 + 8 +MAUERWERK + 10 +26375.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34F7 + 8 +MAUERWERK + 10 +26375.0 + 20 +18375.0 + 30 +0.0 + 0 +VERTEX + 5 +34F8 + 8 +MAUERWERK + 10 +26740.0 + 20 +18375.0 + 30 +0.0 + 0 +VERTEX + 5 +34F9 + 8 +MAUERWERK + 10 +26740.0 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +34FA + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E85 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +34FB + 8 +MAUERWERK + 10 +23365.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +34FC + 8 +MAUERWERK + 10 +19750.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +34FD + 8 +MAUERWERK + 10 +19750.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34FE + 8 +MAUERWERK + 10 +22500.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +34FF + 8 +MAUERWERK + 10 +22500.0 + 20 +17125.0 + 30 +0.0 + 0 +VERTEX + 5 +3500 + 8 +MAUERWERK + 10 +22865.0 + 20 +17125.0 + 30 +0.0 + 0 +VERTEX + 5 +3501 + 8 +MAUERWERK + 10 +22865.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +3502 + 8 +MAUERWERK + 10 +23365.0 + 20 +21750.0 + 30 +0.0 + 0 +SEQEND + 5 +3503 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E8F + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3504 + 8 +MAUERWERK + 10 +26375.0 + 20 +10365.0 + 30 +0.0 + 0 +VERTEX + 5 +3505 + 8 +MAUERWERK + 10 +26740.0 + 20 +10365.0 + 30 +0.0 + 0 +VERTEX + 5 +3506 + 8 +MAUERWERK + 10 +26740.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3507 + 8 +MAUERWERK + 10 +25375.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3508 + 8 +MAUERWERK + 10 +25375.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3509 + 8 +MAUERWERK + 10 +26375.0 + 20 +9615.0 + 30 +0.0 + 0 +SEQEND + 5 +350A + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E97 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +350B + 8 +MAUERWERK + 10 +23240.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +350C + 8 +MAUERWERK + 10 +21875.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +350D + 8 +MAUERWERK + 10 +21875.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +350E + 8 +MAUERWERK + 10 +23240.0 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +350F + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E9D + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3510 + 8 +MAUERWERK + 10 +21365.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3511 + 8 +MAUERWERK + 10 +21365.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3512 + 8 +MAUERWERK + 10 +21240.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3513 + 8 +MAUERWERK + 10 +21240.0 + 20 +14240.0 + 30 +0.0 + 0 +VERTEX + 5 +3514 + 8 +MAUERWERK + 10 +20875.0 + 20 +14240.0 + 30 +0.0 + 0 +VERTEX + 5 +3515 + 8 +MAUERWERK + 10 +20875.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3516 + 8 +MAUERWERK + 10 +20375.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3517 + 8 +MAUERWERK + 10 +20375.0 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +3518 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2EA7 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3519 + 8 +MAUERWERK + 10 +11250.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +351A + 8 +MAUERWERK + 10 +11250.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +351B + 8 +MAUERWERK + 10 +16115.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +351C + 8 +MAUERWERK + 10 +16115.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +351D + 8 +MAUERWERK + 10 +14490.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +351E + 8 +MAUERWERK + 10 +14490.0 + 20 +13500.0 + 30 +0.0 + 0 +VERTEX + 5 +351F + 8 +MAUERWERK + 10 +14615.0 + 20 +13500.0 + 30 +0.0 + 0 +VERTEX + 5 +3520 + 8 +MAUERWERK + 10 +14615.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3521 + 8 +MAUERWERK + 10 +14125.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3522 + 8 +MAUERWERK + 10 +14125.0 + 20 +12740.0 + 30 +0.0 + 0 +VERTEX + 5 +3523 + 8 +MAUERWERK + 10 +13875.0 + 20 +12740.0 + 30 +0.0 + 0 +VERTEX + 5 +3524 + 8 +MAUERWERK + 10 +13875.0 + 20 +12375.0 + 30 +0.0 + 0 +VERTEX + 5 +3525 + 8 +MAUERWERK + 10 +14125.0 + 20 +12375.0 + 30 +0.0 + 0 +VERTEX + 5 +3526 + 8 +MAUERWERK + 10 +14125.0 + 20 +9615.0 + 30 +0.0 + 0 +SEQEND + 5 +3527 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2EB7 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3528 + 8 +MAUERWERK + 10 +18490.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3529 + 8 +MAUERWERK + 10 +18490.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +352A + 8 +MAUERWERK + 10 +17375.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +352B + 8 +MAUERWERK + 10 +17375.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +352C + 8 +MAUERWERK + 10 +17625.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +352D + 8 +MAUERWERK + 10 +17625.0 + 20 +13500.0 + 30 +0.0 + 0 +VERTEX + 5 +352E + 8 +MAUERWERK + 10 +15500.0 + 20 +13500.0 + 30 +0.0 + 0 +VERTEX + 5 +352F + 8 +MAUERWERK + 10 +15500.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3530 + 8 +MAUERWERK + 10 +15750.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3531 + 8 +MAUERWERK + 10 +15750.0 + 20 +13990.0 + 30 +0.0 + 0 +VERTEX + 5 +3532 + 8 +MAUERWERK + 10 +16115.0 + 20 +13990.0 + 30 +0.0 + 0 +VERTEX + 5 +3533 + 8 +MAUERWERK + 10 +16115.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3534 + 8 +MAUERWERK + 10 +17990.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3535 + 8 +MAUERWERK + 10 +17990.0 + 20 +9615.0 + 30 +0.0 + 0 +SEQEND + 5 +3536 + 8 +MAUERWERK + 0 +POINT + 5 +2EC7 + 8 +MAUERWERK + 10 +5040.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +2EC8 + 8 +MAUERWERK + 10 +6050.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +2EC9 + 8 +MAUERWERK + 10 +7060.0 + 20 +9250.0 + 30 +0.0 + 0 +POINT + 5 +2ECA + 8 +MAUERWERK + 10 +7740.0 + 20 +9580.0 + 30 +0.0 + 0 +POINT + 5 +2ECB + 8 +MAUERWERK + 10 +6765.0 + 20 +9615.0 + 30 +0.0 + 0 +POINT + 5 +2ECC + 8 +MAUERWERK + 10 +5755.0 + 20 +9615.0 + 30 +0.0 + 0 +POINT + 5 +2ECD + 8 +MAUERWERK + 10 +5365.0 + 20 +10235.0 + 30 +0.0 + 0 +POINT + 5 +2ECE + 8 +MAUERWERK + 10 +5365.0 + 20 +11245.0 + 30 +0.0 + 0 +POINT + 5 +2ECF + 8 +MAUERWERK + 10 +5365.0 + 20 +12255.0 + 30 +0.0 + 0 +POINT + 5 +2ED0 + 8 +MAUERWERK + 10 +5365.0 + 20 +13265.0 + 30 +0.0 + 0 +POINT + 5 +2ED1 + 8 +MAUERWERK + 10 +5515.0 + 20 +14125.0 + 30 +0.0 + 0 +POINT + 5 +2ED2 + 8 +MAUERWERK + 10 +6525.0 + 20 +14125.0 + 30 +0.0 + 0 +POINT + 5 +2ED3 + 8 +MAUERWERK + 10 +7535.0 + 20 +14125.0 + 30 +0.0 + 0 +POINT + 5 +2ED4 + 8 +MAUERWERK + 10 +8545.0 + 20 +14125.0 + 30 +0.0 + 0 +POINT + 5 +2ED5 + 8 +MAUERWERK + 10 +9555.0 + 20 +14125.0 + 30 +0.0 + 0 +POINT + 5 +2ED6 + 8 +MAUERWERK + 10 +10115.0 + 20 +14075.0 + 30 +0.0 + 0 +POINT + 5 +2ED7 + 8 +MAUERWERK + 10 +10115.0 + 20 +15085.0 + 30 +0.0 + 0 +POINT + 5 +2ED8 + 8 +MAUERWERK + 10 +11085.0 + 20 +15125.0 + 30 +0.0 + 0 +POINT + 5 +2ED9 + 8 +MAUERWERK + 10 +12095.0 + 20 +15125.0 + 30 +0.0 + 0 +POINT + 5 +2EDA + 8 +MAUERWERK + 10 +13105.0 + 20 +15125.0 + 30 +0.0 + 0 +POINT + 5 +2EDB + 8 +MAUERWERK + 10 +14115.0 + 20 +15125.0 + 30 +0.0 + 0 +POINT + 5 +2EDC + 8 +MAUERWERK + 10 +15125.0 + 20 +15125.0 + 30 +0.0 + 0 +POINT + 5 +2EDD + 8 +MAUERWERK + 10 +16010.0 + 20 +15000.0 + 30 +0.0 + 0 +POINT + 5 +2EDE + 8 +MAUERWERK + 10 +16365.0 + 20 +15655.0 + 30 +0.0 + 0 +POINT + 5 +2EDF + 8 +MAUERWERK + 10 +15750.0 + 20 +15930.0 + 30 +0.0 + 0 +POINT + 5 +2EE0 + 8 +MAUERWERK + 10 +15180.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +2EE1 + 8 +MAUERWERK + 10 +14170.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +2EE2 + 8 +MAUERWERK + 10 +13160.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +2EE3 + 8 +MAUERWERK + 10 +12150.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +2EE4 + 8 +MAUERWERK + 10 +11140.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +2EE5 + 8 +MAUERWERK + 10 +10130.0 + 20 +15490.0 + 30 +0.0 + 0 +POINT + 5 +2EE6 + 8 +MAUERWERK + 10 +9750.0 + 20 +15360.0 + 30 +0.0 + 0 +POINT + 5 +2EE7 + 8 +MAUERWERK + 10 +9610.0 + 20 +14490.0 + 30 +0.0 + 0 +POINT + 5 +2EE8 + 8 +MAUERWERK + 10 +8600.0 + 20 +14490.0 + 30 +0.0 + 0 +POINT + 5 +2EE9 + 8 +MAUERWERK + 10 +7590.0 + 20 +14490.0 + 30 +0.0 + 0 +POINT + 5 +2EEA + 8 +MAUERWERK + 10 +6580.0 + 20 +14490.0 + 30 +0.0 + 0 +POINT + 5 +2EEB + 8 +MAUERWERK + 10 +5570.0 + 20 +14490.0 + 30 +0.0 + 0 +POINT + 5 +2EEC + 8 +MAUERWERK + 10 +5000.0 + 20 +14300.0 + 30 +0.0 + 0 +POINT + 5 +2EED + 8 +MAUERWERK + 10 +5000.0 + 20 +13290.0 + 30 +0.0 + 0 +POINT + 5 +2EEE + 8 +MAUERWERK + 10 +5000.0 + 20 +12280.0 + 30 +0.0 + 0 +POINT + 5 +2EEF + 8 +MAUERWERK + 10 +5000.0 + 20 +11270.0 + 30 +0.0 + 0 +POINT + 5 +2EF0 + 8 +MAUERWERK + 10 +5000.0 + 20 +10260.0 + 30 +0.0 + 0 +POINT + 5 +2EF1 + 8 +MAUERWERK + 10 +26740.0 + 20 +12395.0 + 30 +0.0 + 0 +POINT + 5 +2EF2 + 8 +MAUERWERK + 10 +26740.0 + 20 +15845.0 + 30 +0.0 + 0 +POINT + 5 +2EF3 + 8 +MAUERWERK + 10 +26375.0 + 20 +16550.0 + 30 +0.0 + 0 +POINT + 5 +2EF4 + 8 +MAUERWERK + 10 +23485.0 + 20 +15990.0 + 30 +0.0 + 0 +POINT + 5 +2EF5 + 8 +MAUERWERK + 10 +23100.0 + 20 +15625.0 + 30 +0.0 + 0 +POINT + 5 +2EF6 + 8 +MAUERWERK + 10 +26375.0 + 20 +15450.0 + 30 +0.0 + 0 +POLYLINE + 5 +2EF7 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3537 + 8 +MAUERWERK + 10 +26375.0 + 20 +12000.0 + 30 +0.0 + 0 +VERTEX + 5 +3538 + 8 +MAUERWERK + 10 +26740.0 + 20 +12000.0 + 30 +0.0 + 0 +VERTEX + 5 +3539 + 8 +MAUERWERK + 10 +26740.0 + 20 +17740.0 + 30 +0.0 + 0 +VERTEX + 5 +353A + 8 +MAUERWERK + 10 +26375.0 + 20 +17740.0 + 30 +0.0 + 0 +VERTEX + 5 +353B + 8 +MAUERWERK + 10 +26375.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +353C + 8 +MAUERWERK + 10 +22865.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +353D + 8 +MAUERWERK + 10 +22865.0 + 20 +16240.0 + 30 +0.0 + 0 +VERTEX + 5 +353E + 8 +MAUERWERK + 10 +22500.0 + 20 +16240.0 + 30 +0.0 + 0 +VERTEX + 5 +353F + 8 +MAUERWERK + 10 +22500.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +3540 + 8 +MAUERWERK + 10 +22250.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +3541 + 8 +MAUERWERK + 10 +22250.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +3542 + 8 +MAUERWERK + 10 +26375.0 + 20 +15625.0 + 30 +0.0 + 0 +SEQEND + 5 +3543 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2F05 + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3544 + 8 +TRENNWAENDE + 10 +22850.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +3545 + 8 +TRENNWAENDE + 10 +22850.0 + 20 +13915.0 + 30 +0.0 + 0 +VERTEX + 5 +3546 + 8 +TRENNWAENDE + 10 +22450.0 + 20 +13915.0 + 30 +0.0 + 0 +VERTEX + 5 +3547 + 8 +TRENNWAENDE + 10 +22450.0 + 20 +14040.0 + 30 +0.0 + 0 +VERTEX + 5 +3548 + 8 +TRENNWAENDE + 10 +22850.0 + 20 +14040.0 + 30 +0.0 + 0 +VERTEX + 5 +3549 + 8 +TRENNWAENDE + 10 +22850.0 + 20 +14340.0 + 30 +0.0 + 0 +VERTEX + 5 +354A + 8 +TRENNWAENDE + 10 +22975.0 + 20 +14340.0 + 30 +0.0 + 0 +VERTEX + 5 +354B + 8 +TRENNWAENDE + 10 +22975.0 + 20 +9615.0 + 30 +0.0 + 0 +SEQEND + 5 +354C + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F0F + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +354D + 8 +TRENNWAENDE + 10 +22850.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +354E + 8 +TRENNWAENDE + 10 +22850.0 + 20 +15225.0 + 30 +0.0 + 0 +VERTEX + 5 +354F + 8 +TRENNWAENDE + 10 +22975.0 + 20 +15225.0 + 30 +0.0 + 0 +VERTEX + 5 +3550 + 8 +TRENNWAENDE + 10 +22975.0 + 20 +15625.0 + 30 +0.0 + 0 +SEQEND + 5 +3551 + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F15 + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3552 + 8 +TRENNWAENDE + 10 +21240.0 + 20 +13915.0 + 30 +0.0 + 0 +VERTEX + 5 +3553 + 8 +TRENNWAENDE + 10 +21565.0 + 20 +13915.0 + 30 +0.0 + 0 +VERTEX + 5 +3554 + 8 +TRENNWAENDE + 10 +21565.0 + 20 +14040.0 + 30 +0.0 + 0 +VERTEX + 5 +3555 + 8 +TRENNWAENDE + 10 +21240.0 + 20 +14040.0 + 30 +0.0 + 0 +SEQEND + 5 +3556 + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F1B + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3557 + 8 +TRENNWAENDE + 10 +10115.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +3558 + 8 +TRENNWAENDE + 10 +13525.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +3559 + 8 +TRENNWAENDE + 10 +13525.0 + 20 +17250.0 + 30 +0.0 + 0 +VERTEX + 5 +355A + 8 +TRENNWAENDE + 10 +10115.0 + 20 +17250.0 + 30 +0.0 + 0 +SEQEND + 5 +355B + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F21 + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +355C + 8 +TRENNWAENDE + 10 +14875.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +355D + 8 +TRENNWAENDE + 10 +14555.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +355E + 8 +TRENNWAENDE + 10 +14555.0 + 20 +17250.0 + 30 +0.0 + 0 +VERTEX + 5 +355F + 8 +TRENNWAENDE + 10 +14875.0 + 20 +17250.0 + 30 +0.0 + 0 +SEQEND + 5 +3560 + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F27 + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3561 + 8 +TRENNWAENDE + 10 +15240.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +3562 + 8 +TRENNWAENDE + 10 +15990.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +3563 + 8 +TRENNWAENDE + 10 +15990.0 + 20 +17250.0 + 30 +0.0 + 0 +VERTEX + 5 +3564 + 8 +TRENNWAENDE + 10 +15240.0 + 20 +17250.0 + 30 +0.0 + 0 +SEQEND + 5 +3565 + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F2D + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3566 + 8 +TRENNWAENDE + 10 +17625.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +3567 + 8 +TRENNWAENDE + 10 +16875.0 + 20 +17375.0 + 30 +0.0 + 0 +VERTEX + 5 +3568 + 8 +TRENNWAENDE + 10 +16875.0 + 20 +17250.0 + 30 +0.0 + 0 +VERTEX + 5 +3569 + 8 +TRENNWAENDE + 10 +17625.0 + 20 +17250.0 + 30 +0.0 + 0 +SEQEND + 5 +356A + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F33 + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +356B + 8 +TRENNWAENDE + 10 +7615.0 + 20 +16875.0 + 30 +0.0 + 0 +VERTEX + 5 +356C + 8 +TRENNWAENDE + 10 +7615.0 + 20 +16475.0 + 30 +0.0 + 0 +VERTEX + 5 +356D + 8 +TRENNWAENDE + 10 +7740.0 + 20 +16475.0 + 30 +0.0 + 0 +VERTEX + 5 +356E + 8 +TRENNWAENDE + 10 +7740.0 + 20 +16875.0 + 30 +0.0 + 0 +SEQEND + 5 +356F + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F39 + 8 +TRENNWAENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3570 + 8 +TRENNWAENDE + 10 +7615.0 + 20 +14490.0 + 30 +0.0 + 0 +VERTEX + 5 +3571 + 8 +TRENNWAENDE + 10 +7615.0 + 20 +15590.0 + 30 +0.0 + 0 +VERTEX + 5 +3572 + 8 +TRENNWAENDE + 10 +7740.0 + 20 +15590.0 + 30 +0.0 + 0 +VERTEX + 5 +3573 + 8 +TRENNWAENDE + 10 +7740.0 + 20 +14490.0 + 30 +0.0 + 0 +SEQEND + 5 +3574 + 8 +TRENNWAENDE + 0 +POLYLINE + 5 +2F3F + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3575 + 8 +FENSTER + 10 +6740.0 + 20 +21738.696968 + 30 +0.0 + 0 +VERTEX + 5 +3576 + 8 +FENSTER + 10 +8505.0 + 20 +21738.696968 + 30 +0.0 + 0 +SEQEND + 5 +3577 + 8 +FENSTER + 0 +POLYLINE + 5 +2F43 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3578 + 8 +FENSTER + 10 +10240.0 + 20 +21738.750414 + 30 +0.0 + 0 +VERTEX + 5 +3579 + 8 +FENSTER + 10 +11250.0 + 20 +21738.750414 + 30 +0.0 + 0 +SEQEND + 5 +357A + 8 +FENSTER + 0 +POLYLINE + 5 +2F47 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +357B + 8 +FENSTER + 10 +15865.0 + 20 +21738.749579 + 30 +0.0 + 0 +VERTEX + 5 +357C + 8 +FENSTER + 10 +16880.0 + 20 +21738.749579 + 30 +0.0 + 0 +SEQEND + 5 +357D + 8 +FENSTER + 0 +POLYLINE + 5 +2F4B + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +357E + 8 +FENSTER + 10 +18740.0 + 20 +21738.72851 + 30 +0.0 + 0 +VERTEX + 5 +357F + 8 +FENSTER + 10 +19750.0 + 20 +21738.72851 + 30 +0.0 + 0 +SEQEND + 5 +3580 + 8 +FENSTER + 0 +POLYLINE + 5 +2F4F + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3581 + 8 +FENSTER + 10 +23365.0 + 20 +21738.76512 + 30 +0.0 + 0 +VERTEX + 5 +3582 + 8 +FENSTER + 10 +25255.0 + 20 +21738.76512 + 30 +0.0 + 0 +SEQEND + 5 +3583 + 8 +FENSTER + 0 +POLYLINE + 5 +2F53 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3584 + 8 +FENSTER + 10 +26363.699375 + 20 +18380.0 + 30 +0.0 + 0 +VERTEX + 5 +3585 + 8 +FENSTER + 10 +26363.699375 + 20 +17720.0 + 30 +0.0 + 0 +SEQEND + 5 +3586 + 8 +FENSTER + 0 +POLYLINE + 5 +2F57 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3587 + 8 +FENSTER + 10 +26363.746274 + 20 +12010.0 + 30 +0.0 + 0 +VERTEX + 5 +3588 + 8 +FENSTER + 10 +26363.746274 + 20 +10355.0 + 30 +0.0 + 0 +SEQEND + 5 +3589 + 8 +FENSTER + 0 +POLYLINE + 5 +2F5B + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +358A + 8 +FENSTER + 10 +23231.732275 + 20 +9626.249997 + 30 +0.0 + 0 +VERTEX + 5 +358B + 8 +FENSTER + 10 +25366.732275 + 20 +9626.249997 + 30 +0.0 + 0 +SEQEND + 5 +358C + 8 +FENSTER + 0 +POLYLINE + 5 +2F5F + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +358D + 8 +FENSTER + 10 +21360.0 + 20 +9626.287656 + 30 +0.0 + 0 +VERTEX + 5 +358E + 8 +FENSTER + 10 +21875.0 + 20 +9626.287656 + 30 +0.0 + 0 +SEQEND + 5 +358F + 8 +FENSTER + 0 +POLYLINE + 5 +2F63 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3590 + 8 +FENSTER + 10 +18480.0 + 20 +9626.31444 + 30 +0.0 + 0 +VERTEX + 5 +3591 + 8 +FENSTER + 10 +20380.0 + 20 +9626.31444 + 30 +0.0 + 0 +SEQEND + 5 +3592 + 8 +FENSTER + 0 +POLYLINE + 5 +2F67 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3593 + 8 +FENSTER + 10 +16109.83412 + 20 +9626.263541 + 30 +0.0 + 0 +VERTEX + 5 +3594 + 8 +FENSTER + 10 +17379.83412 + 20 +9626.263541 + 30 +0.0 + 0 +SEQEND + 5 +3595 + 8 +FENSTER + 0 +POLYLINE + 5 +2F6B + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3596 + 8 +FENSTER + 10 +9865.0 + 20 +9626.25 + 30 +0.0 + 0 +VERTEX + 5 +3597 + 8 +FENSTER + 10 +11260.0 + 20 +9626.25 + 30 +0.0 + 0 +SEQEND + 5 +3598 + 8 +FENSTER + 0 +LINE + 5 +2F6F + 8 +FENSTER + 10 +8755.0 + 20 +9615.0 + 30 +0.0 + 11 +8750.0 + 21 +9615.0 + 31 +0.0 + 0 +POLYLINE + 5 +2F70 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3599 + 8 +FENSTER + 10 +7730.0 + 20 +9626.281294 + 30 +0.0 + 0 +VERTEX + 5 +359A + 8 +FENSTER + 10 +8755.0 + 20 +9626.281294 + 30 +0.0 + 0 +SEQEND + 5 +359B + 8 +FENSTER + 0 +POLYLINE + 5 +2F74 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +359C + 8 +FENSTER + 10 +5376.25 + 20 +16130.0 + 30 +0.0 + 0 +VERTEX + 5 +359D + 8 +FENSTER + 10 +5376.25 + 20 +14615.0 + 30 +0.0 + 0 +SEQEND + 5 +359E + 8 +FENSTER + 0 +POLYLINE + 5 +2F78 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +359F + 8 +FENSTER + 10 +5376.260808 + 20 +19390.0 + 30 +0.0 + 0 +VERTEX + 5 +35A0 + 8 +FENSTER + 10 +5376.260808 + 20 +18230.0 + 30 +0.0 + 0 +SEQEND + 5 +35A1 + 8 +FENSTER + 0 +POLYLINE + 5 +2F7C + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35A2 + 8 +VORSATZSCHALLE + 10 +4745.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35A3 + 8 +VORSATZSCHALLE + 10 +7740.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35A4 + 8 +VORSATZSCHALLE + 10 +7740.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35A5 + 8 +VORSATZSCHALLE + 10 +4860.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35A6 + 8 +VORSATZSCHALLE + 10 +4860.0 + 20 +14615.0 + 30 +0.0 + 0 +VERTEX + 5 +35A7 + 8 +VORSATZSCHALLE + 10 +4745.0 + 20 +14615.0 + 30 +0.0 + 0 +SEQEND + 5 +35A8 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2F84 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35A9 + 8 +VORSATZSCHALLE + 10 +8750.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35AA + 8 +VORSATZSCHALLE + 10 +8750.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35AB + 8 +VORSATZSCHALLE + 10 +9865.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35AC + 8 +VORSATZSCHALLE + 10 +9865.0 + 20 +9110.0 + 30 +0.0 + 0 +SEQEND + 5 +35AD + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2F8A + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35AE + 8 +VORSATZSCHALLE + 10 +11250.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35AF + 8 +VORSATZSCHALLE + 10 +11250.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35B0 + 8 +VORSATZSCHALLE + 10 +16115.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35B1 + 8 +VORSATZSCHALLE + 10 +16115.0 + 20 +9110.0 + 30 +0.0 + 0 +SEQEND + 5 +35B2 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2F90 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35B3 + 8 +VORSATZSCHALLE + 10 +17375.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35B4 + 8 +VORSATZSCHALLE + 10 +17375.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35B5 + 8 +VORSATZSCHALLE + 10 +18490.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35B6 + 8 +VORSATZSCHALLE + 10 +18490.0 + 20 +9110.0 + 30 +0.0 + 0 +SEQEND + 5 +35B7 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2F96 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35B8 + 8 +VORSATZSCHALLE + 10 +20375.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35B9 + 8 +VORSATZSCHALLE + 10 +20375.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35BA + 8 +VORSATZSCHALLE + 10 +21365.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35BB + 8 +VORSATZSCHALLE + 10 +21365.0 + 20 +9110.0 + 30 +0.0 + 0 +SEQEND + 5 +35BC + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2F9C + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35BD + 8 +VORSATZSCHALLE + 10 +21875.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35BE + 8 +VORSATZSCHALLE + 10 +21875.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35BF + 8 +VORSATZSCHALLE + 10 +23240.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35C0 + 8 +VORSATZSCHALLE + 10 +23240.0 + 20 +9110.0 + 30 +0.0 + 0 +SEQEND + 5 +35C1 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FA2 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35C2 + 8 +VORSATZSCHALLE + 10 +26880.0 + 20 +10365.0 + 30 +0.0 + 0 +VERTEX + 5 +35C3 + 8 +VORSATZSCHALLE + 10 +26995.0 + 20 +10365.0 + 30 +0.0 + 0 +VERTEX + 5 +35C4 + 8 +VORSATZSCHALLE + 10 +26995.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35C5 + 8 +VORSATZSCHALLE + 10 +25375.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +35C6 + 8 +VORSATZSCHALLE + 10 +25375.0 + 20 +9110.0 + 30 +0.0 + 0 +VERTEX + 5 +35C7 + 8 +VORSATZSCHALLE + 10 +26880.0 + 20 +9110.0 + 30 +0.0 + 0 +SEQEND + 5 +35C8 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FAA + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35C9 + 8 +VORSATZSCHALLE + 10 +26880.0 + 20 +12000.0 + 30 +0.0 + 0 +VERTEX + 5 +35CA + 8 +VORSATZSCHALLE + 10 +26995.0 + 20 +12000.0 + 30 +0.0 + 0 +VERTEX + 5 +35CB + 8 +VORSATZSCHALLE + 10 +26995.0 + 20 +17740.0 + 30 +0.0 + 0 +VERTEX + 5 +35CC + 8 +VORSATZSCHALLE + 10 +26880.0 + 20 +17740.0 + 30 +0.0 + 0 +SEQEND + 5 +35CD + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FB0 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35CE + 8 +VORSATZSCHALLE + 10 +26880.0 + 20 +18375.0 + 30 +0.0 + 0 +VERTEX + 5 +35CF + 8 +VORSATZSCHALLE + 10 +26995.0 + 20 +18375.0 + 30 +0.0 + 0 +VERTEX + 5 +35D0 + 8 +VORSATZSCHALLE + 10 +26995.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35D1 + 8 +VORSATZSCHALLE + 10 +25250.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35D2 + 8 +VORSATZSCHALLE + 10 +25250.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35D3 + 8 +VORSATZSCHALLE + 10 +26880.0 + 20 +22255.0 + 30 +0.0 + 0 +SEQEND + 5 +35D4 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FB8 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35D5 + 8 +VORSATZSCHALLE + 10 +4745.0 + 20 +19375.0 + 30 +0.0 + 0 +VERTEX + 5 +35D6 + 8 +VORSATZSCHALLE + 10 +4860.0 + 20 +19375.0 + 30 +0.0 + 0 +VERTEX + 5 +35D7 + 8 +VORSATZSCHALLE + 10 +4860.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35D8 + 8 +VORSATZSCHALLE + 10 +6740.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35D9 + 8 +VORSATZSCHALLE + 10 +6740.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35DA + 8 +VORSATZSCHALLE + 10 +4745.0 + 20 +22370.0 + 30 +0.0 + 0 +SEQEND + 5 +35DB + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FC0 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35DC + 8 +VORSATZSCHALLE + 10 +8500.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35DD + 8 +VORSATZSCHALLE + 10 +8500.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35DE + 8 +VORSATZSCHALLE + 10 +10240.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35DF + 8 +VORSATZSCHALLE + 10 +10240.0 + 20 +22255.0 + 30 +0.0 + 0 +SEQEND + 5 +35E0 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FC6 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35E1 + 8 +VORSATZSCHALLE + 10 +11250.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35E2 + 8 +VORSATZSCHALLE + 10 +11250.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35E3 + 8 +VORSATZSCHALLE + 10 +15865.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35E4 + 8 +VORSATZSCHALLE + 10 +15865.0 + 20 +22255.0 + 30 +0.0 + 0 +SEQEND + 5 +35E5 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FCC + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35E6 + 8 +VORSATZSCHALLE + 10 +16875.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35E7 + 8 +VORSATZSCHALLE + 10 +16875.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35E8 + 8 +VORSATZSCHALLE + 10 +18740.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35E9 + 8 +VORSATZSCHALLE + 10 +18740.0 + 20 +22255.0 + 30 +0.0 + 0 +SEQEND + 5 +35EA + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FD2 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35EB + 8 +VORSATZSCHALLE + 10 +19750.0 + 20 +22255.0 + 30 +0.0 + 0 +VERTEX + 5 +35EC + 8 +VORSATZSCHALLE + 10 +19750.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35ED + 8 +VORSATZSCHALLE + 10 +23365.0 + 20 +22370.0 + 30 +0.0 + 0 +VERTEX + 5 +35EE + 8 +VORSATZSCHALLE + 10 +23365.0 + 20 +22255.0 + 30 +0.0 + 0 +SEQEND + 5 +35EF + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FD8 + 8 +VORSATZSCHALLE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35F0 + 8 +VORSATZSCHALLE + 10 +4860.0 + 20 +18240.0 + 30 +0.0 + 0 +VERTEX + 5 +35F1 + 8 +VORSATZSCHALLE + 10 +4745.0 + 20 +18240.0 + 30 +0.0 + 0 +VERTEX + 5 +35F2 + 8 +VORSATZSCHALLE + 10 +4745.0 + 20 +16125.0 + 30 +0.0 + 0 +VERTEX + 5 +35F3 + 8 +VORSATZSCHALLE + 10 +4860.0 + 20 +16125.0 + 30 +0.0 + 0 +SEQEND + 5 +35F4 + 8 +VORSATZSCHALLE + 0 +POLYLINE + 5 +2FDE + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35F5 + 8 +MAUERWERK + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +35F6 + 8 +MAUERWERK + 10 +7740.0 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +35F7 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2FE2 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +35F8 + 8 +MAUERWERK + 10 +7740.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +35F9 + 8 +MAUERWERK + 10 +7740.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +35FA + 8 +MAUERWERK + 10 +5365.0 + 20 +9615.0 + 30 +0.0 + 0 +VERTEX + 5 +35FB + 8 +MAUERWERK + 10 +5365.0 + 20 +14125.0 + 30 +0.0 + 0 +VERTEX + 5 +35FC + 8 +MAUERWERK + 10 +9750.0 + 20 +14125.0 + 30 +0.0 + 0 +VERTEX + 5 +35FD + 8 +MAUERWERK + 10 +9750.0 + 20 +13875.0 + 30 +0.0 + 0 +VERTEX + 5 +35FE + 8 +MAUERWERK + 10 +10115.0 + 20 +13875.0 + 30 +0.0 + 0 +VERTEX + 5 +35FF + 8 +MAUERWERK + 10 +10115.0 + 20 +15125.0 + 30 +0.0 + 0 +VERTEX + 5 +3600 + 8 +MAUERWERK + 10 +15750.0 + 20 +15125.0 + 30 +0.0 + 0 +VERTEX + 5 +3601 + 8 +MAUERWERK + 10 +15750.0 + 20 +15000.0 + 30 +0.0 + 0 +VERTEX + 5 +3602 + 8 +MAUERWERK + 10 +16115.0 + 20 +15000.0 + 30 +0.0 + 0 +VERTEX + 5 +3603 + 8 +MAUERWERK + 10 +16115.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +3604 + 8 +MAUERWERK + 10 +16365.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +3605 + 8 +MAUERWERK + 10 +16365.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +3606 + 8 +MAUERWERK + 10 +15750.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +3607 + 8 +MAUERWERK + 10 +15750.0 + 20 +15490.0 + 30 +0.0 + 0 +VERTEX + 5 +3608 + 8 +MAUERWERK + 10 +10115.0 + 20 +15490.0 + 30 +0.0 + 0 +VERTEX + 5 +3609 + 8 +MAUERWERK + 10 +10115.0 + 20 +15740.0 + 30 +0.0 + 0 +VERTEX + 5 +360A + 8 +MAUERWERK + 10 +9750.0 + 20 +15740.0 + 30 +0.0 + 0 +VERTEX + 5 +360B + 8 +MAUERWERK + 10 +9750.0 + 20 +14490.0 + 30 +0.0 + 0 +VERTEX + 5 +360C + 8 +MAUERWERK + 10 +5365.0 + 20 +14490.0 + 30 +0.0 + 0 +VERTEX + 5 +360D + 8 +MAUERWERK + 10 +5365.0 + 20 +14615.0 + 30 +0.0 + 0 +VERTEX + 5 +360E + 8 +MAUERWERK + 10 +5000.0 + 20 +14615.0 + 30 +0.0 + 0 +VERTEX + 5 +360F + 8 +MAUERWERK + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +3610 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2FFC + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3611 + 8 +DAEMMUNG + 10 +4920.0 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3612 + 8 +DAEMMUNG + 10 +7751.25 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3613 + 8 +DAEMMUNG + 10 +7751.25 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3614 + 8 +DAEMMUNG + 10 +5000.0 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3615 + 8 +DAEMMUNG + 10 +5000.0 + 20 +14626.25 + 30 +0.0 + 0 +VERTEX + 5 +3616 + 8 +DAEMMUNG + 10 +4920.0 + 20 +14626.25 + 30 +0.0 + 0 +SEQEND + 5 +3617 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3004 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3618 + 8 +DAEMMUNG + 10 +8738.75 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3619 + 8 +DAEMMUNG + 10 +8738.75 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +361A + 8 +DAEMMUNG + 10 +9876.25 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +361B + 8 +DAEMMUNG + 10 +9876.25 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +361C + 8 +DAEMMUNG + 0 +POLYLINE + 5 +300A + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +361D + 8 +DAEMMUNG + 10 +11238.75 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +361E + 8 +DAEMMUNG + 10 +11238.75 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +361F + 8 +DAEMMUNG + 10 +16126.25 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3620 + 8 +DAEMMUNG + 10 +16126.25 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +3621 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3010 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3622 + 8 +DAEMMUNG + 10 +17363.75 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3623 + 8 +DAEMMUNG + 10 +17363.75 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3624 + 8 +DAEMMUNG + 10 +18501.25 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3625 + 8 +DAEMMUNG + 10 +18501.25 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +3626 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3016 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3627 + 8 +DAEMMUNG + 10 +20363.75 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3628 + 8 +DAEMMUNG + 10 +20363.75 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3629 + 8 +DAEMMUNG + 10 +21376.25 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +362A + 8 +DAEMMUNG + 10 +21376.25 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +362B + 8 +DAEMMUNG + 0 +POLYLINE + 5 +301C + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +362C + 8 +DAEMMUNG + 10 +21863.75 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +362D + 8 +DAEMMUNG + 10 +21863.75 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +362E + 8 +DAEMMUNG + 10 +23251.25 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +362F + 8 +DAEMMUNG + 10 +23251.25 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +3630 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3022 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3631 + 8 +DAEMMUNG + 10 +25363.75 + 20 +9250.0 + 30 +0.0 + 0 +VERTEX + 5 +3632 + 8 +DAEMMUNG + 10 +25363.75 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3633 + 8 +DAEMMUNG + 10 +26820.0 + 20 +9170.0 + 30 +0.0 + 0 +VERTEX + 5 +3634 + 8 +DAEMMUNG + 10 +26820.0 + 20 +10376.25 + 30 +0.0 + 0 +VERTEX + 5 +3635 + 8 +DAEMMUNG + 10 +26740.0 + 20 +10376.25 + 30 +0.0 + 0 +VERTEX + 5 +3636 + 8 +DAEMMUNG + 10 +26740.0 + 20 +9250.0 + 30 +0.0 + 0 +SEQEND + 5 +3637 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +302A + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3638 + 8 +DAEMMUNG + 10 +26740.0 + 20 +11990.0 + 30 +0.0 + 0 +VERTEX + 5 +3639 + 8 +DAEMMUNG + 10 +26820.0 + 20 +11990.0 + 30 +0.0 + 0 +VERTEX + 5 +363A + 8 +DAEMMUNG + 10 +26820.0 + 20 +17751.25 + 30 +0.0 + 0 +VERTEX + 5 +363B + 8 +DAEMMUNG + 10 +26740.0 + 20 +17751.25 + 30 +0.0 + 0 +SEQEND + 5 +363C + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3030 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +363D + 8 +DAEMMUNG + 10 +26820.0 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +363E + 8 +DAEMMUNG + 10 +26820.0 + 20 +18443.75 + 30 +0.0 + 0 +VERTEX + 5 +363F + 8 +DAEMMUNG + 10 +26820.0 + 20 +18363.75 + 30 +0.0 + 0 +VERTEX + 5 +3640 + 8 +DAEMMUNG + 10 +26740.0 + 20 +18363.75 + 30 +0.0 + 0 +VERTEX + 5 +3641 + 8 +DAEMMUNG + 10 +26740.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +3642 + 8 +DAEMMUNG + 10 +25238.75 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +3643 + 8 +DAEMMUNG + 10 +25238.75 + 20 +22195.0 + 30 +0.0 + 0 +SEQEND + 5 +3644 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3039 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3645 + 8 +DAEMMUNG + 10 +4920.0 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +3646 + 8 +DAEMMUNG + 10 +4920.0 + 20 +19443.75 + 30 +0.0 + 0 +VERTEX + 5 +3647 + 8 +DAEMMUNG + 10 +4920.0 + 20 +19363.75 + 30 +0.0 + 0 +VERTEX + 5 +3648 + 8 +DAEMMUNG + 10 +5000.0 + 20 +19363.75 + 30 +0.0 + 0 +VERTEX + 5 +3649 + 8 +DAEMMUNG + 10 +5000.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +364A + 8 +DAEMMUNG + 10 +6751.25 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +364B + 8 +DAEMMUNG + 10 +6751.25 + 20 +22195.0 + 30 +0.0 + 0 +SEQEND + 5 +364C + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3042 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +364D + 8 +DAEMMUNG + 10 +8488.75 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +364E + 8 +DAEMMUNG + 10 +8488.75 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +364F + 8 +DAEMMUNG + 10 +10251.25 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +3650 + 8 +DAEMMUNG + 10 +10251.25 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +3651 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3048 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3652 + 8 +DAEMMUNG + 10 +11238.75 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +3653 + 8 +DAEMMUNG + 10 +11238.75 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +3654 + 8 +DAEMMUNG + 10 +15876.25 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +3655 + 8 +DAEMMUNG + 10 +15876.25 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +3656 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +304E + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3657 + 8 +DAEMMUNG + 10 +16863.75 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +3658 + 8 +DAEMMUNG + 10 +16863.75 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +3659 + 8 +DAEMMUNG + 10 +18751.25 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +365A + 8 +DAEMMUNG + 10 +18751.25 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +365B + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3054 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +365C + 8 +DAEMMUNG + 10 +19738.25 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +365D + 8 +DAEMMUNG + 10 +19738.25 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +365E + 8 +DAEMMUNG + 10 +23375.75 + 20 +22195.0 + 30 +0.0 + 0 +VERTEX + 5 +365F + 8 +DAEMMUNG + 10 +23375.75 + 20 +22115.0 + 30 +0.0 + 0 +SEQEND + 5 +3660 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +305A + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3661 + 8 +FENSTER + 10 +6740.0 + 20 +22381.250308 + 30 +0.0 + 0 +VERTEX + 5 +3662 + 8 +FENSTER + 10 +8505.0 + 20 +22381.250308 + 30 +0.0 + 0 +SEQEND + 5 +3663 + 8 +FENSTER + 0 +POLYLINE + 5 +305E + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3664 + 8 +FENSTER + 10 +4733.794186 + 20 +19390.0 + 30 +0.0 + 0 +VERTEX + 5 +3665 + 8 +FENSTER + 10 +4733.794186 + 20 +18230.0 + 30 +0.0 + 0 +SEQEND + 5 +3666 + 8 +FENSTER + 0 +POLYLINE + 5 +3062 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3667 + 8 +DAEMMUNG + 10 +4920.0 + 20 +16113.75 + 30 +0.0 + 0 +VERTEX + 5 +3668 + 8 +DAEMMUNG + 10 +5000.0 + 20 +16113.75 + 30 +0.0 + 0 +VERTEX + 5 +3669 + 8 +DAEMMUNG + 10 +5000.0 + 20 +18251.25 + 30 +0.0 + 0 +VERTEX + 5 +366A + 8 +DAEMMUNG + 10 +4920.0 + 20 +18251.25 + 30 +0.0 + 0 +SEQEND + 5 +366B + 8 +DAEMMUNG + 0 +POLYLINE + 5 +3068 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +366C + 8 +FENSTER + 10 +4860.00225 + 20 +18251.100556 + 30 +0.0 + 0 +VERTEX + 5 +366D + 8 +FENSTER + 10 +4923.297336 + 20 +18251.100556 + 30 +0.0 + 0 +SEQEND + 5 +366E + 8 +FENSTER + 0 +POLYLINE + 5 +306C + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +366F + 8 +FENSTER + 10 +4733.493167 + 20 +16130.0 + 30 +0.0 + 0 +VERTEX + 5 +3670 + 8 +FENSTER + 10 +4733.493167 + 20 +14615.0 + 30 +0.0 + 0 +SEQEND + 5 +3671 + 8 +FENSTER + 0 +POLYLINE + 5 +3070 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3672 + 8 +FENSTER + 10 +4853.742083 + 20 +16125.0 + 30 +0.0 + 0 +VERTEX + 5 +3673 + 8 +FENSTER + 10 +5030.0 + 20 +16125.0 + 30 +0.0 + 0 +SEQEND + 5 +3674 + 8 +FENSTER + 0 +POLYLINE + 5 +3074 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3675 + 8 +FENSTER + 10 +4859.902627 + 20 +14615.0 + 30 +0.0 + 0 +VERTEX + 5 +3676 + 8 +FENSTER + 10 +5020.0 + 20 +14615.0 + 30 +0.0 + 0 +SEQEND + 5 +3677 + 8 +FENSTER + 0 +POLYLINE + 5 +3078 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3678 + 8 +FENSTER + 10 +7730.0 + 20 +8981.423634 + 30 +0.0 + 0 +VERTEX + 5 +3679 + 8 +FENSTER + 10 +8755.0 + 20 +8981.423634 + 30 +0.0 + 0 +SEQEND + 5 +367A + 8 +FENSTER + 0 +POLYLINE + 5 +307C + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +367B + 8 +FENSTER + 10 +7740.0 + 20 +9111.199371 + 30 +0.0 + 0 +VERTEX + 5 +367C + 8 +FENSTER + 10 +7740.0 + 20 +9285.0 + 30 +0.0 + 0 +SEQEND + 5 +367D + 8 +FENSTER + 0 +POLYLINE + 5 +3080 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +367E + 8 +FENSTER + 10 +8750.0 + 20 +9060.0 + 30 +0.0 + 0 +VERTEX + 5 +367F + 8 +FENSTER + 10 +8750.0 + 20 +9280.0 + 30 +0.0 + 0 +SEQEND + 5 +3680 + 8 +FENSTER + 0 +POLYLINE + 5 +3084 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3681 + 8 +FENSTER + 10 +9865.0 + 20 +8984.334044 + 30 +0.0 + 0 +VERTEX + 5 +3682 + 8 +FENSTER + 10 +11260.0 + 20 +8984.334044 + 30 +0.0 + 0 +SEQEND + 5 +3683 + 8 +FENSTER + 0 +POLYLINE + 5 +3088 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3684 + 8 +FENSTER + 10 +9865.0 + 20 +9295.0 + 30 +0.0 + 0 +VERTEX + 5 +3685 + 8 +FENSTER + 10 +9865.0 + 20 +9075.0 + 30 +0.0 + 0 +SEQEND + 5 +3686 + 8 +FENSTER + 0 +POLYLINE + 5 +308C + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3687 + 8 +FENSTER + 10 +11250.0 + 20 +9350.0 + 30 +0.0 + 0 +VERTEX + 5 +3688 + 8 +FENSTER + 10 +11250.0 + 20 +9075.0 + 30 +0.0 + 0 +SEQEND + 5 +3689 + 8 +FENSTER + 0 +POLYLINE + 5 +3090 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +368A + 8 +FENSTER + 10 +16110.0 + 20 +8983.714374 + 30 +0.0 + 0 +VERTEX + 5 +368B + 8 +FENSTER + 10 +17380.0 + 20 +8983.714374 + 30 +0.0 + 0 +SEQEND + 5 +368C + 8 +FENSTER + 0 +POLYLINE + 5 +3094 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +368D + 8 +FENSTER + 10 +16115.0 + 20 +9310.0 + 30 +0.0 + 0 +VERTEX + 5 +368E + 8 +FENSTER + 10 +16115.0 + 20 +9087.237065 + 30 +0.0 + 0 +SEQEND + 5 +368F + 8 +FENSTER + 0 +POLYLINE + 5 +3098 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3690 + 8 +FENSTER + 10 +17375.0 + 20 +9315.0 + 30 +0.0 + 0 +VERTEX + 5 +3691 + 8 +FENSTER + 10 +17375.0 + 20 +9110.026403 + 30 +0.0 + 0 +SEQEND + 5 +3692 + 8 +FENSTER + 0 +POLYLINE + 5 +309C + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3693 + 8 +FENSTER + 10 +18480.0 + 20 +8983.742222 + 30 +0.0 + 0 +VERTEX + 5 +3694 + 8 +FENSTER + 10 +20380.0 + 20 +8983.742222 + 30 +0.0 + 0 +SEQEND + 5 +3695 + 8 +FENSTER + 0 +POLYLINE + 5 +30A0 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3696 + 8 +FENSTER + 10 +20375.0 + 20 +9280.0 + 30 +0.0 + 0 +VERTEX + 5 +3697 + 8 +FENSTER + 10 +20375.0 + 20 +9119.145747 + 30 +0.0 + 0 +SEQEND + 5 +3698 + 8 +FENSTER + 0 +POLYLINE + 5 +30A4 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3699 + 8 +FENSTER + 10 +18490.0 + 20 +9320.0 + 30 +0.0 + 0 +VERTEX + 5 +369A + 8 +FENSTER + 10 +18490.0 + 20 +9122.747675 + 30 +0.0 + 0 +SEQEND + 5 +369B + 8 +FENSTER + 0 +POLYLINE + 5 +30A8 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +369C + 8 +FENSTER + 10 +21360.0 + 20 +8983.47638 + 30 +0.0 + 0 +VERTEX + 5 +369D + 8 +FENSTER + 10 +21875.0 + 20 +8983.47638 + 30 +0.0 + 0 +SEQEND + 5 +369E + 8 +FENSTER + 0 +POLYLINE + 5 +30AC + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +369F + 8 +FENSTER + 10 +21365.0 + 20 +9305.0 + 30 +0.0 + 0 +VERTEX + 5 +36A0 + 8 +FENSTER + 10 +21365.0 + 20 +9103.889231 + 30 +0.0 + 0 +SEQEND + 5 +36A1 + 8 +FENSTER + 0 +POLYLINE + 5 +30B0 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36A2 + 8 +FENSTER + 10 +21875.0 + 20 +9300.0 + 30 +0.0 + 0 +VERTEX + 5 +36A3 + 8 +FENSTER + 10 +21875.0 + 20 +9108.078478 + 30 +0.0 + 0 +SEQEND + 5 +36A4 + 8 +FENSTER + 0 +POLYLINE + 5 +30B4 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36A5 + 8 +FENSTER + 10 +23240.0 + 20 +9275.0 + 30 +0.0 + 0 +VERTEX + 5 +36A6 + 8 +FENSTER + 10 +23240.0 + 20 +9088.71261 + 30 +0.0 + 0 +SEQEND + 5 +36A7 + 8 +FENSTER + 0 +POLYLINE + 5 +30B8 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36A8 + 8 +FENSTER + 10 +25375.0 + 20 +9295.0 + 30 +0.0 + 0 +VERTEX + 5 +36A9 + 8 +FENSTER + 10 +25375.0 + 20 +9081.046908 + 30 +0.0 + 0 +SEQEND + 5 +36AA + 8 +FENSTER + 0 +POLYLINE + 5 +30BC + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36AB + 8 +FENSTER + 10 +23231.732275 + 20 +8983.756213 + 30 +0.0 + 0 +VERTEX + 5 +36AC + 8 +FENSTER + 10 +25366.732275 + 20 +8983.756213 + 30 +0.0 + 0 +SEQEND + 5 +36AD + 8 +FENSTER + 0 +POLYLINE + 5 +30C0 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36AE + 8 +FENSTER + 10 +27006.25051 + 20 +12010.0 + 30 +0.0 + 0 +VERTEX + 5 +36AF + 8 +FENSTER + 10 +27006.25051 + 20 +10355.0 + 30 +0.0 + 0 +SEQEND + 5 +36B0 + 8 +FENSTER + 0 +POLYLINE + 5 +30C4 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36B1 + 8 +FENSTER + 10 +26725.965803 + 20 +11999.707383 + 30 +0.0 + 0 +VERTEX + 5 +36B2 + 8 +FENSTER + 10 +26879.383708 + 20 +11999.707383 + 30 +0.0 + 0 +SEQEND + 5 +36B3 + 8 +FENSTER + 0 +POLYLINE + 5 +30C8 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36B4 + 8 +FENSTER + 10 +26740.0 + 20 +10365.0 + 30 +0.0 + 0 +VERTEX + 5 +36B5 + 8 +FENSTER + 10 +26883.826117 + 20 +10365.0 + 30 +0.0 + 0 +SEQEND + 5 +36B6 + 8 +FENSTER + 0 +POLYLINE + 5 +30CC + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36B7 + 8 +FENSTER + 10 +27006.264517 + 20 +18380.0 + 30 +0.0 + 0 +VERTEX + 5 +36B8 + 8 +FENSTER + 10 +27006.264517 + 20 +17720.0 + 30 +0.0 + 0 +SEQEND + 5 +36B9 + 8 +FENSTER + 0 +POLYLINE + 5 +30D0 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36BA + 8 +FENSTER + 10 +26717.517718 + 20 +18375.099979 + 30 +0.0 + 0 +VERTEX + 5 +36BB + 8 +FENSTER + 10 +26865.113764 + 20 +18375.0 + 30 +0.0 + 0 +SEQEND + 5 +36BC + 8 +FENSTER + 0 +POLYLINE + 5 +30D4 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36BD + 8 +FENSTER + 10 +26700.0 + 20 +17740.0 + 30 +0.0 + 0 +VERTEX + 5 +36BE + 8 +FENSTER + 10 +26875.171862 + 20 +17740.0 + 30 +0.0 + 0 +SEQEND + 5 +36BF + 8 +FENSTER + 0 +POLYLINE + 5 +30D8 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36C0 + 8 +FENSTER + 10 +25250.0 + 20 +22261.196616 + 30 +0.0 + 0 +VERTEX + 5 +36C1 + 8 +FENSTER + 10 +25250.0 + 20 +22085.0 + 30 +0.0 + 0 +SEQEND + 5 +36C2 + 8 +FENSTER + 0 +POLYLINE + 5 +30DC + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36C3 + 8 +FENSTER + 10 +23365.0 + 20 +22381.256088 + 30 +0.0 + 0 +VERTEX + 5 +36C4 + 8 +FENSTER + 10 +25255.0 + 20 +22381.256088 + 30 +0.0 + 0 +SEQEND + 5 +36C5 + 8 +FENSTER + 0 +POLYLINE + 5 +30E0 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36C6 + 8 +FENSTER + 10 +23365.0 + 20 +22100.0 + 30 +0.0 + 0 +VERTEX + 5 +36C7 + 8 +FENSTER + 10 +23365.0 + 20 +22245.591735 + 30 +0.0 + 0 +SEQEND + 5 +36C8 + 8 +FENSTER + 0 +POLYLINE + 5 +30E4 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36C9 + 8 +FENSTER + 10 +18740.0 + 20 +22381.306986 + 30 +0.0 + 0 +VERTEX + 5 +36CA + 8 +FENSTER + 10 +19750.0 + 20 +22381.306986 + 30 +0.0 + 0 +SEQEND + 5 +36CB + 8 +FENSTER + 0 +POLYLINE + 5 +30E8 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36CC + 8 +FENSTER + 10 +19750.0 + 20 +22261.364123 + 30 +0.0 + 0 +VERTEX + 5 +36CD + 8 +FENSTER + 10 +19750.0 + 20 +22085.0 + 30 +0.0 + 0 +SEQEND + 5 +36CE + 8 +FENSTER + 0 +POLYLINE + 5 +30EC + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36CF + 8 +FENSTER + 10 +18740.0 + 20 +22095.0 + 30 +0.0 + 0 +VERTEX + 5 +36D0 + 8 +FENSTER + 10 +18740.0 + 20 +22260.16654 + 30 +0.0 + 0 +SEQEND + 5 +36D1 + 8 +FENSTER + 0 +POLYLINE + 5 +30F0 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36D2 + 8 +FENSTER + 10 +15865.0 + 20 +22381.251394 + 30 +0.0 + 0 +VERTEX + 5 +36D3 + 8 +FENSTER + 10 +16880.0 + 20 +22381.251394 + 30 +0.0 + 0 +SEQEND + 5 +36D4 + 8 +FENSTER + 0 +POLYLINE + 5 +30F4 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36D5 + 8 +FENSTER + 10 +16875.0 + 20 +22253.739829 + 30 +0.0 + 0 +VERTEX + 5 +36D6 + 8 +FENSTER + 10 +16875.0 + 20 +22090.0 + 30 +0.0 + 0 +SEQEND + 5 +36D7 + 8 +FENSTER + 0 +POLYLINE + 5 +30F8 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36D8 + 8 +FENSTER + 10 +15865.0 + 20 +22243.287727 + 30 +0.0 + 0 +VERTEX + 5 +36D9 + 8 +FENSTER + 10 +15865.0 + 20 +22080.0 + 30 +0.0 + 0 +SEQEND + 5 +36DA + 8 +FENSTER + 0 +POLYLINE + 5 +30FC + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +36DB + 8 +FENSTER + 10 +10240.0 + 20 +22381.250977 + 30 +0.0 + 0 +VERTEX + 5 +36DC + 8 +FENSTER + 10 +11250.0 + 20 +22381.250977 + 30 +0.0 + 0 +SEQEND + 5 +36DD + 8 +FENSTER + 0 +POLYLINE + 5 +3100 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36DE + 8 +FENSTER + 10 +11250.025952 + 20 +22080.0 + 30 +0.0 + 0 +VERTEX + 5 +36DF + 8 +FENSTER + 10 +11250.0 + 20 +22247.225609 + 30 +0.0 + 0 +SEQEND + 5 +36E0 + 8 +FENSTER + 0 +POLYLINE + 5 +3104 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36E1 + 8 +FENSTER + 10 +10240.0 + 20 +22080.0 + 30 +0.0 + 0 +VERTEX + 5 +36E2 + 8 +FENSTER + 10 +10240.0 + 20 +22243.476199 + 30 +0.0 + 0 +SEQEND + 5 +36E3 + 8 +FENSTER + 0 +POLYLINE + 5 +3108 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36E4 + 8 +FENSTER + 10 +8500.0 + 20 +22252.650614 + 30 +0.0 + 0 +VERTEX + 5 +36E5 + 8 +FENSTER + 10 +8500.0 + 20 +22090.0 + 30 +0.0 + 0 +SEQEND + 5 +36E6 + 8 +FENSTER + 0 +POLYLINE + 5 +310C + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36E7 + 8 +FENSTER + 10 +6740.0 + 20 +22243.580917 + 30 +0.0 + 0 +VERTEX + 5 +36E8 + 8 +FENSTER + 10 +6740.0 + 20 +22085.0 + 30 +0.0 + 0 +SEQEND + 5 +36E9 + 8 +FENSTER + 0 +POLYLINE + 5 +3110 + 8 +FENSTER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36EA + 8 +FENSTER + 10 +4867.826474 + 20 +19363.745737 + 30 +0.0 + 0 +VERTEX + 5 +36EB + 8 +FENSTER + 10 +4932.844101 + 20 +19363.745737 + 30 +0.0 + 0 +SEQEND + 5 +36EC + 8 +FENSTER + 0 +POLYLINE + 5 +3114 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36ED + 8 +MAUERWERK + 10 +21365.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +36EE + 8 +MAUERWERK + 10 +21365.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +36EF + 8 +MAUERWERK + 10 +17990.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +36F0 + 8 +MAUERWERK + 10 +17990.0 + 20 +18988.024968 + 30 +0.0 + 0 +SEQEND + 5 +36F1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +311A + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36F2 + 8 +MAUERWERK + 10 +17625.0 + 20 +18992.018547 + 30 +0.0 + 0 +VERTEX + 5 +36F3 + 8 +MAUERWERK + 10 +17625.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +36F4 + 8 +MAUERWERK + 10 +17375.0 + 20 +15990.0 + 30 +0.0 + 0 +VERTEX + 5 +36F5 + 8 +MAUERWERK + 10 +17375.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +36F6 + 8 +MAUERWERK + 10 +20875.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +36F7 + 8 +MAUERWERK + 10 +20875.0 + 20 +15250.0 + 30 +0.0 + 0 +VERTEX + 5 +36F8 + 8 +MAUERWERK + 10 +21240.0 + 20 +15250.0 + 30 +0.0 + 0 +VERTEX + 5 +36F9 + 8 +MAUERWERK + 10 +21240.0 + 20 +15625.0 + 30 +0.0 + 0 +VERTEX + 5 +36FA + 8 +MAUERWERK + 10 +21365.0 + 20 +15625.0 + 30 +0.0 + 0 +SEQEND + 5 +36FB + 8 +MAUERWERK + 0 +POLYLINE + 5 +3125 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +36FC + 8 +MAUERWERK + 10 +18740.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +36FD + 8 +MAUERWERK + 10 +18740.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +36FE + 8 +MAUERWERK + 10 +16875.0 + 20 +22115.0 + 30 +0.0 + 0 +VERTEX + 5 +36FF + 8 +MAUERWERK + 10 +16875.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +3700 + 8 +MAUERWERK + 10 +17625.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +3701 + 8 +MAUERWERK + 10 +17625.0 + 20 +18990.0 + 30 +0.0 + 0 +SEQEND + 5 +3702 + 8 +MAUERWERK + 0 +POLYLINE + 5 +312D + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3703 + 8 +MAUERWERK + 10 +17990.0 + 20 +18990.0 + 30 +0.0 + 0 +VERTEX + 5 +3704 + 8 +MAUERWERK + 10 +17990.0 + 20 +21750.0 + 30 +0.0 + 0 +VERTEX + 5 +3705 + 8 +MAUERWERK + 10 +18740.0 + 20 +21750.0 + 30 +0.0 + 0 +SEQEND + 5 +3706 + 8 +MAUERWERK + 0 +POLYLINE + 5 +3132 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3707 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18865.0 + 30 +0.0 + 0 +VERTEX + 5 +3708 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18865.0 + 30 +0.0 + 0 +VERTEX + 5 +3709 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18730.0 + 30 +0.0 + 0 +VERTEX + 5 +370A + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18730.0 + 30 +0.0 + 0 +SEQEND + 5 +370B + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +3138 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +370C + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18615.0 + 30 +0.0 + 0 +VERTEX + 5 +370D + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18615.0 + 30 +0.0 + 0 +VERTEX + 5 +370E + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18480.0 + 30 +0.0 + 0 +VERTEX + 5 +370F + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18480.0 + 30 +0.0 + 0 +SEQEND + 5 +3710 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +313E + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3711 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18240.0 + 30 +0.0 + 0 +VERTEX + 5 +3712 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18240.0 + 30 +0.0 + 0 +VERTEX + 5 +3713 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18105.0 + 30 +0.0 + 0 +VERTEX + 5 +3714 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18105.0 + 30 +0.0 + 0 +SEQEND + 5 +3715 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +3144 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3716 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17990.0 + 30 +0.0 + 0 +VERTEX + 5 +3717 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17990.0 + 30 +0.0 + 0 +VERTEX + 5 +3718 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17855.0 + 30 +0.0 + 0 +VERTEX + 5 +3719 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17855.0 + 30 +0.0 + 0 +SEQEND + 5 +371A + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +314A + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +371B + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17740.0 + 30 +0.0 + 0 +VERTEX + 5 +371C + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17740.0 + 30 +0.0 + 0 +VERTEX + 5 +371D + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17605.0 + 30 +0.0 + 0 +VERTEX + 5 +371E + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17605.0 + 30 +0.0 + 0 +SEQEND + 5 +371F + 8 +SCHORNSTEINE + 0 +INSERT + 5 +3150 + 8 +SCHRAFFUR-MAUER + 2 +*X0 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3151 + 8 +SCHRAFFUR-MAUER + 2 +*X1 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3152 + 8 +SCHRAFFUR-MAUER + 2 +*X2 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3153 + 8 +SCHRAFFUR-MAUER + 2 +*X3 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3154 + 8 +SCHRAFFUR-MAUER + 2 +*X4 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3155 + 8 +SCHRAFFUR-MAUER + 2 +*X5 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3156 + 8 +SCHRAFFUR-MAUER + 2 +*X6 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3157 + 8 +SCHRAFFUR-MAUER + 2 +*X7 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3158 + 8 +SCHRAFFUR-MAUER + 2 +*X8 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3159 + 8 +SCHRAFFUR-MAUER + 2 +*X9 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +315A + 8 +SCHRAFFUR-MAUER + 2 +*X10 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +315B + 8 +SCHRAFFUR-MAUER + 2 +*X11 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +315C + 8 +SCHRAFFUR-MAUER + 2 +*X12 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +315D + 8 +SCHRAFFUR-MAUER + 2 +*X13 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +315E + 8 +SCHRAFFUR-MAUER + 2 +*X14 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +315F + 8 +SCHRAFFUR-VORMAUER + 2 +*X15 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3160 + 8 +SCHRAFFUR-VORMAUER + 2 +*X16 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3161 + 8 +SCHRAFFUR-VORMAUER + 2 +*X17 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3162 + 8 +SCHRAFFUR-VORMAUER + 2 +*X18 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3163 + 8 +SCHRAFFUR-VORMAUER + 2 +*X19 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3164 + 8 +SCHRAFFUR-VORMAUER + 2 +*X20 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3165 + 8 +SCHRAFFUR-VORMAUER + 2 +*X21 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3166 + 8 +SCHRAFFUR-VORMAUER + 2 +*X22 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3167 + 8 +SCHRAFFUR-VORMAUER + 2 +*X23 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3168 + 8 +SCHRAFFUR-VORMAUER + 2 +*X24 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3169 + 8 +SCHRAFFUR-VORMAUER + 2 +*X25 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +316A + 8 +SCHRAFFUR-VORMAUER + 2 +*X26 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +316B + 8 +SCHRAFFUR-VORMAUER + 2 +*X27 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +316C + 8 +SCHRAFFUR-VORMAUER + 2 +*X28 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +316D + 8 +SCHRAFFUR-VORMAUER + 2 +*X29 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +316E + 8 +SCHRAFFUR-TRENNWAND + 2 +*X30 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +316F + 8 +SCHRAFFUR-TRENNWAND + 2 +*X31 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3170 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X32 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3171 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X33 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3172 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X34 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3173 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X35 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3174 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X36 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3175 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X37 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3176 + 8 +SCHRAFFUR-TRENNWAND + 2 +*X38 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3177 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X39 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3178 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X40 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3179 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X41 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +317A + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X42 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +317B + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X43 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +317C + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X44 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +317D + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X45 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +317E + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X46 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +317F + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X47 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3180 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X48 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3181 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X49 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3182 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X50 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3183 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X51 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3184 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X52 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +3185 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X53 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +3186 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3720 + 8 +TREPPE + 10 +19380.0 + 20 +10855.0 + 30 +0.0 + 0 +VERTEX + 5 +3721 + 8 +TREPPE + 10 +19380.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3722 + 8 +TREPPE + 10 +18040.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3723 + 8 +TREPPE + 10 +18040.0 + 20 +10855.0 + 30 +0.0 + 0 +SEQEND + 5 +3724 + 8 +TREPPE + 0 +POLYLINE + 5 +318C + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3725 + 8 +TREPPE + 10 +20825.0 + 20 +11156.0 + 30 +0.0 + 0 +VERTEX + 5 +3726 + 8 +TREPPE + 10 +19485.0 + 20 +11156.0 + 30 +0.0 + 0 +SEQEND + 5 +3727 + 8 +TREPPE + 0 +POLYLINE + 5 +3190 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3728 + 8 +TREPPE + 10 +19380.0 + 20 +11156.0 + 30 +0.0 + 0 +VERTEX + 5 +3729 + 8 +TREPPE + 10 +18040.0 + 20 +11156.0 + 30 +0.0 + 0 +SEQEND + 5 +372A + 8 +TREPPE + 0 +POLYLINE + 5 +3194 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +372B + 8 +TREPPE + 10 +19380.0 + 20 +11457.0 + 30 +0.0 + 0 +VERTEX + 5 +372C + 8 +TREPPE + 10 +18040.0 + 20 +11457.0 + 30 +0.0 + 0 +SEQEND + 5 +372D + 8 +TREPPE + 0 +POLYLINE + 5 +3198 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +372E + 8 +TREPPE + 10 +19380.0 + 20 +11758.0 + 30 +0.0 + 0 +VERTEX + 5 +372F + 8 +TREPPE + 10 +18040.0 + 20 +11758.0 + 30 +0.0 + 0 +SEQEND + 5 +3730 + 8 +TREPPE + 0 +POLYLINE + 5 +319C + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3731 + 8 +TREPPE + 10 +19380.0 + 20 +12059.0 + 30 +0.0 + 0 +VERTEX + 5 +3732 + 8 +TREPPE + 10 +18040.0 + 20 +12059.0 + 30 +0.0 + 0 +SEQEND + 5 +3733 + 8 +TREPPE + 0 +POLYLINE + 5 +31A0 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3734 + 8 +TREPPE + 10 +19380.0 + 20 +12360.0 + 30 +0.0 + 0 +VERTEX + 5 +3735 + 8 +TREPPE + 10 +18040.0 + 20 +12360.0 + 30 +0.0 + 0 +SEQEND + 5 +3736 + 8 +TREPPE + 0 +POLYLINE + 5 +31A4 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3737 + 8 +TREPPE + 10 +19380.0 + 20 +12661.0 + 30 +0.0 + 0 +VERTEX + 5 +3738 + 8 +TREPPE + 10 +18040.0 + 20 +12661.0 + 30 +0.0 + 0 +SEQEND + 5 +3739 + 8 +TREPPE + 0 +POLYLINE + 5 +31A8 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +373A + 8 +TREPPE + 10 +20825.0 + 20 +11457.0 + 30 +0.0 + 0 +VERTEX + 5 +373B + 8 +TREPPE + 10 +19485.0 + 20 +11457.0 + 30 +0.0 + 0 +SEQEND + 5 +373C + 8 +TREPPE + 0 +POLYLINE + 5 +31AC + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +373D + 8 +TREPPE + 10 +19380.0 + 20 +12962.0 + 30 +0.0 + 0 +VERTEX + 5 +373E + 8 +TREPPE + 10 +18040.0 + 20 +12962.0 + 30 +0.0 + 0 +SEQEND + 5 +373F + 8 +TREPPE + 0 +POLYLINE + 5 +31B0 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3740 + 8 +TREPPE + 10 +19380.0 + 20 +13263.0 + 30 +0.0 + 0 +VERTEX + 5 +3741 + 8 +TREPPE + 10 +18040.0 + 20 +13263.0 + 30 +0.0 + 0 +SEQEND + 5 +3742 + 8 +TREPPE + 0 +POLYLINE + 5 +31B4 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3743 + 8 +TREPPE + 10 +19380.0 + 20 +13564.0 + 30 +0.0 + 0 +VERTEX + 5 +3744 + 8 +TREPPE + 10 +18040.0 + 20 +13564.0 + 30 +0.0 + 0 +SEQEND + 5 +3745 + 8 +TREPPE + 0 +POLYLINE + 5 +31B8 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3746 + 8 +TREPPE + 10 +20825.0 + 20 +13263.0 + 30 +0.0 + 0 +VERTEX + 5 +3747 + 8 +TREPPE + 10 +19485.0 + 20 +13263.0 + 30 +0.0 + 0 +SEQEND + 5 +3748 + 8 +TREPPE + 0 +POLYLINE + 5 +31BC + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3749 + 8 +TREPPE + 10 +20825.0 + 20 +13564.0 + 30 +0.0 + 0 +VERTEX + 5 +374A + 8 +TREPPE + 10 +19485.0 + 20 +13564.0 + 30 +0.0 + 0 +SEQEND + 5 +374B + 8 +TREPPE + 0 +POLYLINE + 5 +31C0 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +374C + 8 +TREPPE + 10 +20826.354686 + 20 +12971.134203 + 30 +0.0 + 0 +VERTEX + 5 +374D + 8 +TREPPE + 10 +19481.657999 + 20 +11626.391689 + 30 +0.0 + 0 +SEQEND + 5 +374E + 8 +TREPPE + 0 +POLYLINE + 5 +31C4 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +374F + 8 +TREPPE + 10 +20827.970522 + 20 +12912.986847 + 30 +0.0 + 0 +VERTEX + 5 +3750 + 8 +TREPPE + 10 +19482.88825 + 20 +11567.710208 + 30 +0.0 + 0 +SEQEND + 5 +3751 + 8 +TREPPE + 0 +POLYLINE + 5 +31C8 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3752 + 8 +TREPPE + 10 +20825.0 + 20 +11758.0 + 30 +0.0 + 0 +VERTEX + 5 +3753 + 8 +TREPPE + 10 +19673.0 + 20 +11758.0 + 30 +0.0 + 0 +SEQEND + 5 +3754 + 8 +TREPPE + 0 +POLYLINE + 5 +31CC + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3755 + 8 +TREPPE + 10 +19613.0 + 20 +11758.0 + 30 +0.0 + 0 +VERTEX + 5 +3756 + 8 +TREPPE + 10 +19485.0 + 20 +11758.0 + 30 +0.0 + 0 +SEQEND + 5 +3757 + 8 +TREPPE + 0 +POLYLINE + 5 +31D0 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3758 + 8 +TREPPE + 10 +20825.0 + 20 +12059.0 + 30 +0.0 + 0 +VERTEX + 5 +3759 + 8 +TREPPE + 10 +19974.0 + 20 +12059.0 + 30 +0.0 + 0 +SEQEND + 5 +375A + 8 +TREPPE + 0 +POLYLINE + 5 +31D4 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +375B + 8 +TREPPE + 10 +19914.0 + 20 +12059.0 + 30 +0.0 + 0 +VERTEX + 5 +375C + 8 +TREPPE + 10 +19485.0 + 20 +12059.0 + 30 +0.0 + 0 +SEQEND + 5 +375D + 8 +TREPPE + 0 +POLYLINE + 5 +31D8 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +375E + 8 +TREPPE + 10 +20825.0 + 20 +12360.0 + 30 +0.0 + 0 +VERTEX + 5 +375F + 8 +TREPPE + 10 +20275.0 + 20 +12360.0 + 30 +0.0 + 0 +SEQEND + 5 +3760 + 8 +TREPPE + 0 +POLYLINE + 5 +31DC + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3761 + 8 +TREPPE + 10 +20215.0 + 20 +12360.0 + 30 +0.0 + 0 +VERTEX + 5 +3762 + 8 +TREPPE + 10 +19485.0 + 20 +12360.0 + 30 +0.0 + 0 +SEQEND + 5 +3763 + 8 +TREPPE + 0 +POLYLINE + 5 +31E0 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3764 + 8 +TREPPE + 10 +20825.0 + 20 +12661.0 + 30 +0.0 + 0 +VERTEX + 5 +3765 + 8 +TREPPE + 10 +20576.0 + 20 +12661.0 + 30 +0.0 + 0 +SEQEND + 5 +3766 + 8 +TREPPE + 0 +POLYLINE + 5 +31E4 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3767 + 8 +TREPPE + 10 +20516.0 + 20 +12661.0 + 30 +0.0 + 0 +VERTEX + 5 +3768 + 8 +TREPPE + 10 +19485.0 + 20 +12661.0 + 30 +0.0 + 0 +SEQEND + 5 +3769 + 8 +TREPPE + 0 +POLYLINE + 5 +31E8 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +376A + 8 +TREPPE + 10 +20825.0 + 20 +10855.0 + 30 +0.0 + 0 +VERTEX + 5 +376B + 8 +TREPPE + 10 +20825.0 + 20 +12910.0 + 30 +0.0 + 0 +SEQEND + 5 +376C + 8 +TREPPE + 0 +POLYLINE + 5 +31EC + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +376D + 8 +TREPPE + 10 +20817.0 + 20 +12962.0 + 30 +0.0 + 0 +VERTEX + 5 +376E + 8 +TREPPE + 10 +19485.0 + 20 +12962.0 + 30 +0.0 + 0 +SEQEND + 5 +376F + 8 +TREPPE + 0 +POLYLINE + 5 +31F0 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3770 + 8 +TREPPE + 10 +20825.0 + 20 +12970.0 + 30 +0.0 + 0 +VERTEX + 5 +3771 + 8 +TREPPE + 10 +20825.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3772 + 8 +TREPPE + 10 +19485.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +3773 + 8 +TREPPE + 10 +19485.0 + 20 +11629.733805 + 30 +0.0 + 0 +SEQEND + 5 +3774 + 8 +TREPPE + 0 +POLYLINE + 5 +31F6 + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3775 + 8 +TREPPE + 10 +19485.0 + 20 +11569.822263 + 30 +0.0 + 0 +VERTEX + 5 +3776 + 8 +TREPPE + 10 +19485.0 + 20 +10855.0 + 30 +0.0 + 0 +VERTEX + 5 +3777 + 8 +TREPPE + 10 +20825.0 + 20 +10855.0 + 30 +0.0 + 0 +SEQEND + 5 +3778 + 8 +TREPPE + 0 +POLYLINE + 5 +31FB + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +3779 + 8 +TREPPE + 10 +19372.305199 + 20 +10854.832899 + 30 +0.0 + 0 +VERTEX + 5 +377A + 8 +TREPPE + 10 +19495.0 + 20 +10854.832899 + 30 +0.0 + 0 +SEQEND + 5 +377B + 8 +TREPPE + 0 +POLYLINE + 5 +31FF + 8 +TREPPE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +377C + 8 +TREPPE + 10 +20155.0 + 20 +13865.0 + 30 +0.0 + 0 +VERTEX + 5 +377D + 8 +TREPPE + 10 +20155.0 + 20 +10510.0 + 30 +0.0 + 0 +VERTEX + 5 +377E + 8 +TREPPE + 10 +18710.0 + 20 +10510.0 + 30 +0.0 + 0 +VERTEX + 5 +377F + 8 +TREPPE + 10 +18710.0 + 20 +13865.0 + 30 +0.0 + 0 +SEQEND + 5 +3780 + 8 +TREPPE + 0 +SOLID + 5 +3205 + 8 +TREPPE + 10 +18710.0 + 20 +13870.0 + 30 +0.0 + 11 +18780.0 + 21 +13520.0 + 31 +0.0 + 12 +18640.0 + 22 +13520.0 + 32 +0.0 + 13 +18640.0 + 23 +13520.0 + 33 +0.0 + 0 +POINT + 5 +3206 + 8 +TREPPE + 10 +20155.0 + 20 +13870.0 + 30 +0.0 + 0 +POINT + 5 +3207 + 8 +TREPPE + 10 +20155.0 + 20 +13860.0 + 30 +0.0 + 0 +POINT + 5 +3208 + 8 +TREPPE + 10 +20155.0 + 20 +13865.0 + 30 +0.0 + 0 +POINT + 5 +3209 + 8 +TREPPE + 10 +20150.0 + 20 +13865.0 + 30 +0.0 + 0 +POINT + 5 +320A + 8 +TREPPE + 10 +20155.0 + 20 +13865.0 + 30 +0.0 + 0 +POINT + 5 +320B + 8 +TREPPE + 10 +20180.0 + 20 +13880.0 + 30 +0.0 + 0 +POINT + 5 +320C + 8 +TREPPE + 10 +20150.0 + 20 +13895.0 + 30 +0.0 + 0 +POINT + 5 +320D + 8 +TREPPE + 10 +20145.0 + 20 +13890.0 + 30 +0.0 + 0 +POINT + 5 +320E + 8 +TREPPE + 10 +20125.0 + 20 +13870.0 + 30 +0.0 + 0 +POLYLINE + 5 +320F + 8 +BALKONE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3781 + 8 +BALKONE + 10 +5850.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +3782 + 8 +BALKONE + 10 +5850.0 + 20 +7645.0 + 30 +0.0 + 0 +VERTEX + 5 +3783 + 8 +BALKONE + 10 +8850.0 + 20 +7645.0 + 30 +0.0 + 0 +VERTEX + 5 +3784 + 8 +BALKONE + 10 +8850.0 + 20 +8995.0 + 30 +0.0 + 0 +SEQEND + 5 +3785 + 8 +BALKONE + 0 +POLYLINE + 5 +3215 + 8 +BALKONE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3786 + 8 +BALKONE + 10 +26040.0 + 20 +8995.0 + 30 +0.0 + 0 +VERTEX + 5 +3787 + 8 +BALKONE + 10 +26040.0 + 20 +7645.0 + 30 +0.0 + 0 +VERTEX + 5 +3788 + 8 +BALKONE + 10 +23040.0 + 20 +7645.0 + 30 +0.0 + 0 +VERTEX + 5 +3789 + 8 +BALKONE + 10 +23040.0 + 20 +8995.0 + 30 +0.0 + 0 +SEQEND + 5 +378A + 8 +BALKONE + 0 +POLYLINE + 5 +321B + 8 +SCHNITTLINIEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +378B + 8 +SCHNITTLINIEN + 10 +23600.0 + 20 +6650.0 + 30 +0.0 + 0 +VERTEX + 5 +378C + 8 +SCHNITTLINIEN + 10 +23600.0 + 20 +13455.0 + 30 +0.0 + 0 +VERTEX + 5 +378D + 8 +SCHNITTLINIEN + 10 +21435.0 + 20 +13455.0 + 30 +0.0 + 0 +VERTEX + 5 +378E + 8 +SCHNITTLINIEN + 10 +21510.0 + 20 +23300.0 + 30 +0.0 + 0 +SEQEND + 5 +378F + 8 +SCHNITTLINIEN + 0 +POLYLINE + 5 +3221 + 8 +SCHNITTLINIEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3790 + 8 +SCHNITTLINIEN + 10 +19720.0 + 20 +7250.0 + 30 +0.0 + 0 +VERTEX + 5 +3791 + 8 +SCHNITTLINIEN + 10 +19720.0 + 20 +15150.0 + 30 +0.0 + 0 +SEQEND + 5 +3792 + 8 +SCHNITTLINIEN + 0 +POLYLINE + 5 +3225 + 8 +SCHNITTLINIEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3793 + 8 +SCHNITTLINIEN + 10 +5600.0 + 20 +6615.0 + 30 +0.0 + 0 +VERTEX + 5 +3794 + 8 +SCHNITTLINIEN + 10 +5600.0 + 20 +23830.0 + 30 +0.0 + 0 +SEQEND + 5 +3795 + 8 +SCHNITTLINIEN + 0 +SOLID + 5 +3229 + 8 +SCHNITTLINIEN + 10 +19135.0 + 20 +14835.0 + 30 +0.0 + 11 +19475.0 + 21 +14540.0 + 31 +0.0 + 12 +19475.0 + 22 +15130.0 + 32 +0.0 + 13 +19475.0 + 23 +15130.0 + 33 +0.0 + 0 +SOLID + 5 +322A + 8 +SCHNITTLINIEN + 10 +19135.0 + 20 +7600.0 + 30 +0.0 + 11 +19475.0 + 21 +7305.0 + 31 +0.0 + 12 +19475.0 + 22 +7895.0 + 32 +0.0 + 13 +19475.0 + 23 +7895.0 + 33 +0.0 + 0 +SOLID + 5 +322B + 8 +SCHNITTLINIEN + 10 +24245.0 + 20 +6990.0 + 30 +0.0 + 11 +23905.0 + 21 +7285.0 + 31 +0.0 + 12 +23905.0 + 22 +6695.0 + 32 +0.0 + 13 +23905.0 + 23 +6695.0 + 33 +0.0 + 0 +SOLID + 5 +322C + 8 +SCHNITTLINIEN + 10 +22060.0 + 20 +22925.0 + 30 +0.0 + 11 +21720.0 + 21 +23220.0 + 31 +0.0 + 12 +21720.0 + 22 +22630.0 + 32 +0.0 + 13 +21720.0 + 23 +22630.0 + 33 +0.0 + 0 +SOLID + 5 +322D + 8 +SCHNITTLINIEN + 10 +6285.0 + 20 +6940.0 + 30 +0.0 + 11 +5945.0 + 21 +7235.0 + 31 +0.0 + 12 +5945.0 + 22 +6645.0 + 32 +0.0 + 13 +5945.0 + 23 +6645.0 + 33 +0.0 + 0 +SOLID + 5 +322E + 8 +SCHNITTLINIEN + 10 +6285.0 + 20 +23535.0 + 30 +0.0 + 11 +5945.0 + 21 +23830.0 + 31 +0.0 + 12 +5945.0 + 22 +23240.0 + 32 +0.0 + 13 +5945.0 + 23 +23240.0 + 33 +0.0 + 0 +POLYLINE + 5 +322F + 8 +SPANNRICHTUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3796 + 8 +SPANNRICHTUNG + 10 +18955.0 + 20 +9925.0 + 30 +0.0 + 0 +VERTEX + 5 +3797 + 8 +SPANNRICHTUNG + 10 +18680.0 + 20 +10090.0 + 30 +0.0 + 0 +VERTEX + 5 +3798 + 8 +SPANNRICHTUNG + 10 +19549.211617 + 20 +10090.0 + 30 +0.0 + 0 +VERTEX + 5 +3799 + 8 +SPANNRICHTUNG + 10 +19263.423234 + 20 +10255.0 + 30 +0.0 + 0 +SEQEND + 5 +379A + 8 +SPANNRICHTUNG + 0 +POLYLINE + 5 +3235 + 8 +SPANNRICHTUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +379B + 8 +SPANNRICHTUNG + 10 +7260.0 + 20 +8869.211617 + 30 +0.0 + 0 +VERTEX + 5 +379C + 8 +SPANNRICHTUNG + 10 +7260.0 + 20 +8254.211617 + 30 +0.0 + 0 +VERTEX + 5 +379D + 8 +SPANNRICHTUNG + 10 +7375.0 + 20 +8455.0 + 30 +0.0 + 0 +SEQEND + 5 +379E + 8 +SPANNRICHTUNG + 0 +POLYLINE + 5 +323A + 8 +SPANNRICHTUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +379F + 8 +SPANNRICHTUNG + 10 +24405.0 + 20 +8795.0 + 30 +0.0 + 0 +VERTEX + 5 +37A0 + 8 +SPANNRICHTUNG + 10 +24405.0 + 20 +8290.0 + 30 +0.0 + 0 +VERTEX + 5 +37A1 + 8 +SPANNRICHTUNG + 10 +24525.0 + 20 +8460.788383 + 30 +0.0 + 0 +SEQEND + 5 +37A2 + 8 +SPANNRICHTUNG + 0 +LINE + 5 +323F + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +17278.805922 + 30 +0.0 + 11 +17990.0 + 21 +17643.805922 + 31 +0.0 + 0 +LINE + 5 +3240 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +17632.359313 + 30 +0.0 + 11 +17847.640687 + 21 +17855.0 + 31 +0.0 + 0 +LINE + 5 +3241 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +17985.912703 + 30 +0.0 + 11 +17744.087297 + 21 +18105.0 + 31 +0.0 + 0 +LINE + 5 +3242 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +18339.466094 + 30 +0.0 + 11 +17765.533906 + 21 +18480.0 + 31 +0.0 + 0 +LINE + 5 +3243 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +18693.019485 + 30 +0.0 + 11 +17740.0 + 21 +18808.019485 + 31 +0.0 + 0 +LINE + 5 +3244 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +19046.572875 + 30 +0.0 + 11 +17990.0 + 21 +19411.572875 + 31 +0.0 + 0 +LINE + 5 +3245 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +19400.126266 + 30 +0.0 + 11 +17990.0 + 21 +19765.126266 + 31 +0.0 + 0 +LINE + 5 +3246 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +19753.679656 + 30 +0.0 + 11 +17990.0 + 21 +20118.679656 + 31 +0.0 + 0 +LINE + 5 +3247 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +20107.233047 + 30 +0.0 + 11 +17990.0 + 21 +20472.233047 + 31 +0.0 + 0 +LINE + 5 +3248 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +20460.786438 + 30 +0.0 + 11 +17990.0 + 21 +20825.786438 + 31 +0.0 + 0 +LINE + 5 +3249 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +20814.339828 + 30 +0.0 + 11 +17990.0 + 21 +21179.339828 + 31 +0.0 + 0 +LINE + 5 +324A + 8 +0 + 62 + 0 + 10 +18560.660172 + 20 +21750.0 + 30 +0.0 + 11 +18740.0 + 21 +21929.339828 + 31 +0.0 + 0 +LINE + 5 +324B + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +21167.893219 + 30 +0.0 + 11 +17990.0 + 21 +21532.893219 + 31 +0.0 + 0 +LINE + 5 +324C + 8 +0 + 62 + 0 + 10 +18207.106781 + 20 +21750.0 + 30 +0.0 + 11 +18572.106781 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +324D + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +21521.446609 + 30 +0.0 + 11 +18218.553391 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +324E + 8 +0 + 62 + 0 + 10 +17500.0 + 20 +21750.0 + 30 +0.0 + 11 +17865.0 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +324F + 8 +0 + 62 + 0 + 10 +17146.446609 + 20 +21750.0 + 30 +0.0 + 11 +17511.446609 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +3250 + 8 +0 + 62 + 0 + 10 +16875.0 + 20 +21832.106781 + 30 +0.0 + 11 +17157.893219 + 21 +22115.0 + 31 +0.0 + 0 +LINE + 5 +3251 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +16925.252532 + 30 +0.0 + 11 +17990.0 + 21 +17290.252532 + 31 +0.0 + 0 +LINE + 5 +3252 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +16571.699141 + 30 +0.0 + 11 +17990.0 + 21 +16936.699141 + 31 +0.0 + 0 +LINE + 5 +3253 + 8 +0 + 62 + 0 + 10 +17375.0 + 20 +15968.145751 + 30 +0.0 + 11 +17396.854249 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +3254 + 8 +0 + 62 + 0 + 10 +17625.0 + 20 +16218.145751 + 30 +0.0 + 11 +17990.0 + 21 +16583.145751 + 31 +0.0 + 0 +LINE + 5 +3255 + 8 +0 + 62 + 0 + 10 +17385.40764 + 20 +15625.0 + 30 +0.0 + 11 +17990.0 + 21 +16229.59236 + 31 +0.0 + 0 +LINE + 5 +3256 + 8 +0 + 62 + 0 + 10 +17738.961031 + 20 +15625.0 + 30 +0.0 + 11 +18103.961031 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +3257 + 8 +0 + 62 + 0 + 10 +18092.514421 + 20 +15625.0 + 30 +0.0 + 11 +18457.514421 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +3258 + 8 +0 + 62 + 0 + 10 +18446.067812 + 20 +15625.0 + 30 +0.0 + 11 +18811.067812 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +3259 + 8 +0 + 62 + 0 + 10 +18799.621202 + 20 +15625.0 + 30 +0.0 + 11 +19164.621202 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +325A + 8 +0 + 62 + 0 + 10 +19153.174593 + 20 +15625.0 + 30 +0.0 + 11 +19518.174593 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +325B + 8 +0 + 62 + 0 + 10 +19506.727984 + 20 +15625.0 + 30 +0.0 + 11 +19871.727984 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +325C + 8 +0 + 62 + 0 + 10 +19860.281374 + 20 +15625.0 + 30 +0.0 + 11 +20225.281374 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +325D + 8 +0 + 62 + 0 + 10 +20213.834765 + 20 +15625.0 + 30 +0.0 + 11 +20578.834765 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +325E + 8 +0 + 62 + 0 + 10 +20567.388155 + 20 +15625.0 + 30 +0.0 + 11 +20932.388155 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +325F + 8 +0 + 62 + 0 + 10 +20875.0 + 20 +15579.058454 + 30 +0.0 + 11 +21285.941546 + 21 +15990.0 + 31 +0.0 + 0 +LINE + 5 +3260 + 8 +0 + 62 + 0 + 10 +20899.494937 + 20 +15250.0 + 30 +0.0 + 11 +21240.0 + 21 +15590.505063 + 31 +0.0 + 0 +LINE + 5 +3261 + 8 +0 + 62 + 0 + 10 +21274.494937 + 20 +15625.0 + 30 +0.0 + 11 +21365.0 + 21 +15715.505063 + 31 +0.0 + 0 +LINE + 5 +3262 + 8 +0 + 62 + 0 + 10 +17796.980515 + 20 +18865.0 + 30 +0.0 + 11 +17990.0 + 21 +19058.019485 + 31 +0.0 + 0 +LINE + 5 +3263 + 8 +0 + 62 + 0 + 10 +17875.0 + 20 +18589.466094 + 30 +0.0 + 11 +17990.0 + 21 +18704.466094 + 31 +0.0 + 0 +LINE + 5 +3264 + 8 +0 + 62 + 0 + 10 +17875.0 + 20 +18235.912703 + 30 +0.0 + 11 +17990.0 + 21 +18350.912703 + 31 +0.0 + 0 +LINE + 5 +3265 + 8 +0 + 62 + 0 + 10 +17875.0 + 20 +17882.359313 + 30 +0.0 + 11 +17990.0 + 21 +17997.359313 + 31 +0.0 + 0 +POLYLINE + 5 +3266 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37A3 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18105.0 + 30 +0.0 + 0 +VERTEX + 5 +37A4 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18235.0 + 30 +0.0 + 0 +SEQEND + 5 +37A5 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +326A + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37A6 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18110.0 + 30 +0.0 + 0 +VERTEX + 5 +37A7 + 8 +SCHORNSTEINE + 10 +17870.0 + 20 +18235.0 + 30 +0.0 + 0 +SEQEND + 5 +37A8 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +326E + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37A9 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18485.0 + 30 +0.0 + 0 +VERTEX + 5 +37AA + 8 +SCHORNSTEINE + 10 +17745.0 + 20 +18610.0 + 30 +0.0 + 0 +SEQEND + 5 +37AB + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +3272 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37AC + 8 +SCHORNSTEINE + 10 +17745.0 + 20 +18485.0 + 30 +0.0 + 0 +VERTEX + 5 +37AD + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +18610.0 + 30 +0.0 + 0 +SEQEND + 5 +37AE + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +3276 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37AF + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +18865.0 + 30 +0.0 + 0 +VERTEX + 5 +37B0 + 8 +SCHORNSTEINE + 10 +17870.0 + 20 +18735.0 + 30 +0.0 + 0 +SEQEND + 5 +37B1 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +327A + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37B2 + 8 +SCHORNSTEINE + 10 +17745.0 + 20 +18735.0 + 30 +0.0 + 0 +VERTEX + 5 +37B3 + 8 +SCHORNSTEINE + 10 +17870.0 + 20 +18860.0 + 30 +0.0 + 0 +SEQEND + 5 +37B4 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +327E + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37B5 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17990.0 + 30 +0.0 + 0 +VERTEX + 5 +37B6 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17855.0 + 30 +0.0 + 0 +SEQEND + 5 +37B7 + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +3282 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37B8 + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17855.0 + 30 +0.0 + 0 +VERTEX + 5 +37B9 + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17990.0 + 30 +0.0 + 0 +SEQEND + 5 +37BA + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +3286 + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37BB + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17605.0 + 30 +0.0 + 0 +VERTEX + 5 +37BC + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17740.0 + 30 +0.0 + 0 +SEQEND + 5 +37BD + 8 +SCHORNSTEINE + 0 +POLYLINE + 5 +328A + 8 +SCHORNSTEINE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37BE + 8 +SCHORNSTEINE + 10 +17875.0 + 20 +17605.0 + 30 +0.0 + 0 +VERTEX + 5 +37BF + 8 +SCHORNSTEINE + 10 +17740.0 + 20 +17740.0 + 30 +0.0 + 0 +SEQEND + 5 +37C0 + 8 +SCHORNSTEINE + 0 +TEXT + 5 +328F + 8 +LEGENDE-70 + 10 +19900.0 + 20 +7445.0 + 30 +0.0 + 40 +350.0 + 1 +X + 0 +TEXT + 5 +3290 + 8 +LEGENDE-70 + 10 +19900.0 + 20 +14670.0 + 30 +0.0 + 40 +350.0 + 1 +X + 0 +TEXT + 5 +3291 + 8 +LEGENDE-70 + 10 +24485.0 + 20 +6780.0 + 30 +0.0 + 40 +350.0 + 1 +I + 0 +TEXT + 5 +3292 + 8 +LEGENDE-70 + 10 +22305.0 + 20 +22780.0 + 30 +0.0 + 40 +350.0 + 1 +I + 41 +0.5 + 0 +TEXT + 5 +3293 + 8 +LEGENDE-70 + 10 +6485.0 + 20 +6790.0 + 30 +0.0 + 40 +350.0 + 1 +S-DG + 0 +TEXT + 5 +3294 + 8 +LEGENDE-70 + 10 +6485.0 + 20 +23375.0 + 30 +0.0 + 40 +350.0 + 1 +S-DG + 0 +TEXT + 5 +3295 + 8 +LEGENDE-70 + 10 +7625.0 + 20 +22595.0 + 30 +0.0 + 40 +350.0 + 1 +S1 + 0 +TEXT + 5 +3296 + 8 +LEGENDE-70 + 10 +12955.0 + 20 +22580.0 + 30 +0.0 + 40 +350.0 + 1 +W21 + 0 +TEXT + 5 +3297 + 8 +LEGENDE-70 + 10 +20205.0 + 20 +22580.0 + 30 +0.0 + 40 +350.0 + 1 +W22 + 0 +TEXT + 5 +3298 + 8 +LEGENDE-70 + 10 +23890.0 + 20 +22580.0 + 30 +0.0 + 40 +350.0 + 1 +S2 + 0 +TEXT + 5 +3299 + 8 +LEGENDE-70 + 10 +4415.0 + 20 +20490.0 + 30 +0.0 + 40 +350.0 + 1 +W3 + 50 +90.0 + 0 +TEXT + 5 +329A + 8 +LEGENDE-70 + 10 +4465.0 + 20 +11340.0 + 30 +0.0 + 40 +350.0 + 1 +W4 + 50 +90.0 + 0 +TEXT + 5 +329B + 8 +LEGENDE-70 + 10 +6160.0 + 20 +17445.0 + 30 +0.0 + 40 +350.0 + 1 +W25 + 0 +TEXT + 5 +329C + 8 +LEGENDE-70 + 10 +6250.0 + 20 +14645.0 + 30 +0.0 + 40 +350.0 + 1 +W26 + 0 +TEXT + 5 +329D + 8 +LEGENDE-70 + 10 +9620.0 + 20 +18675.0 + 30 +0.0 + 40 +350.0 + 1 +W8 + 50 +90.0 + 0 +TEXT + 5 +329E + 8 +LEGENDE-70 + 10 +6160.0 + 20 +9930.0 + 30 +0.0 + 40 +350.0 + 1 +W23 + 0 +TEXT + 5 +329F + 8 +LEGENDE-70 + 10 +10605.0 + 20 +12890.0 + 30 +0.0 + 40 +350.0 + 1 +W28 + 0 +TEXT + 5 +32A0 + 8 +LEGENDE-70 + 10 +12015.0 + 20 +9895.0 + 30 +0.0 + 40 +350.0 + 1 +W24 + 0 +TEXT + 5 +32A1 + 8 +LEGENDE-70 + 10 +19000.0 + 20 +8415.0 + 30 +0.0 + 40 +350.0 + 1 +S4 + 0 +TEXT + 5 +32A2 + 8 +LEGENDE-70 + 10 +12440.0 + 20 +15605.0 + 30 +0.0 + 40 +350.0 + 1 +W27 + 0 +TEXT + 5 +32A3 + 8 +LEGENDE-70 + 10 +18965.0 + 20 +16115.0 + 30 +0.0 + 40 +350.0 + 1 +W29 + 0 +TEXT + 5 +32A4 + 8 +LEGENDE-70 + 10 +23160.0 + 20 +16090.0 + 30 +0.0 + 40 +350.0 + 1 +W30 + 0 +TEXT + 5 +32A5 + 8 +LEGENDE-70 + 10 +14705.0 + 20 +18675.0 + 30 +0.0 + 40 +350.0 + 1 +W7 + 50 +90.0 + 0 +TEXT + 5 +32A6 + 8 +LEGENDE-70 + 10 +17480.0 + 20 +18680.0 + 30 +0.0 + 40 +350.0 + 1 +W6 + 50 +90.0 + 0 +TEXT + 5 +32A7 + 8 +LEGENDE-70 + 10 +22355.0 + 20 +19100.0 + 30 +0.0 + 40 +350.0 + 1 +W5 + 50 +90.0 + 0 +TEXT + 5 +32A8 + 8 +LEGENDE-70 + 10 +26130.0 + 20 +19345.0 + 30 +0.0 + 40 +350.0 + 1 +W1 + 50 +90.0 + 0 +TEXT + 5 +32A9 + 8 +LEGENDE-70 + 10 +26060.0 + 20 +12355.0 + 30 +0.0 + 40 +350.0 + 1 +W2 + 50 +90.0 + 0 +TEXT + 5 +32AA + 8 +LEGENDE-70 + 10 +26095.0 + 20 +10705.0 + 30 +0.0 + 40 +350.0 + 1 +S3 + 50 +90.0 + 0 +TEXT + 5 +32AB + 8 +LEGENDE-70 + 10 +21655.0 + 20 +10070.0 + 30 +0.0 + 40 +350.0 + 1 +W29 + 50 +90.0 + 0 +TEXT + 5 +32AC + 8 +LEGENDE-70 + 10 +17500.0 + 20 +9915.0 + 30 +0.0 + 40 +350.0 + 1 +W11 + 50 +90.0 + 0 +TEXT + 5 +32AD + 8 +LEGENDE-70 + 10 +14035.0 + 20 +9905.0 + 30 +0.0 + 40 +350.0 + 1 +W10 + 50 +90.0 + 0 +DIMENSION + 5 +32AE + 8 +BEMASSUNG + 2 +*D87 + 10 +6740.0 + 20 +24615.0 + 30 +0.0 + 11 +5870.0 + 21 +24790.0 + 31 +0.0 + 1 +1.74 + 13 +5000.0 + 23 +22115.0 + 33 +0.0 + 14 +6740.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32AF + 8 +BEMASSUNG + 2 +*D89 + 10 +8500.0 + 20 +24615.0 + 30 +0.0 + 11 +7620.0 + 21 +24790.0 + 31 +0.0 + 1 +1.76 + 13 +6740.0 + 23 +22115.0 + 33 +0.0 + 14 +8500.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B0 + 8 +BEMASSUNG + 2 +*D86 + 10 +10240.0 + 20 +24615.0 + 30 +0.0 + 11 +9370.0 + 21 +24790.0 + 31 +0.0 + 1 +1.74 + 13 +8500.0 + 23 +22115.0 + 33 +0.0 + 14 +10240.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B1 + 8 +BEMASSUNG + 2 +*D85 + 10 +11255.0 + 20 +24615.0 + 30 +0.0 + 11 +10747.5 + 21 +24790.0 + 31 +0.0 + 1 +1.01 + 13 +10240.0 + 23 +22115.0 + 33 +0.0 + 14 +11255.0 + 24 +22105.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B2 + 8 +BEMASSUNG + 2 +*D84 + 10 +15860.0 + 20 +24615.0 + 30 +0.0 + 11 +13557.5 + 21 +24790.0 + 31 +0.0 + 1 +4.61 + 13 +11255.0 + 23 +22105.0 + 33 +0.0 + 14 +15860.0 + 24 +22105.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B3 + 8 +BEMASSUNG + 2 +*D83 + 10 +16875.0 + 20 +24615.0 + 30 +0.0 + 11 +16367.5 + 21 +24790.0 + 31 +0.0 + 1 +1.01 + 13 +15860.0 + 23 +22105.0 + 33 +0.0 + 14 +16875.0 + 24 +22105.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B4 + 8 +BEMASSUNG + 2 +*D82 + 10 +18735.0 + 20 +24615.0 + 30 +0.0 + 11 +17805.0 + 21 +24790.0 + 31 +0.0 + 1 +1.86 + 13 +16875.0 + 23 +22105.0 + 33 +0.0 + 14 +18735.0 + 24 +22105.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B5 + 8 +BEMASSUNG + 2 +*D81 + 10 +19750.0 + 20 +24615.0 + 30 +0.0 + 11 +19242.5 + 21 +24790.0 + 31 +0.0 + 1 +1.01 + 13 +18735.0 + 23 +22105.0 + 33 +0.0 + 14 +19750.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B6 + 8 +BEMASSUNG + 2 +*D80 + 10 +23365.0 + 20 +24615.0 + 30 +0.0 + 11 +21557.5 + 21 +24790.0 + 31 +0.0 + 1 +3.61 + 13 +19750.0 + 23 +22115.0 + 33 +0.0 + 14 +23365.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B7 + 8 +BEMASSUNG + 2 +*D88 + 10 +25250.0 + 20 +24615.0 + 30 +0.0 + 11 +24307.5 + 21 +24790.0 + 31 +0.0 + 1 +1.88 + 13 +23365.0 + 23 +22115.0 + 33 +0.0 + 14 +25250.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B8 + 8 +BEMASSUNG + 2 +*D79 + 10 +26740.0 + 20 +24615.0 + 30 +0.0 + 11 +25995.0 + 21 +24790.0 + 31 +0.0 + 1 +1.49 + 13 +25250.0 + 23 +22115.0 + 33 +0.0 + 14 +26740.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32B9 + 8 +BEMASSUNG + 2 +*D69 + 10 +5365.0 + 20 +25315.0 + 30 +0.0 + 11 +5182.5 + 21 +25490.0 + 31 +0.0 + 1 +36 + 13 +5000.0 + 23 +22115.0 + 33 +0.0 + 14 +5365.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32BA + 8 +BEMASSUNG + 2 +*D68 + 10 +9750.0 + 20 +25315.0 + 30 +0.0 + 11 +7557.5 + 21 +25490.0 + 31 +0.0 + 1 +4.38 + 13 +5365.0 + 23 +22115.0 + 33 +0.0 + 14 +9750.0 + 24 +21740.0 + 34 +0.0 + 0 +DIMENSION + 5 +32BB + 8 +BEMASSUNG + 2 +*D71 + 10 +10110.0 + 20 +25315.0 + 30 +0.0 + 11 +9930.0 + 21 +25490.0 + 31 +0.0 + 1 +36 + 13 +9750.0 + 23 +21740.0 + 33 +0.0 + 14 +10110.0 + 24 +21745.0 + 34 +0.0 + 0 +DIMENSION + 5 +32BC + 8 +BEMASSUNG + 2 +*D70 + 10 +14875.0 + 20 +25315.0 + 30 +0.0 + 11 +12492.5 + 21 +25490.0 + 31 +0.0 + 1 +4.76 + 13 +10110.0 + 23 +21745.0 + 33 +0.0 + 14 +14875.0 + 24 +21735.0 + 34 +0.0 + 0 +DIMENSION + 5 +32BD + 8 +BEMASSUNG + 2 +*D72 + 10 +15240.0 + 20 +25315.0 + 30 +0.0 + 11 +15057.5 + 21 +25490.0 + 31 +0.0 + 1 +36 + 13 +14875.0 + 23 +21735.0 + 33 +0.0 + 14 +15240.0 + 24 +21750.0 + 34 +0.0 + 0 +DIMENSION + 5 +32BE + 8 +BEMASSUNG + 2 +*D73 + 10 +17615.0 + 20 +25315.0 + 30 +0.0 + 11 +16427.5 + 21 +25490.0 + 31 +0.0 + 1 +2.38 + 13 +15240.0 + 23 +21750.0 + 33 +0.0 + 14 +17615.0 + 24 +21735.0 + 34 +0.0 + 0 +DIMENSION + 5 +32BF + 8 +BEMASSUNG + 2 +*D74 + 10 +17995.0 + 20 +25315.0 + 30 +0.0 + 11 +17805.0 + 21 +25490.0 + 31 +0.0 + 1 +36 + 13 +17615.0 + 23 +21735.0 + 33 +0.0 + 14 +17995.0 + 24 +21745.0 + 34 +0.0 + 0 +DIMENSION + 5 +32C0 + 8 +BEMASSUNG + 2 +*D75 + 10 +22500.0 + 20 +25315.0 + 30 +0.0 + 11 +20247.5 + 21 +25490.0 + 31 +0.0 + 1 +4.51 + 13 +17995.0 + 23 +21745.0 + 33 +0.0 + 14 +22500.0 + 24 +21750.0 + 34 +0.0 + 0 +DIMENSION + 5 +32C1 + 8 +BEMASSUNG + 2 +*D76 + 10 +22865.0 + 20 +25315.0 + 30 +0.0 + 11 +22682.5 + 21 +25490.0 + 31 +0.0 + 1 +36 + 13 +22500.0 + 23 +21750.0 + 33 +0.0 + 14 +22865.0 + 24 +21750.0 + 34 +0.0 + 0 +DIMENSION + 5 +32C2 + 8 +BEMASSUNG + 2 +*D77 + 10 +26370.0 + 20 +25315.0 + 30 +0.0 + 11 +24617.5 + 21 +25490.0 + 31 +0.0 + 1 +3.51 + 13 +22865.0 + 23 +21750.0 + 33 +0.0 + 14 +26370.0 + 24 +21740.0 + 34 +0.0 + 0 +DIMENSION + 5 +32C3 + 8 +BEMASSUNG + 2 +*D78 + 10 +26740.0 + 20 +25315.0 + 30 +0.0 + 11 +26555.0 + 21 +25490.0 + 31 +0.0 + 1 +36 + 13 +26370.0 + 23 +21740.0 + 33 +0.0 + 14 +26740.0 + 24 +22000.0 + 34 +0.0 + 0 +DIMENSION + 5 +32C4 + 8 +BEMASSUNG + 2 +*D67 + 10 +26740.0 + 20 +26015.0 + 30 +0.0 + 11 +15870.0 + 21 +26190.0 + 31 +0.0 + 1 +21.74 + 13 +5000.0 + 23 +22115.0 + 33 +0.0 + 14 +26740.0 + 24 +22115.0 + 34 +0.0 + 0 +DIMENSION + 5 +32C5 + 8 +BEMASSUNG + 2 +*D63 + 10 +3500.0 + 20 +14615.0 + 30 +0.0 + 11 +3325.0 + 21 +11932.5 + 31 +0.0 + 1 +5.36 + 13 +5000.0 + 23 +9250.0 + 33 +0.0 + 14 +5000.0 + 24 +14615.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32C6 + 8 +BEMASSUNG + 2 +*D59 + 10 +3500.0 + 20 +16125.0 + 30 +0.0 + 11 +3325.0 + 21 +15370.0 + 31 +0.0 + 1 +1.51 + 13 +5000.0 + 23 +14615.0 + 33 +0.0 + 14 +5000.0 + 24 +16125.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32C7 + 8 +BEMASSUNG + 2 +*D60 + 10 +3500.0 + 20 +18240.0 + 30 +0.0 + 11 +3325.0 + 21 +17182.5 + 31 +0.0 + 1 +2.11 + 13 +5000.0 + 23 +16125.0 + 33 +0.0 + 14 +5000.0 + 24 +18240.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32C8 + 8 +BEMASSUNG + 2 +*D61 + 10 +3500.0 + 20 +19375.0 + 30 +0.0 + 11 +3325.0 + 21 +18807.5 + 31 +0.0 + 1 +1.13 + 13 +5000.0 + 23 +18240.0 + 33 +0.0 + 14 +5000.0 + 24 +19375.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32C9 + 8 +BEMASSUNG + 2 +*D62 + 10 +3500.0 + 20 +22115.0 + 30 +0.0 + 11 +3325.0 + 21 +20745.0 + 31 +0.0 + 1 +2.74 + 13 +5000.0 + 23 +19375.0 + 33 +0.0 + 14 +5000.0 + 24 +22115.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32CA + 8 +BEMASSUNG + 2 +*D64 + 10 +8115.0 + 20 +18105.0 + 30 +0.0 + 11 +6740.0 + 21 +18280.0 + 31 +0.0 + 1 +2.75 + 13 +5365.0 + 23 +17255.0 + 33 +0.0 + 14 +8115.0 + 24 +17255.0 + 34 +0.0 + 0 +DIMENSION + 5 +32CB + 8 +BEMASSUNG + 2 +*D65 + 10 +9005.0 + 20 +18105.0 + 30 +0.0 + 11 +8560.0 + 21 +18280.0 + 31 +0.0 + 1 +88 + 13 +8115.0 + 23 +17255.0 + 33 +0.0 + 14 +9005.0 + 24 +17185.0 + 34 +0.0 + 0 +DIMENSION + 5 +32CC + 8 +BEMASSUNG + 2 +*D66 + 10 +9750.0 + 20 +18105.0 + 30 +0.0 + 11 +9377.5 + 21 +18280.0 + 31 +0.0 + 1 +75 + 13 +9005.0 + 23 +17185.0 + 33 +0.0 + 14 +9750.0 + 24 +18100.0 + 34 +0.0 + 0 +DIMENSION + 5 +32CD + 8 +BEMASSUNG + 2 +*D57 + 10 +7620.0 + 20 +16165.0 + 30 +0.0 + 11 +6495.0 + 21 +16340.0 + 31 +0.0 + 1 +2.25 + 13 +5370.0 + 23 +16875.0 + 33 +0.0 + 14 +7620.0 + 24 +16875.0 + 34 +0.0 + 0 +DIMENSION + 5 +32CE + 8 +BEMASSUNG + 2 +*D58 + 10 +7740.0 + 20 +16165.0 + 30 +0.0 + 11 +7829.5 + 21 +16340.0 + 31 +0.0 + 1 +12 + 13 +7620.0 + 23 +16875.0 + 33 +0.0 + 14 +7740.0 + 24 +16195.0 + 34 +0.0 + 0 +DIMENSION + 5 +32CF + 8 +BEMASSUNG + 2 +*D55 + 10 +12615.0 + 20 +11975.0 + 30 +0.0 + 11 +11180.0 + 21 +12150.0 + 31 +0.0 + 1 +2.87 + 13 +9745.0 + 23 +12370.0 + 33 +0.0 + 14 +12615.0 + 24 +12370.0 + 34 +0.0 + 0 +DIMENSION + 5 +32D0 + 8 +BEMASSUNG + 2 +*D146 + 10 +13880.0 + 20 +11975.0 + 30 +0.0 + 11 +13025.0 + 21 +12150.0 + 31 +0.0 + 70 + 128 + 1 +1.26 + 13 +12615.0 + 23 +12370.0 + 33 +0.0 + 14 +13880.0 + 24 +11955.0 + 34 +0.0 + 0 +DIMENSION + 5 +32D1 + 8 +BEMASSUNG + 2 +*D56 + 10 +14120.0 + 20 +11975.0 + 30 +0.0 + 11 +14000.0 + 21 +12150.0 + 31 +0.0 + 1 +25 + 13 +13880.0 + 23 +11955.0 + 33 +0.0 + 14 +14120.0 + 24 +11975.0 + 34 +0.0 + 0 +TEXT + 5 +32D2 + 8 +BEMASSUNG + 10 +26657.241299 + 20 +25517.290813 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D3 + 8 +BEMASSUNG + 10 +24515.928885 + 20 +24822.24712 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D4 + 8 +BEMASSUNG + 10 +22779.643546 + 20 +25526.273006 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D5 + 8 +BEMASSUNG + 10 +17917.639253 + 20 +25547.220539 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D6 + 8 +BEMASSUNG + 10 +15161.804721 + 20 +25526.273006 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D7 + 8 +BEMASSUNG + 10 +13778.648316 + 20 +24803.584125 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D8 + 8 +BEMASSUNG + 10 +17974.943526 + 20 +24816.921717 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32D9 + 8 +BEMASSUNG + 10 +21747.188324 + 20 +24806.448018 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32DA + 8 +BEMASSUNG + 10 +13778.648316 + 20 +24814.057823 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32DB + 8 +BEMASSUNG + 10 +10027.360287 + 20 +25536.746704 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32DC + 8 +BEMASSUNG + 10 +7772.360287 + 20 +25536.746704 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32DD + 8 +BEMASSUNG + 10 +5267.360287 + 20 +25536.746704 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32DE + 8 +BEMASSUNG + 10 +8675.0 + 20 +18331.746704 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +32DF + 8 +BEMASSUNG + 10 +2610.0 + 20 +22030.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +32E0 + 8 +BEMASSUNG + 10 +2610.0 + 20 +17160.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +32E1 + 8 +BEMASSUNG + 10 +3300.0 + 20 +19020.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +32E2 + 8 +BEMASSUNG + 10 +3300.0 + 20 +17365.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +32E3 + 8 +BEMASSUNG + 10 +2610.0 + 20 +14385.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +32E4 + 8 +BEMASSUNG + 10 +3300.0 + 20 +12135.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +DIMENSION + 5 +32E5 + 8 +BEMASSUNG + 2 +*D90 + 10 +2800.0 + 20 +9615.0 + 30 +0.0 + 11 +2625.0 + 21 +9432.5 + 31 +0.0 + 1 +36 + 13 +5000.0 + 23 +9250.0 + 33 +0.0 + 14 +5000.0 + 24 +9615.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32E6 + 8 +BEMASSUNG + 2 +*D91 + 10 +2800.0 + 20 +14115.0 + 30 +0.0 + 11 +2625.0 + 21 +11865.0 + 31 +0.0 + 1 +4.51 + 13 +5000.0 + 23 +9615.0 + 33 +0.0 + 14 +5365.0 + 24 +14115.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32E7 + 8 +BEMASSUNG + 2 +*D92 + 10 +2800.0 + 20 +14475.0 + 30 +0.0 + 11 +2625.0 + 21 +14295.0 + 31 +0.0 + 1 +36 + 13 +5365.0 + 23 +14115.0 + 33 +0.0 + 14 +5390.0 + 24 +14475.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32E8 + 8 +BEMASSUNG + 2 +*D93 + 10 +2800.0 + 20 +16875.0 + 30 +0.0 + 11 +2625.0 + 21 +15675.0 + 31 +0.0 + 1 +2.38 + 13 +5390.0 + 23 +14475.0 + 33 +0.0 + 14 +5365.0 + 24 +16875.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32E9 + 8 +BEMASSUNG + 2 +*D94 + 10 +2800.0 + 20 +17235.0 + 30 +0.0 + 11 +2625.0 + 21 +17055.0 + 31 +0.0 + 1 +36 + 13 +5365.0 + 23 +16875.0 + 33 +0.0 + 14 +5375.0 + 24 +17235.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32EA + 8 +BEMASSUNG + 2 +*D95 + 10 +2800.0 + 20 +21750.0 + 30 +0.0 + 11 +2625.0 + 21 +19492.5 + 31 +0.0 + 1 +4.51 + 13 +5375.0 + 23 +17235.0 + 33 +0.0 + 14 +5355.0 + 24 +21750.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32EB + 8 +BEMASSUNG + 2 +*D96 + 10 +2800.0 + 20 +22120.0 + 30 +0.0 + 11 +2625.0 + 21 +21935.0 + 31 +0.0 + 1 +36 + 13 +5355.0 + 23 +21750.0 + 33 +0.0 + 14 +5345.0 + 24 +22120.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +32EC + 8 +BEMASSUNG + 10 +2610.0 + 20 +15890.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +32ED + 8 +BEMASSUNG + 10 +2610.0 + 20 +9525.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +DIMENSION + 5 +32EE + 8 +BEMASSUNG + 2 +*D97 + 10 +13530.0 + 20 +18105.0 + 30 +0.0 + 11 +11825.0 + 21 +18280.0 + 31 +0.0 + 1 +3.41 + 13 +10120.0 + 23 +17375.0 + 33 +0.0 + 14 +13530.0 + 24 +17375.0 + 34 +0.0 + 0 +DIMENSION + 5 +32EF + 8 +BEMASSUNG + 2 +*D201 + 10 +14560.0 + 20 +18105.0 + 30 +0.0 + 11 +14120.0 + 21 +18280.0 + 31 +0.0 + 70 + 128 + 1 +88 + 13 +13530.0 + 23 +17375.0 + 33 +0.0 + 14 +14560.0 + 24 +17375.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F0 + 8 +BEMASSUNG + 2 +*D98 + 10 +14885.0 + 20 +18105.0 + 30 +0.0 + 11 +14722.5 + 21 +18280.0 + 31 +0.0 + 1 +32 + 13 +14560.0 + 23 +17375.0 + 33 +0.0 + 14 +14885.0 + 24 +17395.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F1 + 8 +BEMASSUNG + 2 +*D99 + 10 +15990.0 + 20 +18110.0 + 30 +0.0 + 11 +15612.5 + 21 +18285.0 + 31 +0.0 + 1 +75 + 13 +15235.0 + 23 +17380.0 + 33 +0.0 + 14 +15990.0 + 24 +17380.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F2 + 8 +BEMASSUNG + 2 +*D100 + 10 +16870.0 + 20 +18110.0 + 30 +0.0 + 11 +16430.0 + 21 +18285.0 + 31 +0.0 + 1 +88 + 13 +15990.0 + 23 +17380.0 + 33 +0.0 + 14 +16870.0 + 24 +17370.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F3 + 8 +BEMASSUNG + 2 +*D101 + 10 +17625.0 + 20 +18110.0 + 30 +0.0 + 11 +17247.5 + 21 +18285.0 + 31 +0.0 + 1 +75 + 13 +16870.0 + 23 +17370.0 + 33 +0.0 + 14 +17625.0 + 24 +17380.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F4 + 8 +BEMASSUNG + 2 +*D102 + 10 +21360.0 + 20 +16810.0 + 30 +0.0 + 11 +19672.5 + 21 +16985.0 + 31 +0.0 + 1 +3.37 + 13 +17985.0 + 23 +16005.0 + 33 +0.0 + 14 +21360.0 + 24 +16005.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F5 + 8 +BEMASSUNG + 2 +*D103 + 10 +22255.0 + 20 +16810.0 + 30 +0.0 + 11 +21807.5 + 21 +16985.0 + 31 +0.0 + 1 +88 + 13 +21360.0 + 23 +16005.0 + 33 +0.0 + 14 +22255.0 + 24 +15975.0 + 34 +0.0 + 0 +DIMENSION + 5 +32F6 + 8 +BEMASSUNG + 2 +*D104 + 10 +22510.0 + 20 +16810.0 + 30 +0.0 + 11 +22382.5 + 21 +16985.0 + 31 +0.0 + 1 +25 + 13 +22255.0 + 23 +15975.0 + 33 +0.0 + 14 +22510.0 + 24 +16010.0 + 34 +0.0 + 0 +TEXT + 5 +32F7 + 8 +BEMASSUNG + 10 +19890.0 + 20 +17015.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +32F8 + 8 +BEMASSUNG + 10 +21950.0 + 20 +17015.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +32F9 + 8 +BEMASSUNG + 10 +16570.0 + 20 +18305.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +32FA + 8 +BEMASSUNG + 10 +14250.0 + 20 +18305.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +32FB + 8 +BEMASSUNG + 2 +*D105 + 10 +24520.0 + 20 +16245.0 + 30 +0.0 + 11 +24345.0 + 21 +16115.0 + 31 +0.0 + 1 +25 + 13 +22865.0 + 23 +15985.0 + 33 +0.0 + 14 +22865.0 + 24 +16245.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32FC + 8 +BEMASSUNG + 2 +*D106 + 10 +24520.0 + 20 +17130.0 + 30 +0.0 + 11 +24345.0 + 21 +16687.5 + 31 +0.0 + 1 +88 + 13 +22865.0 + 23 +16245.0 + 33 +0.0 + 14 +22845.0 + 24 +17130.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32FD + 8 +BEMASSUNG + 2 +*D107 + 10 +24520.0 + 20 +21740.0 + 30 +0.0 + 11 +24345.0 + 21 +19435.0 + 31 +0.0 + 1 +4.62 + 13 +22845.0 + 23 +17130.0 + 33 +0.0 + 14 +23355.0 + 24 +21740.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32FE + 8 +BEMASSUNG + 2 +*D108 + 10 +28240.0 + 20 +10360.0 + 30 +0.0 + 11 +28065.0 + 21 +9807.5 + 31 +0.0 + 1 +1.11 + 13 +26740.0 + 23 +9255.0 + 33 +0.0 + 14 +26740.0 + 24 +10360.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +32FF + 8 +BEMASSUNG + 2 +*D109 + 10 +28240.0 + 20 +12010.0 + 30 +0.0 + 11 +28065.0 + 21 +11185.0 + 31 +0.0 + 1 +1.63 + 13 +26740.0 + 23 +10360.0 + 33 +0.0 + 14 +26730.0 + 24 +12010.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3300 + 8 +BEMASSUNG + 2 +*D110 + 10 +28240.0 + 20 +17730.0 + 30 +0.0 + 11 +28065.0 + 21 +14870.0 + 31 +0.0 + 1 +5.74 + 13 +26730.0 + 23 +12010.0 + 33 +0.0 + 14 +26725.0 + 24 +17730.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3301 + 8 +BEMASSUNG + 2 +*D111 + 10 +28240.0 + 20 +18385.0 + 30 +0.0 + 11 +28065.0 + 21 +18057.5 + 31 +0.0 + 1 +63 + 13 +26725.0 + 23 +17730.0 + 33 +0.0 + 14 +26720.0 + 24 +18385.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3302 + 8 +BEMASSUNG + 2 +*D112 + 10 +28240.0 + 20 +22115.0 + 30 +0.0 + 11 +28065.0 + 21 +20250.0 + 31 +0.0 + 1 +3.74 + 13 +26720.0 + 23 +18385.0 + 33 +0.0 + 14 +26725.0 + 24 +22115.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3303 + 8 +BEMASSUNG + 2 +*D113 + 10 +28940.0 + 20 +9615.0 + 30 +0.0 + 11 +28765.0 + 21 +9435.0 + 31 +0.0 + 1 +36 + 13 +26685.0 + 23 +9255.0 + 33 +0.0 + 14 +26685.0 + 24 +9615.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3304 + 8 +BEMASSUNG + 2 +*D114 + 10 +28940.0 + 20 +15625.0 + 30 +0.0 + 11 +28765.0 + 21 +12620.0 + 31 +0.0 + 1 +6.01 + 13 +26685.0 + 23 +9615.0 + 33 +0.0 + 14 +26365.0 + 24 +15625.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3305 + 8 +BEMASSUNG + 2 +*D115 + 10 +28940.0 + 20 +15995.0 + 30 +0.0 + 11 +28765.0 + 21 +15810.0 + 31 +0.0 + 1 +36 + 13 +26365.0 + 23 +15625.0 + 33 +0.0 + 14 +26365.0 + 24 +15995.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3306 + 8 +BEMASSUNG + 2 +*D116 + 10 +28940.0 + 20 +21745.0 + 30 +0.0 + 11 +28765.0 + 21 +18870.0 + 31 +0.0 + 1 +5.76 + 13 +26365.0 + 23 +15995.0 + 33 +0.0 + 14 +26370.0 + 24 +21745.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3307 + 8 +BEMASSUNG + 2 +*D117 + 10 +28940.0 + 20 +22115.0 + 30 +0.0 + 11 +28765.0 + 21 +21930.0 + 31 +0.0 + 1 +36 + 13 +26370.0 + 23 +21745.0 + 33 +0.0 + 14 +26380.0 + 24 +22115.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3308 + 8 +BEMASSUNG + 2 +*D118 + 10 +29640.0 + 20 +22115.0 + 30 +0.0 + 11 +29465.0 + 21 +15685.0 + 31 +0.0 + 1 +12.86 + 13 +26720.0 + 23 +9255.0 + 33 +0.0 + 14 +26720.0 + 24 +22115.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3309 + 8 +BEMASSUNG + 2 +*D119 + 10 +24520.0 + 20 +15240.0 + 30 +0.0 + 11 +24345.0 + 21 +15432.5 + 31 +0.0 + 1 +40 + 13 +22975.0 + 23 +15625.0 + 33 +0.0 + 14 +22975.0 + 24 +15240.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +330A + 8 +BEMASSUNG + 2 +*D120 + 10 +24520.0 + 20 +14360.0 + 30 +0.0 + 11 +24345.0 + 21 +14800.0 + 31 +0.0 + 1 +88 + 13 +22975.0 + 23 +15240.0 + 33 +0.0 + 14 +22960.0 + 24 +14360.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +330B + 8 +BEMASSUNG + 2 +*D121 + 10 +24520.0 + 20 +9625.0 + 30 +0.0 + 11 +24345.0 + 21 +11992.5 + 31 +0.0 + 1 +4.72 + 13 +22960.0 + 23 +14360.0 + 33 +0.0 + 14 +24375.0 + 24 +9625.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +330C + 8 +BEMASSUNG + 10 +24345.0 + 20 +12215.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +330D + 8 +BEMASSUNG + 10 +24345.0 + 20 +14955.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +330E + 8 +BEMASSUNG + 10 +28045.0 + 20 +11410.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +330F + 8 +BEMASSUNG + 10 +28045.0 + 20 +9975.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3310 + 8 +BEMASSUNG + 10 +28735.0 + 20 +9520.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3311 + 8 +BEMASSUNG + 10 +29445.0 + 20 +15915.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3312 + 8 +BEMASSUNG + 10 +28740.0 + 20 +15895.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3313 + 8 +BEMASSUNG + 10 +28045.0 + 20 +18230.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3314 + 8 +BEMASSUNG + 10 +28735.0 + 20 +22015.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3315 + 8 +BEMASSUNG + 10 +24345.0 + 20 +16845.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3316 + 8 +BEMASSUNG + 10 +24345.0 + 20 +19675.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +3317 + 8 +BEMASSUNG + 2 +*D128 + 10 +8415.0 + 20 +15585.0 + 30 +0.0 + 11 +8240.0 + 21 +15037.5 + 31 +0.0 + 1 +1.10 + 13 +7730.0 + 23 +14490.0 + 33 +0.0 + 14 +7730.0 + 24 +15585.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3318 + 8 +BEMASSUNG + 2 +*D127 + 10 +8415.0 + 20 +16490.0 + 30 +0.0 + 11 +8240.0 + 21 +16037.5 + 31 +0.0 + 1 +88 + 13 +7730.0 + 23 +15585.0 + 33 +0.0 + 14 +7730.0 + 24 +16490.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3319 + 8 +BEMASSUNG + 2 +*D126 + 10 +8415.0 + 20 +16880.0 + 30 +0.0 + 11 +8240.0 + 21 +16685.0 + 31 +0.0 + 1 +40 + 13 +7730.0 + 23 +16490.0 + 33 +0.0 + 14 +8115.0 + 24 +16880.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +331A + 8 +BEMASSUNG + 2 +*D131 + 10 +8405.0 + 20 +19980.0 + 30 +0.0 + 11 +8230.0 + 21 +18622.5 + 31 +0.0 + 1 + 2.75 + 13 +9750.0 + 23 +17265.0 + 33 +0.0 + 14 +9750.0 + 24 +19980.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +331B + 8 +BEMASSUNG + 2 +*D129 + 10 +8405.0 + 20 +20875.0 + 30 +0.0 + 11 +8230.0 + 21 +20427.5 + 31 +0.0 + 1 +88 + 13 +9750.0 + 23 +19980.0 + 33 +0.0 + 14 +9755.0 + 24 +20875.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +331C + 8 +BEMASSUNG + 2 +*D130 + 10 +8405.0 + 20 +21750.0 + 30 +0.0 + 11 +8230.0 + 21 +21312.5 + 31 +0.0 + 1 +87 + 13 +9755.0 + 23 +20875.0 + 33 +0.0 + 14 +9740.0 + 24 +21750.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +331D + 8 +BEMASSUNG + 2 +*D122 + 10 +13890.0 + 20 +17375.0 + 30 +0.0 + 11 +13715.0 + 21 +17464.5 + 31 +0.0 + 1 +12 + 13 +14555.0 + 23 +17245.0 + 33 +0.0 + 14 +14555.0 + 24 +17375.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +331E + 8 +BEMASSUNG + 2 +*D123 + 10 +13890.0 + 20 +21750.0 + 30 +0.0 + 11 +13715.0 + 21 +19562.5 + 31 +0.0 + 1 +4.37 + 13 +14555.0 + 23 +17375.0 + 33 +0.0 + 14 +13890.0 + 24 +21750.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +331F + 8 +BEMASSUNG + 2 +*D124 + 10 +10725.0 + 20 +15740.0 + 30 +0.0 + 11 +10550.0 + 21 +15612.5 + 31 +0.0 + 1 +25 + 13 +10130.0 + 23 +15485.0 + 33 +0.0 + 14 +10130.0 + 24 +15740.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3320 + 8 +BEMASSUNG + 2 +*D135 + 10 +10725.0 + 20 +16625.0 + 30 +0.0 + 11 +10550.0 + 21 +15980.0 + 31 +0.0 + 70 + 128 + 1 +88 + 13 +10130.0 + 23 +15740.0 + 33 +0.0 + 14 +10115.0 + 24 +16625.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3321 + 8 +BEMASSUNG + 2 +*D125 + 10 +10725.0 + 20 +17255.0 + 30 +0.0 + 11 +10550.0 + 21 +16940.0 + 31 +0.0 + 1 +62 + 13 +10115.0 + 23 +16625.0 + 33 +0.0 + 14 +10715.0 + 24 +17255.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3322 + 8 +BEMASSUNG + 10 +8098.253296 + 20 +20592.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3323 + 8 +BEMASSUNG + 10 +8098.253296 + 20 +21482.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3324 + 8 +BEMASSUNG + 10 +8220.0 + 20 +16167.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3325 + 8 +BEMASSUNG + 10 +13693.253296 + 20 +19837.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3326 + 8 +BEMASSUNG + 10 +13693.253296 + 20 +17622.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3327 + 8 +BEMASSUNG + 10 +10515.0 + 20 +16120.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3328 + 8 +BEMASSUNG + 10 +10528.253296 + 20 +17087.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3329 + 8 +BEMASSUNG + 10 +7950.0 + 20 +16366.746704 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 0 +DIMENSION + 5 +332A + 8 +BEMASSUNG + 2 +*D136 + 10 +15745.0 + 20 +16480.0 + 30 +0.0 + 11 +12925.0 + 21 +16655.0 + 31 +0.0 + 1 +5.63 + 13 +10105.0 + 23 +15495.0 + 33 +0.0 + 14 +15745.0 + 24 +15495.0 + 34 +0.0 + 0 +DIMENSION + 5 +332B + 8 +BEMASSUNG + 2 +*D132 + 10 +16375.0 + 20 +16480.0 + 30 +0.0 + 11 +16060.0 + 21 +16655.0 + 31 +0.0 + 1 +61 + 13 +15745.0 + 23 +15815.0 + 33 +0.0 + 14 +16375.0 + 24 +15815.0 + 34 +0.0 + 0 +DIMENSION + 5 +332C + 8 +BEMASSUNG + 2 +*D134 + 10 +17385.0 + 20 +16480.0 + 30 +0.0 + 11 +16880.0 + 21 +16655.0 + 31 +0.0 + 1 +1.01 + 13 +16375.0 + 23 +15815.0 + 33 +0.0 + 14 +17385.0 + 24 +15975.0 + 34 +0.0 + 0 +DIMENSION + 5 +332D + 8 +BEMASSUNG + 2 +*D133 + 10 +17635.0 + 20 +16480.0 + 30 +0.0 + 11 +17510.0 + 21 +16655.0 + 31 +0.0 + 1 +25 + 13 +17385.0 + 23 +15975.0 + 33 +0.0 + 14 +17635.0 + 24 +16015.0 + 34 +0.0 + 0 +DIMENSION + 5 +332E + 8 +BEMASSUNG + 2 +*D137 + 10 +18650.0 + 20 +18980.0 + 30 +0.0 + 11 +18475.0 + 21 +20362.5 + 31 +0.0 + 1 +2.76 + 13 +17990.0 + 23 +21745.0 + 33 +0.0 + 14 +17990.0 + 24 +18980.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +332F + 8 +BEMASSUNG + 2 +*D138 + 10 +18650.0 + 20 +17490.0 + 30 +0.0 + 11 +18475.0 + 21 +18235.0 + 31 +0.0 + 1 +1.49 + 13 +17990.0 + 23 +18980.0 + 33 +0.0 + 14 +17990.0 + 24 +17490.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3330 + 8 +BEMASSUNG + 2 +*D139 + 10 +15005.0 + 20 +15995.0 + 30 +0.0 + 11 +14830.0 + 21 +15740.0 + 31 +0.0 + 1 +50 + 13 +15005.0 + 23 +15485.0 + 33 +0.0 + 14 +15005.0 + 24 +15995.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3331 + 8 +BEMASSUNG + 2 +*D140 + 10 +15005.0 + 20 +17250.0 + 30 +0.0 + 11 +14830.0 + 21 +16755.0 + 31 +0.0 + 70 + 128 + 1 +1.26 + 13 +15005.0 + 23 +15995.0 + 33 +0.0 + 14 +15010.0 + 24 +17250.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3332 + 8 +BEMASSUNG + 10 +13170.0 + 20 +16685.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3333 + 8 +BEMASSUNG + 10 +16175.0 + 20 +16685.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +3334 + 8 +BEMASSUNG + 2 +*D141 + 10 +8745.0 + 20 +12740.0 + 30 +0.0 + 11 +8570.0 + 21 +11175.0 + 31 +0.0 + 1 +3.12 + 13 +9010.0 + 23 +9610.0 + 33 +0.0 + 14 +9010.0 + 24 +12740.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3335 + 8 +BEMASSUNG + 2 +*D142 + 10 +8745.0 + 20 +12995.0 + 30 +0.0 + 11 +8570.0 + 21 +12867.5 + 31 +0.0 + 1 +25 + 13 +9010.0 + 23 +12740.0 + 33 +0.0 + 14 +9745.0 + 24 +12995.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3336 + 8 +BEMASSUNG + 2 +*D143 + 10 +8745.0 + 20 +13875.0 + 30 +0.0 + 11 +8570.0 + 21 +13435.0 + 31 +0.0 + 1 +88 + 13 +9745.0 + 23 +12995.0 + 33 +0.0 + 14 +9755.0 + 24 +13875.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3337 + 8 +BEMASSUNG + 2 +*D144 + 10 +8745.0 + 20 +14130.0 + 30 +0.0 + 11 +8570.0 + 21 +14002.5 + 31 +0.0 + 1 +25 + 13 +9755.0 + 23 +13875.0 + 33 +0.0 + 14 +9735.0 + 24 +14130.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3338 + 8 +BEMASSUNG + 2 +*D145 + 10 +9745.0 + 20 +13450.0 + 30 +0.0 + 11 +9557.5 + 21 +13625.0 + 31 +0.0 + 1 +37 + 13 +9370.0 + 23 +12745.0 + 33 +0.0 + 14 +9745.0 + 24 +12745.0 + 34 +0.0 + 0 +DIMENSION + 5 +3339 + 8 +BEMASSUNG + 2 +*D147 + 10 +13590.0 + 20 +12375.0 + 30 +0.0 + 11 +13415.0 + 21 +10992.5 + 31 +0.0 + 1 +2.76 + 13 +13775.0 + 23 +9610.0 + 33 +0.0 + 14 +13775.0 + 24 +12375.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +333A + 8 +BEMASSUNG + 2 +*D148 + 10 +13590.0 + 20 +12745.0 + 30 +0.0 + 11 +13415.0 + 21 +12560.0 + 31 +0.0 + 1 +36 + 13 +13775.0 + 23 +12375.0 + 33 +0.0 + 14 +13875.0 + 24 +12745.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +333B + 8 +BEMASSUNG + 2 +*D149 + 10 +13590.0 + 20 +13500.0 + 30 +0.0 + 11 +13415.0 + 21 +13122.5 + 31 +0.0 + 1 +76 + 13 +13880.0 + 23 +12745.0 + 33 +0.0 + 14 +13880.0 + 24 +13500.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +333C + 8 +BEMASSUNG + 2 +*D150 + 10 +13590.0 + 20 +13870.0 + 30 +0.0 + 11 +13415.0 + 21 +13685.0 + 31 +0.0 + 1 +36 + 13 +13880.0 + 23 +13500.0 + 33 +0.0 + 14 +14125.0 + 24 +13870.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +333D + 8 +BEMASSUNG + 2 +*D151 + 10 +14620.0 + 20 +11975.0 + 30 +0.0 + 11 +14709.5 + 21 +12150.0 + 31 +0.0 + 1 +12 + 13 +14485.0 + 23 +13495.0 + 33 +0.0 + 14 +14620.0 + 24 +13495.0 + 34 +0.0 + 0 +DIMENSION + 5 +333E + 8 +BEMASSUNG + 2 +*D165 + 10 +15505.0 + 20 +11975.0 + 30 +0.0 + 11 +15140.0 + 21 +12150.0 + 31 +0.0 + 70 + 128 + 1 +88 + 13 +14620.0 + 23 +13495.0 + 33 +0.0 + 14 +15505.0 + 24 +11975.0 + 34 +0.0 + 0 +DIMENSION + 5 +333F + 8 +BEMASSUNG + 2 +*D152 + 10 +17620.0 + 20 +11975.0 + 30 +0.0 + 11 +16562.5 + 21 +12150.0 + 31 +0.0 + 1 +2.12 + 13 +15505.0 + 23 +11975.0 + 33 +0.0 + 14 +17620.0 + 24 +11975.0 + 34 +0.0 + 0 +TEXT + 5 +3340 + 8 +BEMASSUNG + 10 +11410.0 + 20 +12165.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3341 + 8 +BEMASSUNG + 10 +14815.0 + 20 +12165.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3342 + 8 +BEMASSUNG + 10 +15265.0 + 20 +12165.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3343 + 8 +BEMASSUNG + 10 +16775.0 + 20 +12165.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3344 + 8 +BEMASSUNG + 10 +9660.0 + 20 +13655.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3345 + 8 +BEMASSUNG + 10 +8545.0 + 20 +11432.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3346 + 8 +BEMASSUNG + 10 +8545.0 + 20 +13587.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3347 + 8 +BEMASSUNG + 10 +13385.0 + 20 +12657.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +3348 + 8 +BEMASSUNG + 10 +13385.0 + 20 +13777.360287 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +DIMENSION + 5 +3349 + 8 +BEMASSUNG + 2 +*D153 + 10 +16955.0 + 20 +13500.0 + 30 +0.0 + 11 +16780.0 + 21 +11120.0 + 31 +0.0 + 70 + 128 + 1 +3.88 + 13 +17360.0 + 23 +9625.0 + 33 +0.0 + 14 +17360.0 + 24 +13500.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +334A + 8 +BEMASSUNG + 2 +*D154 + 10 +16850.0 + 20 +15490.0 + 30 +0.0 + 11 +16675.0 + 21 +15755.0 + 31 +0.0 + 70 + 128 + 1 +13 + 13 +16120.0 + 23 +15635.0 + 33 +0.0 + 14 +16120.0 + 24 +15490.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +334B + 8 +BEMASSUNG + 2 +*D166 + 10 +16850.0 + 20 +14995.0 + 30 +0.0 + 11 +16675.0 + 21 +15235.0 + 31 +0.0 + 70 + 128 + 1 +12 + 13 +15740.0 + 23 +15120.0 + 33 +0.0 + 14 +16110.0 + 24 +14995.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +334C + 8 +BEMASSUNG + 2 +*D167 + 10 +16850.0 + 20 +13975.0 + 30 +0.0 + 11 +16675.0 + 21 +14595.0 + 31 +0.0 + 70 + 128 + 1 +1.01 + 13 +16110.0 + 23 +14995.0 + 33 +0.0 + 14 +16125.0 + 24 +13975.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +334D + 8 +BEMASSUNG + 2 +*D155 + 10 +16850.0 + 20 +13865.0 + 30 +0.0 + 11 +16675.0 + 21 +14100.0 + 31 +0.0 + 70 + 128 + 1 +12 + 13 +16125.0 + 23 +13975.0 + 33 +0.0 + 14 +16120.0 + 24 +13865.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +334E + 8 +BEMASSUNG + 2 +*D156 + 10 +16105.0 + 20 +14495.0 + 30 +0.0 + 11 +15925.0 + 21 +14670.0 + 31 +0.0 + 1 +36 + 13 +15745.0 + 23 +13980.0 + 33 +0.0 + 14 +16105.0 + 24 +13980.0 + 34 +0.0 + 0 +DIMENSION + 5 +334F + 8 +BEMASSUNG + 2 +*D161 + 10 +21880.0 + 20 +15250.0 + 30 +0.0 + 11 +21705.0 + 21 +15390.0 + 31 +0.0 + 70 + 128 + 1 +37 + 13 +21235.0 + 23 +15635.0 + 33 +0.0 + 14 +21235.0 + 24 +15250.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3350 + 8 +BEMASSUNG + 2 +*D159 + 10 +21880.0 + 20 +14245.0 + 30 +0.0 + 11 +21705.0 + 21 +14915.0 + 31 +0.0 + 70 + 128 + 1 +1.01 + 13 +21235.0 + 23 +15250.0 + 33 +0.0 + 14 +21225.0 + 24 +14245.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3351 + 8 +BEMASSUNG + 2 +*D160 + 10 +21880.0 + 20 +14045.0 + 30 +0.0 + 11 +21705.0 + 21 +14390.0 + 31 +0.0 + 70 + 128 + 1 +20 + 13 +21225.0 + 23 +14245.0 + 33 +0.0 + 14 +21560.0 + 24 +14045.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3352 + 8 +BEMASSUNG + 2 +*D158 + 10 +21880.0 + 20 +13915.0 + 30 +0.0 + 11 +21705.0 + 21 +13715.0 + 31 +0.0 + 70 + 128 + 1 +12 + 13 +21560.0 + 23 +14045.0 + 33 +0.0 + 14 +21565.0 + 24 +13915.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3353 + 8 +BEMASSUNG + 2 +*D157 + 10 +21880.0 + 20 +9625.0 + 30 +0.0 + 11 +21705.0 + 21 +11770.0 + 31 +0.0 + 1 +4.30 + 13 +21565.0 + 23 +13915.0 + 33 +0.0 + 14 +21855.0 + 24 +9625.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3354 + 8 +BEMASSUNG + 10 +21705.0 + 20 +13820.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3355 + 8 +BEMASSUNG + 10 +21705.0 + 20 +15525.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +3356 + 8 +BEMASSUNG + 2 +*D164 + 10 +21565.0 + 20 +12880.0 + 30 +0.0 + 11 +21380.0 + 21 +13055.0 + 31 +0.0 + 70 + 128 + 1 +32 + 13 +21235.0 + 23 +13920.0 + 33 +0.0 + 14 +21565.0 + 24 +13920.0 + 34 +0.0 + 0 +DIMENSION + 5 +3357 + 8 +BEMASSUNG + 2 +*D163 + 10 +22455.0 + 20 +12880.0 + 30 +0.0 + 11 +22140.0 + 21 +13055.0 + 31 +0.0 + 70 + 128 + 1 +88 + 13 +21565.0 + 23 +13920.0 + 33 +0.0 + 14 +22455.0 + 24 +13925.0 + 34 +0.0 + 0 +DIMENSION + 5 +3358 + 8 +BEMASSUNG + 2 +*D162 + 10 +22850.0 + 20 +12880.0 + 30 +0.0 + 11 +22652.5 + 21 +13055.0 + 31 +0.0 + 1 +40 + 13 +22455.0 + 23 +13925.0 + 33 +0.0 + 14 +22850.0 + 24 +12875.0 + 34 +0.0 + 0 +TEXT + 5 +3359 + 8 +BEMASSUNG + 10 +16010.0 + 20 +14710.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +335A + 8 +BEMASSUNG + 10 +22275.0 + 20 +13100.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +335B + 8 +BEMASSUNG + 10 +21475.0 + 20 +13110.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +335C + 8 +BEMASSUNG + 10 +16775.0 + 20 +11355.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +335D + 8 +BEMASSUNG + 10 +16665.0 + 20 +14210.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +335E + 8 +BEMASSUNG + 10 +14785.0 + 20 +14980.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +335F + 8 +BEMASSUNG + 10 +16665.0 + 20 +15355.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3360 + 8 +BEMASSUNG + 10 +16665.0 + 20 +15860.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +3361 + 8 +BEMASSUNG + 2 +*D168 + 10 +15005.0 + 20 +15115.0 + 30 +0.0 + 11 +14815.0 + 21 +14875.0 + 31 +0.0 + 70 + 128 + 1 +36 + 13 +15005.0 + 23 +15485.0 + 33 +0.0 + 14 +15005.0 + 24 +15115.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3362 + 8 +BEMASSUNG + 2 +*D169 + 10 +7735.0 + 20 +6000.0 + 30 +0.0 + 11 +6367.5 + 21 +6175.0 + 31 +0.0 + 1 +2.74 + 13 +5000.0 + 23 +9250.0 + 33 +0.0 + 14 +7735.0 + 24 +9250.0 + 34 +0.0 + 0 +DIMENSION + 5 +3363 + 8 +BEMASSUNG + 2 +*D170 + 10 +8750.0 + 20 +6000.0 + 30 +0.0 + 11 +8242.5 + 21 +6175.0 + 31 +0.0 + 1 +1.01 + 13 +7735.0 + 23 +9250.0 + 33 +0.0 + 14 +8750.0 + 24 +9275.0 + 34 +0.0 + 0 +DIMENSION + 5 +3364 + 8 +BEMASSUNG + 2 +*D171 + 10 +9865.0 + 20 +6000.0 + 30 +0.0 + 11 +9307.5 + 21 +6175.0 + 31 +0.0 + 1 +1.11 + 13 +8750.0 + 23 +9275.0 + 33 +0.0 + 14 +9865.0 + 24 +9460.0 + 34 +0.0 + 0 +DIMENSION + 5 +3365 + 8 +BEMASSUNG + 2 +*D172 + 10 +11240.0 + 20 +6000.0 + 30 +0.0 + 11 +10552.5 + 21 +6175.0 + 31 +0.0 + 1 +1.38 + 13 +9865.0 + 23 +9460.0 + 33 +0.0 + 14 +11240.0 + 24 +9435.0 + 34 +0.0 + 0 +DIMENSION + 5 +3366 + 8 +BEMASSUNG + 2 +*D173 + 10 +16110.0 + 20 +6000.0 + 30 +0.0 + 11 +13675.0 + 21 +6175.0 + 31 +0.0 + 1 +4.86 + 13 +11240.0 + 23 +9435.0 + 33 +0.0 + 14 +16110.0 + 24 +9380.0 + 34 +0.0 + 0 +DIMENSION + 5 +3367 + 8 +BEMASSUNG + 2 +*D174 + 10 +17370.0 + 20 +6000.0 + 30 +0.0 + 11 +16740.0 + 21 +6175.0 + 31 +0.0 + 1 +1.26 + 13 +16110.0 + 23 +9380.0 + 33 +0.0 + 14 +17370.0 + 24 +9460.0 + 34 +0.0 + 0 +DIMENSION + 5 +3368 + 8 +BEMASSUNG + 2 +*D175 + 10 +18495.0 + 20 +6000.0 + 30 +0.0 + 11 +17932.5 + 21 +6175.0 + 31 +0.0 + 1 +1.11 + 13 +17370.0 + 23 +9460.0 + 33 +0.0 + 14 +18495.0 + 24 +9420.0 + 34 +0.0 + 0 +DIMENSION + 5 +3369 + 8 +BEMASSUNG + 2 +*D176 + 10 +20370.0 + 20 +6000.0 + 30 +0.0 + 11 +19432.5 + 21 +6175.0 + 31 +0.0 + 1 +1.88 + 13 +18495.0 + 23 +9420.0 + 33 +0.0 + 14 +20370.0 + 24 +9390.0 + 34 +0.0 + 0 +DIMENSION + 5 +336A + 8 +BEMASSUNG + 2 +*D177 + 10 +21370.0 + 20 +6000.0 + 30 +0.0 + 11 +20870.0 + 21 +6175.0 + 31 +0.0 + 1 +99 + 13 +20370.0 + 23 +9390.0 + 33 +0.0 + 14 +21370.0 + 24 +9355.0 + 34 +0.0 + 0 +DIMENSION + 5 +336B + 8 +BEMASSUNG + 2 +*D178 + 10 +21870.0 + 20 +6000.0 + 30 +0.0 + 11 +21620.0 + 21 +6175.0 + 31 +0.0 + 1 +51 + 13 +21370.0 + 23 +9355.0 + 33 +0.0 + 14 +21870.0 + 24 +9360.0 + 34 +0.0 + 0 +DIMENSION + 5 +336C + 8 +BEMASSUNG + 2 +*D179 + 10 +23240.0 + 20 +6000.0 + 30 +0.0 + 11 +22555.0 + 21 +6175.0 + 31 +0.0 + 1 +1.36 + 13 +21870.0 + 23 +9360.0 + 33 +0.0 + 14 +23240.0 + 24 +9370.0 + 34 +0.0 + 0 +DIMENSION + 5 +336D + 8 +BEMASSUNG + 2 +*D180 + 10 +25375.0 + 20 +6000.0 + 30 +0.0 + 11 +24307.5 + 21 +6175.0 + 31 +0.0 + 1 +2.13 + 13 +23240.0 + 23 +9370.0 + 33 +0.0 + 14 +25375.0 + 24 +9440.0 + 34 +0.0 + 0 +DIMENSION + 5 +336E + 8 +BEMASSUNG + 2 +*D181 + 10 +26740.0 + 20 +6000.0 + 30 +0.0 + 11 +26057.5 + 21 +6175.0 + 31 +0.0 + 1 +1.36 + 13 +25375.0 + 23 +9440.0 + 33 +0.0 + 14 +26740.0 + 24 +9330.0 + 34 +0.0 + 0 +DIMENSION + 5 +336F + 8 +BEMASSUNG + 2 +*D182 + 10 +5365.0 + 20 +5300.0 + 30 +0.0 + 11 +5182.5 + 21 +5475.0 + 31 +0.0 + 1 +36 + 13 +5000.0 + 23 +9250.0 + 33 +0.0 + 14 +5365.0 + 24 +9250.0 + 34 +0.0 + 0 +DIMENSION + 5 +3370 + 8 +BEMASSUNG + 2 +*D183 + 10 +9375.0 + 20 +5300.0 + 30 +0.0 + 11 +7370.0 + 21 +5475.0 + 31 +0.0 + 1 +4.01 + 13 +5365.0 + 23 +9250.0 + 33 +0.0 + 14 +9375.0 + 24 +9645.0 + 34 +0.0 + 0 +DIMENSION + 5 +3371 + 8 +BEMASSUNG + 2 +*D194 + 10 +9750.0 + 20 +5300.0 + 30 +0.0 + 11 +9562.5 + 21 +5475.0 + 31 +0.0 + 70 + 128 + 1 +36 + 13 +9375.0 + 23 +9645.0 + 33 +0.0 + 14 +9750.0 + 24 +9635.0 + 34 +0.0 + 0 +DIMENSION + 5 +3372 + 8 +BEMASSUNG + 2 +*D184 + 10 +14125.0 + 20 +5300.0 + 30 +0.0 + 11 +11937.5 + 21 +5475.0 + 31 +0.0 + 1 +4.38 + 13 +9750.0 + 23 +9635.0 + 33 +0.0 + 14 +14125.0 + 24 +9650.0 + 34 +0.0 + 0 +DIMENSION + 5 +3373 + 8 +BEMASSUNG + 2 +*D185 + 10 +14500.0 + 20 +5300.0 + 30 +0.0 + 11 +14312.5 + 21 +5475.0 + 31 +0.0 + 1 +36 + 13 +14125.0 + 23 +9650.0 + 33 +0.0 + 14 +14500.0 + 24 +9660.0 + 34 +0.0 + 0 +DIMENSION + 5 +3374 + 8 +BEMASSUNG + 2 +*D186 + 10 +17630.0 + 20 +5300.0 + 30 +0.0 + 11 +16065.0 + 21 +5475.0 + 31 +0.0 + 1 +3.13 + 13 +14500.0 + 23 +9660.0 + 33 +0.0 + 14 +17630.0 + 24 +9660.0 + 34 +0.0 + 0 +DIMENSION + 5 +3375 + 8 +BEMASSUNG + 2 +*D187 + 10 +18000.0 + 20 +5300.0 + 30 +0.0 + 11 +17815.0 + 21 +5475.0 + 31 +0.0 + 1 +36 + 13 +17630.0 + 23 +9660.0 + 33 +0.0 + 14 +18000.0 + 24 +9630.0 + 34 +0.0 + 0 +DIMENSION + 5 +3376 + 8 +BEMASSUNG + 2 +*D188 + 10 +20870.0 + 20 +5300.0 + 30 +0.0 + 11 +19435.0 + 21 +5475.0 + 31 +0.0 + 1 +2.88 + 13 +18000.0 + 23 +9630.0 + 33 +0.0 + 14 +20870.0 + 24 +9630.0 + 34 +0.0 + 0 +DIMENSION + 5 +3377 + 8 +BEMASSUNG + 2 +*D189 + 10 +21240.0 + 20 +5300.0 + 30 +0.0 + 11 +21055.0 + 21 +5475.0 + 31 +0.0 + 1 +36 + 13 +20870.0 + 23 +9630.0 + 33 +0.0 + 14 +21240.0 + 24 +9660.0 + 34 +0.0 + 0 +DIMENSION + 5 +3378 + 8 +BEMASSUNG + 2 +*D190 + 10 +22850.0 + 20 +5300.0 + 30 +0.0 + 11 +22045.0 + 21 +5475.0 + 31 +0.0 + 1 +1.61 + 13 +21240.0 + 23 +9660.0 + 33 +0.0 + 14 +22850.0 + 24 +9645.0 + 34 +0.0 + 0 +DIMENSION + 5 +3379 + 8 +BEMASSUNG + 2 +*D193 + 10 +22975.0 + 20 +5300.0 + 30 +0.0 + 11 +23095.0 + 21 +5475.0 + 31 +0.0 + 70 + 128 + 1 +12 + 13 +22850.0 + 23 +9645.0 + 33 +0.0 + 14 +22975.0 + 24 +9650.0 + 34 +0.0 + 0 +DIMENSION + 5 +337A + 8 +BEMASSUNG + 2 +*D191 + 10 +26375.0 + 20 +5300.0 + 30 +0.0 + 11 +24675.0 + 21 +5475.0 + 31 +0.0 + 1 +3.40 + 13 +22975.0 + 23 +9650.0 + 33 +0.0 + 14 +26375.0 + 24 +9670.0 + 34 +0.0 + 0 +DIMENSION + 5 +337B + 8 +BEMASSUNG + 2 +*D192 + 10 +26740.0 + 20 +5300.0 + 30 +0.0 + 11 +26557.5 + 21 +5475.0 + 31 +0.0 + 1 +36 + 13 +26375.0 + 23 +9670.0 + 33 +0.0 + 14 +26740.0 + 24 +9690.0 + 34 +0.0 + 0 +TEXT + 5 +337C + 8 +BEMASSUNG + 10 +13900.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +337D + 8 +BEMASSUNG + 10 +10780.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +337E + 8 +BEMASSUNG + 10 +9485.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +337F + 8 +BEMASSUNG + 10 +18125.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3380 + 8 +BEMASSUNG + 10 +9650.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3381 + 8 +BEMASSUNG + 10 +12185.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3382 + 8 +BEMASSUNG + 10 +14410.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3383 + 8 +BEMASSUNG + 10 +16275.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3384 + 8 +BEMASSUNG + 10 +17915.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3385 + 8 +BEMASSUNG + 10 +19675.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3386 + 8 +BEMASSUNG + 10 +19640.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3387 + 8 +BEMASSUNG + 10 +22745.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3388 + 8 +BEMASSUNG + 10 +24530.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3389 + 8 +BEMASSUNG + 10 +26255.0 + 20 +6185.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +338A + 8 +BEMASSUNG + 10 +21140.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +338B + 8 +BEMASSUNG + 10 +26655.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +338C + 8 +BEMASSUNG + 10 +5265.0 + 20 +5510.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +338D + 8 +BEMASSUNG + 2 +*D196 + 10 +5855.0 + 20 +8070.0 + 30 +0.0 + 11 +5275.0 + 21 +8245.0 + 31 +0.0 + 70 + 128 + 1 +85 + 13 +4990.0 + 23 +9300.0 + 33 +0.0 + 14 +5855.0 + 24 +9300.0 + 34 +0.0 + 0 +DIMENSION + 5 +338E + 8 +BEMASSUNG + 2 +*D195 + 10 +8855.0 + 20 +8070.0 + 30 +0.0 + 11 +7630.0 + 21 +8245.0 + 31 +0.0 + 70 + 128 + 1 +3.00 + 13 +5855.0 + 23 +9300.0 + 33 +0.0 + 14 +8855.0 + 24 +8125.0 + 34 +0.0 + 0 +DIMENSION + 5 +338F + 8 +BEMASSUNG + 2 +*D197 + 10 +2800.0 + 20 +7645.0 + 30 +0.0 + 11 +2625.0 + 21 +8447.5 + 31 +0.0 + 1 +1.60 + 13 +5000.0 + 23 +9250.0 + 33 +0.0 + 14 +5000.0 + 24 +7645.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3390 + 8 +BEMASSUNG + 10 +2610.0 + 20 +8640.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +DIMENSION + 5 +3391 + 8 +BEMASSUNG + 2 +*D199 + 10 +26045.0 + 20 +8105.0 + 30 +0.0 + 11 +24845.0 + 21 +8280.0 + 31 +0.0 + 70 + 128 + 1 +3.00 + 13 +23030.0 + 23 +8095.0 + 33 +0.0 + 14 +26045.0 + 24 +8095.0 + 34 +0.0 + 0 +DIMENSION + 5 +3392 + 8 +BEMASSUNG + 2 +*D198 + 10 +26745.0 + 20 +8105.0 + 30 +0.0 + 11 +26395.0 + 21 +8280.0 + 31 +0.0 + 1 +70 + 13 +26045.0 + 23 +8095.0 + 33 +0.0 + 14 +26745.0 + 24 +9300.0 + 34 +0.0 + 0 +DIMENSION + 5 +3393 + 8 +BEMASSUNG + 2 +*D200 + 10 +28940.0 + 20 +7645.0 + 30 +0.0 + 11 +28765.0 + 21 +8450.0 + 31 +0.0 + 1 +1.60 + 13 +26040.0 + 23 +9255.0 + 33 +0.0 + 14 +26040.0 + 24 +7645.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3394 + 8 +BEMASSUNG + 10 +28735.0 + 20 +8665.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3395 + 8 +LEGENDE-70 + 10 +12585.0 + 20 +17620.0 + 30 +0.0 + 40 +350.0 + 1 +D3 + 41 +0.75 + 7 +STANDART + 0 +CIRCLE + 5 +3396 + 8 +DETAILS + 10 +11740.0 + 20 +17320.0 + 30 +0.0 + 40 +705.0 + 0 +CIRCLE + 5 +3397 + 8 +DETAILS + 10 +26645.0 + 20 +14310.0 + 30 +0.0 + 40 +705.0 + 0 +TEXT + 5 +3398 + 8 +LEGENDE-70 + 10 +34240.0 + 20 +23545.0 + 30 +0.0 + 40 +350.0 + 1 +LEGENDE + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +3399 + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37C1 + 8 +LEGENDE + 10 +34220.0 + 20 +22930.0 + 30 +0.0 + 0 +VERTEX + 5 +37C2 + 8 +LEGENDE + 10 +34970.0 + 20 +22930.0 + 30 +0.0 + 0 +VERTEX + 5 +37C3 + 8 +LEGENDE + 10 +34970.0 + 20 +22430.0 + 30 +0.0 + 0 +VERTEX + 5 +37C4 + 8 +LEGENDE + 10 +34220.0 + 20 +22430.0 + 30 +0.0 + 0 +SEQEND + 5 +37C5 + 8 +LEGENDE + 0 +POLYLINE + 5 +339F + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37C6 + 8 +LEGENDE + 10 +34220.0 + 20 +21930.0 + 30 +0.0 + 0 +VERTEX + 5 +37C7 + 8 +LEGENDE + 10 +34970.0 + 20 +21930.0 + 30 +0.0 + 0 +VERTEX + 5 +37C8 + 8 +LEGENDE + 10 +34970.0 + 20 +21430.0 + 30 +0.0 + 0 +VERTEX + 5 +37C9 + 8 +LEGENDE + 10 +34220.0 + 20 +21430.0 + 30 +0.0 + 0 +SEQEND + 5 +37CA + 8 +LEGENDE + 0 +POLYLINE + 5 +33A5 + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37CB + 8 +LEGENDE + 10 +34220.0 + 20 +20930.0 + 30 +0.0 + 0 +VERTEX + 5 +37CC + 8 +LEGENDE + 10 +34970.0 + 20 +20930.0 + 30 +0.0 + 0 +VERTEX + 5 +37CD + 8 +LEGENDE + 10 +34970.0 + 20 +20430.0 + 30 +0.0 + 0 +VERTEX + 5 +37CE + 8 +LEGENDE + 10 +34220.0 + 20 +20430.0 + 30 +0.0 + 0 +SEQEND + 5 +37CF + 8 +LEGENDE + 0 +POLYLINE + 5 +33AB + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37D0 + 8 +LEGENDE + 10 +34220.0 + 20 +19930.0 + 30 +0.0 + 0 +VERTEX + 5 +37D1 + 8 +LEGENDE + 10 +34970.0 + 20 +19930.0 + 30 +0.0 + 0 +VERTEX + 5 +37D2 + 8 +LEGENDE + 10 +34970.0 + 20 +19430.0 + 30 +0.0 + 0 +VERTEX + 5 +37D3 + 8 +LEGENDE + 10 +34220.0 + 20 +19430.0 + 30 +0.0 + 0 +SEQEND + 5 +37D4 + 8 +LEGENDE + 0 +INSERT + 5 +33B1 + 8 +SCHRAFFUR-MAUER + 2 +*X202 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +33B2 + 8 +SCHRAFFUR-MAUER + 2 +*X203 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +33B3 + 8 +SCHRAFFUR-MAUER + 2 +*X204 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +300.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +33B4 + 8 +SCHRAFFUR-MAUER + 2 +*X205 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI37,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +TEXT + 5 +33B5 + 8 +LEGENDE-35 + 10 +35465.0 + 20 +22540.0 + 30 +0.0 + 40 +175.0 + 1 +DIN 105 Mz-20-1.8-NF + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33B6 + 8 +LEGENDE-35 + 10 +35450.0 + 20 +21550.0 + 30 +0.0 + 40 +175.0 + 1 +DIN 105 KHLz-20-1.8-NF + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33B7 + 8 +LEGENDE-35 + 10 +35465.0 + 20 +19530.0 + 30 +0.0 + 40 +175.0 + 1 +DIN 4109 LEICHTE TRENNWAND + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33B8 + 8 +LEGENDE-35 + 10 +35450.0 + 20 +20535.0 + 30 +0.0 + 40 +175.0 + 1 +MINERALFASERDMMUNG + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33B9 + 8 +LEGENDE-35 + 10 +34220.0 + 20 +17470.0 + 30 +0.0 + 40 +175.0 + 1 +TRHHE: + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33BA + 8 +LEGENDE-35 + 10 +34225.0 + 20 +16970.0 + 30 +0.0 + 40 +175.0 + 1 +FENSTERHHE: + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33BB + 8 +LEGENDE-35 + 10 +34225.0 + 20 +16470.0 + 30 +0.0 + 40 +175.0 + 1 +BRSTUNGSHHE: + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33BC + 8 +LEGENDE-35 + 10 +34225.0 + 20 +16040.0 + 30 +0.0 + 40 +175.0 + 1 +TREPPE: + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33BD + 8 +LEGENDE-70 + 10 +32670.0 + 20 +14005.0 + 30 +0.0 + 40 +350.0 + 1 +AUFBAU AUSSENWAND / SCHORNSTEIN + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +33BE + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37D5 + 8 +MAUERWERK + 10 +38575.0 + 20 +12625.0 + 30 +0.0 + 0 +VERTEX + 5 +37D6 + 8 +MAUERWERK + 10 +39250.0 + 20 +12625.0 + 30 +0.0 + 0 +VERTEX + 5 +37D7 + 8 +MAUERWERK + 10 +39250.0 + 20 +11950.0 + 30 +0.0 + 0 +VERTEX + 5 +37D8 + 8 +MAUERWERK + 10 +38575.0 + 20 +11950.0 + 30 +0.0 + 0 +SEQEND + 5 +37D9 + 8 +MAUERWERK + 0 +POLYLINE + 5 +33C4 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37DA + 8 +MAUERWERK + 10 +38575.0 + 20 +11375.0 + 30 +0.0 + 0 +VERTEX + 5 +37DB + 8 +MAUERWERK + 10 +39250.0 + 20 +11375.0 + 30 +0.0 + 0 +VERTEX + 5 +37DC + 8 +MAUERWERK + 10 +39250.0 + 20 +10700.0 + 30 +0.0 + 0 +VERTEX + 5 +37DD + 8 +MAUERWERK + 10 +38575.0 + 20 +10700.0 + 30 +0.0 + 0 +SEQEND + 5 +37DE + 8 +MAUERWERK + 0 +POLYLINE + 5 +33CA + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37DF + 8 +MAUERWERK + 10 +38570.0 + 20 +11950.0 + 30 +0.0 + 0 +VERTEX + 5 +37E0 + 8 +MAUERWERK + 10 +39250.0 + 20 +12630.0 + 30 +0.0 + 0 +SEQEND + 5 +37E1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +33CE + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37E2 + 8 +MAUERWERK + 10 +38570.0 + 20 +12630.0 + 30 +0.0 + 0 +VERTEX + 5 +37E3 + 8 +MAUERWERK + 10 +39250.0 + 20 +11950.0 + 30 +0.0 + 0 +SEQEND + 5 +37E4 + 8 +MAUERWERK + 0 +POLYLINE + 5 +33D2 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37E5 + 8 +MAUERWERK + 10 +38575.0 + 20 +11380.0 + 30 +0.0 + 0 +VERTEX + 5 +37E6 + 8 +MAUERWERK + 10 +39250.0 + 20 +10705.0 + 30 +0.0 + 0 +SEQEND + 5 +37E7 + 8 +MAUERWERK + 0 +POLYLINE + 5 +33D6 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37E8 + 8 +MAUERWERK + 10 +38575.0 + 20 +10705.0 + 30 +0.0 + 0 +VERTEX + 5 +37E9 + 8 +MAUERWERK + 10 +39245.0 + 20 +11375.0 + 30 +0.0 + 0 +SEQEND + 5 +37EA + 8 +MAUERWERK + 0 +POLYLINE + 5 +33DA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37EB + 8 +0 + 10 +32800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +37EC + 8 +0 + 10 +32800.0 + 20 +3000.0 + 30 +0.0 + 0 +VERTEX + 5 +37ED + 8 +0 + 10 +41800.0 + 20 +3000.0 + 30 +0.0 + 0 +SEQEND + 5 +37EE + 8 +0 + 0 +DIMENSION + 5 +33DF + 8 +BEMASSUNG + 2 +*D206 + 10 +33895.0 + 20 +5405.0 + 30 +0.0 + 11 +33607.5 + 21 +5580.0 + 31 +0.0 + 1 +11 + 13 +33320.0 + 23 +6755.0 + 33 +0.0 + 14 +33895.0 + 24 +6755.0 + 34 +0.0 + 0 +DIMENSION + 5 +33E0 + 8 +BEMASSUNG + 2 +*D207 + 10 +34200.0 + 20 +5405.0 + 30 +0.0 + 11 +34047.5 + 21 +5580.0 + 31 +0.0 + 1 +6 + 13 +33895.0 + 23 +6755.0 + 33 +0.0 + 14 +34200.0 + 24 +6775.0 + 34 +0.0 + 0 +DIMENSION + 5 +33E1 + 8 +BEMASSUNG + 2 +*D208 + 10 +34600.0 + 20 +5405.0 + 30 +0.0 + 11 +34400.0 + 21 +5580.0 + 31 +0.0 + 1 +8 + 13 +34200.0 + 23 +6775.0 + 33 +0.0 + 14 +34600.0 + 24 +6775.0 + 34 +0.0 + 0 +DIMENSION + 5 +33E2 + 8 +BEMASSUNG + 2 +*D209 + 10 +36425.0 + 20 +5405.0 + 30 +0.0 + 11 +35512.5 + 21 +5580.0 + 31 +0.0 + 1 +36 + 13 +34600.0 + 23 +6775.0 + 33 +0.0 + 14 +36425.0 + 24 +6755.0 + 34 +0.0 + 0 +DIMENSION + 5 +33E3 + 8 +BEMASSUNG + 2 +*D210 + 10 +36505.0 + 20 +5405.0 + 30 +0.0 + 11 +36580.0 + 21 +5580.0 + 31 +0.0 + 70 + 128 + 1 +1 + 13 +36425.0 + 23 +6755.0 + 33 +0.0 + 14 +36505.0 + 24 +6755.0 + 34 +0.0 + 0 +TEXT + 5 +33E4 + 8 +BEMASSUNG + 10 +33710.0 + 20 +5610.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33E5 + 8 +BEMASSUNG + 10 +35655.0 + 20 +5610.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33E6 + 8 +BEMASSUNG + 10 +36650.0 + 20 +5610.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +DIMENSION + 5 +33E7 + 8 +BEMASSUNG + 2 +*D211 + 10 +38575.0 + 20 +9155.0 + 30 +0.0 + 11 +38285.0 + 21 +9330.0 + 31 +0.0 + 1 +11 + 13 +37995.0 + 23 +10130.0 + 33 +0.0 + 14 +38575.0 + 24 +10130.0 + 34 +0.0 + 0 +DIMENSION + 5 +33E8 + 8 +BEMASSUNG + 2 +*D212 + 10 +39240.0 + 20 +9155.0 + 30 +0.0 + 11 +38907.5 + 21 +9330.0 + 31 +0.0 + 1 +13 + 13 +38575.0 + 23 +10130.0 + 33 +0.0 + 14 +39240.0 + 24 +10720.0 + 34 +0.0 + 0 +DIMENSION + 5 +33E9 + 8 +BEMASSUNG + 2 +*D213 + 10 +39835.0 + 20 +9155.0 + 30 +0.0 + 11 +39537.5 + 21 +9330.0 + 31 +0.0 + 1 +11 + 13 +39240.0 + 23 +10720.0 + 33 +0.0 + 14 +39835.0 + 24 +10125.0 + 34 +0.0 + 0 +DIMENSION + 5 +33EA + 8 +BEMASSUNG + 2 +*D214 + 10 +40740.0 + 20 +12625.0 + 30 +0.0 + 11 +40565.0 + 21 +12940.0 + 31 +0.0 + 1 +12 + 13 +39815.0 + 23 +13255.0 + 33 +0.0 + 14 +39815.0 + 24 +12625.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +33EB + 8 +BEMASSUNG + 2 +*D215 + 10 +40740.0 + 20 +11955.0 + 30 +0.0 + 11 +40565.0 + 21 +12290.0 + 31 +0.0 + 1 +13 + 13 +39815.0 + 23 +12625.0 + 33 +0.0 + 14 +39250.0 + 24 +11955.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +33EC + 8 +BEMASSUNG + 2 +*D216 + 10 +40740.0 + 20 +11365.0 + 30 +0.0 + 11 +40565.0 + 21 +11660.0 + 31 +0.0 + 1 +11 + 13 +39250.0 + 23 +11955.0 + 33 +0.0 + 14 +39240.0 + 24 +11365.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +33ED + 8 +BEMASSUNG + 2 +*D217 + 10 +40740.0 + 20 +10705.0 + 30 +0.0 + 11 +40565.0 + 21 +11035.0 + 31 +0.0 + 1 +13 + 13 +39240.0 + 23 +11365.0 + 33 +0.0 + 14 +39240.0 + 24 +10705.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +33EE + 8 +BEMASSUNG + 10 +40515.0 + 20 +13090.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33EF + 8 +BEMASSUNG + 10 +38395.0 + 20 +9375.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33F0 + 8 +BEMASSUNG + 10 +40515.0 + 20 +12420.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33F1 + 8 +BEMASSUNG + 10 +40515.0 + 20 +11755.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33F2 + 8 +BEMASSUNG + 10 +40515.0 + 20 +11160.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 50 +90.0 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33F3 + 8 +BEMASSUNG + 10 +39030.0 + 20 +9375.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +33F4 + 8 +BEMASSUNG + 10 +39625.0 + 20 +9375.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +INSERT + 5 +33F5 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X218 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +750.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +33F6 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X219 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +6500.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +33F7 + 8 +SCHRAFFUR-DAEMMUNG + 2 +*X220 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +2000.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +33F8 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37EF + 8 +DETAILS + 10 +32640.0 + 20 +13235.0 + 30 +0.0 + 0 +VERTEX + 5 +37F0 + 8 +DETAILS + 10 +37145.0 + 20 +13235.0 + 30 +0.0 + 0 +SEQEND + 5 +37F1 + 8 +DETAILS + 0 +POLYLINE + 5 +33FC + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37F2 + 8 +DETAILS + 10 +32640.0 + 20 +6775.0 + 30 +0.0 + 0 +VERTEX + 5 +37F3 + 8 +DETAILS + 10 +37145.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +37F4 + 8 +DETAILS + 0 +POLYLINE + 5 +3400 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37F5 + 8 +DETAILS + 10 +37595.0 + 20 +10140.0 + 30 +0.0 + 0 +VERTEX + 5 +37F6 + 8 +DETAILS + 10 +40290.0 + 20 +10140.0 + 30 +0.0 + 0 +SEQEND + 5 +37F7 + 8 +DETAILS + 0 +POLYLINE + 5 +3404 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37F8 + 8 +MAUERWERK + 10 +33325.0 + 20 +13235.0 + 30 +0.0 + 0 +VERTEX + 5 +37F9 + 8 +MAUERWERK + 10 +33325.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +37FA + 8 +MAUERWERK + 0 +POLYLINE + 5 +3408 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +37FB + 8 +MAUERWERK + 10 +33900.0 + 20 +6775.0 + 30 +0.0 + 0 +VERTEX + 5 +37FC + 8 +MAUERWERK + 10 +33900.0 + 20 +13235.0 + 30 +0.0 + 0 +SEQEND + 5 +37FD + 8 +MAUERWERK + 0 +POLYLINE + 5 +340C + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +37FE + 8 +MAUERWERK + 10 +34200.0 + 20 +13235.0 + 30 +0.0 + 0 +VERTEX + 5 +37FF + 8 +MAUERWERK + 10 +34200.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +3800 + 8 +MAUERWERK + 0 +POLYLINE + 5 +3410 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +3801 + 8 +MAUERWERK + 10 +34600.0 + 20 +6775.0 + 30 +0.0 + 0 +VERTEX + 5 +3802 + 8 +MAUERWERK + 10 +34600.0 + 20 +13235.0 + 30 +0.0 + 0 +SEQEND + 5 +3803 + 8 +MAUERWERK + 0 +POLYLINE + 5 +3414 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3804 + 8 +MAUERWERK + 10 +34600.0 + 20 +13235.0 + 30 +0.0 + 0 +VERTEX + 5 +3805 + 8 +MAUERWERK + 10 +34600.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +3806 + 8 +MAUERWERK + 0 +POLYLINE + 5 +3418 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3807 + 8 +MAUERWERK + 10 +36425.0 + 20 +6775.0 + 30 +0.0 + 0 +VERTEX + 5 +3808 + 8 +MAUERWERK + 10 +36425.0 + 20 +13235.0 + 30 +0.0 + 0 +SEQEND + 5 +3809 + 8 +MAUERWERK + 0 +POLYLINE + 5 +341C + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +380A + 8 +MAUERWERK + 10 +36500.0 + 20 +13235.0 + 30 +0.0 + 0 +VERTEX + 5 +380B + 8 +MAUERWERK + 10 +36500.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +380C + 8 +MAUERWERK + 0 +POLYLINE + 5 +3420 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +380D + 8 +MAUERWERK + 10 +36425.0 + 20 +6775.0 + 30 +0.0 + 0 +VERTEX + 5 +380E + 8 +MAUERWERK + 10 +36425.0 + 20 +13235.0 + 30 +0.0 + 0 +SEQEND + 5 +380F + 8 +MAUERWERK + 0 +POLYLINE + 5 +3424 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3810 + 8 +MAUERWERK + 10 +38000.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +3811 + 8 +MAUERWERK + 10 +39825.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +3812 + 8 +MAUERWERK + 10 +39825.0 + 20 +10140.0 + 30 +0.0 + 0 +SEQEND + 5 +3813 + 8 +MAUERWERK + 0 +POLYLINE + 5 +3429 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3814 + 8 +MAUERWERK + 10 +38000.0 + 20 +10140.0 + 30 +0.0 + 0 +VERTEX + 5 +3815 + 8 +MAUERWERK + 10 +38000.0 + 20 +13250.0 + 30 +0.0 + 0 +SEQEND + 5 +3816 + 8 +MAUERWERK + 0 +POLYLINE + 5 +342D + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3817 + 8 +MAUERWERK + 10 +3000.0 + 20 +1980.0 + 30 +0.0 + 0 +VERTEX + 5 +3818 + 8 +MAUERWERK + 10 +3000.0 + 20 +5500.0 + 30 +0.0 + 40 +122.5 + 41 +0.0 + 0 +VERTEX + 5 +3819 + 8 +MAUERWERK + 10 +3000.0 + 20 +5850.0 + 30 +0.0 + 40 +0.0 + 41 +0.0 + 0 +SEQEND + 5 +381A + 8 +MAUERWERK + 0 +POLYLINE + 5 +3432 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +381B + 8 +MAUERWERK + 10 +3000.0 + 20 +1980.0 + 30 +0.0 + 0 +VERTEX + 5 +381C + 8 +MAUERWERK + 10 +3000.0 + 20 +5500.0 + 30 +0.0 + 40 +122.5 + 41 +0.0 + 0 +VERTEX + 5 +381D + 8 +MAUERWERK + 10 +3000.0 + 20 +5850.0 + 30 +0.0 + 40 +0.0 + 41 +0.0 + 0 +SEQEND + 5 +381E + 8 +MAUERWERK + 0 +POLYLINE + 5 +3437 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +381F + 8 +MAUERWERK + 10 +2985.0 + 20 +1995.0 + 30 +0.0 + 0 +VERTEX + 5 +3820 + 8 +MAUERWERK + 10 +6505.0 + 20 +1995.0 + 30 +0.0 + 40 +122.5 + 41 +0.0 + 0 +VERTEX + 5 +3821 + 8 +MAUERWERK + 10 +6855.0 + 20 +1995.0 + 30 +0.0 + 40 +0.0 + 41 +0.0 + 0 +SEQEND + 5 +3822 + 8 +MAUERWERK + 0 +TEXT + 5 +343C + 8 +LEGENDE-70 + 10 +2550.0 + 20 +5330.0 + 30 +0.0 + 40 +350.0 + 1 +Y + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +343D + 8 +LEGENDE-70 + 10 +6625.0 + 20 +1385.0 + 30 +0.0 + 40 +350.0 + 1 +Z + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +343E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3823 + 8 +0 + 10 +37300.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +3824 + 8 +0 + 10 +37300.0 + 20 +3000.0 + 30 +0.0 + 0 +SEQEND + 5 +3825 + 8 +0 + 0 +POLYLINE + 5 +3442 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3826 + 8 +0 + 10 +35050.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +3827 + 8 +0 + 10 +35050.0 + 20 +3000.0 + 30 +0.0 + 0 +SEQEND + 5 +3828 + 8 +0 + 0 +POLYLINE + 5 +3446 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3829 + 8 +0 + 10 +35050.0 + 20 +1000.0 + 30 +0.0 + 0 +VERTEX + 5 +382A + 8 +0 + 10 +41800.0 + 20 +1000.0 + 30 +0.0 + 0 +SEQEND + 5 +382B + 8 +0 + 0 +POLYLINE + 5 +344A + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +382C + 8 +0 + 10 +35050.0 + 20 +2250.0 + 30 +0.0 + 0 +VERTEX + 5 +382D + 8 +0 + 10 +41790.0 + 20 +2250.0 + 30 +0.0 + 0 +SEQEND + 5 +382E + 8 +0 + 0 +POLYLINE + 5 +344E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +382F + 8 +0 + 10 +37300.0 + 20 +2750.0 + 30 +0.0 + 0 +VERTEX + 5 +3830 + 8 +0 + 10 +41800.0 + 20 +2750.0 + 30 +0.0 + 0 +SEQEND + 5 +3831 + 8 +0 + 0 +POLYLINE + 5 +3452 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3832 + 8 +0 + 10 +35050.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +3833 + 8 +0 + 10 +32790.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +3834 + 8 +0 + 0 +POLYLINE + 5 +3456 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3835 + 8 +0 + 10 +35050.0 + 20 +750.0 + 30 +0.0 + 0 +VERTEX + 5 +3836 + 8 +0 + 10 +32790.0 + 20 +750.0 + 30 +0.0 + 0 +SEQEND + 5 +3837 + 8 +0 + 0 +POLYLINE + 5 +345A + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3838 + 8 +0 + 10 +35050.0 + 20 +1000.0 + 30 +0.0 + 0 +VERTEX + 5 +3839 + 8 +0 + 10 +32790.0 + 20 +1000.0 + 30 +0.0 + 0 +SEQEND + 5 +383A + 8 +0 + 0 +POLYLINE + 5 +345E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +383B + 8 +0 + 10 +35050.0 + 20 +1250.0 + 30 +0.0 + 0 +VERTEX + 5 +383C + 8 +0 + 10 +32790.0 + 20 +1250.0 + 30 +0.0 + 0 +SEQEND + 5 +383D + 8 +0 + 0 +POLYLINE + 5 +3462 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +383E + 8 +0 + 10 +35050.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +383F + 8 +0 + 10 +32790.0 + 20 +1500.0 + 30 +0.0 + 0 +SEQEND + 5 +3840 + 8 +0 + 0 +POLYLINE + 5 +3466 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3841 + 8 +0 + 10 +35050.0 + 20 +1750.0 + 30 +0.0 + 0 +VERTEX + 5 +3842 + 8 +0 + 10 +32790.0 + 20 +1750.0 + 30 +0.0 + 0 +SEQEND + 5 +3843 + 8 +0 + 0 +POLYLINE + 5 +346A + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3844 + 8 +0 + 10 +35050.0 + 20 +2000.0 + 30 +0.0 + 0 +VERTEX + 5 +3845 + 8 +0 + 10 +32790.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +3846 + 8 +0 + 0 +POLYLINE + 5 +346E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3847 + 8 +0 + 10 +35050.0 + 20 +2250.0 + 30 +0.0 + 0 +VERTEX + 5 +3848 + 8 +0 + 10 +32790.0 + 20 +2250.0 + 30 +0.0 + 0 +SEQEND + 5 +3849 + 8 +0 + 0 +TEXT + 5 +3472 + 8 +LEGENDE-70 + 10 +37530.0 + 20 +1420.0 + 30 +0.0 + 40 +350.0 + 1 +GRUNDRISS 300/56 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3473 + 8 +LEGENDE-35 + 10 +37530.0 + 20 +485.0 + 30 +0.0 + 40 +175.0 + 1 +Name + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3474 + 8 +LEGENDE-35 + 10 +35640.0 + 20 +485.0 + 30 +0.0 + 40 +175.0 + 1 +001 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3475 + 8 +LEGENDE-35 + 10 +37455.0 + 20 +2375.0 + 30 +0.0 + 40 +175.0 + 1 +MASSTAB 1:50 + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +3476 + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 41 +300.0 + 0 +VERTEX + 5 +384A + 8 +LEGENDE + 10 +20010.0 + 20 +9715.0 + 30 +0.0 + 0 +VERTEX + 5 +384B + 8 +LEGENDE + 10 +20010.0 + 20 +9865.0 + 30 +0.0 + 40 +300.0 + 0 +SEQEND + 5 +384C + 8 +LEGENDE + 0 +POLYLINE + 5 +347A + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +384D + 8 +LEGENDE + 10 +20015.0 + 20 +10150.0 + 30 +0.0 + 0 +VERTEX + 5 +384E + 8 +LEGENDE + 10 +19865.0 + 20 +10300.0 + 30 +0.0 + 0 +VERTEX + 5 +384F + 8 +LEGENDE + 10 +20165.0 + 20 +10300.0 + 30 +0.0 + 0 +SEQEND + 5 +3850 + 8 +LEGENDE + 0 +DIMENSION + 5 +347F + 8 +BEMASSUNG + 2 +*D222 + 10 +18455.0 + 20 +9655.0 + 30 +0.0 + 11 +18280.0 + 21 +9740.0 + 31 +0.0 + 70 + 128 + 1 +3 + 13 +18465.0 + 23 +9625.0 + 33 +0.0 + 14 +18465.0 + 24 +9655.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3480 + 8 +BEMASSUNG + 2 +*D221 + 10 +18455.0 + 20 +10855.0 + 30 +0.0 + 11 +18280.0 + 21 +10255.0 + 31 +0.0 + 12 +100.0 + 22 +0.0 + 32 +0.0 + 1 +1.21 + 13 +18465.0 + 23 +9655.0 + 33 +0.0 + 14 +18455.0 + 24 +10855.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +3481 + 8 +BEMASSUNG + 2 +*D223 + 10 +18455.0 + 20 +15625.0 + 30 +0.0 + 11 +18280.0 + 21 +14745.0 + 31 +0.0 + 12 +10.0 + 22 +0.0 + 32 +0.0 + 1 +1.76 + 13 +18500.0 + 23 +13865.0 + 33 +0.0 + 14 +18500.0 + 24 +15625.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3482 + 8 +BEMASSUNG + 10 +36825.0 + 20 +17460.0 + 30 +0.0 + 40 +175.0 + 1 +2.28 ROH ; 2.16 FERTIG + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3483 + 8 +BEMASSUNG + 10 +36825.0 + 20 +16960.0 + 30 +0.0 + 40 +175.0 + 1 +1.23 NG ; 0.74 KG + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3484 + 8 +BEMASSUNG + 10 +36825.0 + 20 +16460.0 + 30 +0.0 + 40 +175.0 + 1 +1.05 NG ; 1.46 KG + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3485 + 8 +BEMASSUNG + 10 +36835.0 + 20 +16025.0 + 30 +0.0 + 40 +175.0 + 1 +9+9 x 16 /30 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3486 + 8 +BEMASSUNG + 10 +37840.0 + 20 +16070.0 + 30 +0.0 + 40 +125.0 + 1 +7 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3487 + 8 +BEMASSUNG + 10 +38345.0 + 20 +16100.0 + 30 +0.0 + 40 +125.0 + 1 +1 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3488 + 8 +BEMASSUNG + 10 +20190.0 + 20 +9805.0 + 30 +0.0 + 40 +175.0 + 1 ++1.50 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3489 + 8 +BEMASSUNG + 10 +20185.0 + 20 +10190.0 + 30 +0.0 + 40 +175.0 + 1 ++1.61 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +348A + 8 +BEMASSUNG + 10 +20660.0 + 20 +10325.0 + 30 +0.0 + 40 +125.0 + 1 +8 + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +348B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +3851 + 8 +0 + 10 +41050.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +3852 + 8 +0 + 10 +41050.0 + 20 +990.0 + 30 +0.0 + 0 +SEQEND + 5 +3853 + 8 +0 + 0 +TEXT + 5 +348F + 8 +LEGENDE-35 + 10 +41110.0 + 20 +725.0 + 30 +0.0 + 40 +175.0 + 1 +BLATT + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3490 + 8 +LEGENDE-35 + 10 +41345.0 + 20 +335.0 + 30 +0.0 + 40 +175.0 + 1 +1 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3491 + 8 +BEMASSUNG + 10 +20660.0 + 20 +9930.0 + 30 +0.0 + 40 +125.0 + 1 +3 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +3492 + 8 +BEMASSUNG + 10 +20035.0 + 20 +19915.0 + 30 +0.0 + 40 +175.0 + 1 ++0.11 + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +3493 + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +3854 + 8 +LEGENDE + 10 +19865.0 + 20 +19875.0 + 30 +0.0 + 0 +VERTEX + 5 +3855 + 8 +LEGENDE + 10 +19715.0 + 20 +20025.0 + 30 +0.0 + 0 +VERTEX + 5 +3856 + 8 +LEGENDE + 10 +20015.0 + 20 +20025.0 + 30 +0.0 + 0 +SEQEND + 5 +3857 + 8 +LEGENDE + 0 +TEXT + 5 +3498 + 8 +BEMASSUNG + 10 +20040.0 + 20 +19530.0 + 30 +0.0 + 40 +175.0 + 1 +%%p0.00 + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +3499 + 8 +LEGENDE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 41 +300.0 + 0 +VERTEX + 5 +3858 + 8 +LEGENDE + 10 +19860.0 + 20 +19440.0 + 30 +0.0 + 0 +VERTEX + 5 +3859 + 8 +LEGENDE + 10 +19860.0 + 20 +19590.0 + 30 +0.0 + 40 +300.0 + 0 +SEQEND + 5 +385A + 8 +LEGENDE + 0 +TEXT + 5 +349D + 8 +BEMASSUNG + 10 +20510.0 + 20 +20050.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +349E + 8 +BEMASSUNG + 10 +38485.0 + 20 +17580.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +349F + 8 +LEGENDE-35 + 10 +34225.0 + 20 +15640.0 + 30 +0.0 + 40 +175.0 + 1 +TREPPENFENSTERHHE: + 41 +0.75 + 7 +STANDART + 0 +TEXT + 5 +34A0 + 8 +BEMASSUNG + 10 +36825.0 + 20 +15620.0 + 30 +0.0 + 40 +175.0 + 1 +0.74 + 41 +0.75 + 7 +STANDART + 0 +POLYLINE + 5 +34A1 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +385B + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +385C + 8 +0 + 10 +42050.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +385D + 8 +0 + 10 +42050.0 + 20 +29700.0 + 30 +0.0 + 0 +VERTEX + 5 +385E + 8 +0 + 10 +0.0 + 20 +29700.0 + 30 +0.0 + 0 +SEQEND + 5 +385F + 8 +0 + 0 +TEXT + 5 +34A7 + 8 +BEMASSUNG + 10 +23200.0 + 20 +5495.0 + 30 +0.0 + 40 +125.0 + 1 +5 + 41 +0.75 + 7 +STANDART + 0 +VIEWPORT + 5 +328E + 67 + 1 + 8 +0 + 10 +6.790131 + 20 +4.5 + 30 +0.0 + 40 +13.580262 + 41 +9.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 +1.0 +1040 +0.0 +1040 +9.0 +1040 +6.790131 +1040 +4.5 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 + 0 +1070 + 100 +1070 + 1 +1070 + 1 +1070 + 1 +1070 + 0 +1070 + 0 +1070 + 2 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +5.0 +1040 +5.0 +1040 +10.0 +1040 +10.0 +1070 + 0 +1002 +{ +1002 +} +1002 +} + 0 +ENDSEC + 0 +EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft2.dxf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft2.dxf new file mode 100644 index 0000000..28c30f4 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft2.dxf @@ -0,0 +1,118370 @@ + 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 +26430.0 + 20 +14850.0 + 30 +0.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +21025.0 + 20 +14850.0 + 9 +$ORTHOMODE + 70 + 1 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$DRAGMODE + 70 + 2 + 9 +$LTSCALE + 40 +175.0 + 9 +$OSMODE + 70 + 0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +87.5 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +DRAHTANKER + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +1.0 + 9 +$DIMEXO + 40 +1.0 + 9 +$DIMDLI + 40 +3.0 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +0.0 + 9 +$DIMEXE + 40 +0.5 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +87.5 + 9 +$DIMCEN + 40 +-0.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 1 + 9 +$DIMSE2 + 70 + 1 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 +MASSHILFSLINIE + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 0 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 2 + 9 +$DIMALTF + 40 +25.4 + 9 +$DIMLFAC + 40 +1.0 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 1 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +BEMASSUNG + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 2 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +0.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 0 + 9 +$MENU + 1 +acad + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$BLIPMODE + 70 + 1 + 9 +$CHAMFERA + 40 +0.0 + 9 +$CHAMFERB + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2450818.514433 + 9 +$TDUPDATE + 40 +2450818.976785 + 9 +$TDINDWG + 40 +0.011021 + 9 +$TDUSRTIMER + 40 +0.011021 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +8.75 + 9 +$COORDS + 70 + 2 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$ATTDIA + 70 + 0 + 9 +$ATTREQ + 70 + 1 + 9 +$HANDLING + 70 + 1 + 9 +$HANDSEED + 5 +2A68 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSNAME + 2 +PAPIERURSPRUNG + 9 +$UCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 16 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+020 + 20 +1.000000E+020 + 30 +1.000000E+020 + 9 +$PEXTMAX + 10 +-1.000000E+020 + 20 +-1.000000E+020 + 30 +-1.000000E+020 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +12.0 + 20 +9.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 0 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 70 + 3 + 0 +VPORT + 2 +*ACTIVE + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +13215.0 + 22 +8516.664786 + 13 +0.0 + 23 +0.0 + 14 +5.0 + 24 +5.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +17033.329571 + 41 +1.551664 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 1 + 75 + 1 + 76 + 0 + 77 + 0 + 78 + 1 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 70 + 25 + 0 +LTYPE + 2 +CONTINUOUS + 70 + 0 + 3 +Solid Line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 2 +RAND + 70 + 0 + 3 +__ __ . __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +1.75 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +RAND2 + 70 + 0 + 3 +__.__.__.__.__.__.__.__.__.__.__.__.__.__.__.__ + 72 + 65 + 73 + 6 + 40 +0.875 + 49 +0.25 + 49 +-0.125 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +RANDX2 + 70 + 0 + 3 +____ ____ . ____ ____ . ____ ____ . __ + 72 + 65 + 73 + 6 + 40 +3.5 + 49 +1.0 + 49 +-0.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +MITTE + 70 + 0 + 3 +____ _ ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +MITTE2 + 70 + 0 + 3 +___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ + 72 + 65 + 73 + 4 + 40 +1.125 + 49 +0.75 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +MITTEX2 + 70 + 0 + 3 +________ __ ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +4.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +LTYPE + 2 +STRICHPUNKT + 70 + 0 + 3 +__ . __ . __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +1.0 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +STRICHPUNKT2 + 70 + 0 + 3 +_._._._._._._._._._._._._._._._._._._._._._._._ + 72 + 65 + 73 + 4 + 40 +0.5 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +STRICHPUNKTX2 + 70 + 0 + 3 +____ . ____ . ____ . ____ . ____ . __ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +GESTRICHELT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +GESTRICHELT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +GESTRICHELTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ + 72 + 65 + 73 + 2 + 40 +1.5 + 49 +1.0 + 49 +-0.5 + 0 +LTYPE + 2 +GETRENNT + 70 + 0 + 3 +____ . . ____ . . ____ . . ____ . . ____ . . __ + 72 + 65 + 73 + 6 + 40 +1.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +GETRENNT2 + 70 + 0 + 3 +__..__..__..__..__..__..__..__..__..__..__..__. + 72 + 65 + 73 + 6 + 40 +0.625 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +GETRENNTX2 + 70 + 0 + 3 +________ . . ________ . . ________ . . + 72 + 65 + 73 + 6 + 40 +2.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +PUNKT + 70 + 0 + 3 +. . . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +PUNKT2 + 70 + 0 + 3 +............................................... + 72 + 65 + 73 + 2 + 40 +0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +PUNKTX2 + 70 + 0 + 3 +. . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +VERDECKT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +VERDECKT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.1875 + 49 +0.125 + 49 +-0.0625 + 0 +LTYPE + 2 +VERDECKTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ ____ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM + 70 + 0 + 3 +______ __ __ ______ __ __ ______ __ __ + 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 +PHANTOM2 + 70 + 0 + 3 +___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ + 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 +PHANTOMX2 + 70 + 0 + 3 +____________ ____ ____ ____________ + 72 + 65 + 73 + 6 + 40 +5.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 + 22 + 0 +LAYER + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +MAUERWERK + 70 + 0 + 62 + 6 + 6 +CONTINUOUS + 0 +LAYER + 2 +VORSATZSCHALE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +PE-FOLIE + 70 + 0 + 62 + 1 + 6 +GESTRICHELTX2 + 0 +LAYER + 2 +FUNDAMENT + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +BEMASSUNG + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +STUERTZE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +ESTRICH + 70 + 0 + 62 + 4 + 6 +CONTINUOUS + 0 +LAYER + 2 +DECKEN + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DAEMMUNG + 70 + 0 + 62 + 4 + 6 +CONTINUOUS + 0 +LAYER + 2 +TUEREN + 70 + 0 + 62 + 3 + 6 +CONTINUOUS + 0 +LAYER + 2 +ERDBODEN + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHNITTKANTEN + 70 + 0 + 62 + 1 + 6 +GESTRICHELT + 0 +LAYER + 2 +TRENNWAND + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-70 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-35 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DETAILS + 70 + 0 + 62 + 7 + 6 +GESTRICHELTX2 + 0 +LAYER + 2 +DRAHTANKER + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR + 70 + 0 + 62 + 2 + 6 +CONTINUOUS + 0 +LAYER + 2 +DEFPOINTS + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +HOLZ + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHORNSTEIN + 70 + 0 + 62 + 1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 + 1 + 0 +STYLE + 2 +STANDARD + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +87.5 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 + 2 + 0 +UCS + 2 +LOKAL + 70 + 0 + 10 +4125.0 + 20 +5250.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +UCS + 2 +PAPIERURSPRUNG + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 + 1 + 0 +APPID + 2 +ACAD + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 70 + 1 + 0 +DIMSTYLE + 2 +BEMASSUNG + 70 + 0 + 3 + + 4 + + 5 +MASSHILFSLINIE + 6 + + 7 + + 40 +1.0 + 41 +1.0 + 42 +1.0 + 43 +3.0 + 44 +0.5 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 +140 +87.5 +141 +-0.5 +142 +0.0 +143 +25.4 +144 +1.0 +145 +0.0 +146 +1.0 +147 +0.0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 0 + 75 + 1 + 76 + 1 + 77 + 1 + 78 + 8 +170 + 0 +171 + 2 +172 + 1 +173 + 0 +174 + 1 +175 + 0 +176 + 0 +177 + 0 +178 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 8 +0 + 2 +$MODEL_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$MODEL_SPACE + 1 + + 0 +ENDBLK + 5 +74 + 8 +0 + 0 +BLOCK + 67 + 1 + 8 +0 + 2 +$PAPER_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$PAPER_SPACE + 1 + + 0 +ENDBLK + 5 +72 + 67 + 1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +RAHMEN50 + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +RAHMEN50 + 1 + + 0 +POLYLINE + 5 +78 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1FFE + 8 +0 + 10 +1000.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1FFF + 8 +0 + 10 +41800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +2000 + 8 +0 + 10 +41800.0 + 20 +29450.0 + 30 +0.0 + 0 +VERTEX + 5 +2001 + 8 +0 + 10 +1000.0 + 20 +29450.0 + 30 +0.0 + 0 +SEQEND + 5 +2002 + 8 +0 + 0 +POLYLINE + 5 +7E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2003 + 8 +0 + 10 +32800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +2004 + 8 +0 + 10 +32800.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +2005 + 8 +0 + 10 +41800.0 + 20 +13250.0 + 30 +0.0 + 0 +SEQEND + 5 +2006 + 8 +0 + 0 +POLYLINE + 5 +83 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2007 + 8 +0 + 10 +39550.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +2008 + 8 +0 + 10 +39550.0 + 20 +11000.0 + 30 +0.0 + 0 +SEQEND + 5 +2009 + 8 +0 + 0 +POLYLINE + 5 +87 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +200A + 8 +0 + 10 +41800.0 + 20 +12250.0 + 30 +0.0 + 0 +VERTEX + 5 +200B + 8 +0 + 10 +37300.0 + 20 +12250.0 + 30 +0.0 + 0 +SEQEND + 5 +200C + 8 +0 + 0 +POLYLINE + 5 +8B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +200D + 8 +0 + 10 +41800.0 + 20 +11625.0 + 30 +0.0 + 0 +VERTEX + 5 +200E + 8 +0 + 10 +37300.0 + 20 +11625.0 + 30 +0.0 + 0 +SEQEND + 5 +200F + 8 +0 + 0 +POLYLINE + 5 +8F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2010 + 8 +0 + 10 +32800.0 + 20 +11000.0 + 30 +0.0 + 0 +VERTEX + 5 +2011 + 8 +0 + 10 +41800.0 + 20 +11000.0 + 30 +0.0 + 0 +SEQEND + 5 +2012 + 8 +0 + 0 +POLYLINE + 5 +93 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2013 + 8 +0 + 10 +37300.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +2014 + 8 +0 + 10 +37300.0 + 20 +6500.0 + 30 +0.0 + 0 +SEQEND + 5 +2015 + 8 +0 + 0 +POLYLINE + 5 +97 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2016 + 8 +0 + 10 +32800.0 + 20 +8750.0 + 30 +0.0 + 0 +VERTEX + 5 +2017 + 8 +0 + 10 +37300.0 + 20 +8750.0 + 30 +0.0 + 0 +SEQEND + 5 +2018 + 8 +0 + 0 +POLYLINE + 5 +9B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2019 + 8 +0 + 10 +32800.0 + 20 +6500.0 + 30 +0.0 + 0 +VERTEX + 5 +201A + 8 +0 + 10 +41800.0 + 20 +6500.0 + 30 +0.0 + 0 +SEQEND + 5 +201B + 8 +0 + 0 +POLYLINE + 5 +9F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +201C + 8 +0 + 10 +41800.0 + 20 +2000.0 + 30 +0.0 + 0 +VERTEX + 5 +201D + 8 +0 + 10 +32800.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +201E + 8 +0 + 0 +POLYLINE + 5 +A3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +201F + 8 +0 + 10 +41800.0 + 20 +950.0 + 30 +0.0 + 0 +VERTEX + 5 +2020 + 8 +0 + 10 +32800.0 + 20 +950.0 + 30 +0.0 + 0 +SEQEND + 5 +2021 + 8 +0 + 0 +POLYLINE + 5 +A7 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2022 + 8 +0 + 10 +41800.0 + 20 +1300.0 + 30 +0.0 + 0 +VERTEX + 5 +2023 + 8 +0 + 10 +32800.0 + 20 +1300.0 + 30 +0.0 + 0 +SEQEND + 5 +2024 + 8 +0 + 0 +POLYLINE + 5 +AB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2025 + 8 +0 + 10 +41800.0 + 20 +1650.0 + 30 +0.0 + 0 +VERTEX + 5 +2026 + 8 +0 + 10 +32800.0 + 20 +1650.0 + 30 +0.0 + 0 +SEQEND + 5 +2027 + 8 +0 + 0 +POLYLINE + 5 +AF + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2028 + 8 +0 + 10 +41800.0 + 20 +600.0 + 30 +0.0 + 0 +VERTEX + 5 +2029 + 8 +0 + 10 +32800.0 + 20 +600.0 + 30 +0.0 + 0 +SEQEND + 5 +202A + 8 +0 + 0 +POLYLINE + 5 +B3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +202B + 8 +0 + 10 +35100.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +202C + 8 +0 + 10 +35100.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +202D + 8 +0 + 0 +POLYLINE + 5 +B7 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +202E + 8 +0 + 10 +33950.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +202F + 8 +0 + 10 +33950.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +2030 + 8 +0 + 0 +POLYLINE + 5 +BB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +2031 + 8 +0 + 10 +40650.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +2032 + 8 +0 + 10 +40650.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +2033 + 8 +0 + 0 +ENDBLK + 5 +BF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +STURZ + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +STURZ + 1 + + 0 +POLYLINE + 5 +C1 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2034 + 8 +MAUERWERK + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2035 + 8 +MAUERWERK + 10 +0.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +2036 + 8 +MAUERWERK + 10 +365.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +2037 + 8 +MAUERWERK + 10 +365.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +2038 + 8 +MAUERWERK + 0 +POLYLINE + 5 +C7 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2039 + 8 +MAUERWERK + 10 +40.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +203A + 8 +MAUERWERK + 10 +40.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +203B + 8 +MAUERWERK + 10 +80.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +203C + 8 +MAUERWERK + 10 +80.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +203D + 8 +MAUERWERK + 0 +POLYLINE + 5 +CD + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +203E + 8 +MAUERWERK + 10 +160.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +203F + 8 +MAUERWERK + 10 +160.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +2040 + 8 +MAUERWERK + 10 +200.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +2041 + 8 +MAUERWERK + 10 +200.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +2042 + 8 +MAUERWERK + 0 +POLYLINE + 5 +D3 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2043 + 8 +MAUERWERK + 10 +285.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +2044 + 8 +MAUERWERK + 10 +285.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +2045 + 8 +MAUERWERK + 10 +325.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +2046 + 8 +MAUERWERK + 10 +325.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +2047 + 8 +MAUERWERK + 0 +POLYLINE + 5 +D9 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2048 + 8 +MAUERWERK + 10 +121.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +2049 + 8 +MAUERWERK + 10 +121.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +204A + 8 +MAUERWERK + 0 +POLYLINE + 5 +DD + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +204B + 8 +MAUERWERK + 10 +243.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +204C + 8 +MAUERWERK + 10 +243.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +204D + 8 +MAUERWERK + 0 +ENDBLK + 5 +E1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +MASSHILFSLINIE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +MASSHILFSLINIE + 1 + + 0 +POLYLINE + 5 +E3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +204E + 8 +0 + 10 +75.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +204F + 8 +0 + 10 +-75.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +2050 + 8 +0 + 0 +POLYLINE + 5 +E7 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2051 + 8 +0 + 10 +0.0 + 20 +-175.0 + 30 +0.0 + 0 +VERTEX + 5 +2052 + 8 +0 + 10 +0.0 + 20 +175.0 + 30 +0.0 + 0 +SEQEND + 5 +2053 + 8 +0 + 0 +POLYLINE + 5 +EB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2054 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2055 + 8 +0 + 10 +26.516504 + 20 +26.516504 + 30 +0.0 + 0 +SEQEND + 5 +2056 + 8 +0 + 0 +POLYLINE + 5 +EF + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2057 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2058 + 8 +0 + 10 +-26.516504 + 20 +-26.516504 + 30 +0.0 + 0 +SEQEND + 5 +2059 + 8 +0 + 0 +ENDBLK + 5 +F3 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X3 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X3 + 1 + + 0 +LINE + 5 +F5 + 8 +0 + 62 + 0 + 10 +10328.961031 + 20 +5090.0 + 30 +0.0 + 11 +10488.961031 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +F6 + 8 +0 + 62 + 0 + 10 +9904.696962 + 20 +5090.0 + 30 +0.0 + 11 +10064.696962 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +F7 + 8 +0 + 62 + 0 + 10 +9480.432893 + 20 +5090.0 + 30 +0.0 + 11 +9640.432893 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +F8 + 8 +0 + 62 + 0 + 10 +9056.168825 + 20 +5090.0 + 30 +0.0 + 11 +9216.168825 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +F9 + 8 +0 + 62 + 0 + 10 +8631.904756 + 20 +5090.0 + 30 +0.0 + 11 +8791.904756 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +FA + 8 +0 + 62 + 0 + 10 +8207.640687 + 20 +5090.0 + 30 +0.0 + 11 +8367.640687 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +FB + 8 +0 + 62 + 0 + 10 +7783.376618 + 20 +5090.0 + 30 +0.0 + 11 +7943.376618 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +FC + 8 +0 + 62 + 0 + 10 +7359.11255 + 20 +5090.0 + 30 +0.0 + 11 +7519.11255 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +FD + 8 +0 + 62 + 0 + 10 +6934.848481 + 20 +5090.0 + 30 +0.0 + 11 +7094.848481 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +FE + 8 +0 + 62 + 0 + 10 +6510.584412 + 20 +5090.0 + 30 +0.0 + 11 +6670.584412 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +FF + 8 +0 + 62 + 0 + 10 +6086.320344 + 20 +5090.0 + 30 +0.0 + 11 +6246.320344 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +100 + 8 +0 + 62 + 0 + 10 +5662.056275 + 20 +5090.0 + 30 +0.0 + 11 +5822.056275 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +101 + 8 +0 + 62 + 0 + 10 +5237.792206 + 20 +5090.0 + 30 +0.0 + 11 +5397.792206 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +102 + 8 +0 + 62 + 0 + 10 +4813.528137 + 20 +5090.0 + 30 +0.0 + 11 +4973.528137 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +103 + 8 +0 + 62 + 0 + 10 +4384.264069 + 20 +5085.0 + 30 +0.0 + 11 +4549.264069 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +104 + 8 +0 + 62 + 0 + 10 +10753.225099 + 20 +5090.0 + 30 +0.0 + 11 +10913.225099 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +105 + 8 +0 + 62 + 0 + 10 +11177.489168 + 20 +5090.0 + 30 +0.0 + 11 +11337.489168 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +106 + 8 +0 + 62 + 0 + 10 +11601.753237 + 20 +5090.0 + 30 +0.0 + 11 +11761.753237 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +107 + 8 +0 + 62 + 0 + 10 +12026.017306 + 20 +5090.0 + 30 +0.0 + 11 +12186.017306 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +108 + 8 +0 + 62 + 0 + 10 +12450.281374 + 20 +5090.0 + 30 +0.0 + 11 +12610.281374 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +109 + 8 +0 + 62 + 0 + 10 +12874.545443 + 20 +5090.0 + 30 +0.0 + 11 +13034.545443 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +10A + 8 +0 + 62 + 0 + 10 +13298.809512 + 20 +5090.0 + 30 +0.0 + 11 +13458.809512 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +10B + 8 +0 + 62 + 0 + 10 +13723.07358 + 20 +5090.0 + 30 +0.0 + 11 +13883.07358 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +10C + 8 +0 + 62 + 0 + 10 +14147.337649 + 20 +5090.0 + 30 +0.0 + 11 +14307.337649 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +10D + 8 +0 + 62 + 0 + 10 +14571.601718 + 20 +5090.0 + 30 +0.0 + 11 +14731.601718 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +10E + 8 +0 + 62 + 0 + 10 +14995.865787 + 20 +5090.0 + 30 +0.0 + 11 +15155.865787 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +10F + 8 +0 + 62 + 0 + 10 +15420.129855 + 20 +5090.0 + 30 +0.0 + 11 +15580.129855 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +110 + 8 +0 + 62 + 0 + 10 +15844.393924 + 20 +5090.0 + 30 +0.0 + 11 +16004.393924 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +111 + 8 +0 + 62 + 0 + 10 +16268.657993 + 20 +5090.0 + 30 +0.0 + 11 +16428.657993 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +112 + 8 +0 + 62 + 0 + 10 +16687.922061 + 20 +5085.0 + 30 +0.0 + 11 +16852.922061 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +113 + 8 +0 + 62 + 0 + 10 +10116.828996 + 20 +5090.0 + 30 +0.0 + 11 +10117.72997 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +114 + 8 +0 + 62 + 0 + 10 +10170.762979 + 20 +5143.933983 + 30 +0.0 + 11 +10276.828996 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +115 + 8 +0 + 62 + 0 + 10 +9692.564927 + 20 +5090.0 + 30 +0.0 + 11 +9746.49891 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +116 + 8 +0 + 62 + 0 + 10 +9799.531919 + 20 +5196.966991 + 30 +0.0 + 11 +9852.564927 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +117 + 8 +0 + 62 + 0 + 10 +9269.201833 + 20 +5090.900974 + 30 +0.0 + 11 +9375.26785 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +118 + 8 +0 + 62 + 0 + 10 +8844.03679 + 20 +5090.0 + 30 +0.0 + 11 +8844.937764 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +119 + 8 +0 + 62 + 0 + 10 +8897.970773 + 20 +5143.933983 + 30 +0.0 + 11 +9004.03679 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +11A + 8 +0 + 62 + 0 + 10 +8419.772721 + 20 +5090.0 + 30 +0.0 + 11 +8473.706704 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +11B + 8 +0 + 62 + 0 + 10 +8526.739713 + 20 +5196.966991 + 30 +0.0 + 11 +8579.772721 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +11C + 8 +0 + 62 + 0 + 10 +7996.409627 + 20 +5090.900974 + 30 +0.0 + 11 +8102.475644 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +11D + 8 +0 + 62 + 0 + 10 +7571.244584 + 20 +5090.0 + 30 +0.0 + 11 +7572.145558 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +11E + 8 +0 + 62 + 0 + 10 +7625.178567 + 20 +5143.933983 + 30 +0.0 + 11 +7731.244584 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +11F + 8 +0 + 62 + 0 + 10 +7146.980515 + 20 +5090.0 + 30 +0.0 + 11 +7200.914498 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +120 + 8 +0 + 62 + 0 + 10 +7253.947506 + 20 +5196.966991 + 30 +0.0 + 11 +7306.980515 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +121 + 8 +0 + 62 + 0 + 10 +6723.617421 + 20 +5090.900974 + 30 +0.0 + 11 +6829.683438 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +122 + 8 +0 + 62 + 0 + 10 +6298.452378 + 20 +5090.0 + 30 +0.0 + 11 +6299.353352 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +123 + 8 +0 + 62 + 0 + 10 +6352.38636 + 20 +5143.933983 + 30 +0.0 + 11 +6458.452378 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +124 + 8 +0 + 62 + 0 + 10 +5874.188309 + 20 +5090.0 + 30 +0.0 + 11 +5928.122292 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +125 + 8 +0 + 62 + 0 + 10 +5981.1553 + 20 +5196.966991 + 30 +0.0 + 11 +6034.188309 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +126 + 8 +0 + 62 + 0 + 10 +5450.825214 + 20 +5090.900974 + 30 +0.0 + 11 +5556.891232 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +127 + 8 +0 + 62 + 0 + 10 +5609.92424 + 20 +5250.0 + 30 +0.0 + 11 +5609.92424 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +128 + 8 +0 + 62 + 0 + 10 +5025.660171 + 20 +5090.0 + 30 +0.0 + 11 +5026.561146 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +129 + 8 +0 + 62 + 0 + 10 +5079.594154 + 20 +5143.933983 + 30 +0.0 + 11 +5185.660171 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +12A + 8 +0 + 62 + 0 + 10 +4601.396103 + 20 +5090.0 + 30 +0.0 + 11 +4655.330086 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +12B + 8 +0 + 62 + 0 + 10 +4708.363094 + 20 +5196.966991 + 30 +0.0 + 11 +4761.396103 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +12C + 8 +0 + 62 + 0 + 10 +4178.033008 + 20 +5090.900974 + 30 +0.0 + 11 +4284.099025 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +12D + 8 +0 + 62 + 0 + 10 +4337.132034 + 20 +5250.0 + 30 +0.0 + 11 +4337.132034 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +12E + 8 +0 + 62 + 0 + 10 +10541.994039 + 20 +5090.900974 + 30 +0.0 + 11 +10648.060056 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +12F + 8 +0 + 62 + 0 + 10 +10965.357133 + 20 +5090.0 + 30 +0.0 + 11 +11019.291116 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +130 + 8 +0 + 62 + 0 + 10 +11072.324125 + 20 +5196.966991 + 30 +0.0 + 11 +11125.357133 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +131 + 8 +0 + 62 + 0 + 10 +11389.621202 + 20 +5090.0 + 30 +0.0 + 11 +11390.522176 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +132 + 8 +0 + 62 + 0 + 10 +11443.555185 + 20 +5143.933983 + 30 +0.0 + 11 +11549.621202 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +133 + 8 +0 + 62 + 0 + 10 +11814.786245 + 20 +5090.900974 + 30 +0.0 + 11 +11920.852262 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +134 + 8 +0 + 62 + 0 + 10 +12238.14934 + 20 +5090.0 + 30 +0.0 + 11 +12292.083322 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +135 + 8 +0 + 62 + 0 + 10 +12345.116331 + 20 +5196.966991 + 30 +0.0 + 11 +12398.14934 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +136 + 8 +0 + 62 + 0 + 10 +12662.413408 + 20 +5090.0 + 30 +0.0 + 11 +12663.314382 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +137 + 8 +0 + 62 + 0 + 10 +12716.347391 + 20 +5143.933983 + 30 +0.0 + 11 +12822.413408 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +138 + 8 +0 + 62 + 0 + 10 +13087.578451 + 20 +5090.900974 + 30 +0.0 + 11 +13193.644468 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +139 + 8 +0 + 62 + 0 + 10 +13510.941546 + 20 +5090.0 + 30 +0.0 + 11 +13564.875528 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +13A + 8 +0 + 62 + 0 + 10 +13617.908537 + 20 +5196.966991 + 30 +0.0 + 11 +13670.941546 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +13B + 8 +0 + 62 + 0 + 10 +13935.205614 + 20 +5090.0 + 30 +0.0 + 11 +13936.106589 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +13C + 8 +0 + 62 + 0 + 10 +13989.139597 + 20 +5143.933983 + 30 +0.0 + 11 +14095.205614 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +13D + 8 +0 + 62 + 0 + 10 +14360.370657 + 20 +5090.900974 + 30 +0.0 + 11 +14466.436674 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +13E + 8 +0 + 62 + 0 + 10 +14783.733752 + 20 +5090.0 + 30 +0.0 + 11 +14837.667735 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +13F + 8 +0 + 62 + 0 + 10 +14890.700743 + 20 +5196.966991 + 30 +0.0 + 11 +14943.733752 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +140 + 8 +0 + 62 + 0 + 10 +15207.997821 + 20 +5090.0 + 30 +0.0 + 11 +15208.898795 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +141 + 8 +0 + 62 + 0 + 10 +15261.931803 + 20 +5143.933983 + 30 +0.0 + 11 +15367.997821 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +142 + 8 +0 + 62 + 0 + 10 +15633.162863 + 20 +5090.900974 + 30 +0.0 + 11 +15739.228881 + 21 +5196.966991 + 31 +0.0 + 0 +LINE + 5 +143 + 8 +0 + 62 + 0 + 10 +16056.525958 + 20 +5090.0 + 30 +0.0 + 11 +16110.459941 + 21 +5143.933983 + 31 +0.0 + 0 +LINE + 5 +144 + 8 +0 + 62 + 0 + 10 +16163.492949 + 20 +5196.966991 + 30 +0.0 + 11 +16216.525958 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +145 + 8 +0 + 62 + 0 + 10 +16480.790027 + 20 +5090.0 + 30 +0.0 + 11 +16481.691001 + 21 +5090.900974 + 31 +0.0 + 0 +LINE + 5 +146 + 8 +0 + 62 + 0 + 10 +16534.724009 + 20 +5143.933983 + 30 +0.0 + 11 +16640.790027 + 21 +5250.0 + 31 +0.0 + 0 +LINE + 5 +147 + 8 +0 + 62 + 0 + 10 +16905.95507 + 20 +5090.900974 + 30 +0.0 + 11 +16990.0 + 21 +5174.945905 + 31 +0.0 + 0 +ENDBLK + 5 +148 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D4 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D4 + 1 + + 0 +LINE + 5 +14A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3761.0 + 20 +3850.0 + 30 +0.0 + 11 +4129.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +14B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3760.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +14C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4130.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +14D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3872.083333 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +32 + 72 + 1 + 11 +3945.0 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +14F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3760.0 + 20 +3650.0 + 30 +0.0 + 0 +POINT + 5 +150 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4130.0 + 20 +3650.0 + 30 +0.0 + 0 +POINT + 5 +151 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4130.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +152 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D5 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D5 + 1 + + 0 +LINE + 5 +154 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7196.0 + 20 +3850.0 + 30 +0.0 + 11 +10554.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +155 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7195.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +156 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10555.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +157 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +8743.75 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +3.37 + 72 + 1 + 11 +8875.0 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +158 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7195.0 + 20 +3855.0 + 30 +0.0 + 0 +POINT + 5 +159 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10555.0 + 20 +4205.0 + 30 +0.0 + 0 +POINT + 5 +15A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10555.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +15B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D6 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D6 + 1 + + 0 +LINE + 5 +15D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10556.0 + 20 +3850.0 + 30 +0.0 + 11 +13939.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +15E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10555.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +15F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13940.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +160 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12116.25 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +3.37 + 72 + 1 + 11 +12247.5 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +161 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10555.0 + 20 +4205.0 + 30 +0.0 + 0 +POINT + 5 +162 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13940.0 + 20 +4365.0 + 30 +0.0 + 0 +POINT + 5 +163 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13940.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +164 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D7 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D7 + 1 + + 0 +LINE + 5 +166 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16986.0 + 20 +3850.0 + 30 +0.0 + 11 +17359.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +167 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16985.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +168 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17360.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +169 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +17099.583333 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +32 + 72 + 1 + 11 +17172.5 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +16A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +3840.0 + 30 +0.0 + 0 +POINT + 5 +16B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17360.0 + 20 +4775.0 + 30 +0.0 + 0 +POINT + 5 +16C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17360.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +16D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D8 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D8 + 1 + + 0 +LINE + 5 +16F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4131.0 + 20 +3850.0 + 30 +0.0 + 11 +5889.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +170 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4130.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +171 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5890.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +172 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4893.333333 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +1.62 + 72 + 1 + 11 +5010.0 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +173 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4130.0 + 20 +3650.0 + 30 +0.0 + 0 +POINT + 5 +174 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5890.0 + 20 +3860.0 + 30 +0.0 + 0 +POINT + 5 +175 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5890.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +176 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D9 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D9 + 1 + + 0 +LINE + 5 +178 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15226.0 + 20 +3850.0 + 30 +0.0 + 11 +16984.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +179 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15225.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +17A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16985.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +17B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15988.333333 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +1.62 + 72 + 1 + 11 +16105.0 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +17C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15225.0 + 20 +4035.0 + 30 +0.0 + 0 +POINT + 5 +17D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +3840.0 + 30 +0.0 + 0 +POINT + 5 +17E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +17F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D10 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D10 + 1 + + 0 +LINE + 5 +181 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13941.0 + 20 +3850.0 + 30 +0.0 + 11 +15224.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +182 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13940.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +183 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15225.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +184 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14465.833333 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +1.43 + 72 + 1 + 11 +14582.5 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +185 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13940.0 + 20 +4365.0 + 30 +0.0 + 0 +POINT + 5 +186 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15225.0 + 20 +4035.0 + 30 +0.0 + 0 +POINT + 5 +187 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15225.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +188 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D11 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D11 + 1 + + 0 +LINE + 5 +18A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5891.0 + 20 +3850.0 + 30 +0.0 + 11 +7194.0 + 21 +3850.0 + 31 +0.0 + 0 +INSERT + 5 +18B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5890.0 + 20 +3850.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +18C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7195.0 + 20 +3850.0 + 30 +0.0 + 0 +TEXT + 5 +18D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6425.833333 + 20 +3893.75 + 30 +0.0 + 40 +87.5 + 1 +1.43 + 72 + 1 + 11 +6542.5 + 21 +3937.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +18E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5890.0 + 20 +3860.0 + 30 +0.0 + 0 +POINT + 5 +18F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7195.0 + 20 +3855.0 + 30 +0.0 + 0 +POINT + 5 +190 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7195.0 + 20 +3850.0 + 30 +0.0 + 0 +ENDBLK + 5 +191 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D12 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D12 + 1 + + 0 +LINE + 5 +193 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4131.0 + 20 +3500.0 + 30 +0.0 + 11 +4489.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +194 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4130.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +195 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4490.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +196 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4237.083333 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +36 + 72 + 1 + 11 +4310.0 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +197 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4130.0 + 20 +2270.0 + 30 +0.0 + 0 +POINT + 5 +198 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4490.0 + 20 +2270.0 + 30 +0.0 + 0 +POINT + 5 +199 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4490.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +19A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D13 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D13 + 1 + + 0 +LINE + 5 +19C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4491.0 + 20 +3500.0 + 30 +0.0 + 11 +8999.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +19D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4490.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +19E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9000.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +19F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6628.333333 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +4.51 + 72 + 1 + 11 +6745.0 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1A0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4490.0 + 20 +2270.0 + 30 +0.0 + 0 +POINT + 5 +1A1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9000.0 + 20 +2625.0 + 30 +0.0 + 0 +POINT + 5 +1A2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9000.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +1A3 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D14 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D14 + 1 + + 0 +LINE + 5 +1A5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9001.0 + 20 +3500.0 + 30 +0.0 + 11 +9364.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +1A6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9000.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1A7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9365.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +1A8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9109.583333 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +36 + 72 + 1 + 11 +9182.5 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1A9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9000.0 + 20 +2625.0 + 30 +0.0 + 0 +POINT + 5 +1AA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9365.0 + 20 +3175.0 + 30 +0.0 + 0 +POINT + 5 +1AB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9365.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +1AC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D15 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D15 + 1 + + 0 +LINE + 5 +1AE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9366.0 + 20 +3500.0 + 30 +0.0 + 11 +11744.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +1AF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9365.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1B0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11745.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +1B1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10423.75 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +2.38 + 72 + 1 + 11 +10555.0 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1B2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9365.0 + 20 +3175.0 + 30 +0.0 + 0 +POINT + 5 +1B3 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11745.0 + 20 +3620.0 + 30 +0.0 + 0 +POINT + 5 +1B4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11745.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +1B5 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D16 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D16 + 1 + + 0 +LINE + 5 +1B7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11746.0 + 20 +3500.0 + 30 +0.0 + 11 +12114.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +1B8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11745.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1B9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +12115.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +1BA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11857.083333 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +36 + 72 + 1 + 11 +11930.0 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1BB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +11745.0 + 20 +3620.0 + 30 +0.0 + 0 +POINT + 5 +1BC + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +12115.0 + 20 +3515.0 + 30 +0.0 + 0 +POINT + 5 +1BD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +12115.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +1BE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D17 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D17 + 1 + + 0 +LINE + 5 +1C0 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12116.0 + 20 +3500.0 + 30 +0.0 + 11 +16629.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +1C1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +12115.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1C2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16630.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +1C3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14255.833333 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +4.51 + 72 + 1 + 11 +14372.5 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1C4 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +12115.0 + 20 +3515.0 + 30 +0.0 + 0 +POINT + 5 +1C5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16630.0 + 20 +3675.0 + 30 +0.0 + 0 +POINT + 5 +1C6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16630.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +1C7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D18 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D18 + 1 + + 0 +LINE + 5 +1C9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16631.0 + 20 +3500.0 + 30 +0.0 + 11 +16984.0 + 21 +3500.0 + 31 +0.0 + 0 +INSERT + 5 +1CA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16630.0 + 20 +3500.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1CB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16985.0 + 20 +3500.0 + 30 +0.0 + 0 +TEXT + 5 +1CC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16734.583333 + 20 +3543.75 + 30 +0.0 + 40 +87.5 + 1 +36 + 72 + 1 + 11 +16807.5 + 21 +3587.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1CD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16630.0 + 20 +3675.0 + 30 +0.0 + 0 +POINT + 5 +1CE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +3525.0 + 30 +0.0 + 0 +POINT + 5 +1CF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +3500.0 + 30 +0.0 + 0 +ENDBLK + 5 +1D0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D19 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D19 + 1 + + 0 +LINE + 5 +1D2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +4131.0 + 20 +3150.0 + 30 +0.0 + 11 +16984.0 + 21 +3150.0 + 31 +0.0 + 0 +INSERT + 5 +1D3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +4130.0 + 20 +3150.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1D4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16985.0 + 20 +3150.0 + 30 +0.0 + 0 +TEXT + 5 +1D5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10397.083333 + 20 +3193.75 + 30 +0.0 + 40 +87.5 + 1 +12.86 + 72 + 1 + 11 +10557.5 + 21 +3237.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1D6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +4130.0 + 20 +2890.0 + 30 +0.0 + 0 +POINT + 5 +1D7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +2890.0 + 30 +0.0 + 0 +POINT + 5 +1D8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16985.0 + 20 +3150.0 + 30 +0.0 + 0 +ENDBLK + 5 +1D9 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +DREIECK + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +DREIECK + 1 + + 0 +POLYLINE + 5 +1DB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 41 +175.0 + 0 +VERTEX + 5 +205A + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +205B + 8 +0 + 10 +0.0 + 20 +87.5 + 30 +0.0 + 40 +175.0 + 0 +SEQEND + 5 +205C + 8 +0 + 0 +ENDBLK + 5 +1DF + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D21 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D21 + 1 + + 0 +LINE + 5 +1E1 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2375.0 + 20 +5256.0 + 30 +0.0 + 11 +2375.0 + 21 +8299.0 + 31 +0.0 + 0 +INSERT + 5 +1E2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2375.0 + 20 +5255.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1E3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2375.0 + 20 +8300.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1E4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2331.25 + 20 +6660.833333 + 30 +0.0 + 40 +87.5 + 1 +3.00 + 50 +90.0 + 72 + 1 + 11 +2287.5 + 21 +6777.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1E5 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +1140.0 + 20 +5255.0 + 30 +0.0 + 0 +POINT + 5 +1E6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +1140.0 + 20 +8300.0 + 30 +0.0 + 0 +POINT + 5 +1E7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2375.0 + 20 +8300.0 + 30 +0.0 + 0 +ENDBLK + 5 +1E8 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D22 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D22 + 1 + + 0 +LINE + 5 +1EA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2375.0 + 20 +8301.0 + 30 +0.0 + 11 +2375.0 + 21 +10604.0 + 31 +0.0 + 0 +INSERT + 5 +1EB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2375.0 + 20 +8300.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1EC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +2375.0 + 20 +10605.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1ED + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +2331.25 + 20 +9321.25 + 30 +0.0 + 40 +87.5 + 1 +2.36 + 50 +90.0 + 72 + 1 + 11 +2287.5 + 21 +9452.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1EE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +1140.0 + 20 +8300.0 + 30 +0.0 + 0 +POINT + 5 +1EF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10560.0 + 20 +10605.0 + 30 +0.0 + 0 +POINT + 5 +1F0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +2375.0 + 20 +10605.0 + 30 +0.0 + 0 +ENDBLK + 5 +1F1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D23 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D23 + 1 + + 0 +LINE + 5 +1F3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7251.0 + 20 +10505.0 + 30 +0.0 + 11 +8739.0 + 21 +10505.0 + 31 +0.0 + 0 +INSERT + 5 +1F4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7250.0 + 20 +10505.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1F5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +8740.0 + 20 +10505.0 + 30 +0.0 + 0 +TEXT + 5 +1F6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7878.333333 + 20 +10548.75 + 30 +0.0 + 40 +87.5 + 1 +1.49 + 72 + 1 + 11 +7995.0 + 21 +10592.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1F7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7250.0 + 20 +10195.0 + 30 +0.0 + 0 +POINT + 5 +1F8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8740.0 + 20 +10195.0 + 30 +0.0 + 0 +POINT + 5 +1F9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8740.0 + 20 +10505.0 + 30 +0.0 + 0 +ENDBLK + 5 +1FA + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D24 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D24 + 1 + + 0 +LINE + 5 +1FC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3373.151369 + 20 +7103.844606 + 30 +0.0 + 11 +6931.455372 + 21 +9327.784608 + 31 +0.0 + 0 +INSERT + 5 +1FD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3372.303371 + 20 +7103.314607 + 30 +0.0 + 50 +212.005383 + 0 +INSERT + 5 +1FE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6932.303371 + 20 +9328.314607 + 30 +0.0 + 50 +32.005383 + 0 +TEXT + 5 +1FF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5023.999461 + 20 +8187.216747 + 30 +0.0 + 40 +87.5 + 1 +4.20 + 50 +32.005383 + 72 + 1 + 11 +5105.928464 + 21 +8290.014458 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +200 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3715.0 + 20 +6555.0 + 30 +0.0 + 0 +POINT + 5 +201 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7275.0 + 20 +8780.0 + 30 +0.0 + 0 +POINT + 5 +202 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6932.303371 + 20 +9328.314607 + 30 +0.0 + 0 +ENDBLK + 5 +203 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D25 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D25 + 1 + + 0 +LINE + 5 +205 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +11023.279211 + 20 +11578.764241 + 30 +0.0 + 11 +14756.582322 + 21 +9249.822809 + 31 +0.0 + 0 +INSERT + 5 +206 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +11022.430766 + 20 +11579.293525 + 30 +0.0 + 50 +148.042904 + 0 +INSERT + 5 +207 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14757.430766 + 20 +9249.293525 + 30 +0.0 + 50 +328.042904 + 0 +TEXT + 5 +208 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +12807.915158 + 20 +10517.022152 + 30 +0.0 + 40 +87.5 + 1 +4.40 + 50 +328.042904 + 72 + 1 + 11 +12936.243124 + 21 +10488.532433 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +209 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10555.0 + 20 +10830.0 + 30 +0.0 + 0 +POINT + 5 +20A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +8500.0 + 30 +0.0 + 0 +POINT + 5 +20B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14757.430766 + 20 +9249.293525 + 30 +0.0 + 0 +ENDBLK + 5 +20C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D26 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D26 + 1 + + 0 +LINE + 5 +20E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +13861.722804 + 20 +8965.83185 + 30 +0.0 + 11 +17354.730878 + 21 +8651.01138 + 31 +0.0 + 0 +INSERT + 5 +20F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +13860.726841 + 20 +8965.921615 + 30 +0.0 + 50 +174.849918 + 0 +INSERT + 5 +210 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +17355.726841 + 20 +8650.921615 + 30 +0.0 + 50 +354.849918 + 0 +TEXT + 5 +211 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15495.958374 + 20 +8862.467568 + 30 +0.0 + 40 +87.5 + 1 +3.51 + 50 +354.849918 + 72 + 1 + 11 +15616.08127 + 21 +8895.568376 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +212 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13830.0 + 20 +8625.0 + 30 +0.0 + 0 +POINT + 5 +213 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17325.0 + 20 +8310.0 + 30 +0.0 + 0 +POINT + 5 +214 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17355.726841 + 20 +8650.921615 + 30 +0.0 + 0 +ENDBLK + 5 +215 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +HOEHE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +HOEHE + 1 + + 0 +POLYLINE + 5 +217 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +205D + 8 +0 + 10 +0.019553 + 20 +0.17035 + 30 +0.0 + 0 +VERTEX + 5 +205E + 8 +0 + 10 +87.539037 + 20 +87.845238 + 30 +0.0 + 0 +VERTEX + 5 +205F + 8 +0 + 10 +-87.890695 + 20 +87.845238 + 30 +0.0 + 0 +SEQEND + 5 +2060 + 8 +0 + 0 +ENDBLK + 5 +21C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D28 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D28 + 1 + + 0 +LINE + 5 +21E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18125.0 + 20 +4501.0 + 30 +0.0 + 11 +18125.0 + 21 +5739.0 + 31 +0.0 + 0 +INSERT + 5 +21F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18125.0 + 20 +4500.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +220 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18125.0 + 20 +5740.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +221 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18081.25 + 20 +5017.916667 + 30 +0.0 + 40 +87.5 + 1 +1.21 + 50 +90.0 + 72 + 1 + 11 +18037.5 + 21 +5120.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +222 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16970.0 + 20 +4500.0 + 30 +0.0 + 0 +POINT + 5 +223 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16970.0 + 20 +5740.0 + 30 +0.0 + 0 +POINT + 5 +224 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18125.0 + 20 +5740.0 + 30 +0.0 + 0 +ENDBLK + 5 +225 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D29 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D29 + 1 + + 0 +LINE + 5 +227 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18125.0 + 20 +5741.0 + 30 +0.0 + 11 +18125.0 + 21 +5949.0 + 31 +0.0 + 0 +INSERT + 5 +228 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18125.0 + 20 +5740.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +229 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18125.0 + 20 +5950.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +22A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18081.25 + 20 +5786.666667 + 30 +0.0 + 40 +87.5 + 1 +18 + 50 +90.0 + 72 + 1 + 11 +18037.5 + 21 +5845.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +22B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16970.0 + 20 +5740.0 + 30 +0.0 + 0 +POINT + 5 +22C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18120.0 + 20 +5950.0 + 30 +0.0 + 0 +POINT + 5 +22D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18125.0 + 20 +5950.0 + 30 +0.0 + 0 +ENDBLK + 5 +22E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D30 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D30 + 1 + + 0 +LINE + 5 +230 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18125.0 + 20 +5951.0 + 30 +0.0 + 11 +18125.0 + 21 +7359.0 + 31 +0.0 + 0 +INSERT + 5 +231 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18125.0 + 20 +5950.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +232 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18125.0 + 20 +7360.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +233 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18081.25 + 20 +6545.625 + 30 +0.0 + 40 +87.5 + 1 +1.40 + 50 +90.0 + 72 + 1 + 11 +18037.5 + 21 +6655.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +234 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18120.0 + 20 +5950.0 + 30 +0.0 + 0 +POINT + 5 +235 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16855.0 + 20 +7360.0 + 30 +0.0 + 0 +POINT + 5 +236 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18125.0 + 20 +7360.0 + 30 +0.0 + 0 +ENDBLK + 5 +237 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D31 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D31 + 1 + + 0 +LINE + 5 +239 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +12856.0 + 30 +0.0 + 11 +14290.0 + 21 +13259.0 + 31 +0.0 + 0 +INSERT + 5 +23A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +12855.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +23B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +13260.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +23C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14246.25 + 20 +12999.166667 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +90.0 + 72 + 1 + 11 +14202.5 + 21 +13057.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +23D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12855.0 + 30 +0.0 + 0 +POINT + 5 +23E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13560.0 + 20 +13260.0 + 30 +0.0 + 0 +POINT + 5 +23F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +13260.0 + 30 +0.0 + 0 +ENDBLK + 5 +240 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D32 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D32 + 1 + + 0 +LINE + 5 +242 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +13261.0 + 30 +0.0 + 11 +14290.0 + 21 +13699.0 + 31 +0.0 + 0 +INSERT + 5 +243 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +13260.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +244 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +13700.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +245 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14246.25 + 20 +13421.666667 + 30 +0.0 + 40 +87.5 + 1 +18 + 50 +90.0 + 72 + 1 + 11 +14202.5 + 21 +13480.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +246 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13560.0 + 20 +13260.0 + 30 +0.0 + 0 +POINT + 5 +247 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13580.0 + 20 +13700.0 + 30 +0.0 + 0 +POINT + 5 +248 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +13700.0 + 30 +0.0 + 0 +ENDBLK + 5 +249 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D33 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D33 + 1 + + 0 +LINE + 5 +24B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +13701.0 + 30 +0.0 + 11 +14290.0 + 21 +13774.0 + 31 +0.0 + 0 +INSERT + 5 +24C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +13700.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +24D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +13775.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +24E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14246.25 + 20 +13805.833333 + 30 +0.0 + 40 +87.5 + 1 +3 + 50 +90.0 + 72 + 1 + 11 +14202.5 + 21 +13835.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +24F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13580.0 + 20 +13700.0 + 30 +0.0 + 0 +POINT + 5 +250 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +13775.0 + 30 +0.0 + 0 +POINT + 5 +251 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +13775.0 + 30 +0.0 + 0 +ENDBLK + 5 +252 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D34 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D34 + 1 + + 0 +LINE + 5 +254 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +12816.0 + 30 +0.0 + 11 +14290.0 + 21 +12854.0 + 31 +0.0 + 0 +INSERT + 5 +255 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +12815.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +256 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +14290.0 + 20 +12855.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +257 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +14246.25 + 20 +12710.416667 + 30 +0.0 + 40 +87.5 + 1 +1 + 50 +90.0 + 72 + 1 + 11 +14202.5 + 21 +12725.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +258 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12815.0 + 30 +0.0 + 0 +POINT + 5 +259 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +13590.0 + 20 +12855.0 + 30 +0.0 + 0 +POINT + 5 +25A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +14290.0 + 20 +12855.0 + 30 +0.0 + 0 +ENDBLK + 5 +25B + 8 +0 + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +POLYLINE + 5 +25C + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2061 + 8 +0 + 10 +500.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +2062 + 8 +0 + 10 +20900.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +2063 + 8 +0 + 10 +20900.0 + 20 +14725.0 + 30 +0.0 + 0 +VERTEX + 5 +2064 + 8 +0 + 10 +500.0 + 20 +14725.0 + 30 +0.0 + 0 +SEQEND + 5 +2065 + 8 +0 + 0 +POLYLINE + 5 +262 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2066 + 8 +0 + 10 +20900.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +2067 + 8 +0 + 10 +16275.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +2068 + 8 +0 + 10 +16275.0 + 20 +125.0 + 30 +0.0 + 0 +SEQEND + 5 +2069 + 8 +0 + 0 +POLYLINE + 5 +267 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +206A + 8 +0 + 10 +18650.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +206B + 8 +0 + 10 +18650.0 + 20 +1495.0 + 30 +0.0 + 0 +SEQEND + 5 +206C + 8 +0 + 0 +POLYLINE + 5 +26B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +206D + 8 +0 + 10 +17525.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +206E + 8 +0 + 10 +17525.0 + 20 +1500.0 + 30 +0.0 + 0 +SEQEND + 5 +206F + 8 +0 + 0 +POLYLINE + 5 +26F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2070 + 8 +0 + 10 +17525.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +2071 + 8 +0 + 10 +20900.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +2072 + 8 +0 + 0 +POLYLINE + 5 +273 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2073 + 8 +0 + 10 +17525.0 + 20 +1125.0 + 30 +0.0 + 0 +VERTEX + 5 +2074 + 8 +0 + 10 +20900.0 + 20 +1125.0 + 30 +0.0 + 0 +SEQEND + 5 +2075 + 8 +0 + 0 +POLYLINE + 5 +277 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2076 + 8 +0 + 10 +17525.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +2077 + 8 +0 + 10 +16275.0 + 20 +250.0 + 30 +0.0 + 0 +SEQEND + 5 +2078 + 8 +0 + 0 +POLYLINE + 5 +27B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2079 + 8 +0 + 10 +17525.0 + 20 +375.0 + 30 +0.0 + 0 +VERTEX + 5 +207A + 8 +0 + 10 +16275.0 + 20 +375.0 + 30 +0.0 + 0 +SEQEND + 5 +207B + 8 +0 + 0 +POLYLINE + 5 +27F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +207C + 8 +0 + 10 +17525.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +207D + 8 +0 + 10 +16275.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +207E + 8 +0 + 0 +POLYLINE + 5 +283 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +207F + 8 +0 + 10 +17525.0 + 20 +625.0 + 30 +0.0 + 0 +VERTEX + 5 +2080 + 8 +0 + 10 +16275.0 + 20 +625.0 + 30 +0.0 + 0 +SEQEND + 5 +2081 + 8 +0 + 0 +POLYLINE + 5 +287 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2082 + 8 +0 + 10 +17525.0 + 20 +750.0 + 30 +0.0 + 0 +VERTEX + 5 +2083 + 8 +0 + 10 +16275.0 + 20 +750.0 + 30 +0.0 + 0 +SEQEND + 5 +2084 + 8 +0 + 0 +POLYLINE + 5 +28B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2085 + 8 +0 + 10 +17525.0 + 20 +875.0 + 30 +0.0 + 0 +VERTEX + 5 +2086 + 8 +0 + 10 +16275.0 + 20 +875.0 + 30 +0.0 + 0 +SEQEND + 5 +2087 + 8 +0 + 0 +POLYLINE + 5 +28F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2088 + 8 +0 + 10 +17525.0 + 20 +1000.0 + 30 +0.0 + 0 +VERTEX + 5 +2089 + 8 +0 + 10 +16275.0 + 20 +1000.0 + 30 +0.0 + 0 +SEQEND + 5 +208A + 8 +0 + 0 +POLYLINE + 5 +293 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +208B + 8 +0 + 10 +17525.0 + 20 +1125.0 + 30 +0.0 + 0 +VERTEX + 5 +208C + 8 +0 + 10 +16275.0 + 20 +1125.0 + 30 +0.0 + 0 +SEQEND + 5 +208D + 8 +0 + 0 +POLYLINE + 5 +297 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +208E + 8 +0 + 10 +18650.0 + 20 +1375.0 + 30 +0.0 + 0 +VERTEX + 5 +208F + 8 +0 + 10 +20901.604101 + 20 +1375.0 + 30 +0.0 + 0 +SEQEND + 5 +2090 + 8 +0 + 0 +TEXT + 5 +29B + 8 +LEGENDE-35 + 10 +18745.266644 + 20 +1210.264338 + 30 +0.0 + 40 +87.5 + 1 +MASSTAB 1:25 + 0 +TEXT + 5 +29C + 8 +LEGENDE-35 + 10 +18730.0 + 20 +260.0 + 30 +0.0 + 40 +87.5 + 1 +Name + 0 +TEXT + 5 +29D + 8 +LEGENDE-35 + 10 +17705.0 + 20 +225.0 + 30 +0.0 + 40 +87.5 + 1 +001 + 0 +POLYLINE + 5 +29E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +2091 + 8 +0 + 10 +20525.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +2092 + 8 +0 + 10 +20525.0 + 20 +495.0 + 30 +0.0 + 0 +SEQEND + 5 +2093 + 8 +0 + 0 +TEXT + 5 +2A2 + 8 +LEGENDE-35 + 10 +20580.0 + 20 +365.0 + 30 +0.0 + 40 +87.5 + 1 +Blatt + 41 +0.75 + 0 +POLYLINE + 5 +2A3 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2094 + 8 +PE-FOLIE + 10 +4125.0 + 20 +4512.5 + 30 +0.0 + 0 +VERTEX + 5 +2095 + 8 +PE-FOLIE + 10 +16990.0 + 20 +4512.5 + 30 +0.0 + 0 +SEQEND + 5 +2096 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +2A7 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2097 + 8 +MAUERWERK + 10 +4125.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +2098 + 8 +MAUERWERK + 10 +4490.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +2099 + 8 +MAUERWERK + 10 +4490.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +209A + 8 +MAUERWERK + 10 +4125.0 + 20 +5740.0 + 30 +0.0 + 0 +SEQEND + 5 +209B + 8 +MAUERWERK + 0 +POLYLINE + 5 +2AD + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +209C + 8 +PE-FOLIE + 10 +4225.684022 + 20 +5752.778177 + 30 +0.0 + 0 +VERTEX + 5 +209D + 8 +PE-FOLIE + 10 +4490.0 + 20 +5752.223381 + 30 +0.0 + 0 +SEQEND + 5 +209E + 8 +PE-FOLIE + 0 +POLYLINE + 5 +2B1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +209F + 8 +HOLZ + 10 +4217.5 + 20 +5765.0 + 30 +0.0 + 0 +VERTEX + 5 +20A0 + 8 +HOLZ + 10 +4397.5 + 20 +5765.0 + 30 +0.0 + 0 +VERTEX + 5 +20A1 + 8 +HOLZ + 10 +4397.5 + 20 +5945.0 + 30 +0.0 + 0 +VERTEX + 5 +20A2 + 8 +HOLZ + 10 +4217.5 + 20 +5945.0 + 30 +0.0 + 0 +SEQEND + 5 +20A3 + 8 +HOLZ + 0 +POLYLINE + 5 +2B7 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20A4 + 8 +DECKEN + 10 +4125.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +20A5 + 8 +DECKEN + 10 +4125.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +20A6 + 8 +DECKEN + 10 +4490.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +20A7 + 8 +DECKEN + 10 +4490.0 + 20 +4340.0 + 30 +0.0 + 0 +VERTEX + 5 +20A8 + 8 +DECKEN + 10 +16625.0 + 20 +4340.0 + 30 +0.0 + 0 +VERTEX + 5 +20A9 + 8 +DECKEN + 10 +16625.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +20AA + 8 +DECKEN + 10 +16990.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +20AB + 8 +DECKEN + 10 +16990.0 + 20 +4500.0 + 30 +0.0 + 0 +SEQEND + 5 +20AC + 8 +DECKEN + 0 +POLYLINE + 5 +2C1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20AD + 8 +HOLZ + 10 +7082.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +20AE + 8 +HOLZ + 10 +7282.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +20AF + 8 +HOLZ + 10 +7282.5 + 20 +7735.0 + 30 +0.0 + 0 +VERTEX + 5 +20B0 + 8 +HOLZ + 10 +7082.5 + 20 +7735.0 + 30 +0.0 + 0 +SEQEND + 5 +20B1 + 8 +HOLZ + 0 +POLYLINE + 5 +2C7 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20B2 + 8 +HOLZ + 10 +4217.5 + 20 +5909.624648 + 30 +0.0 + 0 +VERTEX + 5 +20B3 + 8 +HOLZ + 10 +3804.997602 + 20 +5651.864542 + 30 +0.0 + 0 +VERTEX + 5 +20B4 + 8 +HOLZ + 10 +3711.310187 + 20 +5801.381599 + 30 +0.0 + 0 +VERTEX + 5 +20B5 + 8 +HOLZ + 10 +3790.312391 + 20 +5854.940316 + 30 +0.0 + 0 +VERTEX + 5 +20B6 + 8 +HOLZ + 10 +10557.5 + 20 +10083.548452 + 30 +0.0 + 0 +SEQEND + 5 +20B7 + 8 +HOLZ + 0 +POLYLINE + 5 +2CE + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20B8 + 8 +HOLZ + 10 +14032.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +20B9 + 8 +HOLZ + 10 +13832.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +20BA + 8 +HOLZ + 10 +13832.5 + 20 +7735.0 + 30 +0.0 + 0 +VERTEX + 5 +20BB + 8 +HOLZ + 10 +14032.5 + 20 +7735.0 + 30 +0.0 + 0 +SEQEND + 5 +20BC + 8 +HOLZ + 0 +POLYLINE + 5 +2D4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20BD + 8 +HOLZ + 10 +16897.5 + 20 +5765.0 + 30 +0.0 + 0 +VERTEX + 5 +20BE + 8 +HOLZ + 10 +16717.5 + 20 +5765.0 + 30 +0.0 + 0 +VERTEX + 5 +20BF + 8 +HOLZ + 10 +16717.5 + 20 +5945.0 + 30 +0.0 + 0 +VERTEX + 5 +20C0 + 8 +HOLZ + 10 +16897.5 + 20 +5945.0 + 30 +0.0 + 0 +SEQEND + 5 +20C1 + 8 +HOLZ + 0 +POLYLINE + 5 +2DA + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20C2 + 8 +MAUERWERK + 10 +16990.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +20C3 + 8 +MAUERWERK + 10 +16625.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +20C4 + 8 +MAUERWERK + 10 +16625.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +20C5 + 8 +MAUERWERK + 10 +16990.0 + 20 +5740.0 + 30 +0.0 + 0 +SEQEND + 5 +20C6 + 8 +MAUERWERK + 0 +POLYLINE + 5 +2E0 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20C7 + 8 +PE-FOLIE + 10 +16889.315978 + 20 +5752.778177 + 30 +0.0 + 0 +VERTEX + 5 +20C8 + 8 +PE-FOLIE + 10 +16625.0 + 20 +5752.223381 + 30 +0.0 + 0 +SEQEND + 5 +20C9 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +2E4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20CA + 8 +HOLZ + 10 +10477.5 + 20 +9596.0 + 30 +0.0 + 0 +VERTEX + 5 +20CB + 8 +HOLZ + 10 +10477.5 + 20 +9856.0 + 30 +0.0 + 0 +VERTEX + 5 +20CC + 8 +HOLZ + 10 +10637.5 + 20 +9856.0 + 30 +0.0 + 0 +VERTEX + 5 +20CD + 8 +HOLZ + 10 +10637.5 + 20 +9596.0 + 30 +0.0 + 0 +SEQEND + 5 +20CE + 8 +HOLZ + 0 +POLYLINE + 5 +2EA + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20CF + 8 +HOLZ + 10 +10557.5 + 20 +9871.296339 + 30 +0.0 + 0 +VERTEX + 5 +20D0 + 8 +HOLZ + 10 +10533.020741 + 20 +9856.0 + 30 +0.0 + 0 +SEQEND + 5 +20D1 + 8 +HOLZ + 0 +POLYLINE + 5 +2EE + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20D2 + 8 +HOLZ + 10 +10477.5 + 20 +9821.306791 + 30 +0.0 + 0 +VERTEX + 5 +20D3 + 8 +HOLZ + 10 +7138.711204 + 20 +7735.0 + 30 +0.0 + 0 +SEQEND + 5 +20D4 + 8 +HOLZ + 0 +POLYLINE + 5 +2F2 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20D5 + 8 +HOLZ + 10 +10557.5 + 20 +9871.296339 + 30 +0.0 + 0 +VERTEX + 5 +20D6 + 8 +HOLZ + 10 +10581.979259 + 20 +9856.0 + 30 +0.0 + 0 +SEQEND + 5 +20D7 + 8 +HOLZ + 0 +POLYLINE + 5 +2F6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20D8 + 8 +HOLZ + 10 +10637.5 + 20 +9821.306791 + 30 +0.0 + 0 +VERTEX + 5 +20D9 + 8 +HOLZ + 10 +13976.288796 + 20 +7735.0 + 30 +0.0 + 0 +SEQEND + 5 +20DA + 8 +HOLZ + 0 +POINT + 5 +2FA + 8 +HOLZ + 10 +6441.068013 + 20 +4525.0 + 30 +0.0 + 0 +POINT + 5 +2FB + 8 +HOLZ + 10 +8502.789103 + 20 +4525.0 + 30 +0.0 + 0 +POINT + 5 +2FC + 8 +HOLZ + 10 +10564.510193 + 20 +4525.0 + 30 +0.0 + 0 +POINT + 5 +2FD + 8 +HOLZ + 10 +12626.231282 + 20 +4525.0 + 30 +0.0 + 0 +POINT + 5 +2FE + 8 +HOLZ + 10 +14687.952372 + 20 +4525.0 + 30 +0.0 + 0 +POINT + 5 +2FF + 8 +HOLZ + 10 +16625.0 + 20 +4649.673462 + 30 +0.0 + 0 +POINT + 5 +300 + 8 +HOLZ + 10 +14618.605449 + 20 +4705.0 + 30 +0.0 + 0 +POINT + 5 +301 + 8 +HOLZ + 10 +12556.884359 + 20 +4705.0 + 30 +0.0 + 0 +POINT + 5 +302 + 8 +HOLZ + 10 +10495.163269 + 20 +4705.0 + 30 +0.0 + 0 +POINT + 5 +303 + 8 +HOLZ + 10 +8433.442179 + 20 +4705.0 + 30 +0.0 + 0 +POINT + 5 +304 + 8 +HOLZ + 10 +6371.72109 + 20 +4705.0 + 30 +0.0 + 0 +POLYLINE + 5 +305 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20DB + 8 +HOLZ + 10 +5816.944191 + 20 +4705.004962 + 30 +0.0 + 0 +VERTEX + 5 +20DC + 8 +HOLZ + 10 +4490.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +20DD + 8 +HOLZ + 10 +4490.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +20DE + 8 +HOLZ + 0 +POLYLINE + 5 +30A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20DF + 8 +HOLZ + 10 +5827.147847 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +20E0 + 8 +HOLZ + 10 +5827.147628 + 20 +4704.999605 + 30 +0.0 + 0 +SEQEND + 5 +20E1 + 8 +HOLZ + 0 +POLYLINE + 5 +30E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20E2 + 8 +HOLZ + 10 +7082.5 + 20 +6974.383492 + 30 +0.0 + 0 +VERTEX + 5 +20E3 + 8 +HOLZ + 10 +5851.42476 + 20 +4748.886988 + 30 +0.0 + 0 +SEQEND + 5 +20E4 + 8 +HOLZ + 0 +POLYLINE + 5 +312 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20E5 + 8 +HOLZ + 10 +7082.367224 + 20 +6974.411882 + 30 +0.0 + 0 +VERTEX + 5 +20E6 + 8 +HOLZ + 10 +7112.367224 + 20 +6974.411882 + 30 +0.0 + 0 +SEQEND + 5 +20E7 + 8 +HOLZ + 0 +POLYLINE + 5 +316 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20E8 + 8 +HOLZ + 10 +7082.661895 + 20 +6599.209373 + 30 +0.0 + 0 +VERTEX + 5 +20E9 + 8 +HOLZ + 10 +7112.367224 + 20 +6974.411882 + 30 +0.0 + 0 +SEQEND + 5 +20EA + 8 +HOLZ + 0 +POLYLINE + 5 +31A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20EB + 8 +HOLZ + 10 +7082.5 + 20 +6602.538277 + 30 +0.0 + 0 +VERTEX + 5 +20EC + 8 +HOLZ + 10 +7082.5 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +20ED + 8 +HOLZ + 0 +POLYLINE + 5 +31E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20EE + 8 +HOLZ + 10 +5849.618529 + 20 +4751.014033 + 30 +0.0 + 0 +VERTEX + 5 +20EF + 8 +HOLZ + 10 +5855.0 + 20 +4751.014033 + 30 +0.0 + 0 +SEQEND + 5 +20F0 + 8 +HOLZ + 0 +POLYLINE + 5 +322 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20F1 + 8 +HOLZ + 10 +5851.42476 + 20 +4748.886988 + 30 +0.0 + 0 +VERTEX + 5 +20F2 + 8 +HOLZ + 10 +5960.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +20F3 + 8 +HOLZ + 0 +POLYLINE + 5 +326 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20F4 + 8 +HOLZ + 10 +5931.352872 + 20 +4893.378346 + 30 +0.0 + 0 +VERTEX + 5 +20F5 + 8 +HOLZ + 10 +6110.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +20F6 + 8 +HOLZ + 0 +POLYLINE + 5 +32A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20F7 + 8 +DETAILS + 10 +5915.076976 + 20 +4675.125425 + 30 +0.0 + 0 +VERTEX + 5 +20F8 + 8 +DETAILS + 10 +5937.538667 + 20 +4680.786371 + 30 +0.0 + 0 +SEQEND + 5 +20F9 + 8 +DETAILS + 0 +POLYLINE + 5 +32E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20FA + 8 +DETAILS + 10 +5950.234431 + 20 +4684.49526 + 30 +0.0 + 0 +VERTEX + 5 +20FB + 8 +DETAILS + 10 +5968.985132 + 20 +4689.37543 + 30 +0.0 + 0 +SEQEND + 5 +20FC + 8 +DETAILS + 0 +POLYLINE + 5 +332 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +20FD + 8 +DETAILS + 10 +5978.555795 + 20 +4691.522709 + 30 +0.0 + 0 +VERTEX + 5 +20FE + 8 +DETAILS + 10 +5995.157911 + 20 +4695.426764 + 30 +0.0 + 0 +SEQEND + 5 +20FF + 8 +DETAILS + 0 +POLYLINE + 5 +336 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2100 + 8 +DETAILS + 10 +6002.18946 + 20 +4696.793209 + 30 +0.0 + 0 +VERTEX + 5 +2101 + 8 +DETAILS + 10 +6017.81506 + 20 +4700.892544 + 30 +0.0 + 0 +SEQEND + 5 +2102 + 8 +DETAILS + 0 +POLYLINE + 5 +33A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2103 + 8 +DETAILS + 10 +5910.389276 + 20 +4679.224761 + 30 +0.0 + 0 +VERTEX + 5 +2104 + 8 +DETAILS + 10 +5900.818613 + 20 +4691.132263 + 30 +0.0 + 0 +SEQEND + 5 +2105 + 8 +DETAILS + 0 +POLYLINE + 5 +33E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2106 + 8 +DETAILS + 10 +5895.545024 + 20 +4697.574043 + 30 +0.0 + 0 +VERTEX + 5 +2107 + 8 +DETAILS + 10 +5886.169625 + 20 +4709.091158 + 30 +0.0 + 0 +SEQEND + 5 +2108 + 8 +DETAILS + 0 +POLYLINE + 5 +342 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2109 + 8 +DETAILS + 10 +5880.896036 + 20 +4714.16655 + 30 +0.0 + 0 +VERTEX + 5 +210A + 8 +DETAILS + 10 +5869.958135 + 20 +4726.854887 + 30 +0.0 + 0 +SEQEND + 5 +210B + 8 +DETAILS + 0 +POLYLINE + 5 +346 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +210C + 8 +HOLZ + 10 +5851.42476 + 20 +4748.886988 + 30 +0.0 + 0 +VERTEX + 5 +210D + 8 +HOLZ + 10 +5849.618529 + 20 +4751.014033 + 30 +0.0 + 0 +SEQEND + 5 +210E + 8 +HOLZ + 0 +POLYLINE + 5 +34A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +210F + 8 +HOLZ + 10 +6023.95213 + 20 +4702.434546 + 30 +0.0 + 0 +VERTEX + 5 +2110 + 8 +HOLZ + 10 +6032.574688 + 20 +4704.574379 + 30 +0.0 + 0 +VERTEX + 5 +2111 + 8 +HOLZ + 10 +7082.5 + 20 +6602.538277 + 30 +0.0 + 0 +SEQEND + 5 +2112 + 8 +HOLZ + 0 +POLYLINE + 5 +34F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2113 + 8 +HOLZ + 10 +5872.708223 + 20 +4704.999538 + 30 +0.0 + 0 +VERTEX + 5 +2114 + 8 +HOLZ + 10 +5555.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2115 + 8 +HOLZ + 10 +5555.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +2116 + 8 +HOLZ + 10 +5855.0 + 20 +4750.0 + 30 +0.0 + 0 +SEQEND + 5 +2117 + 8 +HOLZ + 0 +POLYLINE + 5 +355 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2118 + 8 +HOLZ + 10 +14032.5 + 20 +6974.383492 + 30 +0.0 + 0 +VERTEX + 5 +2119 + 8 +HOLZ + 10 +15263.57524 + 20 +4748.886988 + 30 +0.0 + 0 +SEQEND + 5 +211A + 8 +HOLZ + 0 +POLYLINE + 5 +359 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +211B + 8 +HOLZ + 10 +15091.04787 + 20 +4702.434546 + 30 +0.0 + 0 +VERTEX + 5 +211C + 8 +HOLZ + 10 +15082.425312 + 20 +4704.574379 + 30 +0.0 + 0 +VERTEX + 5 +211D + 8 +HOLZ + 10 +14032.5 + 20 +6602.538277 + 30 +0.0 + 0 +SEQEND + 5 +211E + 8 +HOLZ + 0 +POLYLINE + 5 +35E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +211F + 8 +HOLZ + 10 +14032.392092 + 20 +6600.0 + 30 +0.0 + 0 +VERTEX + 5 +2120 + 8 +HOLZ + 10 +14002.632776 + 20 +6974.411882 + 30 +0.0 + 0 +SEQEND + 5 +2121 + 8 +HOLZ + 0 +POLYLINE + 5 +362 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2122 + 8 +HOLZ + 10 +15242.291777 + 20 +4704.999538 + 30 +0.0 + 0 +VERTEX + 5 +2123 + 8 +HOLZ + 10 +15560.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2124 + 8 +HOLZ + 10 +15560.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +2125 + 8 +HOLZ + 10 +15260.0 + 20 +4750.0 + 30 +0.0 + 0 +SEQEND + 5 +2126 + 8 +HOLZ + 0 +POLYLINE + 5 +368 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2127 + 8 +HOLZ + 10 +15183.647128 + 20 +4893.378346 + 30 +0.0 + 0 +VERTEX + 5 +2128 + 8 +HOLZ + 10 +15005.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +2129 + 8 +HOLZ + 0 +POLYLINE + 5 +36C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +212A + 8 +HOLZ + 10 +15263.57524 + 20 +4748.886988 + 30 +0.0 + 0 +VERTEX + 5 +212B + 8 +HOLZ + 10 +15155.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +212C + 8 +HOLZ + 0 +POLYLINE + 5 +370 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +212D + 8 +HOLZ + 10 +14032.632776 + 20 +6974.411882 + 30 +0.0 + 0 +VERTEX + 5 +212E + 8 +HOLZ + 10 +14002.632776 + 20 +6974.411882 + 30 +0.0 + 0 +SEQEND + 5 +212F + 8 +HOLZ + 0 +POLYLINE + 5 +374 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2130 + 8 +HOLZ + 10 +14032.5 + 20 +6602.538277 + 30 +0.0 + 0 +VERTEX + 5 +2131 + 8 +HOLZ + 10 +14032.5 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2132 + 8 +HOLZ + 0 +POLYLINE + 5 +378 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2133 + 8 +HOLZ + 10 +4490.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +2134 + 8 +HOLZ + 10 +16625.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +2135 + 8 +HOLZ + 10 +16625.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2136 + 8 +HOLZ + 10 +15242.292001 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2137 + 8 +HOLZ + 0 +POLYLINE + 5 +37E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2138 + 8 +HOLZ + 10 +10557.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +2139 + 8 +HOLZ + 10 +7282.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +213A + 8 +HOLZ + 10 +7282.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +213B + 8 +HOLZ + 10 +7082.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +213C + 8 +HOLZ + 10 +7082.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +213D + 8 +HOLZ + 10 +6446.963223 + 20 +7515.0 + 30 +0.0 + 0 +SEQEND + 5 +213E + 8 +HOLZ + 0 +POLYLINE + 5 +386 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +213F + 8 +HOLZ + 10 +6190.909699 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +2140 + 8 +HOLZ + 10 +10557.5 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +2141 + 8 +HOLZ + 0 +POLYLINE + 5 +38A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2142 + 8 +DETAILS + 10 +6545.0 + 20 +7365.0 + 30 +0.0 + 0 +VERTEX + 5 +2143 + 8 +DETAILS + 10 +6580.0 + 20 +7385.0 + 30 +0.0 + 0 +SEQEND + 5 +2144 + 8 +DETAILS + 0 +POLYLINE + 5 +38E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2145 + 8 +HOLZ + 10 +7082.5 + 20 +7699.875341 + 30 +0.0 + 0 +VERTEX + 5 +2146 + 8 +HOLZ + 10 +6786.637608 + 20 +7515.0 + 30 +0.0 + 0 +SEQEND + 5 +2147 + 8 +HOLZ + 0 +POLYLINE + 5 +392 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2148 + 8 +HOLZ + 10 +6530.584083 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +2149 + 8 +HOLZ + 10 +4274.112397 + 20 +5945.0 + 30 +0.0 + 0 +SEQEND + 5 +214A + 8 +HOLZ + 0 +POLYLINE + 5 +396 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +214B + 8 +DETAILS + 10 +6595.0 + 20 +7395.0 + 30 +0.0 + 0 +VERTEX + 5 +214C + 8 +DETAILS + 10 +6630.0 + 20 +7415.0 + 30 +0.0 + 0 +SEQEND + 5 +214D + 8 +DETAILS + 0 +POLYLINE + 5 +39A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +214E + 8 +DETAILS + 10 +6645.0 + 20 +7425.0 + 30 +0.0 + 0 +VERTEX + 5 +214F + 8 +DETAILS + 10 +6680.0 + 20 +7445.0 + 30 +0.0 + 0 +SEQEND + 5 +2150 + 8 +DETAILS + 0 +POLYLINE + 5 +39E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2151 + 8 +DETAILS + 10 +6695.0 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +2152 + 8 +DETAILS + 10 +6730.0 + 20 +7475.0 + 30 +0.0 + 0 +SEQEND + 5 +2153 + 8 +DETAILS + 0 +POLYLINE + 5 +3A2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2154 + 8 +DETAILS + 10 +6745.0 + 20 +7485.0 + 30 +0.0 + 0 +VERTEX + 5 +2155 + 8 +DETAILS + 10 +6780.0 + 20 +7505.0 + 30 +0.0 + 0 +SEQEND + 5 +2156 + 8 +DETAILS + 0 +POLYLINE + 5 +3A6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2157 + 8 +HOLZ + 10 +7082.5 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +2158 + 8 +HOLZ + 10 +7082.5 + 20 +6974.383492 + 30 +0.0 + 0 +SEQEND + 5 +2159 + 8 +HOLZ + 0 +POLYLINE + 5 +3AA + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +215A + 8 +HOLZ + 10 +7282.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +215B + 8 +HOLZ + 10 +7082.5 + 20 +7495.0 + 30 +0.0 + 0 +SEQEND + 5 +215C + 8 +HOLZ + 0 +POLYLINE + 5 +3AE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +215D + 8 +DETAILS + 10 +7282.396934 + 20 +7364.082396 + 30 +0.0 + 0 +VERTEX + 5 +215E + 8 +DETAILS + 10 +7282.396934 + 20 +7389.961937 + 30 +0.0 + 0 +SEQEND + 5 +215F + 8 +DETAILS + 0 +POLYLINE + 5 +3B2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2160 + 8 +DETAILS + 10 +10317.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2161 + 8 +DETAILS + 10 +10317.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2162 + 8 +DETAILS + 0 +POLYLINE + 5 +3B6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2163 + 8 +DETAILS + 10 +10317.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2164 + 8 +DETAILS + 10 +10317.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2165 + 8 +DETAILS + 0 +POLYLINE + 5 +3BA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2166 + 8 +DETAILS + 10 +10317.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2167 + 8 +DETAILS + 10 +10317.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2168 + 8 +DETAILS + 0 +POLYLINE + 5 +3BE + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2169 + 8 +HOLZ + 10 +10477.5 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +216A + 8 +HOLZ + 10 +10477.5 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +216B + 8 +HOLZ + 0 +POLYLINE + 5 +3C2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +216C + 8 +DETAILS + 10 +10477.555127 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +216D + 8 +DETAILS + 10 +10477.555127 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +216E + 8 +DETAILS + 0 +POLYLINE + 5 +3C6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +216F + 8 +DETAILS + 10 +10477.555127 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2170 + 8 +DETAILS + 10 +10477.555127 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2171 + 8 +DETAILS + 0 +POLYLINE + 5 +3CA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2172 + 8 +DETAILS + 10 +10477.555127 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2173 + 8 +DETAILS + 10 +10477.555127 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2174 + 8 +DETAILS + 0 +POLYLINE + 5 +3CE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2175 + 8 +DETAILS + 10 +9567.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2176 + 8 +DETAILS + 10 +9567.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2177 + 8 +DETAILS + 0 +POLYLINE + 5 +3D2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2178 + 8 +DETAILS + 10 +9567.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2179 + 8 +DETAILS + 10 +9567.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +217A + 8 +DETAILS + 0 +POLYLINE + 5 +3D6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +217B + 8 +DETAILS + 10 +9567.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +217C + 8 +DETAILS + 10 +9567.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +217D + 8 +DETAILS + 0 +POLYLINE + 5 +3DA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +217E + 8 +DETAILS + 10 +9407.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +217F + 8 +DETAILS + 10 +9407.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2180 + 8 +DETAILS + 0 +POLYLINE + 5 +3DE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2181 + 8 +DETAILS + 10 +9407.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2182 + 8 +DETAILS + 10 +9407.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2183 + 8 +DETAILS + 0 +POLYLINE + 5 +3E2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2184 + 8 +DETAILS + 10 +9407.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2185 + 8 +DETAILS + 10 +9407.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2186 + 8 +DETAILS + 0 +POLYLINE + 5 +3E6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2187 + 8 +DETAILS + 10 +8657.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2188 + 8 +DETAILS + 10 +8657.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2189 + 8 +DETAILS + 0 +POLYLINE + 5 +3EA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +218A + 8 +DETAILS + 10 +8657.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +218B + 8 +DETAILS + 10 +8657.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +218C + 8 +DETAILS + 0 +POLYLINE + 5 +3EE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +218D + 8 +DETAILS + 10 +8657.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +218E + 8 +DETAILS + 10 +8657.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +218F + 8 +DETAILS + 0 +POLYLINE + 5 +3F2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2190 + 8 +DETAILS + 10 +8497.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2191 + 8 +DETAILS + 10 +8497.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2192 + 8 +DETAILS + 0 +POLYLINE + 5 +3F6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2193 + 8 +DETAILS + 10 +8497.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2194 + 8 +DETAILS + 10 +8497.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2195 + 8 +DETAILS + 0 +POLYLINE + 5 +3FA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2196 + 8 +DETAILS + 10 +8497.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2197 + 8 +DETAILS + 10 +8497.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2198 + 8 +DETAILS + 0 +POLYLINE + 5 +3FE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2199 + 8 +DETAILS + 10 +7897.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +219A + 8 +DETAILS + 10 +7897.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +219B + 8 +DETAILS + 0 +POLYLINE + 5 +402 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +219C + 8 +DETAILS + 10 +7897.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +219D + 8 +DETAILS + 10 +7897.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +219E + 8 +DETAILS + 0 +POLYLINE + 5 +406 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +219F + 8 +DETAILS + 10 +7897.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21A0 + 8 +DETAILS + 10 +7897.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21A1 + 8 +DETAILS + 0 +POLYLINE + 5 +40A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21A2 + 8 +DETAILS + 10 +7737.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21A3 + 8 +DETAILS + 10 +7737.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21A4 + 8 +DETAILS + 0 +POLYLINE + 5 +40E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21A5 + 8 +DETAILS + 10 +7737.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +21A6 + 8 +DETAILS + 10 +7737.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +21A7 + 8 +DETAILS + 0 +POLYLINE + 5 +412 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21A8 + 8 +DETAILS + 10 +7737.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +21A9 + 8 +DETAILS + 10 +7737.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +21AA + 8 +DETAILS + 0 +POLYLINE + 5 +416 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21AB + 8 +DETAILS + 10 +7282.323786 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +21AC + 8 +DETAILS + 10 +7282.323786 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +21AD + 8 +DETAILS + 0 +POLYLINE + 5 +41A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21AE + 8 +DETAILS + 10 +7282.323786 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21AF + 8 +DETAILS + 10 +7282.323786 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21B0 + 8 +DETAILS + 0 +POLYLINE + 5 +41E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21B1 + 8 +DETAILS + 10 +7442.323786 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21B2 + 8 +DETAILS + 10 +7442.323786 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21B3 + 8 +DETAILS + 0 +POLYLINE + 5 +422 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21B4 + 8 +DETAILS + 10 +7442.323786 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +21B5 + 8 +DETAILS + 10 +7442.323786 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +21B6 + 8 +DETAILS + 0 +POLYLINE + 5 +426 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21B7 + 8 +DETAILS + 10 +7442.396934 + 20 +7364.082396 + 30 +0.0 + 0 +VERTEX + 5 +21B8 + 8 +DETAILS + 10 +7442.396934 + 20 +7389.961937 + 30 +0.0 + 0 +SEQEND + 5 +21B9 + 8 +DETAILS + 0 +POLYLINE + 5 +42A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21BA + 8 +DETAILS + 10 +7081.668956 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21BB + 8 +DETAILS + 10 +7081.668956 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21BC + 8 +DETAILS + 0 +POLYLINE + 5 +42E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21BD + 8 +DETAILS + 10 +7081.668956 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +21BE + 8 +DETAILS + 10 +7081.668956 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +21BF + 8 +DETAILS + 0 +POLYLINE + 5 +432 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21C0 + 8 +DETAILS + 10 +7081.742105 + 20 +7364.082396 + 30 +0.0 + 0 +VERTEX + 5 +21C1 + 8 +DETAILS + 10 +7081.742105 + 20 +7389.961937 + 30 +0.0 + 0 +SEQEND + 5 +21C2 + 8 +DETAILS + 0 +POLYLINE + 5 +436 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +4.425 + 41 +4.425 + 0 +VERTEX + 5 +21C3 + 8 +DETAILS + 10 +6472.342783 + 20 +7441.053384 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +21C4 + 8 +DETAILS + 10 +6492.292783 + 20 +7441.053384 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +21C5 + 8 +DETAILS + 0 +POLYLINE + 5 +43A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +4.35 + 41 +4.35 + 0 +VERTEX + 5 +21C6 + 8 +DETAILS + 10 +7146.51 + 20 +7425.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +21C7 + 8 +DETAILS + 10 +7158.49 + 20 +7425.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +21C8 + 8 +DETAILS + 0 +POLYLINE + 5 +43E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +4.35 + 41 +4.35 + 0 +VERTEX + 5 +21C9 + 8 +DETAILS + 10 +7206.51 + 20 +7425.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +21CA + 8 +DETAILS + 10 +7218.49 + 20 +7425.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +21CB + 8 +DETAILS + 0 +POLYLINE + 5 +442 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21CC + 8 +HOLZ + 10 +14924.090301 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +21CD + 8 +HOLZ + 10 +10557.5 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +21CE + 8 +HOLZ + 0 +POLYLINE + 5 +446 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21CF + 8 +HOLZ + 10 +10557.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +21D0 + 8 +HOLZ + 10 +13832.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +21D1 + 8 +HOLZ + 10 +13832.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +21D2 + 8 +HOLZ + 10 +14032.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +21D3 + 8 +HOLZ + 10 +14032.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +21D4 + 8 +HOLZ + 10 +14668.036777 + 20 +7515.0 + 30 +0.0 + 0 +SEQEND + 5 +21D5 + 8 +HOLZ + 0 +POLYLINE + 5 +44E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21D6 + 8 +HOLZ + 10 +13832.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +21D7 + 8 +HOLZ + 10 +14032.5 + 20 +7495.0 + 30 +0.0 + 0 +SEQEND + 5 +21D8 + 8 +HOLZ + 0 +POLYLINE + 5 +452 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21D9 + 8 +DETAILS + 10 +14520.0 + 20 +7395.0 + 30 +0.0 + 0 +VERTEX + 5 +21DA + 8 +DETAILS + 10 +14485.0 + 20 +7415.0 + 30 +0.0 + 0 +SEQEND + 5 +21DB + 8 +DETAILS + 0 +POLYLINE + 5 +456 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +4.425 + 41 +4.425 + 0 +VERTEX + 5 +21DC + 8 +DETAILS + 10 +14642.657217 + 20 +7441.053384 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +21DD + 8 +DETAILS + 10 +14622.707217 + 20 +7441.053384 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +21DE + 8 +DETAILS + 0 +POLYLINE + 5 +45A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21DF + 8 +DETAILS + 10 +14570.0 + 20 +7365.0 + 30 +0.0 + 0 +VERTEX + 5 +21E0 + 8 +DETAILS + 10 +14535.0 + 20 +7385.0 + 30 +0.0 + 0 +SEQEND + 5 +21E1 + 8 +DETAILS + 0 +POLYLINE + 5 +45E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21E2 + 8 +DETAILS + 10 +14370.0 + 20 +7485.0 + 30 +0.0 + 0 +VERTEX + 5 +21E3 + 8 +DETAILS + 10 +14336.69541 + 20 +7505.0 + 30 +0.0 + 0 +SEQEND + 5 +21E4 + 8 +DETAILS + 0 +POLYLINE + 5 +462 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21E5 + 8 +DETAILS + 10 +14420.0 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +21E6 + 8 +DETAILS + 10 +14385.0 + 20 +7476.807047 + 30 +0.0 + 0 +SEQEND + 5 +21E7 + 8 +DETAILS + 0 +POLYLINE + 5 +466 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21E8 + 8 +DETAILS + 10 +14470.0 + 20 +7425.0 + 30 +0.0 + 0 +VERTEX + 5 +21E9 + 8 +DETAILS + 10 +14435.0 + 20 +7446.929365 + 30 +0.0 + 0 +SEQEND + 5 +21EA + 8 +DETAILS + 0 +POLYLINE + 5 +46A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +4.35 + 41 +4.35 + 0 +VERTEX + 5 +21EB + 8 +DETAILS + 10 +13908.49 + 20 +7425.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +21EC + 8 +DETAILS + 10 +13896.51 + 20 +7425.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +21ED + 8 +DETAILS + 0 +POLYLINE + 5 +46E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +4.35 + 41 +4.35 + 0 +VERTEX + 5 +21EE + 8 +DETAILS + 10 +13968.49 + 20 +7425.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +21EF + 8 +DETAILS + 10 +13956.51 + 20 +7425.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +21F0 + 8 +DETAILS + 0 +POLYLINE + 5 +472 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21F1 + 8 +DETAILS + 10 +14033.257895 + 20 +7364.082396 + 30 +0.0 + 0 +VERTEX + 5 +21F2 + 8 +DETAILS + 10 +14033.257895 + 20 +7389.961937 + 30 +0.0 + 0 +SEQEND + 5 +21F3 + 8 +DETAILS + 0 +POLYLINE + 5 +476 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21F4 + 8 +DETAILS + 10 +14033.331044 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +21F5 + 8 +DETAILS + 10 +14033.331044 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +21F6 + 8 +DETAILS + 0 +POLYLINE + 5 +47A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21F7 + 8 +DETAILS + 10 +14033.331044 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21F8 + 8 +DETAILS + 10 +14033.331044 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21F9 + 8 +DETAILS + 0 +POLYLINE + 5 +47E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21FA + 8 +DETAILS + 10 +13832.676214 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +21FB + 8 +DETAILS + 10 +13832.676214 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +21FC + 8 +DETAILS + 0 +POLYLINE + 5 +482 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21FD + 8 +DETAILS + 10 +13832.676214 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +21FE + 8 +DETAILS + 10 +13832.676214 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +21FF + 8 +DETAILS + 0 +POLYLINE + 5 +486 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2200 + 8 +DETAILS + 10 +13832.603066 + 20 +7364.082396 + 30 +0.0 + 0 +VERTEX + 5 +2201 + 8 +DETAILS + 10 +13832.603066 + 20 +7389.961937 + 30 +0.0 + 0 +SEQEND + 5 +2202 + 8 +DETAILS + 0 +POLYLINE + 5 +48A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2203 + 8 +DETAILS + 10 +13672.676214 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2204 + 8 +DETAILS + 10 +13672.676214 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2205 + 8 +DETAILS + 0 +POLYLINE + 5 +48E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2206 + 8 +DETAILS + 10 +13672.676214 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2207 + 8 +DETAILS + 10 +13672.676214 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2208 + 8 +DETAILS + 0 +POLYLINE + 5 +492 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2209 + 8 +DETAILS + 10 +13672.603066 + 20 +7364.082396 + 30 +0.0 + 0 +VERTEX + 5 +220A + 8 +DETAILS + 10 +13672.603066 + 20 +7389.961937 + 30 +0.0 + 0 +SEQEND + 5 +220B + 8 +DETAILS + 0 +POLYLINE + 5 +496 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +220C + 8 +DETAILS + 10 +13377.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +220D + 8 +DETAILS + 10 +13377.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +220E + 8 +DETAILS + 0 +POLYLINE + 5 +49A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +220F + 8 +DETAILS + 10 +13377.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2210 + 8 +DETAILS + 10 +13377.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2211 + 8 +DETAILS + 0 +POLYLINE + 5 +49E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2212 + 8 +DETAILS + 10 +13377.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2213 + 8 +DETAILS + 10 +13377.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2214 + 8 +DETAILS + 0 +POLYLINE + 5 +4A2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2215 + 8 +DETAILS + 10 +13217.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2216 + 8 +DETAILS + 10 +13217.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2217 + 8 +DETAILS + 0 +POLYLINE + 5 +4A6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2218 + 8 +DETAILS + 10 +13217.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2219 + 8 +DETAILS + 10 +13217.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +221A + 8 +DETAILS + 0 +POLYLINE + 5 +4AA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +221B + 8 +DETAILS + 10 +13217.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +221C + 8 +DETAILS + 10 +13217.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +221D + 8 +DETAILS + 0 +POLYLINE + 5 +4AE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +221E + 8 +DETAILS + 10 +12617.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +221F + 8 +DETAILS + 10 +12617.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2220 + 8 +DETAILS + 0 +POLYLINE + 5 +4B2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2221 + 8 +DETAILS + 10 +12617.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2222 + 8 +DETAILS + 10 +12617.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2223 + 8 +DETAILS + 0 +POLYLINE + 5 +4B6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2224 + 8 +DETAILS + 10 +12617.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2225 + 8 +DETAILS + 10 +12617.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2226 + 8 +DETAILS + 0 +POLYLINE + 5 +4BA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2227 + 8 +DETAILS + 10 +12457.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2228 + 8 +DETAILS + 10 +12457.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2229 + 8 +DETAILS + 0 +POLYLINE + 5 +4BE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +222A + 8 +DETAILS + 10 +12457.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +222B + 8 +DETAILS + 10 +12457.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +222C + 8 +DETAILS + 0 +POLYLINE + 5 +4C2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +222D + 8 +DETAILS + 10 +12457.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +222E + 8 +DETAILS + 10 +12457.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +222F + 8 +DETAILS + 0 +POLYLINE + 5 +4C6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2230 + 8 +DETAILS + 10 +11707.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2231 + 8 +DETAILS + 10 +11707.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2232 + 8 +DETAILS + 0 +POLYLINE + 5 +4CA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2233 + 8 +DETAILS + 10 +11707.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2234 + 8 +DETAILS + 10 +11707.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2235 + 8 +DETAILS + 0 +POLYLINE + 5 +4CE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2236 + 8 +DETAILS + 10 +11707.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2237 + 8 +DETAILS + 10 +11707.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2238 + 8 +DETAILS + 0 +POLYLINE + 5 +4D2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2239 + 8 +DETAILS + 10 +11547.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +223A + 8 +DETAILS + 10 +11547.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +223B + 8 +DETAILS + 0 +POLYLINE + 5 +4D6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +223C + 8 +DETAILS + 10 +11547.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +223D + 8 +DETAILS + 10 +11547.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +223E + 8 +DETAILS + 0 +POLYLINE + 5 +4DA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +223F + 8 +DETAILS + 10 +11547.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2240 + 8 +DETAILS + 10 +11547.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +2241 + 8 +DETAILS + 0 +POLYLINE + 5 +4DE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2242 + 8 +DETAILS + 10 +10637.444873 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2243 + 8 +DETAILS + 10 +10637.444873 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2244 + 8 +DETAILS + 0 +POLYLINE + 5 +4E2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2245 + 8 +DETAILS + 10 +10637.444873 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +2246 + 8 +DETAILS + 10 +10637.444873 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2247 + 8 +DETAILS + 0 +POLYLINE + 5 +4E6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2248 + 8 +DETAILS + 10 +10637.444873 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +2249 + 8 +DETAILS + 10 +10637.444873 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +224A + 8 +DETAILS + 0 +POLYLINE + 5 +4EA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +224B + 8 +DETAILS + 10 +10797.5 + 20 +7366.578903 + 30 +0.0 + 0 +VERTEX + 5 +224C + 8 +DETAILS + 10 +10797.5 + 20 +7396.578903 + 30 +0.0 + 0 +SEQEND + 5 +224D + 8 +DETAILS + 0 +POLYLINE + 5 +4EE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +224E + 8 +DETAILS + 10 +10797.5 + 20 +7419.321326 + 30 +0.0 + 0 +VERTEX + 5 +224F + 8 +DETAILS + 10 +10797.5 + 20 +7449.321326 + 30 +0.0 + 0 +SEQEND + 5 +2250 + 8 +DETAILS + 0 +POLYLINE + 5 +4F2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2251 + 8 +DETAILS + 10 +10797.5 + 20 +7473.337962 + 30 +0.0 + 0 +VERTEX + 5 +2252 + 8 +DETAILS + 10 +10797.5 + 20 +7503.337962 + 30 +0.0 + 0 +SEQEND + 5 +2253 + 8 +DETAILS + 0 +POLYLINE + 5 +4F6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2254 + 8 +HOLZ + 10 +10477.5 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2255 + 8 +HOLZ + 10 +10637.5 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2256 + 8 +HOLZ + 10 +10637.5 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +2257 + 8 +HOLZ + 0 +POLYLINE + 5 +4FB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2258 + 8 +HOLZ + 10 +10637.5 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +2259 + 8 +HOLZ + 10 +10637.5 + 20 +9596.0 + 30 +0.0 + 0 +VERTEX + 5 +225A + 8 +HOLZ + 10 +10477.5 + 20 +9596.0 + 30 +0.0 + 0 +VERTEX + 5 +225B + 8 +HOLZ + 10 +10477.5 + 20 +7515.0 + 30 +0.0 + 0 +SEQEND + 5 +225C + 8 +HOLZ + 0 +POLYLINE + 5 +501 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +225D + 8 +HOLZ + 10 +14032.5 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +225E + 8 +HOLZ + 10 +14032.5 + 20 +6974.383492 + 30 +0.0 + 0 +SEQEND + 5 +225F + 8 +HOLZ + 0 +POLYLINE + 5 +505 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2260 + 8 +HOLZ + 10 +13832.5 + 20 +7495.0 + 30 +0.0 + 0 +VERTEX + 5 +2261 + 8 +HOLZ + 10 +14032.5 + 20 +7495.0 + 30 +0.0 + 0 +SEQEND + 5 +2262 + 8 +HOLZ + 0 +POLYLINE + 5 +509 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2263 + 8 +HOLZ + 10 +14032.5 + 20 +7699.875341 + 30 +0.0 + 0 +VERTEX + 5 +2264 + 8 +HOLZ + 10 +14328.362392 + 20 +7515.0 + 30 +0.0 + 0 +SEQEND + 5 +2265 + 8 +HOLZ + 0 +POLYLINE + 5 +50D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2266 + 8 +HOLZ + 10 +14584.415917 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +2267 + 8 +HOLZ + 10 +16840.887603 + 20 +5945.0 + 30 +0.0 + 0 +SEQEND + 5 +2268 + 8 +HOLZ + 0 +POLYLINE + 5 +511 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2269 + 8 +HOLZ + 10 +7366.802004 + 20 +7877.52091 + 30 +0.0 + 0 +VERTEX + 5 +226A + 8 +HOLZ + 10 +7271.416536 + 20 +8030.169567 + 30 +0.0 + 0 +SEQEND + 5 +226B + 8 +HOLZ + 0 +POLYLINE + 5 +515 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +226C + 8 +DETAILS + 10 +6915.0 + 20 +7605.0 + 30 +0.0 + 0 +VERTEX + 5 +226D + 8 +DETAILS + 10 +6895.0 + 20 +7635.0 + 30 +0.0 + 0 +SEQEND + 5 +226E + 8 +DETAILS + 0 +POLYLINE + 5 +519 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +226F + 8 +DETAILS + 10 +6877.414742 + 20 +7665.410305 + 30 +0.0 + 0 +VERTEX + 5 +2270 + 8 +DETAILS + 10 +6857.414742 + 20 +7695.410305 + 30 +0.0 + 0 +SEQEND + 5 +2271 + 8 +DETAILS + 0 +POLYLINE + 5 +51D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2272 + 8 +DETAILS + 10 +6843.564541 + 20 +7719.608278 + 30 +0.0 + 0 +VERTEX + 5 +2273 + 8 +DETAILS + 10 +6823.564541 + 20 +7749.608278 + 30 +0.0 + 0 +SEQEND + 5 +2274 + 8 +DETAILS + 0 +POLYLINE + 5 +521 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2275 + 8 +DETAILS + 10 +14237.585258 + 20 +7665.410305 + 30 +0.0 + 0 +VERTEX + 5 +2276 + 8 +DETAILS + 10 +14257.585258 + 20 +7695.410305 + 30 +0.0 + 0 +SEQEND + 5 +2277 + 8 +DETAILS + 0 +POLYLINE + 5 +525 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2278 + 8 +DETAILS + 10 +14271.435459 + 20 +7719.608278 + 30 +0.0 + 0 +VERTEX + 5 +2279 + 8 +DETAILS + 10 +14291.435459 + 20 +7749.608278 + 30 +0.0 + 0 +SEQEND + 5 +227A + 8 +DETAILS + 0 +POLYLINE + 5 +529 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +227B + 8 +DETAILS + 10 +14200.0 + 20 +7605.0 + 30 +0.0 + 0 +VERTEX + 5 +227C + 8 +DETAILS + 10 +14220.0 + 20 +7635.0 + 30 +0.0 + 0 +SEQEND + 5 +227D + 8 +DETAILS + 0 +POLYLINE + 5 +52D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +227E + 8 +HOLZ + 10 +13748.197996 + 20 +7877.52091 + 30 +0.0 + 0 +VERTEX + 5 +227F + 8 +HOLZ + 10 +13843.583464 + 20 +8030.169567 + 30 +0.0 + 0 +SEQEND + 5 +2280 + 8 +HOLZ + 0 +POLYLINE + 5 +531 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2281 + 8 +HOLZ + 10 +16897.5 + 20 +5909.624648 + 30 +0.0 + 0 +VERTEX + 5 +2282 + 8 +HOLZ + 10 +17310.002398 + 20 +5651.864542 + 30 +0.0 + 0 +VERTEX + 5 +2283 + 8 +HOLZ + 10 +17403.689813 + 20 +5801.381599 + 30 +0.0 + 0 +VERTEX + 5 +2284 + 8 +HOLZ + 10 +17324.687609 + 20 +5854.940316 + 30 +0.0 + 0 +VERTEX + 5 +2285 + 8 +HOLZ + 10 +10557.5 + 20 +10083.548452 + 30 +0.0 + 0 +SEQEND + 5 +2286 + 8 +HOLZ + 0 +POLYLINE + 5 +538 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2287 + 8 +DETAILS + 10 +10557.712995 + 20 +9910.919938 + 30 +0.0 + 0 +VERTEX + 5 +2288 + 8 +DETAILS + 10 +10467.712995 + 20 +9910.919938 + 30 +0.0 + 0 +VERTEX + 5 +2289 + 8 +DETAILS + 10 +10467.712995 + 20 +9980.919938 + 30 +0.0 + 0 +VERTEX + 5 +228A + 8 +DETAILS + 10 +10557.712995 + 20 +9980.919938 + 30 +0.0 + 0 +SEQEND + 5 +228B + 8 +DETAILS + 0 +POLYLINE + 5 +53E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +228C + 8 +DETAILS + 10 +10557.287005 + 20 +9910.919938 + 30 +0.0 + 0 +VERTEX + 5 +228D + 8 +DETAILS + 10 +10647.287005 + 20 +9910.919938 + 30 +0.0 + 0 +VERTEX + 5 +228E + 8 +DETAILS + 10 +10647.287005 + 20 +9980.919938 + 30 +0.0 + 0 +VERTEX + 5 +228F + 8 +DETAILS + 10 +10557.287005 + 20 +9980.919938 + 30 +0.0 + 0 +SEQEND + 5 +2290 + 8 +DETAILS + 0 +POLYLINE + 5 +544 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2291 + 8 +HOLZ + 10 +10557.5 + 20 +9871.296339 + 30 +0.0 + 0 +VERTEX + 5 +2292 + 8 +HOLZ + 10 +10557.5 + 20 +9910.919938 + 30 +0.0 + 0 +SEQEND + 5 +2293 + 8 +HOLZ + 0 +POLYLINE + 5 +548 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2294 + 8 +HOLZ + 10 +10557.5 + 20 +9980.919938 + 30 +0.0 + 0 +VERTEX + 5 +2295 + 8 +HOLZ + 10 +10557.5 + 20 +10082.810074 + 30 +0.0 + 0 +SEQEND + 5 +2296 + 8 +HOLZ + 0 +POLYLINE + 5 +54C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2297 + 8 +DETAILS + 10 +4250.817185 + 20 +5957.560333 + 30 +0.0 + 0 +VERTEX + 5 +2298 + 8 +DETAILS + 10 +4135.0 + 20 +5957.560333 + 30 +0.0 + 0 +VERTEX + 5 +2299 + 8 +DETAILS + 10 +4135.0 + 20 +6005.0 + 30 +0.0 + 0 +VERTEX + 5 +229A + 8 +DETAILS + 10 +4230.0 + 20 +6005.0 + 30 +0.0 + 0 +VERTEX + 5 +229B + 8 +DETAILS + 10 +4280.0 + 20 +5960.0 + 30 +0.0 + 0 +VERTEX + 5 +229C + 8 +DETAILS + 10 +4355.0 + 20 +5960.0 + 30 +0.0 + 0 +VERTEX + 5 +229D + 8 +DETAILS + 10 +4355.0 + 20 +5956.477785 + 30 +0.0 + 0 +SEQEND + 5 +229E + 8 +DETAILS + 0 +POLYLINE + 5 +555 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +229F + 8 +DETAILS + 10 +4158.9975 + 20 +5990.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22A0 + 8 +DETAILS + 10 +4161.0025 + 20 +5990.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22A1 + 8 +DETAILS + 0 +POLYLINE + 5 +559 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22A2 + 8 +DETAILS + 10 +4158.9975 + 20 +5990.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22A3 + 8 +DETAILS + 10 +4161.0025 + 20 +5990.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22A4 + 8 +DETAILS + 0 +POLYLINE + 5 +55D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22A5 + 8 +DETAILS + 10 +4183.9975 + 20 +5990.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22A6 + 8 +DETAILS + 10 +4186.0025 + 20 +5990.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22A7 + 8 +DETAILS + 0 +POLYLINE + 5 +561 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22A8 + 8 +DETAILS + 10 +4173.9975 + 20 +5970.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22A9 + 8 +DETAILS + 10 +4176.0025 + 20 +5970.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22AA + 8 +DETAILS + 0 +POLYLINE + 5 +565 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22AB + 8 +DETAILS + 10 +4203.9975 + 20 +5970.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22AC + 8 +DETAILS + 10 +4206.0025 + 20 +5970.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22AD + 8 +DETAILS + 0 +POLYLINE + 5 +569 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22AE + 8 +DETAILS + 10 +5928.9975 + 20 +4810.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22AF + 8 +DETAILS + 10 +5931.0025 + 20 +4810.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22B0 + 8 +DETAILS + 0 +POLYLINE + 5 +56D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22B1 + 8 +DETAILS + 10 +5903.9975 + 20 +4780.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22B2 + 8 +DETAILS + 10 +5906.0025 + 20 +4780.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22B3 + 8 +DETAILS + 0 +POLYLINE + 5 +571 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22B4 + 8 +DETAILS + 10 +5883.9975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22B5 + 8 +DETAILS + 10 +5886.0025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22B6 + 8 +DETAILS + 0 +POLYLINE + 5 +575 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22B7 + 8 +DETAILS + 10 +5928.9975 + 20 +4810.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22B8 + 8 +DETAILS + 10 +5931.0025 + 20 +4810.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22B9 + 8 +DETAILS + 0 +POLYLINE + 5 +579 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22BA + 8 +DETAILS + 10 +5944.887167 + 20 +4778.814772 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22BB + 8 +DETAILS + 10 +5946.892167 + 20 +4778.814772 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22BC + 8 +DETAILS + 0 +POLYLINE + 5 +57D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22BD + 8 +DETAILS + 10 +5944.887167 + 20 +4778.814772 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22BE + 8 +DETAILS + 10 +5946.892167 + 20 +4778.814772 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22BF + 8 +DETAILS + 0 +POLYLINE + 5 +581 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22C0 + 8 +DETAILS + 10 +5899.887167 + 20 +4713.814772 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22C1 + 8 +DETAILS + 10 +5901.892167 + 20 +4713.814772 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22C2 + 8 +DETAILS + 0 +POLYLINE + 5 +585 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22C3 + 8 +DETAILS + 10 +5919.887167 + 20 +4748.814772 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22C4 + 8 +DETAILS + 10 +5921.892167 + 20 +4748.814772 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22C5 + 8 +DETAILS + 0 +POLYLINE + 5 +589 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22C6 + 8 +DETAILS + 10 +5935.776835 + 20 +4717.629543 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22C7 + 8 +DETAILS + 10 +5937.781835 + 20 +4717.629543 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22C8 + 8 +DETAILS + 0 +POLYLINE + 5 +58D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22C9 + 8 +DETAILS + 10 +5960.776835 + 20 +4747.629543 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22CA + 8 +DETAILS + 10 +5962.781835 + 20 +4747.629543 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22CB + 8 +DETAILS + 0 +POLYLINE + 5 +591 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22CC + 8 +DETAILS + 10 +5960.776835 + 20 +4747.629543 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22CD + 8 +DETAILS + 10 +5962.781835 + 20 +4747.629543 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22CE + 8 +DETAILS + 0 +POLYLINE + 5 +595 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22CF + 8 +DETAILS + 10 +5976.666502 + 20 +4716.444315 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22D0 + 8 +DETAILS + 10 +5978.671502 + 20 +4716.444315 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22D1 + 8 +DETAILS + 0 +POLYLINE + 5 +599 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22D2 + 8 +DETAILS + 10 +5976.666502 + 20 +4716.444315 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22D3 + 8 +DETAILS + 10 +5978.671502 + 20 +4716.444315 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22D4 + 8 +DETAILS + 0 +POLYLINE + 5 +59D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22D5 + 8 +DETAILS + 10 +5915.776835 + 20 +4682.629543 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22D6 + 8 +DETAILS + 10 +5917.781835 + 20 +4682.629543 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22D7 + 8 +DETAILS + 0 +POLYLINE + 5 +5A1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22D8 + 8 +DETAILS + 10 +5931.666502 + 20 +4651.444315 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22D9 + 8 +DETAILS + 10 +5933.671502 + 20 +4651.444315 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22DA + 8 +DETAILS + 0 +POLYLINE + 5 +5A5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22DB + 8 +DETAILS + 10 +5992.55617 + 20 +4685.259087 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22DC + 8 +DETAILS + 10 +5994.56117 + 20 +4685.259087 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22DD + 8 +DETAILS + 0 +POLYLINE + 5 +5A9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22DE + 8 +DETAILS + 10 +5992.55617 + 20 +4685.259087 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22DF + 8 +DETAILS + 10 +5994.56117 + 20 +4685.259087 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22E0 + 8 +DETAILS + 0 +POLYLINE + 5 +5AD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22E1 + 8 +DETAILS + 10 +5947.55617 + 20 +4620.259087 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22E2 + 8 +DETAILS + 10 +5949.56117 + 20 +4620.259087 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22E3 + 8 +DETAILS + 0 +POLYLINE + 5 +5B1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22E4 + 8 +DETAILS + 10 +5967.55617 + 20 +4655.259087 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22E5 + 8 +DETAILS + 10 +5969.56117 + 20 +4655.259087 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22E6 + 8 +DETAILS + 0 +POLYLINE + 5 +5B5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22E7 + 8 +DETAILS + 10 +6008.445837 + 20 +4654.073858 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22E8 + 8 +DETAILS + 10 +6010.450837 + 20 +4654.073858 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22E9 + 8 +DETAILS + 0 +POLYLINE + 5 +5B9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22EA + 8 +DETAILS + 10 +6008.445837 + 20 +4654.073858 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22EB + 8 +DETAILS + 10 +6010.450837 + 20 +4654.073858 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22EC + 8 +DETAILS + 0 +POLYLINE + 5 +5BD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22ED + 8 +DETAILS + 10 +5983.445837 + 20 +4624.073858 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22EE + 8 +DETAILS + 10 +5985.450837 + 20 +4624.073858 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22EF + 8 +DETAILS + 0 +POLYLINE + 5 +5C1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22F0 + 8 +DETAILS + 10 +6024.335505 + 20 +4622.88863 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22F1 + 8 +DETAILS + 10 +6026.340505 + 20 +4622.88863 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22F2 + 8 +DETAILS + 0 +POLYLINE + 5 +5C5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22F3 + 8 +DETAILS + 10 +6024.335505 + 20 +4622.88863 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22F4 + 8 +DETAILS + 10 +6026.340505 + 20 +4622.88863 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22F5 + 8 +DETAILS + 0 +POLYLINE + 5 +5C9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22F6 + 8 +DETAILS + 10 +5963.445837 + 20 +4589.073858 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22F7 + 8 +DETAILS + 10 +5965.450837 + 20 +4589.073858 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22F8 + 8 +DETAILS + 0 +POLYLINE + 5 +5CD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22F9 + 8 +DETAILS + 10 +5979.335505 + 20 +4557.88863 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22FA + 8 +DETAILS + 10 +5981.340505 + 20 +4557.88863 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22FB + 8 +DETAILS + 0 +POLYLINE + 5 +5D1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22FC + 8 +DETAILS + 10 +5999.335505 + 20 +4592.88863 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +22FD + 8 +DETAILS + 10 +6001.340505 + 20 +4592.88863 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +22FE + 8 +DETAILS + 0 +POLYLINE + 5 +5D5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +22FF + 8 +DETAILS + 10 +6040.225172 + 20 +4591.703402 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2300 + 8 +DETAILS + 10 +6042.230172 + 20 +4591.703402 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2301 + 8 +DETAILS + 0 +POLYLINE + 5 +5D9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2302 + 8 +DETAILS + 10 +6040.225172 + 20 +4591.703402 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2303 + 8 +DETAILS + 10 +6042.230172 + 20 +4591.703402 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2304 + 8 +DETAILS + 0 +POLYLINE + 5 +5DD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2305 + 8 +DETAILS + 10 +6056.11484 + 20 +4560.518173 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2306 + 8 +DETAILS + 10 +6058.11984 + 20 +4560.518173 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2307 + 8 +DETAILS + 0 +POLYLINE + 5 +5E1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2308 + 8 +DETAILS + 10 +6056.11484 + 20 +4560.518173 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2309 + 8 +DETAILS + 10 +6058.11984 + 20 +4560.518173 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +230A + 8 +DETAILS + 0 +POLYLINE + 5 +5E5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +230B + 8 +DETAILS + 10 +6015.225172 + 20 +4561.703402 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +230C + 8 +DETAILS + 10 +6017.230172 + 20 +4561.703402 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +230D + 8 +DETAILS + 0 +POLYLINE + 5 +5E9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +230E + 8 +DETAILS + 10 +15122.44383 + 20 +4685.259087 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +230F + 8 +DETAILS + 10 +15120.43883 + 20 +4685.259087 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2310 + 8 +DETAILS + 0 +POLYLINE + 5 +5ED + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2311 + 8 +DETAILS + 10 +15122.44383 + 20 +4685.259087 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2312 + 8 +DETAILS + 10 +15120.43883 + 20 +4685.259087 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2313 + 8 +DETAILS + 0 +POLYLINE + 5 +5F1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2314 + 8 +DETAILS + 10 +15135.664495 + 20 +4557.88863 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2315 + 8 +DETAILS + 10 +15133.659495 + 20 +4557.88863 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2316 + 8 +DETAILS + 0 +POLYLINE + 5 +5F5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2317 + 8 +DETAILS + 10 +15151.554163 + 20 +4589.073858 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2318 + 8 +DETAILS + 10 +15149.549163 + 20 +4589.073858 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2319 + 8 +DETAILS + 0 +POLYLINE + 5 +5F9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +231A + 8 +DETAILS + 10 +15131.554163 + 20 +4624.073858 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +231B + 8 +DETAILS + 10 +15129.549163 + 20 +4624.073858 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +231C + 8 +DETAILS + 0 +POLYLINE + 5 +5FD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +231D + 8 +DETAILS + 10 +15167.44383 + 20 +4620.259087 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +231E + 8 +DETAILS + 10 +15165.43883 + 20 +4620.259087 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +231F + 8 +DETAILS + 0 +POLYLINE + 5 +601 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2320 + 8 +DETAILS + 10 +15147.44383 + 20 +4655.259087 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2321 + 8 +DETAILS + 10 +15145.43883 + 20 +4655.259087 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2322 + 8 +DETAILS + 0 +POLYLINE + 5 +605 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2323 + 8 +DETAILS + 10 +15183.333498 + 20 +4651.444315 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2324 + 8 +DETAILS + 10 +15181.328498 + 20 +4651.444315 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2325 + 8 +DETAILS + 0 +POLYLINE + 5 +609 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2326 + 8 +DETAILS + 10 +15199.223165 + 20 +4682.629543 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2327 + 8 +DETAILS + 10 +15197.218165 + 20 +4682.629543 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2328 + 8 +DETAILS + 0 +POLYLINE + 5 +60D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2329 + 8 +DETAILS + 10 +15138.333498 + 20 +4716.444315 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +232A + 8 +DETAILS + 10 +15136.328498 + 20 +4716.444315 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +232B + 8 +DETAILS + 0 +POLYLINE + 5 +611 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +232C + 8 +DETAILS + 10 +15138.333498 + 20 +4716.444315 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +232D + 8 +DETAILS + 10 +15136.328498 + 20 +4716.444315 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +232E + 8 +DETAILS + 0 +POLYLINE + 5 +615 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +232F + 8 +DETAILS + 10 +15154.223165 + 20 +4747.629543 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2330 + 8 +DETAILS + 10 +15152.218165 + 20 +4747.629543 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2331 + 8 +DETAILS + 0 +POLYLINE + 5 +619 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2332 + 8 +DETAILS + 10 +15154.223165 + 20 +4747.629543 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2333 + 8 +DETAILS + 10 +15152.218165 + 20 +4747.629543 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2334 + 8 +DETAILS + 0 +POLYLINE + 5 +61D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2335 + 8 +DETAILS + 10 +15179.223165 + 20 +4717.629543 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2336 + 8 +DETAILS + 10 +15177.218165 + 20 +4717.629543 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2337 + 8 +DETAILS + 0 +POLYLINE + 5 +621 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2338 + 8 +DETAILS + 10 +15195.112833 + 20 +4748.814772 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2339 + 8 +DETAILS + 10 +15193.107833 + 20 +4748.814772 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +233A + 8 +DETAILS + 0 +POLYLINE + 5 +625 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +233B + 8 +DETAILS + 10 +15215.112833 + 20 +4713.814772 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +233C + 8 +DETAILS + 10 +15213.107833 + 20 +4713.814772 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +233D + 8 +DETAILS + 0 +POLYLINE + 5 +629 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +233E + 8 +DETAILS + 10 +15170.112833 + 20 +4778.814772 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +233F + 8 +DETAILS + 10 +15168.107833 + 20 +4778.814772 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2340 + 8 +DETAILS + 0 +POLYLINE + 5 +62D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2341 + 8 +DETAILS + 10 +15170.112833 + 20 +4778.814772 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2342 + 8 +DETAILS + 10 +15168.107833 + 20 +4778.814772 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2343 + 8 +DETAILS + 0 +POLYLINE + 5 +631 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2344 + 8 +DETAILS + 10 +15186.0025 + 20 +4810.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2345 + 8 +DETAILS + 10 +15183.9975 + 20 +4810.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2346 + 8 +DETAILS + 0 +POLYLINE + 5 +635 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2347 + 8 +DETAILS + 10 +15231.0025 + 20 +4745.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2348 + 8 +DETAILS + 10 +15228.9975 + 20 +4745.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2349 + 8 +DETAILS + 0 +POLYLINE + 5 +639 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +234A + 8 +DETAILS + 10 +15211.0025 + 20 +4780.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +234B + 8 +DETAILS + 10 +15208.9975 + 20 +4780.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +234C + 8 +DETAILS + 0 +POLYLINE + 5 +63D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +234D + 8 +DETAILS + 10 +15186.0025 + 20 +4810.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +234E + 8 +DETAILS + 10 +15183.9975 + 20 +4810.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +234F + 8 +DETAILS + 0 +POLYLINE + 5 +641 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2350 + 8 +DETAILS + 10 +15234.103964 + 20 +4714.16655 + 30 +0.0 + 0 +VERTEX + 5 +2351 + 8 +DETAILS + 10 +15245.041865 + 20 +4726.854887 + 30 +0.0 + 0 +SEQEND + 5 +2352 + 8 +DETAILS + 0 +POLYLINE + 5 +645 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2353 + 8 +DETAILS + 10 +15219.454976 + 20 +4697.574043 + 30 +0.0 + 0 +VERTEX + 5 +2354 + 8 +DETAILS + 10 +15228.830375 + 20 +4709.091158 + 30 +0.0 + 0 +SEQEND + 5 +2355 + 8 +DETAILS + 0 +POLYLINE + 5 +649 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2356 + 8 +DETAILS + 10 +15204.610724 + 20 +4679.224761 + 30 +0.0 + 0 +VERTEX + 5 +2357 + 8 +DETAILS + 10 +15214.181387 + 20 +4691.132263 + 30 +0.0 + 0 +SEQEND + 5 +2358 + 8 +DETAILS + 0 +POLYLINE + 5 +64D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2359 + 8 +DETAILS + 10 +15136.444205 + 20 +4691.522709 + 30 +0.0 + 0 +VERTEX + 5 +235A + 8 +DETAILS + 10 +15119.842089 + 20 +4695.426764 + 30 +0.0 + 0 +SEQEND + 5 +235B + 8 +DETAILS + 0 +POLYLINE + 5 +651 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +235C + 8 +DETAILS + 10 +15164.765569 + 20 +4684.49526 + 30 +0.0 + 0 +VERTEX + 5 +235D + 8 +DETAILS + 10 +15146.014868 + 20 +4689.37543 + 30 +0.0 + 0 +SEQEND + 5 +235E + 8 +DETAILS + 0 +POLYLINE + 5 +655 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +235F + 8 +DETAILS + 10 +15199.923024 + 20 +4675.125425 + 30 +0.0 + 0 +VERTEX + 5 +2360 + 8 +DETAILS + 10 +15177.461333 + 20 +4680.786371 + 30 +0.0 + 0 +SEQEND + 5 +2361 + 8 +DETAILS + 0 +POLYLINE + 5 +659 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2362 + 8 +DETAILS + 10 +15099.774828 + 20 +4561.703402 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2363 + 8 +DETAILS + 10 +15097.769828 + 20 +4561.703402 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2364 + 8 +DETAILS + 0 +POLYLINE + 5 +65D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2365 + 8 +DETAILS + 10 +15058.88516 + 20 +4560.518173 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2366 + 8 +DETAILS + 10 +15056.88016 + 20 +4560.518173 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2367 + 8 +DETAILS + 0 +POLYLINE + 5 +661 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2368 + 8 +DETAILS + 10 +15058.88516 + 20 +4560.518173 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2369 + 8 +DETAILS + 10 +15056.88016 + 20 +4560.518173 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +236A + 8 +DETAILS + 0 +POLYLINE + 5 +665 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +236B + 8 +DETAILS + 10 +15074.774828 + 20 +4591.703402 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +236C + 8 +DETAILS + 10 +15072.769828 + 20 +4591.703402 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +236D + 8 +DETAILS + 0 +POLYLINE + 5 +669 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +236E + 8 +DETAILS + 10 +15074.774828 + 20 +4591.703402 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +236F + 8 +DETAILS + 10 +15072.769828 + 20 +4591.703402 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2370 + 8 +DETAILS + 0 +POLYLINE + 5 +66D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2371 + 8 +DETAILS + 10 +15115.664495 + 20 +4592.88863 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2372 + 8 +DETAILS + 10 +15113.659495 + 20 +4592.88863 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2373 + 8 +DETAILS + 0 +POLYLINE + 5 +671 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2374 + 8 +DETAILS + 10 +15090.664495 + 20 +4622.88863 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2375 + 8 +DETAILS + 10 +15088.659495 + 20 +4622.88863 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2376 + 8 +DETAILS + 0 +POLYLINE + 5 +675 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2377 + 8 +DETAILS + 10 +15090.664495 + 20 +4622.88863 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +2378 + 8 +DETAILS + 10 +15088.659495 + 20 +4622.88863 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +2379 + 8 +DETAILS + 0 +POLYLINE + 5 +679 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +237A + 8 +DETAILS + 10 +15106.554163 + 20 +4654.073858 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +237B + 8 +DETAILS + 10 +15104.549163 + 20 +4654.073858 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +237C + 8 +DETAILS + 0 +POLYLINE + 5 +67D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +237D + 8 +DETAILS + 10 +15106.554163 + 20 +4654.073858 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +237E + 8 +DETAILS + 10 +15104.549163 + 20 +4654.073858 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +237F + 8 +DETAILS + 0 +POLYLINE + 5 +681 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2380 + 8 +DETAILS + 10 +15112.81054 + 20 +4696.793209 + 30 +0.0 + 0 +VERTEX + 5 +2381 + 8 +DETAILS + 10 +15097.18494 + 20 +4700.892544 + 30 +0.0 + 0 +SEQEND + 5 +2382 + 8 +DETAILS + 0 +POLYLINE + 5 +685 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2383 + 8 +DETAILS + 10 +10493.9975 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2384 + 8 +DETAILS + 10 +10496.0025 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2385 + 8 +DETAILS + 0 +POLYLINE + 5 +689 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2386 + 8 +DETAILS + 10 +10513.9975 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2387 + 8 +DETAILS + 10 +10516.0025 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2388 + 8 +DETAILS + 0 +POLYLINE + 5 +68D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2389 + 8 +DETAILS + 10 +10538.9975 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +238A + 8 +DETAILS + 10 +10541.0025 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +238B + 8 +DETAILS + 0 +POLYLINE + 5 +691 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +238C + 8 +DETAILS + 10 +10503.9975 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +238D + 8 +DETAILS + 10 +10506.0025 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +238E + 8 +DETAILS + 0 +POLYLINE + 5 +695 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +238F + 8 +DETAILS + 10 +10528.9975 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2390 + 8 +DETAILS + 10 +10531.0025 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2391 + 8 +DETAILS + 0 +POLYLINE + 5 +699 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2392 + 8 +DETAILS + 10 +10493.9975 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2393 + 8 +DETAILS + 10 +10496.0025 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2394 + 8 +DETAILS + 0 +POLYLINE + 5 +69D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2395 + 8 +DETAILS + 10 +10538.9975 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2396 + 8 +DETAILS + 10 +10541.0025 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2397 + 8 +DETAILS + 0 +POLYLINE + 5 +6A1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2398 + 8 +DETAILS + 10 +10513.9975 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2399 + 8 +DETAILS + 10 +10516.0025 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +239A + 8 +DETAILS + 0 +POLYLINE + 5 +6A5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +239B + 8 +DETAILS + 10 +10573.9975 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +239C + 8 +DETAILS + 10 +10576.0025 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +239D + 8 +DETAILS + 0 +POLYLINE + 5 +6A9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +239E + 8 +DETAILS + 10 +10598.9975 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +239F + 8 +DETAILS + 10 +10601.0025 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23A0 + 8 +DETAILS + 0 +POLYLINE + 5 +6AD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23A1 + 8 +DETAILS + 10 +10618.9975 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23A2 + 8 +DETAILS + 10 +10621.0025 + 20 +9965.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23A3 + 8 +DETAILS + 0 +POLYLINE + 5 +6B1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23A4 + 8 +DETAILS + 10 +10583.9975 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23A5 + 8 +DETAILS + 10 +10586.0025 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23A6 + 8 +DETAILS + 0 +POLYLINE + 5 +6B5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23A7 + 8 +DETAILS + 10 +10608.9975 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23A8 + 8 +DETAILS + 10 +10611.0025 + 20 +9945.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23A9 + 8 +DETAILS + 0 +POLYLINE + 5 +6B9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23AA + 8 +DETAILS + 10 +10573.9975 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23AB + 8 +DETAILS + 10 +10576.0025 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23AC + 8 +DETAILS + 0 +POLYLINE + 5 +6BD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23AD + 8 +DETAILS + 10 +10598.9975 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23AE + 8 +DETAILS + 10 +10601.0025 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23AF + 8 +DETAILS + 0 +POLYLINE + 5 +6C1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23B0 + 8 +DETAILS + 10 +10618.9975 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23B1 + 8 +DETAILS + 10 +10621.0025 + 20 +9925.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23B2 + 8 +DETAILS + 0 +POLYLINE + 5 +6C5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +23B3 + 8 +DETAILS + 10 +7115.817185 + 20 +7745.815039 + 30 +0.0 + 0 +VERTEX + 5 +23B4 + 8 +DETAILS + 10 +7000.0 + 20 +7745.815039 + 30 +0.0 + 0 +VERTEX + 5 +23B5 + 8 +DETAILS + 10 +7000.0 + 20 +7793.254706 + 30 +0.0 + 0 +VERTEX + 5 +23B6 + 8 +DETAILS + 10 +7095.0 + 20 +7793.254706 + 30 +0.0 + 0 +VERTEX + 5 +23B7 + 8 +DETAILS + 10 +7145.0 + 20 +7748.254706 + 30 +0.0 + 0 +VERTEX + 5 +23B8 + 8 +DETAILS + 10 +7220.0 + 20 +7748.254706 + 30 +0.0 + 0 +VERTEX + 5 +23B9 + 8 +DETAILS + 10 +7220.0 + 20 +7744.732491 + 30 +0.0 + 0 +SEQEND + 5 +23BA + 8 +DETAILS + 0 +POLYLINE + 5 +6CE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23BB + 8 +DETAILS + 10 +7068.9975 + 20 +7758.254706 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23BC + 8 +DETAILS + 10 +7071.0025 + 20 +7758.254706 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23BD + 8 +DETAILS + 0 +POLYLINE + 5 +6D2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23BE + 8 +DETAILS + 10 +7038.9975 + 20 +7758.254706 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23BF + 8 +DETAILS + 10 +7041.0025 + 20 +7758.254706 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23C0 + 8 +DETAILS + 0 +POLYLINE + 5 +6D6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23C1 + 8 +DETAILS + 10 +7048.9975 + 20 +7778.254706 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23C2 + 8 +DETAILS + 10 +7051.0025 + 20 +7778.254706 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23C3 + 8 +DETAILS + 0 +POLYLINE + 5 +6DA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23C4 + 8 +DETAILS + 10 +7023.9975 + 20 +7778.254706 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23C5 + 8 +DETAILS + 10 +7026.0025 + 20 +7778.254706 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23C6 + 8 +DETAILS + 0 +POLYLINE + 5 +6DE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23C7 + 8 +DETAILS + 10 +7023.9975 + 20 +7778.254706 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +23C8 + 8 +DETAILS + 10 +7026.0025 + 20 +7778.254706 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +23C9 + 8 +DETAILS + 0 +POLYLINE + 5 +6E2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +23CA + 8 +DETAILS + 10 +16864.182815 + 20 +5957.560333 + 30 +0.0 + 0 +VERTEX + 5 +23CB + 8 +DETAILS + 10 +16980.0 + 20 +5957.560333 + 30 +0.0 + 0 +VERTEX + 5 +23CC + 8 +DETAILS + 10 +16980.0 + 20 +6005.0 + 30 +0.0 + 0 +VERTEX + 5 +23CD + 8 +DETAILS + 10 +16885.0 + 20 +6005.0 + 30 +0.0 + 0 +VERTEX + 5 +23CE + 8 +DETAILS + 10 +16835.0 + 20 +5960.0 + 30 +0.0 + 0 +VERTEX + 5 +23CF + 8 +DETAILS + 10 +16760.0 + 20 +5960.0 + 30 +0.0 + 0 +VERTEX + 5 +23D0 + 8 +DETAILS + 10 +16760.0 + 20 +5956.477785 + 30 +0.0 + 0 +SEQEND + 5 +23D1 + 8 +DETAILS + 0 +POLYLINE + 5 +6EB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23D2 + 8 +DETAILS + 10 +16911.0025 + 20 +5970.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23D3 + 8 +DETAILS + 10 +16908.9975 + 20 +5970.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23D4 + 8 +DETAILS + 0 +POLYLINE + 5 +6EF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23D5 + 8 +DETAILS + 10 +16941.0025 + 20 +5970.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23D6 + 8 +DETAILS + 10 +16938.9975 + 20 +5970.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23D7 + 8 +DETAILS + 0 +POLYLINE + 5 +6F3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23D8 + 8 +DETAILS + 10 +16931.0025 + 20 +5990.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23D9 + 8 +DETAILS + 10 +16928.9975 + 20 +5990.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23DA + 8 +DETAILS + 0 +POLYLINE + 5 +6F7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23DB + 8 +DETAILS + 10 +16956.0025 + 20 +5990.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23DC + 8 +DETAILS + 10 +16953.9975 + 20 +5990.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23DD + 8 +DETAILS + 0 +POLYLINE + 5 +6FB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23DE + 8 +DETAILS + 10 +16956.0025 + 20 +5990.0 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23DF + 8 +DETAILS + 10 +16953.9975 + 20 +5990.0 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23E0 + 8 +DETAILS + 0 +POLYLINE + 5 +6FF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +23E1 + 8 +DETAILS + 10 +13999.182815 + 20 +7745.815039 + 30 +0.0 + 0 +VERTEX + 5 +23E2 + 8 +DETAILS + 10 +14115.0 + 20 +7745.815039 + 30 +0.0 + 0 +VERTEX + 5 +23E3 + 8 +DETAILS + 10 +14115.0 + 20 +7793.254706 + 30 +0.0 + 0 +VERTEX + 5 +23E4 + 8 +DETAILS + 10 +14020.0 + 20 +7793.254706 + 30 +0.0 + 0 +VERTEX + 5 +23E5 + 8 +DETAILS + 10 +13970.0 + 20 +7748.254706 + 30 +0.0 + 0 +VERTEX + 5 +23E6 + 8 +DETAILS + 10 +13895.0 + 20 +7748.254706 + 30 +0.0 + 0 +VERTEX + 5 +23E7 + 8 +DETAILS + 10 +13895.0 + 20 +7744.732491 + 30 +0.0 + 0 +SEQEND + 5 +23E8 + 8 +DETAILS + 0 +POLYLINE + 5 +708 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23E9 + 8 +DETAILS + 10 +14091.0025 + 20 +7778.254706 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23EA + 8 +DETAILS + 10 +14088.9975 + 20 +7778.254706 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23EB + 8 +DETAILS + 0 +POLYLINE + 5 +70C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23EC + 8 +DETAILS + 10 +14091.0025 + 20 +7778.254706 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23ED + 8 +DETAILS + 10 +14088.9975 + 20 +7778.254706 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23EE + 8 +DETAILS + 0 +POLYLINE + 5 +710 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23EF + 8 +DETAILS + 10 +14066.0025 + 20 +7778.254706 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23F0 + 8 +DETAILS + 10 +14063.9975 + 20 +7778.254706 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23F1 + 8 +DETAILS + 0 +POLYLINE + 5 +714 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23F2 + 8 +DETAILS + 10 +14076.0025 + 20 +7758.254706 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23F3 + 8 +DETAILS + 10 +14073.9975 + 20 +7758.254706 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23F4 + 8 +DETAILS + 0 +POLYLINE + 5 +718 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +23F5 + 8 +DETAILS + 10 +14046.0025 + 20 +7758.254706 + 30 +0.0 + 42 +-1.0 + 0 +VERTEX + 5 +23F6 + 8 +DETAILS + 10 +14043.9975 + 20 +7758.254706 + 30 +0.0 + 42 +-1.0 + 0 +SEQEND + 5 +23F7 + 8 +DETAILS + 0 +POLYLINE + 5 +71C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +23F8 + 8 +HOLZ + 10 +16757.5 + 20 +7365.0 + 30 +0.0 + 0 +VERTEX + 5 +23F9 + 8 +HOLZ + 10 +16757.5 + 20 +7485.0 + 30 +0.0 + 0 +VERTEX + 5 +23FA + 8 +HOLZ + 10 +16857.5 + 20 +7485.0 + 30 +0.0 + 0 +VERTEX + 5 +23FB + 8 +HOLZ + 10 +16857.5 + 20 +7365.0 + 30 +0.0 + 0 +SEQEND + 5 +23FC + 8 +HOLZ + 0 +POLYLINE + 5 +722 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +23FD + 8 +HOLZ + 10 +17310.0 + 20 +7425.4 + 30 +0.0 + 0 +VERTEX + 5 +23FE + 8 +HOLZ + 10 +16857.5 + 20 +7464.98862 + 30 +0.0 + 0 +SEQEND + 5 +23FF + 8 +HOLZ + 0 +POLYLINE + 5 +726 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2400 + 8 +DETAILS + 10 +16864.123694 + 20 +7434.615507 + 30 +0.0 + 0 +VERTEX + 5 +2401 + 8 +DETAILS + 10 +16864.123694 + 20 +7574.602207 + 30 +0.0 + 0 +VERTEX + 5 +2402 + 8 +DETAILS + 10 +16908.965186 + 20 +7574.602207 + 30 +0.0 + 0 +VERTEX + 5 +2403 + 8 +DETAILS + 10 +16908.965186 + 20 +7505.222869 + 30 +0.0 + 0 +VERTEX + 5 +2404 + 8 +DETAILS + 10 +16875.0 + 20 +7475.0 + 30 +0.0 + 0 +VERTEX + 5 +2405 + 8 +DETAILS + 10 +16875.0 + 20 +7410.0 + 30 +0.0 + 0 +VERTEX + 5 +2406 + 8 +DETAILS + 10 +16865.0 + 20 +7410.0 + 30 +0.0 + 0 +VERTEX + 5 +2407 + 8 +DETAILS + 10 +16865.0 + 20 +7450.0 + 30 +0.0 + 0 +SEQEND + 5 +2408 + 8 +DETAILS + 0 +POLYLINE + 5 +730 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2409 + 8 +DETAILS + 10 +16878.9975 + 20 +7555.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +240A + 8 +DETAILS + 10 +16881.0025 + 20 +7555.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +240B + 8 +DETAILS + 0 +POLYLINE + 5 +734 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +240C + 8 +DETAILS + 10 +16893.9975 + 20 +7545.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +240D + 8 +DETAILS + 10 +16896.0025 + 20 +7545.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +240E + 8 +DETAILS + 0 +POLYLINE + 5 +738 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +240F + 8 +DETAILS + 10 +16893.9975 + 20 +7520.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2410 + 8 +DETAILS + 10 +16896.0025 + 20 +7520.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2411 + 8 +DETAILS + 0 +POLYLINE + 5 +73C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2412 + 8 +DETAILS + 10 +16878.9975 + 20 +7530.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2413 + 8 +DETAILS + 10 +16881.0025 + 20 +7530.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2414 + 8 +DETAILS + 0 +POLYLINE + 5 +740 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2415 + 8 +DETAILS + 10 +13820.0 + 20 +7670.0 + 30 +0.0 + 0 +VERTEX + 5 +2416 + 8 +DETAILS + 10 +13820.0 + 20 +7825.0 + 30 +0.0 + 0 +VERTEX + 5 +2417 + 8 +DETAILS + 10 +13832.258688 + 20 +7825.0 + 30 +0.0 + 0 +SEQEND + 5 +2418 + 8 +DETAILS + 0 +POLYLINE + 5 +745 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2419 + 8 +DETAILS + 10 +13880.0 + 20 +7795.167917 + 30 +0.0 + 0 +VERTEX + 5 +241A + 8 +DETAILS + 10 +13880.0 + 20 +7765.0 + 30 +0.0 + 0 +VERTEX + 5 +241B + 8 +DETAILS + 10 +13835.0 + 20 +7740.0 + 30 +0.0 + 0 +VERTEX + 5 +241C + 8 +DETAILS + 10 +13835.0 + 20 +7670.0 + 30 +0.0 + 0 +VERTEX + 5 +241D + 8 +DETAILS + 10 +13820.0 + 20 +7670.0 + 30 +0.0 + 0 +SEQEND + 5 +241E + 8 +DETAILS + 0 +POLYLINE + 5 +74C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +241F + 8 +DETAILS + 10 +13836.69948 + 20 +7809.90568 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2420 + 8 +DETAILS + 10 +13838.70448 + 20 +7809.90568 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2421 + 8 +DETAILS + 0 +POLYLINE + 5 +750 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2422 + 8 +DETAILS + 10 +13836.69948 + 20 +7776.50941 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2423 + 8 +DETAILS + 10 +13838.70448 + 20 +7776.50941 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2424 + 8 +DETAILS + 0 +POLYLINE + 5 +754 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.995 + 41 +1.995 + 0 +VERTEX + 5 +2425 + 8 +DETAILS + 10 +13859.918036 + 20 +7783.867891 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2426 + 8 +DETAILS + 10 +13861.923036 + 20 +7783.867891 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2427 + 8 +DETAILS + 0 +POLYLINE + 5 +758 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2428 + 8 +DETAILS + 10 +13830.0 + 20 +7840.0 + 30 +0.0 + 0 +VERTEX + 5 +2429 + 8 +DETAILS + 10 +13830.0 + 20 +7870.0 + 30 +0.0 + 0 +SEQEND + 5 +242A + 8 +DETAILS + 0 +POLYLINE + 5 +75C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +242B + 8 +DETAILS + 10 +13840.0 + 20 +7870.0 + 30 +0.0 + 0 +VERTEX + 5 +242C + 8 +DETAILS + 10 +13878.476039 + 20 +7867.075464 + 30 +0.0 + 0 +SEQEND + 5 +242D + 8 +DETAILS + 0 +POLYLINE + 5 +760 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +242E + 8 +DETAILS + 10 +13901.727343 + 20 +7864.339587 + 30 +0.0 + 0 +VERTEX + 5 +242F + 8 +DETAILS + 10 +13940.203382 + 20 +7861.415051 + 30 +0.0 + 0 +SEQEND + 5 +2430 + 8 +DETAILS + 0 +POLYLINE + 5 +764 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2431 + 8 +DETAILS + 10 +13966.852553 + 20 +7858.679174 + 30 +0.0 + 0 +VERTEX + 5 +2432 + 8 +DETAILS + 10 +14005.328591 + 20 +7855.754638 + 30 +0.0 + 0 +SEQEND + 5 +2433 + 8 +DETAILS + 0 +POLYLINE + 5 +768 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2434 + 8 +DETAILS + 10 +14034.24295 + 20 +7853.018817 + 30 +0.0 + 0 +VERTEX + 5 +2435 + 8 +DETAILS + 10 +14072.718989 + 20 +7850.09428 + 30 +0.0 + 0 +SEQEND + 5 +2436 + 8 +DETAILS + 0 +POLYLINE + 5 +76C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2437 + 8 +DETAILS + 10 +14101.067093 + 20 +7846.226376 + 30 +0.0 + 0 +VERTEX + 5 +2438 + 8 +DETAILS + 10 +14139.543132 + 20 +7843.30184 + 30 +0.0 + 0 +SEQEND + 5 +2439 + 8 +DETAILS + 0 +POLYLINE + 5 +770 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +243A + 8 +HOLZ + 10 +14143.126569 + 20 +7843.000301 + 30 +0.0 + 0 +VERTEX + 5 +243B + 8 +HOLZ + 10 +17322.201804 + 20 +7564.867258 + 30 +0.0 + 0 +VERTEX + 5 +243C + 8 +HOLZ + 10 +17310.0 + 20 +7425.4 + 30 +0.0 + 0 +SEQEND + 5 +243D + 8 +HOLZ + 0 +POLYLINE + 5 +775 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +243E + 8 +DETAILS + 10 +14034.80929 + 20 +7712.075419 + 30 +0.0 + 0 +VERTEX + 5 +243F + 8 +DETAILS + 10 +14073.285328 + 20 +7709.150883 + 30 +0.0 + 0 +SEQEND + 5 +2440 + 8 +DETAILS + 0 +POLYLINE + 5 +779 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2441 + 8 +DETAILS + 10 +14097.669312 + 20 +7706.981047 + 30 +0.0 + 0 +VERTEX + 5 +2442 + 8 +DETAILS + 10 +14136.14535 + 20 +7704.056511 + 30 +0.0 + 0 +SEQEND + 5 +2443 + 8 +DETAILS + 0 +POLYLINE + 5 +77D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2444 + 8 +DETAILS + 10 +14163.927115 + 20 +7700.754648 + 30 +0.0 + 0 +VERTEX + 5 +2445 + 8 +DETAILS + 10 +14202.403154 + 20 +7697.830112 + 30 +0.0 + 0 +SEQEND + 5 +2446 + 8 +DETAILS + 0 +POLYLINE + 5 +781 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2447 + 8 +DETAILS + 10 +14238.113246 + 20 +7693.396167 + 30 +0.0 + 0 +VERTEX + 5 +2448 + 8 +DETAILS + 10 +14276.589284 + 20 +7690.471631 + 30 +0.0 + 0 +SEQEND + 5 +2449 + 8 +DETAILS + 0 +POLYLINE + 5 +785 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +244A + 8 +DETAILS + 10 +14308.90151 + 20 +7687.169768 + 30 +0.0 + 0 +VERTEX + 5 +244B + 8 +DETAILS + 10 +14347.377548 + 20 +7684.245232 + 30 +0.0 + 0 +SEQEND + 5 +244C + 8 +DETAILS + 0 +POLYLINE + 5 +789 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +244D + 8 +DETAILS + 10 +14384.126369 + 20 +7681.361169 + 30 +0.0 + 0 +VERTEX + 5 +244E + 8 +DETAILS + 10 +14422.602408 + 20 +7678.436633 + 30 +0.0 + 0 +SEQEND + 5 +244F + 8 +DETAILS + 0 +POLYLINE + 5 +78D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2450 + 8 +HOLZ + 10 +16757.5 + 20 +7473.737487 + 30 +0.0 + 0 +VERTEX + 5 +2451 + 8 +HOLZ + 10 +14404.64467 + 20 +7679.585655 + 30 +0.0 + 0 +SEQEND + 5 +2452 + 8 +HOLZ + 0 +POLYLINE + 5 +791 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2453 + 8 +DETAILS + 10 +10325.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +2454 + 8 +DETAILS + 10 +10325.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2455 + 8 +DETAILS + 10 +10455.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2456 + 8 +DETAILS + 10 +10455.0 + 20 +4850.0 + 30 +0.0 + 0 +VERTEX + 5 +2457 + 8 +DETAILS + 10 +10475.0 + 20 +4850.0 + 30 +0.0 + 0 +SEQEND + 5 +2458 + 8 +DETAILS + 0 +POLYLINE + 5 +798 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2459 + 8 +DETAILS + 10 +10790.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +245A + 8 +DETAILS + 10 +10790.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +245B + 8 +DETAILS + 10 +10660.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +245C + 8 +DETAILS + 10 +10660.0 + 20 +4850.0 + 30 +0.0 + 0 +VERTEX + 5 +245D + 8 +DETAILS + 10 +10640.0 + 20 +4850.0 + 30 +0.0 + 0 +SEQEND + 5 +245E + 8 +DETAILS + 0 +POLYLINE + 5 +79F + 8 +SCHORNSTEIN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +245F + 8 +SCHORNSTEIN + 10 +8740.0 + 20 +8947.848405 + 30 +0.0 + 0 +VERTEX + 5 +2460 + 8 +SCHORNSTEIN + 10 +8740.0 + 20 +9445.0 + 30 +0.0 + 0 +VERTEX + 5 +2461 + 8 +SCHORNSTEIN + 10 +7250.0 + 20 +9445.0 + 30 +0.0 + 0 +VERTEX + 5 +2462 + 8 +SCHORNSTEIN + 10 +7250.0 + 20 +8016.79307 + 30 +0.0 + 0 +SEQEND + 5 +2463 + 8 +SCHORNSTEIN + 0 +POLYLINE + 5 +7A5 + 8 +SCHORNSTEIN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2464 + 8 +SCHORNSTEIN + 10 +8740.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2465 + 8 +SCHORNSTEIN + 10 +8740.0 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +2466 + 8 +SCHORNSTEIN + 0 +POLYLINE + 5 +7A9 + 8 +SCHORNSTEIN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2467 + 8 +SCHORNSTEIN + 10 +8740.0 + 20 +7515.0 + 30 +0.0 + 0 +VERTEX + 5 +2468 + 8 +SCHORNSTEIN + 10 +8740.0 + 20 +8735.596292 + 30 +0.0 + 0 +SEQEND + 5 +2469 + 8 +SCHORNSTEIN + 0 +POLYLINE + 5 +7AD + 8 +SCHORNSTEIN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +246A + 8 +SCHORNSTEIN + 10 +12740.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +246B + 8 +SCHORNSTEIN + 10 +12740.0 + 20 +7355.0 + 30 +0.0 + 0 +VERTEX + 5 +246C + 8 +SCHORNSTEIN + 10 +14591.819725 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +246D + 8 +SCHORNSTEIN + 0 +POLYLINE + 5 +7B2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +246E + 8 +DETAILS + 10 +4300.0 + 20 +5945.0 + 30 +0.0 + 0 +VERTEX + 5 +246F + 8 +DETAILS + 10 +4300.0 + 20 +5880.0 + 30 +0.0 + 0 +SEQEND + 5 +2470 + 8 +DETAILS + 0 +POLYLINE + 5 +7B6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2471 + 8 +DETAILS + 10 +4300.0 + 20 +5820.0 + 30 +0.0 + 0 +VERTEX + 5 +2472 + 8 +DETAILS + 10 +4300.0 + 20 +5755.0 + 30 +0.0 + 0 +SEQEND + 5 +2473 + 8 +DETAILS + 0 +POLYLINE + 5 +7BA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2474 + 8 +DETAILS + 10 +4300.0 + 20 +5695.0 + 30 +0.0 + 0 +VERTEX + 5 +2475 + 8 +DETAILS + 10 +4300.0 + 20 +5630.0 + 30 +0.0 + 0 +SEQEND + 5 +2476 + 8 +DETAILS + 0 +POLYLINE + 5 +7BE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2477 + 8 +DETAILS + 10 +4300.0 + 20 +5545.0 + 30 +0.0 + 0 +VERTEX + 5 +2478 + 8 +DETAILS + 10 +4300.0 + 20 +5480.0 + 30 +0.0 + 0 +SEQEND + 5 +2479 + 8 +DETAILS + 0 +POLYLINE + 5 +7C2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +247A + 8 +DETAILS + 10 +4300.0 + 20 +5415.0 + 30 +0.0 + 0 +VERTEX + 5 +247B + 8 +DETAILS + 10 +4300.0 + 20 +5350.0 + 30 +0.0 + 0 +SEQEND + 5 +247C + 8 +DETAILS + 0 +POLYLINE + 5 +7C6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +247D + 8 +DETAILS + 10 +5635.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +247E + 8 +DETAILS + 10 +5635.0 + 20 +4730.0 + 30 +0.0 + 0 +SEQEND + 5 +247F + 8 +DETAILS + 0 +POLYLINE + 5 +7CA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2480 + 8 +DETAILS + 10 +5750.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +2481 + 8 +DETAILS + 10 +5750.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2482 + 8 +DETAILS + 0 +POLYLINE + 5 +7CE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2483 + 8 +DETAILS + 10 +5635.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +2484 + 8 +DETAILS + 10 +5635.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2485 + 8 +DETAILS + 0 +POLYLINE + 5 +7D2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2486 + 8 +DETAILS + 10 +5635.0 + 20 +4670.0 + 30 +0.0 + 0 +VERTEX + 5 +2487 + 8 +DETAILS + 10 +5635.0 + 20 +4650.0 + 30 +0.0 + 0 +SEQEND + 5 +2488 + 8 +DETAILS + 0 +POLYLINE + 5 +7D6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2489 + 8 +DETAILS + 10 +5635.0 + 20 +4630.0 + 30 +0.0 + 0 +VERTEX + 5 +248A + 8 +DETAILS + 10 +5635.0 + 20 +4610.0 + 30 +0.0 + 0 +SEQEND + 5 +248B + 8 +DETAILS + 0 +POLYLINE + 5 +7DA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +248C + 8 +DETAILS + 10 +5750.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +248D + 8 +DETAILS + 10 +5750.0 + 20 +4730.0 + 30 +0.0 + 0 +SEQEND + 5 +248E + 8 +DETAILS + 0 +POLYLINE + 5 +7DE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +248F + 8 +DETAILS + 10 +5750.0 + 20 +4670.0 + 30 +0.0 + 0 +VERTEX + 5 +2490 + 8 +DETAILS + 10 +5750.0 + 20 +4650.0 + 30 +0.0 + 0 +SEQEND + 5 +2491 + 8 +DETAILS + 0 +POLYLINE + 5 +7E2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2492 + 8 +DETAILS + 10 +5750.0 + 20 +4630.0 + 30 +0.0 + 0 +VERTEX + 5 +2493 + 8 +DETAILS + 10 +5750.0 + 20 +4610.0 + 30 +0.0 + 0 +SEQEND + 5 +2494 + 8 +DETAILS + 0 +POLYLINE + 5 +7E6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2495 + 8 +DETAILS + 10 +5635.0 + 20 +4590.0 + 30 +0.0 + 0 +VERTEX + 5 +2496 + 8 +DETAILS + 10 +5635.0 + 20 +4570.0 + 30 +0.0 + 0 +SEQEND + 5 +2497 + 8 +DETAILS + 0 +POLYLINE + 5 +7EA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2498 + 8 +DETAILS + 10 +5635.0 + 20 +4545.0 + 30 +0.0 + 0 +VERTEX + 5 +2499 + 8 +DETAILS + 10 +5635.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +249A + 8 +DETAILS + 0 +POLYLINE + 5 +7EE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +249B + 8 +DETAILS + 10 +5750.0 + 20 +4590.0 + 30 +0.0 + 0 +VERTEX + 5 +249C + 8 +DETAILS + 10 +5750.0 + 20 +4570.0 + 30 +0.0 + 0 +SEQEND + 5 +249D + 8 +DETAILS + 0 +POLYLINE + 5 +7F2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +249E + 8 +DETAILS + 10 +5750.0 + 20 +4545.0 + 30 +0.0 + 0 +VERTEX + 5 +249F + 8 +DETAILS + 10 +5750.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +24A0 + 8 +DETAILS + 0 +POLYLINE + 5 +7F6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24A1 + 8 +DETAILS + 10 +15365.0 + 20 +4545.0 + 30 +0.0 + 0 +VERTEX + 5 +24A2 + 8 +DETAILS + 10 +15365.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +24A3 + 8 +DETAILS + 0 +POLYLINE + 5 +7FA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24A4 + 8 +DETAILS + 10 +15365.0 + 20 +4590.0 + 30 +0.0 + 0 +VERTEX + 5 +24A5 + 8 +DETAILS + 10 +15365.0 + 20 +4570.0 + 30 +0.0 + 0 +SEQEND + 5 +24A6 + 8 +DETAILS + 0 +POLYLINE + 5 +7FE + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24A7 + 8 +DETAILS + 10 +15480.0 + 20 +4545.0 + 30 +0.0 + 0 +VERTEX + 5 +24A8 + 8 +DETAILS + 10 +15480.0 + 20 +4525.0 + 30 +0.0 + 0 +SEQEND + 5 +24A9 + 8 +DETAILS + 0 +POLYLINE + 5 +802 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24AA + 8 +DETAILS + 10 +15480.0 + 20 +4590.0 + 30 +0.0 + 0 +VERTEX + 5 +24AB + 8 +DETAILS + 10 +15480.0 + 20 +4570.0 + 30 +0.0 + 0 +SEQEND + 5 +24AC + 8 +DETAILS + 0 +POLYLINE + 5 +806 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24AD + 8 +DETAILS + 10 +15365.0 + 20 +4630.0 + 30 +0.0 + 0 +VERTEX + 5 +24AE + 8 +DETAILS + 10 +15365.0 + 20 +4610.0 + 30 +0.0 + 0 +SEQEND + 5 +24AF + 8 +DETAILS + 0 +POLYLINE + 5 +80A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24B0 + 8 +DETAILS + 10 +15480.0 + 20 +4630.0 + 30 +0.0 + 0 +VERTEX + 5 +24B1 + 8 +DETAILS + 10 +15480.0 + 20 +4610.0 + 30 +0.0 + 0 +SEQEND + 5 +24B2 + 8 +DETAILS + 0 +POLYLINE + 5 +80E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24B3 + 8 +DETAILS + 10 +15365.0 + 20 +4670.0 + 30 +0.0 + 0 +VERTEX + 5 +24B4 + 8 +DETAILS + 10 +15365.0 + 20 +4650.0 + 30 +0.0 + 0 +SEQEND + 5 +24B5 + 8 +DETAILS + 0 +POLYLINE + 5 +812 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24B6 + 8 +DETAILS + 10 +15365.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +24B7 + 8 +DETAILS + 10 +15365.0 + 20 +4730.0 + 30 +0.0 + 0 +SEQEND + 5 +24B8 + 8 +DETAILS + 0 +POLYLINE + 5 +816 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24B9 + 8 +DETAILS + 10 +15365.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +24BA + 8 +DETAILS + 10 +15365.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +24BB + 8 +DETAILS + 0 +POLYLINE + 5 +81A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24BC + 8 +DETAILS + 10 +15480.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +24BD + 8 +DETAILS + 10 +15480.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +24BE + 8 +DETAILS + 0 +POLYLINE + 5 +81E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24BF + 8 +DETAILS + 10 +15480.0 + 20 +4670.0 + 30 +0.0 + 0 +VERTEX + 5 +24C0 + 8 +DETAILS + 10 +15480.0 + 20 +4650.0 + 30 +0.0 + 0 +SEQEND + 5 +24C1 + 8 +DETAILS + 0 +POLYLINE + 5 +822 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24C2 + 8 +DETAILS + 10 +15480.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +24C3 + 8 +DETAILS + 10 +15480.0 + 20 +4730.0 + 30 +0.0 + 0 +SEQEND + 5 +24C4 + 8 +DETAILS + 0 +POLYLINE + 5 +826 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24C5 + 8 +DETAILS + 10 +16815.0 + 20 +5545.0 + 30 +0.0 + 0 +VERTEX + 5 +24C6 + 8 +DETAILS + 10 +16815.0 + 20 +5480.0 + 30 +0.0 + 0 +SEQEND + 5 +24C7 + 8 +DETAILS + 0 +POLYLINE + 5 +82A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24C8 + 8 +DETAILS + 10 +16815.0 + 20 +5415.0 + 30 +0.0 + 0 +VERTEX + 5 +24C9 + 8 +DETAILS + 10 +16815.0 + 20 +5350.0 + 30 +0.0 + 0 +SEQEND + 5 +24CA + 8 +DETAILS + 0 +POLYLINE + 5 +82E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24CB + 8 +DETAILS + 10 +16815.0 + 20 +5820.0 + 30 +0.0 + 0 +VERTEX + 5 +24CC + 8 +DETAILS + 10 +16815.0 + 20 +5755.0 + 30 +0.0 + 0 +SEQEND + 5 +24CD + 8 +DETAILS + 0 +POLYLINE + 5 +832 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24CE + 8 +DETAILS + 10 +16815.0 + 20 +5695.0 + 30 +0.0 + 0 +VERTEX + 5 +24CF + 8 +DETAILS + 10 +16815.0 + 20 +5630.0 + 30 +0.0 + 0 +SEQEND + 5 +24D0 + 8 +DETAILS + 0 +POLYLINE + 5 +836 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24D1 + 8 +DETAILS + 10 +16815.0 + 20 +5945.0 + 30 +0.0 + 0 +VERTEX + 5 +24D2 + 8 +DETAILS + 10 +16815.0 + 20 +5880.0 + 30 +0.0 + 0 +SEQEND + 5 +24D3 + 8 +DETAILS + 0 +POLYLINE + 5 +83A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24D4 + 8 +DETAILS + 10 +6925.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +24D5 + 8 +DETAILS + 10 +6925.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +24D6 + 8 +DETAILS + 10 +7055.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +24D7 + 8 +DETAILS + 10 +7055.0 + 20 +4850.0 + 30 +0.0 + 0 +VERTEX + 5 +24D8 + 8 +DETAILS + 10 +7075.0 + 20 +4850.0 + 30 +0.0 + 0 +SEQEND + 5 +24D9 + 8 +DETAILS + 0 +POLYLINE + 5 +841 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24DA + 8 +DETAILS + 10 +7435.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +24DB + 8 +DETAILS + 10 +7435.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +24DC + 8 +DETAILS + 10 +7305.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +24DD + 8 +DETAILS + 10 +7305.0 + 20 +4850.0 + 30 +0.0 + 0 +VERTEX + 5 +24DE + 8 +DETAILS + 10 +7285.0 + 20 +4850.0 + 30 +0.0 + 0 +SEQEND + 5 +24DF + 8 +DETAILS + 0 +POLYLINE + 5 +848 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24E0 + 8 +DETAILS + 10 +7055.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +24E1 + 8 +DETAILS + 10 +7065.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +24E2 + 8 +DETAILS + 10 +7075.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +24E3 + 8 +DETAILS + 0 +POLYLINE + 5 +84D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24E4 + 8 +DETAILS + 10 +7095.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +24E5 + 8 +DETAILS + 10 +7115.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +24E6 + 8 +DETAILS + 0 +POLYLINE + 5 +851 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24E7 + 8 +DETAILS + 10 +7055.0 + 20 +4770.0 + 30 +0.0 + 0 +VERTEX + 5 +24E8 + 8 +DETAILS + 10 +7075.0 + 20 +4770.0 + 30 +0.0 + 0 +SEQEND + 5 +24E9 + 8 +DETAILS + 0 +POLYLINE + 5 +855 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24EA + 8 +DETAILS + 10 +7095.0 + 20 +4770.0 + 30 +0.0 + 0 +VERTEX + 5 +24EB + 8 +DETAILS + 10 +7115.0 + 20 +4770.0 + 30 +0.0 + 0 +SEQEND + 5 +24EC + 8 +DETAILS + 0 +POLYLINE + 5 +859 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24ED + 8 +DETAILS + 10 +7305.0 + 20 +4830.0 + 30 +0.0 + 0 +VERTEX + 5 +24EE + 8 +DETAILS + 10 +7290.0 + 20 +4830.0 + 30 +0.0 + 0 +SEQEND + 5 +24EF + 8 +DETAILS + 0 +POLYLINE + 5 +85D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24F0 + 8 +DETAILS + 10 +7270.0 + 20 +4830.0 + 30 +0.0 + 0 +VERTEX + 5 +24F1 + 8 +DETAILS + 10 +7250.0 + 20 +4830.0 + 30 +0.0 + 0 +SEQEND + 5 +24F2 + 8 +DETAILS + 0 +POLYLINE + 5 +861 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24F3 + 8 +DETAILS + 10 +7305.0 + 20 +4760.0 + 30 +0.0 + 0 +VERTEX + 5 +24F4 + 8 +DETAILS + 10 +7290.0 + 20 +4760.0 + 30 +0.0 + 0 +SEQEND + 5 +24F5 + 8 +DETAILS + 0 +POLYLINE + 5 +865 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24F6 + 8 +DETAILS + 10 +7270.0 + 20 +4760.0 + 30 +0.0 + 0 +VERTEX + 5 +24F7 + 8 +DETAILS + 10 +7250.0 + 20 +4760.0 + 30 +0.0 + 0 +SEQEND + 5 +24F8 + 8 +DETAILS + 0 +POLYLINE + 5 +869 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24F9 + 8 +DETAILS + 10 +7030.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +24FA + 8 +DETAILS + 10 +7030.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +24FB + 8 +DETAILS + 0 +POLYLINE + 5 +86D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24FC + 8 +DETAILS + 10 +7030.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +24FD + 8 +DETAILS + 10 +7030.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +24FE + 8 +DETAILS + 0 +POLYLINE + 5 +871 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +24FF + 8 +DETAILS + 10 +7030.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2500 + 8 +DETAILS + 10 +7030.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2501 + 8 +DETAILS + 0 +POLYLINE + 5 +875 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2502 + 8 +DETAILS + 10 +6965.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2503 + 8 +DETAILS + 10 +6965.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +2504 + 8 +DETAILS + 0 +POLYLINE + 5 +879 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2505 + 8 +DETAILS + 10 +6965.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2506 + 8 +DETAILS + 10 +6965.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2507 + 8 +DETAILS + 0 +POLYLINE + 5 +87D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2508 + 8 +DETAILS + 10 +6965.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2509 + 8 +DETAILS + 10 +6965.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +250A + 8 +DETAILS + 0 +POLYLINE + 5 +881 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +250B + 8 +DETAILS + 10 +7340.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +250C + 8 +DETAILS + 10 +7340.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +250D + 8 +DETAILS + 0 +POLYLINE + 5 +885 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +250E + 8 +DETAILS + 10 +7340.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +250F + 8 +DETAILS + 10 +7340.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2510 + 8 +DETAILS + 0 +POLYLINE + 5 +889 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2511 + 8 +DETAILS + 10 +7340.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2512 + 8 +DETAILS + 10 +7340.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2513 + 8 +DETAILS + 0 +POLYLINE + 5 +88D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2514 + 8 +DETAILS + 10 +7405.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2515 + 8 +DETAILS + 10 +7405.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +2516 + 8 +DETAILS + 0 +POLYLINE + 5 +891 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2517 + 8 +DETAILS + 10 +7405.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2518 + 8 +DETAILS + 10 +7405.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2519 + 8 +DETAILS + 0 +POLYLINE + 5 +895 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +251A + 8 +DETAILS + 10 +7405.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +251B + 8 +DETAILS + 10 +7405.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +251C + 8 +DETAILS + 0 +POLYLINE + 5 +899 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +251D + 8 +DETAILS + 10 +14150.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +251E + 8 +DETAILS + 10 +14150.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +251F + 8 +DETAILS + 0 +POLYLINE + 5 +89D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2520 + 8 +DETAILS + 10 +14085.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2521 + 8 +DETAILS + 10 +14085.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +2522 + 8 +DETAILS + 0 +POLYLINE + 5 +8A1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2523 + 8 +DETAILS + 10 +14150.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2524 + 8 +DETAILS + 10 +14150.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2525 + 8 +DETAILS + 0 +POLYLINE + 5 +8A5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2526 + 8 +DETAILS + 10 +14085.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2527 + 8 +DETAILS + 10 +14085.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2528 + 8 +DETAILS + 0 +POLYLINE + 5 +8A9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2529 + 8 +DETAILS + 10 +14190.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +252A + 8 +DETAILS + 10 +14190.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +252B + 8 +DETAILS + 10 +14060.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +252C + 8 +DETAILS + 10 +14060.0 + 20 +4850.0 + 30 +0.0 + 0 +VERTEX + 5 +252D + 8 +DETAILS + 10 +14040.0 + 20 +4850.0 + 30 +0.0 + 0 +SEQEND + 5 +252E + 8 +DETAILS + 0 +POLYLINE + 5 +8B0 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +252F + 8 +DETAILS + 10 +14150.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2530 + 8 +DETAILS + 10 +14150.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2531 + 8 +DETAILS + 0 +POLYLINE + 5 +8B4 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2532 + 8 +DETAILS + 10 +14085.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2533 + 8 +DETAILS + 10 +14085.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2534 + 8 +DETAILS + 0 +POLYLINE + 5 +8B8 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2535 + 8 +DETAILS + 10 +14020.0 + 20 +4770.0 + 30 +0.0 + 0 +VERTEX + 5 +2536 + 8 +DETAILS + 10 +14000.0 + 20 +4770.0 + 30 +0.0 + 0 +SEQEND + 5 +2537 + 8 +DETAILS + 0 +POLYLINE + 5 +8BC + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2538 + 8 +DETAILS + 10 +14060.0 + 20 +4770.0 + 30 +0.0 + 0 +VERTEX + 5 +2539 + 8 +DETAILS + 10 +14040.0 + 20 +4770.0 + 30 +0.0 + 0 +SEQEND + 5 +253A + 8 +DETAILS + 0 +POLYLINE + 5 +8C0 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +253B + 8 +DETAILS + 10 +14020.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +253C + 8 +DETAILS + 10 +14000.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +253D + 8 +DETAILS + 0 +POLYLINE + 5 +8C4 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +253E + 8 +DETAILS + 10 +14060.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +253F + 8 +DETAILS + 10 +14050.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +2540 + 8 +DETAILS + 10 +14040.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +2541 + 8 +DETAILS + 0 +POLYLINE + 5 +8C9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2542 + 8 +DETAILS + 10 +13710.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2543 + 8 +DETAILS + 10 +13710.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +2544 + 8 +DETAILS + 0 +POLYLINE + 5 +8CD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2545 + 8 +DETAILS + 10 +13775.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2546 + 8 +DETAILS + 10 +13775.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +2547 + 8 +DETAILS + 0 +POLYLINE + 5 +8D1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2548 + 8 +DETAILS + 10 +13710.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2549 + 8 +DETAILS + 10 +13710.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +254A + 8 +DETAILS + 0 +POLYLINE + 5 +8D5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +254B + 8 +DETAILS + 10 +13775.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +254C + 8 +DETAILS + 10 +13775.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +254D + 8 +DETAILS + 0 +POLYLINE + 5 +8D9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +254E + 8 +DETAILS + 10 +13680.0 + 20 +4710.0 + 30 +0.0 + 0 +VERTEX + 5 +254F + 8 +DETAILS + 10 +13680.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2550 + 8 +DETAILS + 10 +13810.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2551 + 8 +DETAILS + 10 +13810.0 + 20 +4850.0 + 30 +0.0 + 0 +VERTEX + 5 +2552 + 8 +DETAILS + 10 +13830.0 + 20 +4850.0 + 30 +0.0 + 0 +SEQEND + 5 +2553 + 8 +DETAILS + 0 +POLYLINE + 5 +8E0 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2554 + 8 +DETAILS + 10 +13710.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2555 + 8 +DETAILS + 10 +13710.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2556 + 8 +DETAILS + 0 +POLYLINE + 5 +8E4 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2557 + 8 +DETAILS + 10 +13775.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2558 + 8 +DETAILS + 10 +13775.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2559 + 8 +DETAILS + 0 +POLYLINE + 5 +8E8 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +255A + 8 +DETAILS + 10 +13845.0 + 20 +4760.0 + 30 +0.0 + 0 +VERTEX + 5 +255B + 8 +DETAILS + 10 +13865.0 + 20 +4760.0 + 30 +0.0 + 0 +SEQEND + 5 +255C + 8 +DETAILS + 0 +POLYLINE + 5 +8EC + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +255D + 8 +DETAILS + 10 +13810.0 + 20 +4760.0 + 30 +0.0 + 0 +VERTEX + 5 +255E + 8 +DETAILS + 10 +13825.0 + 20 +4760.0 + 30 +0.0 + 0 +SEQEND + 5 +255F + 8 +DETAILS + 0 +POLYLINE + 5 +8F0 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2560 + 8 +DETAILS + 10 +13845.0 + 20 +4830.0 + 30 +0.0 + 0 +VERTEX + 5 +2561 + 8 +DETAILS + 10 +13865.0 + 20 +4830.0 + 30 +0.0 + 0 +SEQEND + 5 +2562 + 8 +DETAILS + 0 +POLYLINE + 5 +8F4 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2563 + 8 +DETAILS + 10 +13810.0 + 20 +4830.0 + 30 +0.0 + 0 +VERTEX + 5 +2564 + 8 +DETAILS + 10 +13825.0 + 20 +4830.0 + 30 +0.0 + 0 +SEQEND + 5 +2565 + 8 +DETAILS + 0 +POLYLINE + 5 +8F8 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2566 + 8 +DETAILS + 10 +10430.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2567 + 8 +DETAILS + 10 +10430.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +2568 + 8 +DETAILS + 0 +POLYLINE + 5 +8FC + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2569 + 8 +DETAILS + 10 +10365.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +256A + 8 +DETAILS + 10 +10365.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +256B + 8 +DETAILS + 0 +POLYLINE + 5 +900 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +256C + 8 +DETAILS + 10 +10430.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +256D + 8 +DETAILS + 10 +10430.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +256E + 8 +DETAILS + 0 +POLYLINE + 5 +904 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +256F + 8 +DETAILS + 10 +10365.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2570 + 8 +DETAILS + 10 +10365.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2571 + 8 +DETAILS + 0 +POLYLINE + 5 +908 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2572 + 8 +DETAILS + 10 +10430.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2573 + 8 +DETAILS + 10 +10430.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2574 + 8 +DETAILS + 0 +POLYLINE + 5 +90C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2575 + 8 +DETAILS + 10 +10365.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2576 + 8 +DETAILS + 10 +10365.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2577 + 8 +DETAILS + 0 +POLYLINE + 5 +910 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2578 + 8 +DETAILS + 10 +10695.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +2579 + 8 +DETAILS + 10 +10695.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +257A + 8 +DETAILS + 0 +POLYLINE + 5 +914 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +257B + 8 +DETAILS + 10 +10760.0 + 20 +4675.0 + 30 +0.0 + 0 +VERTEX + 5 +257C + 8 +DETAILS + 10 +10760.0 + 20 +4635.0 + 30 +0.0 + 0 +SEQEND + 5 +257D + 8 +DETAILS + 0 +POLYLINE + 5 +918 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +257E + 8 +DETAILS + 10 +10695.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +257F + 8 +DETAILS + 10 +10695.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2580 + 8 +DETAILS + 0 +POLYLINE + 5 +91C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2581 + 8 +DETAILS + 10 +10760.0 + 20 +4615.0 + 30 +0.0 + 0 +VERTEX + 5 +2582 + 8 +DETAILS + 10 +10760.0 + 20 +4590.0 + 30 +0.0 + 0 +SEQEND + 5 +2583 + 8 +DETAILS + 0 +POLYLINE + 5 +920 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2584 + 8 +DETAILS + 10 +10695.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2585 + 8 +DETAILS + 10 +10695.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2586 + 8 +DETAILS + 0 +POLYLINE + 5 +924 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2587 + 8 +DETAILS + 10 +10760.0 + 20 +4725.0 + 30 +0.0 + 0 +VERTEX + 5 +2588 + 8 +DETAILS + 10 +10760.0 + 20 +4690.0 + 30 +0.0 + 0 +SEQEND + 5 +2589 + 8 +DETAILS + 0 +POLYLINE + 5 +928 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +258A + 8 +DETAILS + 10 +10455.0 + 20 +4835.0 + 30 +0.0 + 0 +VERTEX + 5 +258B + 8 +DETAILS + 10 +10475.0 + 20 +4835.0 + 30 +0.0 + 0 +SEQEND + 5 +258C + 8 +DETAILS + 0 +POLYLINE + 5 +92C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +258D + 8 +DETAILS + 10 +10495.0 + 20 +4835.0 + 30 +0.0 + 0 +VERTEX + 5 +258E + 8 +DETAILS + 10 +10510.0 + 20 +4835.0 + 30 +0.0 + 0 +SEQEND + 5 +258F + 8 +DETAILS + 0 +POLYLINE + 5 +930 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2590 + 8 +DETAILS + 10 +10525.0 + 20 +4835.0 + 30 +0.0 + 0 +VERTEX + 5 +2591 + 8 +DETAILS + 10 +10540.0 + 20 +4835.0 + 30 +0.0 + 0 +SEQEND + 5 +2592 + 8 +DETAILS + 0 +POLYLINE + 5 +934 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2593 + 8 +DETAILS + 10 +10495.0 + 20 +4765.0 + 30 +0.0 + 0 +VERTEX + 5 +2594 + 8 +DETAILS + 10 +10510.0 + 20 +4765.0 + 30 +0.0 + 0 +SEQEND + 5 +2595 + 8 +DETAILS + 0 +POLYLINE + 5 +938 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2596 + 8 +DETAILS + 10 +10525.0 + 20 +4765.0 + 30 +0.0 + 0 +VERTEX + 5 +2597 + 8 +DETAILS + 10 +10540.0 + 20 +4765.0 + 30 +0.0 + 0 +SEQEND + 5 +2598 + 8 +DETAILS + 0 +POLYLINE + 5 +93C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2599 + 8 +DETAILS + 10 +10455.0 + 20 +4765.0 + 30 +0.0 + 0 +VERTEX + 5 +259A + 8 +DETAILS + 10 +10475.0 + 20 +4765.0 + 30 +0.0 + 0 +SEQEND + 5 +259B + 8 +DETAILS + 0 +POLYLINE + 5 +940 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +259C + 8 +DETAILS + 10 +10660.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +259D + 8 +DETAILS + 10 +10635.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +259E + 8 +DETAILS + 0 +POLYLINE + 5 +944 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +259F + 8 +DETAILS + 10 +10620.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +25A0 + 8 +DETAILS + 10 +10605.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +25A1 + 8 +DETAILS + 0 +POLYLINE + 5 +948 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25A2 + 8 +DETAILS + 10 +10590.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +25A3 + 8 +DETAILS + 10 +10575.0 + 20 +4825.0 + 30 +0.0 + 0 +SEQEND + 5 +25A4 + 8 +DETAILS + 0 +POLYLINE + 5 +94C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25A5 + 8 +DETAILS + 10 +10590.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +25A6 + 8 +DETAILS + 10 +10575.0 + 20 +4750.0 + 30 +0.0 + 0 +SEQEND + 5 +25A7 + 8 +DETAILS + 0 +POLYLINE + 5 +950 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25A8 + 8 +DETAILS + 10 +10620.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +25A9 + 8 +DETAILS + 10 +10605.0 + 20 +4750.0 + 30 +0.0 + 0 +SEQEND + 5 +25AA + 8 +DETAILS + 0 +POLYLINE + 5 +954 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25AB + 8 +DETAILS + 10 +10660.0 + 20 +4750.0 + 30 +0.0 + 0 +VERTEX + 5 +25AC + 8 +DETAILS + 10 +10635.0 + 20 +4750.0 + 30 +0.0 + 0 +SEQEND + 5 +25AD + 8 +DETAILS + 0 +POLYLINE + 5 +958 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25AE + 8 +DETAILS + 10 +10395.0 + 20 +9990.0 + 30 +0.0 + 0 +VERTEX + 5 +25AF + 8 +DETAILS + 10 +10415.0 + 20 +9950.0 + 30 +0.0 + 0 +SEQEND + 5 +25B0 + 8 +DETAILS + 0 +POLYLINE + 5 +95C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25B1 + 8 +DETAILS + 10 +10425.0 + 20 +9930.0 + 30 +0.0 + 0 +VERTEX + 5 +25B2 + 8 +DETAILS + 10 +10445.0 + 20 +9890.0 + 30 +0.0 + 0 +SEQEND + 5 +25B3 + 8 +DETAILS + 0 +POLYLINE + 5 +960 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25B4 + 8 +DETAILS + 10 +10460.0 + 20 +9865.0 + 30 +0.0 + 0 +VERTEX + 5 +25B5 + 8 +DETAILS + 10 +10480.0 + 20 +9825.0 + 30 +0.0 + 0 +SEQEND + 5 +25B6 + 8 +DETAILS + 0 +POLYLINE + 5 +964 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25B7 + 8 +DETAILS + 10 +10490.0 + 20 +9805.0 + 30 +0.0 + 0 +VERTEX + 5 +25B8 + 8 +DETAILS + 10 +10510.0 + 20 +9765.0 + 30 +0.0 + 0 +SEQEND + 5 +25B9 + 8 +DETAILS + 0 +POLYLINE + 5 +968 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25BA + 8 +DETAILS + 10 +10377.671942 + 20 +9982.673146 + 30 +0.0 + 0 +VERTEX + 5 +25BB + 8 +DETAILS + 10 +10408.95109 + 20 +10001.495886 + 30 +0.0 + 0 +SEQEND + 5 +25BC + 8 +DETAILS + 0 +POLYLINE + 5 +96C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25BD + 8 +DETAILS + 10 +10737.328058 + 20 +9982.673146 + 30 +0.0 + 0 +VERTEX + 5 +25BE + 8 +DETAILS + 10 +10706.04891 + 20 +10001.495886 + 30 +0.0 + 0 +SEQEND + 5 +25BF + 8 +DETAILS + 0 +POLYLINE + 5 +970 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25C0 + 8 +DETAILS + 10 +10720.0 + 20 +9990.0 + 30 +0.0 + 0 +VERTEX + 5 +25C1 + 8 +DETAILS + 10 +10700.0 + 20 +9950.0 + 30 +0.0 + 0 +SEQEND + 5 +25C2 + 8 +DETAILS + 0 +POLYLINE + 5 +974 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25C3 + 8 +DETAILS + 10 +10690.0 + 20 +9930.0 + 30 +0.0 + 0 +VERTEX + 5 +25C4 + 8 +DETAILS + 10 +10670.0 + 20 +9890.0 + 30 +0.0 + 0 +SEQEND + 5 +25C5 + 8 +DETAILS + 0 +POLYLINE + 5 +978 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25C6 + 8 +DETAILS + 10 +10655.0 + 20 +9865.0 + 30 +0.0 + 0 +VERTEX + 5 +25C7 + 8 +DETAILS + 10 +10635.0 + 20 +9825.0 + 30 +0.0 + 0 +SEQEND + 5 +25C8 + 8 +DETAILS + 0 +POLYLINE + 5 +97C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25C9 + 8 +DETAILS + 10 +10625.0 + 20 +9805.0 + 30 +0.0 + 0 +VERTEX + 5 +25CA + 8 +DETAILS + 10 +10605.0 + 20 +9765.0 + 30 +0.0 + 0 +SEQEND + 5 +25CB + 8 +DETAILS + 0 +POLYLINE + 5 +980 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25CC + 8 +DETAILS + 10 +13989.481111 + 20 +7852.54707 + 30 +0.0 + 0 +VERTEX + 5 +25CD + 8 +DETAILS + 10 +13957.62352 + 20 +7794.171745 + 30 +0.0 + 0 +SEQEND + 5 +25CE + 8 +DETAILS + 0 +POLYLINE + 5 +984 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25CF + 8 +DETAILS + 10 +13936.385098 + 20 +7758.792741 + 30 +0.0 + 0 +VERTEX + 5 +25D0 + 8 +DETAILS + 10 +13904.527507 + 20 +7700.417416 + 30 +0.0 + 0 +SEQEND + 5 +25D1 + 8 +DETAILS + 0 +POLYLINE + 5 +988 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25D2 + 8 +DETAILS + 10 +13893.908339 + 20 +7677.421095 + 30 +0.0 + 0 +VERTEX + 5 +25D3 + 8 +DETAILS + 10 +13862.050749 + 20 +7619.04577 + 30 +0.0 + 0 +SEQEND + 5 +25D4 + 8 +DETAILS + 0 +POLYLINE + 5 +98C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25D5 + 8 +DETAILS + 10 +13982.00818 + 20 +7864.830542 + 30 +0.0 + 0 +VERTEX + 5 +25D6 + 8 +DETAILS + 10 +14015.039986 + 20 +7863.115472 + 30 +0.0 + 0 +SEQEND + 5 +25D7 + 8 +DETAILS + 0 +POLYLINE + 5 +990 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +991 + 8 +HOLZ + 10 +4357.123981 + 20 +5770.33177 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +992 + 8 +HOLZ + 10 +4357.123981 + 20 +5770.33177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +993 + 8 +HOLZ + 10 +4356.457573 + 20 +5778.229812 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +994 + 8 +HOLZ + 10 +4356.31141 + 20 +5784.905913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +995 + 8 +HOLZ + 10 +4356.611169 + 20 +5790.504923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +996 + 8 +HOLZ + 10 +4357.28253 + 20 +5795.171693 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +997 + 8 +HOLZ + 10 +4358.251173 + 20 +5799.051073 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +998 + 8 +HOLZ + 10 +4359.442778 + 20 +5802.287913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +999 + 8 +HOLZ + 10 +4360.783023 + 20 +5805.027063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99A + 8 +HOLZ + 10 +4362.197588 + 20 +5807.413373 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99B + 8 +HOLZ + 10 +4363.627635 + 20 +5809.571267 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99C + 8 +HOLZ + 10 +4365.076263 + 20 +5811.543455 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99D + 8 +HOLZ + 10 +4366.56205 + 20 +5813.352223 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99E + 8 +HOLZ + 10 +4368.103578 + 20 +5815.019856 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99F + 8 +HOLZ + 10 +4369.719427 + 20 +5816.568637 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A0 + 8 +HOLZ + 10 +4371.428178 + 20 +5818.020852 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A1 + 8 +HOLZ + 10 +4373.248411 + 20 +5819.398785 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A2 + 8 +HOLZ + 10 +4375.198705 + 20 +5820.724721 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A3 + 8 +HOLZ + 10 +4377.287733 + 20 +5822.014136 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A4 + 8 +HOLZ + 10 +4379.484527 + 20 +5823.255266 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A5 + 8 +HOLZ + 10 +4381.748211 + 20 +5824.429542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A6 + 8 +HOLZ + 10 +4384.037906 + 20 +5825.518393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A7 + 8 +HOLZ + 10 +4386.312738 + 20 +5826.503247 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A8 + 8 +HOLZ + 10 +4388.531828 + 20 +5827.365534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A9 + 8 +HOLZ + 10 +4390.654301 + 20 +5828.086683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AA + 8 +HOLZ + 10 +4392.639279 + 20 +5828.648122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AB + 8 +HOLZ + 10 +4354.587174 + 20 +5793.151224 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9AC + 8 +HOLZ + 10 +4362.197595 + 20 +5809.631928 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9AD + 8 +HOLZ + 10 +4373.613183 + 20 +5821.041655 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9AE + 8 +HOLZ + 10 +4387.565665 + 20 +5827.380404 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9AF + 8 +HOLZ + 10 +4392.639279 + 20 +5828.648122 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9B0 + 8 +HOLZ + 0 +POLYLINE + 5 +9B1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +9B2 + 8 +HOLZ + 10 +4321.608683 + 20 +5771.599542 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9B3 + 8 +HOLZ + 10 +4321.608683 + 20 +5771.599542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B4 + 8 +HOLZ + 10 +4321.807491 + 20 +5779.583626 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B5 + 8 +HOLZ + 10 +4322.366755 + 20 +5786.505474 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B6 + 8 +HOLZ + 10 +4323.230735 + 20 +5792.491368 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B7 + 8 +HOLZ + 10 +4324.343689 + 20 +5797.667585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B8 + 8 +HOLZ + 10 +4325.649876 + 20 +5802.160408 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B9 + 8 +HOLZ + 10 +4327.093557 + 20 +5806.096115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BA + 8 +HOLZ + 10 +4328.618989 + 20 +5809.600987 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BB + 8 +HOLZ + 10 +4330.170431 + 20 +5812.801303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BC + 8 +HOLZ + 10 +4331.703293 + 20 +5815.804361 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BD + 8 +HOLZ + 10 +4333.217572 + 20 +5818.641523 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BE + 8 +HOLZ + 10 +4334.724419 + 20 +5821.325171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BF + 8 +HOLZ + 10 +4336.234981 + 20 +5823.867683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C0 + 8 +HOLZ + 10 +4337.760406 + 20 +5826.28144 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C1 + 8 +HOLZ + 10 +4339.311844 + 20 +5828.578822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C2 + 8 +HOLZ + 10 +4340.900441 + 20 +5830.772209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C3 + 8 +HOLZ + 10 +4342.537348 + 20 +5832.873982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C4 + 8 +HOLZ + 10 +4344.232472 + 20 +5834.896519 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C5 + 8 +HOLZ + 10 +4345.99077 + 20 +5836.852202 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C6 + 8 +HOLZ + 10 +4347.815956 + 20 +5838.753411 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C7 + 8 +HOLZ + 10 +4349.711747 + 20 +5840.612526 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C8 + 8 +HOLZ + 10 +4351.681859 + 20 +5842.441927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C9 + 8 +HOLZ + 10 +4353.730006 + 20 +5844.253996 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CA + 8 +HOLZ + 10 +4355.859905 + 20 +5846.061112 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CB + 8 +HOLZ + 10 +4358.075272 + 20 +5847.875655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CC + 8 +HOLZ + 10 +4360.398404 + 20 +5849.707531 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CD + 8 +HOLZ + 10 +4362.925915 + 20 +5851.556739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CE + 8 +HOLZ + 10 +4365.773005 + 20 +5853.420802 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CF + 8 +HOLZ + 10 +4369.05487 + 20 +5855.297246 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D0 + 8 +HOLZ + 10 +4372.886707 + 20 +5857.183594 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D1 + 8 +HOLZ + 10 +4377.383714 + 20 +5859.07737 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D2 + 8 +HOLZ + 10 +4382.661088 + 20 +5860.976098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D3 + 8 +HOLZ + 10 +4388.834025 + 20 +5862.877302 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D4 + 8 +HOLZ + 10 +4321.608683 + 20 +5794.418995 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D5 + 8 +HOLZ + 10 +4330.48755 + 20 +5814.702906 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D6 + 8 +HOLZ + 10 +4341.903139 + 20 +5833.719153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D7 + 8 +HOLZ + 10 +4357.123981 + 20 +5847.664369 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D8 + 8 +HOLZ + 10 +4371.076376 + 20 +5857.806324 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D9 + 8 +HOLZ + 10 +4388.834025 + 20 +5862.877302 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9DA + 8 +HOLZ + 0 +POLYLINE + 5 +9DB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +9DC + 8 +HOLZ + 10 +4279.75141 + 20 +5772.867259 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9DD + 8 +HOLZ + 10 +4279.75141 + 20 +5772.867259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9DE + 8 +HOLZ + 10 +4282.551229 + 20 +5787.268278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9DF + 8 +HOLZ + 10 +4285.264341 + 20 +5799.293511 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E0 + 8 +HOLZ + 10 +4287.922951 + 20 +5809.241324 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E1 + 8 +HOLZ + 10 +4290.559265 + 20 +5817.410082 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E2 + 8 +HOLZ + 10 +4293.205488 + 20 +5824.098151 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E3 + 8 +HOLZ + 10 +4295.893827 + 20 +5829.603898 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E4 + 8 +HOLZ + 10 +4298.656485 + 20 +5834.225689 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E5 + 8 +HOLZ + 10 +4301.52567 + 20 +5838.261888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E6 + 8 +HOLZ + 10 +4304.519136 + 20 +5841.966294 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E7 + 8 +HOLZ + 10 +4307.596831 + 20 +5845.414426 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E8 + 8 +HOLZ + 10 +4310.704254 + 20 +5848.637235 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9E9 + 8 +HOLZ + 10 +4313.786903 + 20 +5851.665672 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EA + 8 +HOLZ + 10 +4316.790277 + 20 +5854.530688 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EB + 8 +HOLZ + 10 +4319.659874 + 20 +5857.263234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EC + 8 +HOLZ + 10 +4322.341191 + 20 +5859.894261 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9ED + 8 +HOLZ + 10 +4324.779727 + 20 +5862.454721 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EE + 8 +HOLZ + 10 +4326.938735 + 20 +5864.96669 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EF + 8 +HOLZ + 10 +4328.852485 + 20 +5867.416758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F0 + 8 +HOLZ + 10 +4330.573002 + 20 +5869.78264 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F1 + 8 +HOLZ + 10 +4332.152309 + 20 +5872.042052 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F2 + 8 +HOLZ + 10 +4333.642432 + 20 +5874.172708 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F3 + 8 +HOLZ + 10 +4335.095396 + 20 +5876.152325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F4 + 8 +HOLZ + 10 +4336.563225 + 20 +5877.958618 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F5 + 8 +HOLZ + 10 +4338.097943 + 20 +5879.569302 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F6 + 8 +HOLZ + 10 +4339.742491 + 20 +5880.973235 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F7 + 8 +HOLZ + 10 +4341.503476 + 20 +5882.203844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F8 + 8 +HOLZ + 10 +4343.37842 + 20 +5883.305698 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F9 + 8 +HOLZ + 10 +4345.364844 + 20 +5884.323366 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FA + 8 +HOLZ + 10 +4347.460271 + 20 +5885.301417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FB + 8 +HOLZ + 10 +4349.662224 + 20 +5886.28442 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FC + 8 +HOLZ + 10 +4351.968225 + 20 +5887.316944 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FD + 8 +HOLZ + 10 +4354.375795 + 20 +5888.443558 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FE + 8 +HOLZ + 10 +4356.878947 + 20 +5889.700784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FF + 8 +HOLZ + 10 +4359.457658 + 20 +5891.092955 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A00 + 8 +HOLZ + 10 +4362.088392 + 20 +5892.616357 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A01 + 8 +HOLZ + 10 +4364.747615 + 20 +5894.267276 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A02 + 8 +HOLZ + 10 +4367.411793 + 20 +5896.041999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A03 + 8 +HOLZ + 10 +4370.057391 + 20 +5897.93681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A04 + 8 +HOLZ + 10 +4372.660876 + 20 +5899.947997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A05 + 8 +HOLZ + 10 +4375.198713 + 20 +5902.071844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A06 + 8 +HOLZ + 10 +4377.651909 + 20 +5904.30175 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A07 + 8 +HOLZ + 10 +4380.019638 + 20 +5906.619555 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A08 + 8 +HOLZ + 10 +4382.305616 + 20 +5909.004214 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A09 + 8 +HOLZ + 10 +4384.513559 + 20 +5911.434678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0A + 8 +HOLZ + 10 +4386.64718 + 20 +5913.889901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0B + 8 +HOLZ + 10 +4388.710197 + 20 +5916.348836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0C + 8 +HOLZ + 10 +4390.706325 + 20 +5918.790436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0D + 8 +HOLZ + 10 +4392.639279 + 20 +5921.193653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0E + 8 +HOLZ + 10 +4287.361831 + 20 +5814.702906 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A0F + 8 +HOLZ + 10 +4300.045866 + 20 +5841.32562 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A10 + 8 +HOLZ + 10 +4327.950743 + 20 +5862.877302 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A11 + 8 +HOLZ + 10 +4336.829525 + 20 +5881.893495 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A12 + 8 +HOLZ + 10 +4353.318814 + 20 +5886.964527 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A13 + 8 +HOLZ + 10 +4376.14999 + 20 +5900.909743 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A14 + 8 +HOLZ + 10 +4387.565665 + 20 +5914.854958 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A15 + 8 +HOLZ + 10 +4392.639279 + 20 +5921.193653 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A16 + 8 +HOLZ + 0 +POLYLINE + 5 +A17 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +A18 + 8 +HOLZ + 10 +4258.188507 + 20 +5772.867259 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A19 + 8 +HOLZ + 10 +4258.188507 + 20 +5772.867259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A1A + 8 +HOLZ + 10 +4260.622519 + 20 +5790.36708 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A1B + 8 +HOLZ + 10 +4263.153143 + 20 +5805.067707 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A1C + 8 +HOLZ + 10 +4265.758084 + 20 +5817.319501 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A1D + 8 +HOLZ + 10 +4268.415048 + 20 +5827.472828 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A1E + 8 +HOLZ + 10 +4271.101737 + 20 +5835.87805 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A1F + 8 +HOLZ + 10 +4273.795856 + 20 +5842.885532 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A20 + 8 +HOLZ + 10 +4276.475109 + 20 +5848.845638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A21 + 8 +HOLZ + 10 +4279.117201 + 20 +5854.10873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A22 + 8 +HOLZ + 10 +4281.703139 + 20 +5858.971524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A23 + 8 +HOLZ + 10 +4284.227143 + 20 +5863.516144 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A24 + 8 +HOLZ + 10 +4286.686736 + 20 +5867.771063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A25 + 8 +HOLZ + 10 +4289.07944 + 20 +5871.764757 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A26 + 8 +HOLZ + 10 +4291.402779 + 20 +5875.525701 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A27 + 8 +HOLZ + 10 +4293.654275 + 20 +5879.082368 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A28 + 8 +HOLZ + 10 +4295.831452 + 20 +5882.463234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A29 + 8 +HOLZ + 10 +4297.931832 + 20 +5885.696774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2A + 8 +HOLZ + 10 +4299.95975 + 20 +5888.810842 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2B + 8 +HOLZ + 10 +4301.946793 + 20 +5891.83082 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2C + 8 +HOLZ + 10 +4303.93136 + 20 +5894.781467 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2D + 8 +HOLZ + 10 +4305.951848 + 20 +5897.687546 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2E + 8 +HOLZ + 10 +4308.046657 + 20 +5900.573815 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2F + 8 +HOLZ + 10 +4310.254184 + 20 +5903.465037 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A30 + 8 +HOLZ + 10 +4312.612829 + 20 +5906.385972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A31 + 8 +HOLZ + 10 +4315.16099 + 20 +5909.361381 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A32 + 8 +HOLZ + 10 +4317.937066 + 20 +5912.422628 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A33 + 8 +HOLZ + 10 +4320.979455 + 20 +5915.627487 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A34 + 8 +HOLZ + 10 +4324.326558 + 20 +5919.040335 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A35 + 8 +HOLZ + 10 +4328.016774 + 20 +5922.72555 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A36 + 8 +HOLZ + 10 +4332.088502 + 20 +5926.747508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A37 + 8 +HOLZ + 10 +4336.580141 + 20 +5931.170587 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A38 + 8 +HOLZ + 10 +4341.530092 + 20 +5936.059165 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A39 + 8 +HOLZ + 10 +4346.976753 + 20 +5941.477618 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A3A + 8 +HOLZ + 10 +4264.530568 + 20 +5823.577144 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A3B + 8 +HOLZ + 10 +4279.75141 + 20 +5857.806324 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A3C + 8 +HOLZ + 10 +4298.777419 + 20 +5886.964527 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A3D + 8 +HOLZ + 10 +4312.729901 + 20 +5908.516209 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A3E + 8 +HOLZ + 10 +4331.755911 + 20 +5926.264685 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A3F + 8 +HOLZ + 10 +4346.976753 + 20 +5941.477618 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A40 + 8 +HOLZ + 0 +POLYLINE + 5 +A41 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +A42 + 8 +HOLZ + 10 +4226.478463 + 20 +5795.686713 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A43 + 8 +HOLZ + 10 +4226.478463 + 20 +5795.686713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A44 + 8 +HOLZ + 10 +4232.3155 + 20 +5811.513541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A45 + 8 +HOLZ + 10 +4237.500996 + 20 +5824.962104 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A46 + 8 +HOLZ + 10 +4242.096887 + 20 +5836.328293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A47 + 8 +HOLZ + 10 +4246.165104 + 20 +5845.907998 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A48 + 8 +HOLZ + 10 +4249.767582 + 20 +5853.997108 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A49 + 8 +HOLZ + 10 +4252.966253 + 20 +5860.891515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4A + 8 +HOLZ + 10 +4255.82305 + 20 +5866.887108 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4B + 8 +HOLZ + 10 +4258.399908 + 20 +5872.279778 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4C + 8 +HOLZ + 10 +4260.759378 + 20 +5877.322702 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4D + 8 +HOLZ + 10 +4262.966491 + 20 +5882.098211 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4E + 8 +HOLZ + 10 +4265.086897 + 20 +5886.64592 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4F + 8 +HOLZ + 10 +4267.186246 + 20 +5891.005449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A50 + 8 +HOLZ + 10 +4269.330188 + 20 +5895.216414 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A51 + 8 +HOLZ + 10 +4271.584372 + 20 +5899.318432 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A52 + 8 +HOLZ + 10 +4274.014449 + 20 +5903.351121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A53 + 8 +HOLZ + 10 +4276.686069 + 20 +5907.354099 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A54 + 8 +HOLZ + 10 +4279.658688 + 20 +5911.361411 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A55 + 8 +HOLZ + 10 +4282.966988 + 20 +5915.384819 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A56 + 8 +HOLZ + 10 +4286.639457 + 20 +5919.430512 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A57 + 8 +HOLZ + 10 +4290.704585 + 20 +5923.50468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A58 + 8 +HOLZ + 10 +4295.19086 + 20 +5927.613513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A59 + 8 +HOLZ + 10 +4300.126771 + 20 +5931.763201 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5A + 8 +HOLZ + 10 +4305.540806 + 20 +5935.959934 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5B + 8 +HOLZ + 10 +4311.461454 + 20 +5940.209901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5C + 8 +HOLZ + 10 +4242.967665 + 20 +5841.32562 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A5D + 8 +HOLZ + 10 +4260.725314 + 20 +5875.5548 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A5E + 8 +HOLZ + 10 +4273.409349 + 20 +5907.248438 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A5F + 8 +HOLZ + 10 +4294.972252 + 20 +5928.800174 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A60 + 8 +HOLZ + 10 +4311.461454 + 20 +5940.209901 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A61 + 8 +HOLZ + 0 +POLYLINE + 5 +A62 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +A63 + 8 +HOLZ + 10 +4225.210016 + 20 +5890.767733 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A64 + 8 +HOLZ + 10 +4225.210016 + 20 +5890.767733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A65 + 8 +HOLZ + 10 +4232.077232 + 20 +5899.131894 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A66 + 8 +HOLZ + 10 +4239.24173 + 20 +5907.050362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A67 + 8 +HOLZ + 10 +4246.525141 + 20 +5914.433999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A68 + 8 +HOLZ + 10 +4253.749095 + 20 +5921.193667 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A69 + 8 +HOLZ + 10 +4260.735224 + 20 +5927.240229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6A + 8 +HOLZ + 10 +4267.305157 + 20 +5932.484547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6B + 8 +HOLZ + 10 +4273.280527 + 20 +5936.837483 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6C + 8 +HOLZ + 10 +4278.482963 + 20 +5940.209901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6D + 8 +HOLZ + 10 +4242.967665 + 20 +5913.587187 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A6E + 8 +HOLZ + 10 +4265.798928 + 20 +5932.60338 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A6F + 8 +HOLZ + 10 +4278.482963 + 20 +5940.209901 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A70 + 8 +HOLZ + 0 +POLYLINE + 5 +A71 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +A72 + 8 +HOLZ + 10 +16866.072109 + 20 +5770.995143 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A73 + 8 +HOLZ + 10 +16866.072109 + 20 +5770.995143 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A74 + 8 +HOLZ + 10 +16867.405513 + 20 +5776.882084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A75 + 8 +HOLZ + 10 +16869.438562 + 20 +5782.457385 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A76 + 8 +HOLZ + 10 +16872.140837 + 20 +5787.835059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A77 + 8 +HOLZ + 10 +16875.48192 + 20 +5793.129122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A78 + 8 +HOLZ + 10 +16879.431392 + 20 +5798.453589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A79 + 8 +HOLZ + 10 +16883.958833 + 20 +5803.922473 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A7A + 8 +HOLZ + 10 +16889.033824 + 20 +5809.64979 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A7B + 8 +HOLZ + 10 +16894.625947 + 20 +5815.749553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A7C + 8 +HOLZ + 10 +16868.667952 + 20 +5787.21052 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A7D + 8 +HOLZ + 10 +16879.05115 + 20 +5798.885574 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A7E + 8 +HOLZ + 10 +16894.625947 + 20 +5815.749553 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A7F + 8 +HOLZ + 0 +POLYLINE + 5 +A80 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +A81 + 8 +HOLZ + 10 +16828.432995 + 20 +5772.292347 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A82 + 8 +HOLZ + 10 +16828.432995 + 20 +5772.292347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A83 + 8 +HOLZ + 10 +16831.680166 + 20 +5783.30086 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A84 + 8 +HOLZ + 10 +16834.637721 + 20 +5792.620692 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A85 + 8 +HOLZ + 10 +16837.350654 + 20 +5800.4482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A86 + 8 +HOLZ + 10 +16839.863961 + 20 +5806.979743 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A87 + 8 +HOLZ + 10 +16842.222637 + 20 +5812.411681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A88 + 8 +HOLZ + 10 +16844.471677 + 20 +5816.940371 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A89 + 8 +HOLZ + 10 +16846.656076 + 20 +5820.762172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A8A + 8 +HOLZ + 10 +16848.82083 + 20 +5824.073443 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A8B + 8 +HOLZ + 10 +16851.003963 + 20 +5827.044888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A8C + 8 +HOLZ + 10 +16853.215615 + 20 +5829.744601 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A8D + 8 +HOLZ + 10 +16855.458953 + 20 +5832.215018 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A8E + 8 +HOLZ + 10 +16857.737147 + 20 +5834.49858 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A8F + 8 +HOLZ + 10 +16860.053365 + 20 +5836.637723 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A90 + 8 +HOLZ + 10 +16862.410776 + 20 +5838.674887 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A91 + 8 +HOLZ + 10 +16864.812547 + 20 +5840.652511 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A92 + 8 +HOLZ + 10 +16867.261849 + 20 +5842.613031 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A93 + 8 +HOLZ + 10 +16869.776741 + 20 +5844.590654 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A94 + 8 +HOLZ + 10 +16872.434857 + 20 +5846.586644 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A95 + 8 +HOLZ + 10 +16875.328724 + 20 +5848.594034 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A96 + 8 +HOLZ + 10 +16878.550869 + 20 +5850.605856 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A97 + 8 +HOLZ + 10 +16882.193816 + 20 +5852.615142 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A98 + 8 +HOLZ + 10 +16886.350093 + 20 +5854.614924 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A99 + 8 +HOLZ + 10 +16891.112227 + 20 +5856.598234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A9A + 8 +HOLZ + 10 +16896.572742 + 20 +5858.558103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A9B + 8 +HOLZ + 10 +16837.518271 + 20 +5804.074499 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A9C + 8 +HOLZ + 10 +16848.55043 + 20 +5827.424607 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A9D + 8 +HOLZ + 10 +16866.72107 + 20 +5842.34278 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A9E + 8 +HOLZ + 10 +16880.997945 + 20 +5853.369233 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A9F + 8 +HOLZ + 10 +16896.572742 + 20 +5858.558103 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +AA0 + 8 +HOLZ + 0 +POLYLINE + 5 +AA1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +AA2 + 8 +HOLZ + 10 +16790.79388 + 20 +5772.292347 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AA3 + 8 +HOLZ + 10 +16790.79388 + 20 +5772.292347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA4 + 8 +HOLZ + 10 +16796.154895 + 20 +5786.184785 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA5 + 8 +HOLZ + 10 +16801.072292 + 20 +5797.449826 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA6 + 8 +HOLZ + 10 +16805.589166 + 20 +5806.439648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA7 + 8 +HOLZ + 10 +16809.74861 + 20 +5813.506429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA8 + 8 +HOLZ + 10 +16813.593721 + 20 +5819.002345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA9 + 8 +HOLZ + 10 +16817.167592 + 20 +5823.279574 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAA + 8 +HOLZ + 10 +16820.513318 + 20 +5826.690294 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAB + 8 +HOLZ + 10 +16823.673993 + 20 +5829.586682 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAC + 8 +HOLZ + 10 +16826.684684 + 20 +5832.266865 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAD + 8 +HOLZ + 10 +16829.548349 + 20 +5834.812763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAE + 8 +HOLZ + 10 +16832.259918 + 20 +5837.252248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAF + 8 +HOLZ + 10 +16834.814319 + 20 +5839.613189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB0 + 8 +HOLZ + 10 +16837.206482 + 20 +5841.923456 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB1 + 8 +HOLZ + 10 +16839.431338 + 20 +5844.21092 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB2 + 8 +HOLZ + 10 +16841.483816 + 20 +5846.503451 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB3 + 8 +HOLZ + 10 +16843.358845 + 20 +5848.828919 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB4 + 8 +HOLZ + 10 +16845.066249 + 20 +5851.21171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB5 + 8 +HOLZ + 10 +16846.675421 + 20 +5853.662277 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB6 + 8 +HOLZ + 10 +16848.27065 + 20 +5856.187586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB7 + 8 +HOLZ + 10 +16849.936223 + 20 +5858.794605 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB8 + 8 +HOLZ + 10 +16851.756429 + 20 +5861.490302 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB9 + 8 +HOLZ + 10 +16853.815554 + 20 +5864.281645 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABA + 8 +HOLZ + 10 +16856.197887 + 20 +5867.175602 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABB + 8 +HOLZ + 10 +16858.987715 + 20 +5870.179139 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABC + 8 +HOLZ + 10 +16862.241864 + 20 +5873.30767 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABD + 8 +HOLZ + 10 +16865.907312 + 20 +5876.610391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABE + 8 +HOLZ + 10 +16869.903573 + 20 +5880.144942 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABF + 8 +HOLZ + 10 +16874.150162 + 20 +5883.968963 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC0 + 8 +HOLZ + 10 +16878.566594 + 20 +5888.140096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC1 + 8 +HOLZ + 10 +16883.072385 + 20 +5892.71598 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC2 + 8 +HOLZ + 10 +16887.58705 + 20 +5897.754257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC3 + 8 +HOLZ + 10 +16892.030104 + 20 +5903.312568 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC4 + 8 +HOLZ + 10 +16805.719716 + 20 +5813.155091 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AC5 + 8 +HOLZ + 10 +16825.188191 + 20 +5831.316328 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AC6 + 8 +HOLZ + 10 +16845.305713 + 20 +5848.180308 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AC7 + 8 +HOLZ + 10 +16853.742029 + 20 +5868.935953 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AC8 + 8 +HOLZ + 10 +16880.348985 + 20 +5887.745793 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AC9 + 8 +HOLZ + 10 +16892.030104 + 20 +5903.312568 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +ACA + 8 +HOLZ + 0 +POLYLINE + 5 +ACB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +ACC + 8 +HOLZ + 10 +16766.782681 + 20 +5772.292347 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ACD + 8 +HOLZ + 10 +16766.782681 + 20 +5772.292347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ACE + 8 +HOLZ + 10 +16771.385228 + 20 +5793.065541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ACF + 8 +HOLZ + 10 +16775.921229 + 20 +5809.565734 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD0 + 8 +HOLZ + 10 +16780.354562 + 20 +5822.384535 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD1 + 8 +HOLZ + 10 +16784.649103 + 20 +5832.113549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD2 + 8 +HOLZ + 10 +16788.768731 + 20 +5839.344384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD3 + 8 +HOLZ + 10 +16792.677323 + 20 +5844.668647 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD4 + 8 +HOLZ + 10 +16796.338756 + 20 +5848.677944 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD5 + 8 +HOLZ + 10 +16799.716909 + 20 +5851.963883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD6 + 8 +HOLZ + 10 +16802.791925 + 20 +5855.022847 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD7 + 8 +HOLZ + 10 +16805.609011 + 20 +5857.970329 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD8 + 8 +HOLZ + 10 +16808.229638 + 20 +5860.826599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD9 + 8 +HOLZ + 10 +16810.71528 + 20 +5863.611925 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ADA + 8 +HOLZ + 10 +16813.127408 + 20 +5866.346578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ADB + 8 +HOLZ + 10 +16815.527495 + 20 +5869.050827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ADC + 8 +HOLZ + 10 +16817.977014 + 20 +5871.74494 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ADD + 8 +HOLZ + 10 +16820.537436 + 20 +5874.449188 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ADE + 8 +HOLZ + 10 +16823.256926 + 20 +5877.17814 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ADF + 8 +HOLZ + 10 +16826.130414 + 20 +5879.92356 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE0 + 8 +HOLZ + 10 +16829.13952 + 20 +5882.671515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE1 + 8 +HOLZ + 10 +16832.265868 + 20 +5885.408068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE2 + 8 +HOLZ + 10 +16835.491078 + 20 +5888.119284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE3 + 8 +HOLZ + 10 +16838.796772 + 20 +5890.791229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE4 + 8 +HOLZ + 10 +16842.164572 + 20 +5893.409967 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE5 + 8 +HOLZ + 10 +16845.576099 + 20 +5895.961564 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE6 + 8 +HOLZ + 10 +16849.030085 + 20 +5898.490568 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE7 + 8 +HOLZ + 10 +16852.593709 + 20 +5901.275472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE8 + 8 +HOLZ + 10 +16856.351256 + 20 +5904.653252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE9 + 8 +HOLZ + 10 +16860.387017 + 20 +5908.960883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AEA + 8 +HOLZ + 10 +16864.785278 + 20 +5914.535343 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AEB + 8 +HOLZ + 10 +16869.630328 + 20 +5921.713606 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AEC + 8 +HOLZ + 10 +16875.006454 + 20 +5930.83265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AED + 8 +HOLZ + 10 +16880.997945 + 20 +5942.229451 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AEE + 8 +HOLZ + 10 +16779.112761 + 20 +5833.910737 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AEF + 8 +HOLZ + 10 +16803.123874 + 20 +5853.369233 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AF0 + 8 +HOLZ + 10 +16818.698757 + 20 +5874.124878 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AF1 + 8 +HOLZ + 10 +16845.305713 + 20 +5896.826385 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AF2 + 8 +HOLZ + 10 +16864.125227 + 20 +5908.501439 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AF3 + 8 +HOLZ + 10 +16880.997945 + 20 +5942.229451 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +AF4 + 8 +HOLZ + 0 +POLYLINE + 5 +AF5 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +AF6 + 8 +HOLZ + 10 +16733.037244 + 20 +5772.292347 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AF7 + 8 +HOLZ + 10 +16733.037244 + 20 +5772.292347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF8 + 8 +HOLZ + 10 +16737.741193 + 20 +5791.253255 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF9 + 8 +HOLZ + 10 +16742.135239 + 20 +5806.195155 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFA + 8 +HOLZ + 10 +16746.244099 + 20 +5817.690019 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFB + 8 +HOLZ + 10 +16750.092488 + 20 +5826.30982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFC + 8 +HOLZ + 10 +16753.705124 + 20 +5832.62653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFD + 8 +HOLZ + 10 +16757.106723 + 20 +5837.212121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFE + 8 +HOLZ + 10 +16760.322003 + 20 +5840.638567 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFF + 8 +HOLZ + 10 +16763.37568 + 20 +5843.477839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B00 + 8 +HOLZ + 10 +16766.291626 + 20 +5846.213865 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B01 + 8 +HOLZ + 10 +16769.090331 + 20 +5848.978395 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B02 + 8 +HOLZ + 10 +16771.791442 + 20 +5851.815135 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B03 + 8 +HOLZ + 10 +16774.414603 + 20 +5854.767789 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B04 + 8 +HOLZ + 10 +16776.97946 + 20 +5857.880064 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B05 + 8 +HOLZ + 10 +16779.505659 + 20 +5861.195664 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B06 + 8 +HOLZ + 10 +16782.012846 + 20 +5864.758295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B07 + 8 +HOLZ + 10 +16784.520666 + 20 +5868.611661 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B08 + 8 +HOLZ + 10 +16787.050982 + 20 +5872.77635 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B09 + 8 +HOLZ + 10 +16789.634532 + 20 +5877.180468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0A + 8 +HOLZ + 10 +16792.30427 + 20 +5881.729004 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0B + 8 +HOLZ + 10 +16795.09315 + 20 +5886.326946 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0C + 8 +HOLZ + 10 +16798.034127 + 20 +5890.879283 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0D + 8 +HOLZ + 10 +16801.160157 + 20 +5895.291002 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0E + 8 +HOLZ + 10 +16804.504192 + 20 +5899.467092 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0F + 8 +HOLZ + 10 +16808.099189 + 20 +5903.312541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B10 + 8 +HOLZ + 10 +16811.964158 + 20 +5906.793778 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B11 + 8 +HOLZ + 10 +16816.062345 + 20 +5910.122997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B12 + 8 +HOLZ + 10 +16820.343049 + 20 +5913.573832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B13 + 8 +HOLZ + 10 +16824.755571 + 20 +5917.419917 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B14 + 8 +HOLZ + 10 +16829.249214 + 20 +5921.934887 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B15 + 8 +HOLZ + 10 +16833.773277 + 20 +5927.392377 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B16 + 8 +HOLZ + 10 +16838.277062 + 20 +5934.06602 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B17 + 8 +HOLZ + 10 +16842.70987 + 20 +5942.229451 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B18 + 8 +HOLZ + 10 +16746.016285 + 20 +5828.721866 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B19 + 8 +HOLZ + 10 +16764.835799 + 20 +5843.639985 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B1A + 8 +HOLZ + 10 +16784.30436 + 20 +5865.044287 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B1B + 8 +HOLZ + 10 +16805.070756 + 20 +5907.852837 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B1C + 8 +HOLZ + 10 +16831.028751 + 20 +5918.230687 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B1D + 8 +HOLZ + 10 +16842.70987 + 20 +5942.229451 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B1E + 8 +HOLZ + 0 +POLYLINE + 5 +B1F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +B20 + 8 +HOLZ + 10 +16722.005085 + 20 +5826.776005 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B21 + 8 +HOLZ + 10 +16722.005085 + 20 +5826.776005 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B22 + 8 +HOLZ + 10 +16727.794306 + 20 +5840.869336 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B23 + 8 +HOLZ + 10 +16733.032175 + 20 +5852.263693 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B24 + 8 +HOLZ + 10 +16737.775727 + 20 +5861.330891 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B25 + 8 +HOLZ + 10 +16742.081999 + 20 +5868.442743 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B26 + 8 +HOLZ + 10 +16746.008027 + 20 +5873.971063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B27 + 8 +HOLZ + 10 +16749.610848 + 20 +5878.287663 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B28 + 8 +HOLZ + 10 +16752.947496 + 20 +5881.764358 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B29 + 8 +HOLZ + 10 +16756.07501 + 20 +5884.772961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B2A + 8 +HOLZ + 10 +16759.041128 + 20 +5887.624056 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B2B + 8 +HOLZ + 10 +16761.856415 + 20 +5890.383305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B2C + 8 +HOLZ + 10 +16764.522139 + 20 +5893.055144 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B2D + 8 +HOLZ + 10 +16767.039565 + 20 +5895.644006 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B2E + 8 +HOLZ + 10 +16769.409964 + 20 +5898.154326 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B2F + 8 +HOLZ + 10 +16771.634602 + 20 +5900.590536 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B30 + 8 +HOLZ + 10 +16773.714746 + 20 +5902.957071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B31 + 8 +HOLZ + 10 +16775.651666 + 20 +5905.258365 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B32 + 8 +HOLZ + 10 +16777.449797 + 20 +5907.501385 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B33 + 8 +HOLZ + 10 +16779.12625 + 20 +5909.703234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B34 + 8 +HOLZ + 10 +16780.701305 + 20 +5911.883547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B35 + 8 +HOLZ + 10 +16782.195242 + 20 +5914.061961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B36 + 8 +HOLZ + 10 +16783.628341 + 20 +5916.25811 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B37 + 8 +HOLZ + 10 +16785.020881 + 20 +5918.491632 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B38 + 8 +HOLZ + 10 +16786.393142 + 20 +5920.782161 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B39 + 8 +HOLZ + 10 +16787.765404 + 20 +5923.149334 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3A + 8 +HOLZ + 10 +16789.150342 + 20 +5925.605607 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3B + 8 +HOLZ + 10 +16790.53021 + 20 +5928.134723 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3C + 8 +HOLZ + 10 +16791.879657 + 20 +5930.713245 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3D + 8 +HOLZ + 10 +16793.173333 + 20 +5933.317736 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3E + 8 +HOLZ + 10 +16794.385888 + 20 +5935.924759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3F + 8 +HOLZ + 10 +16795.49197 + 20 +5938.510878 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B40 + 8 +HOLZ + 10 +16796.466229 + 20 +5941.052656 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B41 + 8 +HOLZ + 10 +16797.283314 + 20 +5943.526655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B42 + 8 +HOLZ + 10 +16738.228843 + 20 +5868.287351 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B43 + 8 +HOLZ + 10 +16757.697404 + 20 +5885.799932 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B44 + 8 +HOLZ + 10 +16777.165879 + 20 +5905.906976 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B45 + 8 +HOLZ + 10 +16787.549077 + 20 +5922.122353 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B46 + 8 +HOLZ + 10 +16795.336518 + 20 +5937.040526 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B47 + 8 +HOLZ + 10 +16797.283314 + 20 +5943.526655 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B48 + 8 +HOLZ + 0 +POLYLINE + 5 +B49 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +B4A + 8 +HOLZ + 10 +16722.654046 + 20 +5900.069449 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B4B + 8 +HOLZ + 10 +16722.654046 + 20 +5900.069449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4C + 8 +HOLZ + 10 +16728.646699 + 20 +5905.654889 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4D + 8 +HOLZ + 10 +16734.091797 + 20 +5910.822274 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4E + 8 +HOLZ + 10 +16739.171859 + 20 +5915.70082 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4F + 8 +HOLZ + 10 +16744.069403 + 20 +5920.419746 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B50 + 8 +HOLZ + 10 +16748.966946 + 20 +5925.108268 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B51 + 8 +HOLZ + 10 +16754.047008 + 20 +5929.895605 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B52 + 8 +HOLZ + 10 +16759.492106 + 20 +5934.910973 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B53 + 8 +HOLZ + 10 +16765.484759 + 20 +5940.283591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B54 + 8 +HOLZ + 10 +16739.526764 + 20 +5915.636224 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B55 + 8 +HOLZ + 10 +16748.612041 + 20 +5925.365418 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B56 + 8 +HOLZ + 10 +16765.484759 + 20 +5940.283591 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B57 + 8 +HOLZ + 0 +POLYLINE + 5 +B58 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +B59 + 8 +HOLZ + 10 +16829.244152 + 20 +7370.464201 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B5A + 8 +HOLZ + 10 +16829.244152 + 20 +7370.464201 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B5B + 8 +HOLZ + 10 +16832.420803 + 20 +7376.959742 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B5C + 8 +HOLZ + 10 +16835.636867 + 20 +7382.621595 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B5D + 8 +HOLZ + 10 +16838.879206 + 20 +7387.508841 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B5E + 8 +HOLZ + 10 +16842.134683 + 20 +7391.680559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B5F + 8 +HOLZ + 10 +16845.390159 + 20 +7395.195827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B60 + 8 +HOLZ + 10 +16848.632498 + 20 +7398.113726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B61 + 8 +HOLZ + 10 +16851.848562 + 20 +7400.493335 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B62 + 8 +HOLZ + 10 +16855.025213 + 20 +7402.393733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B63 + 8 +HOLZ + 10 +16837.650993 + 20 +7388.94974 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B64 + 8 +HOLZ + 10 +16846.618372 + 20 +7397.912438 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B65 + 8 +HOLZ + 10 +16855.025213 + 20 +7402.393733 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B66 + 8 +HOLZ + 0 +POLYLINE + 5 +B67 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +B68 + 8 +HOLZ + 10 +16804.584079 + 20 +7369.90406 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B69 + 8 +HOLZ + 10 +16804.584079 + 20 +7369.90406 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6A + 8 +HOLZ + 10 +16806.171295 + 20 +7379.880933 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6B + 8 +HOLZ + 10 +16807.981824 + 20 +7388.118229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6C + 8 +HOLZ + 10 +16810.002528 + 20 +7394.845701 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6D + 8 +HOLZ + 10 +16812.220271 + 20 +7400.293106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6E + 8 +HOLZ + 10 +16814.621917 + 20 +7404.690199 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6F + 8 +HOLZ + 10 +16817.194329 + 20 +7408.266736 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B70 + 8 +HOLZ + 10 +16819.924372 + 20 +7411.252472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B71 + 8 +HOLZ + 10 +16822.798909 + 20 +7413.877164 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B72 + 8 +HOLZ + 10 +16825.815749 + 20 +7416.342119 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B73 + 8 +HOLZ + 10 +16829.01649 + 20 +7418.734866 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B74 + 8 +HOLZ + 10 +16832.453673 + 20 +7421.114484 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B75 + 8 +HOLZ + 10 +16836.179841 + 20 +7423.540054 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B76 + 8 +HOLZ + 10 +16840.247537 + 20 +7426.070657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B77 + 8 +HOLZ + 10 +16844.709302 + 20 +7428.765371 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B78 + 8 +HOLZ + 10 +16849.61768 + 20 +7431.68328 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B79 + 8 +HOLZ + 10 +16855.025213 + 20 +7434.883461 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7A + 8 +HOLZ + 10 +16808.507231 + 20 +7399.032721 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B7B + 8 +HOLZ + 10 +16821.397761 + 20 +7415.277585 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B7C + 8 +HOLZ + 10 +16839.892881 + 20 +7425.920763 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B7D + 8 +HOLZ + 10 +16855.025213 + 20 +7434.883461 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B7E + 8 +HOLZ + 0 +POLYLINE + 5 +B7F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +B80 + 8 +HOLZ + 10 +16779.923918 + 20 +7371.024397 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B81 + 8 +HOLZ + 10 +16779.923918 + 20 +7371.024397 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B82 + 8 +HOLZ + 10 +16783.073289 + 20 +7380.470013 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B83 + 8 +HOLZ + 10 +16785.835705 + 20 +7388.34946 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B84 + 8 +HOLZ + 10 +16788.270825 + 20 +7394.855842 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B85 + 8 +HOLZ + 10 +16790.438305 + 20 +7400.182263 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B86 + 8 +HOLZ + 10 +16792.397805 + 20 +7404.521827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B87 + 8 +HOLZ + 10 +16794.208983 + 20 +7408.067639 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B88 + 8 +HOLZ + 10 +16795.931496 + 20 +7411.012803 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B89 + 8 +HOLZ + 10 +16797.625002 + 20 +7413.550423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B8A + 8 +HOLZ + 10 +16799.34615 + 20 +7415.850081 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B8B + 8 +HOLZ + 10 +16801.139546 + 20 +7417.987268 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B8C + 8 +HOLZ + 10 +16803.046784 + 20 +7420.013952 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B8D + 8 +HOLZ + 10 +16805.109463 + 20 +7421.982103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B8E + 8 +HOLZ + 10 +16807.369177 + 20 +7423.943689 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B8F + 8 +HOLZ + 10 +16809.867521 + 20 +7425.950679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B90 + 8 +HOLZ + 10 +16812.646094 + 20 +7428.055042 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B91 + 8 +HOLZ + 10 +16815.746489 + 20 +7430.308746 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B92 + 8 +HOLZ + 10 +16819.204009 + 20 +7432.748717 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B93 + 8 +HOLZ + 10 +16823.028781 + 20 +7435.351706 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B94 + 8 +HOLZ + 10 +16827.224637 + 20 +7438.079421 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B95 + 8 +HOLZ + 10 +16831.795409 + 20 +7440.89357 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B96 + 8 +HOLZ + 10 +16836.74493 + 20 +7443.75586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B97 + 8 +HOLZ + 10 +16842.077033 + 20 +7446.628001 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B98 + 8 +HOLZ + 10 +16847.79555 + 20 +7449.471699 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B99 + 8 +HOLZ + 10 +16853.904312 + 20 +7452.248662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B9A + 8 +HOLZ + 10 +16788.89121 + 20 +7398.47258 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B9B + 8 +HOLZ + 10 +16797.298051 + 20 +7415.837781 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B9C + 8 +HOLZ + 10 +16811.870019 + 20 +7428.161437 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B9D + 8 +HOLZ + 10 +16837.090543 + 20 +7444.966443 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B9E + 8 +HOLZ + 10 +16853.904312 + 20 +7452.248662 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B9F + 8 +HOLZ + 0 +POLYLINE + 5 +BA0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +BA1 + 8 +HOLZ + 10 +16764.231136 + 20 +7391.750556 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BA2 + 8 +HOLZ + 10 +16764.231136 + 20 +7391.750556 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA3 + 8 +HOLZ + 10 +16768.550394 + 20 +7399.914557 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA4 + 8 +HOLZ + 10 +16772.303729 + 20 +7406.857569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA5 + 8 +HOLZ + 10 +16775.555722 + 20 +7412.724008 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA6 + 8 +HOLZ + 10 +16778.370957 + 20 +7417.658294 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA7 + 8 +HOLZ + 10 +16780.814017 + 20 +7421.804844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA8 + 8 +HOLZ + 10 +16782.949484 + 20 +7425.308078 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BA9 + 8 +HOLZ + 10 +16784.841941 + 20 +7428.312412 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BAA + 8 +HOLZ + 10 +16786.555971 + 20 +7430.962267 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BAB + 8 +HOLZ + 10 +16788.150867 + 20 +7433.380178 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BAC + 8 +HOLZ + 10 +16789.664758 + 20 +7435.601156 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BAD + 8 +HOLZ + 10 +16791.130484 + 20 +7437.638329 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BAE + 8 +HOLZ + 10 +16792.580884 + 20 +7439.504827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BAF + 8 +HOLZ + 10 +16794.048799 + 20 +7441.213778 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB0 + 8 +HOLZ + 10 +16795.567067 + 20 +7442.778311 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB1 + 8 +HOLZ + 10 +16797.168529 + 20 +7444.211555 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB2 + 8 +HOLZ + 10 +16798.886023 + 20 +7445.526639 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB3 + 8 +HOLZ + 10 +16800.746095 + 20 +7446.737237 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB4 + 8 +HOLZ + 10 +16802.750113 + 20 +7447.859216 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB5 + 8 +HOLZ + 10 +16804.893153 + 20 +7448.908984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB6 + 8 +HOLZ + 10 +16807.170286 + 20 +7449.902955 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB7 + 8 +HOLZ + 10 +16809.576589 + 20 +7450.857537 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB8 + 8 +HOLZ + 10 +16812.107134 + 20 +7451.789143 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BB9 + 8 +HOLZ + 10 +16814.756995 + 20 +7452.714184 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BBA + 8 +HOLZ + 10 +16817.521248 + 20 +7453.649071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BBB + 8 +HOLZ + 10 +16820.408284 + 20 +7454.640848 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BBC + 8 +HOLZ + 10 +16823.479767 + 20 +7455.859098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BBD + 8 +HOLZ + 10 +16826.81068 + 20 +7457.504038 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BBE + 8 +HOLZ + 10 +16830.476005 + 20 +7459.775883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BBF + 8 +HOLZ + 10 +16834.550724 + 20 +7462.874851 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BC0 + 8 +HOLZ + 10 +16839.109821 + 20 +7467.001157 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BC1 + 8 +HOLZ + 10 +16844.228276 + 20 +7472.355017 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BC2 + 8 +HOLZ + 10 +16849.981074 + 20 +7479.136649 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BC3 + 8 +HOLZ + 10 +16776.56113 + 20 +7415.277585 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BC4 + 8 +HOLZ + 10 +16787.770309 + 20 +7433.202928 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BC5 + 8 +HOLZ + 10 +16797.298051 + 20 +7446.646976 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BC6 + 8 +HOLZ + 10 +16816.353622 + 20 +7453.369 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BC7 + 8 +HOLZ + 10 +16833.727841 + 20 +7458.970632 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BC8 + 8 +HOLZ + 10 +16849.981074 + 20 +7479.136649 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +BC9 + 8 +HOLZ + 0 +POLYLINE + 5 +BCA + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +BCB + 8 +HOLZ + 10 +16760.868348 + 20 +7439.924952 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BCC + 8 +HOLZ + 10 +16760.868348 + 20 +7439.924952 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BCD + 8 +HOLZ + 10 +16767.126161 + 20 +7444.526376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BCE + 8 +HOLZ + 10 +16772.521939 + 20 +7448.325291 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BCF + 8 +HOLZ + 10 +16777.165694 + 20 +7451.438218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD0 + 8 +HOLZ + 10 +16781.167439 + 20 +7453.981675 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD1 + 8 +HOLZ + 10 +16784.637186 + 20 +7456.072182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD2 + 8 +HOLZ + 10 +16787.684947 + 20 +7457.826259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD3 + 8 +HOLZ + 10 +16790.420735 + 20 +7459.360426 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD4 + 8 +HOLZ + 10 +16792.954561 + 20 +7460.791201 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD5 + 8 +HOLZ + 10 +16795.386587 + 20 +7462.228539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD6 + 8 +HOLZ + 10 +16797.777564 + 20 +7463.756139 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD7 + 8 +HOLZ + 10 +16800.178393 + 20 +7465.451133 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD8 + 8 +HOLZ + 10 +16802.639973 + 20 +7467.390653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BD9 + 8 +HOLZ + 10 +16805.213206 + 20 +7469.651832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BDA + 8 +HOLZ + 10 +16807.948991 + 20 +7472.311802 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BDB + 8 +HOLZ + 10 +16810.898229 + 20 +7475.447697 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BDC + 8 +HOLZ + 10 +16814.11182 + 20 +7479.136649 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BDD + 8 +HOLZ + 10 +16778.803018 + 20 +7453.369 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BDE + 8 +HOLZ + 10 +16793.935349 + 20 +7460.651165 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BDF + 8 +HOLZ + 10 +16805.144529 + 20 +7468.493472 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BE0 + 8 +HOLZ + 10 +16814.11182 + 20 +7479.136649 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +BE1 + 8 +HOLZ + 0 +POLYLINE + 5 +BE2 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +BE3 + 8 +HOLZ + 10 +16761.989248 + 20 +7465.132514 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BE4 + 8 +HOLZ + 10 +16761.989248 + 20 +7465.132514 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BE5 + 8 +HOLZ + 10 +16766.821001 + 20 +7467.00009 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BE6 + 8 +HOLZ + 10 +16770.588761 + 20 +7468.519753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BE7 + 8 +HOLZ + 10 +16773.594651 + 20 +7469.868742 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BE8 + 8 +HOLZ + 10 +16776.140792 + 20 +7471.224298 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BE9 + 8 +HOLZ + 10 +16778.529307 + 20 +7472.76366 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BEA + 8 +HOLZ + 10 +16781.062317 + 20 +7474.664069 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BEB + 8 +HOLZ + 10 +16784.041944 + 20 +7477.102765 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BEC + 8 +HOLZ + 10 +16787.770309 + 20 +7480.256987 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BED + 8 +HOLZ + 10 +16776.56113 + 20 +7470.734147 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BEE + 8 +HOLZ + 10 +16787.770309 + 20 +7480.256987 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +BEF + 8 +HOLZ + 0 +POLYLINE + 5 +BF0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +BF1 + 8 +HOLZ + 10 +13968.847437 + 20 +7499.096313 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BF2 + 8 +HOLZ + 10 +13968.847437 + 20 +7499.096313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF3 + 8 +HOLZ + 10 +13972.584324 + 20 +7511.576045 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF4 + 8 +HOLZ + 10 +13977.426682 + 20 +7523.460825 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF5 + 8 +HOLZ + 10 +13983.346165 + 20 +7534.495679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF6 + 8 +HOLZ + 10 +13990.314429 + 20 +7544.425629 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF7 + 8 +HOLZ + 10 +13998.303129 + 20 +7552.995699 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF8 + 8 +HOLZ + 10 +14007.283921 + 20 +7559.950914 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BF9 + 8 +HOLZ + 10 +14017.228461 + 20 +7565.036295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BFA + 8 +HOLZ + 10 +14028.108404 + 20 +7567.996868 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +BFB + 8 +HOLZ + 10 +13977.313314 + 20 +7532.942219 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BFC + 8 +HOLZ + 10 +13997.873215 + 20 +7563.161731 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +BFD + 8 +HOLZ + 10 +14028.108404 + 20 +7567.996868 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +BFE + 8 +HOLZ + 0 +POLYLINE + 5 +BFF + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +C00 + 8 +HOLZ + 10 +13919.261672 + 20 +7503.93145 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C01 + 8 +HOLZ + 10 +13919.261672 + 20 +7503.93145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C02 + 8 +HOLZ + 10 +13927.256105 + 20 +7520.051484 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C03 + 8 +HOLZ + 10 +13934.122618 + 20 +7533.280596 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C04 + 8 +HOLZ + 10 +13940.037188 + 20 +7543.957575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C05 + 8 +HOLZ + 10 +13945.175797 + 20 +7552.42121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C06 + 8 +HOLZ + 10 +13949.714422 + 20 +7559.01029 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C07 + 8 +HOLZ + 10 +13953.829044 + 20 +7564.063605 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C08 + 8 +HOLZ + 10 +13957.695641 + 20 +7567.919943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C09 + 8 +HOLZ + 10 +13961.490194 + 20 +7570.918094 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0A + 8 +HOLZ + 10 +13965.360335 + 20 +7573.35671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0B + 8 +HOLZ + 10 +13969.340316 + 20 +7575.373906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0C + 8 +HOLZ + 10 +13973.436042 + 20 +7577.067657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0D + 8 +HOLZ + 10 +13977.653418 + 20 +7578.535942 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0E + 8 +HOLZ + 10 +13981.998349 + 20 +7579.876738 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0F + 8 +HOLZ + 10 +13986.476739 + 20 +7581.188022 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C10 + 8 +HOLZ + 10 +13991.094496 + 20 +7582.567772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C11 + 8 +HOLZ + 10 +13995.857523 + 20 +7584.113965 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C12 + 8 +HOLZ + 10 +14000.758143 + 20 +7585.921627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C13 + 8 +HOLZ + 10 +14005.734352 + 20 +7588.07398 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C14 + 8 +HOLZ + 10 +14010.710561 + 20 +7590.651296 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C15 + 8 +HOLZ + 10 +14015.611183 + 20 +7593.733844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C16 + 8 +HOLZ + 10 +14020.36063 + 20 +7597.401897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C17 + 8 +HOLZ + 10 +14024.883315 + 20 +7601.735726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C18 + 8 +HOLZ + 10 +14029.10365 + 20 +7606.8156 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C19 + 8 +HOLZ + 10 +14032.946048 + 20 +7612.721792 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C1A + 8 +HOLZ + 10 +13942.240481 + 20 +7551.073915 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1B + 8 +HOLZ + 10 +13960.38156 + 20 +7576.458345 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1C + 8 +HOLZ + 10 +13994.244982 + 20 +7581.293482 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1D + 8 +HOLZ + 10 +14023.27076 + 20 +7595.798839 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1E + 8 +HOLZ + 10 +14032.946048 + 20 +7612.721792 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +C1F + 8 +HOLZ + 0 +POLYLINE + 5 +C20 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +C21 + 8 +HOLZ + 10 +13880.560693 + 20 +7501.513855 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C22 + 8 +HOLZ + 10 +13880.560693 + 20 +7501.513855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C23 + 8 +HOLZ + 10 +13884.959149 + 20 +7518.600103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C24 + 8 +HOLZ + 10 +13889.103683 + 20 +7532.13319 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C25 + 8 +HOLZ + 10 +13893.02382 + 20 +7542.6396 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C26 + 8 +HOLZ + 10 +13896.749086 + 20 +7550.645812 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C27 + 8 +HOLZ + 10 +13900.309006 + 20 +7556.678309 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C28 + 8 +HOLZ + 10 +13903.733106 + 20 +7561.263573 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C29 + 8 +HOLZ + 10 +13907.05091 + 20 +7564.928084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C2A + 8 +HOLZ + 10 +13910.291946 + 20 +7568.198325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C2B + 8 +HOLZ + 10 +13913.485344 + 20 +7571.503588 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C2C + 8 +HOLZ + 10 +13916.658663 + 20 +7574.8844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C2D + 8 +HOLZ + 10 +13919.839067 + 20 +7578.284099 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C2E + 8 +HOLZ + 10 +13923.053721 + 20 +7581.646025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C2F + 8 +HOLZ + 10 +13926.32979 + 20 +7584.913515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C30 + 8 +HOLZ + 10 +13929.694438 + 20 +7588.029908 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C31 + 8 +HOLZ + 10 +13933.174831 + 20 +7590.938542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C32 + 8 +HOLZ + 10 +13936.798132 + 20 +7593.582755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C33 + 8 +HOLZ + 10 +13940.58442 + 20 +7595.928313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C34 + 8 +HOLZ + 10 +13944.525428 + 20 +7598.030699 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C35 + 8 +HOLZ + 10 +13948.605801 + 20 +7599.967821 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C36 + 8 +HOLZ + 10 +13952.810186 + 20 +7601.81759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C37 + 8 +HOLZ + 10 +13957.123228 + 20 +7603.657915 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C38 + 8 +HOLZ + 10 +13961.529574 + 20 +7605.566705 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C39 + 8 +HOLZ + 10 +13966.01387 + 20 +7607.621871 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C3A + 8 +HOLZ + 10 +13970.560762 + 20 +7609.901322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C3B + 8 +HOLZ + 10 +13975.197808 + 20 +7612.525071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C3C + 8 +HOLZ + 10 +13980.124214 + 20 +7615.781541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C3D + 8 +HOLZ + 10 +13985.582098 + 20 +7620.001258 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C3E + 8 +HOLZ + 10 +13991.813577 + 20 +7625.51475 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C3F + 8 +HOLZ + 10 +13999.060771 + 20 +7632.652543 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C40 + 8 +HOLZ + 10 +14007.565796 + 20 +7641.745163 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C41 + 8 +HOLZ + 10 +14017.570771 + 20 +7653.123136 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C42 + 8 +HOLZ + 10 +14029.317815 + 20 +7667.11699 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C43 + 8 +HOLZ + 10 +13892.654716 + 20 +7552.282713 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C44 + 8 +HOLZ + 10 +13910.795882 + 20 +7566.78807 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C45 + 8 +HOLZ + 10 +13934.984015 + 20 +7597.007637 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C46 + 8 +HOLZ + 10 +13970.056848 + 20 +7606.677911 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C47 + 8 +HOLZ + 10 +13995.454393 + 20 +7626.018405 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C48 + 8 +HOLZ + 10 +14029.317815 + 20 +7667.11699 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +C49 + 8 +HOLZ + 0 +POLYLINE + 5 +C4A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +C4B + 8 +HOLZ + 10 +13846.697271 + 20 +7505.140194 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C4C + 8 +HOLZ + 10 +13846.697271 + 20 +7505.140194 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C4D + 8 +HOLZ + 10 +13854.93281 + 20 +7526.67025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C4E + 8 +HOLZ + 10 +13862.4668 + 20 +7544.452374 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C4F + 8 +HOLZ + 10 +13869.391363 + 20 +7558.988257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C50 + 8 +HOLZ + 10 +13875.798622 + 20 +7570.779591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C51 + 8 +HOLZ + 10 +13881.7807 + 20 +7580.328068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C52 + 8 +HOLZ + 10 +13887.429719 + 20 +7588.135379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C53 + 8 +HOLZ + 10 +13892.837803 + 20 +7594.703216 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C54 + 8 +HOLZ + 10 +13898.097073 + 20 +7600.53327 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C55 + 8 +HOLZ + 10 +13903.281937 + 20 +7606.037913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C56 + 8 +HOLZ + 10 +13908.395938 + 20 +7611.272232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C57 + 8 +HOLZ + 10 +13913.424903 + 20 +7616.201994 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C58 + 8 +HOLZ + 10 +13918.354658 + 20 +7620.792966 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C59 + 8 +HOLZ + 10 +13923.171032 + 20 +7625.010914 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C5A + 8 +HOLZ + 10 +13927.85985 + 20 +7628.821607 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C5B + 8 +HOLZ + 10 +13932.406941 + 20 +7632.190809 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C5C + 8 +HOLZ + 10 +13936.798132 + 20 +7635.08429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C5D + 8 +HOLZ + 10 +13941.03165 + 20 +7637.496145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C5E + 8 +HOLZ + 10 +13945.155329 + 20 +7639.533797 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C5F + 8 +HOLZ + 10 +13949.229403 + 20 +7641.332998 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C60 + 8 +HOLZ + 10 +13953.314107 + 20 +7643.0295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C61 + 8 +HOLZ + 10 +13957.469674 + 20 +7644.759054 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C62 + 8 +HOLZ + 10 +13961.756339 + 20 +7646.657414 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C63 + 8 +HOLZ + 10 +13966.234336 + 20 +7648.860332 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C64 + 8 +HOLZ + 10 +13970.963899 + 20 +7651.503559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C65 + 8 +HOLZ + 10 +13976.015893 + 20 +7654.701206 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C66 + 8 +HOLZ + 10 +13981.503698 + 20 +7658.480816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C67 + 8 +HOLZ + 10 +13987.551327 + 20 +7662.848292 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C68 + 8 +HOLZ + 10 +13994.282791 + 20 +7667.809536 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C69 + 8 +HOLZ + 10 +14001.822102 + 20 +7673.370448 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C6A + 8 +HOLZ + 10 +14010.29327 + 20 +7679.536931 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C6B + 8 +HOLZ + 10 +14019.820307 + 20 +7686.314887 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C6C + 8 +HOLZ + 10 +14030.527226 + 20 +7693.710217 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C6D + 8 +HOLZ + 10 +13869.675994 + 20 +7567.996868 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C6E + 8 +HOLZ + 10 +13898.701772 + 20 +7603.051572 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C6F + 8 +HOLZ + 10 +13938.612248 + 20 +7640.523817 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C70 + 8 +HOLZ + 10 +13967.638026 + 20 +7645.3589 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C71 + 8 +HOLZ + 10 +14000.292037 + 20 +7673.160925 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C72 + 8 +HOLZ + 10 +14030.527226 + 20 +7693.710217 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +C73 + 8 +HOLZ + 0 +POLYLINE + 5 +C74 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +C75 + 8 +HOLZ + 10 +13829.765517 + 20 +7581.293482 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C76 + 8 +HOLZ + 10 +13829.765517 + 20 +7581.293482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C77 + 8 +HOLZ + 10 +13838.872879 + 20 +7587.179207 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C78 + 8 +HOLZ + 10 +13847.180663 + 20 +7593.022436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C79 + 8 +HOLZ + 10 +13854.739656 + 20 +7598.780673 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C7A + 8 +HOLZ + 10 +13861.600642 + 20 +7604.411422 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C7B + 8 +HOLZ + 10 +13867.814407 + 20 +7609.872186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C7C + 8 +HOLZ + 10 +13873.431738 + 20 +7615.120469 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C7D + 8 +HOLZ + 10 +13878.503418 + 20 +7620.113775 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C7E + 8 +HOLZ + 10 +13883.080234 + 20 +7624.809607 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C7F + 8 +HOLZ + 10 +13887.217696 + 20 +7629.178849 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C80 + 8 +HOLZ + 10 +13890.99021 + 20 +7633.245897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C81 + 8 +HOLZ + 10 +13894.476908 + 20 +7637.048523 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C82 + 8 +HOLZ + 10 +13897.75692 + 20 +7640.624504 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C83 + 8 +HOLZ + 10 +13900.909377 + 20 +7644.011612 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C84 + 8 +HOLZ + 10 +13904.013411 + 20 +7647.247624 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C85 + 8 +HOLZ + 10 +13907.148151 + 20 +7650.370312 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C86 + 8 +HOLZ + 10 +13910.39273 + 20 +7653.417452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C87 + 8 +HOLZ + 10 +13913.810728 + 20 +7656.422097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C88 + 8 +HOLZ + 10 +13917.403521 + 20 +7659.39841 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C89 + 8 +HOLZ + 10 +13921.156939 + 20 +7662.355837 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C8A + 8 +HOLZ + 10 +13925.056808 + 20 +7665.30382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C8B + 8 +HOLZ + 10 +13929.088956 + 20 +7668.251803 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C8C + 8 +HOLZ + 10 +13933.239209 + 20 +7671.20923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C8D + 8 +HOLZ + 10 +13937.493397 + 20 +7674.185543 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C8E + 8 +HOLZ + 10 +13941.837344 + 20 +7677.190187 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C8F + 8 +HOLZ + 10 +13946.261998 + 20 +7680.224933 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C90 + 8 +HOLZ + 10 +13950.778775 + 20 +7683.260858 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C91 + 8 +HOLZ + 10 +13955.40421 + 20 +7686.26137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C92 + 8 +HOLZ + 10 +13960.154838 + 20 +7689.189873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C93 + 8 +HOLZ + 10 +13965.047193 + 20 +7692.009774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C94 + 8 +HOLZ + 10 +13970.09781 + 20 +7694.684479 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C95 + 8 +HOLZ + 10 +13975.323225 + 20 +7697.177394 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C96 + 8 +HOLZ + 10 +13980.739972 + 20 +7699.451925 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C97 + 8 +HOLZ + 10 +13986.362223 + 20 +7701.505317 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C98 + 8 +HOLZ + 10 +13992.194703 + 20 +7703.470176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C99 + 8 +HOLZ + 10 +13998.239773 + 20 +7705.512944 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C9A + 8 +HOLZ + 10 +14004.499795 + 20 +7707.800067 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C9B + 8 +HOLZ + 10 +14010.97713 + 20 +7710.497988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C9C + 8 +HOLZ + 10 +14017.674142 + 20 +7713.773152 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C9D + 8 +HOLZ + 10 +14024.59319 + 20 +7717.792003 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C9E + 8 +HOLZ + 10 +14031.736637 + 20 +7722.720985 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C9F + 8 +HOLZ + 10 +13855.163062 + 20 +7597.007637 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA0 + 8 +HOLZ + 10 +13887.817072 + 20 +7628.435947 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA1 + 8 +HOLZ + 10 +13908.37706 + 20 +7653.820376 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA2 + 8 +HOLZ + 10 +13941.03107 + 20 +7676.787264 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA3 + 8 +HOLZ + 10 +13978.522725 + 20 +7702.171693 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA4 + 8 +HOLZ + 10 +14012.386147 + 20 +7708.215574 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA5 + 8 +HOLZ + 10 +14031.736637 + 20 +7722.720985 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +CA6 + 8 +HOLZ + 0 +POLYLINE + 5 +CA7 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +CA8 + 8 +HOLZ + 10 +13834.603161 + 20 +7640.523817 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CA9 + 8 +HOLZ + 10 +13834.603161 + 20 +7640.523817 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CAA + 8 +HOLZ + 10 +13852.681671 + 20 +7649.258561 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CAB + 8 +HOLZ + 10 +13868.116967 + 20 +7657.366486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CAC + 8 +HOLZ + 10 +13881.213763 + 20 +7664.90071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CAD + 8 +HOLZ + 10 +13892.276773 + 20 +7671.914355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CAE + 8 +HOLZ + 10 +13901.61071 + 20 +7678.460542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CAF + 8 +HOLZ + 10 +13909.520288 + 20 +7684.592391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB0 + 8 +HOLZ + 10 +13916.310221 + 20 +7690.363023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB1 + 8 +HOLZ + 10 +13922.285221 + 20 +7695.825559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB2 + 8 +HOLZ + 10 +13927.71221 + 20 +7701.028397 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB3 + 8 +HOLZ + 10 +13932.706929 + 20 +7706.001048 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB4 + 8 +HOLZ + 10 +13937.347328 + 20 +7710.768301 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB5 + 8 +HOLZ + 10 +13941.711356 + 20 +7715.354945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB6 + 8 +HOLZ + 10 +13945.876962 + 20 +7719.785768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB7 + 8 +HOLZ + 10 +13949.922095 + 20 +7724.08556 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB8 + 8 +HOLZ + 10 +13953.924704 + 20 +7728.27911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CB9 + 8 +HOLZ + 10 +13957.962738 + 20 +7732.391205 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CBA + 8 +HOLZ + 10 +13886.607661 + 20 +7664.699448 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CBB + 8 +HOLZ + 10 +13927.727549 + 20 +7698.5453 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CBC + 8 +HOLZ + 10 +13947.078126 + 20 +7721.512187 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CBD + 8 +HOLZ + 10 +13957.962738 + 20 +7732.391205 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +CBE + 8 +HOLZ + 0 +POLYLINE + 5 +CBF + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +CC0 + 8 +HOLZ + 10 +13838.231394 + 20 +7688.87508 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CC1 + 8 +HOLZ + 10 +13838.231394 + 20 +7688.87508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC2 + 8 +HOLZ + 10 +13846.267335 + 20 +7694.510555 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC3 + 8 +HOLZ + 10 +13852.630892 + 20 +7699.055293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC4 + 8 +HOLZ + 10 +13857.917323 + 20 +7703.005084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC5 + 8 +HOLZ + 10 +13862.72188 + 20 +7706.855717 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC6 + 8 +HOLZ + 10 +13867.63982 + 20 +7711.102982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC7 + 8 +HOLZ + 10 +13873.266398 + 20 +7716.242667 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC8 + 8 +HOLZ + 10 +13880.196867 + 20 +7722.770564 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CC9 + 8 +HOLZ + 10 +13889.026483 + 20 +7731.182462 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CCA + 8 +HOLZ + 10 +13862.419528 + 20 +7705.798032 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CCB + 8 +HOLZ + 10 +13889.026483 + 20 +7731.182462 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +CCC + 8 +HOLZ + 0 +POLYLINE + 5 +CCD + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +CCE + 8 +HOLZ + 10 +10599.835784 + 20 +9602.096746 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CCF + 8 +HOLZ + 10 +10599.835784 + 20 +9602.096746 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD0 + 8 +HOLZ + 10 +10602.226487 + 20 +9611.772071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD1 + 8 +HOLZ + 10 +10605.554665 + 20 +9620.19531 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD2 + 8 +HOLZ + 10 +10609.629505 + 20 +9627.507427 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD3 + 8 +HOLZ + 10 +10614.260195 + 20 +9633.849384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD4 + 8 +HOLZ + 10 +10619.255921 + 20 +9639.362146 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD5 + 8 +HOLZ + 10 +10624.42587 + 20 +9644.186676 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD6 + 8 +HOLZ + 10 +10629.57923 + 20 +9648.463938 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD7 + 8 +HOLZ + 10 +10634.525187 + 20 +9652.334896 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CD8 + 8 +HOLZ + 10 +10604.791413 + 20 +9629.692363 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CD9 + 8 +HOLZ + 10 +10621.782116 + 20 +9642.428781 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CDA + 8 +HOLZ + 10 +10634.525187 + 20 +9652.334896 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +CDB + 8 +HOLZ + 0 +POLYLINE + 5 +CDC + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +CDD + 8 +HOLZ + 10 +10564.43847 + 20 +9598.558867 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CDE + 8 +HOLZ + 10 +10564.43847 + 20 +9598.558867 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CDF + 8 +HOLZ + 10 +10567.127168 + 20 +9610.740767 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE0 + 8 +HOLZ + 10 +10569.886377 + 20 +9620.922238 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE1 + 8 +HOLZ + 10 +10572.720246 + 20 +9629.358257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE2 + 8 +HOLZ + 10 +10575.632926 + 20 +9636.303801 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE3 + 8 +HOLZ + 10 +10578.628565 + 20 +9642.013846 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE4 + 8 +HOLZ + 10 +10581.711313 + 20 +9646.743369 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE5 + 8 +HOLZ + 10 +10584.885318 + 20 +9650.747347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE6 + 8 +HOLZ + 10 +10588.154729 + 20 +9654.280756 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE7 + 8 +HOLZ + 10 +10591.555499 + 20 +9657.566787 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE8 + 8 +HOLZ + 10 +10595.250786 + 20 +9660.70149 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CE9 + 8 +HOLZ + 10 +10599.43555 + 20 +9663.749126 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CEA + 8 +HOLZ + 10 +10604.304755 + 20 +9666.773958 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CEB + 8 +HOLZ + 10 +10610.053359 + 20 +9669.84025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CEC + 8 +HOLZ + 10 +10616.876325 + 20 +9673.012265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CED + 8 +HOLZ + 10 +10624.968614 + 20 +9676.354265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CEE + 8 +HOLZ + 10 +10634.525187 + 20 +9679.930513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CEF + 8 +HOLZ + 10 +10571.518002 + 20 +9633.937818 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CF0 + 8 +HOLZ + 10 +10587.092799 + 20 +9656.580404 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CF1 + 8 +HOLZ + 10 +10606.915316 + 20 +9670.024398 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CF2 + 8 +HOLZ + 10 +10634.525187 + 20 +9679.930513 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +CF3 + 8 +HOLZ + 0 +POLYLINE + 5 +CF4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +CF5 + 8 +HOLZ + 10 +10533.996873 + 20 +9602.096746 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +CF6 + 8 +HOLZ + 10 +10533.996873 + 20 +9602.096746 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CF7 + 8 +HOLZ + 10 +10538.100614 + 20 +9615.677576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CF8 + 8 +HOLZ + 10 +10541.93819 + 20 +9626.8952 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CF9 + 8 +HOLZ + 10 +10545.542093 + 20 +9636.039836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CFA + 8 +HOLZ + 10 +10548.944817 + 20 +9643.401703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CFB + 8 +HOLZ + 10 +10552.178854 + 20 +9649.27102 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CFC + 8 +HOLZ + 10 +10555.276696 + 20 +9653.938004 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CFD + 8 +HOLZ + 10 +10558.270837 + 20 +9657.692875 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CFE + 8 +HOLZ + 10 +10561.193768 + 20 +9660.82585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +CFF + 8 +HOLZ + 10 +10564.072913 + 20 +9663.587301 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D00 + 8 +HOLZ + 10 +10566.915416 + 20 +9666.068208 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D01 + 8 +HOLZ + 10 +10569.72335 + 20 +9668.319705 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D02 + 8 +HOLZ + 10 +10572.498791 + 20 +9670.392926 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D03 + 8 +HOLZ + 10 +10575.243811 + 20 +9672.339004 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D04 + 8 +HOLZ + 10 +10577.960485 + 20 +9674.209072 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D05 + 8 +HOLZ + 10 +10580.650888 + 20 +9676.054265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D06 + 8 +HOLZ + 10 +10583.317092 + 20 +9677.925715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D07 + 8 +HOLZ + 10 +10585.964976 + 20 +9679.860045 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D08 + 8 +HOLZ + 10 +10588.615625 + 20 +9681.835835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D09 + 8 +HOLZ + 10 +10591.293928 + 20 +9683.817152 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D0A + 8 +HOLZ + 10 +10594.024773 + 20 +9685.768065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D0B + 8 +HOLZ + 10 +10596.833049 + 20 +9687.652641 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D0C + 8 +HOLZ + 10 +10599.743644 + 20 +9689.43495 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D0D + 8 +HOLZ + 10 +10602.781448 + 20 +9691.07906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D0E + 8 +HOLZ + 10 +10605.971349 + 20 +9692.549037 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D0F + 8 +HOLZ + 10 +10609.333166 + 20 +9693.822081 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D10 + 8 +HOLZ + 10 +10612.866439 + 20 +9694.927903 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D11 + 8 +HOLZ + 10 +10616.565638 + 20 +9695.909345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D12 + 8 +HOLZ + 10 +10620.425235 + 20 +9696.809249 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D13 + 8 +HOLZ + 10 +10624.439699 + 20 +9697.670456 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D14 + 8 +HOLZ + 10 +10628.6035 + 20 +9698.535809 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D15 + 8 +HOLZ + 10 +10632.911111 + 20 +9699.448149 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D16 + 8 +HOLZ + 10 +10637.357 + 20 +9700.450318 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D17 + 8 +HOLZ + 10 +10545.323951 + 20 +9641.721205 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D18 + 8 +HOLZ + 10 +10561.606744 + 20 +9664.363738 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D19 + 8 +HOLZ + 10 +10583.553077 + 20 +9677.10021 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D1A + 8 +HOLZ + 10 +10604.083503 + 20 +9694.789712 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D1B + 8 +HOLZ + 10 +10625.321839 + 20 +9697.620015 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D1C + 8 +HOLZ + 10 +10637.357 + 20 +9700.450318 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +D1D + 8 +HOLZ + 0 +POLYLINE + 5 +D1E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +D1F + 8 +HOLZ + 10 +10512.050541 + 20 +9599.974019 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D20 + 8 +HOLZ + 10 +10512.050541 + 20 +9599.974019 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D21 + 8 +HOLZ + 10 +10514.516463 + 20 +9613.557382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D22 + 8 +HOLZ + 10 +10517.110292 + 20 +9624.792741 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D23 + 8 +HOLZ + 10 +10519.794002 + 20 +9633.985517 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D24 + 8 +HOLZ + 10 +10522.529569 + 20 +9641.441129 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D25 + 8 +HOLZ + 10 +10525.278966 + 20 +9647.464997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D26 + 8 +HOLZ + 10 +10528.004168 + 20 +9652.362542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D27 + 8 +HOLZ + 10 +10530.667149 + 20 +9656.439185 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D28 + 8 +HOLZ + 10 +10533.229884 + 20 +9660.000345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D29 + 8 +HOLZ + 10 +10535.668635 + 20 +9663.304915 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D2A + 8 +HOLZ + 10 +10538.016819 + 20 +9666.425681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D2B + 8 +HOLZ + 10 +10540.322138 + 20 +9669.3889 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D2C + 8 +HOLZ + 10 +10542.632296 + 20 +9672.22083 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D2D + 8 +HOLZ + 10 +10544.994997 + 20 +9674.947729 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D2E + 8 +HOLZ + 10 +10547.457944 + 20 +9677.595854 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D2F + 8 +HOLZ + 10 +10550.068842 + 20 +9680.191464 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D30 + 8 +HOLZ + 10 +10552.875394 + 20 +9682.760816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D31 + 8 +HOLZ + 10 +10555.91355 + 20 +9685.32464 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D32 + 8 +HOLZ + 10 +10559.172249 + 20 +9687.881554 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D33 + 8 +HOLZ + 10 +10562.628674 + 20 +9690.424648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D34 + 8 +HOLZ + 10 +10566.260013 + 20 +9692.947014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D35 + 8 +HOLZ + 10 +10570.043448 + 20 +9695.44174 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D36 + 8 +HOLZ + 10 +10573.956165 + 20 +9697.901916 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D37 + 8 +HOLZ + 10 +10577.975349 + 20 +9700.320634 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D38 + 8 +HOLZ + 10 +10582.078185 + 20 +9702.690984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D39 + 8 +HOLZ + 10 +10586.285183 + 20 +9705.006975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D3A + 8 +HOLZ + 10 +10590.790153 + 20 +9707.266306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D3B + 8 +HOLZ + 10 +10595.830232 + 20 +9709.467593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D3C + 8 +HOLZ + 10 +10601.642554 + 20 +9711.609453 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D3D + 8 +HOLZ + 10 +10608.464256 + 20 +9713.690504 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D3E + 8 +HOLZ + 10 +10616.532474 + 20 +9715.709362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D3F + 8 +HOLZ + 10 +10626.084343 + 20 +9717.664646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D40 + 8 +HOLZ + 10 +10637.357 + 20 +9719.554972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D41 + 8 +HOLZ + 10 +10518.421989 + 20 +9639.598478 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D42 + 8 +HOLZ + 10 +10534.704783 + 20 +9662.24101 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D43 + 8 +HOLZ + 10 +10550.27958 + 20 +9682.760816 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D44 + 8 +HOLZ + 10 +10581.429261 + 20 +9703.280621 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D45 + 8 +HOLZ + 10 +10604.791413 + 20 +9714.601942 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D46 + 8 +HOLZ + 10 +10637.357 + 20 +9719.554972 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +D47 + 8 +HOLZ + 0 +POLYLINE + 5 +D48 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +D49 + 8 +HOLZ + 10 +10484.440583 + 20 +9638.890902 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D4A + 8 +HOLZ + 10 +10484.440583 + 20 +9638.890902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D4B + 8 +HOLZ + 10 +10493.309968 + 20 +9652.941146 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D4C + 8 +HOLZ + 10 +10501.370466 + 20 +9664.525917 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D4D + 8 +HOLZ + 10 +10508.676002 + 20 +9673.965837 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D4E + 8 +HOLZ + 10 +10515.280504 + 20 +9681.581528 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D4F + 8 +HOLZ + 10 +10521.237897 + 20 +9687.693614 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D50 + 8 +HOLZ + 10 +10526.602109 + 20 +9692.622714 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D51 + 8 +HOLZ + 10 +10531.427065 + 20 +9696.689452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D52 + 8 +HOLZ + 10 +10535.766691 + 20 +9700.21445 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D53 + 8 +HOLZ + 10 +10539.679523 + 20 +9703.470882 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D54 + 8 +HOLZ + 10 +10543.242532 + 20 +9706.542126 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D55 + 8 +HOLZ + 10 +10546.537297 + 20 +9709.464116 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D56 + 8 +HOLZ + 10 +10549.645396 + 20 +9712.272784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D57 + 8 +HOLZ + 10 +10552.64841 + 20 +9715.00406 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D58 + 8 +HOLZ + 10 +10555.627917 + 20 +9717.693877 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D59 + 8 +HOLZ + 10 +10558.665497 + 20 +9720.378166 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D5A + 8 +HOLZ + 10 +10561.842729 + 20 +9723.09286 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D5B + 8 +HOLZ + 10 +10565.221834 + 20 +9725.862142 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D5C + 8 +HOLZ + 10 +10568.787604 + 20 +9728.663211 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D5D + 8 +HOLZ + 10 +10572.50547 + 20 +9731.461516 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D5E + 8 +HOLZ + 10 +10576.340866 + 20 +9734.222508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D5F + 8 +HOLZ + 10 +10580.259224 + 20 +9736.911637 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D60 + 8 +HOLZ + 10 +10584.225977 + 20 +9739.494352 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D61 + 8 +HOLZ + 10 +10588.206558 + 20 +9741.936104 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D62 + 8 +HOLZ + 10 +10592.166399 + 20 +9744.202343 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D63 + 8 +HOLZ + 10 +10596.104118 + 20 +9746.270036 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D64 + 8 +HOLZ + 10 +10600.151073 + 20 +9748.162215 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D65 + 8 +HOLZ + 10 +10604.471805 + 20 +9749.913431 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D66 + 8 +HOLZ + 10 +10609.230856 + 20 +9751.558232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D67 + 8 +HOLZ + 10 +10614.592768 + 20 +9753.131168 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D68 + 8 +HOLZ + 10 +10620.722084 + 20 +9754.666788 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D69 + 8 +HOLZ + 10 +10627.783345 + 20 +9756.199642 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D6A + 8 +HOLZ + 10 +10635.941093 + 20 +9757.764279 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D6B + 8 +HOLZ + 10 +10509.218728 + 20 +9679.930513 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D6C + 8 +HOLZ + 10 +10540.368322 + 20 +9702.573045 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D6D + 8 +HOLZ + 10 +10559.482928 + 20 +9722.385275 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D6E + 8 +HOLZ + 10 +10592.756338 + 20 +9746.443013 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D6F + 8 +HOLZ + 10 +10612.578855 + 20 +9753.518825 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D70 + 8 +HOLZ + 10 +10635.941093 + 20 +9757.764279 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +D71 + 8 +HOLZ + 0 +POLYLINE + 5 +D72 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +D73 + 8 +HOLZ + 10 +10479.484954 + 20 +9708.233705 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D74 + 8 +HOLZ + 10 +10479.484954 + 20 +9708.233705 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D75 + 8 +HOLZ + 10 +10494.26461 + 20 +9721.832962 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D76 + 8 +HOLZ + 10 +10506.463441 + 20 +9732.648889 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D77 + 8 +HOLZ + 10 +10516.454086 + 20 +9741.082264 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D78 + 8 +HOLZ + 10 +10524.609184 + 20 +9747.533865 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D79 + 8 +HOLZ + 10 +10531.301376 + 20 +9752.404468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D7A + 8 +HOLZ + 10 +10536.903301 + 20 +9756.09485 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D7B + 8 +HOLZ + 10 +10541.787599 + 20 +9759.005789 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D7C + 8 +HOLZ + 10 +10546.32691 + 20 +9761.538062 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D7D + 8 +HOLZ + 10 +10550.830269 + 20 +9764.019546 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D7E + 8 +HOLZ + 10 +10555.352294 + 20 +9766.486518 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D7F + 8 +HOLZ + 10 +10559.883997 + 20 +9768.902355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D80 + 8 +HOLZ + 10 +10564.416392 + 20 +9771.230435 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D81 + 8 +HOLZ + 10 +10568.94049 + 20 +9773.434136 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D82 + 8 +HOLZ + 10 +10573.447306 + 20 +9775.476834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D83 + 8 +HOLZ + 10 +10577.927852 + 20 +9777.321907 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D84 + 8 +HOLZ + 10 +10582.37314 + 20 +9778.932732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D85 + 8 +HOLZ + 10 +10586.812554 + 20 +9780.28236 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D86 + 8 +HOLZ + 10 +10591.428956 + 20 +9781.382539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D87 + 8 +HOLZ + 10 +10596.443577 + 20 +9782.254689 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D88 + 8 +HOLZ + 10 +10602.07765 + 20 +9782.920232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D89 + 8 +HOLZ + 10 +10608.552406 + 20 +9783.400588 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D8A + 8 +HOLZ + 10 +10616.089078 + 20 +9783.717178 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D8B + 8 +HOLZ + 10 +10624.908898 + 20 +9783.891423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D8C + 8 +HOLZ + 10 +10635.233097 + 20 +9783.944745 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D8D + 8 +HOLZ + 10 +10522.669709 + 20 +9748.56574 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D8E + 8 +HOLZ + 10 +10546.031947 + 20 +9761.302212 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D8F + 8 +HOLZ + 10 +10582.84508 + 20 +9781.822018 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D90 + 8 +HOLZ + 10 +10605.499409 + 20 +9783.944745 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D91 + 8 +HOLZ + 10 +10635.233097 + 20 +9783.944745 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +D92 + 8 +HOLZ + 0 +POLYLINE + 5 +D93 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +D94 + 8 +HOLZ + 10 +10475.945231 + 20 +9759.179431 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +D95 + 8 +HOLZ + 10 +10475.945231 + 20 +9759.179431 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D96 + 8 +HOLZ + 10 +10487.063251 + 20 +9767.498569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D97 + 8 +HOLZ + 10 +10497.125569 + 20 +9774.521398 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D98 + 8 +HOLZ + 10 +10506.237963 + 20 +9780.410991 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D99 + 8 +HOLZ + 10 +10514.506211 + 20 +9785.330425 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D9A + 8 +HOLZ + 10 +10522.036091 + 20 +9789.442775 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D9B + 8 +HOLZ + 10 +10528.933379 + 20 +9792.911115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D9C + 8 +HOLZ + 10 +10535.303855 + 20 +9795.898521 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D9D + 8 +HOLZ + 10 +10541.253296 + 20 +9798.568068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D9E + 8 +HOLZ + 10 +10546.8778 + 20 +9801.057264 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +D9F + 8 +HOLZ + 10 +10552.23475 + 20 +9803.40135 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA0 + 8 +HOLZ + 10 +10557.37185 + 20 +9805.610001 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA1 + 8 +HOLZ + 10 +10562.336804 + 20 +9807.69289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA2 + 8 +HOLZ + 10 +10567.177313 + 20 +9809.659692 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA3 + 8 +HOLZ + 10 +10571.941083 + 20 +9811.520081 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA4 + 8 +HOLZ + 10 +10576.675817 + 20 +9813.283731 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA5 + 8 +HOLZ + 10 +10581.429217 + 20 +9814.960316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA6 + 8 +HOLZ + 10 +10586.270075 + 20 +9816.55951 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA7 + 8 +HOLZ + 10 +10591.351524 + 20 +9818.090987 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA8 + 8 +HOLZ + 10 +10596.847785 + 20 +9819.564421 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DA9 + 8 +HOLZ + 10 +10602.933079 + 20 +9820.989484 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DAA + 8 +HOLZ + 10 +10609.781627 + 20 +9822.375851 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DAB + 8 +HOLZ + 10 +10617.56765 + 20 +9823.733195 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DAC + 8 +HOLZ + 10 +10626.465368 + 20 +9825.071189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DAD + 8 +HOLZ + 10 +10636.649003 + 20 +9826.399507 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DAE + 8 +HOLZ + 10 +10507.094912 + 20 +9783.237169 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DAF + 8 +HOLZ + 10 +10544.616041 + 20 +9800.219096 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DB0 + 8 +HOLZ + 10 +10580.721264 + 20 +9815.785816 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DB1 + 8 +HOLZ + 10 +10607.623226 + 20 +9822.861628 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DB2 + 8 +HOLZ + 10 +10636.649003 + 20 +9826.399507 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +DB3 + 8 +HOLZ + 0 +POLYLINE + 5 +DB4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +DB5 + 8 +HOLZ + 10 +10480.90086 + 20 +9803.756974 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DB6 + 8 +HOLZ + 10 +10480.90086 + 20 +9803.756974 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DB7 + 8 +HOLZ + 10 +10493.990947 + 20 +9812.10005 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DB8 + 8 +HOLZ + 10 +10507.570513 + 20 +9819.290546 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DB9 + 8 +HOLZ + 10 +10521.332597 + 20 +9825.635266 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DBA + 8 +HOLZ + 10 +10534.970238 + 20 +9831.441011 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DBB + 8 +HOLZ + 10 +10548.176477 + 20 +9837.014583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DBC + 8 +HOLZ + 10 +10560.644352 + 20 +9842.662783 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DBD + 8 +HOLZ + 10 +10572.066904 + 20 +9848.692413 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DBE + 8 +HOLZ + 10 +10582.13717 + 20 +9855.410276 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DBF + 8 +HOLZ + 10 +10514.882267 + 20 +9827.814658 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DC0 + 8 +HOLZ + 10 +10557.359025 + 20 +9836.305622 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DC1 + 8 +HOLZ + 10 +10582.13717 + 20 +9855.410276 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +DC2 + 8 +HOLZ + 0 +POLYLINE + 5 +DC3 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +DC4 + 8 +HOLZ + 10 +7247.888607 + 20 +7499.287951 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DC5 + 8 +HOLZ + 10 +7247.888607 + 20 +7499.287951 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DC6 + 8 +HOLZ + 10 +7248.565208 + 20 +7513.656964 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DC7 + 8 +HOLZ + 10 +7249.407735 + 20 +7524.731313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DC8 + 8 +HOLZ + 10 +7250.759099 + 20 +7533.284913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DC9 + 8 +HOLZ + 10 +7252.96221 + 20 +7540.09168 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DCA + 8 +HOLZ + 10 +7256.35998 + 20 +7545.925528 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DCB + 8 +HOLZ + 10 +7261.29532 + 20 +7551.560374 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DCC + 8 +HOLZ + 10 +7268.111141 + 20 +7557.770131 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DCD + 8 +HOLZ + 10 +7277.150354 + 20 +7565.328716 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DCE + 8 +HOLZ + 10 +7249.776453 + 20 +7542.686129 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DCF + 8 +HOLZ + 10 +7277.150354 + 20 +7565.328716 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +DD0 + 8 +HOLZ + 0 +POLYLINE + 5 +DD1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +DD2 + 8 +HOLZ + 10 +7201.636156 + 20 +7498.34448 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DD3 + 8 +HOLZ + 10 +7201.636156 + 20 +7498.34448 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DD4 + 8 +HOLZ + 10 +7204.310775 + 20 +7511.971844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DD5 + 8 +HOLZ + 10 +7207.369788 + 20 +7523.9574 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DD6 + 8 +HOLZ + 10 +7210.799365 + 20 +7534.472514 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DD7 + 8 +HOLZ + 10 +7214.585681 + 20 +7543.688554 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DD8 + 8 +HOLZ + 10 +7218.714908 + 20 +7551.776889 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DD9 + 8 +HOLZ + 10 +7223.173219 + 20 +7558.908886 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DDA + 8 +HOLZ + 10 +7227.946787 + 20 +7565.255912 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DDB + 8 +HOLZ + 10 +7233.021785 + 20 +7570.989335 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DDC + 8 +HOLZ + 10 +7238.37701 + 20 +7576.262096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DDD + 8 +HOLZ + 10 +7243.961765 + 20 +7581.153429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DDE + 8 +HOLZ + 10 +7249.717976 + 20 +7585.724139 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DDF + 8 +HOLZ + 10 +7255.587568 + 20 +7590.035034 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DE0 + 8 +HOLZ + 10 +7261.512469 + 20 +7594.14692 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DE1 + 8 +HOLZ + 10 +7267.434605 + 20 +7598.120604 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DE2 + 8 +HOLZ + 10 +7273.295902 + 20 +7602.016892 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DE3 + 8 +HOLZ + 10 +7279.038287 + 20 +7605.896591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DE4 + 8 +HOLZ + 10 +7208.243661 + 20 +7537.025523 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DE5 + 8 +HOLZ + 10 +7229.954024 + 20 +7575.706511 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DE6 + 8 +HOLZ + 10 +7263.93543 + 20 +7595.518795 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DE7 + 8 +HOLZ + 10 +7279.038287 + 20 +7605.896591 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +DE8 + 8 +HOLZ + 0 +POLYLINE + 5 +DE9 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +DEA + 8 +HOLZ + 10 +7159.159397 + 20 +7495.514177 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +DEB + 8 +HOLZ + 10 +7159.159397 + 20 +7495.514177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DEC + 8 +HOLZ + 10 +7163.800064 + 20 +7517.918869 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DED + 8 +HOLZ + 10 +7168.497885 + 20 +7535.977657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DEE + 8 +HOLZ + 10 +7173.221519 + 20 +7550.253473 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DEF + 8 +HOLZ + 10 +7177.939624 + 20 +7561.309248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF0 + 8 +HOLZ + 10 +7182.620858 + 20 +7569.707915 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF1 + 8 +HOLZ + 10 +7187.23388 + 20 +7576.012404 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF2 + 8 +HOLZ + 10 +7191.747346 + 20 +7580.785646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF3 + 8 +HOLZ + 10 +7196.129916 + 20 +7584.590574 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF4 + 8 +HOLZ + 10 +7200.367761 + 20 +7587.909962 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF5 + 8 +HOLZ + 10 +7204.517111 + 20 +7590.905966 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF6 + 8 +HOLZ + 10 +7208.651712 + 20 +7593.660582 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF7 + 8 +HOLZ + 10 +7212.845308 + 20 +7596.255809 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF8 + 8 +HOLZ + 10 +7217.171643 + 20 +7598.773645 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DF9 + 8 +HOLZ + 10 +7221.704461 + 20 +7601.296088 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DFA + 8 +HOLZ + 10 +7226.517508 + 20 +7603.905137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DFB + 8 +HOLZ + 10 +7231.684528 + 20 +7606.682789 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DFC + 8 +HOLZ + 10 +7237.250688 + 20 +7609.693999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DFD + 8 +HOLZ + 10 +7243.146855 + 20 +7612.93554 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DFE + 8 +HOLZ + 10 +7249.275317 + 20 +7616.387145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +DFF + 8 +HOLZ + 10 +7255.538363 + 20 +7620.028542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E00 + 8 +HOLZ + 10 +7261.838282 + 20 +7623.839463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E01 + 8 +HOLZ + 10 +7268.077363 + 20 +7627.799638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E02 + 8 +HOLZ + 10 +7274.157895 + 20 +7631.888797 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E03 + 8 +HOLZ + 10 +7279.982167 + 20 +7636.086671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E04 + 8 +HOLZ + 10 +7171.430441 + 20 +7561.554942 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E05 + 8 +HOLZ + 10 +7197.860463 + 20 +7588.914665 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E06 + 8 +HOLZ + 10 +7227.122211 + 20 +7604.009704 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E07 + 8 +HOLZ + 10 +7264.87931 + 20 +7624.765404 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E08 + 8 +HOLZ + 10 +7279.982167 + 20 +7636.086671 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +E09 + 8 +HOLZ + 0 +POLYLINE + 5 +E0A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +E0B + 8 +HOLZ + 10 +7113.850826 + 20 +7497.401064 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E0C + 8 +HOLZ + 10 +7113.850826 + 20 +7497.401064 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E0D + 8 +HOLZ + 10 +7122.376448 + 20 +7530.001165 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E0E + 8 +HOLZ + 10 +7130.287227 + 20 +7555.568774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E0F + 8 +HOLZ + 10 +7137.632018 + 20 +7575.07589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E10 + 8 +HOLZ + 10 +7144.459677 + 20 +7589.494515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E11 + 8 +HOLZ + 10 +7150.819059 + 20 +7599.796648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E12 + 8 +HOLZ + 10 +7156.759018 + 20 +7606.95429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E13 + 8 +HOLZ + 10 +7162.328411 + 20 +7611.939441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E14 + 8 +HOLZ + 10 +7167.576092 + 20 +7615.724101 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E15 + 8 +HOLZ + 10 +7172.55783 + 20 +7619.123646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E16 + 8 +HOLZ + 10 +7177.357049 + 20 +7622.326948 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E17 + 8 +HOLZ + 10 +7182.064087 + 20 +7625.366253 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E18 + 8 +HOLZ + 10 +7186.769279 + 20 +7628.273808 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E19 + 8 +HOLZ + 10 +7191.562965 + 20 +7631.08186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E1A + 8 +HOLZ + 10 +7196.53548 + 20 +7633.822654 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E1B + 8 +HOLZ + 10 +7201.777163 + 20 +7636.528439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E1C + 8 +HOLZ + 10 +7207.378351 + 20 +7639.231459 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E1D + 8 +HOLZ + 10 +7213.448278 + 20 +7641.9893 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E1E + 8 +HOLZ + 10 +7220.171765 + 20 +7644.960888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E1F + 8 +HOLZ + 10 +7227.752532 + 20 +7648.330492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E20 + 8 +HOLZ + 10 +7236.394297 + 20 +7652.282375 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E21 + 8 +HOLZ + 10 +7246.300778 + 20 +7657.000803 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E22 + 8 +HOLZ + 10 +7257.675694 + 20 +7662.670042 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E23 + 8 +HOLZ + 10 +7270.722764 + 20 +7669.474358 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E24 + 8 +HOLZ + 10 +7285.645706 + 20 +7677.598016 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E25 + 8 +HOLZ + 10 +7137.449035 + 20 +7594.575325 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E26 + 8 +HOLZ + 10 +7170.486562 + 20 +7618.161328 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E27 + 8 +HOLZ + 10 +7202.580035 + 20 +7638.916974 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E28 + 8 +HOLZ + 10 +7243.168948 + 20 +7654.012013 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E29 + 8 +HOLZ + 10 +7285.645706 + 20 +7677.598016 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +E2A + 8 +HOLZ + 0 +POLYLINE + 5 +E2B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +E2C + 8 +HOLZ + 10 +7081.757265 + 20 +7554.950866 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E2D + 8 +HOLZ + 10 +7081.757265 + 20 +7554.950866 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E2E + 8 +HOLZ + 10 +7096.185814 + 20 +7576.403985 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E2F + 8 +HOLZ + 10 +7107.895961 + 20 +7593.727712 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E30 + 8 +HOLZ + 10 +7117.310817 + 20 +7607.480373 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E31 + 8 +HOLZ + 10 +7124.853487 + 20 +7618.220291 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E32 + 8 +HOLZ + 10 +7130.947082 + 20 +7626.505792 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E33 + 8 +HOLZ + 10 +7136.014708 + 20 +7632.895201 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E34 + 8 +HOLZ + 10 +7140.479473 + 20 +7637.946841 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E35 + 8 +HOLZ + 10 +7144.764486 + 20 +7642.219039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E36 + 8 +HOLZ + 10 +7149.217574 + 20 +7646.177371 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E37 + 8 +HOLZ + 10 +7153.885441 + 20 +7649.916428 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E38 + 8 +HOLZ + 10 +7158.739512 + 20 +7653.438051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E39 + 8 +HOLZ + 10 +7163.751211 + 20 +7656.744083 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E3A + 8 +HOLZ + 10 +7168.891962 + 20 +7659.836368 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E3B + 8 +HOLZ + 10 +7174.133188 + 20 +7662.716746 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E3C + 8 +HOLZ + 10 +7179.446315 + 20 +7665.387061 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E3D + 8 +HOLZ + 10 +7184.802766 + 20 +7667.849156 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E3E + 8 +HOLZ + 10 +7190.181339 + 20 +7670.115928 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E3F + 8 +HOLZ + 10 +7195.590331 + 20 +7672.2445 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E40 + 8 +HOLZ + 10 +7201.045413 + 20 +7674.303051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E41 + 8 +HOLZ + 10 +7206.562257 + 20 +7676.359759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E42 + 8 +HOLZ + 10 +7212.156532 + 20 +7678.482802 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E43 + 8 +HOLZ + 10 +7217.843911 + 20 +7680.740358 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E44 + 8 +HOLZ + 10 +7223.640063 + 20 +7683.200607 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E45 + 8 +HOLZ + 10 +7229.560661 + 20 +7685.931726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E46 + 8 +HOLZ + 10 +7235.616765 + 20 +7688.976096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E47 + 8 +HOLZ + 10 +7241.801002 + 20 +7692.272911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E48 + 8 +HOLZ + 10 +7248.101388 + 20 +7695.735565 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E49 + 8 +HOLZ + 10 +7254.50594 + 20 +7699.277456 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E4A + 8 +HOLZ + 10 +7261.002673 + 20 +7702.811977 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E4B + 8 +HOLZ + 10 +7267.579606 + 20 +7706.252526 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E4C + 8 +HOLZ + 10 +7274.224754 + 20 +7709.512497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E4D + 8 +HOLZ + 10 +7280.926134 + 20 +7712.505286 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E4E + 8 +HOLZ + 10 +7124.234024 + 20 +7618.161328 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E4F + 8 +HOLZ + 10 +7142.168694 + 20 +7644.577634 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E50 + 8 +HOLZ + 10 +7184.645452 + 20 +7670.050524 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E51 + 8 +HOLZ + 10 +7228.066091 + 20 +7682.315206 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E52 + 8 +HOLZ + 10 +7262.991464 + 20 +7704.957739 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E53 + 8 +HOLZ + 10 +7280.926134 + 20 +7712.505286 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +E54 + 8 +HOLZ + 0 +POLYLINE + 5 +E55 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +E56 + 8 +HOLZ + 10 +7080.813386 + 20 +7641.747331 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E57 + 8 +HOLZ + 10 +7080.813386 + 20 +7641.747331 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E58 + 8 +HOLZ + 10 +7097.378513 + 20 +7651.155614 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E59 + 8 +HOLZ + 10 +7111.213259 + 20 +7658.992115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E5A + 8 +HOLZ + 10 +7122.684499 + 20 +7665.453997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E5B + 8 +HOLZ + 10 +7132.159113 + 20 +7670.738425 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E5C + 8 +HOLZ + 10 +7140.003977 + 20 +7675.04256 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E5D + 8 +HOLZ + 10 +7146.58597 + 20 +7678.563569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E5E + 8 +HOLZ + 10 +7152.271968 + 20 +7681.498613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E5F + 8 +HOLZ + 10 +7157.42885 + 20 +7684.044857 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E60 + 8 +HOLZ + 10 +7162.370489 + 20 +7686.376892 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E61 + 8 +HOLZ + 10 +7167.198746 + 20 +7688.57902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E62 + 8 +HOLZ + 10 +7171.962475 + 20 +7690.712969 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E63 + 8 +HOLZ + 10 +7176.710535 + 20 +7692.840468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E64 + 8 +HOLZ + 10 +7181.491779 + 20 +7695.023248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E65 + 8 +HOLZ + 10 +7186.355065 + 20 +7697.323036 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E66 + 8 +HOLZ + 10 +7191.349248 + 20 +7699.801561 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E67 + 8 +HOLZ + 10 +7196.523184 + 20 +7702.520553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E68 + 8 +HOLZ + 10 +7201.904529 + 20 +7705.52055 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E69 + 8 +HOLZ + 10 +7207.436128 + 20 +7708.757329 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E6A + 8 +HOLZ + 10 +7213.039629 + 20 +7712.165475 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E6B + 8 +HOLZ + 10 +7218.636677 + 20 +7715.679573 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E6C + 8 +HOLZ + 10 +7224.148917 + 20 +7719.234211 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E6D + 8 +HOLZ + 10 +7229.497997 + 20 +7722.763972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E6E + 8 +HOLZ + 10 +7234.605561 + 20 +7726.203444 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E6F + 8 +HOLZ + 10 +7239.393255 + 20 +7729.487212 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E70 + 8 +HOLZ + 10 +7128.953683 + 20 +7669.107053 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E71 + 8 +HOLZ + 10 +7159.159397 + 20 +7686.08898 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E72 + 8 +HOLZ + 10 +7194.084684 + 20 +7699.297133 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E73 + 8 +HOLZ + 10 +7227.122211 + 20 +7720.996249 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E74 + 8 +HOLZ + 10 +7239.393255 + 20 +7729.487212 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +E75 + 8 +HOLZ + 0 +POLYLINE + 5 +E76 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +E77 + 8 +HOLZ + 10 +7087.420891 + 20 +7674.767713 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E78 + 8 +HOLZ + 10 +7087.420891 + 20 +7674.767713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E79 + 8 +HOLZ + 10 +7094.673635 + 20 +7686.136888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E7A + 8 +HOLZ + 10 +7102.789194 + 20 +7695.140095 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E7B + 8 +HOLZ + 10 +7111.479964 + 20 +7702.33013 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E7C + 8 +HOLZ + 10 +7120.458342 + 20 +7708.259791 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E7D + 8 +HOLZ + 10 +7129.436724 + 20 +7713.481874 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E7E + 8 +HOLZ + 10 +7138.127506 + 20 +7718.549177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E7F + 8 +HOLZ + 10 +7146.243086 + 20 +7724.014496 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E80 + 8 +HOLZ + 10 +7153.495858 + 20 +7730.430629 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +E81 + 8 +HOLZ + 10 +7105.355474 + 20 +7708.731512 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E82 + 8 +HOLZ + 10 +7135.561188 + 20 +7711.561815 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +E83 + 8 +HOLZ + 10 +7153.495858 + 20 +7730.430629 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +E84 + 8 +HOLZ + 0 +POLYLINE + 5 +E85 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25D8 + 8 +SCHNITTKANTEN + 10 +3705.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +25D9 + 8 +SCHNITTKANTEN + 10 +17440.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +25DA + 8 +SCHNITTKANTEN + 0 +INSERT + 5 +E89 + 8 +SCHRAFFUR + 2 +*X3 + 10 +0.0 + 20 +-750.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI33,I +1040 +1200.0 +1040 +0.0 +1002 +} + 0 +LINE + 5 +E8A + 8 +0 + 62 + 0 + 10 +9248.630945 + 20 +3790.0 + 30 +0.0 + 11 +9365.0 + 21 +3906.369055 + 31 +0.0 + 0 +LINE + 5 +E8B + 8 +0 + 62 + 0 + 10 +9071.854249 + 20 +3790.0 + 30 +0.0 + 11 +9365.0 + 21 +4083.145751 + 31 +0.0 + 0 +LINE + 5 +E8C + 8 +0 + 62 + 0 + 10 +9000.0 + 20 +3894.922446 + 30 +0.0 + 11 +9365.0 + 21 +4259.922446 + 31 +0.0 + 0 +LINE + 5 +E8D + 8 +0 + 62 + 0 + 10 +9000.0 + 20 +4071.699141 + 30 +0.0 + 11 +9268.300859 + 21 +4340.0 + 31 +0.0 + 0 +LINE + 5 +E8E + 8 +0 + 62 + 0 + 10 +9000.0 + 20 +4248.475836 + 30 +0.0 + 11 +9091.524164 + 21 +4340.0 + 31 +0.0 + 0 +LINE + 5 +E8F + 8 +0 + 62 + 0 + 10 +4475.660172 + 20 +3790.0 + 30 +0.0 + 11 +4490.0 + 21 +3804.339828 + 31 +0.0 + 0 +LINE + 5 +E90 + 8 +0 + 62 + 0 + 10 +4298.883476 + 20 +3790.0 + 30 +0.0 + 11 +4490.0 + 21 +3981.116524 + 31 +0.0 + 0 +LINE + 5 +E91 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3792.893219 + 30 +0.0 + 11 +4490.0 + 21 +4157.893219 + 31 +0.0 + 0 +LINE + 5 +E92 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3969.669914 + 30 +0.0 + 11 +4490.0 + 21 +4334.669914 + 31 +0.0 + 0 +LINE + 5 +E93 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4146.446609 + 30 +0.0 + 11 +4313.553391 + 21 +4335.0 + 31 +0.0 + 0 +LINE + 5 +E94 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4323.223305 + 30 +0.0 + 11 +4136.776695 + 21 +4335.0 + 31 +0.0 + 0 +LINE + 5 +E95 + 8 +0 + 62 + 0 + 10 +4326.776695 + 20 +4525.0 + 30 +0.0 + 11 +4490.0 + 21 +4688.223305 + 31 +0.0 + 0 +LINE + 5 +E96 + 8 +0 + 62 + 0 + 10 +4150.0 + 20 +4525.0 + 30 +0.0 + 11 +4490.0 + 21 +4865.0 + 31 +0.0 + 0 +LINE + 5 +E97 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4676.776695 + 30 +0.0 + 11 +4490.0 + 21 +5041.776695 + 31 +0.0 + 0 +LINE + 5 +E98 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4853.553391 + 30 +0.0 + 11 +4490.0 + 21 +5218.553391 + 31 +0.0 + 0 +LINE + 5 +E99 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +5030.330086 + 30 +0.0 + 11 +4490.0 + 21 +5395.330086 + 31 +0.0 + 0 +LINE + 5 +E9A + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +5207.106781 + 30 +0.0 + 11 +4490.0 + 21 +5572.106781 + 31 +0.0 + 0 +LINE + 5 +E9B + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +5383.883476 + 30 +0.0 + 11 +4481.116524 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +E9C + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +5560.660172 + 30 +0.0 + 11 +4304.339828 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +E9D + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +5737.436867 + 30 +0.0 + 11 +4127.563133 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +E9E + 8 +0 + 62 + 0 + 10 +11750.0 + 20 +4170.048712 + 30 +0.0 + 11 +11919.951288 + 21 +4340.0 + 31 +0.0 + 0 +LINE + 5 +E9F + 8 +0 + 62 + 0 + 10 +11750.0 + 20 +3993.272016 + 30 +0.0 + 11 +12096.727984 + 21 +4340.0 + 31 +0.0 + 0 +LINE + 5 +EA0 + 8 +0 + 62 + 0 + 10 +11750.0 + 20 +3816.495321 + 30 +0.0 + 11 +12115.0 + 21 +4181.495321 + 31 +0.0 + 0 +LINE + 5 +EA1 + 8 +0 + 62 + 0 + 10 +11900.281374 + 20 +3790.0 + 30 +0.0 + 11 +12115.0 + 21 +4004.718626 + 31 +0.0 + 0 +LINE + 5 +EA2 + 8 +0 + 62 + 0 + 10 +12077.05807 + 20 +3790.0 + 30 +0.0 + 11 +12115.0 + 21 +3827.94193 + 31 +0.0 + 0 +LINE + 5 +EA3 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +5686.291501 + 30 +0.0 + 11 +16678.708499 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +EA4 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +5509.514806 + 30 +0.0 + 11 +16855.485194 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +EA5 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +5332.73811 + 30 +0.0 + 11 +16990.0 + 21 +5697.73811 + 31 +0.0 + 0 +LINE + 5 +EA6 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +5155.961415 + 30 +0.0 + 11 +16990.0 + 21 +5520.961415 + 31 +0.0 + 0 +LINE + 5 +EA7 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +4979.18472 + 30 +0.0 + 11 +16990.0 + 21 +5344.18472 + 31 +0.0 + 0 +LINE + 5 +EA8 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +4802.408025 + 30 +0.0 + 11 +16990.0 + 21 +5167.408025 + 31 +0.0 + 0 +LINE + 5 +EA9 + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +4625.631329 + 30 +0.0 + 11 +16990.0 + 21 +4990.631329 + 31 +0.0 + 0 +LINE + 5 +EAA + 8 +0 + 62 + 0 + 10 +16701.145366 + 20 +4525.0 + 30 +0.0 + 11 +16990.0 + 21 +4813.854634 + 31 +0.0 + 0 +LINE + 5 +EAB + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +4272.077939 + 30 +0.0 + 11 +16687.922061 + 21 +4335.0 + 31 +0.0 + 0 +LINE + 5 +EAC + 8 +0 + 62 + 0 + 10 +16877.922061 + 20 +4525.0 + 30 +0.0 + 11 +16990.0 + 21 +4637.077939 + 31 +0.0 + 0 +LINE + 5 +EAD + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +4095.301243 + 30 +0.0 + 11 +16864.698757 + 21 +4335.0 + 31 +0.0 + 0 +LINE + 5 +EAE + 8 +0 + 62 + 0 + 10 +16625.0 + 20 +3918.524548 + 30 +0.0 + 11 +16990.0 + 21 +4283.524548 + 31 +0.0 + 0 +LINE + 5 +EAF + 8 +0 + 62 + 0 + 10 +16673.252147 + 20 +3790.0 + 30 +0.0 + 11 +16990.0 + 21 +4106.747853 + 31 +0.0 + 0 +LINE + 5 +EB0 + 8 +0 + 62 + 0 + 10 +16850.028843 + 20 +3790.0 + 30 +0.0 + 11 +16990.0 + 21 +3929.971157 + 31 +0.0 + 0 +LINE + 5 +EB1 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4196.89111 + 30 +0.0 + 11 +4075.0 + 21 +4196.89111 + 31 +0.0 + 0 +LINE + 5 +EB2 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4196.89111 + 30 +0.0 + 11 +17050.0 + 21 +4196.89111 + 31 +0.0 + 0 +LINE + 5 +EB3 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4218.541745 + 30 +0.0 + 11 +4112.5 + 21 +4218.541745 + 31 +0.0 + 0 +LINE + 5 +EB4 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4218.541745 + 30 +0.0 + 11 +17012.5 + 21 +4218.541745 + 31 +0.0 + 0 +LINE + 5 +EB5 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4218.541745 + 30 +0.0 + 11 +17070.0 + 21 +4218.541745 + 31 +0.0 + 0 +LINE + 5 +EB6 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4240.19238 + 30 +0.0 + 11 +4075.0 + 21 +4240.19238 + 31 +0.0 + 0 +LINE + 5 +EB7 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4240.19238 + 30 +0.0 + 11 +17050.0 + 21 +4240.19238 + 31 +0.0 + 0 +LINE + 5 +EB8 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4261.843015 + 30 +0.0 + 11 +4112.5 + 21 +4261.843015 + 31 +0.0 + 0 +LINE + 5 +EB9 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4261.843015 + 30 +0.0 + 11 +17012.5 + 21 +4261.843015 + 31 +0.0 + 0 +LINE + 5 +EBA + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4261.843015 + 30 +0.0 + 11 +17070.0 + 21 +4261.843015 + 31 +0.0 + 0 +LINE + 5 +EBB + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4283.49365 + 30 +0.0 + 11 +4075.0 + 21 +4283.49365 + 31 +0.0 + 0 +LINE + 5 +EBC + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4283.49365 + 30 +0.0 + 11 +17050.0 + 21 +4283.49365 + 31 +0.0 + 0 +LINE + 5 +EBD + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4305.144285 + 30 +0.0 + 11 +4112.5 + 21 +4305.144285 + 31 +0.0 + 0 +LINE + 5 +EBE + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4305.144285 + 30 +0.0 + 11 +17012.5 + 21 +4305.144285 + 31 +0.0 + 0 +LINE + 5 +EBF + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4305.144285 + 30 +0.0 + 11 +17070.0 + 21 +4305.144285 + 31 +0.0 + 0 +LINE + 5 +EC0 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4326.79492 + 30 +0.0 + 11 +4075.0 + 21 +4326.79492 + 31 +0.0 + 0 +LINE + 5 +EC1 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4326.79492 + 30 +0.0 + 11 +17050.0 + 21 +4326.79492 + 31 +0.0 + 0 +LINE + 5 +EC2 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4348.445555 + 30 +0.0 + 11 +4112.5 + 21 +4348.445555 + 31 +0.0 + 0 +LINE + 5 +EC3 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4348.445555 + 30 +0.0 + 11 +17012.5 + 21 +4348.445555 + 31 +0.0 + 0 +LINE + 5 +EC4 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4348.445555 + 30 +0.0 + 11 +17070.0 + 21 +4348.445555 + 31 +0.0 + 0 +LINE + 5 +EC5 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4370.09619 + 30 +0.0 + 11 +4075.0 + 21 +4370.09619 + 31 +0.0 + 0 +LINE + 5 +EC6 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4370.09619 + 30 +0.0 + 11 +17050.0 + 21 +4370.09619 + 31 +0.0 + 0 +LINE + 5 +EC7 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4391.746825 + 30 +0.0 + 11 +4112.5 + 21 +4391.746825 + 31 +0.0 + 0 +LINE + 5 +EC8 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4391.746825 + 30 +0.0 + 11 +17012.5 + 21 +4391.746825 + 31 +0.0 + 0 +LINE + 5 +EC9 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4391.746825 + 30 +0.0 + 11 +17070.0 + 21 +4391.746825 + 31 +0.0 + 0 +LINE + 5 +ECA + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4413.39746 + 30 +0.0 + 11 +4075.0 + 21 +4413.39746 + 31 +0.0 + 0 +LINE + 5 +ECB + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4413.39746 + 30 +0.0 + 11 +17050.0 + 21 +4413.39746 + 31 +0.0 + 0 +LINE + 5 +ECC + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4435.048095 + 30 +0.0 + 11 +4112.5 + 21 +4435.048095 + 31 +0.0 + 0 +LINE + 5 +ECD + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4435.048095 + 30 +0.0 + 11 +17012.5 + 21 +4435.048095 + 31 +0.0 + 0 +LINE + 5 +ECE + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4435.048095 + 30 +0.0 + 11 +17070.0 + 21 +4435.048095 + 31 +0.0 + 0 +LINE + 5 +ECF + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4456.69873 + 30 +0.0 + 11 +4075.0 + 21 +4456.69873 + 31 +0.0 + 0 +LINE + 5 +ED0 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4456.69873 + 30 +0.0 + 11 +17050.0 + 21 +4456.69873 + 31 +0.0 + 0 +LINE + 5 +ED1 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4478.349365 + 30 +0.0 + 11 +4112.5 + 21 +4478.349365 + 31 +0.0 + 0 +LINE + 5 +ED2 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4478.349365 + 30 +0.0 + 11 +17012.5 + 21 +4478.349365 + 31 +0.0 + 0 +LINE + 5 +ED3 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4478.349365 + 30 +0.0 + 11 +17070.0 + 21 +4478.349365 + 31 +0.0 + 0 +LINE + 5 +ED4 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4500.0 + 30 +0.0 + 11 +4075.0 + 21 +4500.0 + 31 +0.0 + 0 +LINE + 5 +ED5 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4500.0 + 30 +0.0 + 11 +17050.0 + 21 +4500.0 + 31 +0.0 + 0 +LINE + 5 +ED6 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4521.650635 + 30 +0.0 + 11 +4112.5 + 21 +4521.650635 + 31 +0.0 + 0 +LINE + 5 +ED7 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4521.650635 + 30 +0.0 + 11 +17012.5 + 21 +4521.650635 + 31 +0.0 + 0 +LINE + 5 +ED8 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4521.650635 + 30 +0.0 + 11 +17070.0 + 21 +4521.650635 + 31 +0.0 + 0 +LINE + 5 +ED9 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4543.30127 + 30 +0.0 + 11 +4075.0 + 21 +4543.30127 + 31 +0.0 + 0 +LINE + 5 +EDA + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4543.30127 + 30 +0.0 + 11 +17050.0 + 21 +4543.30127 + 31 +0.0 + 0 +LINE + 5 +EDB + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4564.951905 + 30 +0.0 + 11 +4112.5 + 21 +4564.951905 + 31 +0.0 + 0 +LINE + 5 +EDC + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4564.951905 + 30 +0.0 + 11 +17012.5 + 21 +4564.951905 + 31 +0.0 + 0 +LINE + 5 +EDD + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4564.951905 + 30 +0.0 + 11 +17070.0 + 21 +4564.951905 + 31 +0.0 + 0 +LINE + 5 +EDE + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4586.60254 + 30 +0.0 + 11 +4075.0 + 21 +4586.60254 + 31 +0.0 + 0 +LINE + 5 +EDF + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4586.60254 + 30 +0.0 + 11 +17050.0 + 21 +4586.60254 + 31 +0.0 + 0 +LINE + 5 +EE0 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4608.253175 + 30 +0.0 + 11 +4112.5 + 21 +4608.253175 + 31 +0.0 + 0 +LINE + 5 +EE1 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4608.253175 + 30 +0.0 + 11 +17012.5 + 21 +4608.253175 + 31 +0.0 + 0 +LINE + 5 +EE2 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4608.253175 + 30 +0.0 + 11 +17070.0 + 21 +4608.253175 + 31 +0.0 + 0 +LINE + 5 +EE3 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4629.90381 + 30 +0.0 + 11 +4075.0 + 21 +4629.90381 + 31 +0.0 + 0 +LINE + 5 +EE4 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4629.90381 + 30 +0.0 + 11 +17050.0 + 21 +4629.90381 + 31 +0.0 + 0 +LINE + 5 +EE5 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4651.554445 + 30 +0.0 + 11 +4112.5 + 21 +4651.554445 + 31 +0.0 + 0 +LINE + 5 +EE6 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4651.554445 + 30 +0.0 + 11 +17012.5 + 21 +4651.554445 + 31 +0.0 + 0 +LINE + 5 +EE7 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4651.554445 + 30 +0.0 + 11 +17070.0 + 21 +4651.554445 + 31 +0.0 + 0 +LINE + 5 +EE8 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4673.20508 + 30 +0.0 + 11 +4075.0 + 21 +4673.20508 + 31 +0.0 + 0 +LINE + 5 +EE9 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4673.20508 + 30 +0.0 + 11 +17050.0 + 21 +4673.20508 + 31 +0.0 + 0 +LINE + 5 +EEA + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4694.855715 + 30 +0.0 + 11 +4112.5 + 21 +4694.855715 + 31 +0.0 + 0 +LINE + 5 +EEB + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4694.855715 + 30 +0.0 + 11 +17012.5 + 21 +4694.855715 + 31 +0.0 + 0 +LINE + 5 +EEC + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4694.855715 + 30 +0.0 + 11 +17070.0 + 21 +4694.855715 + 31 +0.0 + 0 +LINE + 5 +EED + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4716.50635 + 30 +0.0 + 11 +4075.0 + 21 +4716.50635 + 31 +0.0 + 0 +LINE + 5 +EEE + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4716.50635 + 30 +0.0 + 11 +17050.0 + 21 +4716.50635 + 31 +0.0 + 0 +LINE + 5 +EEF + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4738.156985 + 30 +0.0 + 11 +4112.5 + 21 +4738.156985 + 31 +0.0 + 0 +LINE + 5 +EF0 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4738.156985 + 30 +0.0 + 11 +17012.5 + 21 +4738.156985 + 31 +0.0 + 0 +LINE + 5 +EF1 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4738.156985 + 30 +0.0 + 11 +17070.0 + 21 +4738.156985 + 31 +0.0 + 0 +LINE + 5 +EF2 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4759.80762 + 30 +0.0 + 11 +4075.0 + 21 +4759.80762 + 31 +0.0 + 0 +LINE + 5 +EF3 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4759.80762 + 30 +0.0 + 11 +17050.0 + 21 +4759.80762 + 31 +0.0 + 0 +LINE + 5 +EF4 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4781.458255 + 30 +0.0 + 11 +4112.5 + 21 +4781.458255 + 31 +0.0 + 0 +LINE + 5 +EF5 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4781.458255 + 30 +0.0 + 11 +17012.5 + 21 +4781.458255 + 31 +0.0 + 0 +LINE + 5 +EF6 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4781.458255 + 30 +0.0 + 11 +17070.0 + 21 +4781.458255 + 31 +0.0 + 0 +LINE + 5 +EF7 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4803.10889 + 30 +0.0 + 11 +4075.0 + 21 +4803.10889 + 31 +0.0 + 0 +LINE + 5 +EF8 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4803.10889 + 30 +0.0 + 11 +17050.0 + 21 +4803.10889 + 31 +0.0 + 0 +LINE + 5 +EF9 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4824.759525 + 30 +0.0 + 11 +4112.5 + 21 +4824.759525 + 31 +0.0 + 0 +LINE + 5 +EFA + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4824.759525 + 30 +0.0 + 11 +17012.5 + 21 +4824.759525 + 31 +0.0 + 0 +LINE + 5 +EFB + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4824.759525 + 30 +0.0 + 11 +17070.0 + 21 +4824.759525 + 31 +0.0 + 0 +LINE + 5 +EFC + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4846.41016 + 30 +0.0 + 11 +4075.0 + 21 +4846.41016 + 31 +0.0 + 0 +LINE + 5 +EFD + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4846.41016 + 30 +0.0 + 11 +17050.0 + 21 +4846.41016 + 31 +0.0 + 0 +LINE + 5 +EFE + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4868.060795 + 30 +0.0 + 11 +4112.5 + 21 +4868.060795 + 31 +0.0 + 0 +LINE + 5 +EFF + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4868.060795 + 30 +0.0 + 11 +17012.5 + 21 +4868.060795 + 31 +0.0 + 0 +LINE + 5 +F00 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4868.060795 + 30 +0.0 + 11 +17070.0 + 21 +4868.060795 + 31 +0.0 + 0 +LINE + 5 +F01 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4889.71143 + 30 +0.0 + 11 +4075.0 + 21 +4889.71143 + 31 +0.0 + 0 +LINE + 5 +F02 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4889.71143 + 30 +0.0 + 11 +17050.0 + 21 +4889.71143 + 31 +0.0 + 0 +LINE + 5 +F03 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4911.362065 + 30 +0.0 + 11 +4112.5 + 21 +4911.362065 + 31 +0.0 + 0 +LINE + 5 +F04 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4911.362065 + 30 +0.0 + 11 +17012.5 + 21 +4911.362065 + 31 +0.0 + 0 +LINE + 5 +F05 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4911.362065 + 30 +0.0 + 11 +17070.0 + 21 +4911.362065 + 31 +0.0 + 0 +LINE + 5 +F06 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4933.0127 + 30 +0.0 + 11 +4075.0 + 21 +4933.0127 + 31 +0.0 + 0 +LINE + 5 +F07 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4933.0127 + 30 +0.0 + 11 +17050.0 + 21 +4933.0127 + 31 +0.0 + 0 +LINE + 5 +F08 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4954.663335 + 30 +0.0 + 11 +4112.5 + 21 +4954.663335 + 31 +0.0 + 0 +LINE + 5 +F09 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4954.663335 + 30 +0.0 + 11 +17012.5 + 21 +4954.663335 + 31 +0.0 + 0 +LINE + 5 +F0A + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4954.663335 + 30 +0.0 + 11 +17070.0 + 21 +4954.663335 + 31 +0.0 + 0 +LINE + 5 +F0B + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4976.31397 + 30 +0.0 + 11 +4075.0 + 21 +4976.31397 + 31 +0.0 + 0 +LINE + 5 +F0C + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4976.31397 + 30 +0.0 + 11 +17050.0 + 21 +4976.31397 + 31 +0.0 + 0 +LINE + 5 +F0D + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4997.964605 + 30 +0.0 + 11 +4112.5 + 21 +4997.964605 + 31 +0.0 + 0 +LINE + 5 +F0E + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4997.964605 + 30 +0.0 + 11 +17012.5 + 21 +4997.964605 + 31 +0.0 + 0 +LINE + 5 +F0F + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4997.964605 + 30 +0.0 + 11 +17070.0 + 21 +4997.964605 + 31 +0.0 + 0 +LINE + 5 +F10 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5019.61524 + 30 +0.0 + 11 +4075.0 + 21 +5019.61524 + 31 +0.0 + 0 +LINE + 5 +F11 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5019.61524 + 30 +0.0 + 11 +17050.0 + 21 +5019.61524 + 31 +0.0 + 0 +LINE + 5 +F12 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5041.265875 + 30 +0.0 + 11 +4112.5 + 21 +5041.265875 + 31 +0.0 + 0 +LINE + 5 +F13 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5041.265875 + 30 +0.0 + 11 +17012.5 + 21 +5041.265875 + 31 +0.0 + 0 +LINE + 5 +F14 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5041.265875 + 30 +0.0 + 11 +17070.0 + 21 +5041.265875 + 31 +0.0 + 0 +LINE + 5 +F15 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5062.91651 + 30 +0.0 + 11 +4075.0 + 21 +5062.91651 + 31 +0.0 + 0 +LINE + 5 +F16 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5062.91651 + 30 +0.0 + 11 +17050.0 + 21 +5062.91651 + 31 +0.0 + 0 +LINE + 5 +F17 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5084.567145 + 30 +0.0 + 11 +4112.5 + 21 +5084.567145 + 31 +0.0 + 0 +LINE + 5 +F18 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5084.567145 + 30 +0.0 + 11 +17012.5 + 21 +5084.567145 + 31 +0.0 + 0 +LINE + 5 +F19 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5084.567145 + 30 +0.0 + 11 +17070.0 + 21 +5084.567145 + 31 +0.0 + 0 +LINE + 5 +F1A + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5106.21778 + 30 +0.0 + 11 +4075.0 + 21 +5106.21778 + 31 +0.0 + 0 +LINE + 5 +F1B + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5106.21778 + 30 +0.0 + 11 +17050.0 + 21 +5106.21778 + 31 +0.0 + 0 +LINE + 5 +F1C + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5127.868415 + 30 +0.0 + 11 +4112.5 + 21 +5127.868415 + 31 +0.0 + 0 +LINE + 5 +F1D + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5127.868415 + 30 +0.0 + 11 +17012.5 + 21 +5127.868415 + 31 +0.0 + 0 +LINE + 5 +F1E + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5127.868415 + 30 +0.0 + 11 +17070.0 + 21 +5127.868415 + 31 +0.0 + 0 +LINE + 5 +F1F + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5149.51905 + 30 +0.0 + 11 +4075.0 + 21 +5149.51905 + 31 +0.0 + 0 +LINE + 5 +F20 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5149.51905 + 30 +0.0 + 11 +17050.0 + 21 +5149.51905 + 31 +0.0 + 0 +LINE + 5 +F21 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5171.169685 + 30 +0.0 + 11 +4112.5 + 21 +5171.169685 + 31 +0.0 + 0 +LINE + 5 +F22 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5171.169685 + 30 +0.0 + 11 +17012.5 + 21 +5171.169685 + 31 +0.0 + 0 +LINE + 5 +F23 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5171.169685 + 30 +0.0 + 11 +17070.0 + 21 +5171.169685 + 31 +0.0 + 0 +LINE + 5 +F24 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5192.82032 + 30 +0.0 + 11 +4075.0 + 21 +5192.82032 + 31 +0.0 + 0 +LINE + 5 +F25 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5192.82032 + 30 +0.0 + 11 +17050.0 + 21 +5192.82032 + 31 +0.0 + 0 +LINE + 5 +F26 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5214.470955 + 30 +0.0 + 11 +4112.5 + 21 +5214.470955 + 31 +0.0 + 0 +LINE + 5 +F27 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5214.470955 + 30 +0.0 + 11 +17012.5 + 21 +5214.470955 + 31 +0.0 + 0 +LINE + 5 +F28 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5214.470955 + 30 +0.0 + 11 +17070.0 + 21 +5214.470955 + 31 +0.0 + 0 +LINE + 5 +F29 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5236.12159 + 30 +0.0 + 11 +4075.0 + 21 +5236.12159 + 31 +0.0 + 0 +LINE + 5 +F2A + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5236.12159 + 30 +0.0 + 11 +17050.0 + 21 +5236.12159 + 31 +0.0 + 0 +LINE + 5 +F2B + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5257.772225 + 30 +0.0 + 11 +4112.5 + 21 +5257.772225 + 31 +0.0 + 0 +LINE + 5 +F2C + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5257.772225 + 30 +0.0 + 11 +17012.5 + 21 +5257.772225 + 31 +0.0 + 0 +LINE + 5 +F2D + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5257.772225 + 30 +0.0 + 11 +17070.0 + 21 +5257.772225 + 31 +0.0 + 0 +LINE + 5 +F2E + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5279.42286 + 30 +0.0 + 11 +4075.0 + 21 +5279.42286 + 31 +0.0 + 0 +LINE + 5 +F2F + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5279.42286 + 30 +0.0 + 11 +17050.0 + 21 +5279.42286 + 31 +0.0 + 0 +LINE + 5 +F30 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5301.073495 + 30 +0.0 + 11 +4112.5 + 21 +5301.073495 + 31 +0.0 + 0 +LINE + 5 +F31 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5301.073495 + 30 +0.0 + 11 +17012.5 + 21 +5301.073495 + 31 +0.0 + 0 +LINE + 5 +F32 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5301.073495 + 30 +0.0 + 11 +17070.0 + 21 +5301.073495 + 31 +0.0 + 0 +LINE + 5 +F33 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5322.72413 + 30 +0.0 + 11 +4075.0 + 21 +5322.72413 + 31 +0.0 + 0 +LINE + 5 +F34 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5322.72413 + 30 +0.0 + 11 +17050.0 + 21 +5322.72413 + 31 +0.0 + 0 +LINE + 5 +F35 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5344.374765 + 30 +0.0 + 11 +4112.5 + 21 +5344.374765 + 31 +0.0 + 0 +LINE + 5 +F36 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5344.374765 + 30 +0.0 + 11 +17012.5 + 21 +5344.374765 + 31 +0.0 + 0 +LINE + 5 +F37 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5344.374765 + 30 +0.0 + 11 +17070.0 + 21 +5344.374765 + 31 +0.0 + 0 +LINE + 5 +F38 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5366.0254 + 30 +0.0 + 11 +4075.0 + 21 +5366.0254 + 31 +0.0 + 0 +LINE + 5 +F39 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5366.0254 + 30 +0.0 + 11 +17050.0 + 21 +5366.0254 + 31 +0.0 + 0 +LINE + 5 +F3A + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5387.676035 + 30 +0.0 + 11 +4112.5 + 21 +5387.676035 + 31 +0.0 + 0 +LINE + 5 +F3B + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5387.676035 + 30 +0.0 + 11 +17012.5 + 21 +5387.676035 + 31 +0.0 + 0 +LINE + 5 +F3C + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5387.676035 + 30 +0.0 + 11 +17070.0 + 21 +5387.676035 + 31 +0.0 + 0 +LINE + 5 +F3D + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5409.32667 + 30 +0.0 + 11 +4075.0 + 21 +5409.32667 + 31 +0.0 + 0 +LINE + 5 +F3E + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5409.32667 + 30 +0.0 + 11 +17050.0 + 21 +5409.32667 + 31 +0.0 + 0 +LINE + 5 +F3F + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5430.977305 + 30 +0.0 + 11 +4112.5 + 21 +5430.977305 + 31 +0.0 + 0 +LINE + 5 +F40 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5430.977305 + 30 +0.0 + 11 +17012.5 + 21 +5430.977305 + 31 +0.0 + 0 +LINE + 5 +F41 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5430.977305 + 30 +0.0 + 11 +17070.0 + 21 +5430.977305 + 31 +0.0 + 0 +LINE + 5 +F42 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5452.62794 + 30 +0.0 + 11 +4075.0 + 21 +5452.62794 + 31 +0.0 + 0 +LINE + 5 +F43 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5452.62794 + 30 +0.0 + 11 +17050.0 + 21 +5452.62794 + 31 +0.0 + 0 +LINE + 5 +F44 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5474.278575 + 30 +0.0 + 11 +4112.5 + 21 +5474.278575 + 31 +0.0 + 0 +LINE + 5 +F45 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5474.278575 + 30 +0.0 + 11 +17012.5 + 21 +5474.278575 + 31 +0.0 + 0 +LINE + 5 +F46 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5474.278575 + 30 +0.0 + 11 +17070.0 + 21 +5474.278575 + 31 +0.0 + 0 +LINE + 5 +F47 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5495.92921 + 30 +0.0 + 11 +4075.0 + 21 +5495.92921 + 31 +0.0 + 0 +LINE + 5 +F48 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5495.92921 + 30 +0.0 + 11 +17050.0 + 21 +5495.92921 + 31 +0.0 + 0 +LINE + 5 +F49 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5517.579845 + 30 +0.0 + 11 +4112.5 + 21 +5517.579845 + 31 +0.0 + 0 +LINE + 5 +F4A + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5517.579845 + 30 +0.0 + 11 +17012.5 + 21 +5517.579845 + 31 +0.0 + 0 +LINE + 5 +F4B + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5517.579845 + 30 +0.0 + 11 +17070.0 + 21 +5517.579845 + 31 +0.0 + 0 +LINE + 5 +F4C + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5539.23048 + 30 +0.0 + 11 +4075.0 + 21 +5539.23048 + 31 +0.0 + 0 +LINE + 5 +F4D + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5539.23048 + 30 +0.0 + 11 +17050.0 + 21 +5539.23048 + 31 +0.0 + 0 +LINE + 5 +F4E + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5560.881115 + 30 +0.0 + 11 +4112.5 + 21 +5560.881115 + 31 +0.0 + 0 +LINE + 5 +F4F + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5560.881115 + 30 +0.0 + 11 +17012.5 + 21 +5560.881115 + 31 +0.0 + 0 +LINE + 5 +F50 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5560.881115 + 30 +0.0 + 11 +17070.0 + 21 +5560.881115 + 31 +0.0 + 0 +LINE + 5 +F51 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5582.53175 + 30 +0.0 + 11 +4075.0 + 21 +5582.53175 + 31 +0.0 + 0 +LINE + 5 +F52 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5582.53175 + 30 +0.0 + 11 +17050.0 + 21 +5582.53175 + 31 +0.0 + 0 +LINE + 5 +F53 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5604.182385 + 30 +0.0 + 11 +4112.5 + 21 +5604.182385 + 31 +0.0 + 0 +LINE + 5 +F54 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5604.182385 + 30 +0.0 + 11 +17012.5 + 21 +5604.182385 + 31 +0.0 + 0 +LINE + 5 +F55 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5604.182385 + 30 +0.0 + 11 +17070.0 + 21 +5604.182385 + 31 +0.0 + 0 +LINE + 5 +F56 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5625.83302 + 30 +0.0 + 11 +4075.0 + 21 +5625.83302 + 31 +0.0 + 0 +LINE + 5 +F57 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5625.83302 + 30 +0.0 + 11 +17050.0 + 21 +5625.83302 + 31 +0.0 + 0 +LINE + 5 +F58 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5647.483655 + 30 +0.0 + 11 +4112.5 + 21 +5647.483655 + 31 +0.0 + 0 +LINE + 5 +F59 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5647.483655 + 30 +0.0 + 11 +17012.5 + 21 +5647.483655 + 31 +0.0 + 0 +LINE + 5 +F5A + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5647.483655 + 30 +0.0 + 11 +17070.0 + 21 +5647.483655 + 31 +0.0 + 0 +LINE + 5 +F5B + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5669.13429 + 30 +0.0 + 11 +4075.0 + 21 +5669.13429 + 31 +0.0 + 0 +LINE + 5 +F5C + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5669.13429 + 30 +0.0 + 11 +17050.0 + 21 +5669.13429 + 31 +0.0 + 0 +LINE + 5 +F5D + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5690.784925 + 30 +0.0 + 11 +4112.5 + 21 +5690.784925 + 31 +0.0 + 0 +LINE + 5 +F5E + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5690.784925 + 30 +0.0 + 11 +17012.5 + 21 +5690.784925 + 31 +0.0 + 0 +LINE + 5 +F5F + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5690.784925 + 30 +0.0 + 11 +17070.0 + 21 +5690.784925 + 31 +0.0 + 0 +LINE + 5 +F60 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +5712.43556 + 30 +0.0 + 11 +4075.0 + 21 +5712.43556 + 31 +0.0 + 0 +LINE + 5 +F61 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +5712.43556 + 30 +0.0 + 11 +17050.0 + 21 +5712.43556 + 31 +0.0 + 0 +LINE + 5 +F62 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +5734.086195 + 30 +0.0 + 11 +4112.5 + 21 +5734.086195 + 31 +0.0 + 0 +LINE + 5 +F63 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +5734.086195 + 30 +0.0 + 11 +17012.5 + 21 +5734.086195 + 31 +0.0 + 0 +LINE + 5 +F64 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +5734.086195 + 30 +0.0 + 11 +17070.0 + 21 +5734.086195 + 31 +0.0 + 0 +LINE + 5 +F65 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4175.240475 + 30 +0.0 + 11 +4112.5 + 21 +4175.240475 + 31 +0.0 + 0 +LINE + 5 +F66 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4175.240475 + 30 +0.0 + 11 +17012.5 + 21 +4175.240475 + 31 +0.0 + 0 +LINE + 5 +F67 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4175.240475 + 30 +0.0 + 11 +17070.0 + 21 +4175.240475 + 31 +0.0 + 0 +LINE + 5 +F68 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4153.58984 + 30 +0.0 + 11 +4075.0 + 21 +4153.58984 + 31 +0.0 + 0 +LINE + 5 +F69 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4153.58984 + 30 +0.0 + 11 +17050.0 + 21 +4153.58984 + 31 +0.0 + 0 +LINE + 5 +F6A + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4131.939205 + 30 +0.0 + 11 +4112.5 + 21 +4131.939205 + 31 +0.0 + 0 +LINE + 5 +F6B + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4131.939205 + 30 +0.0 + 11 +17012.5 + 21 +4131.939205 + 31 +0.0 + 0 +LINE + 5 +F6C + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4131.939205 + 30 +0.0 + 11 +17070.0 + 21 +4131.939205 + 31 +0.0 + 0 +LINE + 5 +F6D + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4110.28857 + 30 +0.0 + 11 +4075.0 + 21 +4110.28857 + 31 +0.0 + 0 +LINE + 5 +F6E + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4110.28857 + 30 +0.0 + 11 +17050.0 + 21 +4110.28857 + 31 +0.0 + 0 +LINE + 5 +F6F + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4088.637935 + 30 +0.0 + 11 +4112.5 + 21 +4088.637935 + 31 +0.0 + 0 +LINE + 5 +F70 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4088.637935 + 30 +0.0 + 11 +17012.5 + 21 +4088.637935 + 31 +0.0 + 0 +LINE + 5 +F71 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4088.637935 + 30 +0.0 + 11 +17070.0 + 21 +4088.637935 + 31 +0.0 + 0 +LINE + 5 +F72 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4066.9873 + 30 +0.0 + 11 +4075.0 + 21 +4066.9873 + 31 +0.0 + 0 +LINE + 5 +F73 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4066.9873 + 30 +0.0 + 11 +17050.0 + 21 +4066.9873 + 31 +0.0 + 0 +LINE + 5 +F74 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4045.336665 + 30 +0.0 + 11 +4112.5 + 21 +4045.336665 + 31 +0.0 + 0 +LINE + 5 +F75 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4045.336665 + 30 +0.0 + 11 +17012.5 + 21 +4045.336665 + 31 +0.0 + 0 +LINE + 5 +F76 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4045.336665 + 30 +0.0 + 11 +17070.0 + 21 +4045.336665 + 31 +0.0 + 0 +LINE + 5 +F77 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4023.68603 + 30 +0.0 + 11 +4075.0 + 21 +4023.68603 + 31 +0.0 + 0 +LINE + 5 +F78 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +4023.68603 + 30 +0.0 + 11 +17050.0 + 21 +4023.68603 + 31 +0.0 + 0 +LINE + 5 +F79 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4002.035395 + 30 +0.0 + 11 +4112.5 + 21 +4002.035395 + 31 +0.0 + 0 +LINE + 5 +F7A + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +4002.035395 + 30 +0.0 + 11 +17012.5 + 21 +4002.035395 + 31 +0.0 + 0 +LINE + 5 +F7B + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +4002.035395 + 30 +0.0 + 11 +17070.0 + 21 +4002.035395 + 31 +0.0 + 0 +LINE + 5 +F7C + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +3980.38476 + 30 +0.0 + 11 +4075.0 + 21 +3980.38476 + 31 +0.0 + 0 +LINE + 5 +F7D + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +3980.38476 + 30 +0.0 + 11 +17050.0 + 21 +3980.38476 + 31 +0.0 + 0 +LINE + 5 +F7E + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +3958.734125 + 30 +0.0 + 11 +4112.5 + 21 +3958.734125 + 31 +0.0 + 0 +LINE + 5 +F7F + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +3958.734125 + 30 +0.0 + 11 +17012.5 + 21 +3958.734125 + 31 +0.0 + 0 +LINE + 5 +F80 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +3958.734125 + 30 +0.0 + 11 +17070.0 + 21 +3958.734125 + 31 +0.0 + 0 +LINE + 5 +F81 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +3937.08349 + 30 +0.0 + 11 +4075.0 + 21 +3937.08349 + 31 +0.0 + 0 +LINE + 5 +F82 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +3937.08349 + 30 +0.0 + 11 +17050.0 + 21 +3937.08349 + 31 +0.0 + 0 +LINE + 5 +F83 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +3915.432855 + 30 +0.0 + 11 +4112.5 + 21 +3915.432855 + 31 +0.0 + 0 +LINE + 5 +F84 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +3915.432855 + 30 +0.0 + 11 +17012.5 + 21 +3915.432855 + 31 +0.0 + 0 +LINE + 5 +F85 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +3915.432855 + 30 +0.0 + 11 +17070.0 + 21 +3915.432855 + 31 +0.0 + 0 +LINE + 5 +F86 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +3893.78222 + 30 +0.0 + 11 +4075.0 + 21 +3893.78222 + 31 +0.0 + 0 +LINE + 5 +F87 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +3893.78222 + 30 +0.0 + 11 +17050.0 + 21 +3893.78222 + 31 +0.0 + 0 +LINE + 5 +F88 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +3872.131585 + 30 +0.0 + 11 +4112.5 + 21 +3872.131585 + 31 +0.0 + 0 +LINE + 5 +F89 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +3872.131585 + 30 +0.0 + 11 +17012.5 + 21 +3872.131585 + 31 +0.0 + 0 +LINE + 5 +F8A + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +3872.131585 + 30 +0.0 + 11 +17070.0 + 21 +3872.131585 + 31 +0.0 + 0 +LINE + 5 +F8B + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +3850.48095 + 30 +0.0 + 11 +4075.0 + 21 +3850.48095 + 31 +0.0 + 0 +LINE + 5 +F8C + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +3850.48095 + 30 +0.0 + 11 +17050.0 + 21 +3850.48095 + 31 +0.0 + 0 +LINE + 5 +F8D + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +3828.830315 + 30 +0.0 + 11 +4112.5 + 21 +3828.830315 + 31 +0.0 + 0 +LINE + 5 +F8E + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +3828.830315 + 30 +0.0 + 11 +17012.5 + 21 +3828.830315 + 31 +0.0 + 0 +LINE + 5 +F8F + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +3828.830315 + 30 +0.0 + 11 +17070.0 + 21 +3828.830315 + 31 +0.0 + 0 +LINE + 5 +F90 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +3807.17968 + 30 +0.0 + 11 +4075.0 + 21 +3807.17968 + 31 +0.0 + 0 +LINE + 5 +F91 + 8 +0 + 62 + 0 + 10 +17025.0 + 20 +3807.17968 + 30 +0.0 + 11 +17050.0 + 21 +3807.17968 + 31 +0.0 + 0 +LINE + 5 +F92 + 8 +0 + 62 + 0 + 10 +16990.0 + 20 +3785.529045 + 30 +0.0 + 11 +17012.5 + 21 +3785.529045 + 31 +0.0 + 0 +LINE + 5 +F93 + 8 +0 + 62 + 0 + 10 +17062.5 + 20 +3785.529045 + 30 +0.0 + 11 +17070.0 + 21 +3785.529045 + 31 +0.0 + 0 +LINE + 5 +F94 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5712.435564 + 30 +0.0 + 11 +4112.499998 + 21 +5734.086199 + 31 +0.0 + 0 +LINE + 5 +F95 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5669.134294 + 30 +0.0 + 11 +4112.499998 + 21 +5690.784929 + 31 +0.0 + 0 +LINE + 5 +F96 + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5734.086199 + 30 +0.0 + 11 +4084.085663 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +F97 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5625.833024 + 30 +0.0 + 11 +4112.499998 + 21 +5647.483659 + 31 +0.0 + 0 +LINE + 5 +F98 + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5690.784929 + 30 +0.0 + 11 +4074.999998 + 21 +5712.435564 + 31 +0.0 + 0 +LINE + 5 +F99 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5582.531754 + 30 +0.0 + 11 +4112.499998 + 21 +5604.182389 + 31 +0.0 + 0 +LINE + 5 +F9A + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5647.483659 + 30 +0.0 + 11 +4074.999998 + 21 +5669.134294 + 31 +0.0 + 0 +LINE + 5 +F9B + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5712.435564 + 30 +0.0 + 11 +4045.0 + 21 +5721.095815 + 31 +0.0 + 0 +LINE + 5 +F9C + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5539.230483 + 30 +0.0 + 11 +4112.499998 + 21 +5560.881119 + 31 +0.0 + 0 +LINE + 5 +F9D + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5604.182389 + 30 +0.0 + 11 +4074.999998 + 21 +5625.833024 + 31 +0.0 + 0 +LINE + 5 +F9E + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5669.134294 + 30 +0.0 + 11 +4045.0 + 21 +5677.794545 + 31 +0.0 + 0 +LINE + 5 +F9F + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5495.929213 + 30 +0.0 + 11 +4112.499998 + 21 +5517.579848 + 31 +0.0 + 0 +LINE + 5 +FA0 + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5560.881119 + 30 +0.0 + 11 +4074.999998 + 21 +5582.531754 + 31 +0.0 + 0 +LINE + 5 +FA1 + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5625.833024 + 30 +0.0 + 11 +4045.0 + 21 +5634.493275 + 31 +0.0 + 0 +LINE + 5 +FA2 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5452.627943 + 30 +0.0 + 11 +4112.499998 + 21 +5474.278578 + 31 +0.0 + 0 +LINE + 5 +FA3 + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5517.579848 + 30 +0.0 + 11 +4074.999998 + 21 +5539.230484 + 31 +0.0 + 0 +LINE + 5 +FA4 + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5582.531754 + 30 +0.0 + 11 +4045.0 + 21 +5591.192005 + 31 +0.0 + 0 +LINE + 5 +FA5 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5409.326673 + 30 +0.0 + 11 +4112.499998 + 21 +5430.977308 + 31 +0.0 + 0 +LINE + 5 +FA6 + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5474.278578 + 30 +0.0 + 11 +4074.999998 + 21 +5495.929213 + 31 +0.0 + 0 +LINE + 5 +FA7 + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5539.230484 + 30 +0.0 + 11 +4045.0 + 21 +5547.890735 + 31 +0.0 + 0 +LINE + 5 +FA8 + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5366.025403 + 30 +0.0 + 11 +4112.499998 + 21 +5387.676038 + 31 +0.0 + 0 +LINE + 5 +FA9 + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5430.977308 + 30 +0.0 + 11 +4074.999998 + 21 +5452.627943 + 31 +0.0 + 0 +LINE + 5 +FAA + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5495.929213 + 30 +0.0 + 11 +4045.0 + 21 +5504.589465 + 31 +0.0 + 0 +LINE + 5 +FAB + 8 +0 + 62 + 0 + 10 +4124.999998 + 20 +5322.724133 + 30 +0.0 + 11 +4112.499998 + 21 +5344.374768 + 31 +0.0 + 0 +LINE + 5 +FAC + 8 +0 + 62 + 0 + 10 +4087.499998 + 20 +5387.676038 + 30 +0.0 + 11 +4074.999998 + 21 +5409.326673 + 31 +0.0 + 0 +LINE + 5 +FAD + 8 +0 + 62 + 0 + 10 +4049.999998 + 20 +5452.627943 + 30 +0.0 + 11 +4045.0 + 21 +5461.288195 + 31 +0.0 + 0 +LINE + 5 +FAE + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5279.422863 + 30 +0.0 + 11 +4112.499999 + 21 +5301.073498 + 31 +0.0 + 0 +LINE + 5 +FAF + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5344.374768 + 30 +0.0 + 11 +4074.999999 + 21 +5366.025403 + 31 +0.0 + 0 +LINE + 5 +FB0 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5409.326673 + 30 +0.0 + 11 +4045.0 + 21 +5417.986925 + 31 +0.0 + 0 +LINE + 5 +FB1 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5236.121592 + 30 +0.0 + 11 +4112.499999 + 21 +5257.772228 + 31 +0.0 + 0 +LINE + 5 +FB2 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5301.073498 + 30 +0.0 + 11 +4074.999999 + 21 +5322.724133 + 31 +0.0 + 0 +LINE + 5 +FB3 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5366.025403 + 30 +0.0 + 11 +4045.0 + 21 +5374.685655 + 31 +0.0 + 0 +LINE + 5 +FB4 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5192.820322 + 30 +0.0 + 11 +4112.499999 + 21 +5214.470957 + 31 +0.0 + 0 +LINE + 5 +FB5 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5257.772228 + 30 +0.0 + 11 +4074.999999 + 21 +5279.422863 + 31 +0.0 + 0 +LINE + 5 +FB6 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5322.724133 + 30 +0.0 + 11 +4045.0 + 21 +5331.384385 + 31 +0.0 + 0 +LINE + 5 +FB7 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5149.519052 + 30 +0.0 + 11 +4112.499999 + 21 +5171.169687 + 31 +0.0 + 0 +LINE + 5 +FB8 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5214.470957 + 30 +0.0 + 11 +4074.999999 + 21 +5236.121593 + 31 +0.0 + 0 +LINE + 5 +FB9 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5279.422863 + 30 +0.0 + 11 +4045.0 + 21 +5288.083115 + 31 +0.0 + 0 +LINE + 5 +FBA + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5106.217782 + 30 +0.0 + 11 +4112.499999 + 21 +5127.868417 + 31 +0.0 + 0 +LINE + 5 +FBB + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5171.169687 + 30 +0.0 + 11 +4074.999999 + 21 +5192.820322 + 31 +0.0 + 0 +LINE + 5 +FBC + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5236.121593 + 30 +0.0 + 11 +4045.0 + 21 +5244.781845 + 31 +0.0 + 0 +LINE + 5 +FBD + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5062.916512 + 30 +0.0 + 11 +4112.499999 + 21 +5084.567147 + 31 +0.0 + 0 +LINE + 5 +FBE + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5127.868417 + 30 +0.0 + 11 +4074.999999 + 21 +5149.519052 + 31 +0.0 + 0 +LINE + 5 +FBF + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5192.820322 + 30 +0.0 + 11 +4045.0 + 21 +5201.480575 + 31 +0.0 + 0 +LINE + 5 +FC0 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +5019.615242 + 30 +0.0 + 11 +4112.499999 + 21 +5041.265877 + 31 +0.0 + 0 +LINE + 5 +FC1 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5084.567147 + 30 +0.0 + 11 +4074.999999 + 21 +5106.217782 + 31 +0.0 + 0 +LINE + 5 +FC2 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5149.519052 + 30 +0.0 + 11 +4045.0 + 21 +5158.179305 + 31 +0.0 + 0 +LINE + 5 +FC3 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +4976.313972 + 30 +0.0 + 11 +4112.499999 + 21 +4997.964607 + 31 +0.0 + 0 +LINE + 5 +FC4 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +5041.265877 + 30 +0.0 + 11 +4074.999999 + 21 +5062.916512 + 31 +0.0 + 0 +LINE + 5 +FC5 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5106.217782 + 30 +0.0 + 11 +4045.0 + 21 +5114.878035 + 31 +0.0 + 0 +LINE + 5 +FC6 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +4933.012701 + 30 +0.0 + 11 +4112.499999 + 21 +4954.663337 + 31 +0.0 + 0 +LINE + 5 +FC7 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +4997.964607 + 30 +0.0 + 11 +4074.999999 + 21 +5019.615242 + 31 +0.0 + 0 +LINE + 5 +FC8 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5062.916512 + 30 +0.0 + 11 +4045.0 + 21 +5071.576765 + 31 +0.0 + 0 +LINE + 5 +FC9 + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +4889.711431 + 30 +0.0 + 11 +4112.499999 + 21 +4911.362066 + 31 +0.0 + 0 +LINE + 5 +FCA + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +4954.663337 + 30 +0.0 + 11 +4074.999999 + 21 +4976.313972 + 31 +0.0 + 0 +LINE + 5 +FCB + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +5019.615242 + 30 +0.0 + 11 +4045.0 + 21 +5028.275495 + 31 +0.0 + 0 +LINE + 5 +FCC + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +4846.410161 + 30 +0.0 + 11 +4112.499999 + 21 +4868.060796 + 31 +0.0 + 0 +LINE + 5 +FCD + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +4911.362066 + 30 +0.0 + 11 +4074.999999 + 21 +4933.012702 + 31 +0.0 + 0 +LINE + 5 +FCE + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +4976.313972 + 30 +0.0 + 11 +4045.0 + 21 +4984.974225 + 31 +0.0 + 0 +LINE + 5 +FCF + 8 +0 + 62 + 0 + 10 +4124.999999 + 20 +4803.108891 + 30 +0.0 + 11 +4112.499999 + 21 +4824.759526 + 31 +0.0 + 0 +LINE + 5 +FD0 + 8 +0 + 62 + 0 + 10 +4087.499999 + 20 +4868.060796 + 30 +0.0 + 11 +4074.999999 + 21 +4889.711431 + 31 +0.0 + 0 +LINE + 5 +FD1 + 8 +0 + 62 + 0 + 10 +4049.999999 + 20 +4933.012702 + 30 +0.0 + 11 +4045.0 + 21 +4941.672955 + 31 +0.0 + 0 +LINE + 5 +FD2 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4759.807621 + 30 +0.0 + 11 +4112.5 + 21 +4781.458256 + 31 +0.0 + 0 +LINE + 5 +FD3 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4824.759526 + 30 +0.0 + 11 +4075.0 + 21 +4846.410161 + 31 +0.0 + 0 +LINE + 5 +FD4 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4889.711431 + 30 +0.0 + 11 +4045.0 + 21 +4898.371685 + 31 +0.0 + 0 +LINE + 5 +FD5 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4716.506351 + 30 +0.0 + 11 +4112.5 + 21 +4738.156986 + 31 +0.0 + 0 +LINE + 5 +FD6 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4781.458256 + 30 +0.0 + 11 +4075.0 + 21 +4803.108891 + 31 +0.0 + 0 +LINE + 5 +FD7 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4846.410161 + 30 +0.0 + 11 +4045.0 + 21 +4855.070415 + 31 +0.0 + 0 +LINE + 5 +FD8 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4673.205081 + 30 +0.0 + 11 +4112.5 + 21 +4694.855716 + 31 +0.0 + 0 +LINE + 5 +FD9 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4738.156986 + 30 +0.0 + 11 +4075.0 + 21 +4759.807621 + 31 +0.0 + 0 +LINE + 5 +FDA + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4803.108891 + 30 +0.0 + 11 +4045.0 + 21 +4811.769145 + 31 +0.0 + 0 +LINE + 5 +FDB + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4629.90381 + 30 +0.0 + 11 +4112.5 + 21 +4651.554446 + 31 +0.0 + 0 +LINE + 5 +FDC + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4694.855716 + 30 +0.0 + 11 +4075.0 + 21 +4716.506351 + 31 +0.0 + 0 +LINE + 5 +FDD + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4759.807621 + 30 +0.0 + 11 +4045.0 + 21 +4768.467875 + 31 +0.0 + 0 +LINE + 5 +FDE + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4586.60254 + 30 +0.0 + 11 +4112.5 + 21 +4608.253175 + 31 +0.0 + 0 +LINE + 5 +FDF + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4651.554446 + 30 +0.0 + 11 +4075.0 + 21 +4673.205081 + 31 +0.0 + 0 +LINE + 5 +FE0 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4716.506351 + 30 +0.0 + 11 +4045.0 + 21 +4725.166605 + 31 +0.0 + 0 +LINE + 5 +FE1 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4543.30127 + 30 +0.0 + 11 +4112.5 + 21 +4564.951905 + 31 +0.0 + 0 +LINE + 5 +FE2 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4608.253175 + 30 +0.0 + 11 +4075.0 + 21 +4629.903811 + 31 +0.0 + 0 +LINE + 5 +FE3 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4673.205081 + 30 +0.0 + 11 +4045.0 + 21 +4681.865335 + 31 +0.0 + 0 +LINE + 5 +FE4 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4500.0 + 30 +0.0 + 11 +4112.5 + 21 +4521.650635 + 31 +0.0 + 0 +LINE + 5 +FE5 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4564.951905 + 30 +0.0 + 11 +4075.0 + 21 +4586.60254 + 31 +0.0 + 0 +LINE + 5 +FE6 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4629.903811 + 30 +0.0 + 11 +4045.0 + 21 +4638.564065 + 31 +0.0 + 0 +LINE + 5 +FE7 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4456.69873 + 30 +0.0 + 11 +4112.5 + 21 +4478.349365 + 31 +0.0 + 0 +LINE + 5 +FE8 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4521.650635 + 30 +0.0 + 11 +4075.0 + 21 +4543.30127 + 31 +0.0 + 0 +LINE + 5 +FE9 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4586.60254 + 30 +0.0 + 11 +4045.0 + 21 +4595.262795 + 31 +0.0 + 0 +LINE + 5 +FEA + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4413.39746 + 30 +0.0 + 11 +4112.5 + 21 +4435.048095 + 31 +0.0 + 0 +LINE + 5 +FEB + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4478.349365 + 30 +0.0 + 11 +4075.0 + 21 +4500.0 + 31 +0.0 + 0 +LINE + 5 +FEC + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4543.30127 + 30 +0.0 + 11 +4045.0 + 21 +4551.961525 + 31 +0.0 + 0 +LINE + 5 +FED + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4370.09619 + 30 +0.0 + 11 +4112.5 + 21 +4391.746825 + 31 +0.0 + 0 +LINE + 5 +FEE + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4435.048095 + 30 +0.0 + 11 +4075.0 + 21 +4456.69873 + 31 +0.0 + 0 +LINE + 5 +FEF + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4500.0 + 30 +0.0 + 11 +4045.0 + 21 +4508.660255 + 31 +0.0 + 0 +LINE + 5 +FF0 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4326.79492 + 30 +0.0 + 11 +4112.5 + 21 +4348.445555 + 31 +0.0 + 0 +LINE + 5 +FF1 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4391.746825 + 30 +0.0 + 11 +4075.0 + 21 +4413.39746 + 31 +0.0 + 0 +LINE + 5 +FF2 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4456.69873 + 30 +0.0 + 11 +4045.0 + 21 +4465.358985 + 31 +0.0 + 0 +LINE + 5 +FF3 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4283.49365 + 30 +0.0 + 11 +4112.5 + 21 +4305.144284 + 31 +0.0 + 0 +LINE + 5 +FF4 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4348.445555 + 30 +0.0 + 11 +4075.0 + 21 +4370.09619 + 31 +0.0 + 0 +LINE + 5 +FF5 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4413.39746 + 30 +0.0 + 11 +4045.0 + 21 +4422.057715 + 31 +0.0 + 0 +LINE + 5 +FF6 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4240.19238 + 30 +0.0 + 11 +4112.5 + 21 +4261.843014 + 31 +0.0 + 0 +LINE + 5 +FF7 + 8 +0 + 62 + 0 + 10 +4087.5 + 20 +4305.144284 + 30 +0.0 + 11 +4075.0 + 21 +4326.79492 + 31 +0.0 + 0 +LINE + 5 +FF8 + 8 +0 + 62 + 0 + 10 +4050.0 + 20 +4370.09619 + 30 +0.0 + 11 +4045.0 + 21 +4378.756445 + 31 +0.0 + 0 +LINE + 5 +FF9 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4196.89111 + 30 +0.0 + 11 +4112.500001 + 21 +4218.541744 + 31 +0.0 + 0 +LINE + 5 +FFA + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4261.843014 + 30 +0.0 + 11 +4075.000001 + 21 +4283.493649 + 31 +0.0 + 0 +LINE + 5 +FFB + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4326.79492 + 30 +0.0 + 11 +4045.0 + 21 +4335.455175 + 31 +0.0 + 0 +LINE + 5 +FFC + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4153.58984 + 30 +0.0 + 11 +4112.500001 + 21 +4175.240474 + 31 +0.0 + 0 +LINE + 5 +FFD + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4218.541744 + 30 +0.0 + 11 +4075.000001 + 21 +4240.192379 + 31 +0.0 + 0 +LINE + 5 +FFE + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4283.493649 + 30 +0.0 + 11 +4045.0 + 21 +4292.153905 + 31 +0.0 + 0 +LINE + 5 +FFF + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4110.28857 + 30 +0.0 + 11 +4112.500001 + 21 +4131.939204 + 31 +0.0 + 0 +LINE + 5 +1000 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4175.240474 + 30 +0.0 + 11 +4075.000001 + 21 +4196.891109 + 31 +0.0 + 0 +LINE + 5 +1001 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4240.192379 + 30 +0.0 + 11 +4045.0 + 21 +4248.852635 + 31 +0.0 + 0 +LINE + 5 +1002 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4066.9873 + 30 +0.0 + 11 +4112.500001 + 21 +4088.637934 + 31 +0.0 + 0 +LINE + 5 +1003 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4131.939204 + 30 +0.0 + 11 +4075.000001 + 21 +4153.589839 + 31 +0.0 + 0 +LINE + 5 +1004 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4196.891109 + 30 +0.0 + 11 +4045.0 + 21 +4205.551365 + 31 +0.0 + 0 +LINE + 5 +1005 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +4023.68603 + 30 +0.0 + 11 +4112.500001 + 21 +4045.336664 + 31 +0.0 + 0 +LINE + 5 +1006 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4088.637934 + 30 +0.0 + 11 +4075.000001 + 21 +4110.288569 + 31 +0.0 + 0 +LINE + 5 +1007 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4153.589839 + 30 +0.0 + 11 +4045.0 + 21 +4162.250095 + 31 +0.0 + 0 +LINE + 5 +1008 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3980.38476 + 30 +0.0 + 11 +4112.500001 + 21 +4002.035393 + 31 +0.0 + 0 +LINE + 5 +1009 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4045.336664 + 30 +0.0 + 11 +4075.000001 + 21 +4066.987299 + 31 +0.0 + 0 +LINE + 5 +100A + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4110.288569 + 30 +0.0 + 11 +4045.0 + 21 +4118.948825 + 31 +0.0 + 0 +LINE + 5 +100B + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3937.08349 + 30 +0.0 + 11 +4112.500001 + 21 +3958.734123 + 31 +0.0 + 0 +LINE + 5 +100C + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +4002.035393 + 30 +0.0 + 11 +4075.000001 + 21 +4023.686029 + 31 +0.0 + 0 +LINE + 5 +100D + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4066.987299 + 30 +0.0 + 11 +4045.0 + 21 +4075.647555 + 31 +0.0 + 0 +LINE + 5 +100E + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3893.78222 + 30 +0.0 + 11 +4112.500001 + 21 +3915.432853 + 31 +0.0 + 0 +LINE + 5 +100F + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +3958.734123 + 30 +0.0 + 11 +4075.000001 + 21 +3980.384758 + 31 +0.0 + 0 +LINE + 5 +1010 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +4023.686029 + 30 +0.0 + 11 +4045.0 + 21 +4032.346285 + 31 +0.0 + 0 +LINE + 5 +1011 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3850.48095 + 30 +0.0 + 11 +4112.500001 + 21 +3872.131583 + 31 +0.0 + 0 +LINE + 5 +1012 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +3915.432853 + 30 +0.0 + 11 +4075.000001 + 21 +3937.083488 + 31 +0.0 + 0 +LINE + 5 +1013 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +3980.384758 + 30 +0.0 + 11 +4045.0 + 21 +3989.045015 + 31 +0.0 + 0 +LINE + 5 +1014 + 8 +0 + 62 + 0 + 10 +4125.0 + 20 +3807.17968 + 30 +0.0 + 11 +4112.500001 + 21 +3828.830313 + 31 +0.0 + 0 +LINE + 5 +1015 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +3872.131583 + 30 +0.0 + 11 +4075.000001 + 21 +3893.782218 + 31 +0.0 + 0 +LINE + 5 +1016 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +3937.083488 + 30 +0.0 + 11 +4045.0 + 21 +3945.743745 + 31 +0.0 + 0 +LINE + 5 +1017 + 8 +0 + 62 + 0 + 10 +4087.500001 + 20 +3828.830313 + 30 +0.0 + 11 +4075.000001 + 21 +3850.480948 + 31 +0.0 + 0 +LINE + 5 +1018 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +3893.782218 + 30 +0.0 + 11 +4045.0 + 21 +3902.442475 + 31 +0.0 + 0 +LINE + 5 +1019 + 8 +0 + 62 + 0 + 10 +4050.000001 + 20 +3850.480948 + 30 +0.0 + 11 +4045.0 + 21 +3859.141205 + 31 +0.0 + 0 +LINE + 5 +101A + 8 +0 + 62 + 0 + 10 +4050.000002 + 20 +3807.179678 + 30 +0.0 + 11 +4045.0 + 21 +3815.839935 + 31 +0.0 + 0 +LINE + 5 +101B + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +3807.179653 + 30 +0.0 + 11 +17012.499959 + 21 +3828.830288 + 31 +0.0 + 0 +LINE + 5 +101C + 8 +0 + 62 + 0 + 10 +17062.499959 + 20 +3785.529018 + 30 +0.0 + 11 +17049.999959 + 21 +3807.179653 + 31 +0.0 + 0 +LINE + 5 +101D + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +3850.480923 + 30 +0.0 + 11 +17012.499959 + 21 +3872.131559 + 31 +0.0 + 0 +LINE + 5 +101E + 8 +0 + 62 + 0 + 10 +17062.499959 + 20 +3828.830288 + 30 +0.0 + 11 +17049.999959 + 21 +3850.480923 + 31 +0.0 + 0 +LINE + 5 +101F + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +3893.782194 + 30 +0.0 + 11 +17012.499959 + 21 +3915.432829 + 31 +0.0 + 0 +LINE + 5 +1020 + 8 +0 + 62 + 0 + 10 +17062.499959 + 20 +3872.131558 + 30 +0.0 + 11 +17049.999959 + 21 +3893.782194 + 31 +0.0 + 0 +LINE + 5 +1021 + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +3937.083464 + 30 +0.0 + 11 +17012.499959 + 21 +3958.734099 + 31 +0.0 + 0 +LINE + 5 +1022 + 8 +0 + 62 + 0 + 10 +17062.499959 + 20 +3915.432829 + 30 +0.0 + 11 +17049.999959 + 21 +3937.083464 + 31 +0.0 + 0 +LINE + 5 +1023 + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +3980.384734 + 30 +0.0 + 11 +17012.499959 + 21 +4002.035369 + 31 +0.0 + 0 +LINE + 5 +1024 + 8 +0 + 62 + 0 + 10 +17062.499959 + 20 +3958.734099 + 30 +0.0 + 11 +17049.999959 + 21 +3980.384734 + 31 +0.0 + 0 +LINE + 5 +1025 + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +4023.686004 + 30 +0.0 + 11 +17012.499959 + 21 +4045.336639 + 31 +0.0 + 0 +LINE + 5 +1026 + 8 +0 + 62 + 0 + 10 +17062.499959 + 20 +4002.035369 + 30 +0.0 + 11 +17049.999959 + 21 +4023.686004 + 31 +0.0 + 0 +LINE + 5 +1027 + 8 +0 + 62 + 0 + 10 +17024.999959 + 20 +4066.987274 + 30 +0.0 + 11 +17012.499959 + 21 +4088.637909 + 31 +0.0 + 0 +LINE + 5 +1028 + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4045.336639 + 30 +0.0 + 11 +17049.999958 + 21 +4066.987274 + 31 +0.0 + 0 +LINE + 5 +1029 + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4110.288544 + 30 +0.0 + 11 +17012.499958 + 21 +4131.939179 + 31 +0.0 + 0 +LINE + 5 +102A + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4088.637909 + 30 +0.0 + 11 +17049.999958 + 21 +4110.288544 + 31 +0.0 + 0 +LINE + 5 +102B + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4153.589814 + 30 +0.0 + 11 +17012.499958 + 21 +4175.24045 + 31 +0.0 + 0 +LINE + 5 +102C + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4131.939179 + 30 +0.0 + 11 +17049.999958 + 21 +4153.589814 + 31 +0.0 + 0 +LINE + 5 +102D + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4196.891085 + 30 +0.0 + 11 +17012.499958 + 21 +4218.54172 + 31 +0.0 + 0 +LINE + 5 +102E + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4175.240449 + 30 +0.0 + 11 +17049.999958 + 21 +4196.891085 + 31 +0.0 + 0 +LINE + 5 +102F + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4240.192355 + 30 +0.0 + 11 +17012.499958 + 21 +4261.84299 + 31 +0.0 + 0 +LINE + 5 +1030 + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4218.54172 + 30 +0.0 + 11 +17049.999958 + 21 +4240.192355 + 31 +0.0 + 0 +LINE + 5 +1031 + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4283.493625 + 30 +0.0 + 11 +17012.499958 + 21 +4305.14426 + 31 +0.0 + 0 +LINE + 5 +1032 + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4261.84299 + 30 +0.0 + 11 +17049.999958 + 21 +4283.493625 + 31 +0.0 + 0 +LINE + 5 +1033 + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4326.794895 + 30 +0.0 + 11 +17012.499958 + 21 +4348.44553 + 31 +0.0 + 0 +LINE + 5 +1034 + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4305.14426 + 30 +0.0 + 11 +17049.999958 + 21 +4326.794895 + 31 +0.0 + 0 +LINE + 5 +1035 + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4370.096165 + 30 +0.0 + 11 +17012.499958 + 21 +4391.7468 + 31 +0.0 + 0 +LINE + 5 +1036 + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4348.44553 + 30 +0.0 + 11 +17049.999958 + 21 +4370.096165 + 31 +0.0 + 0 +LINE + 5 +1037 + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4413.397435 + 30 +0.0 + 11 +17012.499958 + 21 +4435.04807 + 31 +0.0 + 0 +LINE + 5 +1038 + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4391.7468 + 30 +0.0 + 11 +17049.999958 + 21 +4413.397435 + 31 +0.0 + 0 +LINE + 5 +1039 + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4456.698705 + 30 +0.0 + 11 +17012.499958 + 21 +4478.349341 + 31 +0.0 + 0 +LINE + 5 +103A + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4435.04807 + 30 +0.0 + 11 +17049.999958 + 21 +4456.698705 + 31 +0.0 + 0 +LINE + 5 +103B + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4499.999976 + 30 +0.0 + 11 +17012.499958 + 21 +4521.650611 + 31 +0.0 + 0 +LINE + 5 +103C + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4478.34934 + 30 +0.0 + 11 +17049.999958 + 21 +4499.999976 + 31 +0.0 + 0 +LINE + 5 +103D + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4543.301246 + 30 +0.0 + 11 +17012.499958 + 21 +4564.951881 + 31 +0.0 + 0 +LINE + 5 +103E + 8 +0 + 62 + 0 + 10 +17062.499958 + 20 +4521.650611 + 30 +0.0 + 11 +17049.999958 + 21 +4543.301246 + 31 +0.0 + 0 +LINE + 5 +103F + 8 +0 + 62 + 0 + 10 +17024.999958 + 20 +4586.602516 + 30 +0.0 + 11 +17012.499958 + 21 +4608.253151 + 31 +0.0 + 0 +LINE + 5 +1040 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4564.951881 + 30 +0.0 + 11 +17049.999957 + 21 +4586.602516 + 31 +0.0 + 0 +LINE + 5 +1041 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4629.903786 + 30 +0.0 + 11 +17012.499957 + 21 +4651.554421 + 31 +0.0 + 0 +LINE + 5 +1042 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4608.253151 + 30 +0.0 + 11 +17049.999957 + 21 +4629.903786 + 31 +0.0 + 0 +LINE + 5 +1043 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4673.205056 + 30 +0.0 + 11 +17012.499957 + 21 +4694.855691 + 31 +0.0 + 0 +LINE + 5 +1044 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4651.554421 + 30 +0.0 + 11 +17049.999957 + 21 +4673.205056 + 31 +0.0 + 0 +LINE + 5 +1045 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4716.506326 + 30 +0.0 + 11 +17012.499957 + 21 +4738.156961 + 31 +0.0 + 0 +LINE + 5 +1046 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4694.855691 + 30 +0.0 + 11 +17049.999957 + 21 +4716.506326 + 31 +0.0 + 0 +LINE + 5 +1047 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4759.807596 + 30 +0.0 + 11 +17012.499957 + 21 +4781.458232 + 31 +0.0 + 0 +LINE + 5 +1048 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4738.156961 + 30 +0.0 + 11 +17049.999957 + 21 +4759.807596 + 31 +0.0 + 0 +LINE + 5 +1049 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4803.108867 + 30 +0.0 + 11 +17012.499957 + 21 +4824.759502 + 31 +0.0 + 0 +LINE + 5 +104A + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4781.458231 + 30 +0.0 + 11 +17049.999957 + 21 +4803.108867 + 31 +0.0 + 0 +LINE + 5 +104B + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4846.410137 + 30 +0.0 + 11 +17012.499957 + 21 +4868.060772 + 31 +0.0 + 0 +LINE + 5 +104C + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4824.759502 + 30 +0.0 + 11 +17049.999957 + 21 +4846.410137 + 31 +0.0 + 0 +LINE + 5 +104D + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4889.711407 + 30 +0.0 + 11 +17012.499957 + 21 +4911.362042 + 31 +0.0 + 0 +LINE + 5 +104E + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4868.060772 + 30 +0.0 + 11 +17049.999957 + 21 +4889.711407 + 31 +0.0 + 0 +LINE + 5 +104F + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4933.012677 + 30 +0.0 + 11 +17012.499957 + 21 +4954.663312 + 31 +0.0 + 0 +LINE + 5 +1050 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4911.362042 + 30 +0.0 + 11 +17049.999957 + 21 +4933.012677 + 31 +0.0 + 0 +LINE + 5 +1051 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +4976.313947 + 30 +0.0 + 11 +17012.499957 + 21 +4997.964582 + 31 +0.0 + 0 +LINE + 5 +1052 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4954.663312 + 30 +0.0 + 11 +17049.999957 + 21 +4976.313947 + 31 +0.0 + 0 +LINE + 5 +1053 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +5019.615217 + 30 +0.0 + 11 +17012.499957 + 21 +5041.265852 + 31 +0.0 + 0 +LINE + 5 +1054 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +4997.964582 + 30 +0.0 + 11 +17049.999957 + 21 +5019.615217 + 31 +0.0 + 0 +LINE + 5 +1055 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +5062.916487 + 30 +0.0 + 11 +17012.499957 + 21 +5084.567123 + 31 +0.0 + 0 +LINE + 5 +1056 + 8 +0 + 62 + 0 + 10 +17062.499957 + 20 +5041.265852 + 30 +0.0 + 11 +17049.999957 + 21 +5062.916487 + 31 +0.0 + 0 +LINE + 5 +1057 + 8 +0 + 62 + 0 + 10 +17024.999957 + 20 +5106.217758 + 30 +0.0 + 11 +17012.499957 + 21 +5127.868393 + 31 +0.0 + 0 +LINE + 5 +1058 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5084.567122 + 30 +0.0 + 11 +17049.999956 + 21 +5106.217758 + 31 +0.0 + 0 +LINE + 5 +1059 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5149.519028 + 30 +0.0 + 11 +17012.499956 + 21 +5171.169663 + 31 +0.0 + 0 +LINE + 5 +105A + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5127.868393 + 30 +0.0 + 11 +17049.999956 + 21 +5149.519028 + 31 +0.0 + 0 +LINE + 5 +105B + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5192.820298 + 30 +0.0 + 11 +17012.499956 + 21 +5214.470933 + 31 +0.0 + 0 +LINE + 5 +105C + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5171.169663 + 30 +0.0 + 11 +17049.999956 + 21 +5192.820298 + 31 +0.0 + 0 +LINE + 5 +105D + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5236.121568 + 30 +0.0 + 11 +17012.499956 + 21 +5257.772203 + 31 +0.0 + 0 +LINE + 5 +105E + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5214.470933 + 30 +0.0 + 11 +17049.999956 + 21 +5236.121568 + 31 +0.0 + 0 +LINE + 5 +105F + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5279.422838 + 30 +0.0 + 11 +17012.499956 + 21 +5301.073473 + 31 +0.0 + 0 +LINE + 5 +1060 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5257.772203 + 30 +0.0 + 11 +17049.999956 + 21 +5279.422838 + 31 +0.0 + 0 +LINE + 5 +1061 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5322.724108 + 30 +0.0 + 11 +17012.499956 + 21 +5344.374743 + 31 +0.0 + 0 +LINE + 5 +1062 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5301.073473 + 30 +0.0 + 11 +17049.999956 + 21 +5322.724108 + 31 +0.0 + 0 +LINE + 5 +1063 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5366.025378 + 30 +0.0 + 11 +17012.499956 + 21 +5387.676014 + 31 +0.0 + 0 +LINE + 5 +1064 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5344.374743 + 30 +0.0 + 11 +17049.999956 + 21 +5366.025378 + 31 +0.0 + 0 +LINE + 5 +1065 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5409.326649 + 30 +0.0 + 11 +17012.499956 + 21 +5430.977284 + 31 +0.0 + 0 +LINE + 5 +1066 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5387.676013 + 30 +0.0 + 11 +17049.999956 + 21 +5409.326649 + 31 +0.0 + 0 +LINE + 5 +1067 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5452.627919 + 30 +0.0 + 11 +17012.499956 + 21 +5474.278554 + 31 +0.0 + 0 +LINE + 5 +1068 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5430.977284 + 30 +0.0 + 11 +17049.999956 + 21 +5452.627919 + 31 +0.0 + 0 +LINE + 5 +1069 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5495.929189 + 30 +0.0 + 11 +17012.499956 + 21 +5517.579824 + 31 +0.0 + 0 +LINE + 5 +106A + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5474.278554 + 30 +0.0 + 11 +17049.999956 + 21 +5495.929189 + 31 +0.0 + 0 +LINE + 5 +106B + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5539.230459 + 30 +0.0 + 11 +17012.499956 + 21 +5560.881094 + 31 +0.0 + 0 +LINE + 5 +106C + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5517.579824 + 30 +0.0 + 11 +17049.999956 + 21 +5539.230459 + 31 +0.0 + 0 +LINE + 5 +106D + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5582.531729 + 30 +0.0 + 11 +17012.499956 + 21 +5604.182364 + 31 +0.0 + 0 +LINE + 5 +106E + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5560.881094 + 30 +0.0 + 11 +17049.999956 + 21 +5582.531729 + 31 +0.0 + 0 +LINE + 5 +106F + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5625.832999 + 30 +0.0 + 11 +17012.499956 + 21 +5647.483634 + 31 +0.0 + 0 +LINE + 5 +1070 + 8 +0 + 62 + 0 + 10 +17062.499956 + 20 +5604.182364 + 30 +0.0 + 11 +17049.999956 + 21 +5625.832999 + 31 +0.0 + 0 +LINE + 5 +1071 + 8 +0 + 62 + 0 + 10 +17024.999956 + 20 +5669.134269 + 30 +0.0 + 11 +17012.499956 + 21 +5690.784905 + 31 +0.0 + 0 +LINE + 5 +1072 + 8 +0 + 62 + 0 + 10 +17062.499955 + 20 +5647.483634 + 30 +0.0 + 11 +17049.999955 + 21 +5669.134269 + 31 +0.0 + 0 +LINE + 5 +1073 + 8 +0 + 62 + 0 + 10 +17024.999955 + 20 +5712.43554 + 30 +0.0 + 11 +17012.499955 + 21 +5734.086175 + 31 +0.0 + 0 +LINE + 5 +1074 + 8 +0 + 62 + 0 + 10 +17062.499955 + 20 +5690.784904 + 30 +0.0 + 11 +17049.999955 + 21 +5712.43554 + 31 +0.0 + 0 +LINE + 5 +1075 + 8 +0 + 62 + 0 + 10 +17062.499955 + 20 +5734.086175 + 30 +0.0 + 11 +17059.085607 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +1076 + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +3785.529043 + 30 +0.0 + 11 +4124.999999 + 21 +3807.179678 + 31 +0.0 + 0 +LINE + 5 +1077 + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +3828.830313 + 30 +0.0 + 11 +4124.999999 + 21 +3850.480948 + 31 +0.0 + 0 +LINE + 5 +1078 + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +3807.179678 + 30 +0.0 + 11 +4087.499999 + 21 +3828.830313 + 31 +0.0 + 0 +LINE + 5 +1079 + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +3872.131583 + 30 +0.0 + 11 +4124.999999 + 21 +3893.782218 + 31 +0.0 + 0 +LINE + 5 +107A + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +3798.519425 + 30 +0.0 + 11 +4049.999999 + 21 +3807.179678 + 31 +0.0 + 0 +LINE + 5 +107B + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +3850.480948 + 30 +0.0 + 11 +4087.499999 + 21 +3872.131583 + 31 +0.0 + 0 +LINE + 5 +107C + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +3915.432853 + 30 +0.0 + 11 +4124.999999 + 21 +3937.083488 + 31 +0.0 + 0 +LINE + 5 +107D + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +3841.820695 + 30 +0.0 + 11 +4049.999999 + 21 +3850.480948 + 31 +0.0 + 0 +LINE + 5 +107E + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +3893.782218 + 30 +0.0 + 11 +4087.499999 + 21 +3915.432853 + 31 +0.0 + 0 +LINE + 5 +107F + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +3958.734123 + 30 +0.0 + 11 +4124.999999 + 21 +3980.384758 + 31 +0.0 + 0 +LINE + 5 +1080 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +3885.121965 + 30 +0.0 + 11 +4049.999999 + 21 +3893.782218 + 31 +0.0 + 0 +LINE + 5 +1081 + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +3937.083488 + 30 +0.0 + 11 +4087.499999 + 21 +3958.734123 + 31 +0.0 + 0 +LINE + 5 +1082 + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +4002.035393 + 30 +0.0 + 11 +4124.999999 + 21 +4023.686028 + 31 +0.0 + 0 +LINE + 5 +1083 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +3928.423235 + 30 +0.0 + 11 +4049.999999 + 21 +3937.083488 + 31 +0.0 + 0 +LINE + 5 +1084 + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +3980.384758 + 30 +0.0 + 11 +4087.499999 + 21 +4002.035393 + 31 +0.0 + 0 +LINE + 5 +1085 + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +4045.336663 + 30 +0.0 + 11 +4124.999999 + 21 +4066.987299 + 31 +0.0 + 0 +LINE + 5 +1086 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +3971.724505 + 30 +0.0 + 11 +4049.999999 + 21 +3980.384758 + 31 +0.0 + 0 +LINE + 5 +1087 + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +4023.686028 + 30 +0.0 + 11 +4087.499999 + 21 +4045.336663 + 31 +0.0 + 0 +LINE + 5 +1088 + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +4088.637934 + 30 +0.0 + 11 +4124.999999 + 21 +4110.288569 + 31 +0.0 + 0 +LINE + 5 +1089 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4015.025775 + 30 +0.0 + 11 +4049.999999 + 21 +4023.686028 + 31 +0.0 + 0 +LINE + 5 +108A + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +4066.987298 + 30 +0.0 + 11 +4087.499999 + 21 +4088.637934 + 31 +0.0 + 0 +LINE + 5 +108B + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +4131.939204 + 30 +0.0 + 11 +4124.999999 + 21 +4153.589839 + 31 +0.0 + 0 +LINE + 5 +108C + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4058.327045 + 30 +0.0 + 11 +4049.999999 + 21 +4066.987298 + 31 +0.0 + 0 +LINE + 5 +108D + 8 +0 + 62 + 0 + 10 +4074.999999 + 20 +4110.288569 + 30 +0.0 + 11 +4087.499999 + 21 +4131.939204 + 31 +0.0 + 0 +LINE + 5 +108E + 8 +0 + 62 + 0 + 10 +4112.499999 + 20 +4175.240474 + 30 +0.0 + 11 +4124.999999 + 21 +4196.891109 + 31 +0.0 + 0 +LINE + 5 +108F + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4101.628315 + 30 +0.0 + 11 +4050.0 + 21 +4110.288569 + 31 +0.0 + 0 +LINE + 5 +1090 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4153.589839 + 30 +0.0 + 11 +4087.5 + 21 +4175.240474 + 31 +0.0 + 0 +LINE + 5 +1091 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4218.541744 + 30 +0.0 + 11 +4125.0 + 21 +4240.192379 + 31 +0.0 + 0 +LINE + 5 +1092 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4144.929585 + 30 +0.0 + 11 +4050.0 + 21 +4153.589839 + 31 +0.0 + 0 +LINE + 5 +1093 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4196.891109 + 30 +0.0 + 11 +4087.5 + 21 +4218.541744 + 31 +0.0 + 0 +LINE + 5 +1094 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4261.843014 + 30 +0.0 + 11 +4125.0 + 21 +4283.493649 + 31 +0.0 + 0 +LINE + 5 +1095 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4188.230855 + 30 +0.0 + 11 +4050.0 + 21 +4196.891109 + 31 +0.0 + 0 +LINE + 5 +1096 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4240.192379 + 30 +0.0 + 11 +4087.5 + 21 +4261.843014 + 31 +0.0 + 0 +LINE + 5 +1097 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4305.144284 + 30 +0.0 + 11 +4125.0 + 21 +4326.794919 + 31 +0.0 + 0 +LINE + 5 +1098 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4231.532125 + 30 +0.0 + 11 +4050.0 + 21 +4240.192379 + 31 +0.0 + 0 +LINE + 5 +1099 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4283.493649 + 30 +0.0 + 11 +4087.5 + 21 +4305.144284 + 31 +0.0 + 0 +LINE + 5 +109A + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4348.445554 + 30 +0.0 + 11 +4125.0 + 21 +4370.09619 + 31 +0.0 + 0 +LINE + 5 +109B + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4274.833395 + 30 +0.0 + 11 +4050.0 + 21 +4283.493649 + 31 +0.0 + 0 +LINE + 5 +109C + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4326.794919 + 30 +0.0 + 11 +4087.5 + 21 +4348.445554 + 31 +0.0 + 0 +LINE + 5 +109D + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4391.746825 + 30 +0.0 + 11 +4125.0 + 21 +4413.39746 + 31 +0.0 + 0 +LINE + 5 +109E + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4318.134665 + 30 +0.0 + 11 +4050.0 + 21 +4326.794919 + 31 +0.0 + 0 +LINE + 5 +109F + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4370.096189 + 30 +0.0 + 11 +4087.5 + 21 +4391.746825 + 31 +0.0 + 0 +LINE + 5 +10A0 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4435.048095 + 30 +0.0 + 11 +4125.0 + 21 +4456.69873 + 31 +0.0 + 0 +LINE + 5 +10A1 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4361.435935 + 30 +0.0 + 11 +4050.0 + 21 +4370.096189 + 31 +0.0 + 0 +LINE + 5 +10A2 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4413.39746 + 30 +0.0 + 11 +4087.5 + 21 +4435.048095 + 31 +0.0 + 0 +LINE + 5 +10A3 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4478.349365 + 30 +0.0 + 11 +4125.0 + 21 +4500.0 + 31 +0.0 + 0 +LINE + 5 +10A4 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4404.737205 + 30 +0.0 + 11 +4050.0 + 21 +4413.39746 + 31 +0.0 + 0 +LINE + 5 +10A5 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4456.69873 + 30 +0.0 + 11 +4087.5 + 21 +4478.349365 + 31 +0.0 + 0 +LINE + 5 +10A6 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4521.650635 + 30 +0.0 + 11 +4125.0 + 21 +4543.30127 + 31 +0.0 + 0 +LINE + 5 +10A7 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4448.038475 + 30 +0.0 + 11 +4050.0 + 21 +4456.69873 + 31 +0.0 + 0 +LINE + 5 +10A8 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4500.0 + 30 +0.0 + 11 +4087.5 + 21 +4521.650635 + 31 +0.0 + 0 +LINE + 5 +10A9 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4564.951905 + 30 +0.0 + 11 +4125.0 + 21 +4586.60254 + 31 +0.0 + 0 +LINE + 5 +10AA + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4491.339745 + 30 +0.0 + 11 +4050.0 + 21 +4500.0 + 31 +0.0 + 0 +LINE + 5 +10AB + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4543.30127 + 30 +0.0 + 11 +4087.5 + 21 +4564.951905 + 31 +0.0 + 0 +LINE + 5 +10AC + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4608.253175 + 30 +0.0 + 11 +4125.0 + 21 +4629.90381 + 31 +0.0 + 0 +LINE + 5 +10AD + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4534.641015 + 30 +0.0 + 11 +4050.0 + 21 +4543.30127 + 31 +0.0 + 0 +LINE + 5 +10AE + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4586.60254 + 30 +0.0 + 11 +4087.5 + 21 +4608.253175 + 31 +0.0 + 0 +LINE + 5 +10AF + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4651.554445 + 30 +0.0 + 11 +4125.0 + 21 +4673.20508 + 31 +0.0 + 0 +LINE + 5 +10B0 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4577.942285 + 30 +0.0 + 11 +4050.0 + 21 +4586.60254 + 31 +0.0 + 0 +LINE + 5 +10B1 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4629.90381 + 30 +0.0 + 11 +4087.5 + 21 +4651.554445 + 31 +0.0 + 0 +LINE + 5 +10B2 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4694.855716 + 30 +0.0 + 11 +4125.0 + 21 +4716.50635 + 31 +0.0 + 0 +LINE + 5 +10B3 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4621.243555 + 30 +0.0 + 11 +4050.0 + 21 +4629.90381 + 31 +0.0 + 0 +LINE + 5 +10B4 + 8 +0 + 62 + 0 + 10 +4075.0 + 20 +4673.20508 + 30 +0.0 + 11 +4087.5 + 21 +4694.855716 + 31 +0.0 + 0 +LINE + 5 +10B5 + 8 +0 + 62 + 0 + 10 +4112.5 + 20 +4738.156986 + 30 +0.0 + 11 +4125.0 + 21 +4759.80762 + 31 +0.0 + 0 +LINE + 5 +10B6 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4664.544825 + 30 +0.0 + 11 +4050.000001 + 21 +4673.20508 + 31 +0.0 + 0 +LINE + 5 +10B7 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4716.506351 + 30 +0.0 + 11 +4087.500001 + 21 +4738.156986 + 31 +0.0 + 0 +LINE + 5 +10B8 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +4781.458256 + 30 +0.0 + 11 +4125.0 + 21 +4803.10889 + 31 +0.0 + 0 +LINE + 5 +10B9 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4707.846095 + 30 +0.0 + 11 +4050.000001 + 21 +4716.506351 + 31 +0.0 + 0 +LINE + 5 +10BA + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4759.807621 + 30 +0.0 + 11 +4087.500001 + 21 +4781.458256 + 31 +0.0 + 0 +LINE + 5 +10BB + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +4824.759526 + 30 +0.0 + 11 +4125.0 + 21 +4846.41016 + 31 +0.0 + 0 +LINE + 5 +10BC + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4751.147365 + 30 +0.0 + 11 +4050.000001 + 21 +4759.807621 + 31 +0.0 + 0 +LINE + 5 +10BD + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4803.108891 + 30 +0.0 + 11 +4087.500001 + 21 +4824.759526 + 31 +0.0 + 0 +LINE + 5 +10BE + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +4868.060796 + 30 +0.0 + 11 +4125.0 + 21 +4889.71143 + 31 +0.0 + 0 +LINE + 5 +10BF + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4794.448635 + 30 +0.0 + 11 +4050.000001 + 21 +4803.108891 + 31 +0.0 + 0 +LINE + 5 +10C0 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4846.410161 + 30 +0.0 + 11 +4087.500001 + 21 +4868.060796 + 31 +0.0 + 0 +LINE + 5 +10C1 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +4911.362066 + 30 +0.0 + 11 +4125.0 + 21 +4933.0127 + 31 +0.0 + 0 +LINE + 5 +10C2 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4837.749905 + 30 +0.0 + 11 +4050.000001 + 21 +4846.410161 + 31 +0.0 + 0 +LINE + 5 +10C3 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4889.711431 + 30 +0.0 + 11 +4087.500001 + 21 +4911.362066 + 31 +0.0 + 0 +LINE + 5 +10C4 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +4954.663336 + 30 +0.0 + 11 +4125.0 + 21 +4976.31397 + 31 +0.0 + 0 +LINE + 5 +10C5 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4881.051175 + 30 +0.0 + 11 +4050.000001 + 21 +4889.711431 + 31 +0.0 + 0 +LINE + 5 +10C6 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4933.012701 + 30 +0.0 + 11 +4087.500001 + 21 +4954.663336 + 31 +0.0 + 0 +LINE + 5 +10C7 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +4997.964607 + 30 +0.0 + 11 +4125.0 + 21 +5019.61524 + 31 +0.0 + 0 +LINE + 5 +10C8 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4924.352445 + 30 +0.0 + 11 +4050.000001 + 21 +4933.012701 + 31 +0.0 + 0 +LINE + 5 +10C9 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +4976.313971 + 30 +0.0 + 11 +4087.500001 + 21 +4997.964607 + 31 +0.0 + 0 +LINE + 5 +10CA + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +5041.265877 + 30 +0.0 + 11 +4125.0 + 21 +5062.91651 + 31 +0.0 + 0 +LINE + 5 +10CB + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +4967.653715 + 30 +0.0 + 11 +4050.000001 + 21 +4976.313971 + 31 +0.0 + 0 +LINE + 5 +10CC + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +5019.615242 + 30 +0.0 + 11 +4087.500001 + 21 +5041.265877 + 31 +0.0 + 0 +LINE + 5 +10CD + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +5084.567147 + 30 +0.0 + 11 +4125.0 + 21 +5106.21778 + 31 +0.0 + 0 +LINE + 5 +10CE + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5010.954985 + 30 +0.0 + 11 +4050.000001 + 21 +5019.615242 + 31 +0.0 + 0 +LINE + 5 +10CF + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +5062.916512 + 30 +0.0 + 11 +4087.500001 + 21 +5084.567147 + 31 +0.0 + 0 +LINE + 5 +10D0 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +5127.868417 + 30 +0.0 + 11 +4125.0 + 21 +5149.51905 + 31 +0.0 + 0 +LINE + 5 +10D1 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5054.256255 + 30 +0.0 + 11 +4050.000001 + 21 +5062.916512 + 31 +0.0 + 0 +LINE + 5 +10D2 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +5106.217782 + 30 +0.0 + 11 +4087.500001 + 21 +5127.868417 + 31 +0.0 + 0 +LINE + 5 +10D3 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +5171.169687 + 30 +0.0 + 11 +4125.0 + 21 +5192.82032 + 31 +0.0 + 0 +LINE + 5 +10D4 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5097.557525 + 30 +0.0 + 11 +4050.000001 + 21 +5106.217782 + 31 +0.0 + 0 +LINE + 5 +10D5 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +5149.519052 + 30 +0.0 + 11 +4087.500001 + 21 +5171.169687 + 31 +0.0 + 0 +LINE + 5 +10D6 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +5214.470957 + 30 +0.0 + 11 +4125.0 + 21 +5236.12159 + 31 +0.0 + 0 +LINE + 5 +10D7 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5140.858795 + 30 +0.0 + 11 +4050.000001 + 21 +5149.519052 + 31 +0.0 + 0 +LINE + 5 +10D8 + 8 +0 + 62 + 0 + 10 +4075.000001 + 20 +5192.820322 + 30 +0.0 + 11 +4087.500001 + 21 +5214.470957 + 31 +0.0 + 0 +LINE + 5 +10D9 + 8 +0 + 62 + 0 + 10 +4112.500001 + 20 +5257.772227 + 30 +0.0 + 11 +4125.0 + 21 +5279.42286 + 31 +0.0 + 0 +LINE + 5 +10DA + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5184.160065 + 30 +0.0 + 11 +4050.000002 + 21 +5192.820322 + 31 +0.0 + 0 +LINE + 5 +10DB + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5236.121592 + 30 +0.0 + 11 +4087.500002 + 21 +5257.772227 + 31 +0.0 + 0 +LINE + 5 +10DC + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5301.073498 + 30 +0.0 + 11 +4125.0 + 21 +5322.72413 + 31 +0.0 + 0 +LINE + 5 +10DD + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5227.461335 + 30 +0.0 + 11 +4050.000002 + 21 +5236.121592 + 31 +0.0 + 0 +LINE + 5 +10DE + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5279.422862 + 30 +0.0 + 11 +4087.500002 + 21 +5301.073498 + 31 +0.0 + 0 +LINE + 5 +10DF + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5344.374768 + 30 +0.0 + 11 +4125.0 + 21 +5366.0254 + 31 +0.0 + 0 +LINE + 5 +10E0 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5270.762605 + 30 +0.0 + 11 +4050.000002 + 21 +5279.422862 + 31 +0.0 + 0 +LINE + 5 +10E1 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5322.724133 + 30 +0.0 + 11 +4087.500002 + 21 +5344.374768 + 31 +0.0 + 0 +LINE + 5 +10E2 + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5387.676038 + 30 +0.0 + 11 +4125.0 + 21 +5409.32667 + 31 +0.0 + 0 +LINE + 5 +10E3 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5314.063875 + 30 +0.0 + 11 +4050.000002 + 21 +5322.724133 + 31 +0.0 + 0 +LINE + 5 +10E4 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5366.025403 + 30 +0.0 + 11 +4087.500002 + 21 +5387.676038 + 31 +0.0 + 0 +LINE + 5 +10E5 + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5430.977308 + 30 +0.0 + 11 +4125.0 + 21 +5452.62794 + 31 +0.0 + 0 +LINE + 5 +10E6 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5357.365145 + 30 +0.0 + 11 +4050.000002 + 21 +5366.025403 + 31 +0.0 + 0 +LINE + 5 +10E7 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5409.326673 + 30 +0.0 + 11 +4087.500002 + 21 +5430.977308 + 31 +0.0 + 0 +LINE + 5 +10E8 + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5474.278578 + 30 +0.0 + 11 +4125.0 + 21 +5495.92921 + 31 +0.0 + 0 +LINE + 5 +10E9 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5400.666415 + 30 +0.0 + 11 +4050.000002 + 21 +5409.326673 + 31 +0.0 + 0 +LINE + 5 +10EA + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5452.627943 + 30 +0.0 + 11 +4087.500002 + 21 +5474.278578 + 31 +0.0 + 0 +LINE + 5 +10EB + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5517.579848 + 30 +0.0 + 11 +4125.0 + 21 +5539.23048 + 31 +0.0 + 0 +LINE + 5 +10EC + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5443.967685 + 30 +0.0 + 11 +4050.000002 + 21 +5452.627943 + 31 +0.0 + 0 +LINE + 5 +10ED + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5495.929213 + 30 +0.0 + 11 +4087.500002 + 21 +5517.579848 + 31 +0.0 + 0 +LINE + 5 +10EE + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5560.881118 + 30 +0.0 + 11 +4125.0 + 21 +5582.53175 + 31 +0.0 + 0 +LINE + 5 +10EF + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5487.268955 + 30 +0.0 + 11 +4050.000002 + 21 +5495.929213 + 31 +0.0 + 0 +LINE + 5 +10F0 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5539.230483 + 30 +0.0 + 11 +4087.500002 + 21 +5560.881118 + 31 +0.0 + 0 +LINE + 5 +10F1 + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5604.182389 + 30 +0.0 + 11 +4125.0 + 21 +5625.83302 + 31 +0.0 + 0 +LINE + 5 +10F2 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5530.570225 + 30 +0.0 + 11 +4050.000002 + 21 +5539.230483 + 31 +0.0 + 0 +LINE + 5 +10F3 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5582.531753 + 30 +0.0 + 11 +4087.500002 + 21 +5604.182389 + 31 +0.0 + 0 +LINE + 5 +10F4 + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5647.483659 + 30 +0.0 + 11 +4125.0 + 21 +5669.13429 + 31 +0.0 + 0 +LINE + 5 +10F5 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5573.871495 + 30 +0.0 + 11 +4050.000002 + 21 +5582.531753 + 31 +0.0 + 0 +LINE + 5 +10F6 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5625.833024 + 30 +0.0 + 11 +4087.500002 + 21 +5647.483659 + 31 +0.0 + 0 +LINE + 5 +10F7 + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5690.784929 + 30 +0.0 + 11 +4125.0 + 21 +5712.43556 + 31 +0.0 + 0 +LINE + 5 +10F8 + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5617.172765 + 30 +0.0 + 11 +4050.000002 + 21 +5625.833024 + 31 +0.0 + 0 +LINE + 5 +10F9 + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5669.134294 + 30 +0.0 + 11 +4087.500002 + 21 +5690.784929 + 31 +0.0 + 0 +LINE + 5 +10FA + 8 +0 + 62 + 0 + 10 +4112.500002 + 20 +5734.086199 + 30 +0.0 + 11 +4115.914337 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +10FB + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5660.474035 + 30 +0.0 + 11 +4050.000002 + 21 +5669.134294 + 31 +0.0 + 0 +LINE + 5 +10FC + 8 +0 + 62 + 0 + 10 +4075.000002 + 20 +5712.435564 + 30 +0.0 + 11 +4087.500002 + 21 +5734.086199 + 31 +0.0 + 0 +LINE + 5 +10FD + 8 +0 + 62 + 0 + 10 +4045.0 + 20 +5703.775305 + 30 +0.0 + 11 +4050.000003 + 21 +5712.435564 + 31 +0.0 + 0 +LINE + 5 +10FE + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5734.086223 + 30 +0.0 + 11 +17015.914281 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +10FF + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5690.784953 + 30 +0.0 + 11 +17024.99996 + 21 +5712.435588 + 31 +0.0 + 0 +LINE + 5 +1100 + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5647.483683 + 30 +0.0 + 11 +17024.99996 + 21 +5669.134318 + 31 +0.0 + 0 +LINE + 5 +1101 + 8 +0 + 62 + 0 + 10 +17049.99996 + 20 +5712.435588 + 30 +0.0 + 11 +17062.49996 + 21 +5734.086224 + 31 +0.0 + 0 +LINE + 5 +1102 + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5604.182413 + 30 +0.0 + 11 +17024.99996 + 21 +5625.833048 + 31 +0.0 + 0 +LINE + 5 +1103 + 8 +0 + 62 + 0 + 10 +17049.99996 + 20 +5669.134318 + 30 +0.0 + 11 +17062.49996 + 21 +5690.784953 + 31 +0.0 + 0 +LINE + 5 +1104 + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5560.881143 + 30 +0.0 + 11 +17024.99996 + 21 +5582.531778 + 31 +0.0 + 0 +LINE + 5 +1105 + 8 +0 + 62 + 0 + 10 +17049.99996 + 20 +5625.833048 + 30 +0.0 + 11 +17062.49996 + 21 +5647.483683 + 31 +0.0 + 0 +LINE + 5 +1106 + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5517.579873 + 30 +0.0 + 11 +17024.99996 + 21 +5539.230508 + 31 +0.0 + 0 +LINE + 5 +1107 + 8 +0 + 62 + 0 + 10 +17049.99996 + 20 +5582.531778 + 30 +0.0 + 11 +17062.49996 + 21 +5604.182413 + 31 +0.0 + 0 +LINE + 5 +1108 + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5474.278603 + 30 +0.0 + 11 +17024.99996 + 21 +5495.929238 + 31 +0.0 + 0 +LINE + 5 +1109 + 8 +0 + 62 + 0 + 10 +17049.99996 + 20 +5539.230508 + 30 +0.0 + 11 +17062.49996 + 21 +5560.881143 + 31 +0.0 + 0 +LINE + 5 +110A + 8 +0 + 62 + 0 + 10 +17012.49996 + 20 +5430.977332 + 30 +0.0 + 11 +17024.99996 + 21 +5452.627968 + 31 +0.0 + 0 +LINE + 5 +110B + 8 +0 + 62 + 0 + 10 +17049.99996 + 20 +5495.929238 + 30 +0.0 + 11 +17062.49996 + 21 +5517.579873 + 31 +0.0 + 0 +LINE + 5 +110C + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5387.676062 + 30 +0.0 + 11 +17024.999959 + 21 +5409.326697 + 31 +0.0 + 0 +LINE + 5 +110D + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5452.627968 + 30 +0.0 + 11 +17062.499959 + 21 +5474.278603 + 31 +0.0 + 0 +LINE + 5 +110E + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5344.374792 + 30 +0.0 + 11 +17024.999959 + 21 +5366.025427 + 31 +0.0 + 0 +LINE + 5 +110F + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5409.326697 + 30 +0.0 + 11 +17062.499959 + 21 +5430.977333 + 31 +0.0 + 0 +LINE + 5 +1110 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5301.073522 + 30 +0.0 + 11 +17024.999959 + 21 +5322.724157 + 31 +0.0 + 0 +LINE + 5 +1111 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5366.025427 + 30 +0.0 + 11 +17062.499959 + 21 +5387.676062 + 31 +0.0 + 0 +LINE + 5 +1112 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5257.772252 + 30 +0.0 + 11 +17024.999959 + 21 +5279.422887 + 31 +0.0 + 0 +LINE + 5 +1113 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5322.724157 + 30 +0.0 + 11 +17062.499959 + 21 +5344.374792 + 31 +0.0 + 0 +LINE + 5 +1114 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5214.470982 + 30 +0.0 + 11 +17024.999959 + 21 +5236.121617 + 31 +0.0 + 0 +LINE + 5 +1115 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5279.422887 + 30 +0.0 + 11 +17062.499959 + 21 +5301.073522 + 31 +0.0 + 0 +LINE + 5 +1116 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5171.169712 + 30 +0.0 + 11 +17024.999959 + 21 +5192.820347 + 31 +0.0 + 0 +LINE + 5 +1117 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5236.121617 + 30 +0.0 + 11 +17062.499959 + 21 +5257.772252 + 31 +0.0 + 0 +LINE + 5 +1118 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5127.868441 + 30 +0.0 + 11 +17024.999959 + 21 +5149.519077 + 31 +0.0 + 0 +LINE + 5 +1119 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5192.820347 + 30 +0.0 + 11 +17062.499959 + 21 +5214.470982 + 31 +0.0 + 0 +LINE + 5 +111A + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5084.567171 + 30 +0.0 + 11 +17024.999959 + 21 +5106.217806 + 31 +0.0 + 0 +LINE + 5 +111B + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5149.519077 + 30 +0.0 + 11 +17062.499959 + 21 +5171.169712 + 31 +0.0 + 0 +LINE + 5 +111C + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +5041.265901 + 30 +0.0 + 11 +17024.999959 + 21 +5062.916536 + 31 +0.0 + 0 +LINE + 5 +111D + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5106.217806 + 30 +0.0 + 11 +17062.499959 + 21 +5127.868442 + 31 +0.0 + 0 +LINE + 5 +111E + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +4997.964631 + 30 +0.0 + 11 +17024.999959 + 21 +5019.615266 + 31 +0.0 + 0 +LINE + 5 +111F + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5062.916536 + 30 +0.0 + 11 +17062.499959 + 21 +5084.567171 + 31 +0.0 + 0 +LINE + 5 +1120 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +4954.663361 + 30 +0.0 + 11 +17024.999959 + 21 +4976.313996 + 31 +0.0 + 0 +LINE + 5 +1121 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +5019.615266 + 30 +0.0 + 11 +17062.499959 + 21 +5041.265901 + 31 +0.0 + 0 +LINE + 5 +1122 + 8 +0 + 62 + 0 + 10 +17012.499959 + 20 +4911.362091 + 30 +0.0 + 11 +17024.999959 + 21 +4933.012726 + 31 +0.0 + 0 +LINE + 5 +1123 + 8 +0 + 62 + 0 + 10 +17049.999959 + 20 +4976.313996 + 30 +0.0 + 11 +17062.499959 + 21 +4997.964631 + 31 +0.0 + 0 +LINE + 5 +1124 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4868.060821 + 30 +0.0 + 11 +17024.999958 + 21 +4889.711456 + 31 +0.0 + 0 +LINE + 5 +1125 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4933.012726 + 30 +0.0 + 11 +17062.499958 + 21 +4954.663361 + 31 +0.0 + 0 +LINE + 5 +1126 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4824.75955 + 30 +0.0 + 11 +17024.999958 + 21 +4846.410186 + 31 +0.0 + 0 +LINE + 5 +1127 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4889.711456 + 30 +0.0 + 11 +17062.499958 + 21 +4911.362091 + 31 +0.0 + 0 +LINE + 5 +1128 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4781.45828 + 30 +0.0 + 11 +17024.999958 + 21 +4803.108915 + 31 +0.0 + 0 +LINE + 5 +1129 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4846.410186 + 30 +0.0 + 11 +17062.499958 + 21 +4868.060821 + 31 +0.0 + 0 +LINE + 5 +112A + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4738.15701 + 30 +0.0 + 11 +17024.999958 + 21 +4759.807645 + 31 +0.0 + 0 +LINE + 5 +112B + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4803.108915 + 30 +0.0 + 11 +17062.499958 + 21 +4824.759551 + 31 +0.0 + 0 +LINE + 5 +112C + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4694.85574 + 30 +0.0 + 11 +17024.999958 + 21 +4716.506375 + 31 +0.0 + 0 +LINE + 5 +112D + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4759.807645 + 30 +0.0 + 11 +17062.499958 + 21 +4781.45828 + 31 +0.0 + 0 +LINE + 5 +112E + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4651.55447 + 30 +0.0 + 11 +17024.999958 + 21 +4673.205105 + 31 +0.0 + 0 +LINE + 5 +112F + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4716.506375 + 30 +0.0 + 11 +17062.499958 + 21 +4738.15701 + 31 +0.0 + 0 +LINE + 5 +1130 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4608.2532 + 30 +0.0 + 11 +17024.999958 + 21 +4629.903835 + 31 +0.0 + 0 +LINE + 5 +1131 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4673.205105 + 30 +0.0 + 11 +17062.499958 + 21 +4694.85574 + 31 +0.0 + 0 +LINE + 5 +1132 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4564.95193 + 30 +0.0 + 11 +17024.999958 + 21 +4586.602565 + 31 +0.0 + 0 +LINE + 5 +1133 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4629.903835 + 30 +0.0 + 11 +17062.499958 + 21 +4651.55447 + 31 +0.0 + 0 +LINE + 5 +1134 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4521.650659 + 30 +0.0 + 11 +17024.999958 + 21 +4543.301295 + 31 +0.0 + 0 +LINE + 5 +1135 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4586.602565 + 30 +0.0 + 11 +17062.499958 + 21 +4608.2532 + 31 +0.0 + 0 +LINE + 5 +1136 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4478.349389 + 30 +0.0 + 11 +17024.999958 + 21 +4500.000024 + 31 +0.0 + 0 +LINE + 5 +1137 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4543.301295 + 30 +0.0 + 11 +17062.499958 + 21 +4564.95193 + 31 +0.0 + 0 +LINE + 5 +1138 + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4435.048119 + 30 +0.0 + 11 +17024.999958 + 21 +4456.698754 + 31 +0.0 + 0 +LINE + 5 +1139 + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4500.000024 + 30 +0.0 + 11 +17062.499958 + 21 +4521.65066 + 31 +0.0 + 0 +LINE + 5 +113A + 8 +0 + 62 + 0 + 10 +17012.499958 + 20 +4391.746849 + 30 +0.0 + 11 +17024.999958 + 21 +4413.397484 + 31 +0.0 + 0 +LINE + 5 +113B + 8 +0 + 62 + 0 + 10 +17049.999958 + 20 +4456.698754 + 30 +0.0 + 11 +17062.499958 + 21 +4478.349389 + 31 +0.0 + 0 +LINE + 5 +113C + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4348.445579 + 30 +0.0 + 11 +17024.999957 + 21 +4370.096214 + 31 +0.0 + 0 +LINE + 5 +113D + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4413.397484 + 30 +0.0 + 11 +17062.499957 + 21 +4435.048119 + 31 +0.0 + 0 +LINE + 5 +113E + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4305.144309 + 30 +0.0 + 11 +17024.999957 + 21 +4326.794944 + 31 +0.0 + 0 +LINE + 5 +113F + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4370.096214 + 30 +0.0 + 11 +17062.499957 + 21 +4391.746849 + 31 +0.0 + 0 +LINE + 5 +1140 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4261.843039 + 30 +0.0 + 11 +17024.999957 + 21 +4283.493674 + 31 +0.0 + 0 +LINE + 5 +1141 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4326.794944 + 30 +0.0 + 11 +17062.499957 + 21 +4348.445579 + 31 +0.0 + 0 +LINE + 5 +1142 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4218.541768 + 30 +0.0 + 11 +17024.999957 + 21 +4240.192404 + 31 +0.0 + 0 +LINE + 5 +1143 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4283.493674 + 30 +0.0 + 11 +17062.499957 + 21 +4305.144309 + 31 +0.0 + 0 +LINE + 5 +1144 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4175.240498 + 30 +0.0 + 11 +17024.999957 + 21 +4196.891133 + 31 +0.0 + 0 +LINE + 5 +1145 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4240.192404 + 30 +0.0 + 11 +17062.499957 + 21 +4261.843039 + 31 +0.0 + 0 +LINE + 5 +1146 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4131.939228 + 30 +0.0 + 11 +17024.999957 + 21 +4153.589863 + 31 +0.0 + 0 +LINE + 5 +1147 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4196.891133 + 30 +0.0 + 11 +17062.499957 + 21 +4218.541769 + 31 +0.0 + 0 +LINE + 5 +1148 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4088.637958 + 30 +0.0 + 11 +17024.999957 + 21 +4110.288593 + 31 +0.0 + 0 +LINE + 5 +1149 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4153.589863 + 30 +0.0 + 11 +17062.499957 + 21 +4175.240498 + 31 +0.0 + 0 +LINE + 5 +114A + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4045.336688 + 30 +0.0 + 11 +17024.999957 + 21 +4066.987323 + 31 +0.0 + 0 +LINE + 5 +114B + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4110.288593 + 30 +0.0 + 11 +17062.499957 + 21 +4131.939228 + 31 +0.0 + 0 +LINE + 5 +114C + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +4002.035418 + 30 +0.0 + 11 +17024.999957 + 21 +4023.686053 + 31 +0.0 + 0 +LINE + 5 +114D + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4066.987323 + 30 +0.0 + 11 +17062.499957 + 21 +4088.637958 + 31 +0.0 + 0 +LINE + 5 +114E + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +3958.734148 + 30 +0.0 + 11 +17024.999957 + 21 +3980.384783 + 31 +0.0 + 0 +LINE + 5 +114F + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +4023.686053 + 30 +0.0 + 11 +17062.499957 + 21 +4045.336688 + 31 +0.0 + 0 +LINE + 5 +1150 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +3915.432877 + 30 +0.0 + 11 +17024.999957 + 21 +3937.083513 + 31 +0.0 + 0 +LINE + 5 +1151 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +3980.384783 + 30 +0.0 + 11 +17062.499957 + 21 +4002.035418 + 31 +0.0 + 0 +LINE + 5 +1152 + 8 +0 + 62 + 0 + 10 +17012.499957 + 20 +3872.131607 + 30 +0.0 + 11 +17024.999957 + 21 +3893.782242 + 31 +0.0 + 0 +LINE + 5 +1153 + 8 +0 + 62 + 0 + 10 +17049.999957 + 20 +3937.083513 + 30 +0.0 + 11 +17062.499957 + 21 +3958.734148 + 31 +0.0 + 0 +LINE + 5 +1154 + 8 +0 + 62 + 0 + 10 +17012.499956 + 20 +3828.830337 + 30 +0.0 + 11 +17024.999956 + 21 +3850.480972 + 31 +0.0 + 0 +LINE + 5 +1155 + 8 +0 + 62 + 0 + 10 +17049.999956 + 20 +3893.782242 + 30 +0.0 + 11 +17062.499956 + 21 +3915.432878 + 31 +0.0 + 0 +LINE + 5 +1156 + 8 +0 + 62 + 0 + 10 +17012.499956 + 20 +3785.529067 + 30 +0.0 + 11 +17024.999956 + 21 +3807.179702 + 31 +0.0 + 0 +LINE + 5 +1157 + 8 +0 + 62 + 0 + 10 +17049.999956 + 20 +3850.480972 + 30 +0.0 + 11 +17062.499956 + 21 +3872.131607 + 31 +0.0 + 0 +LINE + 5 +1158 + 8 +0 + 62 + 0 + 10 +17049.999956 + 20 +3807.179702 + 30 +0.0 + 11 +17062.499956 + 21 +3828.830337 + 31 +0.0 + 0 +LINE + 5 +1159 + 8 +0 + 62 + 0 + 10 +3971.84659 + 20 +3790.0 + 30 +0.0 + 11 +3985.0 + 21 +3803.15341 + 31 +0.0 + 0 +LINE + 5 +115A + 8 +0 + 62 + 0 + 10 +3892.297077 + 20 +3790.0 + 30 +0.0 + 11 +3985.0 + 21 +3882.702923 + 31 +0.0 + 0 +LINE + 5 +115B + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +3847.252436 + 30 +0.0 + 11 +3985.0 + 21 +3962.252436 + 31 +0.0 + 0 +LINE + 5 +115C + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +3926.801948 + 30 +0.0 + 11 +3985.0 + 21 +4041.801948 + 31 +0.0 + 0 +LINE + 5 +115D + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4006.351461 + 30 +0.0 + 11 +3985.0 + 21 +4121.351461 + 31 +0.0 + 0 +LINE + 5 +115E + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4085.900974 + 30 +0.0 + 11 +3985.0 + 21 +4200.900974 + 31 +0.0 + 0 +LINE + 5 +115F + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4165.450487 + 30 +0.0 + 11 +3985.0 + 21 +4280.450487 + 31 +0.0 + 0 +LINE + 5 +1160 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4245.0 + 30 +0.0 + 11 +3985.0 + 21 +4360.0 + 31 +0.0 + 0 +LINE + 5 +1161 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4324.549513 + 30 +0.0 + 11 +3985.0 + 21 +4439.549513 + 31 +0.0 + 0 +LINE + 5 +1162 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4404.099026 + 30 +0.0 + 11 +3985.0 + 21 +4519.099026 + 31 +0.0 + 0 +LINE + 5 +1163 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4483.648539 + 30 +0.0 + 11 +3985.0 + 21 +4598.648539 + 31 +0.0 + 0 +LINE + 5 +1164 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4563.198052 + 30 +0.0 + 11 +3985.0 + 21 +4678.198052 + 31 +0.0 + 0 +LINE + 5 +1165 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4642.747564 + 30 +0.0 + 11 +3985.0 + 21 +4757.747564 + 31 +0.0 + 0 +LINE + 5 +1166 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4722.297077 + 30 +0.0 + 11 +3985.0 + 21 +4837.297077 + 31 +0.0 + 0 +LINE + 5 +1167 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4801.84659 + 30 +0.0 + 11 +3985.0 + 21 +4916.84659 + 31 +0.0 + 0 +LINE + 5 +1168 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4881.396103 + 30 +0.0 + 11 +3985.0 + 21 +4996.396103 + 31 +0.0 + 0 +LINE + 5 +1169 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +4960.945616 + 30 +0.0 + 11 +3985.0 + 21 +5075.945616 + 31 +0.0 + 0 +LINE + 5 +116A + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5040.495129 + 30 +0.0 + 11 +3985.0 + 21 +5155.495129 + 31 +0.0 + 0 +LINE + 5 +116B + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5120.044642 + 30 +0.0 + 11 +3985.0 + 21 +5235.044642 + 31 +0.0 + 0 +LINE + 5 +116C + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5199.594155 + 30 +0.0 + 11 +3985.0 + 21 +5314.594155 + 31 +0.0 + 0 +LINE + 5 +116D + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5279.143667 + 30 +0.0 + 11 +3985.0 + 21 +5394.143667 + 31 +0.0 + 0 +LINE + 5 +116E + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5358.69318 + 30 +0.0 + 11 +3985.0 + 21 +5473.69318 + 31 +0.0 + 0 +LINE + 5 +116F + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5438.242693 + 30 +0.0 + 11 +3985.0 + 21 +5553.242693 + 31 +0.0 + 0 +LINE + 5 +1170 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5517.792206 + 30 +0.0 + 11 +3985.0 + 21 +5632.792206 + 31 +0.0 + 0 +LINE + 5 +1171 + 8 +0 + 62 + 0 + 10 +3870.0 + 20 +5597.341719 + 30 +0.0 + 11 +3985.0 + 21 +5712.341719 + 31 +0.0 + 0 +LINE + 5 +1172 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5731.672093 + 30 +0.0 + 11 +17138.327907 + 21 +5740.0 + 31 +0.0 + 0 +LINE + 5 +1173 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5572.573067 + 30 +0.0 + 11 +17245.0 + 21 +5687.573067 + 31 +0.0 + 0 +LINE + 5 +1174 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5493.023555 + 30 +0.0 + 11 +17245.0 + 21 +5608.023555 + 31 +0.0 + 0 +LINE + 5 +1175 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5413.474042 + 30 +0.0 + 11 +17245.0 + 21 +5528.474042 + 31 +0.0 + 0 +LINE + 5 +1176 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5333.924529 + 30 +0.0 + 11 +17245.0 + 21 +5448.924529 + 31 +0.0 + 0 +LINE + 5 +1177 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5254.375016 + 30 +0.0 + 11 +17245.0 + 21 +5369.375016 + 31 +0.0 + 0 +LINE + 5 +1178 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5174.825503 + 30 +0.0 + 11 +17245.0 + 21 +5289.825503 + 31 +0.0 + 0 +LINE + 5 +1179 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5095.27599 + 30 +0.0 + 11 +17245.0 + 21 +5210.27599 + 31 +0.0 + 0 +LINE + 5 +117A + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +5015.726477 + 30 +0.0 + 11 +17245.0 + 21 +5130.726477 + 31 +0.0 + 0 +LINE + 5 +117B + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4936.176964 + 30 +0.0 + 11 +17245.0 + 21 +5051.176964 + 31 +0.0 + 0 +LINE + 5 +117C + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4856.627452 + 30 +0.0 + 11 +17245.0 + 21 +4971.627452 + 31 +0.0 + 0 +LINE + 5 +117D + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4777.077939 + 30 +0.0 + 11 +17245.0 + 21 +4892.077939 + 31 +0.0 + 0 +LINE + 5 +117E + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4697.528426 + 30 +0.0 + 11 +17245.0 + 21 +4812.528426 + 31 +0.0 + 0 +LINE + 5 +117F + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4617.978913 + 30 +0.0 + 11 +17245.0 + 21 +4732.978913 + 31 +0.0 + 0 +LINE + 5 +1180 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4538.4294 + 30 +0.0 + 11 +17245.0 + 21 +4653.4294 + 31 +0.0 + 0 +LINE + 5 +1181 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4458.879887 + 30 +0.0 + 11 +17245.0 + 21 +4573.879887 + 31 +0.0 + 0 +LINE + 5 +1182 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4379.330374 + 30 +0.0 + 11 +17245.0 + 21 +4494.330374 + 31 +0.0 + 0 +LINE + 5 +1183 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4299.780861 + 30 +0.0 + 11 +17245.0 + 21 +4414.780861 + 31 +0.0 + 0 +LINE + 5 +1184 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4220.231348 + 30 +0.0 + 11 +17245.0 + 21 +4335.231348 + 31 +0.0 + 0 +LINE + 5 +1185 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4140.681836 + 30 +0.0 + 11 +17245.0 + 21 +4255.681836 + 31 +0.0 + 0 +LINE + 5 +1186 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +4061.132323 + 30 +0.0 + 11 +17245.0 + 21 +4176.132323 + 31 +0.0 + 0 +LINE + 5 +1187 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +3981.58281 + 30 +0.0 + 11 +17245.0 + 21 +4096.58281 + 31 +0.0 + 0 +LINE + 5 +1188 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +3902.033297 + 30 +0.0 + 11 +17245.0 + 21 +4017.033297 + 31 +0.0 + 0 +LINE + 5 +1189 + 8 +0 + 62 + 0 + 10 +17130.0 + 20 +3822.483784 + 30 +0.0 + 11 +17245.0 + 21 +3937.483784 + 31 +0.0 + 0 +LINE + 5 +118A + 8 +0 + 62 + 0 + 10 +17177.065729 + 20 +3790.0 + 30 +0.0 + 11 +17245.0 + 21 +3857.934271 + 31 +0.0 + 0 +POLYLINE + 5 +118B + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25DB + 8 +MAUERWERK + 10 +4125.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +25DC + 8 +MAUERWERK + 10 +4125.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +25DD + 8 +MAUERWERK + 0 +POLYLINE + 5 +118F + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25DE + 8 +MAUERWERK + 10 +4490.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +25DF + 8 +MAUERWERK + 10 +4490.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +25E0 + 8 +MAUERWERK + 10 +4125.0 + 20 +4335.0 + 30 +0.0 + 0 +SEQEND + 5 +25E1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1194 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25E2 + 8 +DAEMMUNG + 10 +4125.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +25E3 + 8 +DAEMMUNG + 10 +4045.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +25E4 + 8 +DAEMMUNG + 10 +4045.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +25E5 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +1199 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +25E6 + 8 +DAEMMUNG + 10 +4125.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +25E7 + 8 +DAEMMUNG + 10 +4125.0 + 20 +5740.0 + 30 +0.0 + 0 +SEQEND + 5 +25E8 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +119D + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25E9 + 8 +MAUERWERK + 10 +3870.0 + 20 +5692.482548 + 30 +0.0 + 0 +VERTEX + 5 +25EA + 8 +MAUERWERK + 10 +3870.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +25EB + 8 +MAUERWERK + 0 +POLYLINE + 5 +11A1 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25EC + 8 +MAUERWERK + 10 +3985.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +25ED + 8 +MAUERWERK + 10 +3985.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +25EE + 8 +MAUERWERK + 10 +3946.043819 + 20 +5740.0 + 30 +0.0 + 0 +SEQEND + 5 +25EF + 8 +MAUERWERK + 0 +POLYLINE + 5 +11A6 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25F0 + 8 +MAUERWERK + 10 +9000.0 + 20 +4340.0 + 30 +0.0 + 0 +VERTEX + 5 +25F1 + 8 +MAUERWERK + 10 +9000.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +25F2 + 8 +MAUERWERK + 0 +POLYLINE + 5 +11AA + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25F3 + 8 +MAUERWERK + 10 +9365.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +25F4 + 8 +MAUERWERK + 10 +9365.0 + 20 +4340.0 + 30 +0.0 + 0 +VERTEX + 5 +25F5 + 8 +MAUERWERK + 10 +9000.0 + 20 +4340.0 + 30 +0.0 + 0 +SEQEND + 5 +25F6 + 8 +MAUERWERK + 0 +POLYLINE + 5 +11AF + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25F7 + 8 +MAUERWERK + 10 +11750.0 + 20 +4340.0 + 30 +0.0 + 0 +VERTEX + 5 +25F8 + 8 +MAUERWERK + 10 +11750.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +25F9 + 8 +MAUERWERK + 0 +POLYLINE + 5 +11B3 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25FA + 8 +MAUERWERK + 10 +12115.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +25FB + 8 +MAUERWERK + 10 +12115.0 + 20 +4340.0 + 30 +0.0 + 0 +VERTEX + 5 +25FC + 8 +MAUERWERK + 10 +11750.0 + 20 +4340.0 + 30 +0.0 + 0 +SEQEND + 5 +25FD + 8 +MAUERWERK + 0 +POLYLINE + 5 +11B8 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +25FE + 8 +MAUERWERK + 10 +16625.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +25FF + 8 +MAUERWERK + 10 +16625.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +2600 + 8 +MAUERWERK + 0 +POLYLINE + 5 +11BC + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2601 + 8 +MAUERWERK + 10 +16990.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +2602 + 8 +MAUERWERK + 10 +16990.0 + 20 +4335.0 + 30 +0.0 + 0 +VERTEX + 5 +2603 + 8 +MAUERWERK + 10 +16625.0 + 20 +4335.0 + 30 +0.0 + 0 +SEQEND + 5 +2604 + 8 +MAUERWERK + 0 +POLYLINE + 5 +11C1 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2605 + 8 +DAEMMUNG + 10 +16990.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +2606 + 8 +DAEMMUNG + 10 +17070.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +2607 + 8 +DAEMMUNG + 10 +17070.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +2608 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +11C6 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2609 + 8 +DAEMMUNG + 10 +16990.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +260A + 8 +DAEMMUNG + 10 +16990.0 + 20 +5740.0 + 30 +0.0 + 0 +SEQEND + 5 +260B + 8 +DAEMMUNG + 0 +POLYLINE + 5 +11CA + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +260C + 8 +MAUERWERK + 10 +17245.0 + 20 +5692.482548 + 30 +0.0 + 0 +VERTEX + 5 +260D + 8 +MAUERWERK + 10 +17245.0 + 20 +3790.0 + 30 +0.0 + 0 +SEQEND + 5 +260E + 8 +MAUERWERK + 0 +POLYLINE + 5 +11CE + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +260F + 8 +MAUERWERK + 10 +17130.0 + 20 +3790.0 + 30 +0.0 + 0 +VERTEX + 5 +2610 + 8 +MAUERWERK + 10 +17130.0 + 20 +5740.0 + 30 +0.0 + 0 +VERTEX + 5 +2611 + 8 +MAUERWERK + 10 +17168.956181 + 20 +5740.0 + 30 +0.0 + 0 +SEQEND + 5 +2612 + 8 +MAUERWERK + 0 +POLYLINE + 5 +11D3 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2613 + 8 +HOLZ + 10 +8490.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +2614 + 8 +HOLZ + 10 +8490.0 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2615 + 8 +HOLZ + 0 +POLYLINE + 5 +11D7 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2616 + 8 +HOLZ + 10 +12625.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +2617 + 8 +HOLZ + 10 +12625.0 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2618 + 8 +HOLZ + 0 +POLYLINE + 5 +11DB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2619 + 8 +DETAILS + 10 +4795.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +261A + 8 +DETAILS + 10 +4795.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +261B + 8 +DETAILS + 0 +POLYLINE + 5 +11DF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +261C + 8 +DETAILS + 10 +4795.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +261D + 8 +DETAILS + 10 +4795.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +261E + 8 +DETAILS + 0 +POLYLINE + 5 +11E3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +261F + 8 +DETAILS + 10 +4795.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +2620 + 8 +DETAILS + 10 +4795.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +2621 + 8 +DETAILS + 0 +POLYLINE + 5 +11E7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2622 + 8 +DETAILS + 10 +4795.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +2623 + 8 +DETAILS + 10 +4795.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +2624 + 8 +DETAILS + 0 +POLYLINE + 5 +11EB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2625 + 8 +DETAILS + 10 +4795.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +2626 + 8 +DETAILS + 10 +4795.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +2627 + 8 +DETAILS + 0 +POLYLINE + 5 +11EF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2628 + 8 +DETAILS + 10 +4795.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +2629 + 8 +DETAILS + 10 +4795.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +262A + 8 +DETAILS + 0 +POLYLINE + 5 +11F3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +262B + 8 +DETAILS + 10 +4795.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +262C + 8 +DETAILS + 10 +4795.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +262D + 8 +DETAILS + 0 +POLYLINE + 5 +11F7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +262E + 8 +DETAILS + 10 +4795.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +262F + 8 +DETAILS + 10 +4780.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2630 + 8 +DETAILS + 0 +POLYLINE + 5 +11FB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2631 + 8 +DETAILS + 10 +4795.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2632 + 8 +DETAILS + 10 +4810.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2633 + 8 +DETAILS + 0 +POLYLINE + 5 +11FF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2634 + 8 +DETAILS + 10 +8105.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +2635 + 8 +DETAILS + 10 +8105.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +2636 + 8 +DETAILS + 0 +POLYLINE + 5 +1203 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2637 + 8 +DETAILS + 10 +8105.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +2638 + 8 +DETAILS + 10 +8105.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +2639 + 8 +DETAILS + 0 +POLYLINE + 5 +1207 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +263A + 8 +DETAILS + 10 +8105.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +263B + 8 +DETAILS + 10 +8105.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +263C + 8 +DETAILS + 0 +POLYLINE + 5 +120B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +263D + 8 +DETAILS + 10 +8105.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +263E + 8 +DETAILS + 10 +8105.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +263F + 8 +DETAILS + 0 +POLYLINE + 5 +120F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2640 + 8 +DETAILS + 10 +8105.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +2641 + 8 +DETAILS + 10 +8105.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +2642 + 8 +DETAILS + 0 +POLYLINE + 5 +1213 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2643 + 8 +DETAILS + 10 +8105.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +2644 + 8 +DETAILS + 10 +8105.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +2645 + 8 +DETAILS + 0 +POLYLINE + 5 +1217 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2646 + 8 +DETAILS + 10 +8105.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2647 + 8 +DETAILS + 10 +8120.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2648 + 8 +DETAILS + 0 +POLYLINE + 5 +121B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2649 + 8 +DETAILS + 10 +8105.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +264A + 8 +DETAILS + 10 +8090.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +264B + 8 +DETAILS + 0 +POLYLINE + 5 +121F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +264C + 8 +DETAILS + 10 +8105.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +264D + 8 +DETAILS + 10 +8105.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +264E + 8 +DETAILS + 0 +POLYLINE + 5 +1223 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +264F + 8 +DETAILS + 10 +6615.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +2650 + 8 +DETAILS + 10 +6615.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +2651 + 8 +DETAILS + 0 +POLYLINE + 5 +1227 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2652 + 8 +DETAILS + 10 +6615.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +2653 + 8 +DETAILS + 10 +6615.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +2654 + 8 +DETAILS + 0 +POLYLINE + 5 +122B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2655 + 8 +DETAILS + 10 +6615.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +2656 + 8 +DETAILS + 10 +6615.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +2657 + 8 +DETAILS + 0 +POLYLINE + 5 +122F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2658 + 8 +DETAILS + 10 +6615.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +2659 + 8 +DETAILS + 10 +6615.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +265A + 8 +DETAILS + 0 +POLYLINE + 5 +1233 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +265B + 8 +DETAILS + 10 +6615.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +265C + 8 +DETAILS + 10 +6615.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +265D + 8 +DETAILS + 0 +POLYLINE + 5 +1237 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +265E + 8 +DETAILS + 10 +6615.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +265F + 8 +DETAILS + 10 +6615.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +2660 + 8 +DETAILS + 0 +POLYLINE + 5 +123B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2661 + 8 +DETAILS + 10 +6615.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2662 + 8 +DETAILS + 10 +6630.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2663 + 8 +DETAILS + 0 +POLYLINE + 5 +123F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2664 + 8 +DETAILS + 10 +6615.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2665 + 8 +DETAILS + 10 +6600.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2666 + 8 +DETAILS + 0 +POLYLINE + 5 +1243 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2667 + 8 +DETAILS + 10 +6615.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2668 + 8 +DETAILS + 10 +6615.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +2669 + 8 +DETAILS + 0 +POLYLINE + 5 +1247 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +266A + 8 +DETAILS + 10 +16320.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +266B + 8 +DETAILS + 10 +16320.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +266C + 8 +DETAILS + 0 +POLYLINE + 5 +124B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +266D + 8 +DETAILS + 10 +16320.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +266E + 8 +DETAILS + 10 +16320.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +266F + 8 +DETAILS + 0 +POLYLINE + 5 +124F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2670 + 8 +DETAILS + 10 +16320.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +2671 + 8 +DETAILS + 10 +16320.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +2672 + 8 +DETAILS + 0 +POLYLINE + 5 +1253 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2673 + 8 +DETAILS + 10 +16320.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +2674 + 8 +DETAILS + 10 +16320.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +2675 + 8 +DETAILS + 0 +POLYLINE + 5 +1257 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2676 + 8 +DETAILS + 10 +16320.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +2677 + 8 +DETAILS + 10 +16320.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +2678 + 8 +DETAILS + 0 +POLYLINE + 5 +125B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2679 + 8 +DETAILS + 10 +16320.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +267A + 8 +DETAILS + 10 +16320.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +267B + 8 +DETAILS + 0 +POLYLINE + 5 +125F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +267C + 8 +DETAILS + 10 +16320.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +267D + 8 +DETAILS + 10 +16305.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +267E + 8 +DETAILS + 0 +POLYLINE + 5 +1263 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +267F + 8 +DETAILS + 10 +16320.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2680 + 8 +DETAILS + 10 +16335.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2681 + 8 +DETAILS + 0 +POLYLINE + 5 +1267 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2682 + 8 +DETAILS + 10 +16320.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2683 + 8 +DETAILS + 10 +16320.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +2684 + 8 +DETAILS + 0 +POLYLINE + 5 +126B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2685 + 8 +DETAILS + 10 +14500.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +2686 + 8 +DETAILS + 10 +14500.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +2687 + 8 +DETAILS + 0 +POLYLINE + 5 +126F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2688 + 8 +DETAILS + 10 +14500.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +2689 + 8 +DETAILS + 10 +14500.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +268A + 8 +DETAILS + 0 +POLYLINE + 5 +1273 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +268B + 8 +DETAILS + 10 +14500.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +268C + 8 +DETAILS + 10 +14500.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +268D + 8 +DETAILS + 0 +POLYLINE + 5 +1277 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +268E + 8 +DETAILS + 10 +14500.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +268F + 8 +DETAILS + 10 +14500.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +2690 + 8 +DETAILS + 0 +POLYLINE + 5 +127B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2691 + 8 +DETAILS + 10 +14500.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +2692 + 8 +DETAILS + 10 +14500.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +2693 + 8 +DETAILS + 0 +POLYLINE + 5 +127F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2694 + 8 +DETAILS + 10 +14500.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +2695 + 8 +DETAILS + 10 +14500.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +2696 + 8 +DETAILS + 0 +POLYLINE + 5 +1283 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2697 + 8 +DETAILS + 10 +14500.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2698 + 8 +DETAILS + 10 +14515.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2699 + 8 +DETAILS + 0 +POLYLINE + 5 +1287 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +269A + 8 +DETAILS + 10 +14500.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +269B + 8 +DETAILS + 10 +14500.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +269C + 8 +DETAILS + 0 +POLYLINE + 5 +128B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +269D + 8 +DETAILS + 10 +14500.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +269E + 8 +DETAILS + 10 +14485.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +269F + 8 +DETAILS + 0 +POLYLINE + 5 +128F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26A0 + 8 +DETAILS + 10 +13010.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +26A1 + 8 +DETAILS + 10 +13010.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +26A2 + 8 +DETAILS + 0 +POLYLINE + 5 +1293 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26A3 + 8 +DETAILS + 10 +13010.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +26A4 + 8 +DETAILS + 10 +13010.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +26A5 + 8 +DETAILS + 0 +POLYLINE + 5 +1297 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26A6 + 8 +DETAILS + 10 +13010.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +26A7 + 8 +DETAILS + 10 +13010.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +26A8 + 8 +DETAILS + 0 +POLYLINE + 5 +129B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26A9 + 8 +DETAILS + 10 +13010.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +26AA + 8 +DETAILS + 10 +13010.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +26AB + 8 +DETAILS + 0 +POLYLINE + 5 +129F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26AC + 8 +DETAILS + 10 +13010.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +26AD + 8 +DETAILS + 10 +13010.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +26AE + 8 +DETAILS + 0 +POLYLINE + 5 +12A3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26AF + 8 +DETAILS + 10 +13010.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +26B0 + 8 +DETAILS + 10 +13010.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +26B1 + 8 +DETAILS + 0 +POLYLINE + 5 +12A7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26B2 + 8 +DETAILS + 10 +13010.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26B3 + 8 +DETAILS + 10 +12995.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +26B4 + 8 +DETAILS + 0 +POLYLINE + 5 +12AB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26B5 + 8 +DETAILS + 10 +13010.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26B6 + 8 +DETAILS + 10 +13025.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +26B7 + 8 +DETAILS + 0 +POLYLINE + 5 +12AF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26B8 + 8 +DETAILS + 10 +13010.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26B9 + 8 +DETAILS + 10 +13010.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +26BA + 8 +DETAILS + 0 +POLYLINE + 5 +12B3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26BB + 8 +DETAILS + 10 +10155.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +26BC + 8 +DETAILS + 10 +10155.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +26BD + 8 +DETAILS + 0 +POLYLINE + 5 +12B7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26BE + 8 +DETAILS + 10 +10155.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +26BF + 8 +DETAILS + 10 +10155.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +26C0 + 8 +DETAILS + 0 +POLYLINE + 5 +12BB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26C1 + 8 +DETAILS + 10 +10155.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +26C2 + 8 +DETAILS + 10 +10155.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +26C3 + 8 +DETAILS + 0 +POLYLINE + 5 +12BF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26C4 + 8 +DETAILS + 10 +10155.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +26C5 + 8 +DETAILS + 10 +10155.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +26C6 + 8 +DETAILS + 0 +POLYLINE + 5 +12C3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26C7 + 8 +DETAILS + 10 +10155.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +26C8 + 8 +DETAILS + 10 +10155.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +26C9 + 8 +DETAILS + 0 +POLYLINE + 5 +12C7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26CA + 8 +DETAILS + 10 +10155.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +26CB + 8 +DETAILS + 10 +10155.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +26CC + 8 +DETAILS + 0 +POLYLINE + 5 +12CB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26CD + 8 +DETAILS + 10 +10155.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26CE + 8 +DETAILS + 10 +10170.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +26CF + 8 +DETAILS + 0 +POLYLINE + 5 +12CF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26D0 + 8 +DETAILS + 10 +10155.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26D1 + 8 +DETAILS + 10 +10140.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +26D2 + 8 +DETAILS + 0 +POLYLINE + 5 +12D3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26D3 + 8 +DETAILS + 10 +10155.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26D4 + 8 +DETAILS + 10 +10155.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +26D5 + 8 +DETAILS + 0 +POLYLINE + 5 +12D7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26D6 + 8 +DETAILS + 10 +8840.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +26D7 + 8 +DETAILS + 10 +8840.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +26D8 + 8 +DETAILS + 0 +POLYLINE + 5 +12DB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26D9 + 8 +DETAILS + 10 +8840.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +26DA + 8 +DETAILS + 10 +8840.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +26DB + 8 +DETAILS + 0 +POLYLINE + 5 +12DF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26DC + 8 +DETAILS + 10 +8840.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +26DD + 8 +DETAILS + 10 +8840.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +26DE + 8 +DETAILS + 0 +POLYLINE + 5 +12E3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26DF + 8 +DETAILS + 10 +8840.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +26E0 + 8 +DETAILS + 10 +8840.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +26E1 + 8 +DETAILS + 0 +POLYLINE + 5 +12E7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26E2 + 8 +DETAILS + 10 +8840.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +26E3 + 8 +DETAILS + 10 +8840.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +26E4 + 8 +DETAILS + 0 +POLYLINE + 5 +12EB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26E5 + 8 +DETAILS + 10 +8840.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +26E6 + 8 +DETAILS + 10 +8840.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +26E7 + 8 +DETAILS + 0 +POLYLINE + 5 +12EF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26E8 + 8 +DETAILS + 10 +8840.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26E9 + 8 +DETAILS + 10 +8840.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +26EA + 8 +DETAILS + 0 +POLYLINE + 5 +12F3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26EB + 8 +DETAILS + 10 +8840.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26EC + 8 +DETAILS + 10 +8825.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +26ED + 8 +DETAILS + 0 +POLYLINE + 5 +12F7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26EE + 8 +DETAILS + 10 +8840.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +26EF + 8 +DETAILS + 10 +8855.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +26F0 + 8 +DETAILS + 0 +POLYLINE + 5 +12FB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26F1 + 8 +DETAILS + 10 +12275.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +26F2 + 8 +DETAILS + 10 +12275.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +26F3 + 8 +DETAILS + 0 +POLYLINE + 5 +12FF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26F4 + 8 +DETAILS + 10 +12275.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +26F5 + 8 +DETAILS + 10 +12275.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +26F6 + 8 +DETAILS + 0 +POLYLINE + 5 +1303 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26F7 + 8 +DETAILS + 10 +12275.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +26F8 + 8 +DETAILS + 10 +12275.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +26F9 + 8 +DETAILS + 0 +POLYLINE + 5 +1307 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26FA + 8 +DETAILS + 10 +12275.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +26FB + 8 +DETAILS + 10 +12275.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +26FC + 8 +DETAILS + 0 +POLYLINE + 5 +130B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +26FD + 8 +DETAILS + 10 +12275.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +26FE + 8 +DETAILS + 10 +12275.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +26FF + 8 +DETAILS + 0 +POLYLINE + 5 +130F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2700 + 8 +DETAILS + 10 +12275.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +2701 + 8 +DETAILS + 10 +12275.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +2702 + 8 +DETAILS + 0 +POLYLINE + 5 +1313 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2703 + 8 +DETAILS + 10 +12275.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2704 + 8 +DETAILS + 10 +12260.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2705 + 8 +DETAILS + 0 +POLYLINE + 5 +1317 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2706 + 8 +DETAILS + 10 +12275.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2707 + 8 +DETAILS + 10 +12290.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2708 + 8 +DETAILS + 0 +POLYLINE + 5 +131B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2709 + 8 +DETAILS + 10 +12275.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +270A + 8 +DETAILS + 10 +12275.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +270B + 8 +DETAILS + 0 +POLYLINE + 5 +131F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +270C + 8 +DETAILS + 10 +10960.0 + 20 +4665.0 + 30 +0.0 + 0 +VERTEX + 5 +270D + 8 +DETAILS + 10 +10960.0 + 20 +4640.0 + 30 +0.0 + 0 +SEQEND + 5 +270E + 8 +DETAILS + 0 +POLYLINE + 5 +1323 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +270F + 8 +DETAILS + 10 +10960.0 + 20 +4625.0 + 30 +0.0 + 0 +VERTEX + 5 +2710 + 8 +DETAILS + 10 +10960.0 + 20 +4600.0 + 30 +0.0 + 0 +SEQEND + 5 +2711 + 8 +DETAILS + 0 +POLYLINE + 5 +1327 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2712 + 8 +DETAILS + 10 +10960.0 + 20 +4585.0 + 30 +0.0 + 0 +VERTEX + 5 +2713 + 8 +DETAILS + 10 +10960.0 + 20 +4560.0 + 30 +0.0 + 0 +SEQEND + 5 +2714 + 8 +DETAILS + 0 +POLYLINE + 5 +132B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2715 + 8 +DETAILS + 10 +10960.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +2716 + 8 +DETAILS + 10 +10960.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +2717 + 8 +DETAILS + 0 +POLYLINE + 5 +132F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2718 + 8 +DETAILS + 10 +10960.0 + 20 +4485.0 + 30 +0.0 + 0 +VERTEX + 5 +2719 + 8 +DETAILS + 10 +10960.0 + 20 +4460.0 + 30 +0.0 + 0 +SEQEND + 5 +271A + 8 +DETAILS + 0 +POLYLINE + 5 +1333 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +271B + 8 +DETAILS + 10 +10960.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +271C + 8 +DETAILS + 10 +10960.0 + 20 +4415.0 + 30 +0.0 + 0 +SEQEND + 5 +271D + 8 +DETAILS + 0 +POLYLINE + 5 +1337 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +271E + 8 +DETAILS + 10 +10960.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +271F + 8 +DETAILS + 10 +10960.0 + 20 +4680.0 + 30 +0.0 + 0 +SEQEND + 5 +2720 + 8 +DETAILS + 0 +POLYLINE + 5 +133B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2721 + 8 +DETAILS + 10 +10960.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2722 + 8 +DETAILS + 10 +10975.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2723 + 8 +DETAILS + 0 +POLYLINE + 5 +133F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2724 + 8 +DETAILS + 10 +10960.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2725 + 8 +DETAILS + 10 +10945.0 + 20 +4725.0 + 30 +0.0 + 0 +SEQEND + 5 +2726 + 8 +DETAILS + 0 +POLYLINE + 5 +1343 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2727 + 8 +DETAILS + 10 +6995.0 + 20 +6825.0 + 30 +0.0 + 0 +VERTEX + 5 +2728 + 8 +DETAILS + 10 +7040.0 + 20 +6805.0 + 30 +0.0 + 0 +SEQEND + 5 +2729 + 8 +DETAILS + 0 +POLYLINE + 5 +1347 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +272A + 8 +DETAILS + 10 +7060.0 + 20 +6795.0 + 30 +0.0 + 0 +VERTEX + 5 +272B + 8 +DETAILS + 10 +7105.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +272C + 8 +DETAILS + 0 +POLYLINE + 5 +134B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +272D + 8 +DETAILS + 10 +7135.0 + 20 +6760.0 + 30 +0.0 + 0 +VERTEX + 5 +272E + 8 +DETAILS + 10 +7180.0 + 20 +6740.0 + 30 +0.0 + 0 +SEQEND + 5 +272F + 8 +DETAILS + 0 +POLYLINE + 5 +134F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2730 + 8 +DETAILS + 10 +7210.0 + 20 +6725.0 + 30 +0.0 + 0 +VERTEX + 5 +2731 + 8 +DETAILS + 10 +7255.0 + 20 +6705.0 + 30 +0.0 + 0 +SEQEND + 5 +2732 + 8 +DETAILS + 0 +POLYLINE + 5 +1353 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2733 + 8 +DETAILS + 10 +7275.0 + 20 +6695.0 + 30 +0.0 + 0 +VERTEX + 5 +2734 + 8 +DETAILS + 10 +7282.5 + 20 +6691.666667 + 30 +0.0 + 0 +SEQEND + 5 +2735 + 8 +DETAILS + 0 +POLYLINE + 5 +1357 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2736 + 8 +DETAILS + 10 +6995.0 + 20 +6825.0 + 30 +0.0 + 0 +VERTEX + 5 +2737 + 8 +DETAILS + 10 +6985.0 + 20 +6855.0 + 30 +0.0 + 0 +SEQEND + 5 +2738 + 8 +DETAILS + 0 +POLYLINE + 5 +135B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2739 + 8 +DETAILS + 10 +6995.0 + 20 +6825.0 + 30 +0.0 + 0 +VERTEX + 5 +273A + 8 +DETAILS + 10 +6965.0 + 20 +6815.0 + 30 +0.0 + 0 +SEQEND + 5 +273B + 8 +DETAILS + 0 +POLYLINE + 5 +135F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +273C + 8 +DETAILS + 10 +7285.0 + 20 +6690.0 + 30 +0.0 + 0 +VERTEX + 5 +273D + 8 +DETAILS + 10 +7310.0 + 20 +6710.0 + 30 +0.0 + 0 +SEQEND + 5 +273E + 8 +DETAILS + 0 +POLYLINE + 5 +1363 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +273F + 8 +DETAILS + 10 +7285.0 + 20 +6690.0 + 30 +0.0 + 0 +VERTEX + 5 +2740 + 8 +DETAILS + 10 +7305.0 + 20 +6665.0 + 30 +0.0 + 0 +SEQEND + 5 +2741 + 8 +DETAILS + 0 +POLYLINE + 5 +1367 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2742 + 8 +DETAILS + 10 +13830.0 + 20 +6690.0 + 30 +0.0 + 0 +VERTEX + 5 +2743 + 8 +DETAILS + 10 +13810.0 + 20 +6665.0 + 30 +0.0 + 0 +SEQEND + 5 +2744 + 8 +DETAILS + 0 +POLYLINE + 5 +136B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2745 + 8 +DETAILS + 10 +13905.0 + 20 +6725.0 + 30 +0.0 + 0 +VERTEX + 5 +2746 + 8 +DETAILS + 10 +13860.0 + 20 +6705.0 + 30 +0.0 + 0 +SEQEND + 5 +2747 + 8 +DETAILS + 0 +POLYLINE + 5 +136F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2748 + 8 +DETAILS + 10 +14120.0 + 20 +6825.0 + 30 +0.0 + 0 +VERTEX + 5 +2749 + 8 +DETAILS + 10 +14075.0 + 20 +6805.0 + 30 +0.0 + 0 +SEQEND + 5 +274A + 8 +DETAILS + 0 +POLYLINE + 5 +1373 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +274B + 8 +DETAILS + 10 +14120.0 + 20 +6825.0 + 30 +0.0 + 0 +VERTEX + 5 +274C + 8 +DETAILS + 10 +14150.0 + 20 +6815.0 + 30 +0.0 + 0 +SEQEND + 5 +274D + 8 +DETAILS + 0 +POLYLINE + 5 +1377 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +274E + 8 +DETAILS + 10 +14120.0 + 20 +6825.0 + 30 +0.0 + 0 +VERTEX + 5 +274F + 8 +DETAILS + 10 +14130.0 + 20 +6855.0 + 30 +0.0 + 0 +SEQEND + 5 +2750 + 8 +DETAILS + 0 +POLYLINE + 5 +137B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2751 + 8 +DETAILS + 10 +13980.0 + 20 +6760.0 + 30 +0.0 + 0 +VERTEX + 5 +2752 + 8 +DETAILS + 10 +13935.0 + 20 +6740.0 + 30 +0.0 + 0 +SEQEND + 5 +2753 + 8 +DETAILS + 0 +POLYLINE + 5 +137F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2754 + 8 +DETAILS + 10 +14055.0 + 20 +6795.0 + 30 +0.0 + 0 +VERTEX + 5 +2755 + 8 +DETAILS + 10 +14010.0 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +2756 + 8 +DETAILS + 0 +POLYLINE + 5 +1383 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2757 + 8 +DETAILS + 10 +13830.0 + 20 +6690.0 + 30 +0.0 + 0 +VERTEX + 5 +2758 + 8 +DETAILS + 10 +13805.0 + 20 +6710.0 + 30 +0.0 + 0 +SEQEND + 5 +2759 + 8 +DETAILS + 0 +POLYLINE + 5 +1387 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +275A + 8 +DETAILS + 10 +13840.0 + 20 +6695.0 + 30 +0.0 + 0 +VERTEX + 5 +275B + 8 +DETAILS + 10 +13832.5 + 20 +6691.666667 + 30 +0.0 + 0 +SEQEND + 5 +275C + 8 +DETAILS + 0 +POLYLINE + 5 +138B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +275D + 8 +DETAILS + 10 +3915.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +275E + 8 +DETAILS + 10 +3945.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +275F + 8 +DETAILS + 0 +POLYLINE + 5 +138F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2760 + 8 +DETAILS + 10 +3960.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2761 + 8 +DETAILS + 10 +3985.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2762 + 8 +DETAILS + 0 +POLYLINE + 5 +1393 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2763 + 8 +DETAILS + 10 +3990.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2764 + 8 +DETAILS + 10 +4045.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2765 + 8 +DETAILS + 0 +POLYLINE + 5 +1397 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2766 + 8 +DETAILS + 10 +4060.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2767 + 8 +DETAILS + 10 +4085.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2768 + 8 +DETAILS + 0 +POLYLINE + 5 +139B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2769 + 8 +DETAILS + 10 +4100.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +276A + 8 +DETAILS + 10 +4125.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +276B + 8 +DETAILS + 0 +POLYLINE + 5 +139F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +276C + 8 +DETAILS + 10 +4145.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +276D + 8 +DETAILS + 10 +4165.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +276E + 8 +DETAILS + 0 +POLYLINE + 5 +13A3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +276F + 8 +DETAILS + 10 +4185.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2770 + 8 +DETAILS + 10 +4215.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2771 + 8 +DETAILS + 0 +POLYLINE + 5 +13A7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2772 + 8 +DETAILS + 10 +4005.0 + 20 +3910.0 + 30 +0.0 + 0 +VERTEX + 5 +2773 + 8 +DETAILS + 10 +4005.0 + 20 +3850.0 + 30 +0.0 + 0 +SEQEND + 5 +2774 + 8 +DETAILS + 0 +POLYLINE + 5 +13AB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2775 + 8 +DETAILS + 10 +4035.646689 + 20 +3894.975816 + 30 +0.0 + 0 +VERTEX + 5 +2776 + 8 +DETAILS + 10 +4035.646689 + 20 +3864.975816 + 30 +0.0 + 0 +SEQEND + 5 +2777 + 8 +DETAILS + 0 +POLYLINE + 5 +13AF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2778 + 8 +DETAILS + 10 +3915.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2779 + 8 +DETAILS + 10 +3945.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +277A + 8 +DETAILS + 0 +POLYLINE + 5 +13B3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +277B + 8 +DETAILS + 10 +3960.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +277C + 8 +DETAILS + 10 +3985.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +277D + 8 +DETAILS + 0 +POLYLINE + 5 +13B7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +277E + 8 +DETAILS + 10 +3990.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +277F + 8 +DETAILS + 10 +4045.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2780 + 8 +DETAILS + 0 +POLYLINE + 5 +13BB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2781 + 8 +DETAILS + 10 +4005.0 + 20 +4214.005135 + 30 +0.0 + 0 +VERTEX + 5 +2782 + 8 +DETAILS + 10 +4005.0 + 20 +4154.005135 + 30 +0.0 + 0 +SEQEND + 5 +2783 + 8 +DETAILS + 0 +POLYLINE + 5 +13BF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2784 + 8 +DETAILS + 10 +4035.646689 + 20 +4198.980952 + 30 +0.0 + 0 +VERTEX + 5 +2785 + 8 +DETAILS + 10 +4035.646689 + 20 +4168.980952 + 30 +0.0 + 0 +SEQEND + 5 +2786 + 8 +DETAILS + 0 +POLYLINE + 5 +13C3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2787 + 8 +DETAILS + 10 +4060.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2788 + 8 +DETAILS + 10 +4085.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2789 + 8 +DETAILS + 0 +POLYLINE + 5 +13C7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +278A + 8 +DETAILS + 10 +4100.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +278B + 8 +DETAILS + 10 +4125.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +278C + 8 +DETAILS + 0 +POLYLINE + 5 +13CB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +278D + 8 +DETAILS + 10 +4145.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +278E + 8 +DETAILS + 10 +4165.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +278F + 8 +DETAILS + 0 +POLYLINE + 5 +13CF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2790 + 8 +DETAILS + 10 +4185.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2791 + 8 +DETAILS + 10 +4215.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2792 + 8 +DETAILS + 0 +POLYLINE + 5 +13D3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2793 + 8 +DETAILS + 10 +3915.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2794 + 8 +DETAILS + 10 +3945.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2795 + 8 +DETAILS + 0 +POLYLINE + 5 +13D7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2796 + 8 +DETAILS + 10 +3960.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2797 + 8 +DETAILS + 10 +3985.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2798 + 8 +DETAILS + 0 +POLYLINE + 5 +13DB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2799 + 8 +DETAILS + 10 +4005.0 + 20 +4677.638341 + 30 +0.0 + 0 +VERTEX + 5 +279A + 8 +DETAILS + 10 +4005.0 + 20 +4617.638341 + 30 +0.0 + 0 +SEQEND + 5 +279B + 8 +DETAILS + 0 +POLYLINE + 5 +13DF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +279C + 8 +DETAILS + 10 +3990.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +279D + 8 +DETAILS + 10 +4045.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +279E + 8 +DETAILS + 0 +POLYLINE + 5 +13E3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +279F + 8 +DETAILS + 10 +4035.646689 + 20 +4662.614157 + 30 +0.0 + 0 +VERTEX + 5 +27A0 + 8 +DETAILS + 10 +4035.646689 + 20 +4632.614157 + 30 +0.0 + 0 +SEQEND + 5 +27A1 + 8 +DETAILS + 0 +POLYLINE + 5 +13E7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27A2 + 8 +DETAILS + 10 +4060.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +27A3 + 8 +DETAILS + 10 +4085.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +27A4 + 8 +DETAILS + 0 +POLYLINE + 5 +13EB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27A5 + 8 +DETAILS + 10 +4100.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +27A6 + 8 +DETAILS + 10 +4125.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +27A7 + 8 +DETAILS + 0 +POLYLINE + 5 +13EF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27A8 + 8 +DETAILS + 10 +4185.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +27A9 + 8 +DETAILS + 10 +4215.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +27AA + 8 +DETAILS + 0 +POLYLINE + 5 +13F3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27AB + 8 +DETAILS + 10 +4145.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +27AC + 8 +DETAILS + 10 +4165.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +27AD + 8 +DETAILS + 0 +POLYLINE + 5 +13F7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27AE + 8 +DETAILS + 10 +3915.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27AF + 8 +DETAILS + 10 +3945.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27B0 + 8 +DETAILS + 0 +POLYLINE + 5 +13FB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27B1 + 8 +DETAILS + 10 +3960.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27B2 + 8 +DETAILS + 10 +3985.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27B3 + 8 +DETAILS + 0 +POLYLINE + 5 +13FF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27B4 + 8 +DETAILS + 10 +4005.0 + 20 +4968.630057 + 30 +0.0 + 0 +VERTEX + 5 +27B5 + 8 +DETAILS + 10 +4005.0 + 20 +4908.630057 + 30 +0.0 + 0 +SEQEND + 5 +27B6 + 8 +DETAILS + 0 +POLYLINE + 5 +1403 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27B7 + 8 +DETAILS + 10 +3990.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27B8 + 8 +DETAILS + 10 +4045.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27B9 + 8 +DETAILS + 0 +POLYLINE + 5 +1407 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27BA + 8 +DETAILS + 10 +4035.646689 + 20 +4953.605874 + 30 +0.0 + 0 +VERTEX + 5 +27BB + 8 +DETAILS + 10 +4035.646689 + 20 +4923.605874 + 30 +0.0 + 0 +SEQEND + 5 +27BC + 8 +DETAILS + 0 +POLYLINE + 5 +140B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27BD + 8 +DETAILS + 10 +4060.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27BE + 8 +DETAILS + 10 +4085.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27BF + 8 +DETAILS + 0 +POLYLINE + 5 +140F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27C0 + 8 +DETAILS + 10 +4100.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27C1 + 8 +DETAILS + 10 +4125.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27C2 + 8 +DETAILS + 0 +POLYLINE + 5 +1413 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27C3 + 8 +DETAILS + 10 +4145.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27C4 + 8 +DETAILS + 10 +4165.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27C5 + 8 +DETAILS + 0 +POLYLINE + 5 +1417 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27C6 + 8 +DETAILS + 10 +4185.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +27C7 + 8 +DETAILS + 10 +4215.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +27C8 + 8 +DETAILS + 0 +POLYLINE + 5 +141B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27C9 + 8 +DETAILS + 10 +3915.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27CA + 8 +DETAILS + 10 +3945.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27CB + 8 +DETAILS + 0 +POLYLINE + 5 +141F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27CC + 8 +DETAILS + 10 +3960.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27CD + 8 +DETAILS + 10 +3985.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27CE + 8 +DETAILS + 0 +POLYLINE + 5 +1423 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27CF + 8 +DETAILS + 10 +4005.0 + 20 +5309.376847 + 30 +0.0 + 0 +VERTEX + 5 +27D0 + 8 +DETAILS + 10 +4005.0 + 20 +5249.376847 + 30 +0.0 + 0 +SEQEND + 5 +27D1 + 8 +DETAILS + 0 +POLYLINE + 5 +1427 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27D2 + 8 +DETAILS + 10 +3990.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27D3 + 8 +DETAILS + 10 +4045.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27D4 + 8 +DETAILS + 0 +POLYLINE + 5 +142B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27D5 + 8 +DETAILS + 10 +4035.646689 + 20 +5294.352664 + 30 +0.0 + 0 +VERTEX + 5 +27D6 + 8 +DETAILS + 10 +4035.646689 + 20 +5264.352664 + 30 +0.0 + 0 +SEQEND + 5 +27D7 + 8 +DETAILS + 0 +POLYLINE + 5 +142F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27D8 + 8 +DETAILS + 10 +4060.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27D9 + 8 +DETAILS + 10 +4085.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27DA + 8 +DETAILS + 0 +POLYLINE + 5 +1433 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27DB + 8 +DETAILS + 10 +4100.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27DC + 8 +DETAILS + 10 +4125.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27DD + 8 +DETAILS + 0 +POLYLINE + 5 +1437 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27DE + 8 +DETAILS + 10 +4145.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27DF + 8 +DETAILS + 10 +4165.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27E0 + 8 +DETAILS + 0 +POLYLINE + 5 +143B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27E1 + 8 +DETAILS + 10 +4185.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +27E2 + 8 +DETAILS + 10 +4215.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +27E3 + 8 +DETAILS + 0 +POLYLINE + 5 +143F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27E4 + 8 +DETAILS + 10 +3915.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27E5 + 8 +DETAILS + 10 +3945.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27E6 + 8 +DETAILS + 0 +POLYLINE + 5 +1443 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27E7 + 8 +DETAILS + 10 +3960.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27E8 + 8 +DETAILS + 10 +3985.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27E9 + 8 +DETAILS + 0 +POLYLINE + 5 +1447 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27EA + 8 +DETAILS + 10 +4005.0 + 20 +5698.370933 + 30 +0.0 + 0 +VERTEX + 5 +27EB + 8 +DETAILS + 10 +4005.0 + 20 +5638.370933 + 30 +0.0 + 0 +SEQEND + 5 +27EC + 8 +DETAILS + 0 +POLYLINE + 5 +144B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27ED + 8 +DETAILS + 10 +3990.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27EE + 8 +DETAILS + 10 +4045.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27EF + 8 +DETAILS + 0 +POLYLINE + 5 +144F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27F0 + 8 +DETAILS + 10 +4035.646689 + 20 +5683.346749 + 30 +0.0 + 0 +VERTEX + 5 +27F1 + 8 +DETAILS + 10 +4035.646689 + 20 +5653.346749 + 30 +0.0 + 0 +SEQEND + 5 +27F2 + 8 +DETAILS + 0 +POLYLINE + 5 +1453 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27F3 + 8 +DETAILS + 10 +4060.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27F4 + 8 +DETAILS + 10 +4085.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27F5 + 8 +DETAILS + 0 +POLYLINE + 5 +1457 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27F6 + 8 +DETAILS + 10 +4100.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27F7 + 8 +DETAILS + 10 +4125.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27F8 + 8 +DETAILS + 0 +POLYLINE + 5 +145B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27F9 + 8 +DETAILS + 10 +4145.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27FA + 8 +DETAILS + 10 +4165.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27FB + 8 +DETAILS + 0 +POLYLINE + 5 +145F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27FC + 8 +DETAILS + 10 +4185.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +27FD + 8 +DETAILS + 10 +4215.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +27FE + 8 +DETAILS + 0 +POLYLINE + 5 +1463 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +27FF + 8 +DETAILS + 10 +17200.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2800 + 8 +DETAILS + 10 +17170.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2801 + 8 +DETAILS + 0 +POLYLINE + 5 +1467 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2802 + 8 +DETAILS + 10 +17155.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2803 + 8 +DETAILS + 10 +17130.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2804 + 8 +DETAILS + 0 +POLYLINE + 5 +146B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2805 + 8 +DETAILS + 10 +17125.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2806 + 8 +DETAILS + 10 +17070.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2807 + 8 +DETAILS + 0 +POLYLINE + 5 +146F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2808 + 8 +DETAILS + 10 +17110.0 + 20 +4214.005135 + 30 +0.0 + 0 +VERTEX + 5 +2809 + 8 +DETAILS + 10 +17110.0 + 20 +4154.005135 + 30 +0.0 + 0 +SEQEND + 5 +280A + 8 +DETAILS + 0 +POLYLINE + 5 +1473 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +280B + 8 +DETAILS + 10 +17079.353311 + 20 +4198.980952 + 30 +0.0 + 0 +VERTEX + 5 +280C + 8 +DETAILS + 10 +17079.353311 + 20 +4168.980952 + 30 +0.0 + 0 +SEQEND + 5 +280D + 8 +DETAILS + 0 +POLYLINE + 5 +1477 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +280E + 8 +DETAILS + 10 +17055.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +280F + 8 +DETAILS + 10 +17030.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2810 + 8 +DETAILS + 0 +POLYLINE + 5 +147B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2811 + 8 +DETAILS + 10 +17015.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2812 + 8 +DETAILS + 10 +16990.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2813 + 8 +DETAILS + 0 +POLYLINE + 5 +147F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2814 + 8 +DETAILS + 10 +16970.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2815 + 8 +DETAILS + 10 +16950.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2816 + 8 +DETAILS + 0 +POLYLINE + 5 +1483 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2817 + 8 +DETAILS + 10 +16930.0 + 20 +4184.005135 + 30 +0.0 + 0 +VERTEX + 5 +2818 + 8 +DETAILS + 10 +16900.0 + 20 +4184.005135 + 30 +0.0 + 0 +SEQEND + 5 +2819 + 8 +DETAILS + 0 +POLYLINE + 5 +1487 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +281A + 8 +DETAILS + 10 +17200.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +281B + 8 +DETAILS + 10 +17170.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +281C + 8 +DETAILS + 0 +POLYLINE + 5 +148B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +281D + 8 +DETAILS + 10 +17155.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +281E + 8 +DETAILS + 10 +17130.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +281F + 8 +DETAILS + 0 +POLYLINE + 5 +148F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2820 + 8 +DETAILS + 10 +17125.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2821 + 8 +DETAILS + 10 +17070.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2822 + 8 +DETAILS + 0 +POLYLINE + 5 +1493 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2823 + 8 +DETAILS + 10 +17110.0 + 20 +3910.0 + 30 +0.0 + 0 +VERTEX + 5 +2824 + 8 +DETAILS + 10 +17110.0 + 20 +3850.0 + 30 +0.0 + 0 +SEQEND + 5 +2825 + 8 +DETAILS + 0 +POLYLINE + 5 +1497 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2826 + 8 +DETAILS + 10 +17079.353311 + 20 +3894.975816 + 30 +0.0 + 0 +VERTEX + 5 +2827 + 8 +DETAILS + 10 +17079.353311 + 20 +3864.975816 + 30 +0.0 + 0 +SEQEND + 5 +2828 + 8 +DETAILS + 0 +POLYLINE + 5 +149B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2829 + 8 +DETAILS + 10 +17055.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +282A + 8 +DETAILS + 10 +17030.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +282B + 8 +DETAILS + 0 +POLYLINE + 5 +149F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +282C + 8 +DETAILS + 10 +17015.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +282D + 8 +DETAILS + 10 +16990.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +282E + 8 +DETAILS + 0 +POLYLINE + 5 +14A3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +282F + 8 +DETAILS + 10 +16970.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2830 + 8 +DETAILS + 10 +16950.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2831 + 8 +DETAILS + 0 +POLYLINE + 5 +14A7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2832 + 8 +DETAILS + 10 +16930.0 + 20 +3880.0 + 30 +0.0 + 0 +VERTEX + 5 +2833 + 8 +DETAILS + 10 +16900.0 + 20 +3880.0 + 30 +0.0 + 0 +SEQEND + 5 +2834 + 8 +DETAILS + 0 +POLYLINE + 5 +14AB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2835 + 8 +DETAILS + 10 +17200.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +2836 + 8 +DETAILS + 10 +17170.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +2837 + 8 +DETAILS + 0 +POLYLINE + 5 +14AF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2838 + 8 +DETAILS + 10 +17155.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +2839 + 8 +DETAILS + 10 +17130.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +283A + 8 +DETAILS + 0 +POLYLINE + 5 +14B3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +283B + 8 +DETAILS + 10 +17125.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +283C + 8 +DETAILS + 10 +17070.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +283D + 8 +DETAILS + 0 +POLYLINE + 5 +14B7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +283E + 8 +DETAILS + 10 +17110.0 + 20 +4968.630057 + 30 +0.0 + 0 +VERTEX + 5 +283F + 8 +DETAILS + 10 +17110.0 + 20 +4908.630057 + 30 +0.0 + 0 +SEQEND + 5 +2840 + 8 +DETAILS + 0 +POLYLINE + 5 +14BB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2841 + 8 +DETAILS + 10 +17079.353311 + 20 +4953.605874 + 30 +0.0 + 0 +VERTEX + 5 +2842 + 8 +DETAILS + 10 +17079.353311 + 20 +4923.605874 + 30 +0.0 + 0 +SEQEND + 5 +2843 + 8 +DETAILS + 0 +POLYLINE + 5 +14BF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2844 + 8 +DETAILS + 10 +17055.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +2845 + 8 +DETAILS + 10 +17030.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +2846 + 8 +DETAILS + 0 +POLYLINE + 5 +14C3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2847 + 8 +DETAILS + 10 +17015.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +2848 + 8 +DETAILS + 10 +16990.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +2849 + 8 +DETAILS + 0 +POLYLINE + 5 +14C7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +284A + 8 +DETAILS + 10 +16970.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +284B + 8 +DETAILS + 10 +16950.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +284C + 8 +DETAILS + 0 +POLYLINE + 5 +14CB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +284D + 8 +DETAILS + 10 +16930.0 + 20 +4938.630057 + 30 +0.0 + 0 +VERTEX + 5 +284E + 8 +DETAILS + 10 +16900.0 + 20 +4938.630057 + 30 +0.0 + 0 +SEQEND + 5 +284F + 8 +DETAILS + 0 +POLYLINE + 5 +14CF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2850 + 8 +DETAILS + 10 +17200.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2851 + 8 +DETAILS + 10 +17170.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2852 + 8 +DETAILS + 0 +POLYLINE + 5 +14D3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2853 + 8 +DETAILS + 10 +17155.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2854 + 8 +DETAILS + 10 +17130.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2855 + 8 +DETAILS + 0 +POLYLINE + 5 +14D7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2856 + 8 +DETAILS + 10 +17125.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2857 + 8 +DETAILS + 10 +17070.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2858 + 8 +DETAILS + 0 +POLYLINE + 5 +14DB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2859 + 8 +DETAILS + 10 +17110.0 + 20 +4677.638341 + 30 +0.0 + 0 +VERTEX + 5 +285A + 8 +DETAILS + 10 +17110.0 + 20 +4617.638341 + 30 +0.0 + 0 +SEQEND + 5 +285B + 8 +DETAILS + 0 +POLYLINE + 5 +14DF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +285C + 8 +DETAILS + 10 +17079.353311 + 20 +4662.614157 + 30 +0.0 + 0 +VERTEX + 5 +285D + 8 +DETAILS + 10 +17079.353311 + 20 +4632.614157 + 30 +0.0 + 0 +SEQEND + 5 +285E + 8 +DETAILS + 0 +POLYLINE + 5 +14E3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +285F + 8 +DETAILS + 10 +17055.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2860 + 8 +DETAILS + 10 +17030.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2861 + 8 +DETAILS + 0 +POLYLINE + 5 +14E7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2862 + 8 +DETAILS + 10 +17015.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2863 + 8 +DETAILS + 10 +16990.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2864 + 8 +DETAILS + 0 +POLYLINE + 5 +14EB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2865 + 8 +DETAILS + 10 +16970.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2866 + 8 +DETAILS + 10 +16950.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +2867 + 8 +DETAILS + 0 +POLYLINE + 5 +14EF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2868 + 8 +DETAILS + 10 +16930.0 + 20 +4647.638341 + 30 +0.0 + 0 +VERTEX + 5 +2869 + 8 +DETAILS + 10 +16900.0 + 20 +4647.638341 + 30 +0.0 + 0 +SEQEND + 5 +286A + 8 +DETAILS + 0 +POLYLINE + 5 +14F3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +286B + 8 +DETAILS + 10 +17200.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +286C + 8 +DETAILS + 10 +17170.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +286D + 8 +DETAILS + 0 +POLYLINE + 5 +14F7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +286E + 8 +DETAILS + 10 +17155.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +286F + 8 +DETAILS + 10 +17130.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +2870 + 8 +DETAILS + 0 +POLYLINE + 5 +14FB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2871 + 8 +DETAILS + 10 +17110.0 + 20 +5309.376847 + 30 +0.0 + 0 +VERTEX + 5 +2872 + 8 +DETAILS + 10 +17110.0 + 20 +5249.376847 + 30 +0.0 + 0 +SEQEND + 5 +2873 + 8 +DETAILS + 0 +POLYLINE + 5 +14FF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2874 + 8 +DETAILS + 10 +17125.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +2875 + 8 +DETAILS + 10 +17070.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +2876 + 8 +DETAILS + 0 +POLYLINE + 5 +1503 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2877 + 8 +DETAILS + 10 +17079.353311 + 20 +5294.352664 + 30 +0.0 + 0 +VERTEX + 5 +2878 + 8 +DETAILS + 10 +17079.353311 + 20 +5264.352664 + 30 +0.0 + 0 +SEQEND + 5 +2879 + 8 +DETAILS + 0 +POLYLINE + 5 +1507 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +287A + 8 +DETAILS + 10 +17055.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +287B + 8 +DETAILS + 10 +17030.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +287C + 8 +DETAILS + 0 +LINE + 5 +150B + 8 +0 + 62 + 0 + 10 +17065.0 + 20 +5279.42286 + 30 +0.0 + 11 +17040.0 + 21 +5279.42286 + 31 +0.0 + 0 +POLYLINE + 5 +150C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +287D + 8 +DETAILS + 10 +17015.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +287E + 8 +DETAILS + 10 +16990.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +287F + 8 +DETAILS + 0 +POLYLINE + 5 +1510 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2880 + 8 +DETAILS + 10 +16970.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +2881 + 8 +DETAILS + 10 +16950.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +2882 + 8 +DETAILS + 0 +POLYLINE + 5 +1514 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2883 + 8 +DETAILS + 10 +16930.0 + 20 +5279.376847 + 30 +0.0 + 0 +VERTEX + 5 +2884 + 8 +DETAILS + 10 +16900.0 + 20 +5279.376847 + 30 +0.0 + 0 +SEQEND + 5 +2885 + 8 +DETAILS + 0 +POLYLINE + 5 +1518 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2886 + 8 +DETAILS + 10 +17200.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +2887 + 8 +DETAILS + 10 +17170.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +2888 + 8 +DETAILS + 0 +POLYLINE + 5 +151C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2889 + 8 +DETAILS + 10 +17155.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +288A + 8 +DETAILS + 10 +17130.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +288B + 8 +DETAILS + 0 +POLYLINE + 5 +1520 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +288C + 8 +DETAILS + 10 +17110.0 + 20 +5698.370933 + 30 +0.0 + 0 +VERTEX + 5 +288D + 8 +DETAILS + 10 +17110.0 + 20 +5638.370933 + 30 +0.0 + 0 +SEQEND + 5 +288E + 8 +DETAILS + 0 +POLYLINE + 5 +1524 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +288F + 8 +DETAILS + 10 +17125.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +2890 + 8 +DETAILS + 10 +17070.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +2891 + 8 +DETAILS + 0 +POLYLINE + 5 +1528 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2892 + 8 +DETAILS + 10 +17079.353311 + 20 +5683.346749 + 30 +0.0 + 0 +VERTEX + 5 +2893 + 8 +DETAILS + 10 +17079.353311 + 20 +5653.346749 + 30 +0.0 + 0 +SEQEND + 5 +2894 + 8 +DETAILS + 0 +POLYLINE + 5 +152C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2895 + 8 +DETAILS + 10 +17055.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +2896 + 8 +DETAILS + 10 +17030.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +2897 + 8 +DETAILS + 0 +POLYLINE + 5 +1530 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +2898 + 8 +DETAILS + 10 +17015.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +2899 + 8 +DETAILS + 10 +16990.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +289A + 8 +DETAILS + 0 +POLYLINE + 5 +1534 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +289B + 8 +DETAILS + 10 +16970.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +289C + 8 +DETAILS + 10 +16950.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +289D + 8 +DETAILS + 0 +POLYLINE + 5 +1538 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +289E + 8 +DETAILS + 10 +16930.0 + 20 +5668.370933 + 30 +0.0 + 0 +VERTEX + 5 +289F + 8 +DETAILS + 10 +16900.0 + 20 +5668.370933 + 30 +0.0 + 0 +SEQEND + 5 +28A0 + 8 +DETAILS + 0 +POLYLINE + 5 +153C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +28A1 + 8 +HOLZ + 10 +7080.0 + 20 +6555.0 + 30 +0.0 + 0 +VERTEX + 5 +28A2 + 8 +HOLZ + 10 +7285.0 + 20 +6555.0 + 30 +0.0 + 0 +SEQEND + 5 +28A3 + 8 +HOLZ + 0 +POLYLINE + 5 +1540 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +28A4 + 8 +HOLZ + 10 +7285.0 + 20 +6281.0 + 30 +0.0 + 0 +VERTEX + 5 +28A5 + 8 +HOLZ + 10 +7080.0 + 20 +6281.0 + 30 +0.0 + 0 +SEQEND + 5 +28A6 + 8 +HOLZ + 0 +POLYLINE + 5 +1544 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1545 + 8 +HOLZ + 10 +7088.07284 + 20 +6503.677065 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1546 + 8 +HOLZ + 10 +7088.07284 + 20 +6503.677065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1547 + 8 +HOLZ + 10 +7096.604084 + 20 +6503.761117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1548 + 8 +HOLZ + 10 +7103.533424 + 20 +6503.996953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1549 + 8 +HOLZ + 10 +7109.081304 + 20 +6504.360091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +154A + 8 +HOLZ + 10 +7113.468172 + 20 +6504.826051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +154B + 8 +HOLZ + 10 +7116.914472 + 20 +6505.370351 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +154C + 8 +HOLZ + 10 +7119.640651 + 20 +6505.968509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +154D + 8 +HOLZ + 10 +7121.867154 + 20 +6506.596046 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +154E + 8 +HOLZ + 10 +7123.814428 + 20 +6507.22848 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +154F + 8 +HOLZ + 10 +7125.667401 + 20 +6507.845001 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1550 + 8 +HOLZ + 10 +7127.468938 + 20 +6508.439489 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1551 + 8 +HOLZ + 10 +7129.226388 + 20 +6509.009497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1552 + 8 +HOLZ + 10 +7130.947096 + 20 +6509.552575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1553 + 8 +HOLZ + 10 +7132.638412 + 20 +6510.066276 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1554 + 8 +HOLZ + 10 +7134.307684 + 20 +6510.548151 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1555 + 8 +HOLZ + 10 +7135.962258 + 20 +6510.995753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1556 + 8 +HOLZ + 10 +7137.609483 + 20 +6511.406632 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1557 + 8 +HOLZ + 10 +7139.255482 + 20 +6511.78038 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1558 + 8 +HOLZ + 10 +7140.90148 + 20 +6512.124751 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1559 + 8 +HOLZ + 10 +7142.547477 + 20 +6512.449536 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +155A + 8 +HOLZ + 10 +7144.193473 + 20 +6512.764529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +155B + 8 +HOLZ + 10 +7145.839469 + 20 +6513.079522 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +155C + 8 +HOLZ + 10 +7147.485464 + 20 +6513.404307 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +155D + 8 +HOLZ + 10 +7149.131458 + 20 +6513.748678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +155E + 8 +HOLZ + 10 +7150.777452 + 20 +6514.122427 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +155F + 8 +HOLZ + 10 +7152.423447 + 20 +6514.533918 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1560 + 8 +HOLZ + 10 +7154.069441 + 20 +6514.985803 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1561 + 8 +HOLZ + 10 +7155.715435 + 20 +6515.479307 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1562 + 8 +HOLZ + 10 +7157.36143 + 20 +6516.015653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1563 + 8 +HOLZ + 10 +7159.007424 + 20 +6516.596065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1564 + 8 +HOLZ + 10 +7160.653418 + 20 +6517.221768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1565 + 8 +HOLZ + 10 +7162.299413 + 20 +6517.893984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1566 + 8 +HOLZ + 10 +7163.945407 + 20 +6518.613938 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1567 + 8 +HOLZ + 10 +7165.587727 + 20 +6519.382039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1568 + 8 +HOLZ + 10 +7167.208003 + 20 +6520.195429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1569 + 8 +HOLZ + 10 +7168.784189 + 20 +6521.050437 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +156A + 8 +HOLZ + 10 +7170.294242 + 20 +6521.943391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +156B + 8 +HOLZ + 10 +7171.716117 + 20 +6522.870619 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +156C + 8 +HOLZ + 10 +7173.027769 + 20 +6523.828449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +156D + 8 +HOLZ + 10 +7174.207154 + 20 +6524.813209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +156E + 8 +HOLZ + 10 +7175.232227 + 20 +6525.821227 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +156F + 8 +HOLZ + 10 +7176.090946 + 20 +6526.849239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1570 + 8 +HOLZ + 10 +7176.811273 + 20 +6527.895613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1571 + 8 +HOLZ + 10 +7177.431175 + 20 +6528.959125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1572 + 8 +HOLZ + 10 +7177.988618 + 20 +6530.03855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1573 + 8 +HOLZ + 10 +7178.521567 + 20 +6531.132664 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1574 + 8 +HOLZ + 10 +7179.067987 + 20 +6532.240243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1575 + 8 +HOLZ + 10 +7179.665844 + 20 +6533.360063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1576 + 8 +HOLZ + 10 +7180.353103 + 20 +6534.4909 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1577 + 8 +HOLZ + 10 +7181.162016 + 20 +6535.627652 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1578 + 8 +HOLZ + 10 +7182.10197 + 20 +6536.749715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1579 + 8 +HOLZ + 10 +7183.176642 + 20 +6537.832608 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +157A + 8 +HOLZ + 10 +7184.389704 + 20 +6538.851848 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +157B + 8 +HOLZ + 10 +7185.744832 + 20 +6539.782956 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +157C + 8 +HOLZ + 10 +7187.245699 + 20 +6540.601449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +157D + 8 +HOLZ + 10 +7188.89598 + 20 +6541.282846 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +157E + 8 +HOLZ + 10 +7190.699349 + 20 +6541.802666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +157F + 8 +HOLZ + 10 +7192.654582 + 20 +6542.144791 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1580 + 8 +HOLZ + 10 +7194.740858 + 20 +6542.326563 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1581 + 8 +HOLZ + 10 +7196.932459 + 20 +6542.373688 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1582 + 8 +HOLZ + 10 +7199.203666 + 20 +6542.31187 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1583 + 8 +HOLZ + 10 +7201.52876 + 20 +6542.166816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1584 + 8 +HOLZ + 10 +7203.882022 + 20 +6541.96423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1585 + 8 +HOLZ + 10 +7206.237734 + 20 +6541.729819 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1586 + 8 +HOLZ + 10 +7208.570176 + 20 +6541.489288 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1587 + 8 +HOLZ + 10 +7210.864754 + 20 +6541.266199 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1588 + 8 +HOLZ + 10 +7213.151372 + 20 +6541.075549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1589 + 8 +HOLZ + 10 +7215.471056 + 20 +6540.930189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +158A + 8 +HOLZ + 10 +7217.864835 + 20 +6540.842973 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +158B + 8 +HOLZ + 10 +7220.373737 + 20 +6540.826753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +158C + 8 +HOLZ + 10 +7223.038787 + 20 +6540.894382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +158D + 8 +HOLZ + 10 +7225.901015 + 20 +6541.058713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +158E + 8 +HOLZ + 10 +7229.001448 + 20 +6541.332599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +158F + 8 +HOLZ + 10 +7232.353149 + 20 +6541.734603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1590 + 8 +HOLZ + 10 +7235.857325 + 20 +6542.306141 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1591 + 8 +HOLZ + 10 +7239.387218 + 20 +6543.094339 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1592 + 8 +HOLZ + 10 +7242.81607 + 20 +6544.146321 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1593 + 8 +HOLZ + 10 +7246.017125 + 20 +6545.509214 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1594 + 8 +HOLZ + 10 +7248.863625 + 20 +6547.230145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1595 + 8 +HOLZ + 10 +7251.228812 + 20 +6549.356239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1596 + 8 +HOLZ + 10 +7252.985928 + 20 +6551.934622 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1597 + 8 +HOLZ + 10 +7113.15465 + 20 +6503.677065 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1598 + 8 +HOLZ + 10 +7124.441455 + 20 +6507.43738 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1599 + 8 +HOLZ + 10 +7137.609498 + 20 +6511.824451 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +159A + 8 +HOLZ + 10 +7150.777452 + 20 +6513.704608 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +159B + 8 +HOLZ + 10 +7163.945407 + 20 +6518.091679 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +159C + 8 +HOLZ + 10 +7177.113361 + 20 +6525.612308 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +159D + 8 +HOLZ + 10 +7178.99451 + 20 +6534.386449 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +159E + 8 +HOLZ + 10 +7189.027217 + 20 +6543.787291 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +159F + 8 +HOLZ + 10 +7209.092717 + 20 +6541.280378 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +15A0 + 8 +HOLZ + 10 +7226.02297 + 20 +6540.026922 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +15A1 + 8 +HOLZ + 10 +7249.223718 + 20 +6544.413992 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +15A2 + 8 +HOLZ + 10 +7252.985928 + 20 +6551.934622 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +15A3 + 8 +HOLZ + 0 +POLYLINE + 5 +15A4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +15A5 + 8 +HOLZ + 10 +7087.44579 + 20 +6449.778981 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +15A6 + 8 +HOLZ + 10 +7087.44579 + 20 +6449.778981 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15A7 + 8 +HOLZ + 10 +7096.078787 + 20 +6453.101106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15A8 + 8 +HOLZ + 10 +7103.308894 + 20 +6455.204059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15A9 + 8 +HOLZ + 10 +7109.34982 + 20 +6456.278796 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15AA + 8 +HOLZ + 10 +7114.415274 + 20 +6456.51627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15AB + 8 +HOLZ + 10 +7118.718968 + 20 +6456.107435 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15AC + 8 +HOLZ + 10 +7122.474609 + 20 +6455.243247 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15AD + 8 +HOLZ + 10 +7125.895908 + 20 +6454.11466 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15AE + 8 +HOLZ + 10 +7129.196574 + 20 +6452.912627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15AF + 8 +HOLZ + 10 +7132.549903 + 20 +6451.801379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B0 + 8 +HOLZ + 10 +7135.967528 + 20 +6450.838242 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B1 + 8 +HOLZ + 10 +7139.420669 + 20 +6450.053817 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B2 + 8 +HOLZ + 10 +7142.880547 + 20 +6449.478708 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B3 + 8 +HOLZ + 10 +7146.31838 + 20 +6449.143516 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B4 + 8 +HOLZ + 10 +7149.705388 + 20 +6449.078842 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B5 + 8 +HOLZ + 10 +7153.012791 + 20 +6449.315289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B6 + 8 +HOLZ + 10 +7156.211809 + 20 +6449.883459 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B7 + 8 +HOLZ + 10 +7159.277233 + 20 +6450.801712 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B8 + 8 +HOLZ + 10 +7162.198144 + 20 +6452.039447 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15B9 + 8 +HOLZ + 10 +7164.967192 + 20 +6453.553821 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15BA + 8 +HOLZ + 10 +7167.577029 + 20 +6455.301992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15BB + 8 +HOLZ + 10 +7170.020308 + 20 +6457.241117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15BC + 8 +HOLZ + 10 +7172.28968 + 20 +6459.328354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15BD + 8 +HOLZ + 10 +7174.377797 + 20 +6461.520861 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15BE + 8 +HOLZ + 10 +7176.27731 + 20 +6463.775794 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15BF + 8 +HOLZ + 10 +7177.98924 + 20 +6466.055616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C0 + 8 +HOLZ + 10 +7179.548084 + 20 +6468.344006 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C1 + 8 +HOLZ + 10 +7180.996704 + 20 +6470.629948 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C2 + 8 +HOLZ + 10 +7182.377966 + 20 +6472.902425 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C3 + 8 +HOLZ + 10 +7183.734733 + 20 +6475.15042 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C4 + 8 +HOLZ + 10 +7185.109871 + 20 +6477.362918 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C5 + 8 +HOLZ + 10 +7186.546244 + 20 +6479.528901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C6 + 8 +HOLZ + 10 +7188.086715 + 20 +6481.637354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C7 + 8 +HOLZ + 10 +7189.763536 + 20 +6483.673383 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C8 + 8 +HOLZ + 10 +7191.566501 + 20 +6485.606591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15C9 + 8 +HOLZ + 10 +7193.474788 + 20 +6487.402704 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15CA + 8 +HOLZ + 10 +7195.467579 + 20 +6489.027448 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15CB + 8 +HOLZ + 10 +7197.524054 + 20 +6490.446549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15CC + 8 +HOLZ + 10 +7199.623391 + 20 +6491.625733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15CD + 8 +HOLZ + 10 +7201.744772 + 20 +6492.530726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15CE + 8 +HOLZ + 10 +7203.867377 + 20 +6493.127253 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15CF + 8 +HOLZ + 10 +7205.9761 + 20 +6493.391651 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D0 + 8 +HOLZ + 10 +7208.078698 + 20 +6493.342687 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D1 + 8 +HOLZ + 10 +7210.188644 + 20 +6493.009739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D2 + 8 +HOLZ + 10 +7212.31941 + 20 +6492.422186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D3 + 8 +HOLZ + 10 +7214.484468 + 20 +6491.609405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D4 + 8 +HOLZ + 10 +7216.697289 + 20 +6490.600774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D5 + 8 +HOLZ + 10 +7218.971346 + 20 +6489.425671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D6 + 8 +HOLZ + 10 +7221.320112 + 20 +6488.113473 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D7 + 8 +HOLZ + 10 +7223.751955 + 20 +6486.696618 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D8 + 8 +HOLZ + 10 +7226.254831 + 20 +6485.219785 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15D9 + 8 +HOLZ + 10 +7228.811596 + 20 +6483.730712 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15DA + 8 +HOLZ + 10 +7231.405103 + 20 +6482.277137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15DB + 8 +HOLZ + 10 +7234.018206 + 20 +6480.906799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15DC + 8 +HOLZ + 10 +7236.633759 + 20 +6479.667436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15DD + 8 +HOLZ + 10 +7239.234616 + 20 +6478.606786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15DE + 8 +HOLZ + 10 +7241.803631 + 20 +6477.772589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15DF + 8 +HOLZ + 10 +7244.323045 + 20 +6477.204421 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E0 + 8 +HOLZ + 10 +7246.772651 + 20 +6476.909219 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E1 + 8 +HOLZ + 10 +7249.131629 + 20 +6476.885759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E2 + 8 +HOLZ + 10 +7251.379159 + 20 +6477.132818 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E3 + 8 +HOLZ + 10 +7253.494422 + 20 +6477.649171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E4 + 8 +HOLZ + 10 +7255.456597 + 20 +6478.433593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E5 + 8 +HOLZ + 10 +7257.244865 + 20 +6479.484862 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E6 + 8 +HOLZ + 10 +7258.838406 + 20 +6480.801753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E7 + 8 +HOLZ + 10 +7260.224769 + 20 +6482.377533 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E8 + 8 +HOLZ + 10 +7261.424977 + 20 +6484.183438 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15E9 + 8 +HOLZ + 10 +7262.468424 + 20 +6486.185193 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15EA + 8 +HOLZ + 10 +7263.384501 + 20 +6488.348525 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15EB + 8 +HOLZ + 10 +7264.202602 + 20 +6490.639159 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15EC + 8 +HOLZ + 10 +7264.95212 + 20 +6493.022823 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15ED + 8 +HOLZ + 10 +7265.662445 + 20 +6495.465242 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15EE + 8 +HOLZ + 10 +7266.362973 + 20 +6497.932143 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15EF + 8 +HOLZ + 10 +7267.078501 + 20 +6500.390985 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F0 + 8 +HOLZ + 10 +7267.815461 + 20 +6502.816166 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F1 + 8 +HOLZ + 10 +7268.57569 + 20 +6505.183816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F2 + 8 +HOLZ + 10 +7269.361024 + 20 +6507.470065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F3 + 8 +HOLZ + 10 +7270.173303 + 20 +6509.651045 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F4 + 8 +HOLZ + 10 +7271.014362 + 20 +6511.702884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F5 + 8 +HOLZ + 10 +7271.886039 + 20 +6513.601715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F6 + 8 +HOLZ + 10 +7272.790173 + 20 +6515.323668 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F7 + 8 +HOLZ + 10 +7273.73064 + 20 +6516.847524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F8 + 8 +HOLZ + 10 +7274.719485 + 20 +6518.162678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15F9 + 8 +HOLZ + 10 +7275.770791 + 20 +6519.261171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15FA + 8 +HOLZ + 10 +7276.898641 + 20 +6520.13505 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15FB + 8 +HOLZ + 10 +7278.117121 + 20 +6520.776357 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15FC + 8 +HOLZ + 10 +7279.440314 + 20 +6521.177137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15FD + 8 +HOLZ + 10 +7280.882303 + 20 +6521.329434 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15FE + 8 +HOLZ + 10 +7282.457173 + 20 +6521.225293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +15FF + 8 +HOLZ + 10 +7112.5276 + 20 +6460.43328 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1600 + 8 +HOLZ + 10 +7128.203753 + 20 +6451.659194 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1601 + 8 +HOLZ + 10 +7157.67491 + 20 +6446.018666 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1602 + 8 +HOLZ + 10 +7178.367461 + 20 +6463.566894 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1603 + 8 +HOLZ + 10 +7186.519106 + 20 +6482.368523 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1604 + 8 +HOLZ + 10 +7204.076408 + 20 +6496.783136 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1605 + 8 +HOLZ + 10 +7220.379523 + 20 +6489.262452 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1606 + 8 +HOLZ + 10 +7242.326172 + 20 +6474.847893 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1607 + 8 +HOLZ + 10 +7261.137574 + 20 +6477.981507 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1608 + 8 +HOLZ + 10 +7266.153971 + 20 +6498.036593 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1609 + 8 +HOLZ + 10 +7272.424379 + 20 +6517.464978 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +160A + 8 +HOLZ + 10 +7278.067826 + 20 +6521.851993 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +160B + 8 +HOLZ + 10 +7282.457173 + 20 +6521.225293 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +160C + 8 +HOLZ + 0 +POLYLINE + 5 +160D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +160E + 8 +HOLZ + 10 +7085.564641 + 20 +6387.106811 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +160F + 8 +HOLZ + 10 +7085.564641 + 20 +6387.106811 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1610 + 8 +HOLZ + 10 +7098.873744 + 20 +6392.103355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1611 + 8 +HOLZ + 10 +7109.443813 + 20 +6395.527584 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1612 + 8 +HOLZ + 10 +7117.680833 + 20 +6397.657973 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1613 + 8 +HOLZ + 10 +7123.990793 + 20 +6398.772997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1614 + 8 +HOLZ + 10 +7128.779678 + 20 +6399.151133 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1615 + 8 +HOLZ + 10 +7132.453476 + 20 +6399.070855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1616 + 8 +HOLZ + 10 +7135.418173 + 20 +6398.810638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1617 + 8 +HOLZ + 10 +7138.079756 + 20 +6398.648959 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1618 + 8 +HOLZ + 10 +7140.769913 + 20 +6398.807984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1619 + 8 +HOLZ + 10 +7143.52314 + 20 +6399.284655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +161A + 8 +HOLZ + 10 +7146.299635 + 20 +6400.019603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +161B + 8 +HOLZ + 10 +7149.059596 + 20 +6400.953463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +161C + 8 +HOLZ + 10 +7151.763219 + 20 +6402.026866 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +161D + 8 +HOLZ + 10 +7154.370702 + 20 +6403.180446 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +161E + 8 +HOLZ + 10 +7156.842244 + 20 +6404.354835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +161F + 8 +HOLZ + 10 +7159.138041 + 20 +6405.490667 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1620 + 8 +HOLZ + 10 +7161.230028 + 20 +6406.535613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1621 + 8 +HOLZ + 10 +7163.137085 + 20 +6407.465497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1622 + 8 +HOLZ + 10 +7164.889831 + 20 +6408.263182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1623 + 8 +HOLZ + 10 +7166.518883 + 20 +6408.911532 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1624 + 8 +HOLZ + 10 +7168.054858 + 20 +6409.393408 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1625 + 8 +HOLZ + 10 +7169.528375 + 20 +6409.691674 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1626 + 8 +HOLZ + 10 +7170.970051 + 20 +6409.789194 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1627 + 8 +HOLZ + 10 +7172.410504 + 20 +6409.668828 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1628 + 8 +HOLZ + 10 +7173.87586 + 20 +6409.324662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1629 + 8 +HOLZ + 10 +7175.374284 + 20 +6408.795662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +162A + 8 +HOLZ + 10 +7176.909451 + 20 +6408.132014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +162B + 8 +HOLZ + 10 +7178.485032 + 20 +6407.383905 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +162C + 8 +HOLZ + 10 +7180.104704 + 20 +6406.601522 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +162D + 8 +HOLZ + 10 +7181.772138 + 20 +6405.835052 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +162E + 8 +HOLZ + 10 +7183.49101 + 20 +6405.134681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +162F + 8 +HOLZ + 10 +7185.264992 + 20 +6404.550598 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1630 + 8 +HOLZ + 10 +7187.094085 + 20 +6404.123603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1631 + 8 +HOLZ + 10 +7188.963592 + 20 +6403.856961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1632 + 8 +HOLZ + 10 +7190.855142 + 20 +6403.744551 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1633 + 8 +HOLZ + 10 +7192.750366 + 20 +6403.780254 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1634 + 8 +HOLZ + 10 +7194.630893 + 20 +6403.957948 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1635 + 8 +HOLZ + 10 +7196.478352 + 20 +6404.271513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1636 + 8 +HOLZ + 10 +7198.274373 + 20 +6404.71483 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1637 + 8 +HOLZ + 10 +7200.000585 + 20 +6405.281776 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1638 + 8 +HOLZ + 10 +7201.646171 + 20 +6405.968068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1639 + 8 +HOLZ + 10 +7203.230522 + 20 +6406.776767 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +163A + 8 +HOLZ + 10 +7204.780581 + 20 +6407.712768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +163B + 8 +HOLZ + 10 +7206.323292 + 20 +6408.780968 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +163C + 8 +HOLZ + 10 +7207.885598 + 20 +6409.986263 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +163D + 8 +HOLZ + 10 +7209.494443 + 20 +6411.333549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +163E + 8 +HOLZ + 10 +7211.17677 + 20 +6412.827723 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +163F + 8 +HOLZ + 10 +7212.959523 + 20 +6414.473681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1640 + 8 +HOLZ + 10 +7214.860461 + 20 +6416.271423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1641 + 8 +HOLZ + 10 +7216.860599 + 20 +6418.201365 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1642 + 8 +HOLZ + 10 +7218.931771 + 20 +6420.239024 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1643 + 8 +HOLZ + 10 +7221.045807 + 20 +6422.359919 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1644 + 8 +HOLZ + 10 +7223.17454 + 20 +6424.53957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1645 + 8 +HOLZ + 10 +7225.289801 + 20 +6426.753496 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1646 + 8 +HOLZ + 10 +7227.363422 + 20 +6428.977214 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1647 + 8 +HOLZ + 10 +7229.367234 + 20 +6431.186243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1648 + 8 +HOLZ + 10 +7231.284603 + 20 +6433.358755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1649 + 8 +HOLZ + 10 +7233.145023 + 20 +6435.483529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +164A + 8 +HOLZ + 10 +7234.989522 + 20 +6437.551997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +164B + 8 +HOLZ + 10 +7236.859126 + 20 +6439.555589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +164C + 8 +HOLZ + 10 +7238.794865 + 20 +6441.485737 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +164D + 8 +HOLZ + 10 +7240.837765 + 20 +6443.333873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +164E + 8 +HOLZ + 10 +7243.028854 + 20 +6445.091429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +164F + 8 +HOLZ + 10 +7245.409159 + 20 +6446.749836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1650 + 8 +HOLZ + 10 +7248.020933 + 20 +6448.304197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1651 + 8 +HOLZ + 10 +7250.911327 + 20 +6449.764305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1652 + 8 +HOLZ + 10 +7254.128716 + 20 +6451.143625 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1653 + 8 +HOLZ + 10 +7257.721475 + 20 +6452.455621 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1654 + 8 +HOLZ + 10 +7261.73798 + 20 +6453.713759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1655 + 8 +HOLZ + 10 +7266.226607 + 20 +6454.931502 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1656 + 8 +HOLZ + 10 +7271.235731 + 20 +6456.122316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1657 + 8 +HOLZ + 10 +7276.813727 + 20 +6457.299666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1658 + 8 +HOLZ + 10 +7125.068505 + 20 +6402.774881 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1659 + 8 +HOLZ + 10 +7136.982448 + 20 +6394.627496 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +165A + 8 +HOLZ + 10 +7161.437208 + 20 +6406.535196 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +165B + 8 +HOLZ + 10 +7172.096964 + 20 +6412.175723 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +165C + 8 +HOLZ + 10 +7184.637957 + 20 +6402.774881 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +165D + 8 +HOLZ + 10 +7200.94116 + 20 +6404.028338 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +165E + 8 +HOLZ + 10 +7211.600916 + 20 +6412.802424 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +165F + 8 +HOLZ + 10 +7230.412317 + 20 +6431.604053 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1660 + 8 +HOLZ + 10 +7242.953222 + 20 +6447.898824 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1661 + 8 +HOLZ + 10 +7261.137574 + 20 +6454.166052 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1662 + 8 +HOLZ + 10 +7276.813727 + 20 +6457.299666 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1663 + 8 +HOLZ + 0 +POLYLINE + 5 +1664 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1665 + 8 +HOLZ + 10 +7086.818741 + 20 +6345.116482 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1666 + 8 +HOLZ + 10 +7086.818741 + 20 +6345.116482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1667 + 8 +HOLZ + 10 +7093.712069 + 20 +6344.816282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1668 + 8 +HOLZ + 10 +7100.286362 + 20 +6345.241338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1669 + 8 +HOLZ + 10 +7106.545906 + 20 +6346.264961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +166A + 8 +HOLZ + 10 +7112.494987 + 20 +6347.76046 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +166B + 8 +HOLZ + 10 +7118.137892 + 20 +6349.601145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +166C + 8 +HOLZ + 10 +7123.478908 + 20 +6351.660325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +166D + 8 +HOLZ + 10 +7128.522322 + 20 +6353.81131 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +166E + 8 +HOLZ + 10 +7133.272419 + 20 +6355.92741 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +166F + 8 +HOLZ + 10 +7137.734916 + 20 +6357.900296 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1670 + 8 +HOLZ + 10 +7141.921243 + 20 +6359.695081 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1671 + 8 +HOLZ + 10 +7145.84426 + 20 +6361.29524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1672 + 8 +HOLZ + 10 +7149.516825 + 20 +6362.684248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1673 + 8 +HOLZ + 10 +7152.951799 + 20 +6363.845582 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1674 + 8 +HOLZ + 10 +7156.16204 + 20 +6364.762714 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1675 + 8 +HOLZ + 10 +7159.160409 + 20 +6365.419121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1676 + 8 +HOLZ + 10 +7161.959764 + 20 +6365.798278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1677 + 8 +HOLZ + 10 +7164.574292 + 20 +6365.892738 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1678 + 8 +HOLZ + 10 +7167.023486 + 20 +6365.731368 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1679 + 8 +HOLZ + 10 +7169.328166 + 20 +6365.352114 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +167A + 8 +HOLZ + 10 +7171.509151 + 20 +6364.792923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +167B + 8 +HOLZ + 10 +7173.587262 + 20 +6364.091739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +167C + 8 +HOLZ + 10 +7175.583317 + 20 +6363.286509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +167D + 8 +HOLZ + 10 +7177.518138 + 20 +6362.415179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +167E + 8 +HOLZ + 10 +7179.412543 + 20 +6361.515694 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +167F + 8 +HOLZ + 10 +7181.286333 + 20 +6360.620901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1680 + 8 +HOLZ + 10 +7183.155224 + 20 +6359.743243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1681 + 8 +HOLZ + 10 +7185.033912 + 20 +6358.890066 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1682 + 8 +HOLZ + 10 +7186.937095 + 20 +6358.068715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1683 + 8 +HOLZ + 10 +7188.879468 + 20 +6357.286534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1684 + 8 +HOLZ + 10 +7190.875729 + 20 +6356.550867 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1685 + 8 +HOLZ + 10 +7192.940573 + 20 +6355.86906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1686 + 8 +HOLZ + 10 +7195.088696 + 20 +6355.248457 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1687 + 8 +HOLZ + 10 +7197.327857 + 20 +6354.699259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1688 + 8 +HOLZ + 10 +7199.63805 + 20 +6354.243091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1689 + 8 +HOLZ + 10 +7201.992333 + 20 +6353.904434 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +168A + 8 +HOLZ + 10 +7204.363762 + 20 +6353.707769 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +168B + 8 +HOLZ + 10 +7206.725393 + 20 +6353.677578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +168C + 8 +HOLZ + 10 +7209.050283 + 20 +6353.838342 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +168D + 8 +HOLZ + 10 +7211.311488 + 20 +6354.214541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +168E + 8 +HOLZ + 10 +7213.482065 + 20 +6354.830657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +168F + 8 +HOLZ + 10 +7215.539764 + 20 +6355.702194 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1690 + 8 +HOLZ + 10 +7217.481117 + 20 +6356.808752 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1691 + 8 +HOLZ + 10 +7219.307348 + 20 +6358.120953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1692 + 8 +HOLZ + 10 +7221.019682 + 20 +6359.609419 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1693 + 8 +HOLZ + 10 +7222.619343 + 20 +6361.244772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1694 + 8 +HOLZ + 10 +7224.107557 + 20 +6362.997636 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1695 + 8 +HOLZ + 10 +7225.485548 + 20 +6364.838633 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1696 + 8 +HOLZ + 10 +7226.754542 + 20 +6366.738384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1697 + 8 +HOLZ + 10 +7227.919641 + 20 +6368.671593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1698 + 8 +HOLZ + 10 +7229.001461 + 20 +6370.629284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1699 + 8 +HOLZ + 10 +7230.024496 + 20 +6372.606559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +169A + 8 +HOLZ + 10 +7231.01324 + 20 +6374.598523 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +169B + 8 +HOLZ + 10 +7231.992185 + 20 +6376.600279 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +169C + 8 +HOLZ + 10 +7232.985827 + 20 +6378.60693 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +169D + 8 +HOLZ + 10 +7234.018659 + 20 +6380.613582 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +169E + 8 +HOLZ + 10 +7235.115175 + 20 +6382.615336 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +169F + 8 +HOLZ + 10 +7236.294969 + 20 +6384.609032 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A0 + 8 +HOLZ + 10 +7237.558042 + 20 +6386.598443 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A1 + 8 +HOLZ + 10 +7238.899495 + 20 +6388.589078 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A2 + 8 +HOLZ + 10 +7240.314429 + 20 +6390.586444 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A3 + 8 +HOLZ + 10 +7241.797946 + 20 +6392.596051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A4 + 8 +HOLZ + 10 +7243.345147 + 20 +6394.623408 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A5 + 8 +HOLZ + 10 +7244.951132 + 20 +6396.674021 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A6 + 8 +HOLZ + 10 +7246.611004 + 20 +6398.7534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A7 + 8 +HOLZ + 10 +7248.361299 + 20 +6400.86236 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A8 + 8 +HOLZ + 10 +7250.404298 + 20 +6402.98295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16A9 + 8 +HOLZ + 10 +7252.983717 + 20 +6405.092524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16AA + 8 +HOLZ + 10 +7256.343272 + 20 +6407.168437 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16AB + 8 +HOLZ + 10 +7260.726679 + 20 +6409.188044 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16AC + 8 +HOLZ + 10 +7266.377654 + 20 +6411.1287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16AD + 8 +HOLZ + 10 +7273.539914 + 20 +6412.967761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16AE + 8 +HOLZ + 10 +7282.457173 + 20 +6414.682581 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16AF + 8 +HOLZ + 10 +7105.630142 + 20 +6343.236325 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B0 + 8 +HOLZ + 10 +7136.355399 + 20 +6357.650883 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B1 + 8 +HOLZ + 10 +7163.945407 + 20 +6368.931883 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B2 + 8 +HOLZ + 10 +7179.62156 + 20 +6361.411253 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B3 + 8 +HOLZ + 10 +7194.043614 + 20 +6354.517269 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B4 + 8 +HOLZ + 10 +7214.736164 + 20 +6352.010411 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B5 + 8 +HOLZ + 10 +7227.904118 + 20 +6366.425025 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B6 + 8 +HOLZ + 10 +7234.174615 + 20 +6382.719796 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B7 + 8 +HOLZ + 10 +7246.08847 + 20 +6398.387811 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B8 + 8 +HOLZ + 10 +7256.121176 + 20 +6410.295511 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16B9 + 8 +HOLZ + 10 +7282.457173 + 20 +6414.682581 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +16BA + 8 +HOLZ + 0 +POLYLINE + 5 +16BB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +16BC + 8 +HOLZ + 10 +7083.056443 + 20 +6308.766626 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16BD + 8 +HOLZ + 10 +7083.056443 + 20 +6308.766626 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16BE + 8 +HOLZ + 10 +7092.901491 + 20 +6309.412614 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16BF + 8 +HOLZ + 10 +7100.973787 + 20 +6310.350545 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C0 + 8 +HOLZ + 10 +7107.528682 + 20 +6311.490452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C1 + 8 +HOLZ + 10 +7112.821525 + 20 +6312.742363 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C2 + 8 +HOLZ + 10 +7117.107666 + 20 +6314.016309 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C3 + 8 +HOLZ + 10 +7120.642454 + 20 +6315.222321 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C4 + 8 +HOLZ + 10 +7123.681241 + 20 +6316.270429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C5 + 8 +HOLZ + 10 +7126.479374 + 20 +6317.070664 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C6 + 8 +HOLZ + 10 +7129.246687 + 20 +6317.555496 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C7 + 8 +HOLZ + 10 +7132.010938 + 20 +6317.747164 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C8 + 8 +HOLZ + 10 +7134.75437 + 20 +6317.690345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16C9 + 8 +HOLZ + 10 +7137.459224 + 20 +6317.42972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16CA + 8 +HOLZ + 10 +7140.107742 + 20 +6317.009965 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16CB + 8 +HOLZ + 10 +7142.682166 + 20 +6316.475761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16CC + 8 +HOLZ + 10 +7145.164736 + 20 +6315.871786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16CD + 8 +HOLZ + 10 +7147.537696 + 20 +6315.242718 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16CE + 8 +HOLZ + 10 +7149.791961 + 20 +6314.629461 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16CF + 8 +HOLZ + 10 +7151.953148 + 20 +6314.057824 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D0 + 8 +HOLZ + 10 +7154.05555 + 20 +6313.549839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D1 + 8 +HOLZ + 10 +7156.133457 + 20 +6313.127539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D2 + 8 +HOLZ + 10 +7158.221162 + 20 +6312.812957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D3 + 8 +HOLZ + 10 +7160.352957 + 20 +6312.628127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D4 + 8 +HOLZ + 10 +7162.563133 + 20 +6312.59508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D5 + 8 +HOLZ + 10 +7164.885981 + 20 +6312.73585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D6 + 8 +HOLZ + 10 +7167.340894 + 20 +6313.064514 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D7 + 8 +HOLZ + 10 +7169.88766 + 20 +6313.563323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D8 + 8 +HOLZ + 10 +7172.471167 + 20 +6314.20657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16D9 + 8 +HOLZ + 10 +7175.036303 + 20 +6314.968552 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16DA + 8 +HOLZ + 10 +7177.527957 + 20 +6315.823562 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16DB + 8 +HOLZ + 10 +7179.891017 + 20 +6316.745895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16DC + 8 +HOLZ + 10 +7182.070371 + 20 +6317.709846 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16DD + 8 +HOLZ + 10 +7184.010907 + 20 +6318.68971 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16DE + 8 +HOLZ + 10 +7185.696092 + 20 +6319.666308 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16DF + 8 +HOLZ + 10 +7187.263705 + 20 +6320.646578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E0 + 8 +HOLZ + 10 +7188.890101 + 20 +6321.643986 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E1 + 8 +HOLZ + 10 +7190.75164 + 20 +6322.671995 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E2 + 8 +HOLZ + 10 +7193.024677 + 20 +6323.74407 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E3 + 8 +HOLZ + 10 +7195.885569 + 20 +6324.873677 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E4 + 8 +HOLZ + 10 +7199.510675 + 20 +6326.074281 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E5 + 8 +HOLZ + 10 +7204.076349 + 20 +6327.359346 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E6 + 8 +HOLZ + 10 +7209.681693 + 20 +6328.728056 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E7 + 8 +HOLZ + 10 +7216.116771 + 20 +6330.122472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E8 + 8 +HOLZ + 10 +7223.094391 + 20 +6331.470375 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16E9 + 8 +HOLZ + 10 +7230.327362 + 20 +6332.699544 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16EA + 8 +HOLZ + 10 +7237.528491 + 20 +6333.737758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16EB + 8 +HOLZ + 10 +7244.410586 + 20 +6334.512798 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16EC + 8 +HOLZ + 10 +7250.686456 + 20 +6334.952444 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16ED + 8 +HOLZ + 10 +7256.068908 + 20 +6334.984476 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16EE + 8 +HOLZ + 10 +7260.358519 + 20 +6334.572171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16EF + 8 +HOLZ + 10 +7263.70695 + 20 +6333.820799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F0 + 8 +HOLZ + 10 +7266.35363 + 20 +6332.871128 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F1 + 8 +HOLZ + 10 +7268.537987 + 20 +6331.863927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F2 + 8 +HOLZ + 10 +7270.499451 + 20 +6330.939962 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F3 + 8 +HOLZ + 10 +7272.477451 + 20 +6330.240002 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F4 + 8 +HOLZ + 10 +7274.711416 + 20 +6329.904815 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F5 + 8 +HOLZ + 10 +7277.440776 + 20 +6330.075168 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +16F6 + 8 +HOLZ + 10 +7111.90055 + 20 +6310.020028 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16F7 + 8 +HOLZ + 10 +7126.322604 + 20 +6320.674326 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16F8 + 8 +HOLZ + 10 +7148.896303 + 20 +6315.033799 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16F9 + 8 +HOLZ + 10 +7163.318357 + 20 +6310.646783 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16FA + 8 +HOLZ + 10 +7187.146156 + 20 +6318.794169 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16FB + 8 +HOLZ + 10 +7192.162465 + 20 +6326.314798 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16FC + 8 +HOLZ + 10 +7268.662081 + 20 +6340.102711 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16FD + 8 +HOLZ + 10 +7269.289131 + 20 +6328.821712 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +16FE + 8 +HOLZ + 10 +7277.440776 + 20 +6330.075168 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +16FF + 8 +HOLZ + 0 +POLYLINE + 5 +1700 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1701 + 8 +HOLZ + 10 +14031.943557 + 20 +6308.766626 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1702 + 8 +HOLZ + 10 +14031.943557 + 20 +6308.766626 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1703 + 8 +HOLZ + 10 +14022.098509 + 20 +6309.412614 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1704 + 8 +HOLZ + 10 +14014.026213 + 20 +6310.350545 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1705 + 8 +HOLZ + 10 +14007.471318 + 20 +6311.490452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1706 + 8 +HOLZ + 10 +14002.178475 + 20 +6312.742363 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1707 + 8 +HOLZ + 10 +13997.892334 + 20 +6314.016309 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1708 + 8 +HOLZ + 10 +13994.357546 + 20 +6315.222321 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1709 + 8 +HOLZ + 10 +13991.318759 + 20 +6316.270429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +170A + 8 +HOLZ + 10 +13988.520626 + 20 +6317.070664 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +170B + 8 +HOLZ + 10 +13985.753313 + 20 +6317.555496 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +170C + 8 +HOLZ + 10 +13982.989062 + 20 +6317.747164 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +170D + 8 +HOLZ + 10 +13980.24563 + 20 +6317.690345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +170E + 8 +HOLZ + 10 +13977.540776 + 20 +6317.42972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +170F + 8 +HOLZ + 10 +13974.892258 + 20 +6317.009965 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1710 + 8 +HOLZ + 10 +13972.317834 + 20 +6316.475761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1711 + 8 +HOLZ + 10 +13969.835264 + 20 +6315.871786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1712 + 8 +HOLZ + 10 +13967.462304 + 20 +6315.242718 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1713 + 8 +HOLZ + 10 +13965.208039 + 20 +6314.629461 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1714 + 8 +HOLZ + 10 +13963.046852 + 20 +6314.057824 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1715 + 8 +HOLZ + 10 +13960.94445 + 20 +6313.549839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1716 + 8 +HOLZ + 10 +13958.866543 + 20 +6313.127539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1717 + 8 +HOLZ + 10 +13956.778838 + 20 +6312.812957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1718 + 8 +HOLZ + 10 +13954.647043 + 20 +6312.628127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1719 + 8 +HOLZ + 10 +13952.436867 + 20 +6312.59508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +171A + 8 +HOLZ + 10 +13950.114019 + 20 +6312.73585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +171B + 8 +HOLZ + 10 +13947.659106 + 20 +6313.064514 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +171C + 8 +HOLZ + 10 +13945.11234 + 20 +6313.563323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +171D + 8 +HOLZ + 10 +13942.528833 + 20 +6314.20657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +171E + 8 +HOLZ + 10 +13939.963697 + 20 +6314.968552 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +171F + 8 +HOLZ + 10 +13937.472043 + 20 +6315.823562 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1720 + 8 +HOLZ + 10 +13935.108983 + 20 +6316.745895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1721 + 8 +HOLZ + 10 +13932.929629 + 20 +6317.709846 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1722 + 8 +HOLZ + 10 +13930.989093 + 20 +6318.68971 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1723 + 8 +HOLZ + 10 +13929.303908 + 20 +6319.666308 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1724 + 8 +HOLZ + 10 +13927.736295 + 20 +6320.646578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1725 + 8 +HOLZ + 10 +13926.109899 + 20 +6321.643986 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1726 + 8 +HOLZ + 10 +13924.24836 + 20 +6322.671995 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1727 + 8 +HOLZ + 10 +13921.975323 + 20 +6323.74407 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1728 + 8 +HOLZ + 10 +13919.114431 + 20 +6324.873677 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1729 + 8 +HOLZ + 10 +13915.489325 + 20 +6326.074281 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +172A + 8 +HOLZ + 10 +13910.923651 + 20 +6327.359346 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +172B + 8 +HOLZ + 10 +13905.318307 + 20 +6328.728056 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +172C + 8 +HOLZ + 10 +13898.883229 + 20 +6330.122472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +172D + 8 +HOLZ + 10 +13891.905609 + 20 +6331.470375 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +172E + 8 +HOLZ + 10 +13884.672638 + 20 +6332.699544 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +172F + 8 +HOLZ + 10 +13877.471509 + 20 +6333.737758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1730 + 8 +HOLZ + 10 +13870.589414 + 20 +6334.512798 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1731 + 8 +HOLZ + 10 +13864.313544 + 20 +6334.952444 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1732 + 8 +HOLZ + 10 +13858.931092 + 20 +6334.984476 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1733 + 8 +HOLZ + 10 +13854.641481 + 20 +6334.572171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1734 + 8 +HOLZ + 10 +13851.29305 + 20 +6333.820799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1735 + 8 +HOLZ + 10 +13848.64637 + 20 +6332.871128 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1736 + 8 +HOLZ + 10 +13846.462013 + 20 +6331.863927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1737 + 8 +HOLZ + 10 +13844.500549 + 20 +6330.939962 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1738 + 8 +HOLZ + 10 +13842.522549 + 20 +6330.240002 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1739 + 8 +HOLZ + 10 +13840.288584 + 20 +6329.904815 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +173A + 8 +HOLZ + 10 +13837.559224 + 20 +6330.075168 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +173B + 8 +HOLZ + 10 +14003.09945 + 20 +6310.020028 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +173C + 8 +HOLZ + 10 +13988.677396 + 20 +6320.674326 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +173D + 8 +HOLZ + 10 +13966.103697 + 20 +6315.033799 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +173E + 8 +HOLZ + 10 +13951.681643 + 20 +6310.646783 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +173F + 8 +HOLZ + 10 +13927.853844 + 20 +6318.794169 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1740 + 8 +HOLZ + 10 +13922.837535 + 20 +6326.314798 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1741 + 8 +HOLZ + 10 +13846.337919 + 20 +6340.102711 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1742 + 8 +HOLZ + 10 +13845.710869 + 20 +6328.821712 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1743 + 8 +HOLZ + 10 +13837.559224 + 20 +6330.075168 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1744 + 8 +HOLZ + 0 +POLYLINE + 5 +1745 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1746 + 8 +HOLZ + 10 +14028.181259 + 20 +6345.116482 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1747 + 8 +HOLZ + 10 +14028.181259 + 20 +6345.116482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1748 + 8 +HOLZ + 10 +14021.287931 + 20 +6344.816282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1749 + 8 +HOLZ + 10 +14014.713638 + 20 +6345.241338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +174A + 8 +HOLZ + 10 +14008.454094 + 20 +6346.264961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +174B + 8 +HOLZ + 10 +14002.505013 + 20 +6347.76046 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +174C + 8 +HOLZ + 10 +13996.862108 + 20 +6349.601145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +174D + 8 +HOLZ + 10 +13991.521092 + 20 +6351.660325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +174E + 8 +HOLZ + 10 +13986.477678 + 20 +6353.81131 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +174F + 8 +HOLZ + 10 +13981.727581 + 20 +6355.92741 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1750 + 8 +HOLZ + 10 +13977.265084 + 20 +6357.900296 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1751 + 8 +HOLZ + 10 +13973.078757 + 20 +6359.695081 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1752 + 8 +HOLZ + 10 +13969.15574 + 20 +6361.29524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1753 + 8 +HOLZ + 10 +13965.483175 + 20 +6362.684248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1754 + 8 +HOLZ + 10 +13962.048201 + 20 +6363.845582 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1755 + 8 +HOLZ + 10 +13958.83796 + 20 +6364.762714 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1756 + 8 +HOLZ + 10 +13955.839591 + 20 +6365.419121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1757 + 8 +HOLZ + 10 +13953.040236 + 20 +6365.798278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1758 + 8 +HOLZ + 10 +13950.425708 + 20 +6365.892738 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1759 + 8 +HOLZ + 10 +13947.976514 + 20 +6365.731368 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +175A + 8 +HOLZ + 10 +13945.671834 + 20 +6365.352114 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +175B + 8 +HOLZ + 10 +13943.490849 + 20 +6364.792923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +175C + 8 +HOLZ + 10 +13941.412738 + 20 +6364.091739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +175D + 8 +HOLZ + 10 +13939.416683 + 20 +6363.286509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +175E + 8 +HOLZ + 10 +13937.481862 + 20 +6362.415179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +175F + 8 +HOLZ + 10 +13935.587457 + 20 +6361.515694 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1760 + 8 +HOLZ + 10 +13933.713667 + 20 +6360.620901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1761 + 8 +HOLZ + 10 +13931.844776 + 20 +6359.743243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1762 + 8 +HOLZ + 10 +13929.966088 + 20 +6358.890066 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1763 + 8 +HOLZ + 10 +13928.062905 + 20 +6358.068715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1764 + 8 +HOLZ + 10 +13926.120532 + 20 +6357.286534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1765 + 8 +HOLZ + 10 +13924.124271 + 20 +6356.550867 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1766 + 8 +HOLZ + 10 +13922.059427 + 20 +6355.86906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1767 + 8 +HOLZ + 10 +13919.911304 + 20 +6355.248457 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1768 + 8 +HOLZ + 10 +13917.672143 + 20 +6354.699259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1769 + 8 +HOLZ + 10 +13915.36195 + 20 +6354.243091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +176A + 8 +HOLZ + 10 +13913.007667 + 20 +6353.904434 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +176B + 8 +HOLZ + 10 +13910.636238 + 20 +6353.707769 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +176C + 8 +HOLZ + 10 +13908.274607 + 20 +6353.677578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +176D + 8 +HOLZ + 10 +13905.949717 + 20 +6353.838342 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +176E + 8 +HOLZ + 10 +13903.688512 + 20 +6354.214541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +176F + 8 +HOLZ + 10 +13901.517935 + 20 +6354.830657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1770 + 8 +HOLZ + 10 +13899.460236 + 20 +6355.702194 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1771 + 8 +HOLZ + 10 +13897.518883 + 20 +6356.808752 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1772 + 8 +HOLZ + 10 +13895.692652 + 20 +6358.120953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1773 + 8 +HOLZ + 10 +13893.980318 + 20 +6359.609419 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1774 + 8 +HOLZ + 10 +13892.380657 + 20 +6361.244772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1775 + 8 +HOLZ + 10 +13890.892443 + 20 +6362.997636 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1776 + 8 +HOLZ + 10 +13889.514452 + 20 +6364.838633 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1777 + 8 +HOLZ + 10 +13888.245458 + 20 +6366.738384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1778 + 8 +HOLZ + 10 +13887.080359 + 20 +6368.671593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1779 + 8 +HOLZ + 10 +13885.998539 + 20 +6370.629284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +177A + 8 +HOLZ + 10 +13884.975504 + 20 +6372.606559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +177B + 8 +HOLZ + 10 +13883.98676 + 20 +6374.598523 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +177C + 8 +HOLZ + 10 +13883.007815 + 20 +6376.600279 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +177D + 8 +HOLZ + 10 +13882.014173 + 20 +6378.60693 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +177E + 8 +HOLZ + 10 +13880.981341 + 20 +6380.613582 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +177F + 8 +HOLZ + 10 +13879.884825 + 20 +6382.615336 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1780 + 8 +HOLZ + 10 +13878.705031 + 20 +6384.609032 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1781 + 8 +HOLZ + 10 +13877.441958 + 20 +6386.598443 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1782 + 8 +HOLZ + 10 +13876.100505 + 20 +6388.589078 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1783 + 8 +HOLZ + 10 +13874.685571 + 20 +6390.586444 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1784 + 8 +HOLZ + 10 +13873.202054 + 20 +6392.596051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1785 + 8 +HOLZ + 10 +13871.654853 + 20 +6394.623408 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1786 + 8 +HOLZ + 10 +13870.048868 + 20 +6396.674021 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1787 + 8 +HOLZ + 10 +13868.388996 + 20 +6398.7534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1788 + 8 +HOLZ + 10 +13866.638701 + 20 +6400.86236 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1789 + 8 +HOLZ + 10 +13864.595702 + 20 +6402.98295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +178A + 8 +HOLZ + 10 +13862.016283 + 20 +6405.092524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +178B + 8 +HOLZ + 10 +13858.656728 + 20 +6407.168437 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +178C + 8 +HOLZ + 10 +13854.273321 + 20 +6409.188044 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +178D + 8 +HOLZ + 10 +13848.622346 + 20 +6411.1287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +178E + 8 +HOLZ + 10 +13841.460086 + 20 +6412.967761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +178F + 8 +HOLZ + 10 +13832.542827 + 20 +6414.682581 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1790 + 8 +HOLZ + 10 +14009.369858 + 20 +6343.236325 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1791 + 8 +HOLZ + 10 +13978.644601 + 20 +6357.650883 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1792 + 8 +HOLZ + 10 +13951.054593 + 20 +6368.931883 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1793 + 8 +HOLZ + 10 +13935.37844 + 20 +6361.411253 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1794 + 8 +HOLZ + 10 +13920.956386 + 20 +6354.517269 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1795 + 8 +HOLZ + 10 +13900.263836 + 20 +6352.010411 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1796 + 8 +HOLZ + 10 +13887.095882 + 20 +6366.425025 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1797 + 8 +HOLZ + 10 +13880.825385 + 20 +6382.719796 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1798 + 8 +HOLZ + 10 +13868.91153 + 20 +6398.387811 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1799 + 8 +HOLZ + 10 +13858.878824 + 20 +6410.295511 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +179A + 8 +HOLZ + 10 +13832.542827 + 20 +6414.682581 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +179B + 8 +HOLZ + 0 +POLYLINE + 5 +179C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +179D + 8 +HOLZ + 10 +14029.435359 + 20 +6387.106811 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +179E + 8 +HOLZ + 10 +14029.435359 + 20 +6387.106811 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +179F + 8 +HOLZ + 10 +14016.126256 + 20 +6392.103355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A0 + 8 +HOLZ + 10 +14005.556187 + 20 +6395.527584 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A1 + 8 +HOLZ + 10 +13997.319167 + 20 +6397.657973 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A2 + 8 +HOLZ + 10 +13991.009207 + 20 +6398.772997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A3 + 8 +HOLZ + 10 +13986.220322 + 20 +6399.151133 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A4 + 8 +HOLZ + 10 +13982.546524 + 20 +6399.070855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A5 + 8 +HOLZ + 10 +13979.581827 + 20 +6398.810638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A6 + 8 +HOLZ + 10 +13976.920244 + 20 +6398.648959 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A7 + 8 +HOLZ + 10 +13974.230087 + 20 +6398.807984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A8 + 8 +HOLZ + 10 +13971.47686 + 20 +6399.284655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17A9 + 8 +HOLZ + 10 +13968.700365 + 20 +6400.019603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17AA + 8 +HOLZ + 10 +13965.940404 + 20 +6400.953463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17AB + 8 +HOLZ + 10 +13963.236781 + 20 +6402.026866 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17AC + 8 +HOLZ + 10 +13960.629298 + 20 +6403.180446 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17AD + 8 +HOLZ + 10 +13958.157756 + 20 +6404.354835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17AE + 8 +HOLZ + 10 +13955.861959 + 20 +6405.490667 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17AF + 8 +HOLZ + 10 +13953.769972 + 20 +6406.535613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B0 + 8 +HOLZ + 10 +13951.862915 + 20 +6407.465497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B1 + 8 +HOLZ + 10 +13950.110169 + 20 +6408.263182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B2 + 8 +HOLZ + 10 +13948.481117 + 20 +6408.911532 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B3 + 8 +HOLZ + 10 +13946.945142 + 20 +6409.393408 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B4 + 8 +HOLZ + 10 +13945.471625 + 20 +6409.691674 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B5 + 8 +HOLZ + 10 +13944.029949 + 20 +6409.789194 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B6 + 8 +HOLZ + 10 +13942.589496 + 20 +6409.668828 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B7 + 8 +HOLZ + 10 +13941.12414 + 20 +6409.324662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B8 + 8 +HOLZ + 10 +13939.625716 + 20 +6408.795662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17B9 + 8 +HOLZ + 10 +13938.090549 + 20 +6408.132014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17BA + 8 +HOLZ + 10 +13936.514968 + 20 +6407.383905 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17BB + 8 +HOLZ + 10 +13934.895296 + 20 +6406.601522 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17BC + 8 +HOLZ + 10 +13933.227862 + 20 +6405.835052 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17BD + 8 +HOLZ + 10 +13931.50899 + 20 +6405.134681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17BE + 8 +HOLZ + 10 +13929.735008 + 20 +6404.550598 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17BF + 8 +HOLZ + 10 +13927.905915 + 20 +6404.123603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C0 + 8 +HOLZ + 10 +13926.036408 + 20 +6403.856961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C1 + 8 +HOLZ + 10 +13924.144858 + 20 +6403.744551 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C2 + 8 +HOLZ + 10 +13922.249634 + 20 +6403.780254 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C3 + 8 +HOLZ + 10 +13920.369107 + 20 +6403.957948 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C4 + 8 +HOLZ + 10 +13918.521648 + 20 +6404.271513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C5 + 8 +HOLZ + 10 +13916.725627 + 20 +6404.71483 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C6 + 8 +HOLZ + 10 +13914.999415 + 20 +6405.281776 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C7 + 8 +HOLZ + 10 +13913.353829 + 20 +6405.968068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C8 + 8 +HOLZ + 10 +13911.769478 + 20 +6406.776767 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17C9 + 8 +HOLZ + 10 +13910.219419 + 20 +6407.712768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17CA + 8 +HOLZ + 10 +13908.676708 + 20 +6408.780968 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17CB + 8 +HOLZ + 10 +13907.114402 + 20 +6409.986263 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17CC + 8 +HOLZ + 10 +13905.505557 + 20 +6411.333549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17CD + 8 +HOLZ + 10 +13903.82323 + 20 +6412.827723 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17CE + 8 +HOLZ + 10 +13902.040477 + 20 +6414.473681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17CF + 8 +HOLZ + 10 +13900.139539 + 20 +6416.271423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D0 + 8 +HOLZ + 10 +13898.139401 + 20 +6418.201365 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D1 + 8 +HOLZ + 10 +13896.068229 + 20 +6420.239024 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D2 + 8 +HOLZ + 10 +13893.954193 + 20 +6422.359919 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D3 + 8 +HOLZ + 10 +13891.82546 + 20 +6424.53957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D4 + 8 +HOLZ + 10 +13889.710199 + 20 +6426.753496 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D5 + 8 +HOLZ + 10 +13887.636578 + 20 +6428.977214 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D6 + 8 +HOLZ + 10 +13885.632766 + 20 +6431.186243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D7 + 8 +HOLZ + 10 +13883.715397 + 20 +6433.358755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D8 + 8 +HOLZ + 10 +13881.854977 + 20 +6435.483529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17D9 + 8 +HOLZ + 10 +13880.010478 + 20 +6437.551997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17DA + 8 +HOLZ + 10 +13878.140874 + 20 +6439.555589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17DB + 8 +HOLZ + 10 +13876.205135 + 20 +6441.485737 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17DC + 8 +HOLZ + 10 +13874.162235 + 20 +6443.333873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17DD + 8 +HOLZ + 10 +13871.971146 + 20 +6445.091429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17DE + 8 +HOLZ + 10 +13869.590841 + 20 +6446.749836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17DF + 8 +HOLZ + 10 +13866.979067 + 20 +6448.304197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E0 + 8 +HOLZ + 10 +13864.088673 + 20 +6449.764305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E1 + 8 +HOLZ + 10 +13860.871284 + 20 +6451.143625 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E2 + 8 +HOLZ + 10 +13857.278525 + 20 +6452.455621 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E3 + 8 +HOLZ + 10 +13853.26202 + 20 +6453.713759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E4 + 8 +HOLZ + 10 +13848.773393 + 20 +6454.931502 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E5 + 8 +HOLZ + 10 +13843.764269 + 20 +6456.122316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E6 + 8 +HOLZ + 10 +13838.186273 + 20 +6457.299666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17E7 + 8 +HOLZ + 10 +13989.931495 + 20 +6402.774881 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17E8 + 8 +HOLZ + 10 +13978.017552 + 20 +6394.627496 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17E9 + 8 +HOLZ + 10 +13953.562792 + 20 +6406.535196 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17EA + 8 +HOLZ + 10 +13942.903036 + 20 +6412.175723 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17EB + 8 +HOLZ + 10 +13930.362043 + 20 +6402.774881 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17EC + 8 +HOLZ + 10 +13914.05884 + 20 +6404.028338 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17ED + 8 +HOLZ + 10 +13903.399084 + 20 +6412.802424 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17EE + 8 +HOLZ + 10 +13884.587683 + 20 +6431.604053 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17EF + 8 +HOLZ + 10 +13872.046778 + 20 +6447.898824 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17F0 + 8 +HOLZ + 10 +13853.862426 + 20 +6454.166052 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17F1 + 8 +HOLZ + 10 +13838.186273 + 20 +6457.299666 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +17F2 + 8 +HOLZ + 0 +POLYLINE + 5 +17F3 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +17F4 + 8 +HOLZ + 10 +14027.55421 + 20 +6449.778981 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +17F5 + 8 +HOLZ + 10 +14027.55421 + 20 +6449.778981 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17F6 + 8 +HOLZ + 10 +14018.921213 + 20 +6453.101106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17F7 + 8 +HOLZ + 10 +14011.691106 + 20 +6455.204059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17F8 + 8 +HOLZ + 10 +14005.65018 + 20 +6456.278796 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17F9 + 8 +HOLZ + 10 +14000.584726 + 20 +6456.51627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17FA + 8 +HOLZ + 10 +13996.281032 + 20 +6456.107435 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17FB + 8 +HOLZ + 10 +13992.525391 + 20 +6455.243247 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17FC + 8 +HOLZ + 10 +13989.104092 + 20 +6454.11466 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17FD + 8 +HOLZ + 10 +13985.803426 + 20 +6452.912627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17FE + 8 +HOLZ + 10 +13982.450097 + 20 +6451.801379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +17FF + 8 +HOLZ + 10 +13979.032472 + 20 +6450.838242 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1800 + 8 +HOLZ + 10 +13975.579331 + 20 +6450.053817 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1801 + 8 +HOLZ + 10 +13972.119453 + 20 +6449.478708 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1802 + 8 +HOLZ + 10 +13968.68162 + 20 +6449.143516 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1803 + 8 +HOLZ + 10 +13965.294612 + 20 +6449.078842 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1804 + 8 +HOLZ + 10 +13961.987209 + 20 +6449.315289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1805 + 8 +HOLZ + 10 +13958.788191 + 20 +6449.883459 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1806 + 8 +HOLZ + 10 +13955.722767 + 20 +6450.801712 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1807 + 8 +HOLZ + 10 +13952.801856 + 20 +6452.039447 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1808 + 8 +HOLZ + 10 +13950.032808 + 20 +6453.553821 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1809 + 8 +HOLZ + 10 +13947.422971 + 20 +6455.301992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +180A + 8 +HOLZ + 10 +13944.979692 + 20 +6457.241117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +180B + 8 +HOLZ + 10 +13942.71032 + 20 +6459.328354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +180C + 8 +HOLZ + 10 +13940.622203 + 20 +6461.520861 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +180D + 8 +HOLZ + 10 +13938.72269 + 20 +6463.775794 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +180E + 8 +HOLZ + 10 +13937.01076 + 20 +6466.055616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +180F + 8 +HOLZ + 10 +13935.451916 + 20 +6468.344006 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1810 + 8 +HOLZ + 10 +13934.003296 + 20 +6470.629948 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1811 + 8 +HOLZ + 10 +13932.622034 + 20 +6472.902425 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1812 + 8 +HOLZ + 10 +13931.265267 + 20 +6475.15042 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1813 + 8 +HOLZ + 10 +13929.890129 + 20 +6477.362918 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1814 + 8 +HOLZ + 10 +13928.453756 + 20 +6479.528901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1815 + 8 +HOLZ + 10 +13926.913285 + 20 +6481.637354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1816 + 8 +HOLZ + 10 +13925.236464 + 20 +6483.673383 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1817 + 8 +HOLZ + 10 +13923.433499 + 20 +6485.606591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1818 + 8 +HOLZ + 10 +13921.525212 + 20 +6487.402704 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1819 + 8 +HOLZ + 10 +13919.532421 + 20 +6489.027448 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +181A + 8 +HOLZ + 10 +13917.475946 + 20 +6490.446549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +181B + 8 +HOLZ + 10 +13915.376609 + 20 +6491.625733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +181C + 8 +HOLZ + 10 +13913.255228 + 20 +6492.530726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +181D + 8 +HOLZ + 10 +13911.132623 + 20 +6493.127253 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +181E + 8 +HOLZ + 10 +13909.0239 + 20 +6493.391651 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +181F + 8 +HOLZ + 10 +13906.921302 + 20 +6493.342687 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1820 + 8 +HOLZ + 10 +13904.811356 + 20 +6493.009739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1821 + 8 +HOLZ + 10 +13902.68059 + 20 +6492.422186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1822 + 8 +HOLZ + 10 +13900.515532 + 20 +6491.609405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1823 + 8 +HOLZ + 10 +13898.302711 + 20 +6490.600774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1824 + 8 +HOLZ + 10 +13896.028654 + 20 +6489.425671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1825 + 8 +HOLZ + 10 +13893.679888 + 20 +6488.113473 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1826 + 8 +HOLZ + 10 +13891.248045 + 20 +6486.696618 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1827 + 8 +HOLZ + 10 +13888.745169 + 20 +6485.219785 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1828 + 8 +HOLZ + 10 +13886.188404 + 20 +6483.730712 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1829 + 8 +HOLZ + 10 +13883.594897 + 20 +6482.277137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +182A + 8 +HOLZ + 10 +13880.981794 + 20 +6480.906799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +182B + 8 +HOLZ + 10 +13878.366241 + 20 +6479.667436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +182C + 8 +HOLZ + 10 +13875.765384 + 20 +6478.606786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +182D + 8 +HOLZ + 10 +13873.196369 + 20 +6477.772589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +182E + 8 +HOLZ + 10 +13870.676955 + 20 +6477.204421 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +182F + 8 +HOLZ + 10 +13868.227349 + 20 +6476.909219 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1830 + 8 +HOLZ + 10 +13865.868371 + 20 +6476.885759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1831 + 8 +HOLZ + 10 +13863.620841 + 20 +6477.132818 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1832 + 8 +HOLZ + 10 +13861.505578 + 20 +6477.649171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1833 + 8 +HOLZ + 10 +13859.543403 + 20 +6478.433593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1834 + 8 +HOLZ + 10 +13857.755135 + 20 +6479.484862 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1835 + 8 +HOLZ + 10 +13856.161594 + 20 +6480.801753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1836 + 8 +HOLZ + 10 +13854.775231 + 20 +6482.377533 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1837 + 8 +HOLZ + 10 +13853.575023 + 20 +6484.183438 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1838 + 8 +HOLZ + 10 +13852.531576 + 20 +6486.185193 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1839 + 8 +HOLZ + 10 +13851.615499 + 20 +6488.348525 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +183A + 8 +HOLZ + 10 +13850.797398 + 20 +6490.639159 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +183B + 8 +HOLZ + 10 +13850.04788 + 20 +6493.022823 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +183C + 8 +HOLZ + 10 +13849.337555 + 20 +6495.465242 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +183D + 8 +HOLZ + 10 +13848.637027 + 20 +6497.932143 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +183E + 8 +HOLZ + 10 +13847.921499 + 20 +6500.390985 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +183F + 8 +HOLZ + 10 +13847.184539 + 20 +6502.816166 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1840 + 8 +HOLZ + 10 +13846.42431 + 20 +6505.183816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1841 + 8 +HOLZ + 10 +13845.638976 + 20 +6507.470065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1842 + 8 +HOLZ + 10 +13844.826697 + 20 +6509.651045 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1843 + 8 +HOLZ + 10 +13843.985638 + 20 +6511.702884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1844 + 8 +HOLZ + 10 +13843.113961 + 20 +6513.601715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1845 + 8 +HOLZ + 10 +13842.209827 + 20 +6515.323668 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1846 + 8 +HOLZ + 10 +13841.26936 + 20 +6516.847524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1847 + 8 +HOLZ + 10 +13840.280515 + 20 +6518.162678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1848 + 8 +HOLZ + 10 +13839.229209 + 20 +6519.261171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1849 + 8 +HOLZ + 10 +13838.101359 + 20 +6520.13505 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +184A + 8 +HOLZ + 10 +13836.882879 + 20 +6520.776357 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +184B + 8 +HOLZ + 10 +13835.559686 + 20 +6521.177137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +184C + 8 +HOLZ + 10 +13834.117697 + 20 +6521.329434 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +184D + 8 +HOLZ + 10 +13832.542827 + 20 +6521.225293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +184E + 8 +HOLZ + 10 +14002.4724 + 20 +6460.43328 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +184F + 8 +HOLZ + 10 +13986.796247 + 20 +6451.659194 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1850 + 8 +HOLZ + 10 +13957.32509 + 20 +6446.018666 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1851 + 8 +HOLZ + 10 +13936.632539 + 20 +6463.566894 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1852 + 8 +HOLZ + 10 +13928.480894 + 20 +6482.368523 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1853 + 8 +HOLZ + 10 +13910.923592 + 20 +6496.783136 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1854 + 8 +HOLZ + 10 +13894.620477 + 20 +6489.262452 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1855 + 8 +HOLZ + 10 +13872.673828 + 20 +6474.847893 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1856 + 8 +HOLZ + 10 +13853.862426 + 20 +6477.981507 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1857 + 8 +HOLZ + 10 +13848.846029 + 20 +6498.036593 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1858 + 8 +HOLZ + 10 +13842.575621 + 20 +6517.464978 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1859 + 8 +HOLZ + 10 +13836.932174 + 20 +6521.851993 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +185A + 8 +HOLZ + 10 +13832.542827 + 20 +6521.225293 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +185B + 8 +HOLZ + 0 +POLYLINE + 5 +185C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +185D + 8 +HOLZ + 10 +14026.92716 + 20 +6503.677065 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +185E + 8 +HOLZ + 10 +14026.92716 + 20 +6503.677065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +185F + 8 +HOLZ + 10 +14018.395916 + 20 +6503.761117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1860 + 8 +HOLZ + 10 +14011.466576 + 20 +6503.996953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1861 + 8 +HOLZ + 10 +14005.918696 + 20 +6504.360091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1862 + 8 +HOLZ + 10 +14001.531828 + 20 +6504.826051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1863 + 8 +HOLZ + 10 +13998.085528 + 20 +6505.370351 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1864 + 8 +HOLZ + 10 +13995.359349 + 20 +6505.968509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1865 + 8 +HOLZ + 10 +13993.132846 + 20 +6506.596046 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1866 + 8 +HOLZ + 10 +13991.185572 + 20 +6507.22848 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1867 + 8 +HOLZ + 10 +13989.332599 + 20 +6507.845001 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1868 + 8 +HOLZ + 10 +13987.531062 + 20 +6508.439489 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1869 + 8 +HOLZ + 10 +13985.773612 + 20 +6509.009497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +186A + 8 +HOLZ + 10 +13984.052904 + 20 +6509.552575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +186B + 8 +HOLZ + 10 +13982.361588 + 20 +6510.066276 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +186C + 8 +HOLZ + 10 +13980.692316 + 20 +6510.548151 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +186D + 8 +HOLZ + 10 +13979.037742 + 20 +6510.995753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +186E + 8 +HOLZ + 10 +13977.390517 + 20 +6511.406632 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +186F + 8 +HOLZ + 10 +13975.744518 + 20 +6511.78038 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1870 + 8 +HOLZ + 10 +13974.09852 + 20 +6512.124751 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1871 + 8 +HOLZ + 10 +13972.452523 + 20 +6512.449536 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1872 + 8 +HOLZ + 10 +13970.806527 + 20 +6512.764529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1873 + 8 +HOLZ + 10 +13969.160531 + 20 +6513.079522 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1874 + 8 +HOLZ + 10 +13967.514536 + 20 +6513.404307 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1875 + 8 +HOLZ + 10 +13965.868542 + 20 +6513.748678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1876 + 8 +HOLZ + 10 +13964.222548 + 20 +6514.122427 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1877 + 8 +HOLZ + 10 +13962.576553 + 20 +6514.533918 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1878 + 8 +HOLZ + 10 +13960.930559 + 20 +6514.985803 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1879 + 8 +HOLZ + 10 +13959.284565 + 20 +6515.479307 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +187A + 8 +HOLZ + 10 +13957.63857 + 20 +6516.015653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +187B + 8 +HOLZ + 10 +13955.992576 + 20 +6516.596065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +187C + 8 +HOLZ + 10 +13954.346582 + 20 +6517.221768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +187D + 8 +HOLZ + 10 +13952.700587 + 20 +6517.893984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +187E + 8 +HOLZ + 10 +13951.054593 + 20 +6518.613938 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +187F + 8 +HOLZ + 10 +13949.412273 + 20 +6519.382039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1880 + 8 +HOLZ + 10 +13947.791997 + 20 +6520.195429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1881 + 8 +HOLZ + 10 +13946.215811 + 20 +6521.050437 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1882 + 8 +HOLZ + 10 +13944.705758 + 20 +6521.943391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1883 + 8 +HOLZ + 10 +13943.283883 + 20 +6522.870619 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1884 + 8 +HOLZ + 10 +13941.972231 + 20 +6523.828449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1885 + 8 +HOLZ + 10 +13940.792846 + 20 +6524.813209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1886 + 8 +HOLZ + 10 +13939.767773 + 20 +6525.821227 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1887 + 8 +HOLZ + 10 +13938.909054 + 20 +6526.849239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1888 + 8 +HOLZ + 10 +13938.188727 + 20 +6527.895613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1889 + 8 +HOLZ + 10 +13937.568825 + 20 +6528.959125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +188A + 8 +HOLZ + 10 +13937.011382 + 20 +6530.03855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +188B + 8 +HOLZ + 10 +13936.478433 + 20 +6531.132664 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +188C + 8 +HOLZ + 10 +13935.932013 + 20 +6532.240243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +188D + 8 +HOLZ + 10 +13935.334156 + 20 +6533.360063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +188E + 8 +HOLZ + 10 +13934.646897 + 20 +6534.4909 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +188F + 8 +HOLZ + 10 +13933.837984 + 20 +6535.627652 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1890 + 8 +HOLZ + 10 +13932.89803 + 20 +6536.749715 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1891 + 8 +HOLZ + 10 +13931.823358 + 20 +6537.832608 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1892 + 8 +HOLZ + 10 +13930.610296 + 20 +6538.851848 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1893 + 8 +HOLZ + 10 +13929.255168 + 20 +6539.782956 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1894 + 8 +HOLZ + 10 +13927.754301 + 20 +6540.601449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1895 + 8 +HOLZ + 10 +13926.10402 + 20 +6541.282846 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1896 + 8 +HOLZ + 10 +13924.300651 + 20 +6541.802666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1897 + 8 +HOLZ + 10 +13922.345418 + 20 +6542.144791 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1898 + 8 +HOLZ + 10 +13920.259142 + 20 +6542.326563 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1899 + 8 +HOLZ + 10 +13918.067541 + 20 +6542.373688 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +189A + 8 +HOLZ + 10 +13915.796334 + 20 +6542.31187 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +189B + 8 +HOLZ + 10 +13913.47124 + 20 +6542.166816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +189C + 8 +HOLZ + 10 +13911.117978 + 20 +6541.96423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +189D + 8 +HOLZ + 10 +13908.762266 + 20 +6541.729819 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +189E + 8 +HOLZ + 10 +13906.429824 + 20 +6541.489288 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +189F + 8 +HOLZ + 10 +13904.135246 + 20 +6541.266199 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A0 + 8 +HOLZ + 10 +13901.848628 + 20 +6541.075549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A1 + 8 +HOLZ + 10 +13899.528944 + 20 +6540.930189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A2 + 8 +HOLZ + 10 +13897.135165 + 20 +6540.842973 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A3 + 8 +HOLZ + 10 +13894.626263 + 20 +6540.826753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A4 + 8 +HOLZ + 10 +13891.961213 + 20 +6540.894382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A5 + 8 +HOLZ + 10 +13889.098985 + 20 +6541.058713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A6 + 8 +HOLZ + 10 +13885.998552 + 20 +6541.332599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A7 + 8 +HOLZ + 10 +13882.646851 + 20 +6541.734603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A8 + 8 +HOLZ + 10 +13879.142675 + 20 +6542.306141 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18A9 + 8 +HOLZ + 10 +13875.612782 + 20 +6543.094339 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18AA + 8 +HOLZ + 10 +13872.18393 + 20 +6544.146321 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18AB + 8 +HOLZ + 10 +13868.982875 + 20 +6545.509214 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18AC + 8 +HOLZ + 10 +13866.136375 + 20 +6547.230145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18AD + 8 +HOLZ + 10 +13863.771188 + 20 +6549.356239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18AE + 8 +HOLZ + 10 +13862.014072 + 20 +6551.934622 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +18AF + 8 +HOLZ + 10 +14001.84535 + 20 +6503.677065 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B0 + 8 +HOLZ + 10 +13990.558545 + 20 +6507.43738 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B1 + 8 +HOLZ + 10 +13977.390502 + 20 +6511.824451 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B2 + 8 +HOLZ + 10 +13964.222548 + 20 +6513.704608 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B3 + 8 +HOLZ + 10 +13951.054593 + 20 +6518.091679 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B4 + 8 +HOLZ + 10 +13937.886639 + 20 +6525.612308 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B5 + 8 +HOLZ + 10 +13936.00549 + 20 +6534.386449 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B6 + 8 +HOLZ + 10 +13925.972783 + 20 +6543.787291 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B7 + 8 +HOLZ + 10 +13905.907283 + 20 +6541.280378 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B8 + 8 +HOLZ + 10 +13888.97703 + 20 +6540.026922 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18B9 + 8 +HOLZ + 10 +13865.776282 + 20 +6544.413992 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +18BA + 8 +HOLZ + 10 +13862.014072 + 20 +6551.934622 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +18BB + 8 +HOLZ + 0 +POLYLINE + 5 +18BC + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +28A7 + 8 +HOLZ + 10 +13830.0 + 20 +6281.0 + 30 +0.0 + 0 +VERTEX + 5 +28A8 + 8 +HOLZ + 10 +14035.0 + 20 +6281.0 + 30 +0.0 + 0 +SEQEND + 5 +28A9 + 8 +HOLZ + 0 +POLYLINE + 5 +18C0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +28AA + 8 +HOLZ + 10 +14035.0 + 20 +6555.0 + 30 +0.0 + 0 +VERTEX + 5 +28AB + 8 +HOLZ + 10 +13830.0 + 20 +6555.0 + 30 +0.0 + 0 +SEQEND + 5 +28AC + 8 +HOLZ + 0 +TEXT + 5 +18C4 + 8 +LEGENDE-70 + 10 +6615.0 + 20 +13995.0 + 30 +0.0 + 40 +175.0 + 1 +AUSSCHNITT DECKE NG/DG + 0 +TEXT + 5 +18C5 + 8 +LEGENDE-70 + 10 +8490.0 + 20 +13690.0 + 30 +0.0 + 40 +87.5 + 1 +M 1:10 + 0 +POLYLINE + 5 +18C6 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28AD + 8 +SCHNITTKANTEN + 10 +11555.0 + 20 +13995.0 + 30 +0.0 + 0 +VERTEX + 5 +28AE + 8 +SCHNITTKANTEN + 10 +11555.0 + 20 +12575.0 + 30 +0.0 + 0 +SEQEND + 5 +28AF + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +18CA + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28B0 + 8 +SCHNITTKANTEN + 10 +13605.0 + 20 +13995.0 + 30 +0.0 + 0 +VERTEX + 5 +28B1 + 8 +SCHNITTKANTEN + 10 +13605.0 + 20 +12575.0 + 30 +0.0 + 0 +SEQEND + 5 +28B2 + 8 +SCHNITTKANTEN + 0 +LINE + 5 +18CE + 8 +0 + 62 + 0 + 10 +11625.0 + 20 +13477.2413 + 30 +0.0 + 11 +11687.5 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18CF + 8 +0 + 62 + 0 + 10 +11812.5 + 20 +13477.2413 + 30 +0.0 + 11 +11875.0 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D0 + 8 +0 + 62 + 0 + 10 +12000.0 + 20 +13477.2413 + 30 +0.0 + 11 +12062.5 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D1 + 8 +0 + 62 + 0 + 10 +12187.5 + 20 +13477.2413 + 30 +0.0 + 11 +12250.0 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D2 + 8 +0 + 62 + 0 + 10 +12375.0 + 20 +13477.2413 + 30 +0.0 + 11 +12437.5 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D3 + 8 +0 + 62 + 0 + 10 +12562.5 + 20 +13477.2413 + 30 +0.0 + 11 +12625.0 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D4 + 8 +0 + 62 + 0 + 10 +12750.0 + 20 +13477.2413 + 30 +0.0 + 11 +12812.5 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D5 + 8 +0 + 62 + 0 + 10 +12937.5 + 20 +13477.2413 + 30 +0.0 + 11 +13000.0 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D6 + 8 +0 + 62 + 0 + 10 +13125.0 + 20 +13477.2413 + 30 +0.0 + 11 +13187.5 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D7 + 8 +0 + 62 + 0 + 10 +13312.5 + 20 +13477.2413 + 30 +0.0 + 11 +13375.0 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D8 + 8 +0 + 62 + 0 + 10 +13500.0 + 20 +13477.2413 + 30 +0.0 + 11 +13562.5 + 21 +13477.2413 + 31 +0.0 + 0 +LINE + 5 +18D9 + 8 +0 + 62 + 0 + 10 +11555.0 + 20 +13531.367888 + 30 +0.0 + 11 +11593.75 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18DA + 8 +0 + 62 + 0 + 10 +11718.75 + 20 +13531.367888 + 30 +0.0 + 11 +11781.25 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18DB + 8 +0 + 62 + 0 + 10 +11906.25 + 20 +13531.367888 + 30 +0.0 + 11 +11968.75 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18DC + 8 +0 + 62 + 0 + 10 +12093.75 + 20 +13531.367888 + 30 +0.0 + 11 +12156.25 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18DD + 8 +0 + 62 + 0 + 10 +12281.25 + 20 +13531.367888 + 30 +0.0 + 11 +12343.75 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18DE + 8 +0 + 62 + 0 + 10 +12468.75 + 20 +13531.367888 + 30 +0.0 + 11 +12531.25 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18DF + 8 +0 + 62 + 0 + 10 +12656.25 + 20 +13531.367888 + 30 +0.0 + 11 +12718.75 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18E0 + 8 +0 + 62 + 0 + 10 +12843.75 + 20 +13531.367888 + 30 +0.0 + 11 +12906.25 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18E1 + 8 +0 + 62 + 0 + 10 +13031.25 + 20 +13531.367888 + 30 +0.0 + 11 +13093.75 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18E2 + 8 +0 + 62 + 0 + 10 +13218.75 + 20 +13531.367888 + 30 +0.0 + 11 +13281.25 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18E3 + 8 +0 + 62 + 0 + 10 +13406.25 + 20 +13531.367888 + 30 +0.0 + 11 +13468.75 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18E4 + 8 +0 + 62 + 0 + 10 +13593.75 + 20 +13531.367888 + 30 +0.0 + 11 +13605.0 + 21 +13531.367888 + 31 +0.0 + 0 +LINE + 5 +18E5 + 8 +0 + 62 + 0 + 10 +11625.0 + 20 +13585.494475 + 30 +0.0 + 11 +11687.5 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18E6 + 8 +0 + 62 + 0 + 10 +11812.5 + 20 +13585.494475 + 30 +0.0 + 11 +11875.0 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18E7 + 8 +0 + 62 + 0 + 10 +12000.0 + 20 +13585.494475 + 30 +0.0 + 11 +12062.5 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18E8 + 8 +0 + 62 + 0 + 10 +12187.5 + 20 +13585.494475 + 30 +0.0 + 11 +12250.0 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18E9 + 8 +0 + 62 + 0 + 10 +12375.0 + 20 +13585.494475 + 30 +0.0 + 11 +12437.5 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18EA + 8 +0 + 62 + 0 + 10 +12562.5 + 20 +13585.494475 + 30 +0.0 + 11 +12625.0 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18EB + 8 +0 + 62 + 0 + 10 +12750.0 + 20 +13585.494475 + 30 +0.0 + 11 +12812.5 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18EC + 8 +0 + 62 + 0 + 10 +12937.5 + 20 +13585.494475 + 30 +0.0 + 11 +13000.0 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18ED + 8 +0 + 62 + 0 + 10 +13125.0 + 20 +13585.494475 + 30 +0.0 + 11 +13187.5 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18EE + 8 +0 + 62 + 0 + 10 +13312.5 + 20 +13585.494475 + 30 +0.0 + 11 +13375.0 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18EF + 8 +0 + 62 + 0 + 10 +13500.0 + 20 +13585.494475 + 30 +0.0 + 11 +13562.5 + 21 +13585.494475 + 31 +0.0 + 0 +LINE + 5 +18F0 + 8 +0 + 62 + 0 + 10 +11555.0 + 20 +13639.621063 + 30 +0.0 + 11 +11593.75 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F1 + 8 +0 + 62 + 0 + 10 +11718.75 + 20 +13639.621063 + 30 +0.0 + 11 +11781.25 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F2 + 8 +0 + 62 + 0 + 10 +11906.25 + 20 +13639.621063 + 30 +0.0 + 11 +11968.75 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F3 + 8 +0 + 62 + 0 + 10 +12093.75 + 20 +13639.621063 + 30 +0.0 + 11 +12156.25 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F4 + 8 +0 + 62 + 0 + 10 +12281.25 + 20 +13639.621063 + 30 +0.0 + 11 +12343.75 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F5 + 8 +0 + 62 + 0 + 10 +12468.75 + 20 +13639.621063 + 30 +0.0 + 11 +12531.25 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F6 + 8 +0 + 62 + 0 + 10 +12656.25 + 20 +13639.621063 + 30 +0.0 + 11 +12718.75 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F7 + 8 +0 + 62 + 0 + 10 +12843.75 + 20 +13639.621063 + 30 +0.0 + 11 +12906.25 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F8 + 8 +0 + 62 + 0 + 10 +13031.25 + 20 +13639.621063 + 30 +0.0 + 11 +13093.75 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18F9 + 8 +0 + 62 + 0 + 10 +13218.75 + 20 +13639.621063 + 30 +0.0 + 11 +13281.25 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18FA + 8 +0 + 62 + 0 + 10 +13406.25 + 20 +13639.621063 + 30 +0.0 + 11 +13468.75 + 21 +13639.621063 + 31 +0.0 + 0 +LINE + 5 +18FB + 8 +0 + 62 + 0 + 10 +11625.0 + 20 +13693.74765 + 30 +0.0 + 11 +11687.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +18FC + 8 +0 + 62 + 0 + 10 +11812.5 + 20 +13693.74765 + 30 +0.0 + 11 +11875.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +18FD + 8 +0 + 62 + 0 + 10 +12000.0 + 20 +13693.74765 + 30 +0.0 + 11 +12062.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +18FE + 8 +0 + 62 + 0 + 10 +12187.5 + 20 +13693.74765 + 30 +0.0 + 11 +12250.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +18FF + 8 +0 + 62 + 0 + 10 +12375.0 + 20 +13693.74765 + 30 +0.0 + 11 +12437.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1900 + 8 +0 + 62 + 0 + 10 +12562.5 + 20 +13693.74765 + 30 +0.0 + 11 +12625.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1901 + 8 +0 + 62 + 0 + 10 +12750.0 + 20 +13693.74765 + 30 +0.0 + 11 +12812.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1902 + 8 +0 + 62 + 0 + 10 +12937.5 + 20 +13693.74765 + 30 +0.0 + 11 +13000.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1903 + 8 +0 + 62 + 0 + 10 +13125.0 + 20 +13693.74765 + 30 +0.0 + 11 +13187.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1904 + 8 +0 + 62 + 0 + 10 +13312.5 + 20 +13693.74765 + 30 +0.0 + 11 +13375.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1905 + 8 +0 + 62 + 0 + 10 +13500.0 + 20 +13693.74765 + 30 +0.0 + 11 +13562.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1906 + 8 +0 + 62 + 0 + 10 +11555.0 + 20 +13423.114713 + 30 +0.0 + 11 +11593.75 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +1907 + 8 +0 + 62 + 0 + 10 +11718.75 + 20 +13423.114713 + 30 +0.0 + 11 +11781.25 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +1908 + 8 +0 + 62 + 0 + 10 +11906.25 + 20 +13423.114713 + 30 +0.0 + 11 +11968.75 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +1909 + 8 +0 + 62 + 0 + 10 +12093.75 + 20 +13423.114713 + 30 +0.0 + 11 +12156.25 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +190A + 8 +0 + 62 + 0 + 10 +12281.25 + 20 +13423.114713 + 30 +0.0 + 11 +12343.75 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +190B + 8 +0 + 62 + 0 + 10 +12468.75 + 20 +13423.114713 + 30 +0.0 + 11 +12531.25 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +190C + 8 +0 + 62 + 0 + 10 +12656.25 + 20 +13423.114713 + 30 +0.0 + 11 +12718.75 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +190D + 8 +0 + 62 + 0 + 10 +12843.75 + 20 +13423.114713 + 30 +0.0 + 11 +12906.25 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +190E + 8 +0 + 62 + 0 + 10 +13031.25 + 20 +13423.114713 + 30 +0.0 + 11 +13093.75 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +190F + 8 +0 + 62 + 0 + 10 +13218.75 + 20 +13423.114713 + 30 +0.0 + 11 +13281.25 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +1910 + 8 +0 + 62 + 0 + 10 +13406.25 + 20 +13423.114713 + 30 +0.0 + 11 +13468.75 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +1911 + 8 +0 + 62 + 0 + 10 +13593.75 + 20 +13423.114713 + 30 +0.0 + 11 +13605.0 + 21 +13423.114713 + 31 +0.0 + 0 +LINE + 5 +1912 + 8 +0 + 62 + 0 + 10 +11625.0 + 20 +13368.988125 + 30 +0.0 + 11 +11687.5 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1913 + 8 +0 + 62 + 0 + 10 +11812.5 + 20 +13368.988125 + 30 +0.0 + 11 +11875.0 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1914 + 8 +0 + 62 + 0 + 10 +12000.0 + 20 +13368.988125 + 30 +0.0 + 11 +12062.5 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1915 + 8 +0 + 62 + 0 + 10 +12187.5 + 20 +13368.988125 + 30 +0.0 + 11 +12250.0 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1916 + 8 +0 + 62 + 0 + 10 +12375.0 + 20 +13368.988125 + 30 +0.0 + 11 +12437.5 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1917 + 8 +0 + 62 + 0 + 10 +12562.5 + 20 +13368.988125 + 30 +0.0 + 11 +12625.0 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1918 + 8 +0 + 62 + 0 + 10 +12750.0 + 20 +13368.988125 + 30 +0.0 + 11 +12812.5 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +1919 + 8 +0 + 62 + 0 + 10 +12937.5 + 20 +13368.988125 + 30 +0.0 + 11 +13000.0 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +191A + 8 +0 + 62 + 0 + 10 +13125.0 + 20 +13368.988125 + 30 +0.0 + 11 +13187.5 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +191B + 8 +0 + 62 + 0 + 10 +13312.5 + 20 +13368.988125 + 30 +0.0 + 11 +13375.0 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +191C + 8 +0 + 62 + 0 + 10 +13500.0 + 20 +13368.988125 + 30 +0.0 + 11 +13562.5 + 21 +13368.988125 + 31 +0.0 + 0 +LINE + 5 +191D + 8 +0 + 62 + 0 + 10 +11555.0 + 20 +13314.861538 + 30 +0.0 + 11 +11593.75 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +191E + 8 +0 + 62 + 0 + 10 +11718.75 + 20 +13314.861538 + 30 +0.0 + 11 +11781.25 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +191F + 8 +0 + 62 + 0 + 10 +11906.25 + 20 +13314.861538 + 30 +0.0 + 11 +11968.75 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1920 + 8 +0 + 62 + 0 + 10 +12093.75 + 20 +13314.861538 + 30 +0.0 + 11 +12156.25 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1921 + 8 +0 + 62 + 0 + 10 +12281.25 + 20 +13314.861538 + 30 +0.0 + 11 +12343.75 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1922 + 8 +0 + 62 + 0 + 10 +12468.75 + 20 +13314.861538 + 30 +0.0 + 11 +12531.25 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1923 + 8 +0 + 62 + 0 + 10 +12656.25 + 20 +13314.861538 + 30 +0.0 + 11 +12718.75 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1924 + 8 +0 + 62 + 0 + 10 +12843.75 + 20 +13314.861538 + 30 +0.0 + 11 +12906.25 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1925 + 8 +0 + 62 + 0 + 10 +13031.25 + 20 +13314.861538 + 30 +0.0 + 11 +13093.75 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1926 + 8 +0 + 62 + 0 + 10 +13218.75 + 20 +13314.861538 + 30 +0.0 + 11 +13281.25 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1927 + 8 +0 + 62 + 0 + 10 +13406.25 + 20 +13314.861538 + 30 +0.0 + 11 +13468.75 + 21 +13314.861538 + 31 +0.0 + 0 +LINE + 5 +1928 + 8 +0 + 62 + 0 + 10 +13593.749953 + 20 +13639.621072 + 30 +0.0 + 11 +13562.499953 + 21 +13693.74766 + 31 +0.0 + 0 +LINE + 5 +1929 + 8 +0 + 62 + 0 + 10 +13593.749953 + 20 +13531.367897 + 30 +0.0 + 11 +13562.499953 + 21 +13585.494484 + 31 +0.0 + 0 +LINE + 5 +192A + 8 +0 + 62 + 0 + 10 +13499.999953 + 20 +13693.74766 + 30 +0.0 + 11 +13496.390163 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +192B + 8 +0 + 62 + 0 + 10 +13593.749954 + 20 +13423.114721 + 30 +0.0 + 11 +13562.499954 + 21 +13477.241309 + 31 +0.0 + 0 +LINE + 5 +192C + 8 +0 + 62 + 0 + 10 +13499.999954 + 20 +13585.494485 + 30 +0.0 + 11 +13468.749954 + 21 +13639.621072 + 31 +0.0 + 0 +LINE + 5 +192D + 8 +0 + 62 + 0 + 10 +13593.749954 + 20 +13314.861546 + 30 +0.0 + 11 +13562.499954 + 21 +13368.988134 + 31 +0.0 + 0 +LINE + 5 +192E + 8 +0 + 62 + 0 + 10 +13499.999954 + 20 +13477.241309 + 30 +0.0 + 11 +13468.749954 + 21 +13531.367897 + 31 +0.0 + 0 +LINE + 5 +192F + 8 +0 + 62 + 0 + 10 +13406.249954 + 20 +13639.621072 + 30 +0.0 + 11 +13374.999954 + 21 +13693.74766 + 31 +0.0 + 0 +LINE + 5 +1930 + 8 +0 + 62 + 0 + 10 +13499.999954 + 20 +13368.988134 + 30 +0.0 + 11 +13468.749954 + 21 +13423.114722 + 31 +0.0 + 0 +LINE + 5 +1931 + 8 +0 + 62 + 0 + 10 +13406.249954 + 20 +13531.367897 + 30 +0.0 + 11 +13374.999954 + 21 +13585.494485 + 31 +0.0 + 0 +LINE + 5 +1932 + 8 +0 + 62 + 0 + 10 +13312.499954 + 20 +13693.74766 + 30 +0.0 + 11 +13308.890164 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1933 + 8 +0 + 62 + 0 + 10 +13491.467023 + 20 +13275.514429 + 30 +0.0 + 11 +13468.749954 + 21 +13314.861546 + 31 +0.0 + 0 +LINE + 5 +1934 + 8 +0 + 62 + 0 + 10 +13406.249954 + 20 +13423.114722 + 30 +0.0 + 11 +13374.999954 + 21 +13477.241309 + 31 +0.0 + 0 +LINE + 5 +1935 + 8 +0 + 62 + 0 + 10 +13312.499954 + 20 +13585.494485 + 30 +0.0 + 11 +13281.249954 + 21 +13639.621073 + 31 +0.0 + 0 +LINE + 5 +1936 + 8 +0 + 62 + 0 + 10 +13406.249954 + 20 +13314.861546 + 30 +0.0 + 11 +13374.999954 + 21 +13368.988134 + 31 +0.0 + 0 +LINE + 5 +1937 + 8 +0 + 62 + 0 + 10 +13312.499954 + 20 +13477.24131 + 30 +0.0 + 11 +13281.249954 + 21 +13531.367897 + 31 +0.0 + 0 +LINE + 5 +1938 + 8 +0 + 62 + 0 + 10 +13218.749954 + 20 +13639.621073 + 30 +0.0 + 11 +13187.499954 + 21 +13693.747661 + 31 +0.0 + 0 +LINE + 5 +1939 + 8 +0 + 62 + 0 + 10 +13312.499955 + 20 +13368.988134 + 30 +0.0 + 11 +13281.249955 + 21 +13423.114722 + 31 +0.0 + 0 +LINE + 5 +193A + 8 +0 + 62 + 0 + 10 +13218.749955 + 20 +13531.367897 + 30 +0.0 + 11 +13187.499955 + 21 +13585.494485 + 31 +0.0 + 0 +LINE + 5 +193B + 8 +0 + 62 + 0 + 10 +13124.999955 + 20 +13693.747661 + 30 +0.0 + 11 +13121.390165 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +193C + 8 +0 + 62 + 0 + 10 +13303.986181 + 20 +13275.481248 + 30 +0.0 + 11 +13281.249955 + 21 +13314.861547 + 31 +0.0 + 0 +LINE + 5 +193D + 8 +0 + 62 + 0 + 10 +13218.749955 + 20 +13423.114722 + 30 +0.0 + 11 +13187.499955 + 21 +13477.24131 + 31 +0.0 + 0 +LINE + 5 +193E + 8 +0 + 62 + 0 + 10 +13124.999955 + 20 +13585.494485 + 30 +0.0 + 11 +13093.749955 + 21 +13639.621073 + 31 +0.0 + 0 +LINE + 5 +193F + 8 +0 + 62 + 0 + 10 +13218.749955 + 20 +13314.861547 + 30 +0.0 + 11 +13187.499955 + 21 +13368.988134 + 31 +0.0 + 0 +LINE + 5 +1940 + 8 +0 + 62 + 0 + 10 +13124.999955 + 20 +13477.24131 + 30 +0.0 + 11 +13093.749955 + 21 +13531.367898 + 31 +0.0 + 0 +LINE + 5 +1941 + 8 +0 + 62 + 0 + 10 +13031.249955 + 20 +13639.621073 + 30 +0.0 + 11 +12999.999955 + 21 +13693.747661 + 31 +0.0 + 0 +LINE + 5 +1942 + 8 +0 + 62 + 0 + 10 +13124.999955 + 20 +13368.988135 + 30 +0.0 + 11 +13093.749955 + 21 +13423.114722 + 31 +0.0 + 0 +LINE + 5 +1943 + 8 +0 + 62 + 0 + 10 +13031.249955 + 20 +13531.367898 + 30 +0.0 + 11 +12999.999955 + 21 +13585.494486 + 31 +0.0 + 0 +LINE + 5 +1944 + 8 +0 + 62 + 0 + 10 +12937.499955 + 20 +13693.747661 + 30 +0.0 + 11 +12933.890166 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1945 + 8 +0 + 62 + 0 + 10 +13116.505339 + 20 +13275.448066 + 30 +0.0 + 11 +13093.749955 + 21 +13314.861547 + 31 +0.0 + 0 +LINE + 5 +1946 + 8 +0 + 62 + 0 + 10 +13031.249955 + 20 +13423.114722 + 30 +0.0 + 11 +12999.999955 + 21 +13477.24131 + 31 +0.0 + 0 +LINE + 5 +1947 + 8 +0 + 62 + 0 + 10 +12937.499955 + 20 +13585.494486 + 30 +0.0 + 11 +12906.249955 + 21 +13639.621073 + 31 +0.0 + 0 +LINE + 5 +1948 + 8 +0 + 62 + 0 + 10 +13031.249956 + 20 +13314.861547 + 30 +0.0 + 11 +12999.999956 + 21 +13368.988135 + 31 +0.0 + 0 +LINE + 5 +1949 + 8 +0 + 62 + 0 + 10 +12937.499956 + 20 +13477.24131 + 30 +0.0 + 11 +12906.249956 + 21 +13531.367898 + 31 +0.0 + 0 +LINE + 5 +194A + 8 +0 + 62 + 0 + 10 +12843.749956 + 20 +13639.621073 + 30 +0.0 + 11 +12812.499956 + 21 +13693.747661 + 31 +0.0 + 0 +LINE + 5 +194B + 8 +0 + 62 + 0 + 10 +12937.499956 + 20 +13368.988135 + 30 +0.0 + 11 +12906.249956 + 21 +13423.114723 + 31 +0.0 + 0 +LINE + 5 +194C + 8 +0 + 62 + 0 + 10 +12843.749956 + 20 +13531.367898 + 30 +0.0 + 11 +12812.499956 + 21 +13585.494486 + 31 +0.0 + 0 +LINE + 5 +194D + 8 +0 + 62 + 0 + 10 +12749.999956 + 20 +13693.747661 + 30 +0.0 + 11 +12746.390166 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +194E + 8 +0 + 62 + 0 + 10 +12929.024498 + 20 +13275.414884 + 30 +0.0 + 11 +12906.249956 + 21 +13314.861547 + 31 +0.0 + 0 +LINE + 5 +194F + 8 +0 + 62 + 0 + 10 +12843.749956 + 20 +13423.114723 + 30 +0.0 + 11 +12812.499956 + 21 +13477.241311 + 31 +0.0 + 0 +LINE + 5 +1950 + 8 +0 + 62 + 0 + 10 +12749.999956 + 20 +13585.494486 + 30 +0.0 + 11 +12718.749956 + 21 +13639.621074 + 31 +0.0 + 0 +LINE + 5 +1951 + 8 +0 + 62 + 0 + 10 +12843.749956 + 20 +13314.861547 + 30 +0.0 + 11 +12812.499956 + 21 +13368.988135 + 31 +0.0 + 0 +LINE + 5 +1952 + 8 +0 + 62 + 0 + 10 +12749.999956 + 20 +13477.241311 + 30 +0.0 + 11 +12718.749956 + 21 +13531.367898 + 31 +0.0 + 0 +LINE + 5 +1953 + 8 +0 + 62 + 0 + 10 +12656.249956 + 20 +13639.621074 + 30 +0.0 + 11 +12624.999956 + 21 +13693.747662 + 31 +0.0 + 0 +LINE + 5 +1954 + 8 +0 + 62 + 0 + 10 +12749.999956 + 20 +13368.988135 + 30 +0.0 + 11 +12718.749956 + 21 +13423.114723 + 31 +0.0 + 0 +LINE + 5 +1955 + 8 +0 + 62 + 0 + 10 +12656.249956 + 20 +13531.367898 + 30 +0.0 + 11 +12624.999956 + 21 +13585.494486 + 31 +0.0 + 0 +LINE + 5 +1956 + 8 +0 + 62 + 0 + 10 +12562.499956 + 20 +13693.747662 + 30 +0.0 + 11 +12558.890167 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1957 + 8 +0 + 62 + 0 + 10 +12741.543656 + 20 +13275.381702 + 30 +0.0 + 11 +12718.749957 + 21 +13314.861548 + 31 +0.0 + 0 +LINE + 5 +1958 + 8 +0 + 62 + 0 + 10 +12656.249957 + 20 +13423.114723 + 30 +0.0 + 11 +12624.999957 + 21 +13477.241311 + 31 +0.0 + 0 +LINE + 5 +1959 + 8 +0 + 62 + 0 + 10 +12562.499957 + 20 +13585.494486 + 30 +0.0 + 11 +12531.249957 + 21 +13639.621074 + 31 +0.0 + 0 +LINE + 5 +195A + 8 +0 + 62 + 0 + 10 +12656.249957 + 20 +13314.861548 + 30 +0.0 + 11 +12624.999957 + 21 +13368.988136 + 31 +0.0 + 0 +LINE + 5 +195B + 8 +0 + 62 + 0 + 10 +12562.499957 + 20 +13477.241311 + 30 +0.0 + 11 +12531.249957 + 21 +13531.367899 + 31 +0.0 + 0 +LINE + 5 +195C + 8 +0 + 62 + 0 + 10 +12468.749957 + 20 +13639.621074 + 30 +0.0 + 11 +12437.499957 + 21 +13693.747662 + 31 +0.0 + 0 +LINE + 5 +195D + 8 +0 + 62 + 0 + 10 +12562.499957 + 20 +13368.988136 + 30 +0.0 + 11 +12531.249957 + 21 +13423.114723 + 31 +0.0 + 0 +LINE + 5 +195E + 8 +0 + 62 + 0 + 10 +12468.749957 + 20 +13531.367899 + 30 +0.0 + 11 +12437.499957 + 21 +13585.494487 + 31 +0.0 + 0 +LINE + 5 +195F + 8 +0 + 62 + 0 + 10 +12374.999957 + 20 +13693.747662 + 30 +0.0 + 11 +12371.390168 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1960 + 8 +0 + 62 + 0 + 10 +12554.062814 + 20 +13275.34852 + 30 +0.0 + 11 +12531.249957 + 21 +13314.861548 + 31 +0.0 + 0 +LINE + 5 +1961 + 8 +0 + 62 + 0 + 10 +12468.749957 + 20 +13423.114723 + 30 +0.0 + 11 +12437.499957 + 21 +13477.241311 + 31 +0.0 + 0 +LINE + 5 +1962 + 8 +0 + 62 + 0 + 10 +12374.999957 + 20 +13585.494487 + 30 +0.0 + 11 +12343.749957 + 21 +13639.621074 + 31 +0.0 + 0 +LINE + 5 +1963 + 8 +0 + 62 + 0 + 10 +12468.749957 + 20 +13314.861548 + 30 +0.0 + 11 +12437.499957 + 21 +13368.988136 + 31 +0.0 + 0 +LINE + 5 +1964 + 8 +0 + 62 + 0 + 10 +12374.999957 + 20 +13477.241311 + 30 +0.0 + 11 +12343.749957 + 21 +13531.367899 + 31 +0.0 + 0 +LINE + 5 +1965 + 8 +0 + 62 + 0 + 10 +12281.249957 + 20 +13639.621075 + 30 +0.0 + 11 +12249.999957 + 21 +13693.747662 + 31 +0.0 + 0 +LINE + 5 +1966 + 8 +0 + 62 + 0 + 10 +12374.999958 + 20 +13368.988136 + 30 +0.0 + 11 +12343.749958 + 21 +13423.114724 + 31 +0.0 + 0 +LINE + 5 +1967 + 8 +0 + 62 + 0 + 10 +12281.249958 + 20 +13531.367899 + 30 +0.0 + 11 +12249.999958 + 21 +13585.494487 + 31 +0.0 + 0 +LINE + 5 +1968 + 8 +0 + 62 + 0 + 10 +12187.499958 + 20 +13693.747662 + 30 +0.0 + 11 +12183.890169 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1969 + 8 +0 + 62 + 0 + 10 +12366.581973 + 20 +13275.315338 + 30 +0.0 + 11 +12343.749958 + 21 +13314.861548 + 31 +0.0 + 0 +LINE + 5 +196A + 8 +0 + 62 + 0 + 10 +12281.249958 + 20 +13423.114724 + 30 +0.0 + 11 +12249.999958 + 21 +13477.241312 + 31 +0.0 + 0 +LINE + 5 +196B + 8 +0 + 62 + 0 + 10 +12187.499958 + 20 +13585.494487 + 30 +0.0 + 11 +12156.249958 + 21 +13639.621075 + 31 +0.0 + 0 +LINE + 5 +196C + 8 +0 + 62 + 0 + 10 +12281.249958 + 20 +13314.861548 + 30 +0.0 + 11 +12249.999958 + 21 +13368.988136 + 31 +0.0 + 0 +LINE + 5 +196D + 8 +0 + 62 + 0 + 10 +12187.499958 + 20 +13477.241312 + 30 +0.0 + 11 +12156.249958 + 21 +13531.367899 + 31 +0.0 + 0 +LINE + 5 +196E + 8 +0 + 62 + 0 + 10 +12093.749958 + 20 +13639.621075 + 30 +0.0 + 11 +12062.499958 + 21 +13693.747663 + 31 +0.0 + 0 +LINE + 5 +196F + 8 +0 + 62 + 0 + 10 +12187.499958 + 20 +13368.988136 + 30 +0.0 + 11 +12156.249958 + 21 +13423.114724 + 31 +0.0 + 0 +LINE + 5 +1970 + 8 +0 + 62 + 0 + 10 +12093.749958 + 20 +13531.3679 + 30 +0.0 + 11 +12062.499958 + 21 +13585.494487 + 31 +0.0 + 0 +LINE + 5 +1971 + 8 +0 + 62 + 0 + 10 +11999.999958 + 20 +13693.747663 + 30 +0.0 + 11 +11996.39017 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1972 + 8 +0 + 62 + 0 + 10 +12179.101131 + 20 +13275.282157 + 30 +0.0 + 11 +12156.249958 + 21 +13314.861549 + 31 +0.0 + 0 +LINE + 5 +1973 + 8 +0 + 62 + 0 + 10 +12093.749958 + 20 +13423.114724 + 30 +0.0 + 11 +12062.499958 + 21 +13477.241312 + 31 +0.0 + 0 +LINE + 5 +1974 + 8 +0 + 62 + 0 + 10 +11999.999958 + 20 +13585.494487 + 30 +0.0 + 11 +11968.749958 + 21 +13639.621075 + 31 +0.0 + 0 +LINE + 5 +1975 + 8 +0 + 62 + 0 + 10 +12093.749959 + 20 +13314.861549 + 30 +0.0 + 11 +12062.499959 + 21 +13368.988137 + 31 +0.0 + 0 +LINE + 5 +1976 + 8 +0 + 62 + 0 + 10 +11999.999959 + 20 +13477.241312 + 30 +0.0 + 11 +11968.749959 + 21 +13531.3679 + 31 +0.0 + 0 +LINE + 5 +1977 + 8 +0 + 62 + 0 + 10 +11906.249959 + 20 +13639.621075 + 30 +0.0 + 11 +11874.999959 + 21 +13693.747663 + 31 +0.0 + 0 +LINE + 5 +1978 + 8 +0 + 62 + 0 + 10 +11999.999959 + 20 +13368.988137 + 30 +0.0 + 11 +11968.749959 + 21 +13423.114724 + 31 +0.0 + 0 +LINE + 5 +1979 + 8 +0 + 62 + 0 + 10 +11906.249959 + 20 +13531.3679 + 30 +0.0 + 11 +11874.999959 + 21 +13585.494488 + 31 +0.0 + 0 +LINE + 5 +197A + 8 +0 + 62 + 0 + 10 +11812.499959 + 20 +13693.747663 + 30 +0.0 + 11 +11808.89017 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +197B + 8 +0 + 62 + 0 + 10 +11991.620289 + 20 +13275.248975 + 30 +0.0 + 11 +11968.749959 + 21 +13314.861549 + 31 +0.0 + 0 +LINE + 5 +197C + 8 +0 + 62 + 0 + 10 +11906.249959 + 20 +13423.114725 + 30 +0.0 + 11 +11874.999959 + 21 +13477.241312 + 31 +0.0 + 0 +LINE + 5 +197D + 8 +0 + 62 + 0 + 10 +11812.499959 + 20 +13585.494488 + 30 +0.0 + 11 +11781.249959 + 21 +13639.621076 + 31 +0.0 + 0 +LINE + 5 +197E + 8 +0 + 62 + 0 + 10 +11906.249959 + 20 +13314.861549 + 30 +0.0 + 11 +11874.999959 + 21 +13368.988137 + 31 +0.0 + 0 +LINE + 5 +197F + 8 +0 + 62 + 0 + 10 +11812.499959 + 20 +13477.241312 + 30 +0.0 + 11 +11781.249959 + 21 +13531.3679 + 31 +0.0 + 0 +LINE + 5 +1980 + 8 +0 + 62 + 0 + 10 +11718.749959 + 20 +13639.621076 + 30 +0.0 + 11 +11687.499959 + 21 +13693.747663 + 31 +0.0 + 0 +LINE + 5 +1981 + 8 +0 + 62 + 0 + 10 +11812.499959 + 20 +13368.988137 + 30 +0.0 + 11 +11781.249959 + 21 +13423.114725 + 31 +0.0 + 0 +LINE + 5 +1982 + 8 +0 + 62 + 0 + 10 +11718.749959 + 20 +13531.3679 + 30 +0.0 + 11 +11687.499959 + 21 +13585.494488 + 31 +0.0 + 0 +LINE + 5 +1983 + 8 +0 + 62 + 0 + 10 +11624.999959 + 20 +13693.747663 + 30 +0.0 + 11 +11621.390171 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1984 + 8 +0 + 62 + 0 + 10 +11804.139448 + 20 +13275.215793 + 30 +0.0 + 11 +11781.24996 + 21 +13314.861549 + 31 +0.0 + 0 +LINE + 5 +1985 + 8 +0 + 62 + 0 + 10 +11718.74996 + 20 +13423.114725 + 30 +0.0 + 11 +11687.49996 + 21 +13477.241313 + 31 +0.0 + 0 +LINE + 5 +1986 + 8 +0 + 62 + 0 + 10 +11624.99996 + 20 +13585.494488 + 30 +0.0 + 11 +11593.74996 + 21 +13639.621076 + 31 +0.0 + 0 +LINE + 5 +1987 + 8 +0 + 62 + 0 + 10 +11718.74996 + 20 +13314.86155 + 30 +0.0 + 11 +11687.49996 + 21 +13368.988137 + 31 +0.0 + 0 +LINE + 5 +1988 + 8 +0 + 62 + 0 + 10 +11624.99996 + 20 +13477.241313 + 30 +0.0 + 11 +11593.74996 + 21 +13531.367901 + 31 +0.0 + 0 +LINE + 5 +1989 + 8 +0 + 62 + 0 + 10 +11624.99996 + 20 +13368.988137 + 30 +0.0 + 11 +11593.74996 + 21 +13423.114725 + 31 +0.0 + 0 +LINE + 5 +198A + 8 +0 + 62 + 0 + 10 +11616.658606 + 20 +13275.182611 + 30 +0.0 + 11 +11593.74996 + 21 +13314.86155 + 31 +0.0 + 0 +LINE + 5 +198B + 8 +0 + 62 + 0 + 10 +13571.041026 + 20 +13275.528513 + 30 +0.0 + 11 +13593.749984 + 21 +13314.861582 + 31 +0.0 + 0 +LINE + 5 +198C + 8 +0 + 62 + 0 + 10 +13562.499984 + 20 +13368.988169 + 30 +0.0 + 11 +13593.749984 + 21 +13423.114757 + 31 +0.0 + 0 +LINE + 5 +198D + 8 +0 + 62 + 0 + 10 +13468.749985 + 20 +13314.861582 + 30 +0.0 + 11 +13499.999985 + 21 +13368.988169 + 31 +0.0 + 0 +LINE + 5 +198E + 8 +0 + 62 + 0 + 10 +13562.499985 + 20 +13477.241345 + 30 +0.0 + 11 +13593.749985 + 21 +13531.367933 + 31 +0.0 + 0 +LINE + 5 +198F + 8 +0 + 62 + 0 + 10 +13383.521866 + 20 +13275.495324 + 30 +0.0 + 11 +13406.249985 + 21 +13314.861581 + 31 +0.0 + 0 +LINE + 5 +1990 + 8 +0 + 62 + 0 + 10 +13468.749985 + 20 +13423.114757 + 30 +0.0 + 11 +13499.999985 + 21 +13477.241345 + 31 +0.0 + 0 +LINE + 5 +1991 + 8 +0 + 62 + 0 + 10 +13562.499985 + 20 +13585.49452 + 30 +0.0 + 11 +13593.749985 + 21 +13639.621108 + 31 +0.0 + 0 +LINE + 5 +1992 + 8 +0 + 62 + 0 + 10 +13374.999985 + 20 +13368.988169 + 30 +0.0 + 11 +13406.249985 + 21 +13423.114757 + 31 +0.0 + 0 +LINE + 5 +1993 + 8 +0 + 62 + 0 + 10 +13468.749985 + 20 +13531.367932 + 30 +0.0 + 11 +13499.999985 + 21 +13585.49452 + 31 +0.0 + 0 +LINE + 5 +1994 + 8 +0 + 62 + 0 + 10 +13562.499985 + 20 +13693.747696 + 30 +0.0 + 11 +13566.109755 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1995 + 8 +0 + 62 + 0 + 10 +13281.249985 + 20 +13314.861581 + 30 +0.0 + 11 +13312.499985 + 21 +13368.988169 + 31 +0.0 + 0 +LINE + 5 +1996 + 8 +0 + 62 + 0 + 10 +13374.999985 + 20 +13477.241344 + 30 +0.0 + 11 +13406.249985 + 21 +13531.367932 + 31 +0.0 + 0 +LINE + 5 +1997 + 8 +0 + 62 + 0 + 10 +13468.749985 + 20 +13639.621108 + 30 +0.0 + 11 +13499.999985 + 21 +13693.747695 + 31 +0.0 + 0 +LINE + 5 +1998 + 8 +0 + 62 + 0 + 10 +13196.002705 + 20 +13275.462136 + 30 +0.0 + 11 +13218.749985 + 21 +13314.861581 + 31 +0.0 + 0 +LINE + 5 +1999 + 8 +0 + 62 + 0 + 10 +13281.249985 + 20 +13423.114757 + 30 +0.0 + 11 +13312.499985 + 21 +13477.241344 + 31 +0.0 + 0 +LINE + 5 +199A + 8 +0 + 62 + 0 + 10 +13374.999985 + 20 +13585.49452 + 30 +0.0 + 11 +13406.249985 + 21 +13639.621108 + 31 +0.0 + 0 +LINE + 5 +199B + 8 +0 + 62 + 0 + 10 +13187.499986 + 20 +13368.988169 + 30 +0.0 + 11 +13218.749986 + 21 +13423.114756 + 31 +0.0 + 0 +LINE + 5 +199C + 8 +0 + 62 + 0 + 10 +13281.249986 + 20 +13531.367932 + 30 +0.0 + 11 +13312.499986 + 21 +13585.49452 + 31 +0.0 + 0 +LINE + 5 +199D + 8 +0 + 62 + 0 + 10 +13374.999986 + 20 +13693.747695 + 30 +0.0 + 11 +13378.609756 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +199E + 8 +0 + 62 + 0 + 10 +13093.749986 + 20 +13314.861581 + 30 +0.0 + 11 +13124.999986 + 21 +13368.988169 + 31 +0.0 + 0 +LINE + 5 +199F + 8 +0 + 62 + 0 + 10 +13187.499986 + 20 +13477.241344 + 30 +0.0 + 11 +13218.749986 + 21 +13531.367932 + 31 +0.0 + 0 +LINE + 5 +19A0 + 8 +0 + 62 + 0 + 10 +13281.249986 + 20 +13639.621107 + 30 +0.0 + 11 +13312.499986 + 21 +13693.747695 + 31 +0.0 + 0 +LINE + 5 +19A1 + 8 +0 + 62 + 0 + 10 +13008.483544 + 20 +13275.428947 + 30 +0.0 + 11 +13031.249986 + 21 +13314.861581 + 31 +0.0 + 0 +LINE + 5 +19A2 + 8 +0 + 62 + 0 + 10 +13093.749986 + 20 +13423.114756 + 30 +0.0 + 11 +13124.999986 + 21 +13477.241344 + 31 +0.0 + 0 +LINE + 5 +19A3 + 8 +0 + 62 + 0 + 10 +13187.499986 + 20 +13585.494519 + 30 +0.0 + 11 +13218.749986 + 21 +13639.621107 + 31 +0.0 + 0 +LINE + 5 +19A4 + 8 +0 + 62 + 0 + 10 +12999.999986 + 20 +13368.988168 + 30 +0.0 + 11 +13031.249986 + 21 +13423.114756 + 31 +0.0 + 0 +LINE + 5 +19A5 + 8 +0 + 62 + 0 + 10 +13093.749986 + 20 +13531.367932 + 30 +0.0 + 11 +13124.999986 + 21 +13585.494519 + 31 +0.0 + 0 +LINE + 5 +19A6 + 8 +0 + 62 + 0 + 10 +13187.499986 + 20 +13693.747695 + 30 +0.0 + 11 +13191.109756 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19A7 + 8 +0 + 62 + 0 + 10 +12906.249986 + 20 +13314.861581 + 30 +0.0 + 11 +12937.499986 + 21 +13368.988168 + 31 +0.0 + 0 +LINE + 5 +19A8 + 8 +0 + 62 + 0 + 10 +12999.999986 + 20 +13477.241344 + 30 +0.0 + 11 +13031.249986 + 21 +13531.367931 + 31 +0.0 + 0 +LINE + 5 +19A9 + 8 +0 + 62 + 0 + 10 +13093.749986 + 20 +13639.621107 + 30 +0.0 + 11 +13124.999986 + 21 +13693.747695 + 31 +0.0 + 0 +LINE + 5 +19AA + 8 +0 + 62 + 0 + 10 +12820.964384 + 20 +13275.395759 + 30 +0.0 + 11 +12843.749987 + 21 +13314.86158 + 31 +0.0 + 0 +LINE + 5 +19AB + 8 +0 + 62 + 0 + 10 +12906.249987 + 20 +13423.114756 + 30 +0.0 + 11 +12937.499987 + 21 +13477.241344 + 31 +0.0 + 0 +LINE + 5 +19AC + 8 +0 + 62 + 0 + 10 +12999.999987 + 20 +13585.494519 + 30 +0.0 + 11 +13031.249987 + 21 +13639.621107 + 31 +0.0 + 0 +LINE + 5 +19AD + 8 +0 + 62 + 0 + 10 +12812.499987 + 20 +13368.988168 + 30 +0.0 + 11 +12843.749987 + 21 +13423.114756 + 31 +0.0 + 0 +LINE + 5 +19AE + 8 +0 + 62 + 0 + 10 +12906.249987 + 20 +13531.367931 + 30 +0.0 + 11 +12937.499987 + 21 +13585.494519 + 31 +0.0 + 0 +LINE + 5 +19AF + 8 +0 + 62 + 0 + 10 +12999.999987 + 20 +13693.747694 + 30 +0.0 + 11 +13003.609757 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19B0 + 8 +0 + 62 + 0 + 10 +12718.749987 + 20 +13314.86158 + 30 +0.0 + 11 +12749.999987 + 21 +13368.988168 + 31 +0.0 + 0 +LINE + 5 +19B1 + 8 +0 + 62 + 0 + 10 +12812.499987 + 20 +13477.241343 + 30 +0.0 + 11 +12843.749987 + 21 +13531.367931 + 31 +0.0 + 0 +LINE + 5 +19B2 + 8 +0 + 62 + 0 + 10 +12906.249987 + 20 +13639.621107 + 30 +0.0 + 11 +12937.499987 + 21 +13693.747694 + 31 +0.0 + 0 +LINE + 5 +19B3 + 8 +0 + 62 + 0 + 10 +12633.445223 + 20 +13275.36257 + 30 +0.0 + 11 +12656.249987 + 21 +13314.86158 + 31 +0.0 + 0 +LINE + 5 +19B4 + 8 +0 + 62 + 0 + 10 +12718.749987 + 20 +13423.114756 + 30 +0.0 + 11 +12749.999987 + 21 +13477.241343 + 31 +0.0 + 0 +LINE + 5 +19B5 + 8 +0 + 62 + 0 + 10 +12812.499987 + 20 +13585.494519 + 30 +0.0 + 11 +12843.749987 + 21 +13639.621106 + 31 +0.0 + 0 +LINE + 5 +19B6 + 8 +0 + 62 + 0 + 10 +12624.999988 + 20 +13368.988168 + 30 +0.0 + 11 +12656.249988 + 21 +13423.114755 + 31 +0.0 + 0 +LINE + 5 +19B7 + 8 +0 + 62 + 0 + 10 +12718.749988 + 20 +13531.367931 + 30 +0.0 + 11 +12749.999988 + 21 +13585.494519 + 31 +0.0 + 0 +LINE + 5 +19B8 + 8 +0 + 62 + 0 + 10 +12812.499988 + 20 +13693.747694 + 30 +0.0 + 11 +12816.109758 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19B9 + 8 +0 + 62 + 0 + 10 +12531.249988 + 20 +13314.86158 + 30 +0.0 + 11 +12562.499988 + 21 +13368.988168 + 31 +0.0 + 0 +LINE + 5 +19BA + 8 +0 + 62 + 0 + 10 +12624.999988 + 20 +13477.241343 + 30 +0.0 + 11 +12656.249988 + 21 +13531.367931 + 31 +0.0 + 0 +LINE + 5 +19BB + 8 +0 + 62 + 0 + 10 +12718.749988 + 20 +13639.621106 + 30 +0.0 + 11 +12749.999988 + 21 +13693.747694 + 31 +0.0 + 0 +LINE + 5 +19BC + 8 +0 + 62 + 0 + 10 +12445.926063 + 20 +13275.329381 + 30 +0.0 + 11 +12468.749988 + 21 +13314.86158 + 31 +0.0 + 0 +LINE + 5 +19BD + 8 +0 + 62 + 0 + 10 +12531.249988 + 20 +13423.114755 + 30 +0.0 + 11 +12562.499988 + 21 +13477.241343 + 31 +0.0 + 0 +LINE + 5 +19BE + 8 +0 + 62 + 0 + 10 +12624.999988 + 20 +13585.494518 + 30 +0.0 + 11 +12656.249988 + 21 +13639.621106 + 31 +0.0 + 0 +LINE + 5 +19BF + 8 +0 + 62 + 0 + 10 +12437.499988 + 20 +13368.988167 + 30 +0.0 + 11 +12468.749988 + 21 +13423.114755 + 31 +0.0 + 0 +LINE + 5 +19C0 + 8 +0 + 62 + 0 + 10 +12531.249988 + 20 +13531.367931 + 30 +0.0 + 11 +12562.499988 + 21 +13585.494518 + 31 +0.0 + 0 +LINE + 5 +19C1 + 8 +0 + 62 + 0 + 10 +12624.999988 + 20 +13693.747694 + 30 +0.0 + 11 +12628.609759 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19C2 + 8 +0 + 62 + 0 + 10 +12343.749988 + 20 +13314.861579 + 30 +0.0 + 11 +12374.999988 + 21 +13368.988167 + 31 +0.0 + 0 +LINE + 5 +19C3 + 8 +0 + 62 + 0 + 10 +12437.499988 + 20 +13477.241343 + 30 +0.0 + 11 +12468.749988 + 21 +13531.36793 + 31 +0.0 + 0 +LINE + 5 +19C4 + 8 +0 + 62 + 0 + 10 +12531.249988 + 20 +13639.621106 + 30 +0.0 + 11 +12562.499988 + 21 +13693.747694 + 31 +0.0 + 0 +LINE + 5 +19C5 + 8 +0 + 62 + 0 + 10 +12258.406902 + 20 +13275.296193 + 30 +0.0 + 11 +12281.249989 + 21 +13314.861579 + 31 +0.0 + 0 +LINE + 5 +19C6 + 8 +0 + 62 + 0 + 10 +12343.749989 + 20 +13423.114755 + 30 +0.0 + 11 +12374.999989 + 21 +13477.241343 + 31 +0.0 + 0 +LINE + 5 +19C7 + 8 +0 + 62 + 0 + 10 +12437.499989 + 20 +13585.494518 + 30 +0.0 + 11 +12468.749989 + 21 +13639.621106 + 31 +0.0 + 0 +LINE + 5 +19C8 + 8 +0 + 62 + 0 + 10 +12249.999989 + 20 +13368.988167 + 30 +0.0 + 11 +12281.249989 + 21 +13423.114755 + 31 +0.0 + 0 +LINE + 5 +19C9 + 8 +0 + 62 + 0 + 10 +12343.749989 + 20 +13531.36793 + 30 +0.0 + 11 +12374.999989 + 21 +13585.494518 + 31 +0.0 + 0 +LINE + 5 +19CA + 8 +0 + 62 + 0 + 10 +12437.499989 + 20 +13693.747693 + 30 +0.0 + 11 +12441.10976 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19CB + 8 +0 + 62 + 0 + 10 +12156.249989 + 20 +13314.861579 + 30 +0.0 + 11 +12187.499989 + 21 +13368.988167 + 31 +0.0 + 0 +LINE + 5 +19CC + 8 +0 + 62 + 0 + 10 +12249.999989 + 20 +13477.241342 + 30 +0.0 + 11 +12281.249989 + 21 +13531.36793 + 31 +0.0 + 0 +LINE + 5 +19CD + 8 +0 + 62 + 0 + 10 +12343.749989 + 20 +13639.621106 + 30 +0.0 + 11 +12374.999989 + 21 +13693.747693 + 31 +0.0 + 0 +LINE + 5 +19CE + 8 +0 + 62 + 0 + 10 +12070.887741 + 20 +13275.263004 + 30 +0.0 + 11 +12093.749989 + 21 +13314.861579 + 31 +0.0 + 0 +LINE + 5 +19CF + 8 +0 + 62 + 0 + 10 +12156.249989 + 20 +13423.114754 + 30 +0.0 + 11 +12187.499989 + 21 +13477.241342 + 31 +0.0 + 0 +LINE + 5 +19D0 + 8 +0 + 62 + 0 + 10 +12249.999989 + 20 +13585.494518 + 30 +0.0 + 11 +12281.249989 + 21 +13639.621105 + 31 +0.0 + 0 +LINE + 5 +19D1 + 8 +0 + 62 + 0 + 10 +12062.499989 + 20 +13368.988167 + 30 +0.0 + 11 +12093.749989 + 21 +13423.114754 + 31 +0.0 + 0 +LINE + 5 +19D2 + 8 +0 + 62 + 0 + 10 +12156.249989 + 20 +13531.36793 + 30 +0.0 + 11 +12187.499989 + 21 +13585.494518 + 31 +0.0 + 0 +LINE + 5 +19D3 + 8 +0 + 62 + 0 + 10 +12249.999989 + 20 +13693.747693 + 30 +0.0 + 11 +12253.60976 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19D4 + 8 +0 + 62 + 0 + 10 +11968.74999 + 20 +13314.861579 + 30 +0.0 + 11 +11999.99999 + 21 +13368.988167 + 31 +0.0 + 0 +LINE + 5 +19D5 + 8 +0 + 62 + 0 + 10 +12062.49999 + 20 +13477.241342 + 30 +0.0 + 11 +12093.74999 + 21 +13531.36793 + 31 +0.0 + 0 +LINE + 5 +19D6 + 8 +0 + 62 + 0 + 10 +12156.24999 + 20 +13639.621105 + 30 +0.0 + 11 +12187.49999 + 21 +13693.747693 + 31 +0.0 + 0 +LINE + 5 +19D7 + 8 +0 + 62 + 0 + 10 +11883.368581 + 20 +13275.229816 + 30 +0.0 + 11 +11906.24999 + 21 +13314.861579 + 31 +0.0 + 0 +LINE + 5 +19D8 + 8 +0 + 62 + 0 + 10 +11968.74999 + 20 +13423.114754 + 30 +0.0 + 11 +11999.99999 + 21 +13477.241342 + 31 +0.0 + 0 +LINE + 5 +19D9 + 8 +0 + 62 + 0 + 10 +12062.49999 + 20 +13585.494517 + 30 +0.0 + 11 +12093.74999 + 21 +13639.621105 + 31 +0.0 + 0 +LINE + 5 +19DA + 8 +0 + 62 + 0 + 10 +11874.99999 + 20 +13368.988166 + 30 +0.0 + 11 +11906.24999 + 21 +13423.114754 + 31 +0.0 + 0 +LINE + 5 +19DB + 8 +0 + 62 + 0 + 10 +11968.74999 + 20 +13531.367929 + 30 +0.0 + 11 +11999.99999 + 21 +13585.494517 + 31 +0.0 + 0 +LINE + 5 +19DC + 8 +0 + 62 + 0 + 10 +12062.49999 + 20 +13693.747693 + 30 +0.0 + 11 +12066.109761 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19DD + 8 +0 + 62 + 0 + 10 +11781.24999 + 20 +13314.861578 + 30 +0.0 + 11 +11812.49999 + 21 +13368.988166 + 31 +0.0 + 0 +LINE + 5 +19DE + 8 +0 + 62 + 0 + 10 +11874.99999 + 20 +13477.241342 + 30 +0.0 + 11 +11906.24999 + 21 +13531.367929 + 31 +0.0 + 0 +LINE + 5 +19DF + 8 +0 + 62 + 0 + 10 +11968.74999 + 20 +13639.621105 + 30 +0.0 + 11 +11999.99999 + 21 +13693.747693 + 31 +0.0 + 0 +LINE + 5 +19E0 + 8 +0 + 62 + 0 + 10 +11695.84942 + 20 +13275.196627 + 30 +0.0 + 11 +11718.74999 + 21 +13314.861578 + 31 +0.0 + 0 +LINE + 5 +19E1 + 8 +0 + 62 + 0 + 10 +11781.24999 + 20 +13423.114754 + 30 +0.0 + 11 +11812.49999 + 21 +13477.241342 + 31 +0.0 + 0 +LINE + 5 +19E2 + 8 +0 + 62 + 0 + 10 +11874.99999 + 20 +13585.494517 + 30 +0.0 + 11 +11906.24999 + 21 +13639.621105 + 31 +0.0 + 0 +LINE + 5 +19E3 + 8 +0 + 62 + 0 + 10 +11687.499991 + 20 +13368.988166 + 30 +0.0 + 11 +11718.749991 + 21 +13423.114754 + 31 +0.0 + 0 +LINE + 5 +19E4 + 8 +0 + 62 + 0 + 10 +11781.249991 + 20 +13531.367929 + 30 +0.0 + 11 +11812.499991 + 21 +13585.494517 + 31 +0.0 + 0 +LINE + 5 +19E5 + 8 +0 + 62 + 0 + 10 +11874.999991 + 20 +13693.747692 + 30 +0.0 + 11 +11878.609762 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19E6 + 8 +0 + 62 + 0 + 10 +11593.749991 + 20 +13314.861578 + 30 +0.0 + 11 +11624.999991 + 21 +13368.988166 + 31 +0.0 + 0 +LINE + 5 +19E7 + 8 +0 + 62 + 0 + 10 +11687.499991 + 20 +13477.241341 + 30 +0.0 + 11 +11718.749991 + 21 +13531.367929 + 31 +0.0 + 0 +LINE + 5 +19E8 + 8 +0 + 62 + 0 + 10 +11781.249991 + 20 +13639.621104 + 30 +0.0 + 11 +11812.499991 + 21 +13693.747692 + 31 +0.0 + 0 +LINE + 5 +19E9 + 8 +0 + 62 + 0 + 10 +11593.749991 + 20 +13423.114753 + 30 +0.0 + 11 +11624.999991 + 21 +13477.241341 + 31 +0.0 + 0 +LINE + 5 +19EA + 8 +0 + 62 + 0 + 10 +11687.499991 + 20 +13585.494517 + 30 +0.0 + 11 +11718.749991 + 21 +13639.621104 + 31 +0.0 + 0 +LINE + 5 +19EB + 8 +0 + 62 + 0 + 10 +11593.749991 + 20 +13531.367929 + 30 +0.0 + 11 +11624.999991 + 21 +13585.494517 + 31 +0.0 + 0 +LINE + 5 +19EC + 8 +0 + 62 + 0 + 10 +11687.499991 + 20 +13693.747692 + 30 +0.0 + 11 +11691.109763 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +19ED + 8 +0 + 62 + 0 + 10 +11593.749991 + 20 +13639.621104 + 30 +0.0 + 11 +11624.999991 + 21 +13693.747692 + 31 +0.0 + 0 +LINE + 5 +19EE + 8 +0 + 62 + 0 + 10 +12785.660172 + 20 +12850.0 + 30 +0.0 + 11 +13185.660172 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +19EF + 8 +0 + 62 + 0 + 10 +11725.0 + 20 +12850.0 + 30 +0.0 + 11 +12125.0 + 21 +13250.0 + 31 +0.0 + 0 +LINE + 5 +19F0 + 8 +0 + 62 + 0 + 10 +13315.990257 + 20 +12850.0 + 30 +0.0 + 11 +13405.776502 + 21 +12939.786245 + 31 +0.0 + 0 +LINE + 5 +19F1 + 8 +0 + 62 + 0 + 10 +13538.359024 + 20 +13072.368767 + 30 +0.0 + 11 +13605.0 + 21 +13139.009743 + 31 +0.0 + 0 +LINE + 5 +19F2 + 8 +0 + 62 + 0 + 10 +12255.330085 + 20 +12850.0 + 30 +0.0 + 11 +12477.698852 + 21 +13072.368767 + 31 +0.0 + 0 +LINE + 5 +19F3 + 8 +0 + 62 + 0 + 10 +12610.281373 + 20 +13204.951288 + 30 +0.0 + 11 +12655.330085 + 21 +13250.0 + 31 +0.0 + 0 +POLYLINE + 5 +19F4 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28B3 + 8 +DECKEN + 10 +13605.0 + 20 +13775.0 + 30 +0.0 + 0 +VERTEX + 5 +28B4 + 8 +DECKEN + 10 +11555.0 + 20 +13775.0 + 30 +0.0 + 0 +SEQEND + 5 +28B5 + 8 +DECKEN + 0 +POLYLINE + 5 +19F8 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28B6 + 8 +DECKEN + 10 +13605.0 + 20 +13700.0 + 30 +0.0 + 0 +VERTEX + 5 +28B7 + 8 +DECKEN + 10 +11555.0 + 20 +13700.0 + 30 +0.0 + 0 +SEQEND + 5 +28B8 + 8 +DECKEN + 0 +POLYLINE + 5 +19FC + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28B9 + 8 +DECKEN + 10 +13605.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +28BA + 8 +DECKEN + 10 +11555.0 + 20 +13250.0 + 30 +0.0 + 0 +SEQEND + 5 +28BB + 8 +DECKEN + 0 +POLYLINE + 5 +1A00 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28BC + 8 +PE-FOLIE + 10 +11555.0 + 20 +13262.660165 + 30 +0.0 + 0 +VERTEX + 5 +28BD + 8 +PE-FOLIE + 10 +13605.0 + 20 +13262.869635 + 30 +0.0 + 0 +SEQEND + 5 +28BE + 8 +PE-FOLIE + 0 +POLYLINE + 5 +1A04 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28BF + 8 +DECKEN + 10 +11555.0 + 20 +13275.171698 + 30 +0.0 + 0 +VERTEX + 5 +28C0 + 8 +DECKEN + 10 +13605.0 + 20 +13275.534523 + 30 +0.0 + 0 +SEQEND + 5 +28C1 + 8 +DECKEN + 0 +POLYLINE + 5 +1A08 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28C2 + 8 +DECKEN + 10 +11555.0 + 20 +12850.0 + 30 +0.0 + 0 +VERTEX + 5 +28C3 + 8 +DECKEN + 10 +13605.0 + 20 +12850.0 + 30 +0.0 + 0 +SEQEND + 5 +28C4 + 8 +DECKEN + 0 +POLYLINE + 5 +1A0C + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28C5 + 8 +DECKEN + 10 +11555.0 + 20 +13700.0 + 30 +0.0 + 0 +VERTEX + 5 +28C6 + 8 +DECKEN + 10 +13605.0 + 20 +13700.0 + 30 +0.0 + 0 +SEQEND + 5 +28C7 + 8 +DECKEN + 0 +POLYLINE + 5 +1A10 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28C8 + 8 +DETAILS + 10 +11955.0 + 20 +13775.0 + 30 +0.0 + 0 +VERTEX + 5 +28C9 + 8 +DETAILS + 10 +11955.0 + 20 +13705.0 + 30 +0.0 + 0 +SEQEND + 5 +28CA + 8 +DETAILS + 0 +POLYLINE + 5 +1A14 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28CB + 8 +DETAILS + 10 +12455.0 + 20 +13775.0 + 30 +0.0 + 0 +VERTEX + 5 +28CC + 8 +DETAILS + 10 +12455.0 + 20 +13705.0 + 30 +0.0 + 0 +SEQEND + 5 +28CD + 8 +DETAILS + 0 +POLYLINE + 5 +1A18 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28CE + 8 +DETAILS + 10 +12955.0 + 20 +13775.0 + 30 +0.0 + 0 +VERTEX + 5 +28CF + 8 +DETAILS + 10 +12955.0 + 20 +13705.0 + 30 +0.0 + 0 +SEQEND + 5 +28D0 + 8 +DETAILS + 0 +POLYLINE + 5 +1A1C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +28D1 + 8 +DETAILS + 10 +13455.0 + 20 +13775.0 + 30 +0.0 + 0 +VERTEX + 5 +28D2 + 8 +DETAILS + 10 +13455.0 + 20 +13705.0 + 30 +0.0 + 0 +SEQEND + 5 +28D3 + 8 +DETAILS + 0 +POLYLINE + 5 +1A20 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A21 + 8 +DETAILS + 10 +11890.0 + 20 +13705.0 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A22 + 8 +DETAILS + 10 +11890.0 + 20 +13705.0 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A23 + 8 +DETAILS + 10 +11894.188794 + 20 +13710.344564 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A24 + 8 +DETAILS + 10 +11898.066408 + 20 +13715.005599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A25 + 8 +DETAILS + 10 +11901.713079 + 20 +13719.023527 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A26 + 8 +DETAILS + 10 +11905.209046 + 20 +13722.438772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A27 + 8 +DETAILS + 10 +11908.634546 + 20 +13725.291756 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A28 + 8 +DETAILS + 10 +11912.069816 + 20 +13727.622902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A29 + 8 +DETAILS + 10 +11915.595095 + 20 +13729.472632 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2A + 8 +DETAILS + 10 +11919.290621 + 20 +13730.88137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2B + 8 +DETAILS + 10 +11923.205515 + 20 +13731.897403 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2C + 8 +DETAILS + 10 +11927.264437 + 20 +13732.600491 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2D + 8 +DETAILS + 10 +11931.360931 + 20 +13733.078257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2E + 8 +DETAILS + 10 +11935.388541 + 20 +13733.418327 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2F + 8 +DETAILS + 10 +11939.240811 + 20 +13733.708323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A30 + 8 +DETAILS + 10 +11942.811284 + 20 +13734.035871 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A31 + 8 +DETAILS + 10 +11945.993506 + 20 +13734.488595 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A32 + 8 +DETAILS + 10 +11948.681019 + 20 +13735.15412 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A33 + 8 +DETAILS + 10 +11901.656347 + 20 +13720.199473 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A34 + 8 +DETAILS + 10 +11916.618791 + 20 +13735.15412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A35 + 8 +DETAILS + 10 +11942.268556 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A36 + 8 +DETAILS + 10 +11948.681019 + 20 +13735.15412 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A37 + 8 +DETAILS + 0 +POLYLINE + 5 +1A38 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A39 + 8 +DETAILS + 10 +11824.706963 + 20 +13711.653945 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A3A + 8 +DETAILS + 10 +11824.706963 + 20 +13711.653945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A3B + 8 +DETAILS + 10 +11836.291966 + 20 +13722.373399 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A3C + 8 +DETAILS + 10 +11848.453085 + 20 +13730.914744 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A3D + 8 +DETAILS + 10 +11860.964881 + 20 +13737.903875 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A3E + 8 +DETAILS + 10 +11873.601919 + 20 +13743.966685 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A3F + 8 +DETAILS + 10 +11886.13876 + 20 +13749.729068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A40 + 8 +DETAILS + 10 +11898.349969 + 20 +13755.816916 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A41 + 8 +DETAILS + 10 +11910.010106 + 20 +13762.856125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A42 + 8 +DETAILS + 10 +11920.893737 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A43 + 8 +DETAILS + 10 +11854.631763 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A44 + 8 +DETAILS + 10 +11893.106455 + 20 +13745.836002 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A45 + 8 +DETAILS + 10 +11920.893737 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A46 + 8 +DETAILS + 0 +POLYLINE + 5 +1A47 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A48 + 8 +DETAILS + 10 +11781.957237 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A49 + 8 +DETAILS + 10 +11781.957237 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4A + 8 +DETAILS + 10 +11788.644191 + 20 +13716.832159 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4B + 8 +DETAILS + 10 +11794.37303 + 20 +13724.505602 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4C + 8 +DETAILS + 10 +11799.287786 + 20 +13730.626832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4D + 8 +DETAILS + 10 +11803.532488 + 20 +13735.42117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4E + 8 +DETAILS + 10 +11807.251167 + 20 +13739.113937 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4F + 8 +DETAILS + 10 +11810.587853 + 20 +13741.930455 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A50 + 8 +DETAILS + 10 +11813.686577 + 20 +13744.096044 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A51 + 8 +DETAILS + 10 +11816.691369 + 20 +13745.836025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A52 + 8 +DETAILS + 10 +11819.719124 + 20 +13747.343382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A53 + 8 +DETAILS + 10 +11822.778191 + 20 +13748.681748 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A54 + 8 +DETAILS + 10 +11825.849784 + 20 +13749.882417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A55 + 8 +DETAILS + 10 +11828.915115 + 20 +13750.976684 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A56 + 8 +DETAILS + 10 +11831.955398 + 20 +13751.995843 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A57 + 8 +DETAILS + 10 +11834.951846 + 20 +13752.97119 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A58 + 8 +DETAILS + 10 +11837.885673 + 20 +13753.934018 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A59 + 8 +DETAILS + 10 +11840.738092 + 20 +13754.915623 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5A + 8 +DETAILS + 10 +11843.487185 + 20 +13755.943127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5B + 8 +DETAILS + 10 +11846.09851 + 20 +13757.026961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5C + 8 +DETAILS + 10 +11848.534492 + 20 +13758.173384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5D + 8 +DETAILS + 10 +11850.757559 + 20 +13759.388656 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5E + 8 +DETAILS + 10 +11852.730136 + 20 +13760.679036 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5F + 8 +DETAILS + 10 +11854.414649 + 20 +13762.050782 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A60 + 8 +DETAILS + 10 +11855.773526 + 20 +13763.510155 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A61 + 8 +DETAILS + 10 +11856.769192 + 20 +13765.063412 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A62 + 8 +DETAILS + 10 +11801.194627 + 20 +13735.15412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A63 + 8 +DETAILS + 10 +11816.156983 + 20 +13747.972412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A64 + 8 +DETAILS + 10 +11841.806836 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A65 + 8 +DETAILS + 10 +11854.631763 + 20 +13760.790648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A66 + 8 +DETAILS + 10 +11856.769192 + 20 +13765.063412 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A67 + 8 +DETAILS + 0 +POLYLINE + 5 +1A68 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A69 + 8 +DETAILS + 10 +11705.007765 + 20 +13705.244827 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A6A + 8 +DETAILS + 10 +11705.007765 + 20 +13705.244827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6B + 8 +DETAILS + 10 +11714.234036 + 20 +13713.343865 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6C + 8 +DETAILS + 10 +11725.514287 + 20 +13721.568084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6D + 8 +DETAILS + 10 +11738.297451 + 20 +13729.842376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6E + 8 +DETAILS + 10 +11752.03246 + 20 +13738.091635 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6F + 8 +DETAILS + 10 +11766.168245 + 20 +13746.240751 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A70 + 8 +DETAILS + 10 +11780.153737 + 20 +13754.214619 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A71 + 8 +DETAILS + 10 +11793.43787 + 20 +13761.93813 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A72 + 8 +DETAILS + 10 +11805.469573 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A73 + 8 +DETAILS + 10 +11726.382672 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A74 + 8 +DETAILS + 10 +11775.544774 + 20 +13750.108766 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A75 + 8 +DETAILS + 10 +11805.469573 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A76 + 8 +DETAILS + 0 +POLYLINE + 5 +1A77 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A78 + 8 +DETAILS + 10 +11649.433201 + 20 +13711.653945 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A79 + 8 +DETAILS + 10 +11649.433201 + 20 +13711.653945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7A + 8 +DETAILS + 10 +11661.097526 + 20 +13721.146648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7B + 8 +DETAILS + 10 +11673.413115 + 20 +13729.112172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7C + 8 +DETAILS + 10 +11686.029285 + 20 +13736.026196 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7D + 8 +DETAILS + 10 +11698.595357 + 20 +13742.364399 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7E + 8 +DETAILS + 10 +11710.760649 + 20 +13748.60246 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7F + 8 +DETAILS + 10 +11722.174478 + 20 +13755.216059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A80 + 8 +DETAILS + 10 +11732.486165 + 20 +13762.680875 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A81 + 8 +DETAILS + 10 +11741.345028 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A82 + 8 +DETAILS + 10 +11679.358 + 20 +13739.426884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A83 + 8 +DETAILS + 10 +11719.970209 + 20 +13745.836002 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A84 + 8 +DETAILS + 10 +11741.345028 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A85 + 8 +DETAILS + 0 +POLYLINE + 5 +1A86 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A87 + 8 +DETAILS + 10 +11587.446173 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A88 + 8 +DETAILS + 10 +11587.446173 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A89 + 8 +DETAILS + 10 +11593.758429 + 20 +13712.518711 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8A + 8 +DETAILS + 10 +11599.870294 + 20 +13720.107657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8B + 8 +DETAILS + 10 +11605.781768 + 20 +13726.156908 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8C + 8 +DETAILS + 10 +11611.492852 + 20 +13730.948113 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8D + 8 +DETAILS + 10 +11617.003548 + 20 +13734.762927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8E + 8 +DETAILS + 10 +11622.313854 + 20 +13737.883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8F + 8 +DETAILS + 10 +11627.423774 + 20 +13740.589984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A90 + 8 +DETAILS + 10 +11632.333306 + 20 +13743.165531 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A91 + 8 +DETAILS + 10 +11637.042452 + 20 +13745.85374 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A92 + 8 +DETAILS + 10 +11641.551211 + 20 +13748.748494 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A93 + 8 +DETAILS + 10 +11645.859581 + 20 +13751.906123 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A94 + 8 +DETAILS + 10 +11649.967561 + 20 +13755.382956 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A95 + 8 +DETAILS + 10 +11653.87515 + 20 +13759.235325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A96 + 8 +DETAILS + 10 +11657.582346 + 20 +13763.519559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A97 + 8 +DETAILS + 10 +11661.089149 + 20 +13768.291987 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A98 + 8 +DETAILS + 10 +11664.395556 + 20 +13773.60894 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A99 + 8 +DETAILS + 10 +11604.546046 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A9A + 8 +DETAILS + 10 +11634.470757 + 20 +13741.563238 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A9B + 8 +DETAILS + 10 +11655.845664 + 20 +13758.654294 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A9C + 8 +DETAILS + 10 +11664.395556 + 20 +13773.60894 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A9D + 8 +DETAILS + 0 +POLYLINE + 5 +1A9E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1A9F + 8 +DETAILS + 10 +11563.933837 + 20 +13739.426884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AA0 + 8 +DETAILS + 10 +11563.933837 + 20 +13739.426884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA1 + 8 +DETAILS + 10 +11568.250531 + 20 +13740.883128 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA2 + 8 +DETAILS + 10 +11572.016161 + 20 +13742.264266 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA3 + 8 +DETAILS + 10 +11575.881991 + 20 +13743.895759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA4 + 8 +DETAILS + 10 +11580.499286 + 20 +13746.103074 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA5 + 8 +DETAILS + 10 +11586.51931 + 20 +13749.211673 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA6 + 8 +DETAILS + 10 +11594.593328 + 20 +13753.547022 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA7 + 8 +DETAILS + 10 +11605.372603 + 20 +13759.434583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA8 + 8 +DETAILS + 10 +11619.508401 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA9 + 8 +DETAILS + 10 +11576.758675 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AAA + 8 +DETAILS + 10 +11619.508401 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1AAB + 8 +DETAILS + 0 +POLYLINE + 5 +1AAC + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1AAD + 8 +DETAILS + 10 +12406.102815 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AAE + 8 +DETAILS + 10 +12406.102815 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAF + 8 +DETAILS + 10 +12411.797206 + 20 +13712.325728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB0 + 8 +DETAILS + 10 +12416.389457 + 20 +13719.565218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB1 + 8 +DETAILS + 10 +12420.380539 + 20 +13725.45278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB2 + 8 +DETAILS + 10 +12424.271425 + 20 +13730.614305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB3 + 8 +DETAILS + 10 +12428.563087 + 20 +13735.675685 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB4 + 8 +DETAILS + 10 +12433.756497 + 20 +13741.262814 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB5 + 8 +DETAILS + 10 +12440.352629 + 20 +13748.001583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB6 + 8 +DETAILS + 10 +12448.852453 + 20 +13756.517884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB7 + 8 +DETAILS + 10 +12423.202688 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AB8 + 8 +DETAILS + 10 +12448.852453 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1AB9 + 8 +DETAILS + 0 +POLYLINE + 5 +1ABA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1ABB + 8 +DETAILS + 10 +12324.878397 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ABC + 8 +DETAILS + 10 +12324.878397 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ABD + 8 +DETAILS + 10 +12327.77465 + 20 +13709.559281 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ABE + 8 +DETAILS + 10 +12331.616488 + 20 +13714.658217 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ABF + 8 +DETAILS + 10 +12336.347553 + 20 +13718.655583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC0 + 8 +DETAILS + 10 +12341.911484 + 20 +13721.801736 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC1 + 8 +DETAILS + 10 +12348.251922 + 20 +13724.347033 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC2 + 8 +DETAILS + 10 +12355.312509 + 20 +13726.54183 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC3 + 8 +DETAILS + 10 +12363.036885 + 20 +13728.636486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC4 + 8 +DETAILS + 10 +12371.36869 + 20 +13730.881356 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC5 + 8 +DETAILS + 10 +12380.201469 + 20 +13733.497589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC6 + 8 +DETAILS + 10 +12389.228374 + 20 +13736.5895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC7 + 8 +DETAILS + 10 +12398.092463 + 20 +13740.232197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC8 + 8 +DETAILS + 10 +12406.436791 + 20 +13744.500784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC9 + 8 +DETAILS + 10 +12413.904416 + 20 +13749.470369 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACA + 8 +DETAILS + 10 +12420.138394 + 20 +13755.216059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACB + 8 +DETAILS + 10 +12424.781781 + 20 +13761.812959 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACC + 8 +DETAILS + 10 +12427.477634 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACD + 8 +DETAILS + 10 +12331.290861 + 20 +13722.335828 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ACE + 8 +DETAILS + 10 +12365.490606 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ACF + 8 +DETAILS + 10 +12423.202688 + 20 +13747.972412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AD0 + 8 +DETAILS + 10 +12427.477634 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1AD1 + 8 +DETAILS + 0 +POLYLINE + 5 +1AD2 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1AD3 + 8 +DETAILS + 10 +12269.303745 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AD4 + 8 +DETAILS + 10 +12269.303745 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD5 + 8 +DETAILS + 10 +12277.74201 + 20 +13715.429115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD6 + 8 +DETAILS + 10 +12285.510224 + 20 +13722.093827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD7 + 8 +DETAILS + 10 +12292.739892 + 20 +13727.59438 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD8 + 8 +DETAILS + 10 +12299.56252 + 20 +13732.149835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD9 + 8 +DETAILS + 10 +12306.109613 + 20 +13735.979255 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ADA + 8 +DETAILS + 10 +12312.512675 + 20 +13739.301703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ADB + 8 +DETAILS + 10 +12318.903214 + 20 +13742.336239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ADC + 8 +DETAILS + 10 +12325.412733 + 20 +13745.301927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ADD + 8 +DETAILS + 10 +12332.114291 + 20 +13748.367758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ADE + 8 +DETAILS + 10 +12338.847159 + 20 +13751.502436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ADF + 8 +DETAILS + 10 +12345.392162 + 20 +13754.624596 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE0 + 8 +DETAILS + 10 +12351.530124 + 20 +13757.652873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE1 + 8 +DETAILS + 10 +12357.041868 + 20 +13760.505899 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE2 + 8 +DETAILS + 10 +12361.708218 + 20 +13763.10231 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE3 + 8 +DETAILS + 10 +12365.309999 + 20 +13765.36074 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE4 + 8 +DETAILS + 10 +12367.628035 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE5 + 8 +DETAILS + 10 +12292.816081 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AE6 + 8 +DETAILS + 10 +12322.74088 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AE7 + 8 +DETAILS + 10 +12363.353089 + 20 +13762.927058 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AE8 + 8 +DETAILS + 10 +12367.628035 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1AE9 + 8 +DETAILS + 0 +POLYLINE + 5 +1AEA + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1AEB + 8 +DETAILS + 10 +12209.454146 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AEC + 8 +DETAILS + 10 +12209.454146 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AED + 8 +DETAILS + 10 +12216.567971 + 20 +13714.108481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEE + 8 +DETAILS + 10 +12223.481404 + 20 +13719.940755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEF + 8 +DETAILS + 10 +12230.194447 + 20 +13724.984405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF0 + 8 +DETAILS + 10 +12236.707098 + 20 +13729.345834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF1 + 8 +DETAILS + 10 +12243.01936 + 20 +13733.131441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF2 + 8 +DETAILS + 10 +12249.131232 + 20 +13736.44763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF3 + 8 +DETAILS + 10 +12255.042714 + 20 +13739.4008 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF4 + 8 +DETAILS + 10 +12260.753808 + 20 +13742.097354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF5 + 8 +DETAILS + 10 +12266.256164 + 20 +13744.652039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF6 + 8 +DETAILS + 10 +12271.508035 + 20 +13747.212982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF7 + 8 +DETAILS + 10 +12276.459322 + 20 +13749.936657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF8 + 8 +DETAILS + 10 +12281.059929 + 20 +13752.979537 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF9 + 8 +DETAILS + 10 +12285.259758 + 20 +13756.498097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFA + 8 +DETAILS + 10 +12289.00871 + 20 +13760.648809 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFB + 8 +DETAILS + 10 +12292.25669 + 20 +13765.588148 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFC + 8 +DETAILS + 10 +12294.953598 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFD + 8 +DETAILS + 10 +12228.691536 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AFE + 8 +DETAILS + 10 +12262.891281 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AFF + 8 +DETAILS + 10 +12288.541135 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B00 + 8 +DETAILS + 10 +12294.953598 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B01 + 8 +DETAILS + 0 +POLYLINE + 5 +1B02 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B03 + 8 +DETAILS + 10 +12153.879581 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B04 + 8 +DETAILS + 10 +12153.879581 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B05 + 8 +DETAILS + 10 +12157.937458 + 20 +13713.127923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B06 + 8 +DETAILS + 10 +12162.09553 + 20 +13720.975579 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B07 + 8 +DETAILS + 10 +12166.353798 + 20 +13726.983107 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B08 + 8 +DETAILS + 10 +12170.712261 + 20 +13731.482233 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B09 + 8 +DETAILS + 10 +12175.17092 + 20 +13734.804679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B0A + 8 +DETAILS + 10 +12179.729773 + 20 +13737.282169 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B0B + 8 +DETAILS + 10 +12184.388821 + 20 +13739.246428 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B0C + 8 +DETAILS + 10 +12189.148063 + 20 +13741.029177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B0D + 8 +DETAILS + 10 +12194.0075 + 20 +13742.920415 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B0E + 8 +DETAILS + 10 +12198.967131 + 20 +13745.043234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B0F + 8 +DETAILS + 10 +12204.026958 + 20 +13747.478999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B10 + 8 +DETAILS + 10 +12209.186981 + 20 +13750.309077 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B11 + 8 +DETAILS + 10 +12214.447201 + 20 +13753.614832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B12 + 8 +DETAILS + 10 +12219.807619 + 20 +13757.477631 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B13 + 8 +DETAILS + 10 +12225.268236 + 20 +13761.978839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B14 + 8 +DETAILS + 10 +12230.829053 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B15 + 8 +DETAILS + 10 +12164.566991 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B16 + 8 +DETAILS + 10 +12188.079327 + 20 +13739.426884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B17 + 8 +DETAILS + 10 +12215.866609 + 20 +13752.245176 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B18 + 8 +DETAILS + 10 +12230.829053 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B19 + 8 +DETAILS + 0 +POLYLINE + 5 +1B1A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B1B + 8 +DETAILS + 10 +12091.892553 + 20 +13705.244827 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B1C + 8 +DETAILS + 10 +12091.892553 + 20 +13705.244827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1D + 8 +DETAILS + 10 +12097.312442 + 20 +13714.469439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1E + 8 +DETAILS + 10 +12102.387913 + 20 +13721.559757 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1F + 8 +DETAILS + 10 +12107.175327 + 20 +13726.885057 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B20 + 8 +DETAILS + 10 +12111.731043 + 20 +13730.814615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B21 + 8 +DETAILS + 10 +12116.111419 + 20 +13733.717709 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B22 + 8 +DETAILS + 10 +12120.372816 + 20 +13735.963616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B23 + 8 +DETAILS + 10 +12124.571592 + 20 +13737.921611 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B24 + 8 +DETAILS + 10 +12128.764107 + 20 +13739.960972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B25 + 8 +DETAILS + 10 +12132.985846 + 20 +13742.388387 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B26 + 8 +DETAILS + 10 +12137.1888 + 20 +13745.260185 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B27 + 8 +DETAILS + 10 +12141.304084 + 20 +13748.57011 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B28 + 8 +DETAILS + 10 +12145.262814 + 20 +13752.311902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B29 + 8 +DETAILS + 10 +12148.996108 + 20 +13756.479304 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2A + 8 +DETAILS + 10 +12152.43508 + 20 +13761.066058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2B + 8 +DETAILS + 10 +12155.510848 + 20 +13766.065904 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2C + 8 +DETAILS + 10 +12158.154527 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2D + 8 +DETAILS + 10 +12106.854909 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B2E + 8 +DETAILS + 10 +12128.229728 + 20 +13735.15412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B2F + 8 +DETAILS + 10 +12151.742064 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B30 + 8 +DETAILS + 10 +12158.154527 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B31 + 8 +DETAILS + 0 +POLYLINE + 5 +1B32 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B33 + 8 +DETAILS + 10 +12044.867881 + 20 +13709.517591 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B34 + 8 +DETAILS + 10 +12044.867881 + 20 +13709.517591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B35 + 8 +DETAILS + 10 +12048.266133 + 20 +13716.809228 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B36 + 8 +DETAILS + 10 +12052.015072 + 20 +13722.786492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B37 + 8 +DETAILS + 10 +12056.064599 + 20 +13727.637152 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B38 + 8 +DETAILS + 10 +12060.364616 + 20 +13731.548975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B39 + 8 +DETAILS + 10 +12064.865025 + 20 +13734.709729 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B3A + 8 +DETAILS + 10 +12069.515729 + 20 +13737.307181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B3B + 8 +DETAILS + 10 +12074.266629 + 20 +13739.5291 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B3C + 8 +DETAILS + 10 +12079.067626 + 20 +13741.563252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B3D + 8 +DETAILS + 10 +12083.897848 + 20 +13743.58906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B3E + 8 +DETAILS + 10 +12088.853311 + 20 +13745.752565 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B3F + 8 +DETAILS + 10 +12094.059258 + 20 +13748.191462 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B40 + 8 +DETAILS + 10 +12099.640932 + 20 +13751.043447 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B41 + 8 +DETAILS + 10 +12105.723573 + 20 +13754.446215 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B42 + 8 +DETAILS + 10 +12112.432425 + 20 +13758.537463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B43 + 8 +DETAILS + 10 +12119.892729 + 20 +13763.454885 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B44 + 8 +DETAILS + 10 +12128.229728 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B45 + 8 +DETAILS + 10 +12053.417773 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B46 + 8 +DETAILS + 10 +12079.067626 + 20 +13741.563238 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B47 + 8 +DETAILS + 10 +12104.71748 + 20 +13752.245176 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B48 + 8 +DETAILS + 10 +12128.229728 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B49 + 8 +DETAILS + 0 +POLYLINE + 5 +1B4A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B4B + 8 +DETAILS + 10 +11989.293228 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B4C + 8 +DETAILS + 10 +11989.293228 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4D + 8 +DETAILS + 10 +11995.563746 + 20 +13716.181229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4E + 8 +DETAILS + 10 +12004.188837 + 20 +13724.90617 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4F + 8 +DETAILS + 10 +12014.316847 + 20 +13733.480897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B50 + 8 +DETAILS + 10 +12025.096123 + 20 +13741.830303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B51 + 8 +DETAILS + 10 +12035.67501 + 20 +13749.879282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B52 + 8 +DETAILS + 10 +12045.201855 + 20 +13757.552727 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B53 + 8 +DETAILS + 10 +12052.825006 + 20 +13764.77553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B54 + 8 +DETAILS + 10 +12057.692807 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B55 + 8 +DETAILS + 10 +12002.118155 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B56 + 8 +DETAILS + 10 +12049.142827 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B57 + 8 +DETAILS + 10 +12057.692807 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B58 + 8 +DETAILS + 0 +POLYLINE + 5 +1B59 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +28D4 + 8 +DETAILS + 10 +11957.231 + 20 +13743.699648 + 30 +0.0 + 0 +VERTEX + 5 +28D5 + 8 +DETAILS + 10 +11997.843209 + 20 +13765.063412 + 30 +0.0 + 0 +VERTEX + 5 +28D6 + 8 +DETAILS + 10 +12002.118155 + 20 +13771.472586 + 30 +0.0 + 0 +SEQEND + 5 +28D7 + 8 +DETAILS + 0 +POLYLINE + 5 +1B5E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B5F + 8 +DETAILS + 10 +12653.879581 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B60 + 8 +DETAILS + 10 +12653.879581 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B61 + 8 +DETAILS + 10 +12657.937458 + 20 +13713.127923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B62 + 8 +DETAILS + 10 +12662.09553 + 20 +13720.975579 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B63 + 8 +DETAILS + 10 +12666.353798 + 20 +13726.983107 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B64 + 8 +DETAILS + 10 +12670.712261 + 20 +13731.482233 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B65 + 8 +DETAILS + 10 +12675.17092 + 20 +13734.804679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B66 + 8 +DETAILS + 10 +12679.729773 + 20 +13737.282169 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B67 + 8 +DETAILS + 10 +12684.388821 + 20 +13739.246428 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B68 + 8 +DETAILS + 10 +12689.148063 + 20 +13741.029177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B69 + 8 +DETAILS + 10 +12694.0075 + 20 +13742.920415 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B6A + 8 +DETAILS + 10 +12698.967131 + 20 +13745.043234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B6B + 8 +DETAILS + 10 +12704.026958 + 20 +13747.478999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B6C + 8 +DETAILS + 10 +12709.186981 + 20 +13750.309077 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B6D + 8 +DETAILS + 10 +12714.447201 + 20 +13753.614832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B6E + 8 +DETAILS + 10 +12719.807619 + 20 +13757.477631 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B6F + 8 +DETAILS + 10 +12725.268236 + 20 +13761.978839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B70 + 8 +DETAILS + 10 +12730.829053 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B71 + 8 +DETAILS + 10 +12664.566991 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B72 + 8 +DETAILS + 10 +12688.079327 + 20 +13739.426884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B73 + 8 +DETAILS + 10 +12715.866609 + 20 +13752.245176 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B74 + 8 +DETAILS + 10 +12730.829053 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B75 + 8 +DETAILS + 0 +POLYLINE + 5 +1B76 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B77 + 8 +DETAILS + 10 +12591.892553 + 20 +13705.244827 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B78 + 8 +DETAILS + 10 +12591.892553 + 20 +13705.244827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B79 + 8 +DETAILS + 10 +12597.312442 + 20 +13714.469439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B7A + 8 +DETAILS + 10 +12602.387913 + 20 +13721.559757 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B7B + 8 +DETAILS + 10 +12607.175327 + 20 +13726.885057 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B7C + 8 +DETAILS + 10 +12611.731043 + 20 +13730.814615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B7D + 8 +DETAILS + 10 +12616.111419 + 20 +13733.717709 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B7E + 8 +DETAILS + 10 +12620.372816 + 20 +13735.963616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B7F + 8 +DETAILS + 10 +12624.571592 + 20 +13737.921611 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B80 + 8 +DETAILS + 10 +12628.764107 + 20 +13739.960972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B81 + 8 +DETAILS + 10 +12632.985846 + 20 +13742.388387 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B82 + 8 +DETAILS + 10 +12637.1888 + 20 +13745.260185 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B83 + 8 +DETAILS + 10 +12641.304084 + 20 +13748.57011 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B84 + 8 +DETAILS + 10 +12645.262814 + 20 +13752.311902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B85 + 8 +DETAILS + 10 +12648.996108 + 20 +13756.479304 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B86 + 8 +DETAILS + 10 +12652.43508 + 20 +13761.066058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B87 + 8 +DETAILS + 10 +12655.510848 + 20 +13766.065904 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B88 + 8 +DETAILS + 10 +12658.154527 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B89 + 8 +DETAILS + 10 +12606.854909 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B8A + 8 +DETAILS + 10 +12628.229728 + 20 +13735.15412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B8B + 8 +DETAILS + 10 +12651.742064 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B8C + 8 +DETAILS + 10 +12658.154527 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B8D + 8 +DETAILS + 0 +POLYLINE + 5 +1B8E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1B8F + 8 +DETAILS + 10 +12544.867881 + 20 +13709.517591 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B90 + 8 +DETAILS + 10 +12544.867881 + 20 +13709.517591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B91 + 8 +DETAILS + 10 +12548.266133 + 20 +13716.809228 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B92 + 8 +DETAILS + 10 +12552.015072 + 20 +13722.786492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B93 + 8 +DETAILS + 10 +12556.064599 + 20 +13727.637152 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B94 + 8 +DETAILS + 10 +12560.364616 + 20 +13731.548975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B95 + 8 +DETAILS + 10 +12564.865025 + 20 +13734.709729 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B96 + 8 +DETAILS + 10 +12569.515729 + 20 +13737.307181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B97 + 8 +DETAILS + 10 +12574.266629 + 20 +13739.5291 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B98 + 8 +DETAILS + 10 +12579.067626 + 20 +13741.563252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B99 + 8 +DETAILS + 10 +12583.897848 + 20 +13743.58906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B9A + 8 +DETAILS + 10 +12588.853311 + 20 +13745.752565 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B9B + 8 +DETAILS + 10 +12594.059258 + 20 +13748.191462 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B9C + 8 +DETAILS + 10 +12599.640932 + 20 +13751.043447 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B9D + 8 +DETAILS + 10 +12605.723573 + 20 +13754.446215 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B9E + 8 +DETAILS + 10 +12612.432425 + 20 +13758.537463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B9F + 8 +DETAILS + 10 +12619.892729 + 20 +13763.454885 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BA0 + 8 +DETAILS + 10 +12628.229728 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BA1 + 8 +DETAILS + 10 +12553.417773 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BA2 + 8 +DETAILS + 10 +12579.067626 + 20 +13741.563238 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BA3 + 8 +DETAILS + 10 +12604.71748 + 20 +13752.245176 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BA4 + 8 +DETAILS + 10 +12628.229728 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1BA5 + 8 +DETAILS + 0 +POLYLINE + 5 +1BA6 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1BA7 + 8 +DETAILS + 10 +12489.293228 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BA8 + 8 +DETAILS + 10 +12489.293228 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BA9 + 8 +DETAILS + 10 +12495.563746 + 20 +13716.181229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BAA + 8 +DETAILS + 10 +12504.188837 + 20 +13724.90617 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BAB + 8 +DETAILS + 10 +12514.316847 + 20 +13733.480897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BAC + 8 +DETAILS + 10 +12525.096123 + 20 +13741.830303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BAD + 8 +DETAILS + 10 +12535.67501 + 20 +13749.879282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BAE + 8 +DETAILS + 10 +12545.201855 + 20 +13757.552727 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BAF + 8 +DETAILS + 10 +12552.825006 + 20 +13764.77553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BB0 + 8 +DETAILS + 10 +12557.692807 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BB1 + 8 +DETAILS + 10 +12502.118155 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BB2 + 8 +DETAILS + 10 +12549.142827 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BB3 + 8 +DETAILS + 10 +12557.692807 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1BB4 + 8 +DETAILS + 0 +POLYLINE + 5 +1BB5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1BB6 + 8 +DETAILS + 10 +12824.878397 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BB7 + 8 +DETAILS + 10 +12824.878397 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BB8 + 8 +DETAILS + 10 +12827.77465 + 20 +13709.559281 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BB9 + 8 +DETAILS + 10 +12831.616488 + 20 +13714.658217 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BBA + 8 +DETAILS + 10 +12836.347553 + 20 +13718.655583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BBB + 8 +DETAILS + 10 +12841.911484 + 20 +13721.801736 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BBC + 8 +DETAILS + 10 +12848.251922 + 20 +13724.347033 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BBD + 8 +DETAILS + 10 +12855.312509 + 20 +13726.54183 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BBE + 8 +DETAILS + 10 +12863.036885 + 20 +13728.636486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BBF + 8 +DETAILS + 10 +12871.36869 + 20 +13730.881356 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC0 + 8 +DETAILS + 10 +12880.201469 + 20 +13733.497589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC1 + 8 +DETAILS + 10 +12889.228374 + 20 +13736.5895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC2 + 8 +DETAILS + 10 +12898.092463 + 20 +13740.232197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC3 + 8 +DETAILS + 10 +12906.436791 + 20 +13744.500784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC4 + 8 +DETAILS + 10 +12913.904416 + 20 +13749.470369 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC5 + 8 +DETAILS + 10 +12920.138394 + 20 +13755.216059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC6 + 8 +DETAILS + 10 +12924.781781 + 20 +13761.812959 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC7 + 8 +DETAILS + 10 +12927.477634 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BC8 + 8 +DETAILS + 10 +12831.290861 + 20 +13722.335828 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BC9 + 8 +DETAILS + 10 +12865.490606 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BCA + 8 +DETAILS + 10 +12923.202688 + 20 +13747.972412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BCB + 8 +DETAILS + 10 +12927.477634 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1BCC + 8 +DETAILS + 0 +POLYLINE + 5 +1BCD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1BCE + 8 +DETAILS + 10 +12769.303745 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BCF + 8 +DETAILS + 10 +12769.303745 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD0 + 8 +DETAILS + 10 +12777.74201 + 20 +13715.429115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD1 + 8 +DETAILS + 10 +12785.510224 + 20 +13722.093827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD2 + 8 +DETAILS + 10 +12792.739892 + 20 +13727.59438 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD3 + 8 +DETAILS + 10 +12799.56252 + 20 +13732.149835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD4 + 8 +DETAILS + 10 +12806.109613 + 20 +13735.979255 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD5 + 8 +DETAILS + 10 +12812.512675 + 20 +13739.301703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD6 + 8 +DETAILS + 10 +12818.903214 + 20 +13742.336239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD7 + 8 +DETAILS + 10 +12825.412733 + 20 +13745.301927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD8 + 8 +DETAILS + 10 +12832.114291 + 20 +13748.367758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BD9 + 8 +DETAILS + 10 +12838.847159 + 20 +13751.502436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BDA + 8 +DETAILS + 10 +12845.392162 + 20 +13754.624596 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BDB + 8 +DETAILS + 10 +12851.530124 + 20 +13757.652873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BDC + 8 +DETAILS + 10 +12857.041868 + 20 +13760.505899 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BDD + 8 +DETAILS + 10 +12861.708218 + 20 +13763.10231 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BDE + 8 +DETAILS + 10 +12865.309999 + 20 +13765.36074 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BDF + 8 +DETAILS + 10 +12867.628035 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BE0 + 8 +DETAILS + 10 +12792.816081 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BE1 + 8 +DETAILS + 10 +12822.74088 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BE2 + 8 +DETAILS + 10 +12863.353089 + 20 +13762.927058 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BE3 + 8 +DETAILS + 10 +12867.628035 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1BE4 + 8 +DETAILS + 0 +POLYLINE + 5 +1BE5 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1BE6 + 8 +DETAILS + 10 +12709.454146 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BE7 + 8 +DETAILS + 10 +12709.454146 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BE8 + 8 +DETAILS + 10 +12716.567971 + 20 +13714.108481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BE9 + 8 +DETAILS + 10 +12723.481404 + 20 +13719.940755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BEA + 8 +DETAILS + 10 +12730.194447 + 20 +13724.984405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BEB + 8 +DETAILS + 10 +12736.707098 + 20 +13729.345834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BEC + 8 +DETAILS + 10 +12743.01936 + 20 +13733.131441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BED + 8 +DETAILS + 10 +12749.131232 + 20 +13736.44763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BEE + 8 +DETAILS + 10 +12755.042714 + 20 +13739.4008 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BEF + 8 +DETAILS + 10 +12760.753808 + 20 +13742.097354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF0 + 8 +DETAILS + 10 +12766.256164 + 20 +13744.652039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF1 + 8 +DETAILS + 10 +12771.508035 + 20 +13747.212982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF2 + 8 +DETAILS + 10 +12776.459322 + 20 +13749.936657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF3 + 8 +DETAILS + 10 +12781.059929 + 20 +13752.979537 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF4 + 8 +DETAILS + 10 +12785.259758 + 20 +13756.498097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF5 + 8 +DETAILS + 10 +12789.00871 + 20 +13760.648809 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF6 + 8 +DETAILS + 10 +12792.25669 + 20 +13765.588148 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF7 + 8 +DETAILS + 10 +12794.953598 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1BF8 + 8 +DETAILS + 10 +12728.691536 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BF9 + 8 +DETAILS + 10 +12762.891281 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BFA + 8 +DETAILS + 10 +12788.541135 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BFB + 8 +DETAILS + 10 +12794.953598 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1BFC + 8 +DETAILS + 0 +POLYLINE + 5 +1BFD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1BFE + 8 +DETAILS + 10 +12906.102815 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1BFF + 8 +DETAILS + 10 +12906.102815 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C00 + 8 +DETAILS + 10 +12911.797206 + 20 +13712.325728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C01 + 8 +DETAILS + 10 +12916.389457 + 20 +13719.565218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C02 + 8 +DETAILS + 10 +12920.380539 + 20 +13725.45278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C03 + 8 +DETAILS + 10 +12924.271425 + 20 +13730.614305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C04 + 8 +DETAILS + 10 +12928.563087 + 20 +13735.675685 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C05 + 8 +DETAILS + 10 +12933.756497 + 20 +13741.262814 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C06 + 8 +DETAILS + 10 +12940.352629 + 20 +13748.001583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C07 + 8 +DETAILS + 10 +12948.852453 + 20 +13756.517884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C08 + 8 +DETAILS + 10 +12923.202688 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C09 + 8 +DETAILS + 10 +12948.852453 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1C0A + 8 +DETAILS + 0 +POLYLINE + 5 +1C0B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +28D8 + 8 +DETAILS + 10 +12457.231 + 20 +13743.699648 + 30 +0.0 + 0 +VERTEX + 5 +28D9 + 8 +DETAILS + 10 +12497.843209 + 20 +13765.063412 + 30 +0.0 + 0 +VERTEX + 5 +28DA + 8 +DETAILS + 10 +12502.118155 + 20 +13771.472586 + 30 +0.0 + 0 +SEQEND + 5 +28DB + 8 +DETAILS + 0 +LINE + 5 +1C10 + 8 +0 + 62 + 0 + 10 +12562.49999 + 20 +13693.747693 + 30 +0.0 + 11 +12566.109761 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C11 + 8 +0 + 62 + 0 + 10 +12499.999958 + 20 +13693.747663 + 30 +0.0 + 11 +12496.39017 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C12 + 8 +0 + 62 + 0 + 10 +12500.0 + 20 +13693.74765 + 30 +0.0 + 11 +12562.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C13 + 8 +0 + 62 + 0 + 10 +12749.999989 + 20 +13693.747693 + 30 +0.0 + 11 +12753.60976 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C14 + 8 +0 + 62 + 0 + 10 +12687.499958 + 20 +13693.747662 + 30 +0.0 + 11 +12683.890169 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C15 + 8 +0 + 62 + 0 + 10 +12687.5 + 20 +13693.74765 + 30 +0.0 + 11 +12750.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C16 + 8 +0 + 62 + 0 + 10 +12937.499989 + 20 +13693.747693 + 30 +0.0 + 11 +12941.10976 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C17 + 8 +0 + 62 + 0 + 10 +12874.999957 + 20 +13693.747662 + 30 +0.0 + 11 +12871.390168 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C18 + 8 +0 + 62 + 0 + 10 +12875.0 + 20 +13693.74765 + 30 +0.0 + 11 +12937.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C19 + 8 +0 + 62 + 0 + 10 +13062.49999 + 20 +13693.747693 + 30 +0.0 + 11 +13066.109761 + 21 +13700.0 + 31 +0.0 + 0 +POLYLINE + 5 +1C1A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1C1B + 8 +DETAILS + 10 +13044.867881 + 20 +13709.517591 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C1C + 8 +DETAILS + 10 +13044.867881 + 20 +13709.517591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C1D + 8 +DETAILS + 10 +13048.266133 + 20 +13716.809228 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C1E + 8 +DETAILS + 10 +13052.015072 + 20 +13722.786492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C1F + 8 +DETAILS + 10 +13056.064599 + 20 +13727.637152 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C20 + 8 +DETAILS + 10 +13060.364616 + 20 +13731.548975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C21 + 8 +DETAILS + 10 +13064.865025 + 20 +13734.709729 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C22 + 8 +DETAILS + 10 +13069.515729 + 20 +13737.307181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C23 + 8 +DETAILS + 10 +13074.266629 + 20 +13739.5291 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C24 + 8 +DETAILS + 10 +13079.067626 + 20 +13741.563252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C25 + 8 +DETAILS + 10 +13083.897848 + 20 +13743.58906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C26 + 8 +DETAILS + 10 +13088.853311 + 20 +13745.752565 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C27 + 8 +DETAILS + 10 +13094.059258 + 20 +13748.191462 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C28 + 8 +DETAILS + 10 +13099.640932 + 20 +13751.043447 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C29 + 8 +DETAILS + 10 +13105.723573 + 20 +13754.446215 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C2A + 8 +DETAILS + 10 +13112.432425 + 20 +13758.537463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C2B + 8 +DETAILS + 10 +13119.892729 + 20 +13763.454885 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C2C + 8 +DETAILS + 10 +13128.229728 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C2D + 8 +DETAILS + 10 +13053.417773 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C2E + 8 +DETAILS + 10 +13079.067626 + 20 +13741.563238 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C2F + 8 +DETAILS + 10 +13104.71748 + 20 +13752.245176 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C30 + 8 +DETAILS + 10 +13128.229728 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1C31 + 8 +DETAILS + 0 +LINE + 5 +1C32 + 8 +0 + 62 + 0 + 10 +13062.5 + 20 +13693.74765 + 30 +0.0 + 11 +13125.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C33 + 8 +0 + 62 + 0 + 10 +13000.0 + 20 +13693.74765 + 30 +0.0 + 11 +13062.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C34 + 8 +0 + 62 + 0 + 10 +12999.999958 + 20 +13693.747663 + 30 +0.0 + 11 +12996.39017 + 21 +13700.0 + 31 +0.0 + 0 +POLYLINE + 5 +1C35 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +6.25 + 41 +6.25 + 0 +VERTEX + 5 +28DC + 8 +DETAILS + 10 +12957.231 + 20 +13743.699648 + 30 +0.0 + 0 +VERTEX + 5 +28DD + 8 +DETAILS + 10 +12997.843209 + 20 +13765.063412 + 30 +0.0 + 0 +VERTEX + 5 +28DE + 8 +DETAILS + 10 +13002.118155 + 20 +13771.472586 + 30 +0.0 + 0 +SEQEND + 5 +28DF + 8 +DETAILS + 0 +POLYLINE + 5 +1C3A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1C3B + 8 +DETAILS + 10 +12989.293228 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C3C + 8 +DETAILS + 10 +12989.293228 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C3D + 8 +DETAILS + 10 +12995.563746 + 20 +13716.181229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C3E + 8 +DETAILS + 10 +13004.188837 + 20 +13724.90617 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C3F + 8 +DETAILS + 10 +13014.316847 + 20 +13733.480897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C40 + 8 +DETAILS + 10 +13025.096123 + 20 +13741.830303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C41 + 8 +DETAILS + 10 +13035.67501 + 20 +13749.879282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C42 + 8 +DETAILS + 10 +13045.201855 + 20 +13757.552727 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C43 + 8 +DETAILS + 10 +13052.825006 + 20 +13764.77553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C44 + 8 +DETAILS + 10 +13057.692807 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C45 + 8 +DETAILS + 10 +13002.118155 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C46 + 8 +DETAILS + 10 +13049.142827 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C47 + 8 +DETAILS + 10 +13057.692807 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1C48 + 8 +DETAILS + 0 +LINE + 5 +1C49 + 8 +0 + 62 + 0 + 10 +13062.499956 + 20 +13693.747662 + 30 +0.0 + 11 +13058.890167 + 21 +13700.0 + 31 +0.0 + 0 +POLYLINE + 5 +1C4A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1C4B + 8 +DETAILS + 10 +13209.454146 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C4C + 8 +DETAILS + 10 +13209.454146 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C4D + 8 +DETAILS + 10 +13216.567971 + 20 +13714.108481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C4E + 8 +DETAILS + 10 +13223.481404 + 20 +13719.940755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C4F + 8 +DETAILS + 10 +13230.194447 + 20 +13724.984405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C50 + 8 +DETAILS + 10 +13236.707098 + 20 +13729.345834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C51 + 8 +DETAILS + 10 +13243.01936 + 20 +13733.131441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C52 + 8 +DETAILS + 10 +13249.131232 + 20 +13736.44763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C53 + 8 +DETAILS + 10 +13255.042714 + 20 +13739.4008 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C54 + 8 +DETAILS + 10 +13260.753808 + 20 +13742.097354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C55 + 8 +DETAILS + 10 +13266.256164 + 20 +13744.652039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C56 + 8 +DETAILS + 10 +13271.508035 + 20 +13747.212982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C57 + 8 +DETAILS + 10 +13276.459322 + 20 +13749.936657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C58 + 8 +DETAILS + 10 +13281.059929 + 20 +13752.979537 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C59 + 8 +DETAILS + 10 +13285.259758 + 20 +13756.498097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C5A + 8 +DETAILS + 10 +13289.00871 + 20 +13760.648809 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C5B + 8 +DETAILS + 10 +13292.25669 + 20 +13765.588148 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C5C + 8 +DETAILS + 10 +13294.953598 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C5D + 8 +DETAILS + 10 +13228.691536 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C5E + 8 +DETAILS + 10 +13262.891281 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C5F + 8 +DETAILS + 10 +13288.541135 + 20 +13754.38153 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C60 + 8 +DETAILS + 10 +13294.953598 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1C61 + 8 +DETAILS + 0 +POLYLINE + 5 +1C62 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1C63 + 8 +DETAILS + 10 +13269.303745 + 20 +13707.381181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C64 + 8 +DETAILS + 10 +13269.303745 + 20 +13707.381181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C65 + 8 +DETAILS + 10 +13277.74201 + 20 +13715.429115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C66 + 8 +DETAILS + 10 +13285.510224 + 20 +13722.093827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C67 + 8 +DETAILS + 10 +13292.739892 + 20 +13727.59438 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C68 + 8 +DETAILS + 10 +13299.56252 + 20 +13732.149835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C69 + 8 +DETAILS + 10 +13306.109613 + 20 +13735.979255 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C6A + 8 +DETAILS + 10 +13312.512675 + 20 +13739.301703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C6B + 8 +DETAILS + 10 +13318.903214 + 20 +13742.336239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C6C + 8 +DETAILS + 10 +13325.412733 + 20 +13745.301927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C6D + 8 +DETAILS + 10 +13332.114291 + 20 +13748.367758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C6E + 8 +DETAILS + 10 +13338.847159 + 20 +13751.502436 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C6F + 8 +DETAILS + 10 +13345.392162 + 20 +13754.624596 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C70 + 8 +DETAILS + 10 +13351.530124 + 20 +13757.652873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C71 + 8 +DETAILS + 10 +13357.041868 + 20 +13760.505899 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C72 + 8 +DETAILS + 10 +13361.708218 + 20 +13763.10231 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C73 + 8 +DETAILS + 10 +13365.309999 + 20 +13765.36074 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C74 + 8 +DETAILS + 10 +13367.628035 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C75 + 8 +DETAILS + 10 +13292.816081 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C76 + 8 +DETAILS + 10 +13322.74088 + 20 +13743.699648 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C77 + 8 +DETAILS + 10 +13363.353089 + 20 +13762.927058 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C78 + 8 +DETAILS + 10 +13367.628035 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1C79 + 8 +DETAILS + 0 +LINE + 5 +1C7A + 8 +0 + 62 + 0 + 10 +13250.0 + 20 +13693.74765 + 30 +0.0 + 11 +13312.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C7B + 8 +0 + 62 + 0 + 10 +13187.5 + 20 +13693.74765 + 30 +0.0 + 11 +13250.0 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1C7C + 8 +0 + 62 + 0 + 10 +13187.499958 + 20 +13693.747662 + 30 +0.0 + 11 +13183.890169 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1C7D + 8 +0 + 62 + 0 + 10 +13249.999989 + 20 +13693.747693 + 30 +0.0 + 11 +13253.60976 + 21 +13700.0 + 31 +0.0 + 0 +POLYLINE + 5 +1C7E + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1C7F + 8 +DETAILS + 10 +13091.892553 + 20 +13705.244827 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C80 + 8 +DETAILS + 10 +13091.892553 + 20 +13705.244827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C81 + 8 +DETAILS + 10 +13097.312442 + 20 +13714.469439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C82 + 8 +DETAILS + 10 +13102.387913 + 20 +13721.559757 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C83 + 8 +DETAILS + 10 +13107.175327 + 20 +13726.885057 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C84 + 8 +DETAILS + 10 +13111.731043 + 20 +13730.814615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C85 + 8 +DETAILS + 10 +13116.111419 + 20 +13733.717709 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C86 + 8 +DETAILS + 10 +13120.372816 + 20 +13735.963616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C87 + 8 +DETAILS + 10 +13124.571592 + 20 +13737.921611 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C88 + 8 +DETAILS + 10 +13128.764107 + 20 +13739.960972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C89 + 8 +DETAILS + 10 +13132.985846 + 20 +13742.388387 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C8A + 8 +DETAILS + 10 +13137.1888 + 20 +13745.260185 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C8B + 8 +DETAILS + 10 +13141.304084 + 20 +13748.57011 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C8C + 8 +DETAILS + 10 +13145.262814 + 20 +13752.311902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C8D + 8 +DETAILS + 10 +13148.996108 + 20 +13756.479304 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C8E + 8 +DETAILS + 10 +13152.43508 + 20 +13761.066058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C8F + 8 +DETAILS + 10 +13155.510848 + 20 +13766.065904 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C90 + 8 +DETAILS + 10 +13158.154527 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C91 + 8 +DETAILS + 10 +13106.854909 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C92 + 8 +DETAILS + 10 +13128.229728 + 20 +13735.15412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C93 + 8 +DETAILS + 10 +13151.742064 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C94 + 8 +DETAILS + 10 +13158.154527 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1C95 + 8 +DETAILS + 0 +POLYLINE + 5 +1C96 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1C97 + 8 +DETAILS + 10 +13153.879581 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1C98 + 8 +DETAILS + 10 +13153.879581 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C99 + 8 +DETAILS + 10 +13157.937458 + 20 +13713.127923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C9A + 8 +DETAILS + 10 +13162.09553 + 20 +13720.975579 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C9B + 8 +DETAILS + 10 +13166.353798 + 20 +13726.983107 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C9C + 8 +DETAILS + 10 +13170.712261 + 20 +13731.482233 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C9D + 8 +DETAILS + 10 +13175.17092 + 20 +13734.804679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C9E + 8 +DETAILS + 10 +13179.729773 + 20 +13737.282169 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1C9F + 8 +DETAILS + 10 +13184.388821 + 20 +13739.246428 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA0 + 8 +DETAILS + 10 +13189.148063 + 20 +13741.029177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA1 + 8 +DETAILS + 10 +13194.0075 + 20 +13742.920415 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA2 + 8 +DETAILS + 10 +13198.967131 + 20 +13745.043234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA3 + 8 +DETAILS + 10 +13204.026958 + 20 +13747.478999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA4 + 8 +DETAILS + 10 +13209.186981 + 20 +13750.309077 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA5 + 8 +DETAILS + 10 +13214.447201 + 20 +13753.614832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA6 + 8 +DETAILS + 10 +13219.807619 + 20 +13757.477631 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA7 + 8 +DETAILS + 10 +13225.268236 + 20 +13761.978839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA8 + 8 +DETAILS + 10 +13230.829053 + 20 +13767.199822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CA9 + 8 +DETAILS + 10 +13164.566991 + 20 +13733.017765 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CAA + 8 +DETAILS + 10 +13188.079327 + 20 +13739.426884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CAB + 8 +DETAILS + 10 +13215.866609 + 20 +13752.245176 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CAC + 8 +DETAILS + 10 +13230.829053 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1CAD + 8 +DETAILS + 0 +LINE + 5 +1CAE + 8 +0 + 62 + 0 + 10 +13124.999988 + 20 +13693.747694 + 30 +0.0 + 11 +13128.609759 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1CAF + 8 +0 + 62 + 0 + 10 +13249.999956 + 20 +13693.747661 + 30 +0.0 + 11 +13246.390166 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1CB0 + 8 +0 + 62 + 0 + 10 +13375.0 + 20 +13693.74765 + 30 +0.0 + 11 +13437.5 + 21 +13693.74765 + 31 +0.0 + 0 +LINE + 5 +1CB1 + 8 +0 + 62 + 0 + 10 +13374.999957 + 20 +13693.747662 + 30 +0.0 + 11 +13371.390168 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1CB2 + 8 +0 + 62 + 0 + 10 +13437.499989 + 20 +13693.747693 + 30 +0.0 + 11 +13441.10976 + 21 +13700.0 + 31 +0.0 + 0 +POLYLINE + 5 +1CB3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1CB4 + 8 +DETAILS + 10 +13406.102815 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CB5 + 8 +DETAILS + 10 +13406.102815 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CB6 + 8 +DETAILS + 10 +13411.797206 + 20 +13712.325728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CB7 + 8 +DETAILS + 10 +13416.389457 + 20 +13719.565218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CB8 + 8 +DETAILS + 10 +13420.380539 + 20 +13725.45278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CB9 + 8 +DETAILS + 10 +13424.271425 + 20 +13730.614305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CBA + 8 +DETAILS + 10 +13428.563087 + 20 +13735.675685 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CBB + 8 +DETAILS + 10 +13433.756497 + 20 +13741.262814 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CBC + 8 +DETAILS + 10 +13440.352629 + 20 +13748.001583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CBD + 8 +DETAILS + 10 +13448.852453 + 20 +13756.517884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CBE + 8 +DETAILS + 10 +13423.202688 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CBF + 8 +DETAILS + 10 +13448.852453 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1CC0 + 8 +DETAILS + 0 +POLYLINE + 5 +1CC1 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1CC2 + 8 +DETAILS + 10 +13324.878397 + 20 +13703.108417 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CC3 + 8 +DETAILS + 10 +13324.878397 + 20 +13703.108417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CC4 + 8 +DETAILS + 10 +13327.77465 + 20 +13709.559281 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CC5 + 8 +DETAILS + 10 +13331.616488 + 20 +13714.658217 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CC6 + 8 +DETAILS + 10 +13336.347553 + 20 +13718.655583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CC7 + 8 +DETAILS + 10 +13341.911484 + 20 +13721.801736 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CC8 + 8 +DETAILS + 10 +13348.251922 + 20 +13724.347033 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CC9 + 8 +DETAILS + 10 +13355.312509 + 20 +13726.54183 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CCA + 8 +DETAILS + 10 +13363.036885 + 20 +13728.636486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CCB + 8 +DETAILS + 10 +13371.36869 + 20 +13730.881356 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CCC + 8 +DETAILS + 10 +13380.201469 + 20 +13733.497589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CCD + 8 +DETAILS + 10 +13389.228374 + 20 +13736.5895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CCE + 8 +DETAILS + 10 +13398.092463 + 20 +13740.232197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CCF + 8 +DETAILS + 10 +13406.436791 + 20 +13744.500784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CD0 + 8 +DETAILS + 10 +13413.904416 + 20 +13749.470369 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CD1 + 8 +DETAILS + 10 +13420.138394 + 20 +13755.216059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CD2 + 8 +DETAILS + 10 +13424.781781 + 20 +13761.812959 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CD3 + 8 +DETAILS + 10 +13427.477634 + 20 +13769.336176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CD4 + 8 +DETAILS + 10 +13331.290861 + 20 +13722.335828 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CD5 + 8 +DETAILS + 10 +13365.490606 + 20 +13726.608592 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CD6 + 8 +DETAILS + 10 +13423.202688 + 20 +13747.972412 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CD7 + 8 +DETAILS + 10 +13427.477634 + 20 +13769.336176 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1CD8 + 8 +DETAILS + 0 +LINE + 5 +1CD9 + 8 +0 + 62 + 0 + 10 +13312.499988 + 20 +13693.747694 + 30 +0.0 + 11 +13316.109758 + 21 +13700.0 + 31 +0.0 + 0 +LINE + 5 +1CDA + 8 +0 + 62 + 0 + 10 +13437.499955 + 20 +13693.747661 + 30 +0.0 + 11 +13433.890166 + 21 +13700.0 + 31 +0.0 + 0 +POLYLINE + 5 +1CDB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1CDC + 8 +DETAILS + 10 +13459.882731 + 20 +13737.290529 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CDD + 8 +DETAILS + 10 +13459.882731 + 20 +13737.290529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CDE + 8 +DETAILS + 10 +13471.196368 + 20 +13738.062455 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CDF + 8 +DETAILS + 10 +13479.854848 + 20 +13739.059704 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE0 + 8 +DETAILS + 10 +13486.409244 + 20 +13740.707882 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE1 + 8 +DETAILS + 10 +13491.410624 + 20 +13743.432596 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE2 + 8 +DETAILS + 10 +13495.41006 + 20 +13747.659453 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE3 + 8 +DETAILS + 10 +13498.958621 + 20 +13753.814058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE4 + 8 +DETAILS + 10 +13502.607379 + 20 +13762.322019 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE5 + 8 +DETAILS + 10 +13506.907403 + 20 +13773.60894 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CE6 + 8 +DETAILS + 10 +13494.082477 + 20 +13739.426884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CE7 + 8 +DETAILS + 10 +13506.907403 + 20 +13773.60894 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1CE8 + 8 +DETAILS + 0 +POLYLINE + 5 +1CE9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1CEA + 8 +DETAILS + 10 +13491.945048 + 20 +13711.653945 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CEB + 8 +DETAILS + 10 +13491.945048 + 20 +13711.653945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CEC + 8 +DETAILS + 10 +13503.104222 + 20 +13718.60553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CED + 8 +DETAILS + 10 +13513.887661 + 20 +13726.408325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CEE + 8 +DETAILS + 10 +13523.919637 + 20 +13734.711832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CEF + 8 +DETAILS + 10 +13532.824424 + 20 +13743.165552 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CF0 + 8 +DETAILS + 10 +13540.226294 + 20 +13751.418987 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CF1 + 8 +DETAILS + 10 +13545.749519 + 20 +13759.121636 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CF2 + 8 +DETAILS + 10 +13549.018374 + 20 +13765.923002 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CF3 + 8 +DETAILS + 10 +13549.657129 + 20 +13771.472586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CF4 + 8 +DETAILS + 10 +13521.869847 + 20 +13728.745001 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CF5 + 8 +DETAILS + 10 +13551.794558 + 20 +13758.654294 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CF6 + 8 +DETAILS + 10 +13549.657129 + 20 +13771.472586 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1CF7 + 8 +DETAILS + 0 +POLYLINE + 5 +1CF8 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 40 +6.25 + 41 +6.25 + 75 + 6 + 0 +VERTEX + 5 +1CF9 + 8 +DETAILS + 10 +13558.207022 + 20 +13700.972063 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1CFA + 8 +DETAILS + 10 +13558.207022 + 20 +13700.972063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CFB + 8 +DETAILS + 10 +13564.182168 + 20 +13711.412985 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CFC + 8 +DETAILS + 10 +13569.336973 + 20 +13720.408096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CFD + 8 +DETAILS + 10 +13573.752844 + 20 +13728.113869 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CFE + 8 +DETAILS + 10 +13577.51119 + 20 +13734.686778 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1CFF + 8 +DETAILS + 10 +13580.693417 + 20 +13740.283297 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D00 + 8 +DETAILS + 10 +13583.380933 + 20 +13745.059897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D01 + 8 +DETAILS + 10 +13585.655147 + 20 +13749.173052 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D02 + 8 +DETAILS + 10 +13587.597464 + 20 +13752.779237 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D03 + 8 +DETAILS + 10 +13589.272594 + 20 +13756.022405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D04 + 8 +DETAILS + 10 +13590.678449 + 20 +13758.996439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D05 + 8 +DETAILS + 10 +13591.796243 + 20 +13761.782706 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D06 + 8 +DETAILS + 10 +13592.60719 + 20 +13764.46257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D07 + 8 +DETAILS + 10 +13593.092502 + 20 +13767.117395 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D08 + 8 +DETAILS + 10 +13593.233393 + 20 +13769.828548 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D09 + 8 +DETAILS + 10 +13593.011077 + 20 +13772.677393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D0A + 8 +DETAILS + 10 +13592.406767 + 20 +13775.745295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1D0B + 8 +DETAILS + 10 +13575.306895 + 20 +13730.881356 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1D0C + 8 +DETAILS + 10 +13590.269338 + 20 +13756.517884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1D0D + 8 +DETAILS + 10 +13594.544284 + 20 +13767.199822 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1D0E + 8 +DETAILS + 10 +13592.406767 + 20 +13775.745295 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1D0F + 8 +DETAILS + 0 +POLYLINE + 5 +1D10 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +28E0 + 8 +DECKEN + 10 +11555.0 + 20 +12812.5 + 30 +0.0 + 0 +VERTEX + 5 +28E1 + 8 +DECKEN + 10 +13605.0 + 20 +12812.5 + 30 +0.0 + 0 +SEQEND + 5 +28E2 + 8 +DECKEN + 0 +TEXT + 5 +1D14 + 8 +DETAILS + 10 +9225.0 + 20 +13365.0 + 30 +0.0 + 40 +87.5 + 1 +DIELUNG + 0 +TEXT + 5 +1D15 + 8 +DETAILS + 10 +9225.0 + 20 +13115.0 + 30 +0.0 + 40 +87.5 + 1 +PS-WD + 0 +TEXT + 5 +1D16 + 8 +DETAILS + 10 +9225.0 + 20 +12865.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 0 +POLYLINE + 5 +1D17 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28E3 + 8 +BEMASSUNG + 10 +10030.0 + 20 +13410.0 + 30 +0.0 + 0 +VERTEX + 5 +28E4 + 8 +BEMASSUNG + 10 +11075.0 + 20 +13410.0 + 30 +0.0 + 0 +VERTEX + 5 +28E5 + 8 +BEMASSUNG + 10 +11075.0 + 20 +13745.0 + 30 +0.0 + 0 +VERTEX + 5 +28E6 + 8 +BEMASSUNG + 10 +11375.0 + 20 +13745.0 + 30 +0.0 + 0 +SEQEND + 5 +28E7 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D1D + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28E8 + 8 +BEMASSUNG + 10 +10030.0 + 20 +13170.0 + 30 +0.0 + 0 +VERTEX + 5 +28E9 + 8 +BEMASSUNG + 10 +11250.0 + 20 +13170.0 + 30 +0.0 + 0 +VERTEX + 5 +28EA + 8 +BEMASSUNG + 10 +11250.0 + 20 +13470.0 + 30 +0.0 + 0 +VERTEX + 5 +28EB + 8 +BEMASSUNG + 10 +11375.0 + 20 +13470.0 + 30 +0.0 + 0 +SEQEND + 5 +28EC + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D23 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28ED + 8 +BEMASSUNG + 10 +10035.0 + 20 +12920.0 + 30 +0.0 + 0 +VERTEX + 5 +28EE + 8 +BEMASSUNG + 10 +11265.0 + 20 +12920.0 + 30 +0.0 + 0 +VERTEX + 5 +28EF + 8 +BEMASSUNG + 10 +11265.0 + 20 +12825.0 + 30 +0.0 + 0 +VERTEX + 5 +28F0 + 8 +BEMASSUNG + 10 +11375.0 + 20 +12825.0 + 30 +0.0 + 0 +SEQEND + 5 +28F1 + 8 +BEMASSUNG + 0 +DIMENSION + 5 +1D29 + 8 +BEMASSUNG + 2 +*D4 + 10 +4130.0 + 20 +3100.0 + 30 +0.0 + 11 +3945.0 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +32 + 13 +3760.0 + 23 +2900.0 + 33 +0.0 + 14 +4130.0 + 24 +2900.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D2A + 8 +BEMASSUNG + 2 +*D8 + 10 +5890.0 + 20 +3100.0 + 30 +0.0 + 11 +5010.0 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +1.62 + 13 +4130.0 + 23 +2900.0 + 33 +0.0 + 14 +5890.0 + 24 +3110.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D2B + 8 +BEMASSUNG + 2 +*D11 + 10 +7195.0 + 20 +3100.0 + 30 +0.0 + 11 +6542.5 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +1.43 + 13 +5890.0 + 23 +3110.0 + 33 +0.0 + 14 +7195.0 + 24 +3105.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D2C + 8 +BEMASSUNG + 2 +*D5 + 10 +10555.0 + 20 +3100.0 + 30 +0.0 + 11 +8875.0 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +3.37 + 13 +7195.0 + 23 +3105.0 + 33 +0.0 + 14 +10555.0 + 24 +3455.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D2D + 8 +BEMASSUNG + 2 +*D6 + 10 +13940.0 + 20 +3100.0 + 30 +0.0 + 11 +12247.5 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +3.37 + 13 +10555.0 + 23 +3455.0 + 33 +0.0 + 14 +13940.0 + 24 +3615.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D2E + 8 +BEMASSUNG + 2 +*D10 + 10 +15225.0 + 20 +3100.0 + 30 +0.0 + 11 +14582.5 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +1.43 + 13 +13940.0 + 23 +3615.0 + 33 +0.0 + 14 +15225.0 + 24 +3285.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D2F + 8 +BEMASSUNG + 2 +*D9 + 10 +16985.0 + 20 +3100.0 + 30 +0.0 + 11 +16105.0 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +1.62 + 13 +15225.0 + 23 +3285.0 + 33 +0.0 + 14 +16985.0 + 24 +3090.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D30 + 8 +BEMASSUNG + 2 +*D7 + 10 +17360.0 + 20 +3100.0 + 30 +0.0 + 11 +17172.5 + 21 +3187.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +32 + 13 +16985.0 + 23 +3090.0 + 33 +0.0 + 14 +17360.0 + 24 +4025.0 + 34 +0.0 + 0 +TEXT + 5 +1D31 + 8 +BEMASSUNG + 10 +6685.0 + 20 +3220.0 + 30 +0.0 + 40 +62.5 + 1 +8 + 0 +TEXT + 5 +1D32 + 8 +BEMASSUNG + 10 +9020.0 + 20 +3220.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1D33 + 8 +BEMASSUNG + 10 +12400.0 + 20 +3220.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1D34 + 8 +BEMASSUNG + 10 +14715.0 + 20 +3220.0 + 30 +0.0 + 40 +62.5 + 1 +8 + 0 +DIMENSION + 5 +1D35 + 8 +BEMASSUNG + 2 +*D12 + 10 +4490.0 + 20 +2750.0 + 30 +0.0 + 11 +4310.0 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +36 + 13 +4130.0 + 23 +1520.0 + 33 +0.0 + 14 +4490.0 + 24 +1520.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D36 + 8 +BEMASSUNG + 2 +*D13 + 10 +9000.0 + 20 +2750.0 + 30 +0.0 + 11 +6745.0 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +4.51 + 13 +4490.0 + 23 +1520.0 + 33 +0.0 + 14 +9000.0 + 24 +1875.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D37 + 8 +BEMASSUNG + 2 +*D14 + 10 +9365.0 + 20 +2750.0 + 30 +0.0 + 11 +9182.5 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +36 + 13 +9000.0 + 23 +1875.0 + 33 +0.0 + 14 +9365.0 + 24 +2425.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D38 + 8 +BEMASSUNG + 2 +*D15 + 10 +11745.0 + 20 +2750.0 + 30 +0.0 + 11 +10555.0 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +2.38 + 13 +9365.0 + 23 +2425.0 + 33 +0.0 + 14 +11745.0 + 24 +2870.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D39 + 8 +BEMASSUNG + 2 +*D16 + 10 +12115.0 + 20 +2750.0 + 30 +0.0 + 11 +11930.0 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +36 + 13 +11745.0 + 23 +2870.0 + 33 +0.0 + 14 +12115.0 + 24 +2765.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D3A + 8 +BEMASSUNG + 2 +*D17 + 10 +16630.0 + 20 +2750.0 + 30 +0.0 + 11 +14372.5 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +4.51 + 13 +12115.0 + 23 +2765.0 + 33 +0.0 + 14 +16630.0 + 24 +2925.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D3B + 8 +BEMASSUNG + 2 +*D18 + 10 +16985.0 + 20 +2750.0 + 30 +0.0 + 11 +16807.5 + 21 +2837.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +36 + 13 +16630.0 + 23 +2925.0 + 33 +0.0 + 14 +16985.0 + 24 +2775.0 + 34 +0.0 + 0 +TEXT + 5 +1D3C + 8 +BEMASSUNG + 10 +12025.0 + 20 +2850.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1D3D + 8 +BEMASSUNG + 10 +16900.0 + 20 +2850.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1D3E + 8 +BEMASSUNG + 10 +10700.0 + 20 +2850.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1D3F + 8 +BEMASSUNG + 10 +9270.0 + 20 +2850.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1D40 + 8 +BEMASSUNG + 10 +4395.0 + 20 +2850.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +DIMENSION + 5 +1D41 + 8 +BEMASSUNG + 2 +*D19 + 10 +16985.0 + 20 +2400.0 + 30 +0.0 + 11 +10557.5 + 21 +2487.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +12.86 + 13 +4130.0 + 23 +2140.0 + 33 +0.0 + 14 +16985.0 + 24 +2140.0 + 34 +0.0 + 0 +TEXT + 5 +1D42 + 8 +BEMASSUNG + 10 +10725.0 + 20 +2505.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +DIMENSION + 5 +1D43 + 8 +LEGENDE-35 + 2 +*D21 + 10 +18245.0 + 20 +7545.0 + 30 +0.0 + 11 +18157.5 + 21 +6022.5 + 31 +0.0 + 12 +15870.0 + 22 +-755.0 + 32 +0.0 + 1 +3.00 + 13 +17010.0 + 23 +4500.0 + 33 +0.0 + 14 +17010.0 + 24 +7545.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D44 + 8 +LEGENDE-35 + 2 +*D22 + 10 +18245.0 + 20 +9850.0 + 30 +0.0 + 11 +18157.5 + 21 +8697.5 + 31 +0.0 + 12 +15870.0 + 22 +-755.0 + 32 +0.0 + 1 +2.36 + 13 +17010.0 + 23 +7545.0 + 33 +0.0 + 14 +26430.0 + 24 +9850.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D45 + 8 +LEGENDE-35 + 2 +*D23 + 10 +8740.0 + 20 +9755.0 + 30 +0.0 + 11 +7995.0 + 21 +9842.5 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 1 +1.49 + 13 +7250.0 + 23 +9445.0 + 33 +0.0 + 14 +8740.0 + 24 +9445.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D46 + 8 +LEGENDE-35 + 2 +*D24 + 10 +6932.303371 + 20 +8578.314607 + 30 +0.0 + 11 +5105.928464 + 21 +7540.014458 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 70 + 1 + 1 +4.20 + 13 +3715.0 + 23 +5805.0 + 33 +0.0 + 14 +7275.0 + 24 +8030.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D47 + 8 +LEGENDE-35 + 2 +*D25 + 10 +14757.430766 + 20 +8499.293525 + 30 +0.0 + 11 +12936.243124 + 21 +9738.532433 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 70 + 1 + 1 +4.40 + 13 +10555.0 + 23 +10080.0 + 33 +0.0 + 14 +14290.0 + 24 +7750.0 + 34 +0.0 + 0 +DIMENSION + 5 +1D48 + 8 +LEGENDE-35 + 2 +*D26 + 10 +17355.726841 + 20 +7900.921615 + 30 +0.0 + 11 +15616.08127 + 21 +8145.568376 + 31 +0.0 + 12 +0.0 + 22 +-750.0 + 32 +0.0 + 70 + 1 + 1 +3.51 + 13 +13830.0 + 23 +7875.0 + 33 +0.0 + 14 +17325.0 + 24 +7560.0 + 34 +0.0 + 0 +INSERT + 5 +1D49 + 8 +0 + 2 +HOEHE + 10 +9865.0 + 20 +4720.0 + 30 +0.0 + 0 +INSERT + 5 +1D4A + 8 +0 + 2 +HOEHE + 10 +9865.0 + 20 +7520.0 + 30 +0.0 + 0 +INSERT + 5 +1D4B + 8 +0 + 2 +HOEHE + 10 +9875.0 + 20 +9855.0 + 30 +0.0 + 0 +DIMENSION + 5 +1D4C + 8 +0 + 2 +*D28 + 10 +17895.0 + 20 +5740.0 + 30 +0.0 + 11 +17807.5 + 21 +5120.0 + 31 +0.0 + 12 +-230.0 + 22 +0.0 + 32 +0.0 + 1 +1.21 + 13 +16740.0 + 23 +4500.0 + 33 +0.0 + 14 +16740.0 + 24 +5740.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D4D + 8 +0 + 2 +*D29 + 10 +17895.0 + 20 +5950.0 + 30 +0.0 + 11 +17807.5 + 21 +5845.0 + 31 +0.0 + 12 +-230.0 + 22 +0.0 + 32 +0.0 + 1 +18 + 13 +16740.0 + 23 +5740.0 + 33 +0.0 + 14 +17890.0 + 24 +5950.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D4E + 8 +0 + 2 +*D30 + 10 +17895.0 + 20 +7360.0 + 30 +0.0 + 11 +17807.5 + 21 +6655.0 + 31 +0.0 + 12 +-230.0 + 22 +0.0 + 32 +0.0 + 1 +1.40 + 13 +17890.0 + 23 +5950.0 + 33 +0.0 + 14 +16625.0 + 24 +7360.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D4F + 8 +0 + 2 +*D34 + 10 +14290.0 + 20 +12855.0 + 30 +0.0 + 11 +14202.5 + 21 +12725.0 + 31 +0.0 + 70 + 128 + 1 +1 + 13 +13590.0 + 23 +12815.0 + 33 +0.0 + 14 +13590.0 + 24 +12855.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D50 + 8 +0 + 2 +*D31 + 10 +14290.0 + 20 +13260.0 + 30 +0.0 + 11 +14202.5 + 21 +13057.5 + 31 +0.0 + 1 +16 + 13 +13590.0 + 23 +12855.0 + 33 +0.0 + 14 +13560.0 + 24 +13260.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D51 + 8 +0 + 2 +*D32 + 10 +14290.0 + 20 +13700.0 + 30 +0.0 + 11 +14202.5 + 21 +13480.0 + 31 +0.0 + 1 +18 + 13 +13560.0 + 23 +13260.0 + 33 +0.0 + 14 +13580.0 + 24 +13700.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1D52 + 8 +0 + 2 +*D33 + 10 +14290.0 + 20 +13775.0 + 30 +0.0 + 11 +14202.5 + 21 +13835.0 + 31 +0.0 + 70 + 128 + 1 +3 + 13 +13580.0 + 23 +13700.0 + 33 +0.0 + 14 +13590.0 + 24 +13775.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1D53 + 8 +0 + 10 +14185.0 + 20 +12740.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 50 +90.0 + 0 +TEXT + 5 +1D54 + 8 +0 + 10 +17790.0 + 20 +5225.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 50 +90.0 + 0 +POLYLINE + 5 +1D55 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28F2 + 8 +BEMASSUNG + 10 +9760.0 + 20 +9855.0 + 30 +0.0 + 0 +VERTEX + 5 +28F3 + 8 +BEMASSUNG + 10 +10120.0 + 20 +9855.0 + 30 +0.0 + 0 +SEQEND + 5 +28F4 + 8 +BEMASSUNG + 0 +TEXT + 5 +1D59 + 8 +BEMASSUNG + 10 +9790.0 + 20 +9960.0 + 30 +0.0 + 40 +87.5 + 1 ++5.36 + 0 +TEXT + 5 +1D5A + 8 +BEMASSUNG + 10 +9790.0 + 20 +7640.0 + 30 +0.0 + 40 +87.5 + 1 ++3.00 + 0 +TEXT + 5 +1D5B + 8 +BEMASSUNG + 10 +9790.0 + 20 +4830.0 + 30 +0.0 + 40 +87.5 + 1 ++0.18 + 0 +POLYLINE + 5 +1D5C + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28F5 + 8 +BEMASSUNG + 10 +18345.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +28F6 + 8 +BEMASSUNG + 10 +19330.0 + 20 +4500.0 + 30 +0.0 + 0 +SEQEND + 5 +28F7 + 8 +BEMASSUNG + 0 +INSERT + 5 +1D60 + 8 +BEMASSUNG + 2 +DREIECK + 10 +19145.0 + 20 +4500.0 + 30 +0.0 + 0 +TEXT + 5 +1D61 + 8 +BEMASSUNG + 10 +19050.0 + 20 +4620.0 + 30 +0.0 + 40 +87.5 + 1 +%%p0.00 + 0 +CIRCLE + 5 +1D62 + 8 +BEMASSUNG + 10 +6130.0 + 20 +6420.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D63 + 8 +BEMASSUNG + 10 +9200.0 + 20 +8505.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D64 + 8 +BEMASSUNG + 10 +7910.0 + 20 +7750.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D65 + 8 +BEMASSUNG + 10 +7910.0 + 20 +7060.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D66 + 8 +BEMASSUNG + 10 +8520.0 + 20 +7750.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D67 + 8 +BEMASSUNG + 10 +7910.0 + 20 +6600.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D68 + 8 +BEMASSUNG + 10 +6270.0 + 20 +7750.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D69 + 8 +BEMASSUNG + 10 +7910.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D6A + 8 +BEMASSUNG + 10 +8350.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1D6B + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28F8 + 8 +BEMASSUNG + 10 +8350.0 + 20 +5020.0 + 30 +0.0 + 0 +VERTEX + 5 +28F9 + 8 +BEMASSUNG + 10 +8350.0 + 20 +4710.0 + 30 +0.0 + 0 +SEQEND + 5 +28FA + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D6F + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28FB + 8 +BEMASSUNG + 10 +7785.0 + 20 +5140.0 + 30 +0.0 + 0 +VERTEX + 5 +28FC + 8 +BEMASSUNG + 10 +7280.0 + 20 +5140.0 + 30 +0.0 + 0 +SEQEND + 5 +28FD + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D73 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +28FE + 8 +BEMASSUNG + 10 +7785.0 + 20 +6600.0 + 30 +0.0 + 0 +VERTEX + 5 +28FF + 8 +BEMASSUNG + 10 +7330.0 + 20 +6675.0 + 30 +0.0 + 0 +SEQEND + 5 +2900 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D77 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2901 + 8 +BEMASSUNG + 10 +7785.0 + 20 +7060.0 + 30 +0.0 + 0 +VERTEX + 5 +2902 + 8 +BEMASSUNG + 10 +7145.0 + 20 +7065.0 + 30 +0.0 + 0 +VERTEX + 5 +2903 + 8 +BEMASSUNG + 10 +7145.0 + 20 +7390.0 + 30 +0.0 + 0 +SEQEND + 5 +2904 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D7C + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2905 + 8 +BEMASSUNG + 10 +7215.0 + 20 +7065.0 + 30 +0.0 + 0 +VERTEX + 5 +2906 + 8 +BEMASSUNG + 10 +7215.0 + 20 +7385.0 + 30 +0.0 + 0 +SEQEND + 5 +2907 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D80 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2908 + 8 +BEMASSUNG + 10 +7785.0 + 20 +7740.0 + 30 +0.0 + 0 +VERTEX + 5 +2909 + 8 +BEMASSUNG + 10 +7285.0 + 20 +7655.0 + 30 +0.0 + 0 +SEQEND + 5 +290A + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D84 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +290B + 8 +BEMASSUNG + 10 +8450.0 + 20 +7650.0 + 30 +0.0 + 0 +VERTEX + 5 +290C + 8 +BEMASSUNG + 10 +8405.0 + 20 +7515.0 + 30 +0.0 + 0 +SEQEND + 5 +290D + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D88 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +290E + 8 +BEMASSUNG + 10 +9105.0 + 20 +8585.0 + 30 +0.0 + 0 +VERTEX + 5 +290F + 8 +BEMASSUNG + 10 +8875.0 + 20 +8815.0 + 30 +0.0 + 0 +SEQEND + 5 +2910 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D8C + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2911 + 8 +BEMASSUNG + 10 +6350.0 + 20 +7655.0 + 30 +0.0 + 0 +VERTEX + 5 +2912 + 8 +BEMASSUNG + 10 +6480.0 + 20 +7445.0 + 30 +0.0 + 0 +SEQEND + 5 +2913 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D90 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2914 + 8 +BEMASSUNG + 10 +6040.0 + 20 +6505.0 + 30 +0.0 + 0 +VERTEX + 5 +2915 + 8 +BEMASSUNG + 10 +5680.0 + 20 +6820.0 + 30 +0.0 + 0 +SEQEND + 5 +2916 + 8 +BEMASSUNG + 0 +CIRCLE + 5 +1D94 + 8 +BEMASSUNG + 10 +5020.0 + 20 +5845.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D95 + 8 +BEMASSUNG + 10 +4000.0 + 20 +6410.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D96 + 8 +BEMASSUNG + 10 +6810.0 + 20 +5445.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1D97 + 8 +BEMASSUNG + 10 +5785.0 + 20 +5210.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1D98 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2917 + 8 +BEMASSUNG + 10 +4101.10061 + 20 +6337.02211 + 30 +0.0 + 0 +VERTEX + 5 +2918 + 8 +BEMASSUNG + 10 +4205.0 + 20 +5995.0 + 30 +0.0 + 0 +SEQEND + 5 +2919 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1D9C + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +291A + 8 +BEMASSUNG + 10 +4895.0 + 20 +5845.0 + 30 +0.0 + 0 +VERTEX + 5 +291B + 8 +BEMASSUNG + 10 +4390.0 + 20 +5845.0 + 30 +0.0 + 0 +SEQEND + 5 +291C + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1DA0 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +291D + 8 +BEMASSUNG + 10 +5785.0 + 20 +5085.0 + 30 +0.0 + 0 +VERTEX + 5 +291E + 8 +BEMASSUNG + 10 +5890.0 + 20 +4820.0 + 30 +0.0 + 0 +SEQEND + 5 +291F + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1DA4 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2920 + 8 +BEMASSUNG + 10 +6685.0 + 20 +5445.0 + 30 +0.0 + 0 +VERTEX + 5 +2921 + 8 +BEMASSUNG + 10 +6435.0 + 20 +5445.0 + 30 +0.0 + 0 +SEQEND + 5 +2922 + 8 +BEMASSUNG + 0 +CIRCLE + 5 +1DA8 + 8 +BEMASSUNG + 10 +8980.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DA9 + 8 +BEMASSUNG + 10 +9395.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1DAA + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2923 + 8 +BEMASSUNG + 10 +8975.0 + 20 +5020.0 + 30 +0.0 + 0 +VERTEX + 5 +2924 + 8 +BEMASSUNG + 10 +8975.0 + 20 +4515.0 + 30 +0.0 + 0 +SEQEND + 5 +2925 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1DAE + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2926 + 8 +BEMASSUNG + 10 +9400.0 + 20 +5020.0 + 30 +0.0 + 0 +VERTEX + 5 +2927 + 8 +BEMASSUNG + 10 +9400.0 + 20 +4420.0 + 30 +0.0 + 0 +SEQEND + 5 +2928 + 8 +BEMASSUNG + 0 +TEXT + 5 +1DB2 + 8 +BEMASSUNG + 10 +9185.416667 + 20 +8461.25 + 30 +0.0 + 40 +87.5 + 1 +1 + 72 + 4 + 11 +9200.0 + 21 +8505.0 + 31 +0.0 + 0 +TEXT + 5 +1DB3 + 8 +BEMASSUNG + 10 +8500.833333 + 20 +7696.25 + 30 +0.0 + 40 +87.5 + 1 +3 + 72 + 4 + 11 +8530.0 + 21 +7740.0 + 31 +0.0 + 0 +TEXT + 5 +1DB4 + 8 +BEMASSUNG + 10 +7870.833333 + 20 +7716.25 + 30 +0.0 + 40 +87.5 + 1 +4 + 72 + 4 + 11 +7900.0 + 21 +7760.0 + 31 +0.0 + 0 +TEXT + 5 +1DB5 + 8 +BEMASSUNG + 10 +6105.833333 + 20 +6371.25 + 30 +0.0 + 40 +87.5 + 1 +2 + 72 + 4 + 11 +6135.0 + 21 +6415.0 + 31 +0.0 + 0 +TEXT + 5 +1DB6 + 8 +BEMASSUNG + 10 +6775.833333 + 20 +5406.25 + 30 +0.0 + 40 +87.5 + 1 +5 + 72 + 4 + 11 +6805.0 + 21 +5450.0 + 31 +0.0 + 0 +TEXT + 5 +1DB7 + 8 +BEMASSUNG + 10 +7885.833333 + 20 +5096.25 + 30 +0.0 + 40 +87.5 + 1 +6 + 72 + 4 + 11 +7915.0 + 21 +5140.0 + 31 +0.0 + 0 +TEXT + 5 +1DB8 + 8 +BEMASSUNG + 10 +5005.833333 + 20 +5791.25 + 30 +0.0 + 40 +87.5 + 1 +7 + 72 + 4 + 11 +5035.0 + 21 +5835.0 + 31 +0.0 + 0 +TEXT + 5 +1DB9 + 8 +BEMASSUNG + 10 +8315.833333 + 20 +5101.25 + 30 +0.0 + 40 +87.5 + 1 +8 + 72 + 4 + 11 +8345.0 + 21 +5145.0 + 31 +0.0 + 0 +TEXT + 5 +1DBA + 8 +LEGENDE-70 + 10 +1450.0 + 20 +13955.0 + 30 +0.0 + 40 +175.0 + 1 +LEGENDE + 0 +CIRCLE + 5 +1DBB + 8 +BEMASSUNG + 10 +1395.0 + 20 +13475.0 + 30 +0.0 + 40 +125.0 + 0 +TEXT + 5 +1DBC + 8 +LEGENDE-35 + 10 +1380.416667 + 20 +13426.25 + 30 +0.0 + 40 +87.5 + 1 +1 + 72 + 4 + 11 +1395.0 + 21 +13470.0 + 31 +0.0 + 0 +CIRCLE + 5 +1DBD + 8 +BEMASSUNG + 10 +1395.0 + 20 +13185.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DBE + 8 +BEMASSUNG + 10 +1395.0 + 20 +12895.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DBF + 8 +BEMASSUNG + 10 +1395.0 + 20 +12605.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC0 + 8 +BEMASSUNG + 10 +1395.0 + 20 +12315.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC1 + 8 +BEMASSUNG + 10 +1395.0 + 20 +12025.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC2 + 8 +BEMASSUNG + 10 +1395.0 + 20 +11735.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC3 + 8 +BEMASSUNG + 10 +1395.0 + 20 +11445.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC4 + 8 +BEMASSUNG + 10 +1395.0 + 20 +11155.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC5 + 8 +BEMASSUNG + 10 +1395.0 + 20 +10865.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC6 + 8 +BEMASSUNG + 10 +1395.0 + 20 +10575.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC7 + 8 +BEMASSUNG + 10 +1395.0 + 20 +10285.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC8 + 8 +BEMASSUNG + 10 +1395.0 + 20 +9995.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DC9 + 8 +BEMASSUNG + 10 +1395.0 + 20 +9705.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DCA + 8 +BEMASSUNG + 10 +1395.0 + 20 +9415.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DCB + 8 +BEMASSUNG + 10 +1395.0 + 20 +9125.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DCC + 8 +BEMASSUNG + 10 +1395.0 + 20 +8835.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DCD + 8 +BEMASSUNG + 10 +1395.0 + 20 +8545.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DCE + 8 +BEMASSUNG + 10 +1395.0 + 20 +8255.0 + 30 +0.0 + 40 +125.0 + 0 +TEXT + 5 +1DCF + 8 +LEGENDE-35 + 10 +1355.833333 + 20 +13146.25 + 30 +0.0 + 40 +87.5 + 1 +2 + 72 + 4 + 11 +1385.0 + 21 +13190.0 + 31 +0.0 + 0 +TEXT + 5 +1DD0 + 8 +LEGENDE-35 + 10 +1365.833333 + 20 +12856.25 + 30 +0.0 + 40 +87.5 + 1 +3 + 72 + 4 + 11 +1395.0 + 21 +12900.0 + 31 +0.0 + 0 +TEXT + 5 +1DD1 + 8 +LEGENDE-35 + 10 +1355.833333 + 20 +12556.25 + 30 +0.0 + 40 +87.5 + 1 +4 + 72 + 4 + 11 +1385.0 + 21 +12600.0 + 31 +0.0 + 0 +TEXT + 5 +1DD2 + 8 +LEGENDE-35 + 10 +1370.833333 + 20 +12271.25 + 30 +0.0 + 40 +87.5 + 1 +5 + 72 + 4 + 11 +1400.0 + 21 +12315.0 + 31 +0.0 + 0 +TEXT + 5 +1DD3 + 8 +LEGENDE-35 + 10 +1375.833333 + 20 +11996.25 + 30 +0.0 + 40 +87.5 + 1 +6 + 72 + 4 + 11 +1405.0 + 21 +12040.0 + 31 +0.0 + 0 +TEXT + 5 +1DD4 + 8 +LEGENDE-35 + 10 +1365.833333 + 20 +11701.25 + 30 +0.0 + 40 +87.5 + 1 +7 + 72 + 4 + 11 +1395.0 + 21 +11745.0 + 31 +0.0 + 0 +TEXT + 5 +1DD5 + 8 +LEGENDE-35 + 10 +1365.833333 + 20 +11401.25 + 30 +0.0 + 40 +87.5 + 1 +8 + 72 + 4 + 11 +1395.0 + 21 +11445.0 + 31 +0.0 + 0 +TEXT + 5 +1DD6 + 8 +LEGENDE-35 + 10 +1360.833333 + 20 +11096.25 + 30 +0.0 + 40 +87.5 + 1 +9 + 72 + 4 + 11 +1390.0 + 21 +11140.0 + 31 +0.0 + 0 +TEXT + 5 +1DD7 + 8 +LEGENDE-35 + 10 +1358.958333 + 20 +10826.25 + 30 +0.0 + 40 +87.5 + 1 +10 + 72 + 4 + 11 +1410.0 + 21 +10870.0 + 31 +0.0 + 0 +TEXT + 5 +1DD8 + 8 +LEGENDE-35 + 10 +1356.25 + 20 +10531.25 + 30 +0.0 + 40 +87.5 + 1 +11 + 72 + 4 + 11 +1400.0 + 21 +10575.0 + 31 +0.0 + 0 +TEXT + 5 +1DD9 + 8 +LEGENDE-35 + 10 +1341.666667 + 20 +10221.25 + 30 +0.0 + 40 +87.5 + 1 +12 + 72 + 4 + 11 +1400.0 + 21 +10265.0 + 31 +0.0 + 0 +TEXT + 5 +1DDA + 8 +LEGENDE-35 + 10 +1331.666667 + 20 +9951.25 + 30 +0.0 + 40 +87.5 + 1 +13 + 72 + 4 + 11 +1390.0 + 21 +9995.0 + 31 +0.0 + 0 +TEXT + 5 +1DDB + 8 +LEGENDE-35 + 10 +1336.666667 + 20 +9671.25 + 30 +0.0 + 40 +87.5 + 1 +14 + 72 + 4 + 11 +1395.0 + 21 +9715.0 + 31 +0.0 + 0 +TEXT + 5 +1DDC + 8 +LEGENDE-35 + 10 +1341.666667 + 20 +9376.25 + 30 +0.0 + 40 +87.5 + 1 +15 + 72 + 4 + 11 +1400.0 + 21 +9420.0 + 31 +0.0 + 0 +TEXT + 5 +1DDD + 8 +LEGENDE-35 + 10 +1331.666667 + 20 +9061.25 + 30 +0.0 + 40 +87.5 + 1 +16 + 72 + 4 + 11 +1390.0 + 21 +9105.0 + 31 +0.0 + 0 +TEXT + 5 +1DDE + 8 +LEGENDE-35 + 10 +1336.666667 + 20 +8781.25 + 30 +0.0 + 40 +87.5 + 1 +17 + 72 + 4 + 11 +1395.0 + 21 +8825.0 + 31 +0.0 + 0 +TEXT + 5 +1DDF + 8 +LEGENDE-35 + 10 +1341.666667 + 20 +8486.25 + 30 +0.0 + 40 +87.5 + 1 +18 + 72 + 4 + 11 +1400.0 + 21 +8530.0 + 31 +0.0 + 0 +TEXT + 5 +1DE0 + 8 +LEGENDE-35 + 10 +1316.666667 + 20 +8186.25 + 30 +0.0 + 40 +87.5 + 1 +19 + 72 + 4 + 11 +1375.0 + 21 +8230.0 + 31 +0.0 + 0 +TEXT + 5 +1DE1 + 8 +LEGENDE-35 + 10 +1621.834543 + 20 +13421.828626 + 30 +0.0 + 40 +87.5 + 1 +POS 2 + 72 + 4 + 11 +1826.00121 + 21 +13465.578626 + 31 +0.0 + 0 +TEXT + 5 +1DE2 + 8 +LEGENDE-35 + 10 +1621.988991 + 20 +13131.25 + 30 +0.0 + 40 +87.5 + 1 +POS 1 + 72 + 4 + 11 +1811.572324 + 21 +13175.0 + 31 +0.0 + 0 +TEXT + 5 +1DE3 + 8 +LEGENDE-35 + 10 +1621.666667 + 20 +12841.25 + 30 +0.0 + 40 +87.5 + 1 +POS 16 + 72 + 4 + 11 +1855.0 + 21 +12885.0 + 31 +0.0 + 0 +TEXT + 5 +1DE4 + 8 +LEGENDE-35 + 10 +1626.278865 + 20 +12551.25 + 30 +0.0 + 40 +87.5 + 1 +POS 8 + 72 + 4 + 11 +1830.445532 + 21 +12595.0 + 31 +0.0 + 0 +TEXT + 5 +1DE5 + 8 +LEGENDE-35 + 10 +1621.666667 + 20 +12261.25 + 30 +0.0 + 40 +87.5 + 1 +POS 17 + 72 + 4 + 11 +1855.0 + 21 +12305.0 + 31 +0.0 + 0 +TEXT + 5 +1DE6 + 8 +LEGENDE-35 + 10 +1621.666667 + 20 +11971.25 + 30 +0.0 + 40 +87.5 + 1 +POS 13 + 72 + 4 + 11 +1855.0 + 21 +12015.0 + 31 +0.0 + 0 +TEXT + 5 +1DE7 + 8 +LEGENDE-35 + 10 +1622.282372 + 20 +11681.720375 + 30 +0.0 + 40 +87.5 + 1 +POS 10 + 72 + 4 + 11 +1848.324039 + 21 +11725.470375 + 31 +0.0 + 0 +TEXT + 5 +1DE8 + 8 +LEGENDE-35 + 10 +1621.733705 + 20 +11391.25 + 30 +0.0 + 40 +87.5 + 1 +POS 24 + 72 + 4 + 11 +1869.650372 + 21 +11435.0 + 31 +0.0 + 0 +TEXT + 5 +1DE9 + 8 +LEGENDE-35 + 10 +1621.666667 + 20 +11101.25 + 30 +0.0 + 40 +87.5 + 1 +POS 12 + 72 + 4 + 11 +1855.0 + 21 +11145.0 + 31 +0.0 + 0 +TEXT + 5 +1DEA + 8 +LEGENDE-35 + 10 +1621.988991 + 20 +10811.25 + 30 +0.0 + 40 +87.5 + 1 +POS 7 + 72 + 4 + 11 +1826.155657 + 21 +10855.0 + 31 +0.0 + 0 +TEXT + 5 +1DEB + 8 +LEGENDE-35 + 10 +1622.561615 + 20 +10520.230592 + 30 +0.0 + 40 +87.5 + 1 +POS 20 + 72 + 4 + 11 +1863.186615 + 21 +10563.980592 + 31 +0.0 + 0 +TEXT + 5 +1DEC + 8 +LEGENDE-35 + 10 +1621.666667 + 20 +10231.25 + 30 +0.0 + 40 +87.5 + 1 +POS 21 + 72 + 4 + 11 +1855.0 + 21 +10275.0 + 31 +0.0 + 0 +TEXT + 5 +1DED + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +9932.919087 + 30 +0.0 + 40 +87.5 + 1 +POS 22 + 72 + 4 + 11 +1870.976972 + 21 +9976.669087 + 31 +0.0 + 0 +CIRCLE + 5 +1DEE + 8 +BEMASSUNG + 10 +9405.0 + 20 +6665.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DEF + 8 +BEMASSUNG + 10 +11240.0 + 20 +6665.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DF0 + 8 +BEMASSUNG + 10 +11240.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DF1 + 8 +BEMASSUNG + 10 +15760.0 + 20 +7130.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DF2 + 8 +BEMASSUNG + 10 +17415.0 + 20 +7115.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1DF3 + 8 +BEMASSUNG + 10 +17415.0 + 20 +6280.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1DF4 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2929 + 8 +LEGENDE-35 + 10 +15760.0 + 20 +7255.0 + 30 +0.0 + 0 +VERTEX + 5 +292A + 8 +LEGENDE-35 + 10 +15760.0 + 20 +7560.0 + 30 +0.0 + 0 +SEQEND + 5 +292B + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1DF8 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +292C + 8 +LEGENDE-35 + 10 +17326.525084 + 20 +7203.265264 + 30 +0.0 + 0 +VERTEX + 5 +292D + 8 +LEGENDE-35 + 10 +16855.0 + 20 +7380.0 + 30 +0.0 + 0 +SEQEND + 5 +292E + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1DFC + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +292F + 8 +LEGENDE-35 + 10 +17290.071118 + 20 +6280.793494 + 30 +0.0 + 0 +VERTEX + 5 +2930 + 8 +LEGENDE-35 + 10 +16860.21552 + 20 +6280.793494 + 30 +0.0 + 0 +SEQEND + 5 +2931 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E00 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2932 + 8 +LEGENDE-35 + 10 +11114.725311 + 20 +6665.664001 + 30 +0.0 + 0 +VERTEX + 5 +2933 + 8 +LEGENDE-35 + 10 +10638.838913 + 20 +6665.664001 + 30 +0.0 + 0 +SEQEND + 5 +2934 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E04 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2935 + 8 +LEGENDE-35 + 10 +11151.552386 + 20 +5056.67299 + 30 +0.0 + 0 +VERTEX + 5 +2936 + 8 +LEGENDE-35 + 10 +10663.322645 + 20 +4809.171305 + 30 +0.0 + 0 +SEQEND + 5 +2937 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E08 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2938 + 8 +LEGENDE-35 + 10 +9280.134358 + 20 +6665.854545 + 30 +0.0 + 0 +VERTEX + 5 +2939 + 8 +LEGENDE-35 + 10 +8740.758683 + 20 +6665.854545 + 30 +0.0 + 0 +SEQEND + 5 +293A + 8 +LEGENDE-35 + 0 +CIRCLE + 5 +1E0C + 8 +BEMASSUNG + 10 +10184.280346 + 20 +9332.034676 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1E0D + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +293B + 8 +LEGENDE-35 + 10 +10257.568146 + 20 +9433.283077 + 30 +0.0 + 0 +VERTEX + 5 +293C + 8 +LEGENDE-35 + 10 +10475.477384 + 20 +9660.984177 + 30 +0.0 + 0 +SEQEND + 5 +293D + 8 +LEGENDE-35 + 0 +CIRCLE + 5 +1E11 + 8 +BEMASSUNG + 10 +5020.0 + 20 +5264.7418 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1E12 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +293E + 8 +LEGENDE-35 + 10 +4894.359634 + 20 +5258.46652 + 30 +0.0 + 0 +VERTEX + 5 +293F + 8 +LEGENDE-35 + 10 +4485.394725 + 20 +5258.46652 + 30 +0.0 + 0 +SEQEND + 5 +2940 + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E16 + 8 +LEGENDE-35 + 10 +11207.07242 + 20 +6614.037448 + 30 +0.0 + 40 +87.5 + 1 +9 + 72 + 4 + 11 +11236.239087 + 21 +6657.787448 + 31 +0.0 + 0 +TEXT + 5 +1E17 + 8 +LEGENDE-35 + 10 +10130.690719 + 20 +9283.383852 + 30 +0.0 + 40 +87.5 + 1 +10 + 72 + 4 + 11 +10181.732386 + 21 +9327.133852 + 31 +0.0 + 0 +TEXT + 5 +1E18 + 8 +LEGENDE-35 + 10 +15721.926243 + 20 +7083.643251 + 30 +0.0 + 40 +87.5 + 1 +11 + 72 + 4 + 11 +15765.676243 + 21 +7127.393251 + 31 +0.0 + 0 +TEXT + 5 +1E19 + 8 +LEGENDE-35 + 10 +17347.015724 + 20 +7067.763137 + 30 +0.0 + 40 +87.5 + 1 +12 + 72 + 4 + 11 +17405.349058 + 21 +7111.513137 + 31 +0.0 + 0 +TEXT + 5 +1E1A + 8 +LEGENDE-35 + 10 +17366.081614 + 20 +6235.646893 + 30 +0.0 + 40 +87.5 + 1 +13 + 72 + 4 + 11 +17424.414948 + 21 +6279.396893 + 31 +0.0 + 0 +TEXT + 5 +1E1B + 8 +LEGENDE-35 + 10 +9340.82076 + 20 +6613.831037 + 30 +0.0 + 40 +87.5 + 1 +14 + 72 + 4 + 11 +9399.154093 + 21 +6657.581037 + 31 +0.0 + 0 +CIRCLE + 5 +1E1C + 8 +BEMASSUNG + 10 +15605.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1E1D + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2941 + 8 +LEGENDE-35 + 10 +15556.912309 + 20 +5029.691846 + 30 +0.0 + 0 +VERTEX + 5 +2942 + 8 +LEGENDE-35 + 10 +15520.0 + 20 +4750.0 + 30 +0.0 + 0 +SEQEND + 5 +2943 + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E21 + 8 +LEGENDE-35 + 10 +4958.096108 + 20 +5218.924713 + 30 +0.0 + 40 +87.5 + 1 +15 + 72 + 4 + 11 +5016.429441 + 21 +5262.674713 + 31 +0.0 + 0 +TEXT + 5 +1E22 + 8 +LEGENDE-35 + 10 +8911.232818 + 20 +5104.715156 + 30 +0.0 + 40 +87.5 + 1 +16 + 72 + 4 + 11 +8969.566152 + 21 +5148.465156 + 31 +0.0 + 0 +TEXT + 5 +1E23 + 8 +LEGENDE-35 + 10 +9391.087606 + 20 +5148.088807 + 30 +0.0 + 40 +3.189831 + 1 +17 + 50 +44.985205 + 72 + 4 + 11 +9391.464211 + 21 +5150.720187 + 31 +0.0 + 0 +TEXT + 5 +1E24 + 8 +LEGENDE-35 + 10 +9341.666667 + 20 +5101.25 + 30 +0.0 + 40 +87.5 + 1 +17 + 72 + 4 + 11 +9400.0 + 21 +5145.0 + 31 +0.0 + 0 +TEXT + 5 +1E25 + 8 +LEGENDE-35 + 10 +2321.834543 + 20 +13421.828626 + 30 +0.0 + 40 +87.5 + 1 +SPARREN + 0 +TEXT + 5 +1E26 + 8 +LEGENDE-35 + 10 +2321.988991 + 20 +13131.25 + 30 +0.0 + 40 +87.5 + 1 +SPARREN + 0 +TEXT + 5 +1E27 + 8 +LEGENDE-35 + 10 +2321.666667 + 20 +12841.25 + 30 +0.0 + 40 +87.5 + 1 +ZANGE + 0 +TEXT + 5 +1E28 + 8 +LEGENDE-35 + 10 +2326.278865 + 20 +12551.25 + 30 +0.0 + 40 +87.5 + 1 +MITTELPFETTE + 0 +TEXT + 5 +1E29 + 8 +LEGENDE-35 + 10 +2321.666667 + 20 +12261.25 + 30 +0.0 + 40 +87.5 + 1 +STREBE + 0 +TEXT + 5 +1E2A + 8 +LEGENDE-35 + 10 +2321.666667 + 20 +11971.25 + 30 +0.0 + 40 +87.5 + 1 +STIEL + 0 +TEXT + 5 +1E2B + 8 +LEGENDE-35 + 10 +2322.282372 + 20 +11681.720375 + 30 +0.0 + 40 +87.5 + 1 +FUSSPFETTE + 0 +TEXT + 5 +1E2C + 8 +LEGENDE-35 + 10 +2321.733705 + 20 +11391.25 + 30 +0.0 + 40 +87.5 + 1 +FUSSCHWELLE + 0 +TEXT + 5 +1E2D + 8 +LEGENDE-35 + 10 +2321.666667 + 20 +11101.25 + 30 +0.0 + 40 +87.5 + 1 +STIEL + 0 +TEXT + 5 +1E2E + 8 +LEGENDE-35 + 10 +2321.988991 + 20 +10811.25 + 30 +0.0 + 40 +87.5 + 1 +FIRSTPFETTE + 0 +TEXT + 5 +1E2F + 8 +LEGENDE-35 + 10 +2322.561615 + 20 +10520.230592 + 30 +0.0 + 40 +87.5 + 1 +GAUBENSPARREN + 0 +TEXT + 5 +1E30 + 8 +LEGENDE-35 + 10 +2321.666667 + 20 +10231.25 + 30 +0.0 + 40 +87.5 + 1 +GAUBENSTURZ + 0 +TEXT + 5 +1E31 + 8 +LEGENDE-35 + 10 +2323.060305 + 20 +9932.919087 + 30 +0.0 + 40 +87.5 + 1 +GAUBENSTIEL + 0 +TEXT + 5 +1E32 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +13421.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E33 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +13131.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E34 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +12841.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E35 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +12551.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E36 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +12261.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E37 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +11971.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E38 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +11681.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E39 + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +11391.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E3A + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +11101.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E3B + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +10811.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E3C + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +10521.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E3D + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +10231.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E3E + 8 +LEGENDE-35 + 10 +3633.834543 + 20 +9941.828626 + 30 +0.0 + 40 +87.5 + 1 +NH S10 + 0 +TEXT + 5 +1E3F + 8 +LEGENDE-35 + 10 +4233.834543 + 20 +13421.828626 + 30 +0.0 + 40 +87.5 + 1 +8/18 + 0 +TEXT + 5 +1E40 + 8 +LEGENDE-35 + 10 +4233.834543 + 20 +13131.828626 + 30 +0.0 + 40 +87.5 + 1 +8/18 + 0 +TEXT + 5 +1E41 + 8 +LEGENDE-35 + 10 +4230.0 + 20 +12835.0 + 30 +0.0 + 40 +87.5 + 1 +2x6/16 + 0 +TEXT + 5 +1E42 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +12550.0 + 30 +0.0 + 40 +87.5 + 1 +24/20 + 0 +TEXT + 5 +1E43 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +12260.0 + 30 +0.0 + 40 +87.5 + 1 +18/18 + 0 +TEXT + 5 +1E44 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +11970.0 + 30 +0.0 + 40 +87.5 + 1 +18/20 + 0 +TEXT + 5 +1E45 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +11680.0 + 30 +0.0 + 40 +87.5 + 1 +18/18 + 0 +TEXT + 5 +1E46 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +11390.0 + 30 +0.0 + 40 +87.5 + 1 +18/18 + 0 +TEXT + 5 +1E47 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +11100.0 + 30 +0.0 + 40 +87.5 + 1 +16/16 + 0 +TEXT + 5 +1E48 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +10810.0 + 30 +0.0 + 40 +87.5 + 1 +16/26 + 0 +TEXT + 5 +1E49 + 8 +LEGENDE-35 + 10 +4215.0 + 20 +10520.0 + 30 +0.0 + 40 +87.5 + 1 +8/14 + 0 +TEXT + 5 +1E4A + 8 +LEGENDE-35 + 10 +4215.0 + 20 +10230.0 + 30 +0.0 + 40 +87.5 + 1 +10/12 + 0 +TEXT + 5 +1E4B + 8 +LEGENDE-35 + 10 +4230.0 + 20 +9925.0 + 30 +0.0 + 40 +87.5 + 1 +10/10 + 0 +TEXT + 5 +1E4C + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +9642.919087 + 30 +0.0 + 40 +87.5 + 1 +SCHORNSTEIN 5 ZGE + 0 +TEXT + 5 +1E4D + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +9352.919087 + 30 +0.0 + 40 +87.5 + 1 +MW DIN 105 Mz-20-1.8-NF + 0 +TEXT + 5 +1E4E + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +9062.919087 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 0 +TEXT + 5 +1E4F + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +8772.919087 + 30 +0.0 + 40 +87.5 + 1 +STAHLBETONDECKE B25 ZWEIACHSIG GESPANNT + 0 +TEXT + 5 +1E50 + 8 +LEGENDE-35 + 10 +3941.666667 + 20 +6366.25 + 30 +0.0 + 40 +87.5 + 1 +18 + 72 + 4 + 11 +4000.0 + 21 +6410.0 + 31 +0.0 + 0 +TEXT + 5 +1E51 + 8 +LEGENDE-35 + 10 +6210.0 + 20 +7716.25 + 30 +0.0 + 40 +87.5 + 1 +19 + 72 + 4 + 11 +6268.333333 + 21 +7760.0 + 31 +0.0 + 0 +TEXT + 5 +1E52 + 8 +LEGENDE-35 + 10 +5709.375 + 20 +5166.25 + 30 +0.0 + 40 +87.5 + 1 +20 + 72 + 4 + 11 +5775.0 + 21 +5210.0 + 31 +0.0 + 0 +TEXT + 5 +1E53 + 8 +LEGENDE-35 + 10 +7851.666667 + 20 +7026.25 + 30 +0.0 + 40 +87.5 + 1 +21 + 72 + 4 + 11 +7910.0 + 21 +7070.0 + 31 +0.0 + 0 +TEXT + 5 +1E54 + 8 +LEGENDE-35 + 10 +7837.083333 + 20 +6571.25 + 30 +0.0 + 40 +87.5 + 1 +22 + 72 + 4 + 11 +7910.0 + 21 +6615.0 + 31 +0.0 + 0 +TEXT + 5 +1E55 + 8 +LEGENDE-35 + 10 +11167.083333 + 20 +5106.25 + 30 +0.0 + 40 +87.5 + 1 +23 + 72 + 4 + 11 +11240.0 + 21 +5150.0 + 31 +0.0 + 0 +TEXT + 5 +1E56 + 8 +LEGENDE-35 + 10 +15517.083333 + 20 +5096.25 + 30 +0.0 + 40 +87.5 + 1 +24 + 72 + 4 + 11 +15590.0 + 21 +5140.0 + 31 +0.0 + 0 +CIRCLE + 5 +1E57 + 8 +BEMASSUNG + 10 +13144.280346 + 20 +12312.034676 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1E58 + 8 +BEMASSUNG + 10 +13904.280346 + 20 +12312.034676 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1E59 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2944 + 8 +LEGENDE-35 + 10 +13900.0 + 20 +12436.038075 + 30 +0.0 + 0 +VERTEX + 5 +2945 + 8 +LEGENDE-35 + 10 +13900.0 + 20 +13265.0 + 30 +0.0 + 0 +VERTEX + 5 +2946 + 8 +LEGENDE-35 + 10 +13525.0 + 20 +13265.0 + 30 +0.0 + 0 +SEQEND + 5 +2947 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E5E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2948 + 8 +LEGENDE-35 + 10 +13145.0 + 20 +12436.644763 + 30 +0.0 + 0 +VERTEX + 5 +2949 + 8 +LEGENDE-35 + 10 +13145.0 + 20 +13000.0 + 30 +0.0 + 0 +SEQEND + 5 +294A + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E62 + 8 +LEGENDE-35 + 10 +13084.403036 + 20 +12272.508045 + 30 +0.0 + 40 +87.5 + 1 +17 + 72 + 4 + 11 +13142.736369 + 21 +12316.258045 + 31 +0.0 + 0 +TEXT + 5 +1E63 + 8 +LEGENDE-35 + 10 +13847.287928 + 20 +12278.897646 + 30 +0.0 + 40 +87.5 + 1 +16 + 72 + 4 + 11 +13905.621261 + 21 +12322.647646 + 31 +0.0 + 0 +TEXT + 5 +1E64 + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +8482.919087 + 30 +0.0 + 40 +87.5 + 1 +SPARRENPFETTENANKER TYP 170 / RNa 4.0x40 + 0 +TEXT + 5 +1E65 + 8 +LEGENDE-35 + 10 +1623.060305 + 20 +8192.919087 + 30 +0.0 + 40 +87.5 + 1 +PASSBOLZEN M20 + 0 +TEXT + 5 +1E66 + 8 +LEGENDE-35 + 10 +16710.0 + 20 +13421.828626 + 30 +0.0 + 40 +87.5 + 1 +LOCHBLECH + 72 + 4 + 11 +17089.166667 + 21 +13465.578626 + 31 +0.0 + 0 +TEXT + 5 +1E67 + 8 +LEGENDE-70 + 10 +16500.0 + 20 +13955.0 + 30 +0.0 + 40 +175.0 + 1 +LEGENDE + 0 +CIRCLE + 5 +1E68 + 8 +BEMASSUNG + 10 +16445.0 + 20 +13475.0 + 30 +0.0 + 40 +125.0 + 0 +TEXT + 5 +1E69 + 8 +LEGENDE-35 + 10 +16379.375 + 20 +13426.25 + 30 +0.0 + 40 +87.5 + 1 +20 + 72 + 4 + 11 +16445.0 + 21 +13470.0 + 31 +0.0 + 0 +CIRCLE + 5 +1E6A + 8 +BEMASSUNG + 10 +16395.0 + 20 +5145.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1E6B + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +294B + 8 +LEGENDE-35 + 10 +16346.912309 + 20 +5029.691846 + 30 +0.0 + 0 +VERTEX + 5 +294C + 8 +LEGENDE-35 + 10 +16330.0 + 20 +4735.0 + 30 +0.0 + 0 +SEQEND + 5 +294D + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E6F + 8 +LEGENDE-35 + 10 +16322.083333 + 20 +5106.25 + 30 +0.0 + 40 +87.5 + 1 +25 + 72 + 4 + 11 +16395.0 + 21 +5150.0 + 31 +0.0 + 0 +CIRCLE + 5 +1E70 + 8 +BEMASSUNG + 10 +16445.0 + 20 +13185.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1E71 + 8 +BEMASSUNG + 10 +16445.0 + 20 +12895.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1E72 + 8 +BEMASSUNG + 10 +16445.0 + 20 +12605.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1E73 + 8 +BEMASSUNG + 10 +16445.0 + 20 +12315.0 + 30 +0.0 + 40 +125.0 + 0 +CIRCLE + 5 +1E74 + 8 +BEMASSUNG + 10 +16445.0 + 20 +12025.0 + 30 +0.0 + 40 +125.0 + 0 +TEXT + 5 +1E75 + 8 +LEGENDE-35 + 10 +16371.666667 + 20 +13146.25 + 30 +0.0 + 40 +87.5 + 1 +21 + 72 + 4 + 11 +16430.0 + 21 +13190.0 + 31 +0.0 + 0 +TEXT + 5 +1E76 + 8 +LEGENDE-35 + 10 +16367.083333 + 20 +12850.0 + 30 +0.0 + 40 +87.5 + 1 +22 + 72 + 4 + 11 +16440.0 + 21 +12893.75 + 31 +0.0 + 0 +TEXT + 5 +1E77 + 8 +LEGENDE-35 + 10 +16372.083333 + 20 +12570.0 + 30 +0.0 + 40 +87.5 + 1 +23 + 72 + 4 + 11 +16445.0 + 21 +12613.75 + 31 +0.0 + 0 +TEXT + 5 +1E78 + 8 +LEGENDE-35 + 10 +16367.083333 + 20 +12266.25 + 30 +0.0 + 40 +87.5 + 1 +24 + 72 + 4 + 11 +16440.0 + 21 +12310.0 + 31 +0.0 + 0 +TEXT + 5 +1E79 + 8 +LEGENDE-35 + 10 +16372.083333 + 20 +11991.25 + 30 +0.0 + 40 +87.5 + 1 +25 + 72 + 4 + 11 +16445.0 + 21 +12035.0 + 31 +0.0 + 0 +TEXT + 5 +1E7A + 8 +LEGENDE-35 + 10 +16710.0 + 20 +13131.828626 + 30 +0.0 + 40 +87.5 + 1 +PASSBOLZEN M12 + 0 +TEXT + 5 +1E7B + 8 +LEGENDE-35 + 10 +16710.0 + 20 +12841.828626 + 30 +0.0 + 40 +87.5 + 1 +SICHERUNGSBOLZEN M10 + 0 +TEXT + 5 +1E7C + 8 +LEGENDE-35 + 10 +16710.0 + 20 +12551.828626 + 30 +0.0 + 40 +87.5 + 1 +WINKELVERBINDER TYP 90 /RNa 4.0x40 n=4/SCHENKEL + 0 +TEXT + 5 +1E7D + 8 +LEGENDE-35 + 10 +16710.0 + 20 +12261.828626 + 30 +0.0 + 40 +87.5 + 1 +KNAGGE NH S10 + 0 +TEXT + 5 +1E7E + 8 +LEGENDE-35 + 10 +16710.0 + 20 +11971.828626 + 30 +0.0 + 40 +87.5 + 1 +PETTENANKER M20 + 0 +POLYLINE + 5 +1E7F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +294E + 8 +DETAILS + 10 +6065.0 + 20 +8300.0 + 30 +0.0 + 0 +VERTEX + 5 +294F + 8 +DETAILS + 10 +6065.0 + 20 +7240.0 + 30 +0.0 + 0 +VERTEX + 5 +2950 + 8 +DETAILS + 10 +8155.0 + 20 +7245.0 + 30 +0.0 + 0 +VERTEX + 5 +2951 + 8 +DETAILS + 10 +8155.0 + 20 +8300.0 + 30 +0.0 + 0 +SEQEND + 5 +2952 + 8 +DETAILS + 0 +TEXT + 5 +1E85 + 8 +DETAILS + 10 +6780.0 + 20 +8060.0 + 30 +0.0 + 40 +175.0 + 1 +D7 + 0 +POLYLINE + 5 +1E86 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2953 + 8 +DETAILS + 10 +5415.0 + 20 +4950.0 + 30 +0.0 + 0 +VERTEX + 5 +2954 + 8 +DETAILS + 10 +5415.0 + 20 +3890.0 + 30 +0.0 + 0 +VERTEX + 5 +2955 + 8 +DETAILS + 10 +7505.0 + 20 +3890.0 + 30 +0.0 + 0 +VERTEX + 5 +2956 + 8 +DETAILS + 10 +7505.0 + 20 +4950.0 + 30 +0.0 + 0 +SEQEND + 5 +2957 + 8 +DETAILS + 0 +TEXT + 5 +1E8C + 8 +DETAILS + 10 +5480.0 + 20 +3980.0 + 30 +0.0 + 40 +175.0 + 1 +D7 + 0 +TEXT + 5 +1E8D + 8 +DETAILS + 10 +18905.0 + 20 +730.0 + 30 +0.0 + 40 +175.0 + 1 +SCHNITT DG + 0 +TEXT + 5 +1E8E + 8 +DETAILS + 10 +20650.0 + 20 +190.0 + 30 +0.0 + 40 +87.5 + 1 +4 + 0 +CIRCLE + 5 +1E8F + 8 +DETAILS + 10 +11365.0 + 20 +4515.0 + 30 +0.0 + 40 +322.374006 + 0 +TEXT + 5 +1E90 + 8 +DETAILS + 10 +10740.0 + 20 +4090.0 + 30 +0.0 + 40 +87.5 + 1 +AUSSCHNITT + 0 +TEXT + 5 +1E91 + 8 +DETAILS + 10 +10740.0 + 20 +3944.166667 + 30 +0.0 + 40 +87.5 + 1 + DECKE + 0 +POLYLINE + 5 +1E92 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +2958 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2959 + 8 +0 + 10 +21025.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +295A + 8 +0 + 10 +21025.0 + 20 +14850.0 + 30 +0.0 + 0 +VERTEX + 5 +295B + 8 +0 + 10 +0.0 + 20 +14850.0 + 30 +0.0 + 0 +SEQEND + 5 +295C + 8 +0 + 0 +POLYLINE + 5 +1E98 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +295D + 8 +MAUERWERK + 10 +4211.99975 + 20 +4235.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +295E + 8 +MAUERWERK + 10 +4218.00025 + 20 +4235.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +295F + 8 +MAUERWERK + 0 +POLYLINE + 5 +1E9C + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +2960 + 8 +MAUERWERK + 10 +4361.99975 + 20 +4235.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2961 + 8 +MAUERWERK + 10 +4368.00025 + 20 +4235.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2962 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1EA0 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +2963 + 8 +MAUERWERK + 10 +9091.99975 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2964 + 8 +MAUERWERK + 10 +9098.00025 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2965 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1EA4 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +2966 + 8 +MAUERWERK + 10 +9236.99975 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2967 + 8 +MAUERWERK + 10 +9243.00025 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2968 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1EA8 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +2969 + 8 +MAUERWERK + 10 +12011.99975 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +296A + 8 +MAUERWERK + 10 +12018.00025 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +296B + 8 +MAUERWERK + 0 +POLYLINE + 5 +1EAC + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +296C + 8 +MAUERWERK + 10 +11866.99975 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +296D + 8 +MAUERWERK + 10 +11873.00025 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +296E + 8 +MAUERWERK + 0 +POLYLINE + 5 +1EB0 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +296F + 8 +MAUERWERK + 10 +16726.99975 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2970 + 8 +MAUERWERK + 10 +16733.00025 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2971 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1EB4 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +5.9995 + 41 +5.9995 + 0 +VERTEX + 5 +2972 + 8 +MAUERWERK + 10 +16871.99975 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2973 + 8 +MAUERWERK + 10 +16878.00025 + 20 +4260.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2974 + 8 +MAUERWERK + 0 +CIRCLE + 5 +1EB8 + 8 +BEMASSUNG + 10 +12700.0 + 20 +4095.0 + 30 +0.0 + 40 +125.0 + 0 +POLYLINE + 5 +1EB9 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2975 + 8 +0 + 10 +12580.0 + 20 +4130.0 + 30 +0.0 + 0 +VERTEX + 5 +2976 + 8 +0 + 10 +12020.0 + 20 +4255.0 + 30 +0.0 + 0 +SEQEND + 5 +2977 + 8 +0 + 0 +CIRCLE + 5 +1EBD + 8 +BEMASSUNG + 10 +16445.0 + 20 +11735.0 + 30 +0.0 + 40 +125.0 + 0 +TEXT + 5 +1EBE + 8 +BEMASSUNG + 10 +16372.083333 + 20 +11691.25 + 30 +0.0 + 40 +87.5 + 1 +26 + 72 + 4 + 11 +16445.0 + 21 +11735.0 + 31 +0.0 + 0 +TEXT + 5 +1EBF + 8 +BEMASSUNG + 10 +16710.0 + 20 +11681.828626 + 30 +0.0 + 40 +87.5 + 1 +RINGANKER BST III + 0 +TEXT + 5 +1EC0 + 8 +BEMASSUNG + 10 +12627.083333 + 20 +4051.25 + 30 +0.0 + 40 +87.5 + 1 +26 + 72 + 4 + 11 +12700.0 + 21 +4095.0 + 31 +0.0 + 0 +POLYLINE + 5 +1EC1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2978 + 8 +HOLZ + 10 +16757.5 + 20 +5945.0 + 30 +0.0 + 0 +VERTEX + 5 +2979 + 8 +HOLZ + 10 +16757.5 + 20 +5997.106357 + 30 +0.0 + 0 +SEQEND + 5 +297A + 8 +HOLZ + 0 +POLYLINE + 5 +1EC5 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +297B + 8 +HOLZ + 10 +16757.5 + 20 +6209.35847 + 30 +0.0 + 0 +VERTEX + 5 +297C + 8 +HOLZ + 10 +16757.5 + 20 +7365.0 + 30 +0.0 + 0 +VERTEX + 5 +297D + 8 +HOLZ + 10 +16857.5 + 20 +7365.0 + 30 +0.0 + 0 +VERTEX + 5 +297E + 8 +HOLZ + 10 +16857.5 + 20 +6146.871535 + 30 +0.0 + 0 +SEQEND + 5 +297F + 8 +HOLZ + 0 +POLYLINE + 5 +1ECB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2980 + 8 +HOLZ + 10 +16840.887603 + 20 +5945.0 + 30 +0.0 + 0 +VERTEX + 5 +2981 + 8 +HOLZ + 10 +16757.5 + 20 +5945.0 + 30 +0.0 + 0 +SEQEND + 5 +2982 + 8 +HOLZ + 0 +POLYLINE + 5 +1ECF + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2983 + 8 +DRAHTANKER + 10 +16756.759748 + 20 +6197.229936 + 30 +0.0 + 0 +VERTEX + 5 +2984 + 8 +DRAHTANKER + 10 +16756.759748 + 20 +6160.664852 + 30 +0.0 + 0 +SEQEND + 5 +2985 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1ED3 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2986 + 8 +DRAHTANKER + 10 +16756.759748 + 20 +6120.775653 + 30 +0.0 + 0 +VERTEX + 5 +2987 + 8 +DRAHTANKER + 10 +16756.759748 + 20 +6084.210569 + 30 +0.0 + 0 +SEQEND + 5 +2988 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1ED7 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2989 + 8 +DRAHTANKER + 10 +16756.759748 + 20 +6038.227117 + 30 +0.0 + 0 +VERTEX + 5 +298A + 8 +DRAHTANKER + 10 +16756.759748 + 20 +6001.662033 + 30 +0.0 + 0 +SEQEND + 5 +298B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1EDB + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +298C + 8 +DRAHTANKER + 10 +16857.088667 + 20 +6146.814413 + 30 +0.0 + 0 +VERTEX + 5 +298D + 8 +DRAHTANKER + 10 +16857.088667 + 20 +6110.249329 + 30 +0.0 + 0 +SEQEND + 5 +298E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1EDF + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +298F + 8 +DRAHTANKER + 10 +16857.088667 + 20 +6070.360068 + 30 +0.0 + 0 +VERTEX + 5 +2990 + 8 +DRAHTANKER + 10 +16857.088667 + 20 +6033.794984 + 30 +0.0 + 0 +SEQEND + 5 +2991 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1EE3 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2992 + 8 +DRAHTANKER + 10 +7135.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +2993 + 8 +DRAHTANKER + 10 +7230.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +2994 + 8 +DRAHTANKER + 10 +7230.0 + 20 +4610.0 + 30 +0.0 + 0 +VERTEX + 5 +2995 + 8 +DRAHTANKER + 10 +7135.0 + 20 +4610.0 + 30 +0.0 + 0 +SEQEND + 5 +2996 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1EE9 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2997 + 8 +HOLZ + 10 +7135.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2998 + 8 +HOLZ + 10 +6032.810136 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2999 + 8 +HOLZ + 0 +POLYLINE + 5 +1EED + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +299A + 8 +HOLZ + 10 +7082.5 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +299B + 8 +HOLZ + 10 +7135.0 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +299C + 8 +HOLZ + 0 +POLYLINE + 5 +1EF1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +299D + 8 +HOLZ + 10 +7230.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +299E + 8 +HOLZ + 10 +7282.5 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +299F + 8 +HOLZ + 10 +7282.5 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +29A0 + 8 +HOLZ + 0 +POLYLINE + 5 +1EF6 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29A1 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29A2 + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29A3 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1EFA + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29A4 + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29A5 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29A6 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1EFE + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29A7 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29A8 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29A9 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F02 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29AA + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29AB + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29AC + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F06 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29AD + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29AE + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29AF + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F0A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29B0 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29B1 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29B2 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F0E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29B3 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29B4 + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29B5 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F12 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29B6 + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29B7 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29B8 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F16 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29B9 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29BA + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29BB + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F1A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29BC + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29BD + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29BE + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F1E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29BF + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29C0 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29C1 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F22 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29C2 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29C3 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29C4 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F26 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29C5 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29C6 + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29C7 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F2A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29C8 + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29C9 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29CA + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F2E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29CB + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29CC + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29CD + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F32 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29CE + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29CF + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29D0 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F36 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29D1 + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29D2 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29D3 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F3A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29D4 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29D5 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29D6 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F3E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29D7 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29D8 + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29D9 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F42 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29DA + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29DB + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29DC + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F46 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29DD + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29DE + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29DF + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F4A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29E0 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29E1 + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29E2 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F4E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29E3 + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29E4 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29E5 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F52 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29E6 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29E7 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29E8 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F56 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29E9 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29EA + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29EB + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F5A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29EC + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29ED + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29EE + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F5E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29EF + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29F0 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29F1 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F62 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29F2 + 8 +DRAHTANKER + 10 +7159.24975 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29F3 + 8 +DRAHTANKER + 10 +7160.75025 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29F4 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F66 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29F5 + 8 +DRAHTANKER + 10 +7179.24975 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29F6 + 8 +DRAHTANKER + 10 +7180.75025 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29F7 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F6A + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +29F8 + 8 +DRAHTANKER + 10 +7204.24975 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +29F9 + 8 +DRAHTANKER + 10 +7205.75025 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +29FA + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F6E + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +29FB + 8 +DRAHTANKER + 10 +13880.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +29FC + 8 +DRAHTANKER + 10 +13975.0 + 20 +4825.0 + 30 +0.0 + 0 +VERTEX + 5 +29FD + 8 +DRAHTANKER + 10 +13975.0 + 20 +4610.0 + 30 +0.0 + 0 +VERTEX + 5 +29FE + 8 +DRAHTANKER + 10 +13880.0 + 20 +4610.0 + 30 +0.0 + 0 +SEQEND + 5 +29FF + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F74 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A00 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A01 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A02 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F78 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A03 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A04 + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A05 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F7C + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A06 + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A07 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4625.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A08 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F80 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A09 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A0A + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A0B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F84 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A0C + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A0D + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A0E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F88 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A0F + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A10 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4645.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A11 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F8C + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A12 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A13 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A14 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F90 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A15 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A16 + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A17 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F94 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A18 + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A19 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4665.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A1A + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F98 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A1B + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A1C + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A1D + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1F9C + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A1E + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A1F + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A20 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FA0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A21 + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A22 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4685.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A23 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FA4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A24 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A25 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A26 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FA8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A27 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A28 + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A29 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FAC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A2A + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A2B + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4705.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A2C + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FB0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A2D + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A2E + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A2F + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FB4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A30 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A31 + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A32 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FB8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A33 + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A34 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4725.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A35 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FBC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A36 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A37 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A38 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FC0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A39 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A3A + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A3B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FC4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A3C + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A3D + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4745.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A3E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FC8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A3F + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A40 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A41 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FCC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A42 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A43 + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A44 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FD0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A45 + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A46 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4765.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A47 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FD4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A48 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A49 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A4A + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FD8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A4B + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A4C + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A4D + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FDC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A4E + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A4F + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4785.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A50 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FE0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A51 + 8 +DRAHTANKER + 10 +13949.24975 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A52 + 8 +DRAHTANKER + 10 +13950.75025 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A53 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FE4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A54 + 8 +DRAHTANKER + 10 +13924.24975 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A55 + 8 +DRAHTANKER + 10 +13925.75025 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A56 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FE8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +1.4995 + 41 +1.4995 + 0 +VERTEX + 5 +2A57 + 8 +DRAHTANKER + 10 +13904.24975 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +2A58 + 8 +DRAHTANKER + 10 +13905.75025 + 20 +4805.0 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +2A59 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1FEC + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2A5A + 8 +HOLZ + 10 +15092.292001 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2A5B + 8 +HOLZ + 10 +13975.0 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2A5C + 8 +HOLZ + 0 +POLYLINE + 5 +1FF0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2A5D + 8 +HOLZ + 10 +13880.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2A5E + 8 +HOLZ + 10 +7230.0 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2A5F + 8 +HOLZ + 0 +POLYLINE + 5 +1FF4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2A60 + 8 +HOLZ + 10 +14032.5 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2A61 + 8 +HOLZ + 10 +13975.0 + 20 +4705.0 + 30 +0.0 + 0 +SEQEND + 5 +2A62 + 8 +HOLZ + 0 +POLYLINE + 5 +1FF8 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2A63 + 8 +HOLZ + 10 +13880.0 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2A64 + 8 +HOLZ + 10 +13832.5 + 20 +4705.0 + 30 +0.0 + 0 +VERTEX + 5 +2A65 + 8 +HOLZ + 10 +13832.5 + 20 +7355.0 + 30 +0.0 + 0 +SEQEND + 5 +2A66 + 8 +HOLZ + 0 +ENDSEC + 0 +EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft3.dxf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft3.dxf new file mode 100644 index 0000000..9f2a188 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft3.dxf @@ -0,0 +1,137444 @@ + 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 +21025.0 + 20 +14850.0 + 30 +0.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +21025.0 + 20 +14850.0 + 9 +$ORTHOMODE + 70 + 1 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$DRAGMODE + 70 + 2 + 9 +$LTSCALE + 40 +175.0 + 9 +$OSMODE + 70 + 0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +175.0 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +LEGENDE-70 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +1.0 + 9 +$DIMEXO + 40 +1.0 + 9 +$DIMDLI + 40 +3.0 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +0.0 + 9 +$DIMEXE + 40 +0.5 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +87.5 + 9 +$DIMCEN + 40 +0.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 1 + 9 +$DIMSE2 + 70 + 1 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 +MASSHILFSLINIE + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 0 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 2 + 9 +$DIMALTF + 40 +25.4 + 9 +$DIMLFAC + 40 +1.0 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 1 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +STANDARD + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 2 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +0.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 0 + 9 +$MENU + 1 +acad + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$BLIPMODE + 70 + 1 + 9 +$CHAMFERA + 40 +0.0 + 9 +$CHAMFERB + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2450820.494106 + 9 +$TDUPDATE + 40 +2450820.494106 + 9 +$TDINDWG + 40 +0.0 + 9 +$TDUSRTIMER + 40 +0.0 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +0.0 + 9 +$COORDS + 70 + 2 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$ATTDIA + 70 + 0 + 9 +$ATTREQ + 70 + 1 + 9 +$HANDLING + 70 + 1 + 9 +$HANDSEED + 5 +2270 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSNAME + 2 +PAPIERURSPRUNG + 9 +$UCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 16 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+020 + 20 +1.000000E+020 + 30 +1.000000E+020 + 9 +$PEXTMAX + 10 +-1.000000E+020 + 20 +-1.000000E+020 + 30 +-1.000000E+020 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +12.0 + 20 +9.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 0 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 70 + 3 + 0 +VPORT + 2 +*ACTIVE + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +11853.224688 + 22 +7639.042096 + 13 +0.0 + 23 +0.0 + 14 +5.0 + 24 +5.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +15278.084191 + 41 +1.551664 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 1 + 75 + 1 + 76 + 0 + 77 + 0 + 78 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 70 + 25 + 0 +LTYPE + 2 +CONTINUOUS + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 2 +RAND + 70 + 0 + 3 +__ __ . __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +1.75 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +RAND2 + 70 + 0 + 3 +__.__.__.__.__.__.__.__.__.__.__.__.__.__.__.__ + 72 + 65 + 73 + 6 + 40 +0.875 + 49 +0.25 + 49 +-0.125 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +RANDX2 + 70 + 0 + 3 +____ ____ . ____ ____ . ____ ____ . __ + 72 + 65 + 73 + 6 + 40 +3.5 + 49 +1.0 + 49 +-0.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +MITTE + 70 + 0 + 3 +____ _ ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +MITTE2 + 70 + 0 + 3 +___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ + 72 + 65 + 73 + 4 + 40 +1.125 + 49 +0.75 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +MITTEX2 + 70 + 0 + 3 +________ __ ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +4.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +LTYPE + 2 +STRICHPUNKT + 70 + 0 + 3 +__ . __ . __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +1.0 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +STRICHPUNKT2 + 70 + 0 + 3 +_._._._._._._._._._._._._._._._._._._._._._._._ + 72 + 65 + 73 + 4 + 40 +0.5 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +STRICHPUNKTX2 + 70 + 0 + 3 +____ . ____ . ____ . ____ . ____ . __ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +GESTRICHELT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +GESTRICHELT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +GESTRICHELTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ + 72 + 65 + 73 + 2 + 40 +1.5 + 49 +1.0 + 49 +-0.5 + 0 +LTYPE + 2 +GETRENNT + 70 + 0 + 3 +____ . . ____ . . ____ . . ____ . . ____ . . __ + 72 + 65 + 73 + 6 + 40 +1.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +GETRENNT2 + 70 + 0 + 3 +__..__..__..__..__..__..__..__..__..__..__..__. + 72 + 65 + 73 + 6 + 40 +0.625 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +GETRENNTX2 + 70 + 0 + 3 +________ . . ________ . . ________ . . + 72 + 65 + 73 + 6 + 40 +2.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +PUNKT + 70 + 0 + 3 +. . . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +PUNKT2 + 70 + 0 + 3 +............................................... + 72 + 65 + 73 + 2 + 40 +0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +PUNKTX2 + 70 + 0 + 3 +. . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +VERDECKT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +VERDECKT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.1875 + 49 +0.125 + 49 +-0.0625 + 0 +LTYPE + 2 +VERDECKTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ ____ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM + 70 + 0 + 3 +______ __ __ ______ __ __ ______ __ __ + 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 +PHANTOM2 + 70 + 0 + 3 +___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ + 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 +PHANTOMX2 + 70 + 0 + 3 +____________ ____ ____ ____________ + 72 + 65 + 73 + 6 + 40 +5.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 + 20 + 0 +LAYER + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +MAUERWERK + 70 + 0 + 62 + 6 + 6 +CONTINUOUS + 0 +LAYER + 2 +VORSATZSCHALE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +PE-FOLIE + 70 + 0 + 62 + 1 + 6 +GESTRICHELTX2 + 0 +LAYER + 2 +FUNDAMENT + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +BEMASSUNG + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +STUERTZE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +ESTRICH + 70 + 0 + 62 + 4 + 6 +CONTINUOUS + 0 +LAYER + 2 +DECKEN + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DAEMMUNG + 70 + 0 + 62 + 4 + 6 +CONTINUOUS + 0 +LAYER + 2 +TUEREN + 70 + 0 + 62 + 3 + 6 +CONTINUOUS + 0 +LAYER + 2 +ERDBODEN + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHNITTKANTEN + 70 + 0 + 62 + 1 + 6 +GESTRICHELT + 0 +LAYER + 2 +TRENNWAND + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-70 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-35 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DETAILS + 70 + 0 + 62 + 7 + 6 +GESTRICHELTX2 + 0 +LAYER + 2 +DRAHTANKER + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR + 70 + 0 + 62 + 2 + 6 +CONTINUOUS + 0 +LAYER + 2 +DEFPOINTS + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 + 1 + 0 +STYLE + 2 +STANDARD + 70 + 0 + 40 +0.0 + 41 +0.75 + 50 +0.0 + 71 + 0 + 42 +175.0 + 3 +C:\ACADWIN\FONTS\TXT.SHX + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 + 2 + 0 +VIEW + 2 +OLE1 + 70 + 0 + 40 +2793.796699 + 10 +7175.0 + 20 +11246.898349 + 41 +4460.0 + 11 +0.0 + 21 +0.0 + 31 +1.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 71 + 0 + 0 +VIEW + 2 +OLE2 + 70 + 0 + 40 +14850.0 + 10 +11853.224688 + 20 +7425.0 + 41 +23706.449376 + 11 +0.0 + 21 +0.0 + 31 +1.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 71 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 + 2 + 0 +UCS + 2 +LOKAL + 70 + 0 + 10 +4125.0 + 20 +5250.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +UCS + 2 +PAPIERURSPRUNG + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 + 1 + 0 +APPID + 2 +ACAD + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 70 + 1 + 0 +DIMSTYLE + 2 +STANDARD + 70 + 0 + 3 + + 4 + + 5 + + 6 + + 7 + + 40 +1.0 + 41 +0.18 + 42 +0.0625 + 43 +0.38 + 44 +0.18 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 +140 +0.18 +141 +0.09 +142 +0.0 +143 +25.4 +144 +1.0 +145 +0.0 +146 +1.0 +147 +0.09 + 71 + 0 + 72 + 0 + 73 + 1 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 8 +0 + 2 +$MODEL_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$MODEL_SPACE + 1 + + 0 +ENDBLK + 5 +BB + 8 +0 + 0 +BLOCK + 67 + 1 + 8 +0 + 2 +$PAPER_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$PAPER_SPACE + 1 + + 0 +ENDBLK + 5 +B9 + 67 + 1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +RAHMEN50 + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +RAHMEN50 + 1 + + 0 +POLYLINE + 5 +BF + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1E98 + 8 +0 + 10 +1000.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1E99 + 8 +0 + 10 +41800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1E9A + 8 +0 + 10 +41800.0 + 20 +29450.0 + 30 +0.0 + 0 +VERTEX + 5 +1E9B + 8 +0 + 10 +1000.0 + 20 +29450.0 + 30 +0.0 + 0 +SEQEND + 5 +1E9C + 8 +0 + 0 +POLYLINE + 5 +C5 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1E9D + 8 +0 + 10 +32800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1E9E + 8 +0 + 10 +32800.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +1E9F + 8 +0 + 10 +41800.0 + 20 +13250.0 + 30 +0.0 + 0 +SEQEND + 5 +1EA0 + 8 +0 + 0 +POLYLINE + 5 +CA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EA1 + 8 +0 + 10 +39550.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +1EA2 + 8 +0 + 10 +39550.0 + 20 +11000.0 + 30 +0.0 + 0 +SEQEND + 5 +1EA3 + 8 +0 + 0 +POLYLINE + 5 +CE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EA4 + 8 +0 + 10 +41800.0 + 20 +12250.0 + 30 +0.0 + 0 +VERTEX + 5 +1EA5 + 8 +0 + 10 +37300.0 + 20 +12250.0 + 30 +0.0 + 0 +SEQEND + 5 +1EA6 + 8 +0 + 0 +POLYLINE + 5 +D2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EA7 + 8 +0 + 10 +41800.0 + 20 +11625.0 + 30 +0.0 + 0 +VERTEX + 5 +1EA8 + 8 +0 + 10 +37300.0 + 20 +11625.0 + 30 +0.0 + 0 +SEQEND + 5 +1EA9 + 8 +0 + 0 +POLYLINE + 5 +D6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EAA + 8 +0 + 10 +32800.0 + 20 +11000.0 + 30 +0.0 + 0 +VERTEX + 5 +1EAB + 8 +0 + 10 +41800.0 + 20 +11000.0 + 30 +0.0 + 0 +SEQEND + 5 +1EAC + 8 +0 + 0 +POLYLINE + 5 +DA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EAD + 8 +0 + 10 +37300.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +1EAE + 8 +0 + 10 +37300.0 + 20 +6500.0 + 30 +0.0 + 0 +SEQEND + 5 +1EAF + 8 +0 + 0 +POLYLINE + 5 +DE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EB0 + 8 +0 + 10 +32800.0 + 20 +8750.0 + 30 +0.0 + 0 +VERTEX + 5 +1EB1 + 8 +0 + 10 +37300.0 + 20 +8750.0 + 30 +0.0 + 0 +SEQEND + 5 +1EB2 + 8 +0 + 0 +POLYLINE + 5 +E2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EB3 + 8 +0 + 10 +32800.0 + 20 +6500.0 + 30 +0.0 + 0 +VERTEX + 5 +1EB4 + 8 +0 + 10 +41800.0 + 20 +6500.0 + 30 +0.0 + 0 +SEQEND + 5 +1EB5 + 8 +0 + 0 +POLYLINE + 5 +E6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EB6 + 8 +0 + 10 +41800.0 + 20 +2000.0 + 30 +0.0 + 0 +VERTEX + 5 +1EB7 + 8 +0 + 10 +32800.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +1EB8 + 8 +0 + 0 +POLYLINE + 5 +EA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EB9 + 8 +0 + 10 +41800.0 + 20 +950.0 + 30 +0.0 + 0 +VERTEX + 5 +1EBA + 8 +0 + 10 +32800.0 + 20 +950.0 + 30 +0.0 + 0 +SEQEND + 5 +1EBB + 8 +0 + 0 +POLYLINE + 5 +EE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EBC + 8 +0 + 10 +41800.0 + 20 +1300.0 + 30 +0.0 + 0 +VERTEX + 5 +1EBD + 8 +0 + 10 +32800.0 + 20 +1300.0 + 30 +0.0 + 0 +SEQEND + 5 +1EBE + 8 +0 + 0 +POLYLINE + 5 +F2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EBF + 8 +0 + 10 +41800.0 + 20 +1650.0 + 30 +0.0 + 0 +VERTEX + 5 +1EC0 + 8 +0 + 10 +32800.0 + 20 +1650.0 + 30 +0.0 + 0 +SEQEND + 5 +1EC1 + 8 +0 + 0 +POLYLINE + 5 +F6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EC2 + 8 +0 + 10 +41800.0 + 20 +600.0 + 30 +0.0 + 0 +VERTEX + 5 +1EC3 + 8 +0 + 10 +32800.0 + 20 +600.0 + 30 +0.0 + 0 +SEQEND + 5 +1EC4 + 8 +0 + 0 +POLYLINE + 5 +FA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EC5 + 8 +0 + 10 +35100.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1EC6 + 8 +0 + 10 +35100.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +1EC7 + 8 +0 + 0 +POLYLINE + 5 +FE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1EC8 + 8 +0 + 10 +33950.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1EC9 + 8 +0 + 10 +33950.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +1ECA + 8 +0 + 0 +POLYLINE + 5 +102 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1ECB + 8 +0 + 10 +40650.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1ECC + 8 +0 + 10 +40650.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +1ECD + 8 +0 + 0 +ENDBLK + 5 +106 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +STURZ + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +STURZ + 1 + + 0 +POLYLINE + 5 +108 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1ECE + 8 +MAUERWERK + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1ECF + 8 +MAUERWERK + 10 +0.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +1ED0 + 8 +MAUERWERK + 10 +365.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +1ED1 + 8 +MAUERWERK + 10 +365.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +1ED2 + 8 +MAUERWERK + 0 +POLYLINE + 5 +10E + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1ED3 + 8 +MAUERWERK + 10 +40.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +1ED4 + 8 +MAUERWERK + 10 +40.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +1ED5 + 8 +MAUERWERK + 10 +80.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +1ED6 + 8 +MAUERWERK + 10 +80.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +1ED7 + 8 +MAUERWERK + 0 +POLYLINE + 5 +114 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1ED8 + 8 +MAUERWERK + 10 +160.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +1ED9 + 8 +MAUERWERK + 10 +160.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +1EDA + 8 +MAUERWERK + 10 +200.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +1EDB + 8 +MAUERWERK + 10 +200.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +1EDC + 8 +MAUERWERK + 0 +POLYLINE + 5 +11A + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1EDD + 8 +MAUERWERK + 10 +285.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +1EDE + 8 +MAUERWERK + 10 +285.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +1EDF + 8 +MAUERWERK + 10 +325.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +1EE0 + 8 +MAUERWERK + 10 +325.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +1EE1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +120 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1EE2 + 8 +MAUERWERK + 10 +121.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +1EE3 + 8 +MAUERWERK + 10 +121.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +1EE4 + 8 +MAUERWERK + 0 +POLYLINE + 5 +124 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1EE5 + 8 +MAUERWERK + 10 +243.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +1EE6 + 8 +MAUERWERK + 10 +243.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +1EE7 + 8 +MAUERWERK + 0 +ENDBLK + 5 +128 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +MASSHILFSLINIE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +MASSHILFSLINIE + 1 + + 0 +POLYLINE + 5 +12A + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EE8 + 8 +0 + 10 +75.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EE9 + 8 +0 + 10 +-75.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +1EEA + 8 +0 + 0 +POLYLINE + 5 +12E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EEB + 8 +0 + 10 +0.0 + 20 +-175.0 + 30 +0.0 + 0 +VERTEX + 5 +1EEC + 8 +0 + 10 +0.0 + 20 +175.0 + 30 +0.0 + 0 +SEQEND + 5 +1EED + 8 +0 + 0 +POLYLINE + 5 +132 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EEE + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EEF + 8 +0 + 10 +26.516504 + 20 +26.516504 + 30 +0.0 + 0 +SEQEND + 5 +1EF0 + 8 +0 + 0 +POLYLINE + 5 +136 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EF1 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1EF2 + 8 +0 + 10 +-26.516504 + 20 +-26.516504 + 30 +0.0 + 0 +SEQEND + 5 +1EF3 + 8 +0 + 0 +ENDBLK + 5 +13A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X3 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X3 + 1 + + 0 +LINE + 5 +13C + 8 +0 + 62 + 0 + 10 +7394.110755 + 20 +10965.0 + 30 +0.0 + 11 +7406.943533 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +13D + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +10995.510447 + 30 +0.0 + 11 +7442.298872 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +13E + 8 +0 + 62 + 0 + 10 +7459.976542 + 20 +11030.865787 + 30 +0.0 + 11 +7477.654211 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +13F + 8 +0 + 62 + 0 + 10 +7358.755416 + 20 +10965.0 + 30 +0.0 + 11 +7371.588194 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +140 + 8 +0 + 62 + 0 + 10 +7389.265863 + 20 +10995.510447 + 30 +0.0 + 11 +7406.943533 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +141 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +11030.865787 + 30 +0.0 + 11 +7442.298872 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +142 + 8 +0 + 62 + 0 + 10 +7323.400077 + 20 +10965.0 + 30 +0.0 + 11 +7336.232855 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +143 + 8 +0 + 62 + 0 + 10 +7353.910524 + 20 +10995.510447 + 30 +0.0 + 11 +7371.588194 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +144 + 8 +0 + 62 + 0 + 10 +7389.265863 + 20 +11030.865787 + 30 +0.0 + 11 +7406.943533 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +145 + 8 +0 + 62 + 0 + 10 +7288.044738 + 20 +10965.0 + 30 +0.0 + 11 +7300.877516 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +146 + 8 +0 + 62 + 0 + 10 +7318.555185 + 20 +10995.510447 + 30 +0.0 + 11 +7336.232855 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +147 + 8 +0 + 62 + 0 + 10 +7353.910524 + 20 +11030.865787 + 30 +0.0 + 11 +7371.588194 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +148 + 8 +0 + 62 + 0 + 10 +7252.689399 + 20 +10965.0 + 30 +0.0 + 11 +7265.522177 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +149 + 8 +0 + 62 + 0 + 10 +7283.199846 + 20 +10995.510447 + 30 +0.0 + 11 +7300.877516 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +14A + 8 +0 + 62 + 0 + 10 +7318.555185 + 20 +11030.865787 + 30 +0.0 + 11 +7336.232855 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +14B + 8 +0 + 62 + 0 + 10 +7217.33406 + 20 +10965.0 + 30 +0.0 + 11 +7230.166838 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +14C + 8 +0 + 62 + 0 + 10 +7247.844507 + 20 +10995.510447 + 30 +0.0 + 11 +7265.522177 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +14D + 8 +0 + 62 + 0 + 10 +7283.199846 + 20 +11030.865787 + 30 +0.0 + 11 +7300.877516 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +14E + 8 +0 + 62 + 0 + 10 +7181.978721 + 20 +10965.0 + 30 +0.0 + 11 +7194.811499 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +14F + 8 +0 + 62 + 0 + 10 +7212.489168 + 20 +10995.510447 + 30 +0.0 + 11 +7230.166838 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +150 + 8 +0 + 62 + 0 + 10 +7247.844507 + 20 +11030.865787 + 30 +0.0 + 11 +7265.522177 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +151 + 8 +0 + 62 + 0 + 10 +7146.623382 + 20 +10965.0 + 30 +0.0 + 11 +7159.45616 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +152 + 8 +0 + 62 + 0 + 10 +7177.133829 + 20 +10995.510447 + 30 +0.0 + 11 +7194.811499 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +153 + 8 +0 + 62 + 0 + 10 +7212.489168 + 20 +11030.865787 + 30 +0.0 + 11 +7230.166838 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +154 + 8 +0 + 62 + 0 + 10 +7111.268043 + 20 +10965.0 + 30 +0.0 + 11 +7124.10082 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +155 + 8 +0 + 62 + 0 + 10 +7141.77849 + 20 +10995.510447 + 30 +0.0 + 11 +7159.45616 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +156 + 8 +0 + 62 + 0 + 10 +7177.133829 + 20 +11030.865787 + 30 +0.0 + 11 +7194.811499 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +157 + 8 +0 + 62 + 0 + 10 +7075.912703 + 20 +10965.0 + 30 +0.0 + 11 +7088.745481 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +158 + 8 +0 + 62 + 0 + 10 +7106.423151 + 20 +10995.510447 + 30 +0.0 + 11 +7124.10082 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +159 + 8 +0 + 62 + 0 + 10 +7141.77849 + 20 +11030.865787 + 30 +0.0 + 11 +7159.45616 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +15A + 8 +0 + 62 + 0 + 10 +7040.557364 + 20 +10965.0 + 30 +0.0 + 11 +7053.390142 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +15B + 8 +0 + 62 + 0 + 10 +7071.067812 + 20 +10995.510447 + 30 +0.0 + 11 +7088.745481 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +15C + 8 +0 + 62 + 0 + 10 +7106.423151 + 20 +11030.865787 + 30 +0.0 + 11 +7124.10082 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +15D + 8 +0 + 62 + 0 + 10 +7005.202025 + 20 +10965.0 + 30 +0.0 + 11 +7018.034803 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +15E + 8 +0 + 62 + 0 + 10 +7035.712473 + 20 +10995.510447 + 30 +0.0 + 11 +7053.390142 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +15F + 8 +0 + 62 + 0 + 10 +7071.067812 + 20 +11030.865787 + 30 +0.0 + 11 +7088.745481 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +160 + 8 +0 + 62 + 0 + 10 +6969.846686 + 20 +10965.0 + 30 +0.0 + 11 +6982.679464 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +161 + 8 +0 + 62 + 0 + 10 +7000.357134 + 20 +10995.510447 + 30 +0.0 + 11 +7018.034803 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +162 + 8 +0 + 62 + 0 + 10 +7035.712473 + 20 +11030.865787 + 30 +0.0 + 11 +7053.390142 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +163 + 8 +0 + 62 + 0 + 10 +6934.491347 + 20 +10965.0 + 30 +0.0 + 11 +6947.324125 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +164 + 8 +0 + 62 + 0 + 10 +6965.001795 + 20 +10995.510447 + 30 +0.0 + 11 +6982.679464 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +165 + 8 +0 + 62 + 0 + 10 +7000.357134 + 20 +11030.865787 + 30 +0.0 + 11 +7018.034803 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +166 + 8 +0 + 62 + 0 + 10 +6899.136008 + 20 +10965.0 + 30 +0.0 + 11 +6911.968786 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +167 + 8 +0 + 62 + 0 + 10 +6929.646456 + 20 +10995.510447 + 30 +0.0 + 11 +6947.324125 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +168 + 8 +0 + 62 + 0 + 10 +6965.001795 + 20 +11030.865787 + 30 +0.0 + 11 +6982.679464 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +169 + 8 +0 + 62 + 0 + 10 +6863.780669 + 20 +10965.0 + 30 +0.0 + 11 +6876.613447 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +16A + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +10995.510447 + 30 +0.0 + 11 +6911.968786 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +16B + 8 +0 + 62 + 0 + 10 +6929.646456 + 20 +11030.865787 + 30 +0.0 + 11 +6947.324125 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +16C + 8 +0 + 62 + 0 + 10 +6828.42533 + 20 +10965.0 + 30 +0.0 + 11 +6841.258108 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +16D + 8 +0 + 62 + 0 + 10 +6858.935778 + 20 +10995.510447 + 30 +0.0 + 11 +6876.613447 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +16E + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +11030.865787 + 30 +0.0 + 11 +6911.968786 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +16F + 8 +0 + 62 + 0 + 10 +6793.069991 + 20 +10965.0 + 30 +0.0 + 11 +6805.902769 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +170 + 8 +0 + 62 + 0 + 10 +6823.580438 + 20 +10995.510447 + 30 +0.0 + 11 +6841.258108 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +171 + 8 +0 + 62 + 0 + 10 +6858.935778 + 20 +11030.865787 + 30 +0.0 + 11 +6876.613447 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +172 + 8 +0 + 62 + 0 + 10 +6757.714652 + 20 +10965.0 + 30 +0.0 + 11 +6770.54743 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +173 + 8 +0 + 62 + 0 + 10 +6788.225099 + 20 +10995.510447 + 30 +0.0 + 11 +6805.902769 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +174 + 8 +0 + 62 + 0 + 10 +6823.580438 + 20 +11030.865787 + 30 +0.0 + 11 +6841.258108 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +175 + 8 +0 + 62 + 0 + 10 +6722.359313 + 20 +10965.0 + 30 +0.0 + 11 +6735.192091 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +176 + 8 +0 + 62 + 0 + 10 +6752.86976 + 20 +10995.510447 + 30 +0.0 + 11 +6770.54743 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +177 + 8 +0 + 62 + 0 + 10 +6788.225099 + 20 +11030.865787 + 30 +0.0 + 11 +6805.902769 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +178 + 8 +0 + 62 + 0 + 10 +6717.514421 + 20 +10995.510447 + 30 +0.0 + 11 +6735.192091 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +179 + 8 +0 + 62 + 0 + 10 +6752.86976 + 20 +11030.865787 + 30 +0.0 + 11 +6770.54743 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +17A + 8 +0 + 62 + 0 + 10 +6717.514421 + 20 +11030.865787 + 30 +0.0 + 11 +6735.192091 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +17B + 8 +0 + 62 + 0 + 10 +7429.466094 + 20 +10965.0 + 30 +0.0 + 11 +7442.298872 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +17C + 8 +0 + 62 + 0 + 10 +7459.976542 + 20 +10995.510447 + 30 +0.0 + 11 +7477.654211 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +17D + 8 +0 + 62 + 0 + 10 +7495.331881 + 20 +11030.865787 + 30 +0.0 + 11 +7513.00955 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +17E + 8 +0 + 62 + 0 + 10 +7464.821433 + 20 +10965.0 + 30 +0.0 + 11 +7477.654211 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +17F + 8 +0 + 62 + 0 + 10 +7495.331881 + 20 +10995.510447 + 30 +0.0 + 11 +7513.00955 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +180 + 8 +0 + 62 + 0 + 10 +7530.68722 + 20 +11030.865787 + 30 +0.0 + 11 +7548.364889 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +181 + 8 +0 + 62 + 0 + 10 +7500.176772 + 20 +10965.0 + 30 +0.0 + 11 +7513.00955 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +182 + 8 +0 + 62 + 0 + 10 +7530.68722 + 20 +10995.510447 + 30 +0.0 + 11 +7548.364889 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +183 + 8 +0 + 62 + 0 + 10 +7566.042559 + 20 +11030.865787 + 30 +0.0 + 11 +7583.720228 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +184 + 8 +0 + 62 + 0 + 10 +7535.532111 + 20 +10965.0 + 30 +0.0 + 11 +7548.364889 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +185 + 8 +0 + 62 + 0 + 10 +7566.042559 + 20 +10995.510447 + 30 +0.0 + 11 +7583.720228 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +186 + 8 +0 + 62 + 0 + 10 +7601.397898 + 20 +11030.865787 + 30 +0.0 + 11 +7619.075567 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +187 + 8 +0 + 62 + 0 + 10 +7570.88745 + 20 +10965.0 + 30 +0.0 + 11 +7583.720228 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +188 + 8 +0 + 62 + 0 + 10 +7601.397898 + 20 +10995.510447 + 30 +0.0 + 11 +7619.075567 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +189 + 8 +0 + 62 + 0 + 10 +7636.753237 + 20 +11030.865787 + 30 +0.0 + 11 +7654.430906 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +18A + 8 +0 + 62 + 0 + 10 +7606.242789 + 20 +10965.0 + 30 +0.0 + 11 +7619.075567 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +18B + 8 +0 + 62 + 0 + 10 +7636.753237 + 20 +10995.510447 + 30 +0.0 + 11 +7654.430906 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +18C + 8 +0 + 62 + 0 + 10 +7672.108576 + 20 +11030.865787 + 30 +0.0 + 11 +7689.786245 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +18D + 8 +0 + 62 + 0 + 10 +7641.598128 + 20 +10965.0 + 30 +0.0 + 11 +7654.430906 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +18E + 8 +0 + 62 + 0 + 10 +7672.108576 + 20 +10995.510447 + 30 +0.0 + 11 +7689.786245 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +18F + 8 +0 + 62 + 0 + 10 +7707.463915 + 20 +11030.865787 + 30 +0.0 + 11 +7725.141584 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +190 + 8 +0 + 62 + 0 + 10 +7676.953467 + 20 +10965.0 + 30 +0.0 + 11 +7689.786245 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +191 + 8 +0 + 62 + 0 + 10 +7707.463915 + 20 +10995.510447 + 30 +0.0 + 11 +7725.141584 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +192 + 8 +0 + 62 + 0 + 10 +7742.819254 + 20 +11030.865787 + 30 +0.0 + 11 +7760.496924 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +193 + 8 +0 + 62 + 0 + 10 +7712.308807 + 20 +10965.0 + 30 +0.0 + 11 +7725.141584 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +194 + 8 +0 + 62 + 0 + 10 +7742.819254 + 20 +10995.510447 + 30 +0.0 + 11 +7760.496924 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +195 + 8 +0 + 62 + 0 + 10 +7778.174593 + 20 +11030.865787 + 30 +0.0 + 11 +7795.852263 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +196 + 8 +0 + 62 + 0 + 10 +7747.664146 + 20 +10965.0 + 30 +0.0 + 11 +7760.496924 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +197 + 8 +0 + 62 + 0 + 10 +7778.174593 + 20 +10995.510447 + 30 +0.0 + 11 +7795.852263 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +198 + 8 +0 + 62 + 0 + 10 +7813.529932 + 20 +11030.865787 + 30 +0.0 + 11 +7831.207602 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +199 + 8 +0 + 62 + 0 + 10 +7783.019485 + 20 +10965.0 + 30 +0.0 + 11 +7795.852263 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +19A + 8 +0 + 62 + 0 + 10 +7813.529932 + 20 +10995.510447 + 30 +0.0 + 11 +7831.207602 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +19B + 8 +0 + 62 + 0 + 10 +7848.885271 + 20 +11030.865787 + 30 +0.0 + 11 +7866.562941 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +19C + 8 +0 + 62 + 0 + 10 +7818.374824 + 20 +10965.0 + 30 +0.0 + 11 +7831.207602 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +19D + 8 +0 + 62 + 0 + 10 +7848.885271 + 20 +10995.510447 + 30 +0.0 + 11 +7866.562941 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +19E + 8 +0 + 62 + 0 + 10 +7884.24061 + 20 +11030.865787 + 30 +0.0 + 11 +7901.91828 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +19F + 8 +0 + 62 + 0 + 10 +7853.730163 + 20 +10965.0 + 30 +0.0 + 11 +7866.562941 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1A0 + 8 +0 + 62 + 0 + 10 +7884.24061 + 20 +10995.510447 + 30 +0.0 + 11 +7901.91828 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1A1 + 8 +0 + 62 + 0 + 10 +7919.595949 + 20 +11030.865787 + 30 +0.0 + 11 +7937.273619 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1A2 + 8 +0 + 62 + 0 + 10 +7889.085502 + 20 +10965.0 + 30 +0.0 + 11 +7901.91828 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1A3 + 8 +0 + 62 + 0 + 10 +7919.595949 + 20 +10995.510447 + 30 +0.0 + 11 +7937.273619 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1A4 + 8 +0 + 62 + 0 + 10 +7954.951288 + 20 +11030.865787 + 30 +0.0 + 11 +7972.628958 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1A5 + 8 +0 + 62 + 0 + 10 +7924.440841 + 20 +10965.0 + 30 +0.0 + 11 +7937.273619 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1A6 + 8 +0 + 62 + 0 + 10 +7954.951288 + 20 +10995.510447 + 30 +0.0 + 11 +7972.628958 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1A7 + 8 +0 + 62 + 0 + 10 +7990.306627 + 20 +11030.865787 + 30 +0.0 + 11 +8007.984297 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1A8 + 8 +0 + 62 + 0 + 10 +7959.79618 + 20 +10965.0 + 30 +0.0 + 11 +7972.628958 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1A9 + 8 +0 + 62 + 0 + 10 +7990.306627 + 20 +10995.510447 + 30 +0.0 + 11 +8007.984297 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1AA + 8 +0 + 62 + 0 + 10 +8025.661966 + 20 +11030.865787 + 30 +0.0 + 11 +8043.339636 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1AB + 8 +0 + 62 + 0 + 10 +7995.151519 + 20 +10965.0 + 30 +0.0 + 11 +8007.984297 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1AC + 8 +0 + 62 + 0 + 10 +8025.661966 + 20 +10995.510447 + 30 +0.0 + 11 +8043.339636 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1AD + 8 +0 + 62 + 0 + 10 +8061.017306 + 20 +11030.865787 + 30 +0.0 + 11 +8078.694975 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1AE + 8 +0 + 62 + 0 + 10 +8030.506858 + 20 +10965.0 + 30 +0.0 + 11 +8043.339636 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1AF + 8 +0 + 62 + 0 + 10 +8061.017306 + 20 +10995.510447 + 30 +0.0 + 11 +8078.694975 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1B0 + 8 +0 + 62 + 0 + 10 +8096.372645 + 20 +11030.865787 + 30 +0.0 + 11 +8114.050314 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1B1 + 8 +0 + 62 + 0 + 10 +8065.862197 + 20 +10965.0 + 30 +0.0 + 11 +8078.694975 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1B2 + 8 +0 + 62 + 0 + 10 +8096.372645 + 20 +10995.510447 + 30 +0.0 + 11 +8114.050314 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1B3 + 8 +0 + 62 + 0 + 10 +8131.727984 + 20 +11030.865787 + 30 +0.0 + 11 +8149.405653 + 21 +11048.543456 + 31 +0.0 + 0 +LINE + 5 +1B4 + 8 +0 + 62 + 0 + 10 +8101.217536 + 20 +10965.0 + 30 +0.0 + 11 +8114.050314 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1B5 + 8 +0 + 62 + 0 + 10 +8131.727984 + 20 +10995.510447 + 30 +0.0 + 11 +8149.405653 + 21 +11013.188117 + 31 +0.0 + 0 +LINE + 5 +1B6 + 8 +0 + 62 + 0 + 10 +8167.083323 + 20 +11030.865787 + 30 +0.0 + 11 +8175.0 + 21 +11038.782464 + 31 +0.0 + 0 +LINE + 5 +1B7 + 8 +0 + 62 + 0 + 10 +8136.572875 + 20 +10965.0 + 30 +0.0 + 11 +8149.405653 + 21 +10977.832778 + 31 +0.0 + 0 +LINE + 5 +1B8 + 8 +0 + 62 + 0 + 10 +8167.083323 + 20 +10995.510447 + 30 +0.0 + 11 +8175.0 + 21 +11003.427125 + 31 +0.0 + 0 +LINE + 5 +1B9 + 8 +0 + 62 + 0 + 10 +8171.928214 + 20 +10965.0 + 30 +0.0 + 11 +8175.0 + 21 +10968.071786 + 31 +0.0 + 0 +ENDBLK + 5 +1BA + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X4 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X4 + 1 + + 0 +LINE + 5 +1BC + 8 +0 + 62 + 0 + 10 +6750.0 + 20 +10868.61877 + 30 +0.0 + 11 +6775.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1BD + 8 +0 + 62 + 0 + 10 +6825.0 + 20 +10868.61877 + 30 +0.0 + 11 +6850.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1BE + 8 +0 + 62 + 0 + 10 +6900.0 + 20 +10868.61877 + 30 +0.0 + 11 +6925.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1BF + 8 +0 + 62 + 0 + 10 +6975.0 + 20 +10868.61877 + 30 +0.0 + 11 +7000.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C0 + 8 +0 + 62 + 0 + 10 +7050.0 + 20 +10868.61877 + 30 +0.0 + 11 +7075.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C1 + 8 +0 + 62 + 0 + 10 +7125.0 + 20 +10868.61877 + 30 +0.0 + 11 +7150.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C2 + 8 +0 + 62 + 0 + 10 +7200.0 + 20 +10868.61877 + 30 +0.0 + 11 +7225.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C3 + 8 +0 + 62 + 0 + 10 +7275.0 + 20 +10868.61877 + 30 +0.0 + 11 +7300.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C4 + 8 +0 + 62 + 0 + 10 +7350.0 + 20 +10868.61877 + 30 +0.0 + 11 +7375.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C5 + 8 +0 + 62 + 0 + 10 +7425.0 + 20 +10868.61877 + 30 +0.0 + 11 +7450.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C6 + 8 +0 + 62 + 0 + 10 +7500.0 + 20 +10868.61877 + 30 +0.0 + 11 +7525.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C7 + 8 +0 + 62 + 0 + 10 +7575.0 + 20 +10868.61877 + 30 +0.0 + 11 +7600.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C8 + 8 +0 + 62 + 0 + 10 +7650.0 + 20 +10868.61877 + 30 +0.0 + 11 +7675.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1C9 + 8 +0 + 62 + 0 + 10 +7725.0 + 20 +10868.61877 + 30 +0.0 + 11 +7750.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1CA + 8 +0 + 62 + 0 + 10 +7800.0 + 20 +10868.61877 + 30 +0.0 + 11 +7825.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1CB + 8 +0 + 62 + 0 + 10 +7875.0 + 20 +10868.61877 + 30 +0.0 + 11 +7900.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1CC + 8 +0 + 62 + 0 + 10 +7950.0 + 20 +10868.61877 + 30 +0.0 + 11 +7975.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1CD + 8 +0 + 62 + 0 + 10 +8025.0 + 20 +10868.61877 + 30 +0.0 + 11 +8050.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1CE + 8 +0 + 62 + 0 + 10 +8100.0 + 20 +10868.61877 + 30 +0.0 + 11 +8125.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +1CF + 8 +0 + 62 + 0 + 10 +6712.5 + 20 +10890.269405 + 30 +0.0 + 11 +6737.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D0 + 8 +0 + 62 + 0 + 10 +6787.5 + 20 +10890.269405 + 30 +0.0 + 11 +6812.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D1 + 8 +0 + 62 + 0 + 10 +6862.5 + 20 +10890.269405 + 30 +0.0 + 11 +6887.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D2 + 8 +0 + 62 + 0 + 10 +6937.5 + 20 +10890.269405 + 30 +0.0 + 11 +6962.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D3 + 8 +0 + 62 + 0 + 10 +7012.5 + 20 +10890.269405 + 30 +0.0 + 11 +7037.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D4 + 8 +0 + 62 + 0 + 10 +7087.5 + 20 +10890.269405 + 30 +0.0 + 11 +7112.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D5 + 8 +0 + 62 + 0 + 10 +7162.5 + 20 +10890.269405 + 30 +0.0 + 11 +7187.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D6 + 8 +0 + 62 + 0 + 10 +7237.5 + 20 +10890.269405 + 30 +0.0 + 11 +7262.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D7 + 8 +0 + 62 + 0 + 10 +7312.5 + 20 +10890.269405 + 30 +0.0 + 11 +7337.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D8 + 8 +0 + 62 + 0 + 10 +7387.5 + 20 +10890.269405 + 30 +0.0 + 11 +7412.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1D9 + 8 +0 + 62 + 0 + 10 +7462.5 + 20 +10890.269405 + 30 +0.0 + 11 +7487.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1DA + 8 +0 + 62 + 0 + 10 +7537.5 + 20 +10890.269405 + 30 +0.0 + 11 +7562.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1DB + 8 +0 + 62 + 0 + 10 +7612.5 + 20 +10890.269405 + 30 +0.0 + 11 +7637.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1DC + 8 +0 + 62 + 0 + 10 +7687.5 + 20 +10890.269405 + 30 +0.0 + 11 +7712.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1DD + 8 +0 + 62 + 0 + 10 +7762.5 + 20 +10890.269405 + 30 +0.0 + 11 +7787.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1DE + 8 +0 + 62 + 0 + 10 +7837.5 + 20 +10890.269405 + 30 +0.0 + 11 +7862.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1DF + 8 +0 + 62 + 0 + 10 +7912.5 + 20 +10890.269405 + 30 +0.0 + 11 +7937.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1E0 + 8 +0 + 62 + 0 + 10 +7987.5 + 20 +10890.269405 + 30 +0.0 + 11 +8012.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1E1 + 8 +0 + 62 + 0 + 10 +8062.5 + 20 +10890.269405 + 30 +0.0 + 11 +8087.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1E2 + 8 +0 + 62 + 0 + 10 +8137.5 + 20 +10890.269405 + 30 +0.0 + 11 +8162.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +1E3 + 8 +0 + 62 + 0 + 10 +6750.0 + 20 +10911.92004 + 30 +0.0 + 11 +6775.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1E4 + 8 +0 + 62 + 0 + 10 +6825.0 + 20 +10911.92004 + 30 +0.0 + 11 +6850.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1E5 + 8 +0 + 62 + 0 + 10 +6900.0 + 20 +10911.92004 + 30 +0.0 + 11 +6925.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1E6 + 8 +0 + 62 + 0 + 10 +6975.0 + 20 +10911.92004 + 30 +0.0 + 11 +7000.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1E7 + 8 +0 + 62 + 0 + 10 +7050.0 + 20 +10911.92004 + 30 +0.0 + 11 +7075.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1E8 + 8 +0 + 62 + 0 + 10 +7125.0 + 20 +10911.92004 + 30 +0.0 + 11 +7150.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1E9 + 8 +0 + 62 + 0 + 10 +7200.0 + 20 +10911.92004 + 30 +0.0 + 11 +7225.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1EA + 8 +0 + 62 + 0 + 10 +7275.0 + 20 +10911.92004 + 30 +0.0 + 11 +7300.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1EB + 8 +0 + 62 + 0 + 10 +7350.0 + 20 +10911.92004 + 30 +0.0 + 11 +7375.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1EC + 8 +0 + 62 + 0 + 10 +7425.0 + 20 +10911.92004 + 30 +0.0 + 11 +7450.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1ED + 8 +0 + 62 + 0 + 10 +7500.0 + 20 +10911.92004 + 30 +0.0 + 11 +7525.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1EE + 8 +0 + 62 + 0 + 10 +7575.0 + 20 +10911.92004 + 30 +0.0 + 11 +7600.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1EF + 8 +0 + 62 + 0 + 10 +7650.0 + 20 +10911.92004 + 30 +0.0 + 11 +7675.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F0 + 8 +0 + 62 + 0 + 10 +7725.0 + 20 +10911.92004 + 30 +0.0 + 11 +7750.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F1 + 8 +0 + 62 + 0 + 10 +7800.0 + 20 +10911.92004 + 30 +0.0 + 11 +7825.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F2 + 8 +0 + 62 + 0 + 10 +7875.0 + 20 +10911.92004 + 30 +0.0 + 11 +7900.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F3 + 8 +0 + 62 + 0 + 10 +7950.0 + 20 +10911.92004 + 30 +0.0 + 11 +7975.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F4 + 8 +0 + 62 + 0 + 10 +8025.0 + 20 +10911.92004 + 30 +0.0 + 11 +8050.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F5 + 8 +0 + 62 + 0 + 10 +8100.0 + 20 +10911.92004 + 30 +0.0 + 11 +8125.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +1F6 + 8 +0 + 62 + 0 + 10 +6712.5 + 20 +10846.968135 + 30 +0.0 + 11 +6737.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1F7 + 8 +0 + 62 + 0 + 10 +6787.5 + 20 +10846.968135 + 30 +0.0 + 11 +6812.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1F8 + 8 +0 + 62 + 0 + 10 +6862.5 + 20 +10846.968135 + 30 +0.0 + 11 +6887.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1F9 + 8 +0 + 62 + 0 + 10 +6937.5 + 20 +10846.968135 + 30 +0.0 + 11 +6962.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1FA + 8 +0 + 62 + 0 + 10 +7012.5 + 20 +10846.968135 + 30 +0.0 + 11 +7037.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1FB + 8 +0 + 62 + 0 + 10 +7087.5 + 20 +10846.968135 + 30 +0.0 + 11 +7112.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1FC + 8 +0 + 62 + 0 + 10 +7162.5 + 20 +10846.968135 + 30 +0.0 + 11 +7187.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1FD + 8 +0 + 62 + 0 + 10 +7237.5 + 20 +10846.968135 + 30 +0.0 + 11 +7262.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1FE + 8 +0 + 62 + 0 + 10 +7312.5 + 20 +10846.968135 + 30 +0.0 + 11 +7337.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +1FF + 8 +0 + 62 + 0 + 10 +7387.5 + 20 +10846.968135 + 30 +0.0 + 11 +7412.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +200 + 8 +0 + 62 + 0 + 10 +7462.5 + 20 +10846.968135 + 30 +0.0 + 11 +7487.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +201 + 8 +0 + 62 + 0 + 10 +7537.5 + 20 +10846.968135 + 30 +0.0 + 11 +7562.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +202 + 8 +0 + 62 + 0 + 10 +7612.5 + 20 +10846.968135 + 30 +0.0 + 11 +7637.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +203 + 8 +0 + 62 + 0 + 10 +7687.5 + 20 +10846.968135 + 30 +0.0 + 11 +7712.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +204 + 8 +0 + 62 + 0 + 10 +7762.5 + 20 +10846.968135 + 30 +0.0 + 11 +7787.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +205 + 8 +0 + 62 + 0 + 10 +7837.5 + 20 +10846.968135 + 30 +0.0 + 11 +7862.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +206 + 8 +0 + 62 + 0 + 10 +7912.5 + 20 +10846.968135 + 30 +0.0 + 11 +7937.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +207 + 8 +0 + 62 + 0 + 10 +7987.5 + 20 +10846.968135 + 30 +0.0 + 11 +8012.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +208 + 8 +0 + 62 + 0 + 10 +8062.5 + 20 +10846.968135 + 30 +0.0 + 11 +8087.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +209 + 8 +0 + 62 + 0 + 10 +8137.5 + 20 +10846.968135 + 30 +0.0 + 11 +8162.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +20A + 8 +0 + 62 + 0 + 10 +7424.999955 + 20 +10868.618792 + 30 +0.0 + 11 +7412.499955 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +20B + 8 +0 + 62 + 0 + 10 +7423.739901 + 20 +10827.5 + 30 +0.0 + 11 +7412.499955 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +20C + 8 +0 + 62 + 0 + 10 +7387.499955 + 20 +10890.269427 + 30 +0.0 + 11 +7374.999955 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +20D + 8 +0 + 62 + 0 + 10 +7387.499955 + 20 +10846.968157 + 30 +0.0 + 11 +7374.999955 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +20E + 8 +0 + 62 + 0 + 10 +7349.999955 + 20 +10911.920062 + 30 +0.0 + 11 +7341.004874 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +20F + 8 +0 + 62 + 0 + 10 +7349.999955 + 20 +10868.618792 + 30 +0.0 + 11 +7337.499955 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +210 + 8 +0 + 62 + 0 + 10 +7348.739901 + 20 +10827.5 + 30 +0.0 + 11 +7337.499955 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +211 + 8 +0 + 62 + 0 + 10 +7312.499955 + 20 +10890.269427 + 30 +0.0 + 11 +7299.999955 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +212 + 8 +0 + 62 + 0 + 10 +7312.499956 + 20 +10846.968157 + 30 +0.0 + 11 +7299.999956 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +213 + 8 +0 + 62 + 0 + 10 +7274.999956 + 20 +10911.920062 + 30 +0.0 + 11 +7266.004874 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +214 + 8 +0 + 62 + 0 + 10 +7274.999956 + 20 +10868.618792 + 30 +0.0 + 11 +7262.499956 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +215 + 8 +0 + 62 + 0 + 10 +7273.739901 + 20 +10827.5 + 30 +0.0 + 11 +7262.499956 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +216 + 8 +0 + 62 + 0 + 10 +7237.499956 + 20 +10890.269427 + 30 +0.0 + 11 +7224.999956 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +217 + 8 +0 + 62 + 0 + 10 +7237.499956 + 20 +10846.968157 + 30 +0.0 + 11 +7224.999956 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +218 + 8 +0 + 62 + 0 + 10 +7199.999956 + 20 +10911.920062 + 30 +0.0 + 11 +7191.004874 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +219 + 8 +0 + 62 + 0 + 10 +7199.999956 + 20 +10868.618792 + 30 +0.0 + 11 +7187.499956 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +21A + 8 +0 + 62 + 0 + 10 +7198.739902 + 20 +10827.5 + 30 +0.0 + 11 +7187.499956 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +21B + 8 +0 + 62 + 0 + 10 +7162.499956 + 20 +10890.269427 + 30 +0.0 + 11 +7149.999956 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +21C + 8 +0 + 62 + 0 + 10 +7162.499956 + 20 +10846.968157 + 30 +0.0 + 11 +7149.999956 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +21D + 8 +0 + 62 + 0 + 10 +7124.999956 + 20 +10911.920062 + 30 +0.0 + 11 +7116.004875 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +21E + 8 +0 + 62 + 0 + 10 +7124.999956 + 20 +10868.618792 + 30 +0.0 + 11 +7112.499956 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +21F + 8 +0 + 62 + 0 + 10 +7123.739902 + 20 +10827.5 + 30 +0.0 + 11 +7112.499956 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +220 + 8 +0 + 62 + 0 + 10 +7087.499956 + 20 +10890.269427 + 30 +0.0 + 11 +7074.999956 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +221 + 8 +0 + 62 + 0 + 10 +7087.499956 + 20 +10846.968157 + 30 +0.0 + 11 +7074.999956 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +222 + 8 +0 + 62 + 0 + 10 +7049.999956 + 20 +10911.920062 + 30 +0.0 + 11 +7041.004875 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +223 + 8 +0 + 62 + 0 + 10 +7049.999956 + 20 +10868.618792 + 30 +0.0 + 11 +7037.499956 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +224 + 8 +0 + 62 + 0 + 10 +7048.739902 + 20 +10827.5 + 30 +0.0 + 11 +7037.499956 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +225 + 8 +0 + 62 + 0 + 10 +7012.499956 + 20 +10890.269427 + 30 +0.0 + 11 +6999.999956 + 21 +10911.920063 + 31 +0.0 + 0 +LINE + 5 +226 + 8 +0 + 62 + 0 + 10 +7012.499956 + 20 +10846.968157 + 30 +0.0 + 11 +6999.999956 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +227 + 8 +0 + 62 + 0 + 10 +6974.999956 + 20 +10911.920063 + 30 +0.0 + 11 +6966.004875 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +228 + 8 +0 + 62 + 0 + 10 +6974.999957 + 20 +10868.618792 + 30 +0.0 + 11 +6962.499957 + 21 +10890.269428 + 31 +0.0 + 0 +LINE + 5 +229 + 8 +0 + 62 + 0 + 10 +6973.739903 + 20 +10827.5 + 30 +0.0 + 11 +6962.499957 + 21 +10846.968157 + 31 +0.0 + 0 +LINE + 5 +22A + 8 +0 + 62 + 0 + 10 +6937.499957 + 20 +10890.269428 + 30 +0.0 + 11 +6924.999957 + 21 +10911.920063 + 31 +0.0 + 0 +LINE + 5 +22B + 8 +0 + 62 + 0 + 10 +6937.499957 + 20 +10846.968157 + 30 +0.0 + 11 +6924.999957 + 21 +10868.618793 + 31 +0.0 + 0 +LINE + 5 +22C + 8 +0 + 62 + 0 + 10 +6899.999957 + 20 +10911.920063 + 30 +0.0 + 11 +6891.004876 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +22D + 8 +0 + 62 + 0 + 10 +6899.999957 + 20 +10868.618793 + 30 +0.0 + 11 +6887.499957 + 21 +10890.269428 + 31 +0.0 + 0 +LINE + 5 +22E + 8 +0 + 62 + 0 + 10 +6898.739903 + 20 +10827.5 + 30 +0.0 + 11 +6887.499957 + 21 +10846.968158 + 31 +0.0 + 0 +LINE + 5 +22F + 8 +0 + 62 + 0 + 10 +6862.499957 + 20 +10890.269428 + 30 +0.0 + 11 +6849.999957 + 21 +10911.920063 + 31 +0.0 + 0 +LINE + 5 +230 + 8 +0 + 62 + 0 + 10 +6862.499957 + 20 +10846.968158 + 30 +0.0 + 11 +6849.999957 + 21 +10868.618793 + 31 +0.0 + 0 +LINE + 5 +231 + 8 +0 + 62 + 0 + 10 +6824.999957 + 20 +10911.920063 + 30 +0.0 + 11 +6816.004876 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +232 + 8 +0 + 62 + 0 + 10 +6824.999957 + 20 +10868.618793 + 30 +0.0 + 11 +6812.499957 + 21 +10890.269428 + 31 +0.0 + 0 +LINE + 5 +233 + 8 +0 + 62 + 0 + 10 +6823.739903 + 20 +10827.5 + 30 +0.0 + 11 +6812.499957 + 21 +10846.968158 + 31 +0.0 + 0 +LINE + 5 +234 + 8 +0 + 62 + 0 + 10 +6787.499957 + 20 +10890.269428 + 30 +0.0 + 11 +6774.999957 + 21 +10911.920063 + 31 +0.0 + 0 +LINE + 5 +235 + 8 +0 + 62 + 0 + 10 +6787.499957 + 20 +10846.968158 + 30 +0.0 + 11 +6774.999957 + 21 +10868.618793 + 31 +0.0 + 0 +LINE + 5 +236 + 8 +0 + 62 + 0 + 10 +6749.999957 + 20 +10911.920063 + 30 +0.0 + 11 +6741.004876 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +237 + 8 +0 + 62 + 0 + 10 +6749.999957 + 20 +10868.618793 + 30 +0.0 + 11 +6737.499957 + 21 +10890.269428 + 31 +0.0 + 0 +LINE + 5 +238 + 8 +0 + 62 + 0 + 10 +6748.739904 + 20 +10827.5 + 30 +0.0 + 11 +6737.499957 + 21 +10846.968158 + 31 +0.0 + 0 +LINE + 5 +239 + 8 +0 + 62 + 0 + 10 +6712.499957 + 20 +10890.269428 + 30 +0.0 + 11 +6710.0 + 21 +10894.599481 + 31 +0.0 + 0 +LINE + 5 +23A + 8 +0 + 62 + 0 + 10 +6712.499957 + 20 +10846.968158 + 30 +0.0 + 11 +6710.0 + 21 +10851.298211 + 31 +0.0 + 0 +LINE + 5 +23B + 8 +0 + 62 + 0 + 10 +7462.499955 + 20 +10846.968156 + 30 +0.0 + 11 +7449.999955 + 21 +10868.618792 + 31 +0.0 + 0 +LINE + 5 +23C + 8 +0 + 62 + 0 + 10 +7424.999955 + 20 +10911.920062 + 30 +0.0 + 11 +7416.004873 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +23D + 8 +0 + 62 + 0 + 10 +7498.7399 + 20 +10827.5 + 30 +0.0 + 11 +7487.499955 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +23E + 8 +0 + 62 + 0 + 10 +7462.499955 + 20 +10890.269427 + 30 +0.0 + 11 +7449.999955 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +23F + 8 +0 + 62 + 0 + 10 +7499.999955 + 20 +10868.618791 + 30 +0.0 + 11 +7487.499955 + 21 +10890.269427 + 31 +0.0 + 0 +LINE + 5 +240 + 8 +0 + 62 + 0 + 10 +7537.499955 + 20 +10846.968156 + 30 +0.0 + 11 +7524.999955 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +241 + 8 +0 + 62 + 0 + 10 +7499.999955 + 20 +10911.920062 + 30 +0.0 + 11 +7491.004873 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +242 + 8 +0 + 62 + 0 + 10 +7573.7399 + 20 +10827.5 + 30 +0.0 + 11 +7562.499955 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +243 + 8 +0 + 62 + 0 + 10 +7537.499955 + 20 +10890.269426 + 30 +0.0 + 11 +7524.999955 + 21 +10911.920062 + 31 +0.0 + 0 +LINE + 5 +244 + 8 +0 + 62 + 0 + 10 +7574.999955 + 20 +10868.618791 + 30 +0.0 + 11 +7562.499955 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +245 + 8 +0 + 62 + 0 + 10 +7612.499955 + 20 +10846.968156 + 30 +0.0 + 11 +7599.999955 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +246 + 8 +0 + 62 + 0 + 10 +7574.999955 + 20 +10911.920061 + 30 +0.0 + 11 +7566.004873 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +247 + 8 +0 + 62 + 0 + 10 +7648.7399 + 20 +10827.5 + 30 +0.0 + 11 +7637.499954 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +248 + 8 +0 + 62 + 0 + 10 +7612.499954 + 20 +10890.269426 + 30 +0.0 + 11 +7599.999954 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +249 + 8 +0 + 62 + 0 + 10 +7649.999954 + 20 +10868.618791 + 30 +0.0 + 11 +7637.499954 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +24A + 8 +0 + 62 + 0 + 10 +7687.499954 + 20 +10846.968156 + 30 +0.0 + 11 +7674.999954 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +24B + 8 +0 + 62 + 0 + 10 +7649.999954 + 20 +10911.920061 + 30 +0.0 + 11 +7641.004872 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +24C + 8 +0 + 62 + 0 + 10 +7723.739899 + 20 +10827.5 + 30 +0.0 + 11 +7712.499954 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +24D + 8 +0 + 62 + 0 + 10 +7687.499954 + 20 +10890.269426 + 30 +0.0 + 11 +7674.999954 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +24E + 8 +0 + 62 + 0 + 10 +7724.999954 + 20 +10868.618791 + 30 +0.0 + 11 +7712.499954 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +24F + 8 +0 + 62 + 0 + 10 +7762.499954 + 20 +10846.968156 + 30 +0.0 + 11 +7749.999954 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +250 + 8 +0 + 62 + 0 + 10 +7724.999954 + 20 +10911.920061 + 30 +0.0 + 11 +7716.004872 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +251 + 8 +0 + 62 + 0 + 10 +7798.739899 + 20 +10827.5 + 30 +0.0 + 11 +7787.499954 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +252 + 8 +0 + 62 + 0 + 10 +7762.499954 + 20 +10890.269426 + 30 +0.0 + 11 +7749.999954 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +253 + 8 +0 + 62 + 0 + 10 +7799.999954 + 20 +10868.618791 + 30 +0.0 + 11 +7787.499954 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +254 + 8 +0 + 62 + 0 + 10 +7837.499954 + 20 +10846.968156 + 30 +0.0 + 11 +7824.999954 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +255 + 8 +0 + 62 + 0 + 10 +7799.999954 + 20 +10911.920061 + 30 +0.0 + 11 +7791.004872 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +256 + 8 +0 + 62 + 0 + 10 +7873.739899 + 20 +10827.5 + 30 +0.0 + 11 +7862.499954 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +257 + 8 +0 + 62 + 0 + 10 +7837.499954 + 20 +10890.269426 + 30 +0.0 + 11 +7824.999954 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +258 + 8 +0 + 62 + 0 + 10 +7874.999954 + 20 +10868.618791 + 30 +0.0 + 11 +7862.499954 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +259 + 8 +0 + 62 + 0 + 10 +7912.499954 + 20 +10846.968156 + 30 +0.0 + 11 +7899.999954 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +25A + 8 +0 + 62 + 0 + 10 +7874.999954 + 20 +10911.920061 + 30 +0.0 + 11 +7866.004871 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +25B + 8 +0 + 62 + 0 + 10 +7948.739898 + 20 +10827.5 + 30 +0.0 + 11 +7937.499953 + 21 +10846.968156 + 31 +0.0 + 0 +LINE + 5 +25C + 8 +0 + 62 + 0 + 10 +7912.499953 + 20 +10890.269426 + 30 +0.0 + 11 +7899.999953 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +25D + 8 +0 + 62 + 0 + 10 +7949.999953 + 20 +10868.618791 + 30 +0.0 + 11 +7937.499953 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +25E + 8 +0 + 62 + 0 + 10 +7987.499953 + 20 +10846.968155 + 30 +0.0 + 11 +7974.999953 + 21 +10868.618791 + 31 +0.0 + 0 +LINE + 5 +25F + 8 +0 + 62 + 0 + 10 +7949.999953 + 20 +10911.920061 + 30 +0.0 + 11 +7941.004871 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +260 + 8 +0 + 62 + 0 + 10 +8023.739898 + 20 +10827.5 + 30 +0.0 + 11 +8012.499953 + 21 +10846.968155 + 31 +0.0 + 0 +LINE + 5 +261 + 8 +0 + 62 + 0 + 10 +7987.499953 + 20 +10890.269426 + 30 +0.0 + 11 +7974.999953 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +262 + 8 +0 + 62 + 0 + 10 +8024.999953 + 20 +10868.61879 + 30 +0.0 + 11 +8012.499953 + 21 +10890.269426 + 31 +0.0 + 0 +LINE + 5 +263 + 8 +0 + 62 + 0 + 10 +8062.499953 + 20 +10846.968155 + 30 +0.0 + 11 +8049.999953 + 21 +10868.61879 + 31 +0.0 + 0 +LINE + 5 +264 + 8 +0 + 62 + 0 + 10 +8024.999953 + 20 +10911.920061 + 30 +0.0 + 11 +8016.004871 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +265 + 8 +0 + 62 + 0 + 10 +8098.739898 + 20 +10827.5 + 30 +0.0 + 11 +8087.499953 + 21 +10846.968155 + 31 +0.0 + 0 +LINE + 5 +266 + 8 +0 + 62 + 0 + 10 +8062.499953 + 20 +10890.269425 + 30 +0.0 + 11 +8049.999953 + 21 +10911.920061 + 31 +0.0 + 0 +LINE + 5 +267 + 8 +0 + 62 + 0 + 10 +8099.999953 + 20 +10868.61879 + 30 +0.0 + 11 +8087.499953 + 21 +10890.269425 + 31 +0.0 + 0 +LINE + 5 +268 + 8 +0 + 62 + 0 + 10 +8137.499953 + 20 +10846.968155 + 30 +0.0 + 11 +8124.999953 + 21 +10868.61879 + 31 +0.0 + 0 +LINE + 5 +269 + 8 +0 + 62 + 0 + 10 +8099.999953 + 20 +10911.92006 + 30 +0.0 + 11 +8091.004871 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +26A + 8 +0 + 62 + 0 + 10 +8173.739897 + 20 +10827.5 + 30 +0.0 + 11 +8162.499953 + 21 +10846.968155 + 31 +0.0 + 0 +LINE + 5 +26B + 8 +0 + 62 + 0 + 10 +8137.499953 + 20 +10890.269425 + 30 +0.0 + 11 +8124.999953 + 21 +10911.92006 + 31 +0.0 + 0 +LINE + 5 +26C + 8 +0 + 62 + 0 + 10 +8174.999953 + 20 +10868.61879 + 30 +0.0 + 11 +8162.499953 + 21 +10890.269425 + 31 +0.0 + 0 +LINE + 5 +26D + 8 +0 + 62 + 0 + 10 +8174.999953 + 20 +10911.92006 + 30 +0.0 + 11 +8166.00487 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +26E + 8 +0 + 62 + 0 + 10 +7412.499996 + 20 +10846.968185 + 30 +0.0 + 11 +7424.999996 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +26F + 8 +0 + 62 + 0 + 10 +7449.999996 + 20 +10911.92009 + 30 +0.0 + 11 +7458.995062 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +270 + 8 +0 + 62 + 0 + 10 +7376.260035 + 20 +10827.5 + 30 +0.0 + 11 +7387.499996 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +271 + 8 +0 + 62 + 0 + 10 +7412.499996 + 20 +10890.269455 + 30 +0.0 + 11 +7424.999996 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +272 + 8 +0 + 62 + 0 + 10 +7374.999996 + 20 +10868.61882 + 30 +0.0 + 11 +7387.499996 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +273 + 8 +0 + 62 + 0 + 10 +7337.499996 + 20 +10846.968184 + 30 +0.0 + 11 +7349.999996 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +274 + 8 +0 + 62 + 0 + 10 +7374.999996 + 20 +10911.92009 + 30 +0.0 + 11 +7383.995062 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +275 + 8 +0 + 62 + 0 + 10 +7301.260035 + 20 +10827.5 + 30 +0.0 + 11 +7312.499997 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +276 + 8 +0 + 62 + 0 + 10 +7337.499997 + 20 +10890.269455 + 30 +0.0 + 11 +7349.999997 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +277 + 8 +0 + 62 + 0 + 10 +7299.999997 + 20 +10868.618819 + 30 +0.0 + 11 +7312.499997 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +278 + 8 +0 + 62 + 0 + 10 +7262.499997 + 20 +10846.968184 + 30 +0.0 + 11 +7274.999997 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +279 + 8 +0 + 62 + 0 + 10 +7299.999997 + 20 +10911.92009 + 30 +0.0 + 11 +7308.995062 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +27A + 8 +0 + 62 + 0 + 10 +7226.260035 + 20 +10827.5 + 30 +0.0 + 11 +7237.499997 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +27B + 8 +0 + 62 + 0 + 10 +7262.499997 + 20 +10890.269454 + 30 +0.0 + 11 +7274.999997 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +27C + 8 +0 + 62 + 0 + 10 +7224.999997 + 20 +10868.618819 + 30 +0.0 + 11 +7237.499997 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +27D + 8 +0 + 62 + 0 + 10 +7187.499997 + 20 +10846.968184 + 30 +0.0 + 11 +7199.999997 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +27E + 8 +0 + 62 + 0 + 10 +7224.999997 + 20 +10911.920089 + 30 +0.0 + 11 +7233.995063 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +27F + 8 +0 + 62 + 0 + 10 +7151.260036 + 20 +10827.5 + 30 +0.0 + 11 +7162.499997 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +280 + 8 +0 + 62 + 0 + 10 +7187.499997 + 20 +10890.269454 + 30 +0.0 + 11 +7199.999997 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +281 + 8 +0 + 62 + 0 + 10 +7149.999997 + 20 +10868.618819 + 30 +0.0 + 11 +7162.499997 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +282 + 8 +0 + 62 + 0 + 10 +7112.499997 + 20 +10846.968184 + 30 +0.0 + 11 +7124.999997 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +283 + 8 +0 + 62 + 0 + 10 +7149.999997 + 20 +10911.920089 + 30 +0.0 + 11 +7158.995063 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +284 + 8 +0 + 62 + 0 + 10 +7076.260036 + 20 +10827.5 + 30 +0.0 + 11 +7087.499997 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +285 + 8 +0 + 62 + 0 + 10 +7112.499997 + 20 +10890.269454 + 30 +0.0 + 11 +7124.999997 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +286 + 8 +0 + 62 + 0 + 10 +7074.999997 + 20 +10868.618819 + 30 +0.0 + 11 +7087.499997 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +287 + 8 +0 + 62 + 0 + 10 +7037.499997 + 20 +10846.968184 + 30 +0.0 + 11 +7049.999997 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +288 + 8 +0 + 62 + 0 + 10 +7074.999997 + 20 +10911.920089 + 30 +0.0 + 11 +7083.995063 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +289 + 8 +0 + 62 + 0 + 10 +7001.260036 + 20 +10827.5 + 30 +0.0 + 11 +7012.499998 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +28A + 8 +0 + 62 + 0 + 10 +7037.499998 + 20 +10890.269454 + 30 +0.0 + 11 +7049.999998 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +28B + 8 +0 + 62 + 0 + 10 +6999.999998 + 20 +10868.618819 + 30 +0.0 + 11 +7012.499998 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +28C + 8 +0 + 62 + 0 + 10 +6962.499998 + 20 +10846.968184 + 30 +0.0 + 11 +6974.999998 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +28D + 8 +0 + 62 + 0 + 10 +6999.999998 + 20 +10911.920089 + 30 +0.0 + 11 +7008.995064 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +28E + 8 +0 + 62 + 0 + 10 +6926.260037 + 20 +10827.5 + 30 +0.0 + 11 +6937.499998 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +28F + 8 +0 + 62 + 0 + 10 +6962.499998 + 20 +10890.269454 + 30 +0.0 + 11 +6974.999998 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +290 + 8 +0 + 62 + 0 + 10 +6924.999998 + 20 +10868.618819 + 30 +0.0 + 11 +6937.499998 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +291 + 8 +0 + 62 + 0 + 10 +6887.499998 + 20 +10846.968184 + 30 +0.0 + 11 +6899.999998 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +292 + 8 +0 + 62 + 0 + 10 +6924.999998 + 20 +10911.920089 + 30 +0.0 + 11 +6933.995064 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +293 + 8 +0 + 62 + 0 + 10 +6851.260037 + 20 +10827.5 + 30 +0.0 + 11 +6862.499998 + 21 +10846.968184 + 31 +0.0 + 0 +LINE + 5 +294 + 8 +0 + 62 + 0 + 10 +6887.499998 + 20 +10890.269454 + 30 +0.0 + 11 +6899.999998 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +295 + 8 +0 + 62 + 0 + 10 +6849.999998 + 20 +10868.618819 + 30 +0.0 + 11 +6862.499998 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +296 + 8 +0 + 62 + 0 + 10 +6812.499998 + 20 +10846.968183 + 30 +0.0 + 11 +6824.999998 + 21 +10868.618819 + 31 +0.0 + 0 +LINE + 5 +297 + 8 +0 + 62 + 0 + 10 +6849.999998 + 20 +10911.920089 + 30 +0.0 + 11 +6858.995064 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +298 + 8 +0 + 62 + 0 + 10 +6776.260037 + 20 +10827.5 + 30 +0.0 + 11 +6787.499998 + 21 +10846.968183 + 31 +0.0 + 0 +LINE + 5 +299 + 8 +0 + 62 + 0 + 10 +6812.499998 + 20 +10890.269454 + 30 +0.0 + 11 +6824.999998 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +29A + 8 +0 + 62 + 0 + 10 +6774.999998 + 20 +10868.618818 + 30 +0.0 + 11 +6787.499998 + 21 +10890.269454 + 31 +0.0 + 0 +LINE + 5 +29B + 8 +0 + 62 + 0 + 10 +6737.499998 + 20 +10846.968183 + 30 +0.0 + 11 +6749.999998 + 21 +10868.618818 + 31 +0.0 + 0 +LINE + 5 +29C + 8 +0 + 62 + 0 + 10 +6774.999998 + 20 +10911.920089 + 30 +0.0 + 11 +6783.995064 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +29D + 8 +0 + 62 + 0 + 10 +6710.0 + 20 +10842.638059 + 30 +0.0 + 11 +6712.499999 + 21 +10846.968183 + 31 +0.0 + 0 +LINE + 5 +29E + 8 +0 + 62 + 0 + 10 +6737.499999 + 20 +10890.269453 + 30 +0.0 + 11 +6749.999999 + 21 +10911.920089 + 31 +0.0 + 0 +LINE + 5 +29F + 8 +0 + 62 + 0 + 10 +6710.0 + 20 +10885.939329 + 30 +0.0 + 11 +6712.499999 + 21 +10890.269453 + 31 +0.0 + 0 +LINE + 5 +2A0 + 8 +0 + 62 + 0 + 10 +7449.999996 + 20 +10868.61882 + 30 +0.0 + 11 +7462.499996 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +2A1 + 8 +0 + 62 + 0 + 10 +7451.260034 + 20 +10827.5 + 30 +0.0 + 11 +7462.499996 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +2A2 + 8 +0 + 62 + 0 + 10 +7487.499996 + 20 +10890.269455 + 30 +0.0 + 11 +7499.999996 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +2A3 + 8 +0 + 62 + 0 + 10 +7487.499996 + 20 +10846.968185 + 30 +0.0 + 11 +7499.999996 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +2A4 + 8 +0 + 62 + 0 + 10 +7524.999996 + 20 +10911.92009 + 30 +0.0 + 11 +7533.995061 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2A5 + 8 +0 + 62 + 0 + 10 +7524.999996 + 20 +10868.61882 + 30 +0.0 + 11 +7537.499996 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +2A6 + 8 +0 + 62 + 0 + 10 +7526.260034 + 20 +10827.5 + 30 +0.0 + 11 +7537.499996 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +2A7 + 8 +0 + 62 + 0 + 10 +7562.499996 + 20 +10890.269455 + 30 +0.0 + 11 +7574.999996 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +2A8 + 8 +0 + 62 + 0 + 10 +7562.499996 + 20 +10846.968185 + 30 +0.0 + 11 +7574.999996 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +2A9 + 8 +0 + 62 + 0 + 10 +7599.999996 + 20 +10911.92009 + 30 +0.0 + 11 +7608.995061 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2AA + 8 +0 + 62 + 0 + 10 +7599.999996 + 20 +10868.61882 + 30 +0.0 + 11 +7612.499996 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +2AB + 8 +0 + 62 + 0 + 10 +7601.260034 + 20 +10827.5 + 30 +0.0 + 11 +7612.499996 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +2AC + 8 +0 + 62 + 0 + 10 +7637.499996 + 20 +10890.269455 + 30 +0.0 + 11 +7649.999996 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +2AD + 8 +0 + 62 + 0 + 10 +7637.499995 + 20 +10846.968185 + 30 +0.0 + 11 +7649.999995 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +2AE + 8 +0 + 62 + 0 + 10 +7674.999995 + 20 +10911.92009 + 30 +0.0 + 11 +7683.995061 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2AF + 8 +0 + 62 + 0 + 10 +7674.999995 + 20 +10868.61882 + 30 +0.0 + 11 +7687.499995 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +2B0 + 8 +0 + 62 + 0 + 10 +7676.260033 + 20 +10827.5 + 30 +0.0 + 11 +7687.499995 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +2B1 + 8 +0 + 62 + 0 + 10 +7712.499995 + 20 +10890.269455 + 30 +0.0 + 11 +7724.999995 + 21 +10911.92009 + 31 +0.0 + 0 +LINE + 5 +2B2 + 8 +0 + 62 + 0 + 10 +7712.499995 + 20 +10846.968185 + 30 +0.0 + 11 +7724.999995 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +2B3 + 8 +0 + 62 + 0 + 10 +7749.999995 + 20 +10911.92009 + 30 +0.0 + 11 +7758.99506 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2B4 + 8 +0 + 62 + 0 + 10 +7749.999995 + 20 +10868.61882 + 30 +0.0 + 11 +7762.499995 + 21 +10890.269455 + 31 +0.0 + 0 +LINE + 5 +2B5 + 8 +0 + 62 + 0 + 10 +7751.260033 + 20 +10827.5 + 30 +0.0 + 11 +7762.499995 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +2B6 + 8 +0 + 62 + 0 + 10 +7787.499995 + 20 +10890.269455 + 30 +0.0 + 11 +7799.999995 + 21 +10911.920091 + 31 +0.0 + 0 +LINE + 5 +2B7 + 8 +0 + 62 + 0 + 10 +7787.499995 + 20 +10846.968185 + 30 +0.0 + 11 +7799.999995 + 21 +10868.61882 + 31 +0.0 + 0 +LINE + 5 +2B8 + 8 +0 + 62 + 0 + 10 +7824.999995 + 20 +10911.920091 + 30 +0.0 + 11 +7833.99506 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2B9 + 8 +0 + 62 + 0 + 10 +7824.999995 + 20 +10868.61882 + 30 +0.0 + 11 +7837.499995 + 21 +10890.269456 + 31 +0.0 + 0 +LINE + 5 +2BA + 8 +0 + 62 + 0 + 10 +7826.260033 + 20 +10827.5 + 30 +0.0 + 11 +7837.499995 + 21 +10846.968185 + 31 +0.0 + 0 +LINE + 5 +2BB + 8 +0 + 62 + 0 + 10 +7862.499995 + 20 +10890.269456 + 30 +0.0 + 11 +7874.999995 + 21 +10911.920091 + 31 +0.0 + 0 +LINE + 5 +2BC + 8 +0 + 62 + 0 + 10 +7862.499995 + 20 +10846.968185 + 30 +0.0 + 11 +7874.999995 + 21 +10868.618821 + 31 +0.0 + 0 +LINE + 5 +2BD + 8 +0 + 62 + 0 + 10 +7899.999995 + 20 +10911.920091 + 30 +0.0 + 11 +7908.99506 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2BE + 8 +0 + 62 + 0 + 10 +7899.999995 + 20 +10868.618821 + 30 +0.0 + 11 +7912.499995 + 21 +10890.269456 + 31 +0.0 + 0 +LINE + 5 +2BF + 8 +0 + 62 + 0 + 10 +7901.260032 + 20 +10827.5 + 30 +0.0 + 11 +7912.499995 + 21 +10846.968186 + 31 +0.0 + 0 +LINE + 5 +2C0 + 8 +0 + 62 + 0 + 10 +7937.499995 + 20 +10890.269456 + 30 +0.0 + 11 +7949.999995 + 21 +10911.920091 + 31 +0.0 + 0 +LINE + 5 +2C1 + 8 +0 + 62 + 0 + 10 +7937.499995 + 20 +10846.968186 + 30 +0.0 + 11 +7949.999995 + 21 +10868.618821 + 31 +0.0 + 0 +LINE + 5 +2C2 + 8 +0 + 62 + 0 + 10 +7974.999995 + 20 +10911.920091 + 30 +0.0 + 11 +7983.995059 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2C3 + 8 +0 + 62 + 0 + 10 +7974.999994 + 20 +10868.618821 + 30 +0.0 + 11 +7987.499994 + 21 +10890.269456 + 31 +0.0 + 0 +LINE + 5 +2C4 + 8 +0 + 62 + 0 + 10 +7976.260032 + 20 +10827.5 + 30 +0.0 + 11 +7987.499994 + 21 +10846.968186 + 31 +0.0 + 0 +LINE + 5 +2C5 + 8 +0 + 62 + 0 + 10 +8012.499994 + 20 +10890.269456 + 30 +0.0 + 11 +8024.999994 + 21 +10911.920091 + 31 +0.0 + 0 +LINE + 5 +2C6 + 8 +0 + 62 + 0 + 10 +8012.499994 + 20 +10846.968186 + 30 +0.0 + 11 +8024.999994 + 21 +10868.618821 + 31 +0.0 + 0 +LINE + 5 +2C7 + 8 +0 + 62 + 0 + 10 +8049.999994 + 20 +10911.920091 + 30 +0.0 + 11 +8058.995059 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2C8 + 8 +0 + 62 + 0 + 10 +8049.999994 + 20 +10868.618821 + 30 +0.0 + 11 +8062.499994 + 21 +10890.269456 + 31 +0.0 + 0 +LINE + 5 +2C9 + 8 +0 + 62 + 0 + 10 +8051.260032 + 20 +10827.5 + 30 +0.0 + 11 +8062.499994 + 21 +10846.968186 + 31 +0.0 + 0 +LINE + 5 +2CA + 8 +0 + 62 + 0 + 10 +8087.499994 + 20 +10890.269456 + 30 +0.0 + 11 +8099.999994 + 21 +10911.920091 + 31 +0.0 + 0 +LINE + 5 +2CB + 8 +0 + 62 + 0 + 10 +8087.499994 + 20 +10846.968186 + 30 +0.0 + 11 +8099.999994 + 21 +10868.618821 + 31 +0.0 + 0 +LINE + 5 +2CC + 8 +0 + 62 + 0 + 10 +8124.999994 + 20 +10911.920091 + 30 +0.0 + 11 +8133.995059 + 21 +10927.5 + 31 +0.0 + 0 +LINE + 5 +2CD + 8 +0 + 62 + 0 + 10 +8124.999994 + 20 +10868.618821 + 30 +0.0 + 11 +8137.499994 + 21 +10890.269456 + 31 +0.0 + 0 +LINE + 5 +2CE + 8 +0 + 62 + 0 + 10 +8126.260031 + 20 +10827.5 + 30 +0.0 + 11 +8137.499994 + 21 +10846.968186 + 31 +0.0 + 0 +LINE + 5 +2CF + 8 +0 + 62 + 0 + 10 +8162.499994 + 20 +10890.269456 + 30 +0.0 + 11 +8174.999994 + 21 +10911.920091 + 31 +0.0 + 0 +LINE + 5 +2D0 + 8 +0 + 62 + 0 + 10 +8162.499994 + 20 +10846.968186 + 30 +0.0 + 11 +8174.999994 + 21 +10868.618821 + 31 +0.0 + 0 +ENDBLK + 5 +2D1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X5 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X5 + 1 + + 0 +LINE + 5 +2D3 + 8 +0 + 62 + 0 + 10 +7458.755416 + 20 +11065.0 + 30 +0.0 + 11 +7521.255416 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2D4 + 8 +0 + 62 + 0 + 10 +7246.623382 + 20 +11065.0 + 30 +0.0 + 11 +7309.123382 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2D5 + 8 +0 + 62 + 0 + 10 +7034.491347 + 20 +11065.0 + 30 +0.0 + 11 +7096.991347 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2D6 + 8 +0 + 62 + 0 + 10 +6822.359313 + 20 +11065.0 + 30 +0.0 + 11 +6884.859313 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2D7 + 8 +0 + 62 + 0 + 10 +7670.88745 + 20 +11065.0 + 30 +0.0 + 11 +7733.38745 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2D8 + 8 +0 + 62 + 0 + 10 +7883.019485 + 20 +11065.0 + 30 +0.0 + 11 +7945.519485 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2D9 + 8 +0 + 62 + 0 + 10 +8095.151519 + 20 +11065.0 + 30 +0.0 + 11 +8157.651519 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2DA + 8 +0 + 62 + 0 + 10 +7494.110755 + 20 +11065.0 + 30 +0.0 + 11 +7556.610755 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2DB + 8 +0 + 62 + 0 + 10 +7281.978721 + 20 +11065.0 + 30 +0.0 + 11 +7344.478721 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2DC + 8 +0 + 62 + 0 + 10 +7069.846686 + 20 +11065.0 + 30 +0.0 + 11 +7132.346686 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2DD + 8 +0 + 62 + 0 + 10 +6857.714652 + 20 +11065.0 + 30 +0.0 + 11 +6920.214652 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2DE + 8 +0 + 62 + 0 + 10 +7706.242789 + 20 +11065.0 + 30 +0.0 + 11 +7768.742789 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2DF + 8 +0 + 62 + 0 + 10 +7918.374824 + 20 +11065.0 + 30 +0.0 + 11 +7980.874824 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E0 + 8 +0 + 62 + 0 + 10 +8130.506858 + 20 +11065.0 + 30 +0.0 + 11 +8175.0 + 21 +11109.493142 + 31 +0.0 + 0 +LINE + 5 +2E1 + 8 +0 + 62 + 0 + 10 +7529.466094 + 20 +11065.0 + 30 +0.0 + 11 +7591.966094 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E2 + 8 +0 + 62 + 0 + 10 +7317.33406 + 20 +11065.0 + 30 +0.0 + 11 +7379.83406 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E3 + 8 +0 + 62 + 0 + 10 +7105.202025 + 20 +11065.0 + 30 +0.0 + 11 +7167.702025 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E4 + 8 +0 + 62 + 0 + 10 +6893.069991 + 20 +11065.0 + 30 +0.0 + 11 +6955.569991 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E5 + 8 +0 + 62 + 0 + 10 +6710.0 + 20 +11094.062043 + 30 +0.0 + 11 +6743.437957 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E6 + 8 +0 + 62 + 0 + 10 +7741.598129 + 20 +11065.0 + 30 +0.0 + 11 +7804.098129 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E7 + 8 +0 + 62 + 0 + 10 +7953.730163 + 20 +11065.0 + 30 +0.0 + 11 +8016.230163 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2E8 + 8 +0 + 62 + 0 + 10 +8165.862197 + 20 +11065.0 + 30 +0.0 + 11 +8175.0 + 21 +11074.137803 + 31 +0.0 + 0 +LINE + 5 +2E9 + 8 +0 + 62 + 0 + 10 +7564.821433 + 20 +11065.0 + 30 +0.0 + 11 +7627.321433 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2EA + 8 +0 + 62 + 0 + 10 +7352.689399 + 20 +11065.0 + 30 +0.0 + 11 +7415.189399 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2EB + 8 +0 + 62 + 0 + 10 +7140.557364 + 20 +11065.0 + 30 +0.0 + 11 +7203.057364 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2EC + 8 +0 + 62 + 0 + 10 +6928.42533 + 20 +11065.0 + 30 +0.0 + 11 +6990.92533 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2ED + 8 +0 + 62 + 0 + 10 +6716.293296 + 20 +11065.0 + 30 +0.0 + 11 +6778.793296 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2EE + 8 +0 + 62 + 0 + 10 +7776.953468 + 20 +11065.0 + 30 +0.0 + 11 +7839.453468 + 21 +11127.5 + 31 +0.0 + 0 +LINE + 5 +2EF + 8 +0 + 62 + 0 + 10 +7989.085502 + 20 +11065.0 + 30 +0.0 + 11 +8051.585502 + 21 +11127.5 + 31 +0.0 + 0 +ENDBLK + 5 +2F0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X6 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X6 + 1 + + 0 +LINE + 5 +2F2 + 8 +0 + 62 + 0 + 10 +5738.475836 + 20 +10865.0 + 30 +0.0 + 11 +6603.475836 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +2F3 + 8 +0 + 62 + 0 + 10 +5710.0 + 20 +11013.300859 + 30 +0.0 + 11 +6426.699141 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +2F4 + 8 +0 + 62 + 0 + 10 +5710.0 + 20 +11190.077554 + 30 +0.0 + 11 +6249.922446 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +2F5 + 8 +0 + 62 + 0 + 10 +5710.0 + 20 +11366.854249 + 30 +0.0 + 11 +6073.145751 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +2F6 + 8 +0 + 62 + 0 + 10 +5710.0 + 20 +11543.630945 + 30 +0.0 + 11 +5896.369055 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +2F7 + 8 +0 + 62 + 0 + 10 +5710.0 + 20 +11720.40764 + 30 +0.0 + 11 +5719.59236 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +2F8 + 8 +0 + 62 + 0 + 10 +5915.252532 + 20 +10865.0 + 30 +0.0 + 11 +6630.0 + 21 +11579.747468 + 31 +0.0 + 0 +LINE + 5 +2F9 + 8 +0 + 62 + 0 + 10 +6092.029227 + 20 +10865.0 + 30 +0.0 + 11 +6630.0 + 21 +11402.970773 + 31 +0.0 + 0 +LINE + 5 +2FA + 8 +0 + 62 + 0 + 10 +6268.805922 + 20 +10865.0 + 30 +0.0 + 11 +6630.0 + 21 +11226.194078 + 31 +0.0 + 0 +LINE + 5 +2FB + 8 +0 + 62 + 0 + 10 +6445.582618 + 20 +10865.0 + 30 +0.0 + 11 +6630.0 + 21 +11049.417382 + 31 +0.0 + 0 +LINE + 5 +2FC + 8 +0 + 62 + 0 + 10 +6622.359313 + 20 +10865.0 + 30 +0.0 + 11 +6630.0 + 21 +10872.640687 + 31 +0.0 + 0 +ENDBLK + 5 +2FD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X7 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X7 + 1 + + 0 +LINE + 5 +2FF + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11193.378295 + 30 +0.0 + 11 +5537.5 + 21 +11193.378295 + 31 +0.0 + 0 +LINE + 5 +300 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11193.378295 + 30 +0.0 + 11 +5612.5 + 21 +11193.378295 + 31 +0.0 + 0 +LINE + 5 +301 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11193.378295 + 30 +0.0 + 11 +5687.5 + 21 +11193.378295 + 31 +0.0 + 0 +LINE + 5 +302 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11215.02893 + 30 +0.0 + 11 +5575.0 + 21 +11215.02893 + 31 +0.0 + 0 +LINE + 5 +303 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11215.02893 + 30 +0.0 + 11 +5650.0 + 21 +11215.02893 + 31 +0.0 + 0 +LINE + 5 +304 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11215.02893 + 30 +0.0 + 11 +5710.0 + 21 +11215.02893 + 31 +0.0 + 0 +LINE + 5 +305 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11236.679565 + 30 +0.0 + 11 +5537.5 + 21 +11236.679565 + 31 +0.0 + 0 +LINE + 5 +306 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11236.679565 + 30 +0.0 + 11 +5612.5 + 21 +11236.679565 + 31 +0.0 + 0 +LINE + 5 +307 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11236.679565 + 30 +0.0 + 11 +5687.5 + 21 +11236.679565 + 31 +0.0 + 0 +LINE + 5 +308 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11258.3302 + 30 +0.0 + 11 +5575.0 + 21 +11258.3302 + 31 +0.0 + 0 +LINE + 5 +309 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11258.3302 + 30 +0.0 + 11 +5650.0 + 21 +11258.3302 + 31 +0.0 + 0 +LINE + 5 +30A + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11258.3302 + 30 +0.0 + 11 +5710.0 + 21 +11258.3302 + 31 +0.0 + 0 +LINE + 5 +30B + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11279.980835 + 30 +0.0 + 11 +5537.5 + 21 +11279.980835 + 31 +0.0 + 0 +LINE + 5 +30C + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11279.980835 + 30 +0.0 + 11 +5612.5 + 21 +11279.980835 + 31 +0.0 + 0 +LINE + 5 +30D + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11279.980835 + 30 +0.0 + 11 +5687.5 + 21 +11279.980835 + 31 +0.0 + 0 +LINE + 5 +30E + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11301.63147 + 30 +0.0 + 11 +5575.0 + 21 +11301.63147 + 31 +0.0 + 0 +LINE + 5 +30F + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11301.63147 + 30 +0.0 + 11 +5650.0 + 21 +11301.63147 + 31 +0.0 + 0 +LINE + 5 +310 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11301.63147 + 30 +0.0 + 11 +5710.0 + 21 +11301.63147 + 31 +0.0 + 0 +LINE + 5 +311 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11323.282105 + 30 +0.0 + 11 +5537.5 + 21 +11323.282105 + 31 +0.0 + 0 +LINE + 5 +312 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11323.282105 + 30 +0.0 + 11 +5612.5 + 21 +11323.282105 + 31 +0.0 + 0 +LINE + 5 +313 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11323.282105 + 30 +0.0 + 11 +5687.5 + 21 +11323.282105 + 31 +0.0 + 0 +LINE + 5 +314 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11344.93274 + 30 +0.0 + 11 +5575.0 + 21 +11344.93274 + 31 +0.0 + 0 +LINE + 5 +315 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11344.93274 + 30 +0.0 + 11 +5650.0 + 21 +11344.93274 + 31 +0.0 + 0 +LINE + 5 +316 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11344.93274 + 30 +0.0 + 11 +5710.0 + 21 +11344.93274 + 31 +0.0 + 0 +LINE + 5 +317 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11366.583375 + 30 +0.0 + 11 +5537.5 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +318 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11366.583375 + 30 +0.0 + 11 +5612.5 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +319 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11366.583375 + 30 +0.0 + 11 +5687.5 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +31A + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11388.23401 + 30 +0.0 + 11 +5575.0 + 21 +11388.23401 + 31 +0.0 + 0 +LINE + 5 +31B + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11388.23401 + 30 +0.0 + 11 +5650.0 + 21 +11388.23401 + 31 +0.0 + 0 +LINE + 5 +31C + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11388.23401 + 30 +0.0 + 11 +5710.0 + 21 +11388.23401 + 31 +0.0 + 0 +LINE + 5 +31D + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11409.884645 + 30 +0.0 + 11 +5537.5 + 21 +11409.884645 + 31 +0.0 + 0 +LINE + 5 +31E + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11409.884645 + 30 +0.0 + 11 +5612.5 + 21 +11409.884645 + 31 +0.0 + 0 +LINE + 5 +31F + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11409.884645 + 30 +0.0 + 11 +5687.5 + 21 +11409.884645 + 31 +0.0 + 0 +LINE + 5 +320 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11431.53528 + 30 +0.0 + 11 +5575.0 + 21 +11431.53528 + 31 +0.0 + 0 +LINE + 5 +321 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11431.53528 + 30 +0.0 + 11 +5650.0 + 21 +11431.53528 + 31 +0.0 + 0 +LINE + 5 +322 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11431.53528 + 30 +0.0 + 11 +5710.0 + 21 +11431.53528 + 31 +0.0 + 0 +LINE + 5 +323 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11453.185915 + 30 +0.0 + 11 +5537.5 + 21 +11453.185915 + 31 +0.0 + 0 +LINE + 5 +324 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11453.185915 + 30 +0.0 + 11 +5612.5 + 21 +11453.185915 + 31 +0.0 + 0 +LINE + 5 +325 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11453.185915 + 30 +0.0 + 11 +5687.5 + 21 +11453.185915 + 31 +0.0 + 0 +LINE + 5 +326 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11474.83655 + 30 +0.0 + 11 +5575.0 + 21 +11474.83655 + 31 +0.0 + 0 +LINE + 5 +327 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11474.83655 + 30 +0.0 + 11 +5650.0 + 21 +11474.83655 + 31 +0.0 + 0 +LINE + 5 +328 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11474.83655 + 30 +0.0 + 11 +5710.0 + 21 +11474.83655 + 31 +0.0 + 0 +LINE + 5 +329 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11496.487185 + 30 +0.0 + 11 +5537.5 + 21 +11496.487185 + 31 +0.0 + 0 +LINE + 5 +32A + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11496.487185 + 30 +0.0 + 11 +5612.5 + 21 +11496.487185 + 31 +0.0 + 0 +LINE + 5 +32B + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11496.487185 + 30 +0.0 + 11 +5687.5 + 21 +11496.487185 + 31 +0.0 + 0 +LINE + 5 +32C + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11518.13782 + 30 +0.0 + 11 +5575.0 + 21 +11518.13782 + 31 +0.0 + 0 +LINE + 5 +32D + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11518.13782 + 30 +0.0 + 11 +5650.0 + 21 +11518.13782 + 31 +0.0 + 0 +LINE + 5 +32E + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11518.13782 + 30 +0.0 + 11 +5710.0 + 21 +11518.13782 + 31 +0.0 + 0 +LINE + 5 +32F + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11539.788455 + 30 +0.0 + 11 +5537.5 + 21 +11539.788455 + 31 +0.0 + 0 +LINE + 5 +330 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11539.788455 + 30 +0.0 + 11 +5612.5 + 21 +11539.788455 + 31 +0.0 + 0 +LINE + 5 +331 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11539.788455 + 30 +0.0 + 11 +5687.5 + 21 +11539.788455 + 31 +0.0 + 0 +LINE + 5 +332 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11561.43909 + 30 +0.0 + 11 +5575.0 + 21 +11561.43909 + 31 +0.0 + 0 +LINE + 5 +333 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11561.43909 + 30 +0.0 + 11 +5650.0 + 21 +11561.43909 + 31 +0.0 + 0 +LINE + 5 +334 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11561.43909 + 30 +0.0 + 11 +5710.0 + 21 +11561.43909 + 31 +0.0 + 0 +LINE + 5 +335 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11583.089725 + 30 +0.0 + 11 +5537.5 + 21 +11583.089725 + 31 +0.0 + 0 +LINE + 5 +336 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11583.089725 + 30 +0.0 + 11 +5612.5 + 21 +11583.089725 + 31 +0.0 + 0 +LINE + 5 +337 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11583.089725 + 30 +0.0 + 11 +5687.5 + 21 +11583.089725 + 31 +0.0 + 0 +LINE + 5 +338 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11604.74036 + 30 +0.0 + 11 +5575.0 + 21 +11604.74036 + 31 +0.0 + 0 +LINE + 5 +339 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11604.74036 + 30 +0.0 + 11 +5650.0 + 21 +11604.74036 + 31 +0.0 + 0 +LINE + 5 +33A + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11604.74036 + 30 +0.0 + 11 +5710.0 + 21 +11604.74036 + 31 +0.0 + 0 +LINE + 5 +33B + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11626.390995 + 30 +0.0 + 11 +5537.5 + 21 +11626.390995 + 31 +0.0 + 0 +LINE + 5 +33C + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11626.390995 + 30 +0.0 + 11 +5612.5 + 21 +11626.390995 + 31 +0.0 + 0 +LINE + 5 +33D + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11626.390995 + 30 +0.0 + 11 +5687.5 + 21 +11626.390995 + 31 +0.0 + 0 +LINE + 5 +33E + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11648.04163 + 30 +0.0 + 11 +5575.0 + 21 +11648.04163 + 31 +0.0 + 0 +LINE + 5 +33F + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11648.04163 + 30 +0.0 + 11 +5650.0 + 21 +11648.04163 + 31 +0.0 + 0 +LINE + 5 +340 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11648.04163 + 30 +0.0 + 11 +5710.0 + 21 +11648.04163 + 31 +0.0 + 0 +LINE + 5 +341 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11669.692265 + 30 +0.0 + 11 +5537.5 + 21 +11669.692265 + 31 +0.0 + 0 +LINE + 5 +342 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11669.692265 + 30 +0.0 + 11 +5612.5 + 21 +11669.692265 + 31 +0.0 + 0 +LINE + 5 +343 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11669.692265 + 30 +0.0 + 11 +5687.5 + 21 +11669.692265 + 31 +0.0 + 0 +LINE + 5 +344 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11691.3429 + 30 +0.0 + 11 +5575.0 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +345 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11691.3429 + 30 +0.0 + 11 +5650.0 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +346 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11691.3429 + 30 +0.0 + 11 +5710.0 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +347 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11712.993535 + 30 +0.0 + 11 +5537.5 + 21 +11712.993535 + 31 +0.0 + 0 +LINE + 5 +348 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11712.993535 + 30 +0.0 + 11 +5612.5 + 21 +11712.993535 + 31 +0.0 + 0 +LINE + 5 +349 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11712.993535 + 30 +0.0 + 11 +5687.5 + 21 +11712.993535 + 31 +0.0 + 0 +LINE + 5 +34A + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11171.72766 + 30 +0.0 + 11 +5575.0 + 21 +11171.72766 + 31 +0.0 + 0 +LINE + 5 +34B + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11171.72766 + 30 +0.0 + 11 +5650.0 + 21 +11171.72766 + 31 +0.0 + 0 +LINE + 5 +34C + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11171.72766 + 30 +0.0 + 11 +5710.0 + 21 +11171.72766 + 31 +0.0 + 0 +LINE + 5 +34D + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11150.077025 + 30 +0.0 + 11 +5537.5 + 21 +11150.077025 + 31 +0.0 + 0 +LINE + 5 +34E + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11150.077025 + 30 +0.0 + 11 +5612.5 + 21 +11150.077025 + 31 +0.0 + 0 +LINE + 5 +34F + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11150.077025 + 30 +0.0 + 11 +5687.5 + 21 +11150.077025 + 31 +0.0 + 0 +LINE + 5 +350 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11128.42639 + 30 +0.0 + 11 +5575.0 + 21 +11128.42639 + 31 +0.0 + 0 +LINE + 5 +351 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11128.42639 + 30 +0.0 + 11 +5650.0 + 21 +11128.42639 + 31 +0.0 + 0 +LINE + 5 +352 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11128.42639 + 30 +0.0 + 11 +5710.0 + 21 +11128.42639 + 31 +0.0 + 0 +LINE + 5 +353 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11106.775755 + 30 +0.0 + 11 +5537.5 + 21 +11106.775755 + 31 +0.0 + 0 +LINE + 5 +354 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11106.775755 + 30 +0.0 + 11 +5612.5 + 21 +11106.775755 + 31 +0.0 + 0 +LINE + 5 +355 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11106.775755 + 30 +0.0 + 11 +5687.5 + 21 +11106.775755 + 31 +0.0 + 0 +LINE + 5 +356 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11085.12512 + 30 +0.0 + 11 +5575.0 + 21 +11085.12512 + 31 +0.0 + 0 +LINE + 5 +357 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11085.12512 + 30 +0.0 + 11 +5650.0 + 21 +11085.12512 + 31 +0.0 + 0 +LINE + 5 +358 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11085.12512 + 30 +0.0 + 11 +5710.0 + 21 +11085.12512 + 31 +0.0 + 0 +LINE + 5 +359 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11063.474485 + 30 +0.0 + 11 +5537.5 + 21 +11063.474485 + 31 +0.0 + 0 +LINE + 5 +35A + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11063.474485 + 30 +0.0 + 11 +5612.5 + 21 +11063.474485 + 31 +0.0 + 0 +LINE + 5 +35B + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11063.474485 + 30 +0.0 + 11 +5687.5 + 21 +11063.474485 + 31 +0.0 + 0 +LINE + 5 +35C + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +11041.82385 + 30 +0.0 + 11 +5575.0 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +35D + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +11041.82385 + 30 +0.0 + 11 +5650.0 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +35E + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +11041.82385 + 30 +0.0 + 11 +5710.0 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +35F + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +11020.173215 + 30 +0.0 + 11 +5537.5 + 21 +11020.173215 + 31 +0.0 + 0 +LINE + 5 +360 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +11020.173215 + 30 +0.0 + 11 +5612.5 + 21 +11020.173215 + 31 +0.0 + 0 +LINE + 5 +361 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +11020.173215 + 30 +0.0 + 11 +5687.5 + 21 +11020.173215 + 31 +0.0 + 0 +LINE + 5 +362 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10998.52258 + 30 +0.0 + 11 +5575.0 + 21 +10998.52258 + 31 +0.0 + 0 +LINE + 5 +363 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10998.52258 + 30 +0.0 + 11 +5650.0 + 21 +10998.52258 + 31 +0.0 + 0 +LINE + 5 +364 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10998.52258 + 30 +0.0 + 11 +5710.0 + 21 +10998.52258 + 31 +0.0 + 0 +LINE + 5 +365 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10976.871945 + 30 +0.0 + 11 +5537.5 + 21 +10976.871945 + 31 +0.0 + 0 +LINE + 5 +366 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10976.871945 + 30 +0.0 + 11 +5612.5 + 21 +10976.871945 + 31 +0.0 + 0 +LINE + 5 +367 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10976.871945 + 30 +0.0 + 11 +5687.5 + 21 +10976.871945 + 31 +0.0 + 0 +LINE + 5 +368 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10955.22131 + 30 +0.0 + 11 +5575.0 + 21 +10955.22131 + 31 +0.0 + 0 +LINE + 5 +369 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10955.22131 + 30 +0.0 + 11 +5650.0 + 21 +10955.22131 + 31 +0.0 + 0 +LINE + 5 +36A + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10955.22131 + 30 +0.0 + 11 +5710.0 + 21 +10955.22131 + 31 +0.0 + 0 +LINE + 5 +36B + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10933.570675 + 30 +0.0 + 11 +5537.5 + 21 +10933.570675 + 31 +0.0 + 0 +LINE + 5 +36C + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10933.570675 + 30 +0.0 + 11 +5612.5 + 21 +10933.570675 + 31 +0.0 + 0 +LINE + 5 +36D + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10933.570675 + 30 +0.0 + 11 +5687.5 + 21 +10933.570675 + 31 +0.0 + 0 +LINE + 5 +36E + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10911.92004 + 30 +0.0 + 11 +5575.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +36F + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10911.92004 + 30 +0.0 + 11 +5650.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +370 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10911.92004 + 30 +0.0 + 11 +5710.0 + 21 +10911.92004 + 31 +0.0 + 0 +LINE + 5 +371 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10890.269405 + 30 +0.0 + 11 +5537.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +372 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10890.269405 + 30 +0.0 + 11 +5612.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +373 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10890.269405 + 30 +0.0 + 11 +5687.5 + 21 +10890.269405 + 31 +0.0 + 0 +LINE + 5 +374 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10868.61877 + 30 +0.0 + 11 +5575.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +375 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10868.61877 + 30 +0.0 + 11 +5650.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +376 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10868.61877 + 30 +0.0 + 11 +5710.0 + 21 +10868.61877 + 31 +0.0 + 0 +LINE + 5 +377 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10846.968135 + 30 +0.0 + 11 +5537.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +378 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10846.968135 + 30 +0.0 + 11 +5612.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +379 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10846.968135 + 30 +0.0 + 11 +5687.5 + 21 +10846.968135 + 31 +0.0 + 0 +LINE + 5 +37A + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10825.3175 + 30 +0.0 + 11 +5575.0 + 21 +10825.3175 + 31 +0.0 + 0 +LINE + 5 +37B + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10825.3175 + 30 +0.0 + 11 +5650.0 + 21 +10825.3175 + 31 +0.0 + 0 +LINE + 5 +37C + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10803.666865 + 30 +0.0 + 11 +5537.5 + 21 +10803.666865 + 31 +0.0 + 0 +LINE + 5 +37D + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10803.666865 + 30 +0.0 + 11 +5612.5 + 21 +10803.666865 + 31 +0.0 + 0 +LINE + 5 +37E + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10782.01623 + 30 +0.0 + 11 +5575.0 + 21 +10782.01623 + 31 +0.0 + 0 +LINE + 5 +37F + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10760.365595 + 30 +0.0 + 11 +5537.5 + 21 +10760.365595 + 31 +0.0 + 0 +LINE + 5 +380 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10760.365595 + 30 +0.0 + 11 +5598.291572 + 21 +10760.365595 + 31 +0.0 + 0 +LINE + 5 +381 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10738.71496 + 30 +0.0 + 11 +5575.0 + 21 +10738.71496 + 31 +0.0 + 0 +LINE + 5 +382 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10717.064325 + 30 +0.0 + 11 +5537.5 + 21 +10717.064325 + 31 +0.0 + 0 +LINE + 5 +383 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10673.763055 + 30 +0.0 + 11 +5522.357461 + 21 +10673.763055 + 31 +0.0 + 0 +LINE + 5 +384 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10998.522605 + 30 +0.0 + 11 +5687.499961 + 21 +11020.17324 + 31 +0.0 + 0 +LINE + 5 +385 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +11063.474511 + 30 +0.0 + 11 +5649.999961 + 21 +11085.125146 + 31 +0.0 + 0 +LINE + 5 +386 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +11128.426416 + 30 +0.0 + 11 +5612.499961 + 21 +11150.077051 + 31 +0.0 + 0 +LINE + 5 +387 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +11193.378321 + 30 +0.0 + 11 +5574.999961 + 21 +11215.028956 + 31 +0.0 + 0 +LINE + 5 +388 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +11258.330226 + 30 +0.0 + 11 +5537.499961 + 21 +11279.980861 + 31 +0.0 + 0 +LINE + 5 +389 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11323.282132 + 30 +0.0 + 11 +5510.0 + 21 +11327.61219 + 31 +0.0 + 0 +LINE + 5 +38A + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10955.221335 + 30 +0.0 + 11 +5687.499961 + 21 +10976.87197 + 31 +0.0 + 0 +LINE + 5 +38B + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +11020.17324 + 30 +0.0 + 11 +5649.999961 + 21 +11041.823875 + 31 +0.0 + 0 +LINE + 5 +38C + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +11085.125146 + 30 +0.0 + 11 +5612.499961 + 21 +11106.775781 + 31 +0.0 + 0 +LINE + 5 +38D + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +11150.077051 + 30 +0.0 + 11 +5574.999961 + 21 +11171.727686 + 31 +0.0 + 0 +LINE + 5 +38E + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +11215.028956 + 30 +0.0 + 11 +5537.499961 + 21 +11236.679591 + 31 +0.0 + 0 +LINE + 5 +38F + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11279.980862 + 30 +0.0 + 11 +5510.0 + 21 +11284.31092 + 31 +0.0 + 0 +LINE + 5 +390 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10911.920065 + 30 +0.0 + 11 +5687.499961 + 21 +10933.5707 + 31 +0.0 + 0 +LINE + 5 +391 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10976.87197 + 30 +0.0 + 11 +5649.999961 + 21 +10998.522605 + 31 +0.0 + 0 +LINE + 5 +392 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +11041.823876 + 30 +0.0 + 11 +5612.499961 + 21 +11063.474511 + 31 +0.0 + 0 +LINE + 5 +393 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +11106.775781 + 30 +0.0 + 11 +5574.999961 + 21 +11128.426416 + 31 +0.0 + 0 +LINE + 5 +394 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +11171.727686 + 30 +0.0 + 11 +5537.499961 + 21 +11193.378321 + 31 +0.0 + 0 +LINE + 5 +395 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11236.679591 + 30 +0.0 + 11 +5510.0 + 21 +11241.00965 + 31 +0.0 + 0 +LINE + 5 +396 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10868.618795 + 30 +0.0 + 11 +5687.499961 + 21 +10890.26943 + 31 +0.0 + 0 +LINE + 5 +397 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10933.5707 + 30 +0.0 + 11 +5649.999961 + 21 +10955.221335 + 31 +0.0 + 0 +LINE + 5 +398 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10998.522605 + 30 +0.0 + 11 +5612.499961 + 21 +11020.17324 + 31 +0.0 + 0 +LINE + 5 +399 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +11063.474511 + 30 +0.0 + 11 +5574.999961 + 21 +11085.125146 + 31 +0.0 + 0 +LINE + 5 +39A + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +11128.426416 + 30 +0.0 + 11 +5537.499961 + 21 +11150.077051 + 31 +0.0 + 0 +LINE + 5 +39B + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11193.378321 + 30 +0.0 + 11 +5510.0 + 21 +11197.70838 + 31 +0.0 + 0 +LINE + 5 +39C + 8 +0 + 62 + 0 + 10 +5688.636278 + 20 +10845.0 + 30 +0.0 + 11 +5687.499961 + 21 +10846.96816 + 31 +0.0 + 0 +LINE + 5 +39D + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10890.26943 + 30 +0.0 + 11 +5649.999961 + 21 +10911.920065 + 31 +0.0 + 0 +LINE + 5 +39E + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10955.221335 + 30 +0.0 + 11 +5612.499961 + 21 +10976.87197 + 31 +0.0 + 0 +LINE + 5 +39F + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +11020.173241 + 30 +0.0 + 11 +5574.999961 + 21 +11041.823876 + 31 +0.0 + 0 +LINE + 5 +3A0 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +11085.125146 + 30 +0.0 + 11 +5537.499961 + 21 +11106.775781 + 31 +0.0 + 0 +LINE + 5 +3A1 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11150.077051 + 30 +0.0 + 11 +5510.0 + 21 +11154.40711 + 31 +0.0 + 0 +LINE + 5 +3A2 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10846.96816 + 30 +0.0 + 11 +5649.999961 + 21 +10868.618795 + 31 +0.0 + 0 +LINE + 5 +3A3 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10911.920065 + 30 +0.0 + 11 +5612.499961 + 21 +10933.5707 + 31 +0.0 + 0 +LINE + 5 +3A4 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10976.87197 + 30 +0.0 + 11 +5574.999961 + 21 +10998.522605 + 31 +0.0 + 0 +LINE + 5 +3A5 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +11041.823876 + 30 +0.0 + 11 +5537.499961 + 21 +11063.474511 + 31 +0.0 + 0 +LINE + 5 +3A6 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11106.775781 + 30 +0.0 + 11 +5510.0 + 21 +11111.10584 + 31 +0.0 + 0 +LINE + 5 +3A7 + 8 +0 + 62 + 0 + 10 +5652.081294 + 20 +10821.71255 + 30 +0.0 + 11 +5649.999961 + 21 +10825.317525 + 31 +0.0 + 0 +LINE + 5 +3A8 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10868.618795 + 30 +0.0 + 11 +5612.499961 + 21 +10890.26943 + 31 +0.0 + 0 +LINE + 5 +3A9 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10933.5707 + 30 +0.0 + 11 +5574.999961 + 21 +10955.221335 + 31 +0.0 + 0 +LINE + 5 +3AA + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10998.522606 + 30 +0.0 + 11 +5537.499961 + 21 +11020.173241 + 31 +0.0 + 0 +LINE + 5 +3AB + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11063.474511 + 30 +0.0 + 11 +5510.0 + 21 +11067.80457 + 31 +0.0 + 0 +LINE + 5 +3AC + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10825.317525 + 30 +0.0 + 11 +5612.499961 + 21 +10846.96816 + 31 +0.0 + 0 +LINE + 5 +3AD + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10890.26943 + 30 +0.0 + 11 +5574.999961 + 21 +10911.920065 + 31 +0.0 + 0 +LINE + 5 +3AE + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10955.221335 + 30 +0.0 + 11 +5537.499961 + 21 +10976.87197 + 31 +0.0 + 0 +LINE + 5 +3AF + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +11020.173241 + 30 +0.0 + 11 +5510.0 + 21 +11024.5033 + 31 +0.0 + 0 +LINE + 5 +3B0 + 8 +0 + 62 + 0 + 10 +5621.932945 + 20 +10787.328483 + 30 +0.0 + 11 +5612.499961 + 21 +10803.66689 + 31 +0.0 + 0 +LINE + 5 +3B1 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10846.96816 + 30 +0.0 + 11 +5574.999961 + 21 +10868.618795 + 31 +0.0 + 0 +LINE + 5 +3B2 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10911.920065 + 30 +0.0 + 11 +5537.499961 + 21 +10933.5707 + 31 +0.0 + 0 +LINE + 5 +3B3 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +10976.871971 + 30 +0.0 + 11 +5510.0 + 21 +10981.20203 + 31 +0.0 + 0 +LINE + 5 +3B4 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10803.66689 + 30 +0.0 + 11 +5574.999961 + 21 +10825.317525 + 31 +0.0 + 0 +LINE + 5 +3B5 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10868.618795 + 30 +0.0 + 11 +5537.499961 + 21 +10890.26943 + 31 +0.0 + 0 +LINE + 5 +3B6 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +10933.5707 + 30 +0.0 + 11 +5510.0 + 21 +10937.90076 + 31 +0.0 + 0 +LINE + 5 +3B7 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10760.36562 + 30 +0.0 + 11 +5574.999961 + 21 +10782.016255 + 31 +0.0 + 0 +LINE + 5 +3B8 + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10825.317525 + 30 +0.0 + 11 +5537.499961 + 21 +10846.96816 + 31 +0.0 + 0 +LINE + 5 +3B9 + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +10890.26943 + 30 +0.0 + 11 +5510.0 + 21 +10894.59949 + 31 +0.0 + 0 +LINE + 5 +3BA + 8 +0 + 62 + 0 + 10 +5576.710421 + 20 +10735.752381 + 30 +0.0 + 11 +5574.999961 + 21 +10738.714985 + 31 +0.0 + 0 +LINE + 5 +3BB + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10782.016255 + 30 +0.0 + 11 +5537.499961 + 21 +10803.66689 + 31 +0.0 + 0 +LINE + 5 +3BC + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +10846.96816 + 30 +0.0 + 11 +5510.0 + 21 +10851.29822 + 31 +0.0 + 0 +LINE + 5 +3BD + 8 +0 + 62 + 0 + 10 +5549.999961 + 20 +10738.714985 + 30 +0.0 + 11 +5537.499961 + 21 +10760.36562 + 31 +0.0 + 0 +LINE + 5 +3BE + 8 +0 + 62 + 0 + 10 +5512.499961 + 20 +10803.66689 + 30 +0.0 + 11 +5510.0 + 21 +10807.99695 + 31 +0.0 + 0 +LINE + 5 +3BF + 8 +0 + 62 + 0 + 10 +5546.562072 + 20 +10701.368314 + 30 +0.0 + 11 +5537.499962 + 21 +10717.06435 + 31 +0.0 + 0 +LINE + 5 +3C0 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10760.36562 + 30 +0.0 + 11 +5510.0 + 21 +10764.69568 + 31 +0.0 + 0 +LINE + 5 +3C1 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10717.06435 + 30 +0.0 + 11 +5510.0 + 21 +10721.39441 + 31 +0.0 + 0 +LINE + 5 +3C2 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10673.76308 + 30 +0.0 + 11 +5510.0 + 21 +10678.09314 + 31 +0.0 + 0 +LINE + 5 +3C3 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11041.823875 + 30 +0.0 + 11 +5687.49996 + 21 +11063.47451 + 31 +0.0 + 0 +LINE + 5 +3C4 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11106.775781 + 30 +0.0 + 11 +5649.99996 + 21 +11128.426416 + 31 +0.0 + 0 +LINE + 5 +3C5 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11171.727686 + 30 +0.0 + 11 +5612.49996 + 21 +11193.378321 + 31 +0.0 + 0 +LINE + 5 +3C6 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11236.679591 + 30 +0.0 + 11 +5574.99996 + 21 +11258.330226 + 31 +0.0 + 0 +LINE + 5 +3C7 + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11301.631497 + 30 +0.0 + 11 +5537.49996 + 21 +11323.282132 + 31 +0.0 + 0 +LINE + 5 +3C8 + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11366.583402 + 30 +0.0 + 11 +5510.0 + 21 +11370.91346 + 31 +0.0 + 0 +LINE + 5 +3C9 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11085.125146 + 30 +0.0 + 11 +5687.49996 + 21 +11106.775781 + 31 +0.0 + 0 +LINE + 5 +3CA + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11150.077051 + 30 +0.0 + 11 +5649.99996 + 21 +11171.727686 + 31 +0.0 + 0 +LINE + 5 +3CB + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11215.028956 + 30 +0.0 + 11 +5612.49996 + 21 +11236.679591 + 31 +0.0 + 0 +LINE + 5 +3CC + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11279.980861 + 30 +0.0 + 11 +5574.99996 + 21 +11301.631496 + 31 +0.0 + 0 +LINE + 5 +3CD + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11344.932767 + 30 +0.0 + 11 +5537.49996 + 21 +11366.583402 + 31 +0.0 + 0 +LINE + 5 +3CE + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11409.884672 + 30 +0.0 + 11 +5510.0 + 21 +11414.21473 + 31 +0.0 + 0 +LINE + 5 +3CF + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11128.426416 + 30 +0.0 + 11 +5687.49996 + 21 +11150.077051 + 31 +0.0 + 0 +LINE + 5 +3D0 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11193.378321 + 30 +0.0 + 11 +5649.99996 + 21 +11215.028956 + 31 +0.0 + 0 +LINE + 5 +3D1 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11258.330226 + 30 +0.0 + 11 +5612.49996 + 21 +11279.980861 + 31 +0.0 + 0 +LINE + 5 +3D2 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11323.282132 + 30 +0.0 + 11 +5574.99996 + 21 +11344.932767 + 31 +0.0 + 0 +LINE + 5 +3D3 + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11388.234037 + 30 +0.0 + 11 +5537.49996 + 21 +11409.884672 + 31 +0.0 + 0 +LINE + 5 +3D4 + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11453.185942 + 30 +0.0 + 11 +5510.0 + 21 +11457.516 + 31 +0.0 + 0 +LINE + 5 +3D5 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11171.727686 + 30 +0.0 + 11 +5687.49996 + 21 +11193.378321 + 31 +0.0 + 0 +LINE + 5 +3D6 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11236.679591 + 30 +0.0 + 11 +5649.99996 + 21 +11258.330226 + 31 +0.0 + 0 +LINE + 5 +3D7 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11301.631496 + 30 +0.0 + 11 +5612.49996 + 21 +11323.282131 + 31 +0.0 + 0 +LINE + 5 +3D8 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11366.583402 + 30 +0.0 + 11 +5574.99996 + 21 +11388.234037 + 31 +0.0 + 0 +LINE + 5 +3D9 + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11431.535307 + 30 +0.0 + 11 +5537.49996 + 21 +11453.185942 + 31 +0.0 + 0 +LINE + 5 +3DA + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11496.487212 + 30 +0.0 + 11 +5510.0 + 21 +11500.81727 + 31 +0.0 + 0 +LINE + 5 +3DB + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11215.028956 + 30 +0.0 + 11 +5687.49996 + 21 +11236.679591 + 31 +0.0 + 0 +LINE + 5 +3DC + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11279.980861 + 30 +0.0 + 11 +5649.99996 + 21 +11301.631496 + 31 +0.0 + 0 +LINE + 5 +3DD + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11344.932767 + 30 +0.0 + 11 +5612.49996 + 21 +11366.583402 + 31 +0.0 + 0 +LINE + 5 +3DE + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11409.884672 + 30 +0.0 + 11 +5574.99996 + 21 +11431.535307 + 31 +0.0 + 0 +LINE + 5 +3DF + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11474.836577 + 30 +0.0 + 11 +5537.49996 + 21 +11496.487212 + 31 +0.0 + 0 +LINE + 5 +3E0 + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11539.788482 + 30 +0.0 + 11 +5510.0 + 21 +11544.11854 + 31 +0.0 + 0 +LINE + 5 +3E1 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11258.330226 + 30 +0.0 + 11 +5687.49996 + 21 +11279.980861 + 31 +0.0 + 0 +LINE + 5 +3E2 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11323.282131 + 30 +0.0 + 11 +5649.99996 + 21 +11344.932766 + 31 +0.0 + 0 +LINE + 5 +3E3 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11388.234037 + 30 +0.0 + 11 +5612.49996 + 21 +11409.884672 + 31 +0.0 + 0 +LINE + 5 +3E4 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11453.185942 + 30 +0.0 + 11 +5574.99996 + 21 +11474.836577 + 31 +0.0 + 0 +LINE + 5 +3E5 + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11518.137847 + 30 +0.0 + 11 +5537.49996 + 21 +11539.788482 + 31 +0.0 + 0 +LINE + 5 +3E6 + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11583.089753 + 30 +0.0 + 11 +5510.0 + 21 +11587.41981 + 31 +0.0 + 0 +LINE + 5 +3E7 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11301.631496 + 30 +0.0 + 11 +5687.49996 + 21 +11323.282131 + 31 +0.0 + 0 +LINE + 5 +3E8 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11366.583402 + 30 +0.0 + 11 +5649.99996 + 21 +11388.234037 + 31 +0.0 + 0 +LINE + 5 +3E9 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11431.535307 + 30 +0.0 + 11 +5612.49996 + 21 +11453.185942 + 31 +0.0 + 0 +LINE + 5 +3EA + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11496.487212 + 30 +0.0 + 11 +5574.99996 + 21 +11518.137847 + 31 +0.0 + 0 +LINE + 5 +3EB + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11561.439117 + 30 +0.0 + 11 +5537.49996 + 21 +11583.089752 + 31 +0.0 + 0 +LINE + 5 +3EC + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11626.391023 + 30 +0.0 + 11 +5510.0 + 21 +11630.72108 + 31 +0.0 + 0 +LINE + 5 +3ED + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11344.932766 + 30 +0.0 + 11 +5687.49996 + 21 +11366.583401 + 31 +0.0 + 0 +LINE + 5 +3EE + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11409.884672 + 30 +0.0 + 11 +5649.99996 + 21 +11431.535307 + 31 +0.0 + 0 +LINE + 5 +3EF + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11474.836577 + 30 +0.0 + 11 +5612.49996 + 21 +11496.487212 + 31 +0.0 + 0 +LINE + 5 +3F0 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11539.788482 + 30 +0.0 + 11 +5574.99996 + 21 +11561.439117 + 31 +0.0 + 0 +LINE + 5 +3F1 + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11604.740388 + 30 +0.0 + 11 +5537.49996 + 21 +11626.391023 + 31 +0.0 + 0 +LINE + 5 +3F2 + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11669.692293 + 30 +0.0 + 11 +5510.0 + 21 +11674.02235 + 31 +0.0 + 0 +LINE + 5 +3F3 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11388.234037 + 30 +0.0 + 11 +5687.49996 + 21 +11409.884672 + 31 +0.0 + 0 +LINE + 5 +3F4 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11453.185942 + 30 +0.0 + 11 +5649.99996 + 21 +11474.836577 + 31 +0.0 + 0 +LINE + 5 +3F5 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11518.137847 + 30 +0.0 + 11 +5612.49996 + 21 +11539.788482 + 31 +0.0 + 0 +LINE + 5 +3F6 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11583.089752 + 30 +0.0 + 11 +5574.99996 + 21 +11604.740387 + 31 +0.0 + 0 +LINE + 5 +3F7 + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11648.041658 + 30 +0.0 + 11 +5537.49996 + 21 +11669.692293 + 31 +0.0 + 0 +LINE + 5 +3F8 + 8 +0 + 62 + 0 + 10 +5512.49996 + 20 +11712.993563 + 30 +0.0 + 11 +5510.0 + 21 +11717.32362 + 31 +0.0 + 0 +LINE + 5 +3F9 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11431.535307 + 30 +0.0 + 11 +5687.49996 + 21 +11453.185942 + 31 +0.0 + 0 +LINE + 5 +3FA + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11496.487212 + 30 +0.0 + 11 +5649.99996 + 21 +11518.137847 + 31 +0.0 + 0 +LINE + 5 +3FB + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11561.439117 + 30 +0.0 + 11 +5612.49996 + 21 +11583.089752 + 31 +0.0 + 0 +LINE + 5 +3FC + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11626.391023 + 30 +0.0 + 11 +5574.99996 + 21 +11648.041658 + 31 +0.0 + 0 +LINE + 5 +3FD + 8 +0 + 62 + 0 + 10 +5549.99996 + 20 +11691.342928 + 30 +0.0 + 11 +5537.49996 + 21 +11712.993563 + 31 +0.0 + 0 +LINE + 5 +3FE + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11474.836577 + 30 +0.0 + 11 +5687.49996 + 21 +11496.487212 + 31 +0.0 + 0 +LINE + 5 +3FF + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11539.788482 + 30 +0.0 + 11 +5649.99996 + 21 +11561.439117 + 31 +0.0 + 0 +LINE + 5 +400 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11604.740387 + 30 +0.0 + 11 +5612.49996 + 21 +11626.391022 + 31 +0.0 + 0 +LINE + 5 +401 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11669.692293 + 30 +0.0 + 11 +5574.99996 + 21 +11691.342928 + 31 +0.0 + 0 +LINE + 5 +402 + 8 +0 + 62 + 0 + 10 +5699.99996 + 20 +11518.137847 + 30 +0.0 + 11 +5687.49996 + 21 +11539.788482 + 31 +0.0 + 0 +LINE + 5 +403 + 8 +0 + 62 + 0 + 10 +5662.49996 + 20 +11583.089752 + 30 +0.0 + 11 +5649.99996 + 21 +11604.740387 + 31 +0.0 + 0 +LINE + 5 +404 + 8 +0 + 62 + 0 + 10 +5624.99996 + 20 +11648.041658 + 30 +0.0 + 11 +5612.49996 + 21 +11669.692293 + 31 +0.0 + 0 +LINE + 5 +405 + 8 +0 + 62 + 0 + 10 +5587.49996 + 20 +11712.993563 + 30 +0.0 + 11 +5577.681288 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +406 + 8 +0 + 62 + 0 + 10 +5699.999959 + 20 +11561.439117 + 30 +0.0 + 11 +5687.499959 + 21 +11583.089752 + 31 +0.0 + 0 +LINE + 5 +407 + 8 +0 + 62 + 0 + 10 +5662.499959 + 20 +11626.391022 + 30 +0.0 + 11 +5649.999959 + 21 +11648.041657 + 31 +0.0 + 0 +LINE + 5 +408 + 8 +0 + 62 + 0 + 10 +5624.999959 + 20 +11691.342928 + 30 +0.0 + 11 +5612.499959 + 21 +11712.993563 + 31 +0.0 + 0 +LINE + 5 +409 + 8 +0 + 62 + 0 + 10 +5699.999959 + 20 +11604.740387 + 30 +0.0 + 11 +5687.499959 + 21 +11626.391022 + 31 +0.0 + 0 +LINE + 5 +40A + 8 +0 + 62 + 0 + 10 +5662.499959 + 20 +11669.692293 + 30 +0.0 + 11 +5649.999959 + 21 +11691.342928 + 31 +0.0 + 0 +LINE + 5 +40B + 8 +0 + 62 + 0 + 10 +5699.999959 + 20 +11648.041657 + 30 +0.0 + 11 +5687.499959 + 21 +11669.692292 + 31 +0.0 + 0 +LINE + 5 +40C + 8 +0 + 62 + 0 + 10 +5662.499959 + 20 +11712.993563 + 30 +0.0 + 11 +5652.681288 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +40D + 8 +0 + 62 + 0 + 10 +5699.999959 + 20 +11691.342928 + 30 +0.0 + 11 +5687.499959 + 21 +11712.993563 + 31 +0.0 + 0 +LINE + 5 +40E + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11015.84313 + 30 +0.0 + 11 +5512.500003 + 21 +11020.173262 + 31 +0.0 + 0 +LINE + 5 +40F + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11063.474532 + 30 +0.0 + 11 +5550.000003 + 21 +11085.125167 + 31 +0.0 + 0 +LINE + 5 +410 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11128.426437 + 30 +0.0 + 11 +5587.500003 + 21 +11150.077072 + 31 +0.0 + 0 +LINE + 5 +411 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11193.378342 + 30 +0.0 + 11 +5625.000003 + 21 +11215.028977 + 31 +0.0 + 0 +LINE + 5 +412 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11258.330248 + 30 +0.0 + 11 +5662.500003 + 21 +11279.980883 + 31 +0.0 + 0 +LINE + 5 +413 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11323.282153 + 30 +0.0 + 11 +5700.000003 + 21 +11344.932788 + 31 +0.0 + 0 +LINE + 5 +414 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11059.1444 + 30 +0.0 + 11 +5512.500003 + 21 +11063.474532 + 31 +0.0 + 0 +LINE + 5 +415 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11106.775802 + 30 +0.0 + 11 +5550.000003 + 21 +11128.426437 + 31 +0.0 + 0 +LINE + 5 +416 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11171.727707 + 30 +0.0 + 11 +5587.500003 + 21 +11193.378342 + 31 +0.0 + 0 +LINE + 5 +417 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11236.679612 + 30 +0.0 + 11 +5625.000003 + 21 +11258.330248 + 31 +0.0 + 0 +LINE + 5 +418 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11301.631518 + 30 +0.0 + 11 +5662.500003 + 21 +11323.282153 + 31 +0.0 + 0 +LINE + 5 +419 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11366.583423 + 30 +0.0 + 11 +5700.000003 + 21 +11388.234058 + 31 +0.0 + 0 +LINE + 5 +41A + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11102.44567 + 30 +0.0 + 11 +5512.500003 + 21 +11106.775802 + 31 +0.0 + 0 +LINE + 5 +41B + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11150.077072 + 30 +0.0 + 11 +5550.000003 + 21 +11171.727707 + 31 +0.0 + 0 +LINE + 5 +41C + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11215.028977 + 30 +0.0 + 11 +5587.500003 + 21 +11236.679612 + 31 +0.0 + 0 +LINE + 5 +41D + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11279.980883 + 30 +0.0 + 11 +5625.000003 + 21 +11301.631518 + 31 +0.0 + 0 +LINE + 5 +41E + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11344.932788 + 30 +0.0 + 11 +5662.500003 + 21 +11366.583423 + 31 +0.0 + 0 +LINE + 5 +41F + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11409.884693 + 30 +0.0 + 11 +5700.000003 + 21 +11431.535328 + 31 +0.0 + 0 +LINE + 5 +420 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11145.74694 + 30 +0.0 + 11 +5512.500003 + 21 +11150.077072 + 31 +0.0 + 0 +LINE + 5 +421 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11193.378342 + 30 +0.0 + 11 +5550.000003 + 21 +11215.028977 + 31 +0.0 + 0 +LINE + 5 +422 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11258.330247 + 30 +0.0 + 11 +5587.500003 + 21 +11279.980883 + 31 +0.0 + 0 +LINE + 5 +423 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11323.282153 + 30 +0.0 + 11 +5625.000003 + 21 +11344.932788 + 31 +0.0 + 0 +LINE + 5 +424 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11388.234058 + 30 +0.0 + 11 +5662.500003 + 21 +11409.884693 + 31 +0.0 + 0 +LINE + 5 +425 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11453.185963 + 30 +0.0 + 11 +5700.000003 + 21 +11474.836598 + 31 +0.0 + 0 +LINE + 5 +426 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11189.04821 + 30 +0.0 + 11 +5512.500003 + 21 +11193.378342 + 31 +0.0 + 0 +LINE + 5 +427 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11236.679612 + 30 +0.0 + 11 +5550.000003 + 21 +11258.330247 + 31 +0.0 + 0 +LINE + 5 +428 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11301.631518 + 30 +0.0 + 11 +5587.500003 + 21 +11323.282153 + 31 +0.0 + 0 +LINE + 5 +429 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11366.583423 + 30 +0.0 + 11 +5625.000003 + 21 +11388.234058 + 31 +0.0 + 0 +LINE + 5 +42A + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11431.535328 + 30 +0.0 + 11 +5662.500003 + 21 +11453.185963 + 31 +0.0 + 0 +LINE + 5 +42B + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11496.487233 + 30 +0.0 + 11 +5700.000003 + 21 +11518.137869 + 31 +0.0 + 0 +LINE + 5 +42C + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11232.34948 + 30 +0.0 + 11 +5512.500003 + 21 +11236.679612 + 31 +0.0 + 0 +LINE + 5 +42D + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11279.980882 + 30 +0.0 + 11 +5550.000003 + 21 +11301.631518 + 31 +0.0 + 0 +LINE + 5 +42E + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11344.932788 + 30 +0.0 + 11 +5587.500003 + 21 +11366.583423 + 31 +0.0 + 0 +LINE + 5 +42F + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11409.884693 + 30 +0.0 + 11 +5625.000003 + 21 +11431.535328 + 31 +0.0 + 0 +LINE + 5 +430 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11474.836598 + 30 +0.0 + 11 +5662.500003 + 21 +11496.487233 + 31 +0.0 + 0 +LINE + 5 +431 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11539.788504 + 30 +0.0 + 11 +5700.000003 + 21 +11561.439139 + 31 +0.0 + 0 +LINE + 5 +432 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11275.65075 + 30 +0.0 + 11 +5512.500003 + 21 +11279.980882 + 31 +0.0 + 0 +LINE + 5 +433 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11323.282153 + 30 +0.0 + 11 +5550.000003 + 21 +11344.932788 + 31 +0.0 + 0 +LINE + 5 +434 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11388.234058 + 30 +0.0 + 11 +5587.500003 + 21 +11409.884693 + 31 +0.0 + 0 +LINE + 5 +435 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11453.185963 + 30 +0.0 + 11 +5625.000003 + 21 +11474.836598 + 31 +0.0 + 0 +LINE + 5 +436 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11518.137868 + 30 +0.0 + 11 +5662.500003 + 21 +11539.788504 + 31 +0.0 + 0 +LINE + 5 +437 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11583.089774 + 30 +0.0 + 11 +5700.000003 + 21 +11604.740409 + 31 +0.0 + 0 +LINE + 5 +438 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11318.95202 + 30 +0.0 + 11 +5512.500003 + 21 +11323.282153 + 31 +0.0 + 0 +LINE + 5 +439 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11366.583423 + 30 +0.0 + 11 +5550.000003 + 21 +11388.234058 + 31 +0.0 + 0 +LINE + 5 +43A + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11431.535328 + 30 +0.0 + 11 +5587.500003 + 21 +11453.185963 + 31 +0.0 + 0 +LINE + 5 +43B + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11496.487233 + 30 +0.0 + 11 +5625.000003 + 21 +11518.137868 + 31 +0.0 + 0 +LINE + 5 +43C + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11561.439139 + 30 +0.0 + 11 +5662.500003 + 21 +11583.089774 + 31 +0.0 + 0 +LINE + 5 +43D + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11626.391044 + 30 +0.0 + 11 +5700.000003 + 21 +11648.041679 + 31 +0.0 + 0 +LINE + 5 +43E + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11362.25329 + 30 +0.0 + 11 +5512.500003 + 21 +11366.583423 + 31 +0.0 + 0 +LINE + 5 +43F + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11409.884693 + 30 +0.0 + 11 +5550.000003 + 21 +11431.535328 + 31 +0.0 + 0 +LINE + 5 +440 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11474.836598 + 30 +0.0 + 11 +5587.500003 + 21 +11496.487233 + 31 +0.0 + 0 +LINE + 5 +441 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11539.788503 + 30 +0.0 + 11 +5625.000003 + 21 +11561.439139 + 31 +0.0 + 0 +LINE + 5 +442 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11604.740409 + 30 +0.0 + 11 +5662.500003 + 21 +11626.391044 + 31 +0.0 + 0 +LINE + 5 +443 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11669.692314 + 30 +0.0 + 11 +5700.000003 + 21 +11691.342949 + 31 +0.0 + 0 +LINE + 5 +444 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11405.55456 + 30 +0.0 + 11 +5512.500004 + 21 +11409.884693 + 31 +0.0 + 0 +LINE + 5 +445 + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11453.185963 + 30 +0.0 + 11 +5550.000004 + 21 +11474.836598 + 31 +0.0 + 0 +LINE + 5 +446 + 8 +0 + 62 + 0 + 10 +5575.000004 + 20 +11518.137868 + 30 +0.0 + 11 +5587.500004 + 21 +11539.788503 + 31 +0.0 + 0 +LINE + 5 +447 + 8 +0 + 62 + 0 + 10 +5612.500004 + 20 +11583.089774 + 30 +0.0 + 11 +5625.000004 + 21 +11604.740409 + 31 +0.0 + 0 +LINE + 5 +448 + 8 +0 + 62 + 0 + 10 +5650.000004 + 20 +11648.041679 + 30 +0.0 + 11 +5662.500004 + 21 +11669.692314 + 31 +0.0 + 0 +LINE + 5 +449 + 8 +0 + 62 + 0 + 10 +5687.500004 + 20 +11712.993584 + 30 +0.0 + 11 +5697.318662 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +44A + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11448.85583 + 30 +0.0 + 11 +5512.500004 + 21 +11453.185963 + 31 +0.0 + 0 +LINE + 5 +44B + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11496.487233 + 30 +0.0 + 11 +5550.000004 + 21 +11518.137868 + 31 +0.0 + 0 +LINE + 5 +44C + 8 +0 + 62 + 0 + 10 +5575.000004 + 20 +11561.439138 + 30 +0.0 + 11 +5587.500004 + 21 +11583.089774 + 31 +0.0 + 0 +LINE + 5 +44D + 8 +0 + 62 + 0 + 10 +5612.500004 + 20 +11626.391044 + 30 +0.0 + 11 +5625.000004 + 21 +11648.041679 + 31 +0.0 + 0 +LINE + 5 +44E + 8 +0 + 62 + 0 + 10 +5650.000004 + 20 +11691.342949 + 30 +0.0 + 11 +5662.500004 + 21 +11712.993584 + 31 +0.0 + 0 +LINE + 5 +44F + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11492.1571 + 30 +0.0 + 11 +5512.500004 + 21 +11496.487233 + 31 +0.0 + 0 +LINE + 5 +450 + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11539.788503 + 30 +0.0 + 11 +5550.000004 + 21 +11561.439138 + 31 +0.0 + 0 +LINE + 5 +451 + 8 +0 + 62 + 0 + 10 +5575.000004 + 20 +11604.740409 + 30 +0.0 + 11 +5587.500004 + 21 +11626.391044 + 31 +0.0 + 0 +LINE + 5 +452 + 8 +0 + 62 + 0 + 10 +5612.500004 + 20 +11669.692314 + 30 +0.0 + 11 +5625.000004 + 21 +11691.342949 + 31 +0.0 + 0 +LINE + 5 +453 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11535.45837 + 30 +0.0 + 11 +5512.500004 + 21 +11539.788503 + 31 +0.0 + 0 +LINE + 5 +454 + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11583.089773 + 30 +0.0 + 11 +5550.000004 + 21 +11604.740409 + 31 +0.0 + 0 +LINE + 5 +455 + 8 +0 + 62 + 0 + 10 +5575.000004 + 20 +11648.041679 + 30 +0.0 + 11 +5587.500004 + 21 +11669.692314 + 31 +0.0 + 0 +LINE + 5 +456 + 8 +0 + 62 + 0 + 10 +5612.500004 + 20 +11712.993584 + 30 +0.0 + 11 +5622.318663 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +457 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11578.75964 + 30 +0.0 + 11 +5512.500004 + 21 +11583.089773 + 31 +0.0 + 0 +LINE + 5 +458 + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11626.391044 + 30 +0.0 + 11 +5550.000004 + 21 +11648.041679 + 31 +0.0 + 0 +LINE + 5 +459 + 8 +0 + 62 + 0 + 10 +5575.000004 + 20 +11691.342949 + 30 +0.0 + 11 +5587.500004 + 21 +11712.993584 + 31 +0.0 + 0 +LINE + 5 +45A + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11622.06091 + 30 +0.0 + 11 +5512.500004 + 21 +11626.391044 + 31 +0.0 + 0 +LINE + 5 +45B + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11669.692314 + 30 +0.0 + 11 +5550.000004 + 21 +11691.342949 + 31 +0.0 + 0 +LINE + 5 +45C + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11665.36218 + 30 +0.0 + 11 +5512.500004 + 21 +11669.692314 + 31 +0.0 + 0 +LINE + 5 +45D + 8 +0 + 62 + 0 + 10 +5537.500004 + 20 +11712.993584 + 30 +0.0 + 11 +5547.318663 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +45E + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +11708.66345 + 30 +0.0 + 11 +5512.500004 + 21 +11712.993584 + 31 +0.0 + 0 +LINE + 5 +45F + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10972.54186 + 30 +0.0 + 11 +5512.500003 + 21 +10976.871991 + 31 +0.0 + 0 +LINE + 5 +460 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +11020.173262 + 30 +0.0 + 11 +5550.000003 + 21 +11041.823897 + 31 +0.0 + 0 +LINE + 5 +461 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11085.125167 + 30 +0.0 + 11 +5587.500003 + 21 +11106.775802 + 31 +0.0 + 0 +LINE + 5 +462 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11150.077072 + 30 +0.0 + 11 +5625.000003 + 21 +11171.727707 + 31 +0.0 + 0 +LINE + 5 +463 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11215.028977 + 30 +0.0 + 11 +5662.500003 + 21 +11236.679613 + 31 +0.0 + 0 +LINE + 5 +464 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11279.980883 + 30 +0.0 + 11 +5700.000003 + 21 +11301.631518 + 31 +0.0 + 0 +LINE + 5 +465 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10929.24059 + 30 +0.0 + 11 +5512.500003 + 21 +10933.570721 + 31 +0.0 + 0 +LINE + 5 +466 + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +10976.871991 + 30 +0.0 + 11 +5550.000003 + 21 +10998.522627 + 31 +0.0 + 0 +LINE + 5 +467 + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +11041.823897 + 30 +0.0 + 11 +5587.500003 + 21 +11063.474532 + 31 +0.0 + 0 +LINE + 5 +468 + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11106.775802 + 30 +0.0 + 11 +5625.000003 + 21 +11128.426437 + 31 +0.0 + 0 +LINE + 5 +469 + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11171.727707 + 30 +0.0 + 11 +5662.500003 + 21 +11193.378342 + 31 +0.0 + 0 +LINE + 5 +46A + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11236.679613 + 30 +0.0 + 11 +5700.000003 + 21 +11258.330248 + 31 +0.0 + 0 +LINE + 5 +46B + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10885.93932 + 30 +0.0 + 11 +5512.500003 + 21 +10890.269451 + 31 +0.0 + 0 +LINE + 5 +46C + 8 +0 + 62 + 0 + 10 +5537.500003 + 20 +10933.570721 + 30 +0.0 + 11 +5550.000003 + 21 +10955.221356 + 31 +0.0 + 0 +LINE + 5 +46D + 8 +0 + 62 + 0 + 10 +5575.000003 + 20 +10998.522627 + 30 +0.0 + 11 +5587.500003 + 21 +11020.173262 + 31 +0.0 + 0 +LINE + 5 +46E + 8 +0 + 62 + 0 + 10 +5612.500003 + 20 +11063.474532 + 30 +0.0 + 11 +5625.000003 + 21 +11085.125167 + 31 +0.0 + 0 +LINE + 5 +46F + 8 +0 + 62 + 0 + 10 +5650.000003 + 20 +11128.426437 + 30 +0.0 + 11 +5662.500003 + 21 +11150.077072 + 31 +0.0 + 0 +LINE + 5 +470 + 8 +0 + 62 + 0 + 10 +5687.500003 + 20 +11193.378342 + 30 +0.0 + 11 +5700.000003 + 21 +11215.028978 + 31 +0.0 + 0 +LINE + 5 +471 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10842.63805 + 30 +0.0 + 11 +5512.500002 + 21 +10846.968181 + 31 +0.0 + 0 +LINE + 5 +472 + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10890.269451 + 30 +0.0 + 11 +5550.000002 + 21 +10911.920086 + 31 +0.0 + 0 +LINE + 5 +473 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10955.221356 + 30 +0.0 + 11 +5587.500002 + 21 +10976.871992 + 31 +0.0 + 0 +LINE + 5 +474 + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +11020.173262 + 30 +0.0 + 11 +5625.000002 + 21 +11041.823897 + 31 +0.0 + 0 +LINE + 5 +475 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +11085.125167 + 30 +0.0 + 11 +5662.500002 + 21 +11106.775802 + 31 +0.0 + 0 +LINE + 5 +476 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +11150.077072 + 30 +0.0 + 11 +5700.000002 + 21 +11171.727707 + 31 +0.0 + 0 +LINE + 5 +477 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10799.33678 + 30 +0.0 + 11 +5512.500002 + 21 +10803.666911 + 31 +0.0 + 0 +LINE + 5 +478 + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10846.968181 + 30 +0.0 + 11 +5550.000002 + 21 +10868.618816 + 31 +0.0 + 0 +LINE + 5 +479 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10911.920086 + 30 +0.0 + 11 +5587.500002 + 21 +10933.570721 + 31 +0.0 + 0 +LINE + 5 +47A + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10976.871992 + 30 +0.0 + 11 +5625.000002 + 21 +10998.522627 + 31 +0.0 + 0 +LINE + 5 +47B + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +11041.823897 + 30 +0.0 + 11 +5662.500002 + 21 +11063.474532 + 31 +0.0 + 0 +LINE + 5 +47C + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +11106.775802 + 30 +0.0 + 11 +5700.000002 + 21 +11128.426437 + 31 +0.0 + 0 +LINE + 5 +47D + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10756.03551 + 30 +0.0 + 11 +5512.500002 + 21 +10760.365641 + 31 +0.0 + 0 +LINE + 5 +47E + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10803.666911 + 30 +0.0 + 11 +5550.000002 + 21 +10825.317546 + 31 +0.0 + 0 +LINE + 5 +47F + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10868.618816 + 30 +0.0 + 11 +5587.500002 + 21 +10890.269451 + 31 +0.0 + 0 +LINE + 5 +480 + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10933.570721 + 30 +0.0 + 11 +5625.000002 + 21 +10955.221357 + 31 +0.0 + 0 +LINE + 5 +481 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10998.522627 + 30 +0.0 + 11 +5662.500002 + 21 +11020.173262 + 31 +0.0 + 0 +LINE + 5 +482 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +11063.474532 + 30 +0.0 + 11 +5700.000002 + 21 +11085.125167 + 31 +0.0 + 0 +LINE + 5 +483 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10712.73424 + 30 +0.0 + 11 +5512.500002 + 21 +10717.064371 + 31 +0.0 + 0 +LINE + 5 +484 + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10760.365641 + 30 +0.0 + 11 +5550.000002 + 21 +10782.016276 + 31 +0.0 + 0 +LINE + 5 +485 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10825.317546 + 30 +0.0 + 11 +5587.500002 + 21 +10846.968181 + 31 +0.0 + 0 +LINE + 5 +486 + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10890.269451 + 30 +0.0 + 11 +5625.000002 + 21 +10911.920086 + 31 +0.0 + 0 +LINE + 5 +487 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10955.221357 + 30 +0.0 + 11 +5662.500002 + 21 +10976.871992 + 31 +0.0 + 0 +LINE + 5 +488 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +11020.173262 + 30 +0.0 + 11 +5700.000002 + 21 +11041.823897 + 31 +0.0 + 0 +LINE + 5 +489 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10669.43297 + 30 +0.0 + 11 +5512.500002 + 21 +10673.7631 + 31 +0.0 + 0 +LINE + 5 +48A + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10717.064371 + 30 +0.0 + 11 +5550.000002 + 21 +10738.715006 + 31 +0.0 + 0 +LINE + 5 +48B + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10782.016276 + 30 +0.0 + 11 +5587.500002 + 21 +10803.666911 + 31 +0.0 + 0 +LINE + 5 +48C + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10846.968181 + 30 +0.0 + 11 +5625.000002 + 21 +10868.618816 + 31 +0.0 + 0 +LINE + 5 +48D + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10911.920086 + 30 +0.0 + 11 +5662.500002 + 21 +10933.570722 + 31 +0.0 + 0 +LINE + 5 +48E + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10976.871992 + 30 +0.0 + 11 +5700.000002 + 21 +10998.522627 + 31 +0.0 + 0 +LINE + 5 +48F + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10738.715006 + 30 +0.0 + 11 +5587.500002 + 21 +10760.365641 + 31 +0.0 + 0 +LINE + 5 +490 + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10803.666911 + 30 +0.0 + 11 +5625.000002 + 21 +10825.317546 + 31 +0.0 + 0 +LINE + 5 +491 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10868.618816 + 30 +0.0 + 11 +5662.500002 + 21 +10890.269451 + 31 +0.0 + 0 +LINE + 5 +492 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10933.570722 + 30 +0.0 + 11 +5700.000002 + 21 +10955.221357 + 31 +0.0 + 0 +LINE + 5 +493 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10825.317546 + 30 +0.0 + 11 +5662.500002 + 21 +10846.968181 + 31 +0.0 + 0 +LINE + 5 +494 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10890.269451 + 30 +0.0 + 11 +5700.000002 + 21 +10911.920087 + 31 +0.0 + 0 +LINE + 5 +495 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10846.968181 + 30 +0.0 + 11 +5700.000002 + 21 +10868.618816 + 31 +0.0 + 0 +ENDBLK + 5 +496 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X8 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X8 + 1 + + 0 +LINE + 5 +498 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10652.11242 + 30 +0.0 + 11 +5575.0 + 21 +10652.11242 + 31 +0.0 + 0 +LINE + 5 +499 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10652.11242 + 30 +0.0 + 11 +5650.0 + 21 +10652.11242 + 31 +0.0 + 0 +LINE + 5 +49A + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10652.11242 + 30 +0.0 + 11 +5710.0 + 21 +10652.11242 + 31 +0.0 + 0 +LINE + 5 +49B + 8 +0 + 62 + 0 + 10 +5522.357461 + 20 +10673.763055 + 30 +0.0 + 11 +5537.5 + 21 +10673.763055 + 31 +0.0 + 0 +LINE + 5 +49C + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10673.763055 + 30 +0.0 + 11 +5612.5 + 21 +10673.763055 + 31 +0.0 + 0 +LINE + 5 +49D + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10673.763055 + 30 +0.0 + 11 +5687.5 + 21 +10673.763055 + 31 +0.0 + 0 +LINE + 5 +49E + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10695.41369 + 30 +0.0 + 11 +5575.0 + 21 +10695.41369 + 31 +0.0 + 0 +LINE + 5 +49F + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10695.41369 + 30 +0.0 + 11 +5650.0 + 21 +10695.41369 + 31 +0.0 + 0 +LINE + 5 +4A0 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10695.41369 + 30 +0.0 + 11 +5710.0 + 21 +10695.41369 + 31 +0.0 + 0 +LINE + 5 +4A1 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10717.064325 + 30 +0.0 + 11 +5612.5 + 21 +10717.064325 + 31 +0.0 + 0 +LINE + 5 +4A2 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10717.064325 + 30 +0.0 + 11 +5687.5 + 21 +10717.064325 + 31 +0.0 + 0 +LINE + 5 +4A3 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10738.71496 + 30 +0.0 + 11 +5650.0 + 21 +10738.71496 + 31 +0.0 + 0 +LINE + 5 +4A4 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10738.71496 + 30 +0.0 + 11 +5710.0 + 21 +10738.71496 + 31 +0.0 + 0 +LINE + 5 +4A5 + 8 +0 + 62 + 0 + 10 +5598.291572 + 20 +10760.365595 + 30 +0.0 + 11 +5612.5 + 21 +10760.365595 + 31 +0.0 + 0 +LINE + 5 +4A6 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10760.365595 + 30 +0.0 + 11 +5687.5 + 21 +10760.365595 + 31 +0.0 + 0 +LINE + 5 +4A7 + 8 +0 + 62 + 0 + 10 +5625.0 + 20 +10782.01623 + 30 +0.0 + 11 +5650.0 + 21 +10782.01623 + 31 +0.0 + 0 +LINE + 5 +4A8 + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10782.01623 + 30 +0.0 + 11 +5710.0 + 21 +10782.01623 + 31 +0.0 + 0 +LINE + 5 +4A9 + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10803.666865 + 30 +0.0 + 11 +5687.5 + 21 +10803.666865 + 31 +0.0 + 0 +LINE + 5 +4AA + 8 +0 + 62 + 0 + 10 +5700.0 + 20 +10825.3175 + 30 +0.0 + 11 +5710.0 + 21 +10825.3175 + 31 +0.0 + 0 +LINE + 5 +4AB + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10630.461785 + 30 +0.0 + 11 +5537.5 + 21 +10630.461785 + 31 +0.0 + 0 +LINE + 5 +4AC + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10630.461785 + 30 +0.0 + 11 +5612.5 + 21 +10630.461785 + 31 +0.0 + 0 +LINE + 5 +4AD + 8 +0 + 62 + 0 + 10 +5662.5 + 20 +10630.461785 + 30 +0.0 + 11 +5687.5 + 21 +10630.461785 + 31 +0.0 + 0 +LINE + 5 +4AE + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10608.81115 + 30 +0.0 + 11 +5575.0 + 21 +10608.81115 + 31 +0.0 + 0 +LINE + 5 +4AF + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10587.160515 + 30 +0.0 + 11 +5537.5 + 21 +10587.160515 + 31 +0.0 + 0 +LINE + 5 +4B0 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10587.160515 + 30 +0.0 + 11 +5605.0 + 21 +10587.160515 + 31 +0.0 + 0 +LINE + 5 +4B1 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10565.50988 + 30 +0.0 + 11 +5575.0 + 21 +10565.50988 + 31 +0.0 + 0 +LINE + 5 +4B2 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10543.859245 + 30 +0.0 + 11 +5537.5 + 21 +10543.859245 + 31 +0.0 + 0 +LINE + 5 +4B3 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10543.859245 + 30 +0.0 + 11 +5605.0 + 21 +10543.859245 + 31 +0.0 + 0 +LINE + 5 +4B4 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10522.20861 + 30 +0.0 + 11 +5575.0 + 21 +10522.20861 + 31 +0.0 + 0 +LINE + 5 +4B5 + 8 +0 + 62 + 0 + 10 +5512.5 + 20 +10500.557975 + 30 +0.0 + 11 +5537.5 + 21 +10500.557975 + 31 +0.0 + 0 +LINE + 5 +4B6 + 8 +0 + 62 + 0 + 10 +5587.5 + 20 +10500.557975 + 30 +0.0 + 11 +5605.0 + 21 +10500.557975 + 31 +0.0 + 0 +LINE + 5 +4B7 + 8 +0 + 62 + 0 + 10 +5550.0 + 20 +10478.90734 + 30 +0.0 + 11 +5575.0 + 21 +10478.90734 + 31 +0.0 + 0 +LINE + 5 +4B8 + 8 +0 + 62 + 0 + 10 +5621.426841 + 20 +10615.0 + 30 +0.0 + 11 +5612.499961 + 21 +10630.461809 + 31 +0.0 + 0 +LINE + 5 +4B9 + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10673.763079 + 30 +0.0 + 11 +5574.999961 + 21 +10695.413715 + 31 +0.0 + 0 +LINE + 5 +4BA + 8 +0 + 62 + 0 + 10 +5587.499962 + 20 +10630.461809 + 30 +0.0 + 11 +5574.999962 + 21 +10652.112444 + 31 +0.0 + 0 +LINE + 5 +4BB + 8 +0 + 62 + 0 + 10 +5549.999962 + 20 +10695.413715 + 30 +0.0 + 11 +5546.562072 + 21 +10701.368314 + 31 +0.0 + 0 +LINE + 5 +4BC + 8 +0 + 62 + 0 + 10 +5587.499962 + 20 +10587.160539 + 30 +0.0 + 11 +5574.999962 + 21 +10608.811174 + 31 +0.0 + 0 +LINE + 5 +4BD + 8 +0 + 62 + 0 + 10 +5549.999962 + 20 +10652.112444 + 30 +0.0 + 11 +5537.499962 + 21 +10673.76308 + 31 +0.0 + 0 +LINE + 5 +4BE + 8 +0 + 62 + 0 + 10 +5587.499962 + 20 +10543.859269 + 30 +0.0 + 11 +5574.999962 + 21 +10565.509904 + 31 +0.0 + 0 +LINE + 5 +4BF + 8 +0 + 62 + 0 + 10 +5549.999962 + 20 +10608.811174 + 30 +0.0 + 11 +5537.499962 + 21 +10630.461809 + 31 +0.0 + 0 +LINE + 5 +4C0 + 8 +0 + 62 + 0 + 10 +5587.499962 + 20 +10500.557999 + 30 +0.0 + 11 +5574.999962 + 21 +10522.208634 + 31 +0.0 + 0 +LINE + 5 +4C1 + 8 +0 + 62 + 0 + 10 +5549.999962 + 20 +10565.509904 + 30 +0.0 + 11 +5537.499962 + 21 +10587.160539 + 31 +0.0 + 0 +LINE + 5 +4C2 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10630.461809 + 30 +0.0 + 11 +5510.0 + 21 +10634.79187 + 31 +0.0 + 0 +LINE + 5 +4C3 + 8 +0 + 62 + 0 + 10 +5575.812504 + 20 +10477.5 + 30 +0.0 + 11 +5574.999962 + 21 +10478.907364 + 31 +0.0 + 0 +LINE + 5 +4C4 + 8 +0 + 62 + 0 + 10 +5549.999962 + 20 +10522.208634 + 30 +0.0 + 11 +5537.499962 + 21 +10543.859269 + 31 +0.0 + 0 +LINE + 5 +4C5 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10587.160539 + 30 +0.0 + 11 +5510.0 + 21 +10591.4906 + 31 +0.0 + 0 +LINE + 5 +4C6 + 8 +0 + 62 + 0 + 10 +5549.999962 + 20 +10478.907364 + 30 +0.0 + 11 +5537.499962 + 21 +10500.557999 + 31 +0.0 + 0 +LINE + 5 +4C7 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10543.859269 + 30 +0.0 + 11 +5510.0 + 21 +10548.18933 + 31 +0.0 + 0 +LINE + 5 +4C8 + 8 +0 + 62 + 0 + 10 +5512.499962 + 20 +10500.557999 + 30 +0.0 + 11 +5510.0 + 21 +10504.88806 + 31 +0.0 + 0 +LINE + 5 +4C9 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10652.112444 + 30 +0.0 + 11 +5612.499961 + 21 +10673.763079 + 31 +0.0 + 0 +LINE + 5 +4CA + 8 +0 + 62 + 0 + 10 +5587.499961 + 20 +10717.06435 + 30 +0.0 + 11 +5576.710421 + 21 +10735.752381 + 31 +0.0 + 0 +LINE + 5 +4CB + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10630.461809 + 30 +0.0 + 11 +5649.999961 + 21 +10652.112444 + 31 +0.0 + 0 +LINE + 5 +4CC + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10695.413714 + 30 +0.0 + 11 +5612.499961 + 21 +10717.06435 + 31 +0.0 + 0 +LINE + 5 +4CD + 8 +0 + 62 + 0 + 10 +5696.426841 + 20 +10615.0 + 30 +0.0 + 11 +5687.499961 + 21 +10630.461809 + 31 +0.0 + 0 +LINE + 5 +4CE + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10673.763079 + 30 +0.0 + 11 +5649.999961 + 21 +10695.413714 + 31 +0.0 + 0 +LINE + 5 +4CF + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10738.714985 + 30 +0.0 + 11 +5612.499961 + 21 +10760.36562 + 31 +0.0 + 0 +LINE + 5 +4D0 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10652.112444 + 30 +0.0 + 11 +5687.499961 + 21 +10673.763079 + 31 +0.0 + 0 +LINE + 5 +4D1 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10717.064349 + 30 +0.0 + 11 +5649.999961 + 21 +10738.714985 + 31 +0.0 + 0 +LINE + 5 +4D2 + 8 +0 + 62 + 0 + 10 +5624.999961 + 20 +10782.016255 + 30 +0.0 + 11 +5621.932945 + 21 +10787.328483 + 31 +0.0 + 0 +LINE + 5 +4D3 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10695.413714 + 30 +0.0 + 11 +5687.499961 + 21 +10717.064349 + 31 +0.0 + 0 +LINE + 5 +4D4 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10760.36562 + 30 +0.0 + 11 +5649.999961 + 21 +10782.016255 + 31 +0.0 + 0 +LINE + 5 +4D5 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10738.714984 + 30 +0.0 + 11 +5687.499961 + 21 +10760.36562 + 31 +0.0 + 0 +LINE + 5 +4D6 + 8 +0 + 62 + 0 + 10 +5662.499961 + 20 +10803.66689 + 30 +0.0 + 11 +5652.081294 + 21 +10821.71255 + 31 +0.0 + 0 +LINE + 5 +4D7 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10782.016255 + 30 +0.0 + 11 +5687.499961 + 21 +10803.66689 + 31 +0.0 + 0 +LINE + 5 +4D8 + 8 +0 + 62 + 0 + 10 +5699.999961 + 20 +10825.317525 + 30 +0.0 + 11 +5688.636278 + 21 +10845.0 + 31 +0.0 + 0 +LINE + 5 +4D9 + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10500.55802 + 30 +0.0 + 11 +5550.000002 + 21 +10522.208655 + 31 +0.0 + 0 +LINE + 5 +4DA + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10565.509925 + 30 +0.0 + 11 +5587.500002 + 21 +10587.16056 + 31 +0.0 + 0 +LINE + 5 +4DB + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10630.46183 + 30 +0.0 + 11 +5625.000002 + 21 +10652.112466 + 31 +0.0 + 0 +LINE + 5 +4DC + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10695.413736 + 30 +0.0 + 11 +5662.500002 + 21 +10717.064371 + 31 +0.0 + 0 +LINE + 5 +4DD + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10760.365641 + 30 +0.0 + 11 +5700.000002 + 21 +10782.016276 + 31 +0.0 + 0 +LINE + 5 +4DE + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10496.22789 + 30 +0.0 + 11 +5512.500002 + 21 +10500.55802 + 31 +0.0 + 0 +LINE + 5 +4DF + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10543.85929 + 30 +0.0 + 11 +5550.000002 + 21 +10565.509925 + 31 +0.0 + 0 +LINE + 5 +4E0 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10608.811195 + 30 +0.0 + 11 +5587.500002 + 21 +10630.46183 + 31 +0.0 + 0 +LINE + 5 +4E1 + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10673.763101 + 30 +0.0 + 11 +5625.000002 + 21 +10695.413736 + 31 +0.0 + 0 +LINE + 5 +4E2 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10738.715006 + 30 +0.0 + 11 +5662.500002 + 21 +10760.365641 + 31 +0.0 + 0 +LINE + 5 +4E3 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10803.666911 + 30 +0.0 + 11 +5700.000002 + 21 +10825.317546 + 31 +0.0 + 0 +LINE + 5 +4E4 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10539.52916 + 30 +0.0 + 11 +5512.500002 + 21 +10543.85929 + 31 +0.0 + 0 +LINE + 5 +4E5 + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10587.16056 + 30 +0.0 + 11 +5550.000002 + 21 +10608.811195 + 31 +0.0 + 0 +LINE + 5 +4E6 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10652.112465 + 30 +0.0 + 11 +5587.500002 + 21 +10673.763101 + 31 +0.0 + 0 +LINE + 5 +4E7 + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10717.064371 + 30 +0.0 + 11 +5625.000002 + 21 +10738.715006 + 31 +0.0 + 0 +LINE + 5 +4E8 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10782.016276 + 30 +0.0 + 11 +5662.500002 + 21 +10803.666911 + 31 +0.0 + 0 +LINE + 5 +4E9 + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10582.83043 + 30 +0.0 + 11 +5512.500002 + 21 +10587.16056 + 31 +0.0 + 0 +LINE + 5 +4EA + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10630.46183 + 30 +0.0 + 11 +5550.000002 + 21 +10652.112465 + 31 +0.0 + 0 +LINE + 5 +4EB + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10695.413736 + 30 +0.0 + 11 +5587.500002 + 21 +10717.064371 + 31 +0.0 + 0 +LINE + 5 +4EC + 8 +0 + 62 + 0 + 10 +5612.500002 + 20 +10760.365641 + 30 +0.0 + 11 +5625.000002 + 21 +10782.016276 + 31 +0.0 + 0 +LINE + 5 +4ED + 8 +0 + 62 + 0 + 10 +5510.0 + 20 +10626.1317 + 30 +0.0 + 11 +5512.500002 + 21 +10630.46183 + 31 +0.0 + 0 +LINE + 5 +4EE + 8 +0 + 62 + 0 + 10 +5537.500002 + 20 +10673.7631 + 30 +0.0 + 11 +5550.000002 + 21 +10695.413736 + 31 +0.0 + 0 +LINE + 5 +4EF + 8 +0 + 62 + 0 + 10 +5549.187448 + 20 +10477.5 + 30 +0.0 + 11 +5550.000002 + 21 +10478.907385 + 31 +0.0 + 0 +LINE + 5 +4F0 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10522.208655 + 30 +0.0 + 11 +5587.500002 + 21 +10543.85929 + 31 +0.0 + 0 +LINE + 5 +4F1 + 8 +0 + 62 + 0 + 10 +5650.000002 + 20 +10652.112466 + 30 +0.0 + 11 +5662.500002 + 21 +10673.763101 + 31 +0.0 + 0 +LINE + 5 +4F2 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10717.064371 + 30 +0.0 + 11 +5700.000002 + 21 +10738.715006 + 31 +0.0 + 0 +LINE + 5 +4F3 + 8 +0 + 62 + 0 + 10 +5575.000002 + 20 +10478.907385 + 30 +0.0 + 11 +5587.500002 + 21 +10500.55802 + 31 +0.0 + 0 +LINE + 5 +4F4 + 8 +0 + 62 + 0 + 10 +5653.57311 + 20 +10615.0 + 30 +0.0 + 11 +5662.500002 + 21 +10630.461831 + 31 +0.0 + 0 +LINE + 5 +4F5 + 8 +0 + 62 + 0 + 10 +5687.500002 + 20 +10673.763101 + 30 +0.0 + 11 +5700.000002 + 21 +10695.413736 + 31 +0.0 + 0 +LINE + 5 +4F6 + 8 +0 + 62 + 0 + 10 +5687.500001 + 20 +10630.461831 + 30 +0.0 + 11 +5700.000001 + 21 +10652.112466 + 31 +0.0 + 0 +ENDBLK + 5 +4F7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X9 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X9 + 1 + + 0 +LINE + 5 +4F9 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11038.713466 + 30 +0.0 + 11 +5360.0 + 21 +11326.213466 + 31 +0.0 + 0 +LINE + 5 +4FA + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11118.262979 + 30 +0.0 + 11 +5360.0 + 21 +11405.762979 + 31 +0.0 + 0 +LINE + 5 +4FB + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11197.812492 + 30 +0.0 + 11 +5360.0 + 21 +11485.312492 + 31 +0.0 + 0 +LINE + 5 +4FC + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11277.362005 + 30 +0.0 + 11 +5360.0 + 21 +11564.862005 + 31 +0.0 + 0 +LINE + 5 +4FD + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11356.911518 + 30 +0.0 + 11 +5360.0 + 21 +11644.411518 + 31 +0.0 + 0 +LINE + 5 +4FE + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11436.461031 + 30 +0.0 + 11 +5360.0 + 21 +11723.961031 + 31 +0.0 + 0 +LINE + 5 +4FF + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11516.010544 + 30 +0.0 + 11 +5286.489456 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +500 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11595.560056 + 30 +0.0 + 11 +5206.939944 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +501 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +11675.109569 + 30 +0.0 + 11 +5127.390431 + 21 +11730.0 + 31 +0.0 + 0 +LINE + 5 +502 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10959.163953 + 30 +0.0 + 11 +5360.0 + 21 +11246.663953 + 31 +0.0 + 0 +LINE + 5 +503 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10879.61444 + 30 +0.0 + 11 +5360.0 + 21 +11167.11444 + 31 +0.0 + 0 +LINE + 5 +504 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10800.064928 + 30 +0.0 + 11 +5360.0 + 21 +11087.564928 + 31 +0.0 + 0 +LINE + 5 +505 + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10720.515415 + 30 +0.0 + 11 +5360.0 + 21 +11008.015415 + 31 +0.0 + 0 +LINE + 5 +506 + 8 +0 + 62 + 0 + 10 +5129.034098 + 20 +10697.5 + 30 +0.0 + 11 +5360.0 + 21 +10928.465902 + 31 +0.0 + 0 +LINE + 5 +507 + 8 +0 + 62 + 0 + 10 +5208.583611 + 20 +10697.5 + 30 +0.0 + 11 +5360.0 + 21 +10848.916389 + 31 +0.0 + 0 +LINE + 5 +508 + 8 +0 + 62 + 0 + 10 +5288.133124 + 20 +10697.5 + 30 +0.0 + 11 +5360.0 + 21 +10769.366876 + 31 +0.0 + 0 +ENDBLK + 5 +509 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X10 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X10 + 1 + + 0 +LINE + 5 +50B + 8 +0 + 62 + 0 + 10 +5134.281663 + 20 +10305.0 + 30 +0.0 + 11 +5311.781663 + 21 +10482.5 + 31 +0.0 + 0 +LINE + 5 +50C + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10322.76785 + 30 +0.0 + 11 +5232.23215 + 21 +10482.5 + 31 +0.0 + 0 +LINE + 5 +50D + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10402.317363 + 30 +0.0 + 11 +5152.682637 + 21 +10482.5 + 31 +0.0 + 0 +LINE + 5 +50E + 8 +0 + 62 + 0 + 10 +5072.5 + 20 +10481.866876 + 30 +0.0 + 11 +5073.133124 + 21 +10482.5 + 31 +0.0 + 0 +LINE + 5 +50F + 8 +0 + 62 + 0 + 10 +5213.831175 + 20 +10305.0 + 30 +0.0 + 11 +5360.0 + 21 +10451.168825 + 31 +0.0 + 0 +LINE + 5 +510 + 8 +0 + 62 + 0 + 10 +5293.380688 + 20 +10305.0 + 30 +0.0 + 11 +5360.0 + 21 +10371.619312 + 31 +0.0 + 0 +ENDBLK + 5 +511 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X11 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X11 + 1 + + 0 +ENDBLK + 5 +513 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X12 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X12 + 1 + + 0 +LINE + 5 +515 + 8 +0 + 62 + 0 + 10 +6641.639663 + 20 +11377.319025 + 30 +0.0 + 11 +6641.639663 + 21 +11377.319025 + 31 +0.0 + 0 +LINE + 5 +516 + 8 +0 + 62 + 0 + 10 +6665.757605 + 20 +11395.825373 + 30 +0.0 + 11 +6665.757605 + 21 +11395.825373 + 31 +0.0 + 0 +LINE + 5 +517 + 8 +0 + 62 + 0 + 10 +6640.379796 + 20 +11415.855501 + 30 +0.0 + 11 +6640.379796 + 21 +11415.855501 + 31 +0.0 + 0 +LINE + 5 +518 + 8 +0 + 62 + 0 + 10 +6664.497738 + 20 +11434.361848 + 30 +0.0 + 11 +6664.497738 + 21 +11434.361848 + 31 +0.0 + 0 +LINE + 5 +519 + 8 +0 + 62 + 0 + 10 +6639.119929 + 20 +11454.391976 + 30 +0.0 + 11 +6639.119929 + 21 +11454.391976 + 31 +0.0 + 0 +LINE + 5 +51A + 8 +0 + 62 + 0 + 10 +6663.23787 + 20 +11472.898324 + 30 +0.0 + 11 +6663.23787 + 21 +11472.898324 + 31 +0.0 + 0 +LINE + 5 +51B + 8 +0 + 62 + 0 + 10 +6637.860062 + 20 +11492.928452 + 30 +0.0 + 11 +6637.860062 + 21 +11492.928452 + 31 +0.0 + 0 +LINE + 5 +51C + 8 +0 + 62 + 0 + 10 +6661.978003 + 20 +11511.434799 + 30 +0.0 + 11 +6661.978003 + 21 +11511.434799 + 31 +0.0 + 0 +LINE + 5 +51D + 8 +0 + 62 + 0 + 10 +6636.600195 + 20 +11531.464927 + 30 +0.0 + 11 +6636.600195 + 21 +11531.464927 + 31 +0.0 + 0 +LINE + 5 +51E + 8 +0 + 62 + 0 + 10 +6660.718136 + 20 +11549.971274 + 30 +0.0 + 11 +6660.718136 + 21 +11549.971274 + 31 +0.0 + 0 +LINE + 5 +51F + 8 +0 + 62 + 0 + 10 +6635.340327 + 20 +11570.001402 + 30 +0.0 + 11 +6635.340327 + 21 +11570.001402 + 31 +0.0 + 0 +LINE + 5 +520 + 8 +0 + 62 + 0 + 10 +6659.458269 + 20 +11588.50775 + 30 +0.0 + 11 +6659.458269 + 21 +11588.50775 + 31 +0.0 + 0 +LINE + 5 +521 + 8 +0 + 62 + 0 + 10 +6634.08046 + 20 +11608.537878 + 30 +0.0 + 11 +6634.08046 + 21 +11608.537878 + 31 +0.0 + 0 +LINE + 5 +522 + 8 +0 + 62 + 0 + 10 +6658.198402 + 20 +11627.044225 + 30 +0.0 + 11 +6658.198402 + 21 +11627.044225 + 31 +0.0 + 0 +LINE + 5 +523 + 8 +0 + 62 + 0 + 10 +6632.820593 + 20 +11647.074353 + 30 +0.0 + 11 +6632.820593 + 21 +11647.074353 + 31 +0.0 + 0 +LINE + 5 +524 + 8 +0 + 62 + 0 + 10 +6656.938535 + 20 +11665.5807 + 30 +0.0 + 11 +6656.938535 + 21 +11665.5807 + 31 +0.0 + 0 +LINE + 5 +525 + 8 +0 + 62 + 0 + 10 +6631.560726 + 20 +11685.610828 + 30 +0.0 + 11 +6631.560726 + 21 +11685.610828 + 31 +0.0 + 0 +LINE + 5 +526 + 8 +0 + 62 + 0 + 10 +6655.678667 + 20 +11704.117176 + 30 +0.0 + 11 +6655.678667 + 21 +11704.117176 + 31 +0.0 + 0 +LINE + 5 +527 + 8 +0 + 62 + 0 + 10 +6630.300859 + 20 +11724.147304 + 30 +0.0 + 11 +6630.300859 + 21 +11724.147304 + 31 +0.0 + 0 +LINE + 5 +528 + 8 +0 + 62 + 0 + 10 +6642.89953 + 20 +11338.78255 + 30 +0.0 + 11 +6642.89953 + 21 +11338.78255 + 31 +0.0 + 0 +LINE + 5 +529 + 8 +0 + 62 + 0 + 10 +6667.017472 + 20 +11357.288897 + 30 +0.0 + 11 +6667.017472 + 21 +11357.288897 + 31 +0.0 + 0 +LINE + 5 +52A + 8 +0 + 62 + 0 + 10 +6644.159398 + 20 +11300.246075 + 30 +0.0 + 11 +6644.159398 + 21 +11300.246075 + 31 +0.0 + 0 +LINE + 5 +52B + 8 +0 + 62 + 0 + 10 +6645.419265 + 20 +11261.709599 + 30 +0.0 + 11 +6645.419265 + 21 +11261.709599 + 31 +0.0 + 0 +LINE + 5 +52C + 8 +0 + 62 + 0 + 10 +6646.679132 + 20 +11223.173124 + 30 +0.0 + 11 +6646.679132 + 21 +11223.173124 + 31 +0.0 + 0 +LINE + 5 +52D + 8 +0 + 62 + 0 + 10 +6647.938999 + 20 +11184.636648 + 30 +0.0 + 11 +6647.938999 + 21 +11184.636648 + 31 +0.0 + 0 +LINE + 5 +52E + 8 +0 + 62 + 0 + 10 +6649.198866 + 20 +11146.100173 + 30 +0.0 + 11 +6649.198866 + 21 +11146.100173 + 31 +0.0 + 0 +LINE + 5 +52F + 8 +0 + 62 + 0 + 10 +6650.458733 + 20 +11107.563698 + 30 +0.0 + 11 +6650.458733 + 21 +11107.563698 + 31 +0.0 + 0 +LINE + 5 +530 + 8 +0 + 62 + 0 + 10 +6651.718601 + 20 +11069.027222 + 30 +0.0 + 11 +6651.718601 + 21 +11069.027222 + 31 +0.0 + 0 +LINE + 5 +531 + 8 +0 + 62 + 0 + 10 +6636.528693 + 20 +11385.666777 + 30 +0.0 + 11 +6636.528693 + 21 +11385.666777 + 31 +0.0 + 0 +LINE + 5 +532 + 8 +0 + 62 + 0 + 10 +6646.938864 + 20 +11387.037302 + 30 +0.0 + 11 +6646.938864 + 21 +11387.037302 + 31 +0.0 + 0 +LINE + 5 +533 + 8 +0 + 62 + 0 + 10 +6663.198559 + 20 +11389.177932 + 30 +0.0 + 11 +6663.198559 + 21 +11389.177932 + 31 +0.0 + 0 +LINE + 5 +534 + 8 +0 + 62 + 0 + 10 +6644.758638 + 20 +11438.533281 + 30 +0.0 + 11 +6644.758638 + 21 +11438.533281 + 31 +0.0 + 0 +LINE + 5 +535 + 8 +0 + 62 + 0 + 10 +6653.484305 + 20 +11491.465048 + 30 +0.0 + 11 +6653.484305 + 21 +11491.465048 + 31 +0.0 + 0 +LINE + 5 +536 + 8 +0 + 62 + 0 + 10 +6663.894476 + 20 +11492.835573 + 30 +0.0 + 11 +6663.894476 + 21 +11492.835573 + 31 +0.0 + 0 +LINE + 5 +537 + 8 +0 + 62 + 0 + 10 +6635.044383 + 20 +11540.820397 + 30 +0.0 + 11 +6635.044383 + 21 +11540.820397 + 31 +0.0 + 0 +LINE + 5 +538 + 8 +0 + 62 + 0 + 10 +6645.454554 + 20 +11542.190922 + 30 +0.0 + 11 +6645.454554 + 21 +11542.190922 + 31 +0.0 + 0 +LINE + 5 +539 + 8 +0 + 62 + 0 + 10 +6661.71425 + 20 +11544.331551 + 30 +0.0 + 11 +6661.71425 + 21 +11544.331551 + 31 +0.0 + 0 +LINE + 5 +53A + 8 +0 + 62 + 0 + 10 +6643.274328 + 20 +11593.686901 + 30 +0.0 + 11 +6643.274328 + 21 +11593.686901 + 31 +0.0 + 0 +LINE + 5 +53B + 8 +0 + 62 + 0 + 10 +6651.999995 + 20 +11646.618667 + 30 +0.0 + 11 +6651.999995 + 21 +11646.618667 + 31 +0.0 + 0 +LINE + 5 +53C + 8 +0 + 62 + 0 + 10 +6662.410166 + 20 +11647.989192 + 30 +0.0 + 11 +6662.410166 + 21 +11647.989192 + 31 +0.0 + 0 +LINE + 5 +53D + 8 +0 + 62 + 0 + 10 +6633.560073 + 20 +11695.974016 + 30 +0.0 + 11 +6633.560073 + 21 +11695.974016 + 31 +0.0 + 0 +LINE + 5 +53E + 8 +0 + 62 + 0 + 10 +6643.970244 + 20 +11697.344541 + 30 +0.0 + 11 +6643.970244 + 21 +11697.344541 + 31 +0.0 + 0 +LINE + 5 +53F + 8 +0 + 62 + 0 + 10 +6660.22994 + 20 +11699.485171 + 30 +0.0 + 11 +6660.22994 + 21 +11699.485171 + 31 +0.0 + 0 +LINE + 5 +540 + 8 +0 + 62 + 0 + 10 +6654.968614 + 20 +11336.311428 + 30 +0.0 + 11 +6654.968614 + 21 +11336.311428 + 31 +0.0 + 0 +LINE + 5 +541 + 8 +0 + 62 + 0 + 10 +6665.378786 + 20 +11337.681953 + 30 +0.0 + 11 +6665.378786 + 21 +11337.681953 + 31 +0.0 + 0 +LINE + 5 +542 + 8 +0 + 62 + 0 + 10 +6646.242947 + 20 +11283.379662 + 30 +0.0 + 11 +6646.242947 + 21 +11283.379662 + 31 +0.0 + 0 +LINE + 5 +543 + 8 +0 + 62 + 0 + 10 +6638.013002 + 20 +11230.513158 + 30 +0.0 + 11 +6638.013002 + 21 +11230.513158 + 31 +0.0 + 0 +LINE + 5 +544 + 8 +0 + 62 + 0 + 10 +6648.423173 + 20 +11231.883683 + 30 +0.0 + 11 +6648.423173 + 21 +11231.883683 + 31 +0.0 + 0 +LINE + 5 +545 + 8 +0 + 62 + 0 + 10 +6664.682869 + 20 +11234.024313 + 30 +0.0 + 11 +6664.682869 + 21 +11234.024313 + 31 +0.0 + 0 +LINE + 5 +546 + 8 +0 + 62 + 0 + 10 +6656.452924 + 20 +11181.157809 + 30 +0.0 + 11 +6656.452924 + 21 +11181.157809 + 31 +0.0 + 0 +LINE + 5 +547 + 8 +0 + 62 + 0 + 10 +6666.863095 + 20 +11182.528334 + 30 +0.0 + 11 +6666.863095 + 21 +11182.528334 + 31 +0.0 + 0 +LINE + 5 +548 + 8 +0 + 62 + 0 + 10 +6631.467561 + 20 +11126.085413 + 30 +0.0 + 11 +6631.467561 + 21 +11126.085413 + 31 +0.0 + 0 +LINE + 5 +549 + 8 +0 + 62 + 0 + 10 +6647.727257 + 20 +11128.226042 + 30 +0.0 + 11 +6647.727257 + 21 +11128.226042 + 31 +0.0 + 0 +LINE + 5 +54A + 8 +0 + 62 + 0 + 10 +6639.497312 + 20 +11075.359539 + 30 +0.0 + 11 +6639.497312 + 21 +11075.359539 + 31 +0.0 + 0 +LINE + 5 +54B + 8 +0 + 62 + 0 + 10 +6649.907483 + 20 +11076.730064 + 30 +0.0 + 11 +6649.907483 + 21 +11076.730064 + 31 +0.0 + 0 +LINE + 5 +54C + 8 +0 + 62 + 0 + 10 +6666.167179 + 20 +11078.870693 + 30 +0.0 + 11 +6666.167179 + 21 +11078.870693 + 31 +0.0 + 0 +LINE + 5 +54D + 8 +0 + 62 + 0 + 10 +6647.718221 + 20 +11387.412193 + 30 +0.0 + 11 +6647.718221 + 21 +11387.412193 + 31 +0.0 + 0 +LINE + 5 +54E + 8 +0 + 62 + 0 + 10 +6656.152135 + 20 +11382.039197 + 30 +0.0 + 11 +6656.152135 + 21 +11382.039197 + 31 +0.0 + 0 +LINE + 5 +54F + 8 +0 + 62 + 0 + 10 +6631.565654 + 20 +11437.494237 + 30 +0.0 + 11 +6631.565654 + 21 +11437.494237 + 31 +0.0 + 0 +LINE + 5 +550 + 8 +0 + 62 + 0 + 10 +6639.999568 + 20 +11432.121241 + 30 +0.0 + 11 +6639.999568 + 21 +11432.121241 + 31 +0.0 + 0 +LINE + 5 +551 + 8 +0 + 62 + 0 + 10 +6654.209093 + 20 +11462.8605 + 30 +0.0 + 11 +6654.209093 + 21 +11462.8605 + 31 +0.0 + 0 +LINE + 5 +552 + 8 +0 + 62 + 0 + 10 +6638.056526 + 20 +11512.942545 + 30 +0.0 + 11 +6638.056526 + 21 +11512.942545 + 31 +0.0 + 0 +LINE + 5 +553 + 8 +0 + 62 + 0 + 10 +6661.543356 + 20 +11537.771508 + 30 +0.0 + 11 +6661.543356 + 21 +11537.771508 + 31 +0.0 + 0 +LINE + 5 +554 + 8 +0 + 62 + 0 + 10 +6645.390789 + 20 +11587.853552 + 30 +0.0 + 11 +6645.390789 + 21 +11587.853552 + 31 +0.0 + 0 +LINE + 5 +555 + 8 +0 + 62 + 0 + 10 +6653.824704 + 20 +11582.480556 + 30 +0.0 + 11 +6653.824704 + 21 +11582.480556 + 31 +0.0 + 0 +LINE + 5 +556 + 8 +0 + 62 + 0 + 10 +6637.672136 + 20 +11632.562601 + 30 +0.0 + 11 +6637.672136 + 21 +11632.562601 + 31 +0.0 + 0 +LINE + 5 +557 + 8 +0 + 62 + 0 + 10 +6651.881661 + 20 +11663.30186 + 30 +0.0 + 11 +6651.881661 + 21 +11663.30186 + 31 +0.0 + 0 +LINE + 5 +558 + 8 +0 + 62 + 0 + 10 +6635.729094 + 20 +11713.383904 + 30 +0.0 + 11 +6635.729094 + 21 +11713.383904 + 31 +0.0 + 0 +LINE + 5 +559 + 8 +0 + 62 + 0 + 10 +6663.870788 + 20 +11337.330148 + 30 +0.0 + 11 +6663.870788 + 21 +11337.330148 + 31 +0.0 + 0 +LINE + 5 +55A + 8 +0 + 62 + 0 + 10 +6640.383957 + 20 +11312.501185 + 30 +0.0 + 11 +6640.383957 + 21 +11312.501185 + 31 +0.0 + 0 +LINE + 5 +55B + 8 +0 + 62 + 0 + 10 +6656.536525 + 20 +11262.41914 + 30 +0.0 + 11 +6656.536525 + 21 +11262.41914 + 31 +0.0 + 0 +LINE + 5 +55C + 8 +0 + 62 + 0 + 10 +6633.893085 + 20 +11237.052878 + 30 +0.0 + 11 +6633.893085 + 21 +11237.052878 + 31 +0.0 + 0 +LINE + 5 +55D + 8 +0 + 62 + 0 + 10 +6642.327 + 20 +11231.679882 + 30 +0.0 + 11 +6642.327 + 21 +11231.679882 + 31 +0.0 + 0 +LINE + 5 +55E + 8 +0 + 62 + 0 + 10 +6650.045652 + 20 +11186.970833 + 30 +0.0 + 11 +6650.045652 + 21 +11186.970833 + 31 +0.0 + 0 +LINE + 5 +55F + 8 +0 + 62 + 0 + 10 +6658.479567 + 20 +11181.597837 + 30 +0.0 + 11 +6658.479567 + 21 +11181.597837 + 31 +0.0 + 0 +LINE + 5 +560 + 8 +0 + 62 + 0 + 10 +6666.19822 + 20 +11136.888788 + 30 +0.0 + 11 +6666.19822 + 21 +11136.888788 + 31 +0.0 + 0 +LINE + 5 +561 + 8 +0 + 62 + 0 + 10 +6642.711389 + 20 +11112.059825 + 30 +0.0 + 11 +6642.711389 + 21 +11112.059825 + 31 +0.0 + 0 +LINE + 5 +562 + 8 +0 + 62 + 0 + 10 +6635.339828 + 20 +11404.893992 + 30 +0.0 + 11 +6635.339828 + 21 +11404.893992 + 31 +0.0 + 0 +LINE + 5 +563 + 8 +0 + 62 + 0 + 10 +6639.026215 + 20 +11401.516041 + 30 +0.0 + 11 +6639.026215 + 21 +11401.516041 + 31 +0.0 + 0 +LINE + 5 +564 + 8 +0 + 62 + 0 + 10 +6656.42596 + 20 +11385.572112 + 30 +0.0 + 11 +6656.42596 + 21 +11385.572112 + 31 +0.0 + 0 +LINE + 5 +565 + 8 +0 + 62 + 0 + 10 +6634.563252 + 20 +11478.251254 + 30 +0.0 + 11 +6634.563252 + 21 +11478.251254 + 31 +0.0 + 0 +LINE + 5 +566 + 8 +0 + 62 + 0 + 10 +6654.46974 + 20 +11460.010319 + 30 +0.0 + 11 +6654.46974 + 21 +11460.010319 + 31 +0.0 + 0 +LINE + 5 +567 + 8 +0 + 62 + 0 + 10 +6658.156127 + 20 +11456.632368 + 30 +0.0 + 11 +6658.156127 + 21 +11456.632368 + 31 +0.0 + 0 +LINE + 5 +568 + 8 +0 + 62 + 0 + 10 +6632.607032 + 20 +11552.689461 + 30 +0.0 + 11 +6632.607032 + 21 +11552.689461 + 31 +0.0 + 0 +LINE + 5 +569 + 8 +0 + 62 + 0 + 10 +6636.293419 + 20 +11549.31151 + 30 +0.0 + 11 +6636.293419 + 21 +11549.31151 + 31 +0.0 + 0 +LINE + 5 +56A + 8 +0 + 62 + 0 + 10 +6653.693164 + 20 +11533.367581 + 30 +0.0 + 11 +6653.693164 + 21 +11533.367581 + 31 +0.0 + 0 +LINE + 5 +56B + 8 +0 + 62 + 0 + 10 +6631.830457 + 20 +11626.046723 + 30 +0.0 + 11 +6631.830457 + 21 +11626.046723 + 31 +0.0 + 0 +LINE + 5 +56C + 8 +0 + 62 + 0 + 10 +6651.736945 + 20 +11607.805788 + 30 +0.0 + 11 +6651.736945 + 21 +11607.805788 + 31 +0.0 + 0 +LINE + 5 +56D + 8 +0 + 62 + 0 + 10 +6655.423331 + 20 +11604.427837 + 30 +0.0 + 11 +6655.423331 + 21 +11604.427837 + 31 +0.0 + 0 +LINE + 5 +56E + 8 +0 + 62 + 0 + 10 +6633.560624 + 20 +11697.106979 + 30 +0.0 + 11 +6633.560624 + 21 +11697.106979 + 31 +0.0 + 0 +LINE + 5 +56F + 8 +0 + 62 + 0 + 10 +6650.960369 + 20 +11681.16305 + 30 +0.0 + 11 +6650.960369 + 21 +11681.16305 + 31 +0.0 + 0 +LINE + 5 +570 + 8 +0 + 62 + 0 + 10 +6637.296048 + 20 +11330.455785 + 30 +0.0 + 11 +6637.296048 + 21 +11330.455785 + 31 +0.0 + 0 +LINE + 5 +571 + 8 +0 + 62 + 0 + 10 +6657.202536 + 20 +11312.214849 + 30 +0.0 + 11 +6657.202536 + 21 +11312.214849 + 31 +0.0 + 0 +LINE + 5 +572 + 8 +0 + 62 + 0 + 10 +6660.888922 + 20 +11308.836898 + 30 +0.0 + 11 +6660.888922 + 21 +11308.836898 + 31 +0.0 + 0 +LINE + 5 +573 + 8 +0 + 62 + 0 + 10 +6638.072624 + 20 +11257.098523 + 30 +0.0 + 11 +6638.072624 + 21 +11257.098523 + 31 +0.0 + 0 +LINE + 5 +574 + 8 +0 + 62 + 0 + 10 +6641.75901 + 20 +11253.720572 + 30 +0.0 + 11 +6641.75901 + 21 +11253.720572 + 31 +0.0 + 0 +LINE + 5 +575 + 8 +0 + 62 + 0 + 10 +6659.158755 + 20 +11237.776643 + 30 +0.0 + 11 +6659.158755 + 21 +11237.776643 + 31 +0.0 + 0 +LINE + 5 +576 + 8 +0 + 62 + 0 + 10 +6640.028843 + 20 +11182.660316 + 30 +0.0 + 11 +6640.028843 + 21 +11182.660316 + 31 +0.0 + 0 +LINE + 5 +577 + 8 +0 + 62 + 0 + 10 +6659.935331 + 20 +11164.41938 + 30 +0.0 + 11 +6659.935331 + 21 +11164.41938 + 31 +0.0 + 0 +LINE + 5 +578 + 8 +0 + 62 + 0 + 10 +6663.621718 + 20 +11161.041429 + 30 +0.0 + 11 +6663.621718 + 21 +11161.041429 + 31 +0.0 + 0 +LINE + 5 +579 + 8 +0 + 62 + 0 + 10 +6640.805419 + 20 +11109.303053 + 30 +0.0 + 11 +6640.805419 + 21 +11109.303053 + 31 +0.0 + 0 +LINE + 5 +57A + 8 +0 + 62 + 0 + 10 +6644.491806 + 20 +11105.925102 + 30 +0.0 + 11 +6644.491806 + 21 +11105.925102 + 31 +0.0 + 0 +LINE + 5 +57B + 8 +0 + 62 + 0 + 10 +6661.891551 + 20 +11089.981173 + 30 +0.0 + 11 +6661.891551 + 21 +11089.981173 + 31 +0.0 + 0 +ENDBLK + 5 +57C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X13 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X13 + 1 + + 0 +LINE + 5 +57E + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +9243.980421 + 30 +0.0 + 11 +6622.135223 + 21 +10157.669129 + 31 +0.0 + 0 +LINE + 5 +57F + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +9420.757116 + 30 +0.0 + 11 +6622.135223 + 21 +10334.445824 + 31 +0.0 + 0 +LINE + 5 +580 + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +9597.533811 + 30 +0.0 + 11 +6456.017848 + 21 +10345.105144 + 31 +0.0 + 0 +LINE + 5 +581 + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +9774.310507 + 30 +0.0 + 11 +6279.241152 + 21 +10345.105144 + 31 +0.0 + 0 +LINE + 5 +582 + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +9951.087202 + 30 +0.0 + 11 +6102.464457 + 21 +10345.105144 + 31 +0.0 + 0 +LINE + 5 +583 + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +10127.863897 + 30 +0.0 + 11 +5925.687762 + 21 +10345.105144 + 31 +0.0 + 0 +LINE + 5 +584 + 8 +0 + 62 + 0 + 10 +5708.446515 + 20 +10304.640593 + 30 +0.0 + 11 +5748.911066 + 21 +10345.105144 + 31 +0.0 + 0 +LINE + 5 +585 + 8 +0 + 62 + 0 + 10 +5731.668685 + 20 +9090.425896 + 30 +0.0 + 11 +6622.135223 + 21 +9980.892434 + 31 +0.0 + 0 +LINE + 5 +586 + 8 +0 + 62 + 0 + 10 +5908.445381 + 20 +9090.425896 + 30 +0.0 + 11 +6622.135223 + 21 +9804.115738 + 31 +0.0 + 0 +LINE + 5 +587 + 8 +0 + 62 + 0 + 10 +6085.222076 + 20 +9090.425896 + 30 +0.0 + 11 +6622.135223 + 21 +9627.339043 + 31 +0.0 + 0 +LINE + 5 +588 + 8 +0 + 62 + 0 + 10 +6261.998771 + 20 +9090.425896 + 30 +0.0 + 11 +6622.135223 + 21 +9450.562348 + 31 +0.0 + 0 +LINE + 5 +589 + 8 +0 + 62 + 0 + 10 +6438.775467 + 20 +9090.425896 + 30 +0.0 + 11 +6622.135223 + 21 +9273.785653 + 31 +0.0 + 0 +LINE + 5 +58A + 8 +0 + 62 + 0 + 10 +6615.552162 + 20 +9090.425896 + 30 +0.0 + 11 +6622.135223 + 21 +9097.008957 + 31 +0.0 + 0 +ENDBLK + 5 +58B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X14 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X14 + 1 + + 0 +LINE + 5 +58D + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +10947.102322 + 30 +0.0 + 11 +6648.4375 + 21 +10947.102322 + 31 +0.0 + 0 +LINE + 5 +58E + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +10947.102322 + 30 +0.0 + 11 +6695.3125 + 21 +10947.102322 + 31 +0.0 + 0 +LINE + 5 +58F + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +10960.633969 + 30 +0.0 + 11 +6671.875 + 21 +10960.633969 + 31 +0.0 + 0 +LINE + 5 +590 + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +10960.633969 + 30 +0.0 + 11 +6710.0 + 21 +10960.633969 + 31 +0.0 + 0 +LINE + 5 +591 + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +10974.165616 + 30 +0.0 + 11 +6648.4375 + 21 +10974.165616 + 31 +0.0 + 0 +LINE + 5 +592 + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +10974.165616 + 30 +0.0 + 11 +6695.3125 + 21 +10974.165616 + 31 +0.0 + 0 +LINE + 5 +593 + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +10987.697263 + 30 +0.0 + 11 +6671.875 + 21 +10987.697263 + 31 +0.0 + 0 +LINE + 5 +594 + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +10987.697263 + 30 +0.0 + 11 +6710.0 + 21 +10987.697263 + 31 +0.0 + 0 +LINE + 5 +595 + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +11001.228909 + 30 +0.0 + 11 +6648.4375 + 21 +11001.228909 + 31 +0.0 + 0 +LINE + 5 +596 + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +11001.228909 + 30 +0.0 + 11 +6695.3125 + 21 +11001.228909 + 31 +0.0 + 0 +LINE + 5 +597 + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +11014.760556 + 30 +0.0 + 11 +6671.875 + 21 +11014.760556 + 31 +0.0 + 0 +LINE + 5 +598 + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +11014.760556 + 30 +0.0 + 11 +6710.0 + 21 +11014.760556 + 31 +0.0 + 0 +LINE + 5 +599 + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +11028.292203 + 30 +0.0 + 11 +6648.4375 + 21 +11028.292203 + 31 +0.0 + 0 +LINE + 5 +59A + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +11028.292203 + 30 +0.0 + 11 +6695.3125 + 21 +11028.292203 + 31 +0.0 + 0 +LINE + 5 +59B + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +11041.82385 + 30 +0.0 + 11 +6671.875 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +59C + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +11041.82385 + 30 +0.0 + 11 +6710.0 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +59D + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +11055.355497 + 30 +0.0 + 11 +6648.4375 + 21 +11055.355497 + 31 +0.0 + 0 +LINE + 5 +59E + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +11055.355497 + 30 +0.0 + 11 +6695.3125 + 21 +11055.355497 + 31 +0.0 + 0 +LINE + 5 +59F + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +10933.570675 + 30 +0.0 + 11 +6671.875 + 21 +10933.570675 + 31 +0.0 + 0 +LINE + 5 +5A0 + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +10933.570675 + 30 +0.0 + 11 +6710.0 + 21 +10933.570675 + 31 +0.0 + 0 +LINE + 5 +5A1 + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +10920.039028 + 30 +0.0 + 11 +6648.4375 + 21 +10920.039028 + 31 +0.0 + 0 +LINE + 5 +5A2 + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +10920.039028 + 30 +0.0 + 11 +6695.3125 + 21 +10920.039028 + 31 +0.0 + 0 +LINE + 5 +5A3 + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +10906.507381 + 30 +0.0 + 11 +6671.875 + 21 +10906.507381 + 31 +0.0 + 0 +LINE + 5 +5A4 + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +10906.507381 + 30 +0.0 + 11 +6710.0 + 21 +10906.507381 + 31 +0.0 + 0 +LINE + 5 +5A5 + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +10892.975734 + 30 +0.0 + 11 +6648.4375 + 21 +10892.975734 + 31 +0.0 + 0 +LINE + 5 +5A6 + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +10892.975734 + 30 +0.0 + 11 +6695.3125 + 21 +10892.975734 + 31 +0.0 + 0 +LINE + 5 +5A7 + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +10879.444088 + 30 +0.0 + 11 +6671.875 + 21 +10879.444088 + 31 +0.0 + 0 +LINE + 5 +5A8 + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +10879.444088 + 30 +0.0 + 11 +6710.0 + 21 +10879.444088 + 31 +0.0 + 0 +LINE + 5 +5A9 + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +10865.912441 + 30 +0.0 + 11 +6648.4375 + 21 +10865.912441 + 31 +0.0 + 0 +LINE + 5 +5AA + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +10865.912441 + 30 +0.0 + 11 +6695.3125 + 21 +10865.912441 + 31 +0.0 + 0 +LINE + 5 +5AB + 8 +0 + 62 + 0 + 10 +6656.25 + 20 +10852.380794 + 30 +0.0 + 11 +6671.875 + 21 +10852.380794 + 31 +0.0 + 0 +LINE + 5 +5AC + 8 +0 + 62 + 0 + 10 +6703.125 + 20 +10852.380794 + 30 +0.0 + 11 +6710.0 + 21 +10852.380794 + 31 +0.0 + 0 +LINE + 5 +5AD + 8 +0 + 62 + 0 + 10 +6632.8125 + 20 +10838.849147 + 30 +0.0 + 11 +6648.4375 + 21 +10838.849147 + 31 +0.0 + 0 +LINE + 5 +5AE + 8 +0 + 62 + 0 + 10 +6679.6875 + 20 +10838.849147 + 30 +0.0 + 11 +6695.3125 + 21 +10838.849147 + 31 +0.0 + 0 +LINE + 5 +5AF + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +10879.44411 + 30 +0.0 + 11 +6695.312457 + 21 +10892.975757 + 31 +0.0 + 0 +LINE + 5 +5B0 + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +10920.039051 + 30 +0.0 + 11 +6671.874957 + 21 +10933.570698 + 31 +0.0 + 0 +LINE + 5 +5B1 + 8 +0 + 62 + 0 + 10 +6656.249957 + 20 +10960.633992 + 30 +0.0 + 11 +6648.437457 + 21 +10974.165639 + 31 +0.0 + 0 +LINE + 5 +5B2 + 8 +0 + 62 + 0 + 10 +6632.812457 + 20 +11001.228933 + 30 +0.0 + 11 +6630.0 + 21 +11006.100252 + 31 +0.0 + 0 +LINE + 5 +5B3 + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +10852.380817 + 30 +0.0 + 11 +6695.312457 + 21 +10865.912464 + 31 +0.0 + 0 +LINE + 5 +5B4 + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +10892.975757 + 30 +0.0 + 11 +6671.874957 + 21 +10906.507404 + 31 +0.0 + 0 +LINE + 5 +5B5 + 8 +0 + 62 + 0 + 10 +6656.249957 + 20 +10933.570698 + 30 +0.0 + 11 +6648.437457 + 21 +10947.102345 + 31 +0.0 + 0 +LINE + 5 +5B6 + 8 +0 + 62 + 0 + 10 +6632.812457 + 20 +10974.165639 + 30 +0.0 + 11 +6630.0 + 21 +10979.036958 + 31 +0.0 + 0 +LINE + 5 +5B7 + 8 +0 + 62 + 0 + 10 +6700.421528 + 20 +10830.0 + 30 +0.0 + 11 +6695.312458 + 21 +10838.84917 + 31 +0.0 + 0 +LINE + 5 +5B8 + 8 +0 + 62 + 0 + 10 +6679.687458 + 20 +10865.912464 + 30 +0.0 + 11 +6671.874958 + 21 +10879.444111 + 31 +0.0 + 0 +LINE + 5 +5B9 + 8 +0 + 62 + 0 + 10 +6656.249958 + 20 +10906.507404 + 30 +0.0 + 11 +6648.437458 + 21 +10920.039051 + 31 +0.0 + 0 +LINE + 5 +5BA + 8 +0 + 62 + 0 + 10 +6632.812458 + 20 +10947.102345 + 30 +0.0 + 11 +6630.0 + 21 +10951.973665 + 31 +0.0 + 0 +LINE + 5 +5BB + 8 +0 + 62 + 0 + 10 +6679.687458 + 20 +10838.84917 + 30 +0.0 + 11 +6671.874958 + 21 +10852.380817 + 31 +0.0 + 0 +LINE + 5 +5BC + 8 +0 + 62 + 0 + 10 +6656.249958 + 20 +10879.444111 + 30 +0.0 + 11 +6648.437458 + 21 +10892.975757 + 31 +0.0 + 0 +LINE + 5 +5BD + 8 +0 + 62 + 0 + 10 +6632.812458 + 20 +10920.039051 + 30 +0.0 + 11 +6630.0 + 21 +10924.910371 + 31 +0.0 + 0 +LINE + 5 +5BE + 8 +0 + 62 + 0 + 10 +6656.249958 + 20 +10852.380817 + 30 +0.0 + 11 +6648.437458 + 21 +10865.912464 + 31 +0.0 + 0 +LINE + 5 +5BF + 8 +0 + 62 + 0 + 10 +6632.812458 + 20 +10892.975758 + 30 +0.0 + 11 +6630.0 + 21 +10897.847077 + 31 +0.0 + 0 +LINE + 5 +5C0 + 8 +0 + 62 + 0 + 10 +6653.546528 + 20 +10830.0 + 30 +0.0 + 11 +6648.437458 + 21 +10838.84917 + 31 +0.0 + 0 +LINE + 5 +5C1 + 8 +0 + 62 + 0 + 10 +6632.812458 + 20 +10865.912464 + 30 +0.0 + 11 +6630.0 + 21 +10870.783783 + 31 +0.0 + 0 +LINE + 5 +5C2 + 8 +0 + 62 + 0 + 10 +6632.812458 + 20 +10838.84917 + 30 +0.0 + 11 +6630.0 + 21 +10843.72049 + 31 +0.0 + 0 +LINE + 5 +5C3 + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +10906.507404 + 30 +0.0 + 11 +6695.312457 + 21 +10920.039051 + 31 +0.0 + 0 +LINE + 5 +5C4 + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +10947.102345 + 30 +0.0 + 11 +6671.874957 + 21 +10960.633992 + 31 +0.0 + 0 +LINE + 5 +5C5 + 8 +0 + 62 + 0 + 10 +6656.249957 + 20 +10987.697286 + 30 +0.0 + 11 +6648.437457 + 21 +11001.228933 + 31 +0.0 + 0 +LINE + 5 +5C6 + 8 +0 + 62 + 0 + 10 +6632.812457 + 20 +11028.292227 + 30 +0.0 + 11 +6630.0 + 21 +11033.163546 + 31 +0.0 + 0 +LINE + 5 +5C7 + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +10933.570698 + 30 +0.0 + 11 +6695.312457 + 21 +10947.102345 + 31 +0.0 + 0 +LINE + 5 +5C8 + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +10974.165639 + 30 +0.0 + 11 +6671.874957 + 21 +10987.697286 + 31 +0.0 + 0 +LINE + 5 +5C9 + 8 +0 + 62 + 0 + 10 +6656.249957 + 20 +11014.76058 + 30 +0.0 + 11 +6648.437457 + 21 +11028.292227 + 31 +0.0 + 0 +LINE + 5 +5CA + 8 +0 + 62 + 0 + 10 +6632.812457 + 20 +11055.355521 + 30 +0.0 + 11 +6630.0 + 21 +11060.22684 + 31 +0.0 + 0 +LINE + 5 +5CB + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +10960.633992 + 30 +0.0 + 11 +6695.312457 + 21 +10974.165639 + 31 +0.0 + 0 +LINE + 5 +5CC + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +11001.228933 + 30 +0.0 + 11 +6671.874957 + 21 +11014.76058 + 31 +0.0 + 0 +LINE + 5 +5CD + 8 +0 + 62 + 0 + 10 +6656.249957 + 20 +11041.823874 + 30 +0.0 + 11 +6648.437457 + 21 +11055.355521 + 31 +0.0 + 0 +LINE + 5 +5CE + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +10987.697286 + 30 +0.0 + 11 +6695.312457 + 21 +11001.228933 + 31 +0.0 + 0 +LINE + 5 +5CF + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +11028.292227 + 30 +0.0 + 11 +6671.874957 + 21 +11041.823874 + 31 +0.0 + 0 +LINE + 5 +5D0 + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +11014.76058 + 30 +0.0 + 11 +6695.312457 + 21 +11028.292227 + 31 +0.0 + 0 +LINE + 5 +5D1 + 8 +0 + 62 + 0 + 10 +6679.687457 + 20 +11055.35552 + 30 +0.0 + 11 +6674.119214 + 21 +11065.0 + 31 +0.0 + 0 +LINE + 5 +5D2 + 8 +0 + 62 + 0 + 10 +6703.124957 + 20 +11041.823874 + 30 +0.0 + 11 +6695.312457 + 21 +11055.35552 + 31 +0.0 + 0 +LINE + 5 +5D3 + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10888.104392 + 30 +0.0 + 11 +6632.812499 + 21 +10892.975783 + 31 +0.0 + 0 +LINE + 5 +5D4 + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +10920.039076 + 30 +0.0 + 11 +6656.249999 + 21 +10933.570723 + 31 +0.0 + 0 +LINE + 5 +5D5 + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +10960.634017 + 30 +0.0 + 11 +6679.687499 + 21 +10974.165664 + 31 +0.0 + 0 +LINE + 5 +5D6 + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +11001.228958 + 30 +0.0 + 11 +6703.124999 + 21 +11014.760605 + 31 +0.0 + 0 +LINE + 5 +5D7 + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10915.167685 + 30 +0.0 + 11 +6632.812499 + 21 +10920.039076 + 31 +0.0 + 0 +LINE + 5 +5D8 + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +10947.10237 + 30 +0.0 + 11 +6656.249999 + 21 +10960.634017 + 31 +0.0 + 0 +LINE + 5 +5D9 + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +10987.697311 + 30 +0.0 + 11 +6679.687499 + 21 +11001.228958 + 31 +0.0 + 0 +LINE + 5 +5DA + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +11028.292252 + 30 +0.0 + 11 +6703.124999 + 21 +11041.823899 + 31 +0.0 + 0 +LINE + 5 +5DB + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10942.230979 + 30 +0.0 + 11 +6632.812499 + 21 +10947.10237 + 31 +0.0 + 0 +LINE + 5 +5DC + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +10974.165664 + 30 +0.0 + 11 +6656.249999 + 21 +10987.697311 + 31 +0.0 + 0 +LINE + 5 +5DD + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +11014.760605 + 30 +0.0 + 11 +6679.687499 + 21 +11028.292252 + 31 +0.0 + 0 +LINE + 5 +5DE + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +11055.355546 + 30 +0.0 + 11 +6700.880727 + 21 +11065.0 + 31 +0.0 + 0 +LINE + 5 +5DF + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10969.294273 + 30 +0.0 + 11 +6632.812499 + 21 +10974.165664 + 31 +0.0 + 0 +LINE + 5 +5E0 + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +11001.228958 + 30 +0.0 + 11 +6656.249999 + 21 +11014.760605 + 31 +0.0 + 0 +LINE + 5 +5E1 + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +11041.823899 + 30 +0.0 + 11 +6679.687499 + 21 +11055.355546 + 31 +0.0 + 0 +LINE + 5 +5E2 + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10996.357567 + 30 +0.0 + 11 +6632.812499 + 21 +11001.228958 + 31 +0.0 + 0 +LINE + 5 +5E3 + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +11028.292252 + 30 +0.0 + 11 +6656.249999 + 21 +11041.823899 + 31 +0.0 + 0 +LINE + 5 +5E4 + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +11023.42086 + 30 +0.0 + 11 +6632.812499 + 21 +11028.292252 + 31 +0.0 + 0 +LINE + 5 +5E5 + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +11055.355546 + 30 +0.0 + 11 +6654.005727 + 21 +11065.0 + 31 +0.0 + 0 +LINE + 5 +5E6 + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +11050.484154 + 30 +0.0 + 11 +6632.812499 + 21 +11055.355546 + 31 +0.0 + 0 +LINE + 5 +5E7 + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10861.041098 + 30 +0.0 + 11 +6632.812499 + 21 +10865.912489 + 31 +0.0 + 0 +LINE + 5 +5E8 + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +10892.975783 + 30 +0.0 + 11 +6656.249999 + 21 +10906.50743 + 31 +0.0 + 0 +LINE + 5 +5E9 + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +10933.570723 + 30 +0.0 + 11 +6679.687499 + 21 +10947.10237 + 31 +0.0 + 0 +LINE + 5 +5EA + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +10974.165664 + 30 +0.0 + 11 +6703.124999 + 21 +10987.697311 + 31 +0.0 + 0 +LINE + 5 +5EB + 8 +0 + 62 + 0 + 10 +6630.0 + 20 +10833.977804 + 30 +0.0 + 11 +6632.812499 + 21 +10838.849195 + 31 +0.0 + 0 +LINE + 5 +5EC + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +10865.912489 + 30 +0.0 + 11 +6656.249999 + 21 +10879.444136 + 31 +0.0 + 0 +LINE + 5 +5ED + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +10906.50743 + 30 +0.0 + 11 +6679.687499 + 21 +10920.039077 + 31 +0.0 + 0 +LINE + 5 +5EE + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +10947.10237 + 30 +0.0 + 11 +6703.124999 + 21 +10960.634017 + 31 +0.0 + 0 +LINE + 5 +5EF + 8 +0 + 62 + 0 + 10 +6648.437499 + 20 +10838.849195 + 30 +0.0 + 11 +6656.249999 + 21 +10852.380842 + 31 +0.0 + 0 +LINE + 5 +5F0 + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +10879.444136 + 30 +0.0 + 11 +6679.687499 + 21 +10892.975783 + 31 +0.0 + 0 +LINE + 5 +5F1 + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +10920.039077 + 30 +0.0 + 11 +6703.124999 + 21 +10933.570724 + 31 +0.0 + 0 +LINE + 5 +5F2 + 8 +0 + 62 + 0 + 10 +6671.874999 + 20 +10852.380842 + 30 +0.0 + 11 +6679.687499 + 21 +10865.912489 + 31 +0.0 + 0 +LINE + 5 +5F3 + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +10892.975783 + 30 +0.0 + 11 +6703.124999 + 21 +10906.50743 + 31 +0.0 + 0 +LINE + 5 +5F4 + 8 +0 + 62 + 0 + 10 +6674.578413 + 20 +10830.0 + 30 +0.0 + 11 +6679.687499 + 21 +10838.849195 + 31 +0.0 + 0 +LINE + 5 +5F5 + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +10865.912489 + 30 +0.0 + 11 +6703.124999 + 21 +10879.444136 + 31 +0.0 + 0 +LINE + 5 +5F6 + 8 +0 + 62 + 0 + 10 +6695.312499 + 20 +10838.849195 + 30 +0.0 + 11 +6703.124999 + 21 +10852.380842 + 31 +0.0 + 0 +ENDBLK + 5 +5F7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X15 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X15 + 1 + + 0 +LINE + 5 +5F9 + 8 +0 + 62 + 0 + 10 +6088.349571 + 20 +8740.0 + 30 +0.0 + 11 +6403.349571 + 21 +9055.0 + 31 +0.0 + 0 +LINE + 5 +5FA + 8 +0 + 62 + 0 + 10 +5911.572875 + 20 +8740.0 + 30 +0.0 + 11 +6226.572875 + 21 +9055.0 + 31 +0.0 + 0 +LINE + 5 +5FB + 8 +0 + 62 + 0 + 10 +5734.79618 + 20 +8740.0 + 30 +0.0 + 11 +6049.79618 + 21 +9055.0 + 31 +0.0 + 0 +LINE + 5 +5FC + 8 +0 + 62 + 0 + 10 +5710.0 + 20 +8891.980515 + 30 +0.0 + 11 +5873.019485 + 21 +9055.0 + 31 +0.0 + 0 +LINE + 5 +5FD + 8 +0 + 62 + 0 + 10 +6265.126266 + 20 +8740.0 + 30 +0.0 + 11 +6580.126266 + 21 +9055.0 + 31 +0.0 + 0 +LINE + 5 +5FE + 8 +0 + 62 + 0 + 10 +6441.902961 + 20 +8740.0 + 30 +0.0 + 11 +6624.287011 + 21 +8922.38405 + 31 +0.0 + 0 +LINE + 5 +5FF + 8 +0 + 62 + 0 + 10 +6618.679656 + 20 +8740.0 + 30 +0.0 + 11 +6623.331461 + 21 +8744.651805 + 31 +0.0 + 0 +ENDBLK + 5 +600 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D16 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D16 + 1 + + 0 +LINE + 5 +602 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11771.335123 + 30 +0.0 + 11 +9369.023561 + 21 +11867.053132 + 31 +0.0 + 0 +INSERT + 5 +603 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11770.335123 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +604 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11868.053132 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +605 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9325.273561 + 20 +11797.319128 + 30 +0.0 + 40 +87.5 + 1 +4 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9281.523561 + 21 +11819.194128 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +607 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8592.462088 + 20 +11770.335123 + 30 +0.0 + 0 +POINT + 5 +608 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8592.462088 + 20 +11868.053132 + 30 +0.0 + 0 +POINT + 5 +609 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11868.053132 + 30 +0.0 + 0 +ENDBLK + 5 +60A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D17 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D17 + 1 + + 0 +LINE + 5 +60C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11729.455992 + 30 +0.0 + 11 +9369.023561 + 21 +11769.335123 + 31 +0.0 + 0 +INSERT + 5 +60D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11728.455992 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +60E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11770.335123 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +60F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9325.273561 + 20 +11738.458057 + 30 +0.0 + 40 +87.5 + 1 +1 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9281.523561 + 21 +11749.395557 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +610 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8592.462088 + 20 +11728.455992 + 30 +0.0 + 0 +POINT + 5 +611 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8592.462088 + 20 +11770.335123 + 30 +0.0 + 0 +POINT + 5 +612 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11770.335123 + 30 +0.0 + 0 +ENDBLK + 5 +613 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D18 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D18 + 1 + + 0 +LINE + 5 +615 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11626.154251 + 30 +0.0 + 11 +9369.023561 + 21 +11727.455992 + 31 +0.0 + 0 +INSERT + 5 +616 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11625.154251 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +617 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11728.455992 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +618 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9325.273561 + 20 +11654.930121 + 30 +0.0 + 40 +87.5 + 1 +4 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9281.523561 + 21 +11676.805121 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +619 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8581.288492 + 20 +11625.154251 + 30 +0.0 + 0 +POINT + 5 +61A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8592.462088 + 20 +11728.455992 + 30 +0.0 + 0 +POINT + 5 +61B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11728.455992 + 30 +0.0 + 0 +ENDBLK + 5 +61C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D19 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D19 + 1 + + 0 +LINE + 5 +61E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11229.698587 + 30 +0.0 + 11 +9369.023561 + 21 +11624.154251 + 31 +0.0 + 0 +INSERT + 5 +61F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11228.698587 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +620 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11625.154251 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +621 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9325.273561 + 20 +11383.176419 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9281.523561 + 21 +11426.926419 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +622 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8581.288492 + 20 +11228.698587 + 30 +0.0 + 0 +POINT + 5 +623 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8581.288492 + 20 +11625.154251 + 30 +0.0 + 0 +POINT + 5 +624 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11625.154251 + 30 +0.0 + 0 +ENDBLK + 5 +625 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D20 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D20 + 1 + + 0 +LINE + 5 +627 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6142.572752 + 20 +8884.916877 + 30 +0.0 + 11 +7051.902997 + 21 +8884.916877 + 31 +0.0 + 0 +INSERT + 5 +628 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6141.572752 + 20 +8884.916877 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +629 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7052.902997 + 20 +8884.916877 + 30 +0.0 + 0 +TEXT + 5 +62A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6542.550375 + 20 +8928.666877 + 30 +0.0 + 40 +87.5 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +6597.237875 + 21 +8972.416877 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +62B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6141.572752 + 20 +9555.000103 + 30 +0.0 + 0 +POINT + 5 +62C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7052.902997 + 20 +9561.814406 + 30 +0.0 + 0 +POINT + 5 +62D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7052.902997 + 20 +8884.916877 + 30 +0.0 + 0 +ENDBLK + 5 +62E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D21 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D21 + 1 + + 0 +LINE + 5 +630 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5502.376207 + 20 +13098.623281 + 30 +0.0 + 11 +5788.99228 + 21 +13098.623281 + 31 +0.0 + 0 +INSERT + 5 +631 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5501.376207 + 20 +13098.623281 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +632 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5789.99228 + 20 +13098.623281 + 30 +0.0 + 0 +TEXT + 5 +633 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5612.871744 + 20 +13142.373281 + 30 +0.0 + 40 +87.5 + 1 +11 + 41 +0.75 + 72 + 1 + 11 +5645.684244 + 21 +13186.123281 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +634 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5501.376207 + 20 +12526.305162 + 30 +0.0 + 0 +POINT + 5 +635 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5789.99228 + 20 +12526.305162 + 30 +0.0 + 0 +POINT + 5 +636 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5789.99228 + 20 +13098.623281 + 30 +0.0 + 0 +ENDBLK + 5 +637 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D22 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D22 + 1 + + 0 +LINE + 5 +639 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5790.99228 + 20 +13098.623281 + 30 +0.0 + 11 +5939.072764 + 21 +13098.623281 + 31 +0.0 + 0 +INSERT + 5 +63A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5789.99228 + 20 +13098.623281 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +63B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5940.072764 + 20 +13098.623281 + 30 +0.0 + 0 +TEXT + 5 +63C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5843.157522 + 20 +13142.373281 + 30 +0.0 + 40 +87.5 + 1 +6 + 41 +0.75 + 72 + 1 + 11 +5865.032522 + 21 +13186.123281 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +63D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5789.99228 + 20 +12526.305162 + 30 +0.0 + 0 +POINT + 5 +63E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5940.072764 + 20 +12526.305162 + 30 +0.0 + 0 +POINT + 5 +63F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5940.072764 + 20 +13098.623281 + 30 +0.0 + 0 +ENDBLK + 5 +640 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D23 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D23 + 1 + + 0 +LINE + 5 +642 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5941.072764 + 20 +13098.623281 + 30 +0.0 + 11 +6139.949559 + 21 +13098.623281 + 31 +0.0 + 0 +INSERT + 5 +643 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5940.072764 + 20 +13098.623281 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +644 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6140.949559 + 20 +13098.623281 + 30 +0.0 + 0 +TEXT + 5 +645 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6018.636162 + 20 +13142.373281 + 30 +0.0 + 40 +87.5 + 1 +8 + 41 +0.75 + 72 + 1 + 11 +6040.511162 + 21 +13186.123281 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +646 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5940.072764 + 20 +12526.305162 + 30 +0.0 + 0 +POINT + 5 +647 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6140.949559 + 20 +12521.68964 + 30 +0.0 + 0 +POINT + 5 +648 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6140.949559 + 20 +13098.623281 + 30 +0.0 + 0 +ENDBLK + 5 +649 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D24 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D24 + 1 + + 0 +LINE + 5 +64B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6141.949559 + 20 +13098.623281 + 30 +0.0 + 11 +7061.212311 + 21 +13098.623281 + 31 +0.0 + 0 +INSERT + 5 +64C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6140.949559 + 20 +13098.623281 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +64D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7062.212311 + 20 +13098.623281 + 30 +0.0 + 0 +TEXT + 5 +64E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6546.893435 + 20 +13142.373281 + 30 +0.0 + 40 +87.5 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +6601.580935 + 21 +13186.123281 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +64F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6140.949559 + 20 +12521.68964 + 30 +0.0 + 0 +POINT + 5 +650 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7062.212311 + 20 +12523.997349 + 30 +0.0 + 0 +POINT + 5 +651 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7062.212311 + 20 +13098.623281 + 30 +0.0 + 0 +ENDBLK + 5 +652 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D25 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D25 + 1 + + 0 +LINE + 5 +654 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7063.212311 + 20 +13098.623281 + 30 +0.0 + 11 +7098.155279 + 21 +13098.623281 + 31 +0.0 + 0 +INSERT + 5 +655 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7062.212311 + 20 +13098.623281 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +656 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7099.155279 + 20 +13098.623281 + 30 +0.0 + 0 +TEXT + 5 +657 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7139.613455 + 20 +13142.373281 + 30 +0.0 + 40 +87.5 + 1 +1 + 41 +0.75 + 72 + 1 + 11 +7150.550955 + 21 +13186.123281 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +658 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7062.212311 + 20 +12523.997349 + 30 +0.0 + 0 +POINT + 5 +659 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7099.155279 + 20 +12519.381932 + 30 +0.0 + 0 +POINT + 5 +65A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7099.155279 + 20 +13098.623281 + 30 +0.0 + 0 +ENDBLK + 5 +65B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D26 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D26 + 1 + + 0 +LINE + 5 +65D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6101.665062 + 20 +8884.916877 + 30 +0.0 + 11 +6140.572752 + 21 +8884.916877 + 31 +0.0 + 0 +INSERT + 5 +65E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6100.665062 + 20 +8884.916877 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +65F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6141.572752 + 20 +8884.916877 + 30 +0.0 + 0 +TEXT + 5 +660 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6029.0625 + 20 +8928.666877 + 30 +0.0 + 40 +87.5 + 1 +1 + 41 +0.75 + 72 + 1 + 11 +6040.0 + 21 +8972.416877 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +661 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6100.665062 + 20 +9555.000103 + 30 +0.0 + 0 +POINT + 5 +662 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6141.572752 + 20 +9555.000103 + 30 +0.0 + 0 +POINT + 5 +663 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6141.572752 + 20 +8884.916877 + 30 +0.0 + 0 +ENDBLK + 5 +664 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D27 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D27 + 1 + + 0 +LINE + 5 +666 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7053.902997 + 20 +8884.916877 + 30 +0.0 + 11 +7090.53801 + 21 +8884.916877 + 31 +0.0 + 0 +INSERT + 5 +667 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7052.902997 + 20 +8884.916877 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +668 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7091.53801 + 20 +8884.916877 + 30 +0.0 + 0 +TEXT + 5 +669 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7134.0625 + 20 +8928.666877 + 30 +0.0 + 40 +87.5 + 1 +1 + 41 +0.75 + 72 + 1 + 11 +7145.0 + 21 +8972.416877 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +66A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7052.902997 + 20 +9561.814406 + 30 +0.0 + 0 +POINT + 5 +66B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7091.53801 + 20 +9555.000103 + 30 +0.0 + 0 +POINT + 5 +66C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7091.53801 + 20 +8884.916877 + 30 +0.0 + 0 +ENDBLK + 5 +66D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D28 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D28 + 1 + + 0 +LINE + 5 +66F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11869.053132 + 30 +0.0 + 11 +9369.023561 + 21 +11931.267711 + 31 +0.0 + 0 +INSERT + 5 +670 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11868.053132 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +671 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9369.023561 + 20 +11932.267711 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +672 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9325.273561 + 20 +11958.125 + 30 +0.0 + 40 +87.5 + 1 +2 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9281.523561 + 21 +11980.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +673 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8592.462088 + 20 +11868.053132 + 30 +0.0 + 0 +POINT + 5 +674 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8595.255445 + 20 +11932.267711 + 30 +0.0 + 0 +POINT + 5 +675 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9369.023561 + 20 +11932.267711 + 30 +0.0 + 0 +ENDBLK + 5 +676 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D29 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D29 + 1 + + 0 +LINE + 5 +678 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +11229.0 + 30 +0.0 + 11 +7730.0 + 21 +11146.0 + 31 +0.0 + 0 +INSERT + 5 +679 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7730.0 + 20 +11230.0 + 30 +0.0 + 50 +90.0 + 0 +INSERT + 5 +67A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7730.0 + 20 +11145.0 + 30 +0.0 + 50 +270.0 + 0 +TEXT + 5 +67B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7686.25 + 20 +11165.625 + 30 +0.0 + 40 +87.5 + 1 +3 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +7642.5 + 21 +11187.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +67C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7055.0 + 20 +11230.0 + 30 +0.0 + 0 +POINT + 5 +67D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7055.0 + 20 +11145.0 + 30 +0.0 + 0 +POINT + 5 +67E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7730.0 + 20 +11145.0 + 30 +0.0 + 0 +ENDBLK + 5 +67F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X30 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X30 + 1 + + 0 +LINE + 5 +681 + 8 +0 + 62 + 0 + 10 +6427.766953 + 20 +4660.0 + 30 +0.0 + 11 +6862.141953 + 21 +5094.375 + 31 +0.0 + 0 +LINE + 5 +682 + 8 +0 + 62 + 0 + 10 +6250.990258 + 20 +4660.0 + 30 +0.0 + 11 +6685.365258 + 21 +5094.375 + 31 +0.0 + 0 +LINE + 5 +683 + 8 +0 + 62 + 0 + 10 +6215.0 + 20 +4800.786438 + 30 +0.0 + 11 +6508.588562 + 21 +5094.375 + 31 +0.0 + 0 +LINE + 5 +684 + 8 +0 + 62 + 0 + 10 +6215.0 + 20 +4977.563133 + 30 +0.0 + 11 +6331.811867 + 21 +5094.375 + 31 +0.0 + 0 +LINE + 5 +685 + 8 +0 + 62 + 0 + 10 +6604.543648 + 20 +4660.0 + 30 +0.0 + 11 +7038.918648 + 21 +5094.375 + 31 +0.0 + 0 +LINE + 5 +686 + 8 +0 + 62 + 0 + 10 +6781.320344 + 20 +4660.0 + 30 +0.0 + 11 +7125.0 + 21 +5003.679656 + 31 +0.0 + 0 +LINE + 5 +687 + 8 +0 + 62 + 0 + 10 +6958.097039 + 20 +4660.0 + 30 +0.0 + 11 +7126.991073 + 21 +4828.894034 + 31 +0.0 + 0 +ENDBLK + 5 +688 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X31 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X31 + 1 + + 0 +LINE + 5 +68A + 8 +0 + 62 + 0 + 10 +7126.991073 + 20 +4871.392875 + 30 +0.0 + 11 +7140.625 + 21 +4871.392875 + 31 +0.0 + 0 +LINE + 5 +68B + 8 +0 + 62 + 0 + 10 +7171.875 + 20 +4871.392875 + 30 +0.0 + 11 +7187.5 + 21 +4871.392875 + 31 +0.0 + 0 +LINE + 5 +68C + 8 +0 + 62 + 0 + 10 +7148.4375 + 20 +4884.924522 + 30 +0.0 + 11 +7164.0625 + 21 +4884.924522 + 31 +0.0 + 0 +LINE + 5 +68D + 8 +0 + 62 + 0 + 10 +7126.991073 + 20 +4898.456169 + 30 +0.0 + 11 +7140.625 + 21 +4898.456169 + 31 +0.0 + 0 +LINE + 5 +68E + 8 +0 + 62 + 0 + 10 +7171.875 + 20 +4898.456169 + 30 +0.0 + 11 +7187.5 + 21 +4898.456169 + 31 +0.0 + 0 +LINE + 5 +68F + 8 +0 + 62 + 0 + 10 +7148.4375 + 20 +4911.987816 + 30 +0.0 + 11 +7164.0625 + 21 +4911.987816 + 31 +0.0 + 0 +LINE + 5 +690 + 8 +0 + 62 + 0 + 10 +7126.991073 + 20 +4925.519463 + 30 +0.0 + 11 +7140.625 + 21 +4925.519463 + 31 +0.0 + 0 +LINE + 5 +691 + 8 +0 + 62 + 0 + 10 +7171.875 + 20 +4925.519463 + 30 +0.0 + 11 +7187.5 + 21 +4925.519463 + 31 +0.0 + 0 +LINE + 5 +692 + 8 +0 + 62 + 0 + 10 +7148.4375 + 20 +4939.051109 + 30 +0.0 + 11 +7164.0625 + 21 +4939.051109 + 31 +0.0 + 0 +LINE + 5 +693 + 8 +0 + 62 + 0 + 10 +7126.991073 + 20 +4952.582756 + 30 +0.0 + 11 +7140.625 + 21 +4952.582756 + 31 +0.0 + 0 +LINE + 5 +694 + 8 +0 + 62 + 0 + 10 +7171.875 + 20 +4952.582756 + 30 +0.0 + 11 +7187.5 + 21 +4952.582756 + 31 +0.0 + 0 +LINE + 5 +695 + 8 +0 + 62 + 0 + 10 +7148.4375 + 20 +4857.861228 + 30 +0.0 + 11 +7164.0625 + 21 +4857.861228 + 31 +0.0 + 0 +LINE + 5 +696 + 8 +0 + 62 + 0 + 10 +7126.991073 + 20 +4844.329581 + 30 +0.0 + 11 +7140.625 + 21 +4844.329581 + 31 +0.0 + 0 +LINE + 5 +697 + 8 +0 + 62 + 0 + 10 +7171.875 + 20 +4844.329581 + 30 +0.0 + 11 +7187.5 + 21 +4844.329581 + 31 +0.0 + 0 +LINE + 5 +698 + 8 +0 + 62 + 0 + 10 +7148.4375 + 20 +4830.797934 + 30 +0.0 + 11 +7164.0625 + 21 +4830.797934 + 31 +0.0 + 0 +LINE + 5 +699 + 8 +0 + 62 + 0 + 10 +7126.991073 + 20 +4817.266288 + 30 +0.0 + 11 +7140.625 + 21 +4817.266288 + 31 +0.0 + 0 +LINE + 5 +69A + 8 +0 + 62 + 0 + 10 +7171.875 + 20 +4817.266288 + 30 +0.0 + 11 +7187.5 + 21 +4817.266288 + 31 +0.0 + 0 +LINE + 5 +69B + 8 +0 + 62 + 0 + 10 +7148.4375 + 20 +4803.734641 + 30 +0.0 + 11 +7164.0625 + 21 +4803.734641 + 31 +0.0 + 0 +LINE + 5 +69C + 8 +0 + 62 + 0 + 10 +7190.160691 + 20 +4812.657781 + 30 +0.0 + 11 +7187.499967 + 21 +4817.26629 + 31 +0.0 + 0 +LINE + 5 +69D + 8 +0 + 62 + 0 + 10 +7171.874967 + 20 +4844.329584 + 30 +0.0 + 11 +7164.062467 + 21 +4857.86123 + 31 +0.0 + 0 +LINE + 5 +69E + 8 +0 + 62 + 0 + 10 +7148.437467 + 20 +4884.924524 + 30 +0.0 + 11 +7140.624967 + 21 +4898.456171 + 31 +0.0 + 0 +LINE + 5 +69F + 8 +0 + 62 + 0 + 10 +7171.874967 + 20 +4817.26629 + 30 +0.0 + 11 +7164.062467 + 21 +4830.797937 + 31 +0.0 + 0 +LINE + 5 +6A0 + 8 +0 + 62 + 0 + 10 +7148.437467 + 20 +4857.861231 + 30 +0.0 + 11 +7140.624967 + 21 +4871.392877 + 31 +0.0 + 0 +LINE + 5 +6A1 + 8 +0 + 62 + 0 + 10 +7169.105416 + 20 +4795.0 + 30 +0.0 + 11 +7164.062467 + 21 +4803.734643 + 31 +0.0 + 0 +LINE + 5 +6A2 + 8 +0 + 62 + 0 + 10 +7148.437467 + 20 +4830.797937 + 30 +0.0 + 11 +7140.624967 + 21 +4844.329584 + 31 +0.0 + 0 +LINE + 5 +6A3 + 8 +0 + 62 + 0 + 10 +7148.437467 + 20 +4803.734643 + 30 +0.0 + 11 +7140.624967 + 21 +4817.26629 + 31 +0.0 + 0 +LINE + 5 +6A4 + 8 +0 + 62 + 0 + 10 +7190.403153 + 20 +4839.301118 + 30 +0.0 + 11 +7187.499967 + 21 +4844.329584 + 31 +0.0 + 0 +LINE + 5 +6A5 + 8 +0 + 62 + 0 + 10 +7171.874967 + 20 +4871.392877 + 30 +0.0 + 11 +7164.062467 + 21 +4884.924524 + 31 +0.0 + 0 +LINE + 5 +6A6 + 8 +0 + 62 + 0 + 10 +7148.437467 + 20 +4911.987818 + 30 +0.0 + 11 +7140.624967 + 21 +4925.519465 + 31 +0.0 + 0 +LINE + 5 +6A7 + 8 +0 + 62 + 0 + 10 +7190.645615 + 20 +4865.944455 + 30 +0.0 + 11 +7187.499967 + 21 +4871.392877 + 31 +0.0 + 0 +LINE + 5 +6A8 + 8 +0 + 62 + 0 + 10 +7171.874967 + 20 +4898.456171 + 30 +0.0 + 11 +7164.062467 + 21 +4911.987818 + 31 +0.0 + 0 +LINE + 5 +6A9 + 8 +0 + 62 + 0 + 10 +7148.437467 + 20 +4939.051112 + 30 +0.0 + 11 +7140.624967 + 21 +4952.582759 + 31 +0.0 + 0 +LINE + 5 +6AA + 8 +0 + 62 + 0 + 10 +7190.888077 + 20 +4892.587792 + 30 +0.0 + 11 +7187.499967 + 21 +4898.456171 + 31 +0.0 + 0 +LINE + 5 +6AB + 8 +0 + 62 + 0 + 10 +7171.874967 + 20 +4925.519465 + 30 +0.0 + 11 +7164.062467 + 21 +4939.051112 + 31 +0.0 + 0 +LINE + 5 +6AC + 8 +0 + 62 + 0 + 10 +7191.130539 + 20 +4919.23113 + 30 +0.0 + 11 +7187.499967 + 21 +4925.519465 + 31 +0.0 + 0 +LINE + 5 +6AD + 8 +0 + 62 + 0 + 10 +7171.874967 + 20 +4952.582759 + 30 +0.0 + 11 +7167.80649 + 21 +4959.629568 + 31 +0.0 + 0 +LINE + 5 +6AE + 8 +0 + 62 + 0 + 10 +7191.373001 + 20 +4945.874467 + 30 +0.0 + 11 +7187.499967 + 21 +4952.582759 + 31 +0.0 + 0 +LINE + 5 +6AF + 8 +0 + 62 + 0 + 10 +7140.624986 + 20 +4871.392904 + 30 +0.0 + 11 +7148.437486 + 21 +4884.924551 + 31 +0.0 + 0 +LINE + 5 +6B0 + 8 +0 + 62 + 0 + 10 +7164.062486 + 20 +4911.987845 + 30 +0.0 + 11 +7171.874986 + 21 +4925.519492 + 31 +0.0 + 0 +LINE + 5 +6B1 + 8 +0 + 62 + 0 + 10 +7187.499986 + 20 +4952.582786 + 30 +0.0 + 11 +7191.497051 + 21 +4959.505907 + 31 +0.0 + 0 +LINE + 5 +6B2 + 8 +0 + 62 + 0 + 10 +7140.624986 + 20 +4898.456198 + 30 +0.0 + 11 +7148.437486 + 21 +4911.987845 + 31 +0.0 + 0 +LINE + 5 +6B3 + 8 +0 + 62 + 0 + 10 +7164.062486 + 20 +4939.051139 + 30 +0.0 + 11 +7171.874986 + 21 +4952.582786 + 31 +0.0 + 0 +LINE + 5 +6B4 + 8 +0 + 62 + 0 + 10 +7140.624986 + 20 +4925.519492 + 30 +0.0 + 11 +7148.437486 + 21 +4939.051139 + 31 +0.0 + 0 +LINE + 5 +6B5 + 8 +0 + 62 + 0 + 10 +7140.624986 + 20 +4952.582786 + 30 +0.0 + 11 +7144.693448 + 21 +4959.629568 + 31 +0.0 + 0 +LINE + 5 +6B6 + 8 +0 + 62 + 0 + 10 +7140.624986 + 20 +4844.329611 + 30 +0.0 + 11 +7148.437486 + 21 +4857.861258 + 31 +0.0 + 0 +LINE + 5 +6B7 + 8 +0 + 62 + 0 + 10 +7164.062486 + 20 +4884.924551 + 30 +0.0 + 11 +7171.874986 + 21 +4898.456198 + 31 +0.0 + 0 +LINE + 5 +6B8 + 8 +0 + 62 + 0 + 10 +7187.499986 + 20 +4925.519492 + 30 +0.0 + 11 +7191.246824 + 21 +4932.009206 + 31 +0.0 + 0 +LINE + 5 +6B9 + 8 +0 + 62 + 0 + 10 +7140.624986 + 20 +4817.266317 + 30 +0.0 + 11 +7148.437486 + 21 +4830.797964 + 31 +0.0 + 0 +LINE + 5 +6BA + 8 +0 + 62 + 0 + 10 +7164.062486 + 20 +4857.861258 + 30 +0.0 + 11 +7171.874986 + 21 +4871.392905 + 31 +0.0 + 0 +LINE + 5 +6BB + 8 +0 + 62 + 0 + 10 +7187.499986 + 20 +4898.456198 + 30 +0.0 + 11 +7190.996596 + 21 +4904.512504 + 31 +0.0 + 0 +LINE + 5 +6BC + 8 +0 + 62 + 0 + 10 +7143.394522 + 20 +4795.0 + 30 +0.0 + 11 +7148.437486 + 21 +4803.73467 + 31 +0.0 + 0 +LINE + 5 +6BD + 8 +0 + 62 + 0 + 10 +7164.062486 + 20 +4830.797964 + 30 +0.0 + 11 +7171.874986 + 21 +4844.329611 + 31 +0.0 + 0 +LINE + 5 +6BE + 8 +0 + 62 + 0 + 10 +7187.499986 + 20 +4871.392905 + 30 +0.0 + 11 +7190.746368 + 21 +4877.015803 + 31 +0.0 + 0 +LINE + 5 +6BF + 8 +0 + 62 + 0 + 10 +7164.062486 + 20 +4803.73467 + 30 +0.0 + 11 +7171.874986 + 21 +4817.266317 + 31 +0.0 + 0 +LINE + 5 +6C0 + 8 +0 + 62 + 0 + 10 +7187.499986 + 20 +4844.329611 + 30 +0.0 + 11 +7190.49614 + 21 +4849.519102 + 31 +0.0 + 0 +LINE + 5 +6C1 + 8 +0 + 62 + 0 + 10 +7187.499986 + 20 +4817.266317 + 30 +0.0 + 11 +7190.245912 + 21 +4822.0224 + 31 +0.0 + 0 +ENDBLK + 5 +6C2 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X32 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X32 + 1 + + 0 +LINE + 5 +6C4 + 8 +0 + 62 + 0 + 10 +7162.5 + 20 +4698.187795 + 30 +0.0 + 11 +7187.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6C5 + 8 +0 + 62 + 0 + 10 +7237.5 + 20 +4698.187795 + 30 +0.0 + 11 +7262.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6C6 + 8 +0 + 62 + 0 + 10 +7312.5 + 20 +4698.187795 + 30 +0.0 + 11 +7337.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6C7 + 8 +0 + 62 + 0 + 10 +7387.5 + 20 +4698.187795 + 30 +0.0 + 11 +7412.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6C8 + 8 +0 + 62 + 0 + 10 +7462.5 + 20 +4698.187795 + 30 +0.0 + 11 +7487.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6C9 + 8 +0 + 62 + 0 + 10 +7537.5 + 20 +4698.187795 + 30 +0.0 + 11 +7562.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6CA + 8 +0 + 62 + 0 + 10 +7612.5 + 20 +4698.187795 + 30 +0.0 + 11 +7637.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6CB + 8 +0 + 62 + 0 + 10 +7687.5 + 20 +4698.187795 + 30 +0.0 + 11 +7712.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6CC + 8 +0 + 62 + 0 + 10 +7762.5 + 20 +4698.187795 + 30 +0.0 + 11 +7787.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6CD + 8 +0 + 62 + 0 + 10 +7837.5 + 20 +4698.187795 + 30 +0.0 + 11 +7862.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6CE + 8 +0 + 62 + 0 + 10 +7912.5 + 20 +4698.187795 + 30 +0.0 + 11 +7937.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6CF + 8 +0 + 62 + 0 + 10 +7987.5 + 20 +4698.187795 + 30 +0.0 + 11 +8012.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D0 + 8 +0 + 62 + 0 + 10 +8062.5 + 20 +4698.187795 + 30 +0.0 + 11 +8087.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D1 + 8 +0 + 62 + 0 + 10 +8137.5 + 20 +4698.187795 + 30 +0.0 + 11 +8162.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D2 + 8 +0 + 62 + 0 + 10 +8212.5 + 20 +4698.187795 + 30 +0.0 + 11 +8237.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D3 + 8 +0 + 62 + 0 + 10 +8287.5 + 20 +4698.187795 + 30 +0.0 + 11 +8312.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D4 + 8 +0 + 62 + 0 + 10 +8362.5 + 20 +4698.187795 + 30 +0.0 + 11 +8387.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D5 + 8 +0 + 62 + 0 + 10 +8437.5 + 20 +4698.187795 + 30 +0.0 + 11 +8462.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D6 + 8 +0 + 62 + 0 + 10 +8512.5 + 20 +4698.187795 + 30 +0.0 + 11 +8537.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +6D7 + 8 +0 + 62 + 0 + 10 +7200.0 + 20 +4719.83843 + 30 +0.0 + 11 +7225.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6D8 + 8 +0 + 62 + 0 + 10 +7275.0 + 20 +4719.83843 + 30 +0.0 + 11 +7300.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6D9 + 8 +0 + 62 + 0 + 10 +7350.0 + 20 +4719.83843 + 30 +0.0 + 11 +7375.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6DA + 8 +0 + 62 + 0 + 10 +7425.0 + 20 +4719.83843 + 30 +0.0 + 11 +7450.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6DB + 8 +0 + 62 + 0 + 10 +7500.0 + 20 +4719.83843 + 30 +0.0 + 11 +7525.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6DC + 8 +0 + 62 + 0 + 10 +7575.0 + 20 +4719.83843 + 30 +0.0 + 11 +7600.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6DD + 8 +0 + 62 + 0 + 10 +7650.0 + 20 +4719.83843 + 30 +0.0 + 11 +7675.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6DE + 8 +0 + 62 + 0 + 10 +7725.0 + 20 +4719.83843 + 30 +0.0 + 11 +7750.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6DF + 8 +0 + 62 + 0 + 10 +7800.0 + 20 +4719.83843 + 30 +0.0 + 11 +7825.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E0 + 8 +0 + 62 + 0 + 10 +7875.0 + 20 +4719.83843 + 30 +0.0 + 11 +7900.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E1 + 8 +0 + 62 + 0 + 10 +7950.0 + 20 +4719.83843 + 30 +0.0 + 11 +7975.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E2 + 8 +0 + 62 + 0 + 10 +8025.0 + 20 +4719.83843 + 30 +0.0 + 11 +8050.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E3 + 8 +0 + 62 + 0 + 10 +8100.0 + 20 +4719.83843 + 30 +0.0 + 11 +8125.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E4 + 8 +0 + 62 + 0 + 10 +8175.0 + 20 +4719.83843 + 30 +0.0 + 11 +8200.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E5 + 8 +0 + 62 + 0 + 10 +8250.0 + 20 +4719.83843 + 30 +0.0 + 11 +8275.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E6 + 8 +0 + 62 + 0 + 10 +8325.0 + 20 +4719.83843 + 30 +0.0 + 11 +8350.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E7 + 8 +0 + 62 + 0 + 10 +8400.0 + 20 +4719.83843 + 30 +0.0 + 11 +8425.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E8 + 8 +0 + 62 + 0 + 10 +8475.0 + 20 +4719.83843 + 30 +0.0 + 11 +8500.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6E9 + 8 +0 + 62 + 0 + 10 +8550.0 + 20 +4719.83843 + 30 +0.0 + 11 +8565.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +6EA + 8 +0 + 62 + 0 + 10 +7162.5 + 20 +4741.489065 + 30 +0.0 + 11 +7187.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6EB + 8 +0 + 62 + 0 + 10 +7237.5 + 20 +4741.489065 + 30 +0.0 + 11 +7262.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6EC + 8 +0 + 62 + 0 + 10 +7312.5 + 20 +4741.489065 + 30 +0.0 + 11 +7337.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6ED + 8 +0 + 62 + 0 + 10 +7387.5 + 20 +4741.489065 + 30 +0.0 + 11 +7412.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6EE + 8 +0 + 62 + 0 + 10 +7462.5 + 20 +4741.489065 + 30 +0.0 + 11 +7487.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6EF + 8 +0 + 62 + 0 + 10 +7537.5 + 20 +4741.489065 + 30 +0.0 + 11 +7562.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F0 + 8 +0 + 62 + 0 + 10 +7612.5 + 20 +4741.489065 + 30 +0.0 + 11 +7637.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F1 + 8 +0 + 62 + 0 + 10 +7687.5 + 20 +4741.489065 + 30 +0.0 + 11 +7712.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F2 + 8 +0 + 62 + 0 + 10 +7762.5 + 20 +4741.489065 + 30 +0.0 + 11 +7787.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F3 + 8 +0 + 62 + 0 + 10 +7837.5 + 20 +4741.489065 + 30 +0.0 + 11 +7862.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F4 + 8 +0 + 62 + 0 + 10 +7912.5 + 20 +4741.489065 + 30 +0.0 + 11 +7937.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F5 + 8 +0 + 62 + 0 + 10 +7987.5 + 20 +4741.489065 + 30 +0.0 + 11 +8012.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F6 + 8 +0 + 62 + 0 + 10 +8062.5 + 20 +4741.489065 + 30 +0.0 + 11 +8087.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F7 + 8 +0 + 62 + 0 + 10 +8137.5 + 20 +4741.489065 + 30 +0.0 + 11 +8162.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F8 + 8 +0 + 62 + 0 + 10 +8212.5 + 20 +4741.489065 + 30 +0.0 + 11 +8237.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6F9 + 8 +0 + 62 + 0 + 10 +8287.5 + 20 +4741.489065 + 30 +0.0 + 11 +8312.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6FA + 8 +0 + 62 + 0 + 10 +8362.5 + 20 +4741.489065 + 30 +0.0 + 11 +8387.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6FB + 8 +0 + 62 + 0 + 10 +8437.5 + 20 +4741.489065 + 30 +0.0 + 11 +8462.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6FC + 8 +0 + 62 + 0 + 10 +8512.5 + 20 +4741.489065 + 30 +0.0 + 11 +8537.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +6FD + 8 +0 + 62 + 0 + 10 +7200.0 + 20 +4676.53716 + 30 +0.0 + 11 +7225.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +6FE + 8 +0 + 62 + 0 + 10 +7275.0 + 20 +4676.53716 + 30 +0.0 + 11 +7300.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +6FF + 8 +0 + 62 + 0 + 10 +7350.0 + 20 +4676.53716 + 30 +0.0 + 11 +7375.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +700 + 8 +0 + 62 + 0 + 10 +7425.0 + 20 +4676.53716 + 30 +0.0 + 11 +7450.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +701 + 8 +0 + 62 + 0 + 10 +7500.0 + 20 +4676.53716 + 30 +0.0 + 11 +7525.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +702 + 8 +0 + 62 + 0 + 10 +7575.0 + 20 +4676.53716 + 30 +0.0 + 11 +7600.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +703 + 8 +0 + 62 + 0 + 10 +7650.0 + 20 +4676.53716 + 30 +0.0 + 11 +7675.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +704 + 8 +0 + 62 + 0 + 10 +7725.0 + 20 +4676.53716 + 30 +0.0 + 11 +7750.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +705 + 8 +0 + 62 + 0 + 10 +7800.0 + 20 +4676.53716 + 30 +0.0 + 11 +7825.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +706 + 8 +0 + 62 + 0 + 10 +7875.0 + 20 +4676.53716 + 30 +0.0 + 11 +7900.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +707 + 8 +0 + 62 + 0 + 10 +7950.0 + 20 +4676.53716 + 30 +0.0 + 11 +7975.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +708 + 8 +0 + 62 + 0 + 10 +8025.0 + 20 +4676.53716 + 30 +0.0 + 11 +8050.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +709 + 8 +0 + 62 + 0 + 10 +8100.0 + 20 +4676.53716 + 30 +0.0 + 11 +8125.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +70A + 8 +0 + 62 + 0 + 10 +8175.0 + 20 +4676.53716 + 30 +0.0 + 11 +8200.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +70B + 8 +0 + 62 + 0 + 10 +8250.0 + 20 +4676.53716 + 30 +0.0 + 11 +8275.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +70C + 8 +0 + 62 + 0 + 10 +8325.0 + 20 +4676.53716 + 30 +0.0 + 11 +8350.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +70D + 8 +0 + 62 + 0 + 10 +8400.0 + 20 +4676.53716 + 30 +0.0 + 11 +8425.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +70E + 8 +0 + 62 + 0 + 10 +8475.0 + 20 +4676.53716 + 30 +0.0 + 11 +8500.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +70F + 8 +0 + 62 + 0 + 10 +8550.0 + 20 +4676.53716 + 30 +0.0 + 11 +8565.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +710 + 8 +0 + 62 + 0 + 10 +7874.999965 + 20 +4676.53716 + 30 +0.0 + 11 +7862.499965 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +711 + 8 +0 + 62 + 0 + 10 +7837.499965 + 20 +4741.489066 + 30 +0.0 + 11 +7829.699424 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +712 + 8 +0 + 62 + 0 + 10 +7837.499965 + 20 +4698.187796 + 30 +0.0 + 11 +7824.999965 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +713 + 8 +0 + 62 + 0 + 10 +7834.5477 + 20 +4660.0 + 30 +0.0 + 11 +7824.999966 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +714 + 8 +0 + 62 + 0 + 10 +7799.999966 + 20 +4719.838431 + 30 +0.0 + 11 +7787.499966 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +715 + 8 +0 + 62 + 0 + 10 +7799.999966 + 20 +4676.537161 + 30 +0.0 + 11 +7787.499966 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +716 + 8 +0 + 62 + 0 + 10 +7762.499966 + 20 +4741.489066 + 30 +0.0 + 11 +7754.699424 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +717 + 8 +0 + 62 + 0 + 10 +7762.499966 + 20 +4698.187796 + 30 +0.0 + 11 +7749.999966 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +718 + 8 +0 + 62 + 0 + 10 +7759.5477 + 20 +4660.0 + 30 +0.0 + 11 +7749.999966 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +719 + 8 +0 + 62 + 0 + 10 +7724.999966 + 20 +4719.838431 + 30 +0.0 + 11 +7712.499966 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +71A + 8 +0 + 62 + 0 + 10 +7724.999966 + 20 +4676.537161 + 30 +0.0 + 11 +7712.499966 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +71B + 8 +0 + 62 + 0 + 10 +7687.499966 + 20 +4741.489066 + 30 +0.0 + 11 +7679.699424 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +71C + 8 +0 + 62 + 0 + 10 +7687.499966 + 20 +4698.187796 + 30 +0.0 + 11 +7674.999966 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +71D + 8 +0 + 62 + 0 + 10 +7684.5477 + 20 +4660.0 + 30 +0.0 + 11 +7674.999966 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +71E + 8 +0 + 62 + 0 + 10 +7649.999966 + 20 +4719.838431 + 30 +0.0 + 11 +7637.499966 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +71F + 8 +0 + 62 + 0 + 10 +7649.999966 + 20 +4676.537161 + 30 +0.0 + 11 +7637.499966 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +720 + 8 +0 + 62 + 0 + 10 +7612.499966 + 20 +4741.489066 + 30 +0.0 + 11 +7604.699425 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +721 + 8 +0 + 62 + 0 + 10 +7612.499966 + 20 +4698.187796 + 30 +0.0 + 11 +7599.999966 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +722 + 8 +0 + 62 + 0 + 10 +7609.547701 + 20 +4660.0 + 30 +0.0 + 11 +7599.999966 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +723 + 8 +0 + 62 + 0 + 10 +7574.999966 + 20 +4719.838431 + 30 +0.0 + 11 +7562.499966 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +724 + 8 +0 + 62 + 0 + 10 +7574.999966 + 20 +4676.537161 + 30 +0.0 + 11 +7562.499966 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +725 + 8 +0 + 62 + 0 + 10 +7537.499966 + 20 +4741.489066 + 30 +0.0 + 11 +7529.699425 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +726 + 8 +0 + 62 + 0 + 10 +7537.499966 + 20 +4698.187796 + 30 +0.0 + 11 +7524.999966 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +727 + 8 +0 + 62 + 0 + 10 +7534.547701 + 20 +4660.0 + 30 +0.0 + 11 +7524.999966 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +728 + 8 +0 + 62 + 0 + 10 +7499.999966 + 20 +4719.838431 + 30 +0.0 + 11 +7487.499966 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +729 + 8 +0 + 62 + 0 + 10 +7499.999967 + 20 +4676.537161 + 30 +0.0 + 11 +7487.499967 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +72A + 8 +0 + 62 + 0 + 10 +7462.499967 + 20 +4741.489066 + 30 +0.0 + 11 +7454.699425 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +72B + 8 +0 + 62 + 0 + 10 +7462.499967 + 20 +4698.187796 + 30 +0.0 + 11 +7449.999967 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +72C + 8 +0 + 62 + 0 + 10 +7459.547701 + 20 +4660.0 + 30 +0.0 + 11 +7449.999967 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +72D + 8 +0 + 62 + 0 + 10 +7424.999967 + 20 +4719.838431 + 30 +0.0 + 11 +7412.499967 + 21 +4741.489067 + 31 +0.0 + 0 +LINE + 5 +72E + 8 +0 + 62 + 0 + 10 +7424.999967 + 20 +4676.537161 + 30 +0.0 + 11 +7412.499967 + 21 +4698.187796 + 31 +0.0 + 0 +LINE + 5 +72F + 8 +0 + 62 + 0 + 10 +7387.499967 + 20 +4741.489067 + 30 +0.0 + 11 +7379.699426 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +730 + 8 +0 + 62 + 0 + 10 +7387.499967 + 20 +4698.187796 + 30 +0.0 + 11 +7374.999967 + 21 +4719.838432 + 31 +0.0 + 0 +LINE + 5 +731 + 8 +0 + 62 + 0 + 10 +7384.547702 + 20 +4660.0 + 30 +0.0 + 11 +7374.999967 + 21 +4676.537161 + 31 +0.0 + 0 +LINE + 5 +732 + 8 +0 + 62 + 0 + 10 +7349.999967 + 20 +4719.838432 + 30 +0.0 + 11 +7337.499967 + 21 +4741.489067 + 31 +0.0 + 0 +LINE + 5 +733 + 8 +0 + 62 + 0 + 10 +7349.999967 + 20 +4676.537161 + 30 +0.0 + 11 +7337.499967 + 21 +4698.187797 + 31 +0.0 + 0 +LINE + 5 +734 + 8 +0 + 62 + 0 + 10 +7312.499967 + 20 +4741.489067 + 30 +0.0 + 11 +7304.699426 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +735 + 8 +0 + 62 + 0 + 10 +7312.499967 + 20 +4698.187797 + 30 +0.0 + 11 +7299.999967 + 21 +4719.838432 + 31 +0.0 + 0 +LINE + 5 +736 + 8 +0 + 62 + 0 + 10 +7309.547702 + 20 +4660.0 + 30 +0.0 + 11 +7299.999967 + 21 +4676.537162 + 31 +0.0 + 0 +LINE + 5 +737 + 8 +0 + 62 + 0 + 10 +7274.999967 + 20 +4719.838432 + 30 +0.0 + 11 +7262.499967 + 21 +4741.489067 + 31 +0.0 + 0 +LINE + 5 +738 + 8 +0 + 62 + 0 + 10 +7274.999967 + 20 +4676.537162 + 30 +0.0 + 11 +7262.499967 + 21 +4698.187797 + 31 +0.0 + 0 +LINE + 5 +739 + 8 +0 + 62 + 0 + 10 +7237.499967 + 20 +4741.489067 + 30 +0.0 + 11 +7229.699426 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +73A + 8 +0 + 62 + 0 + 10 +7237.499967 + 20 +4698.187797 + 30 +0.0 + 11 +7224.999967 + 21 +4719.838432 + 31 +0.0 + 0 +LINE + 5 +73B + 8 +0 + 62 + 0 + 10 +7234.547702 + 20 +4660.0 + 30 +0.0 + 11 +7224.999967 + 21 +4676.537162 + 31 +0.0 + 0 +LINE + 5 +73C + 8 +0 + 62 + 0 + 10 +7199.999967 + 20 +4719.838432 + 30 +0.0 + 11 +7187.499967 + 21 +4741.489067 + 31 +0.0 + 0 +LINE + 5 +73D + 8 +0 + 62 + 0 + 10 +7199.999968 + 20 +4676.537162 + 30 +0.0 + 11 +7187.499968 + 21 +4698.187797 + 31 +0.0 + 0 +LINE + 5 +73E + 8 +0 + 62 + 0 + 10 +7162.499968 + 20 +4741.489067 + 30 +0.0 + 11 +7160.0 + 21 +4745.819138 + 31 +0.0 + 0 +LINE + 5 +73F + 8 +0 + 62 + 0 + 10 +7162.499968 + 20 +4698.187797 + 30 +0.0 + 11 +7160.0 + 21 +4702.517868 + 31 +0.0 + 0 +LINE + 5 +740 + 8 +0 + 62 + 0 + 10 +7909.547699 + 20 +4660.0 + 30 +0.0 + 11 +7899.999965 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +741 + 8 +0 + 62 + 0 + 10 +7874.999965 + 20 +4719.838431 + 30 +0.0 + 11 +7862.499965 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +742 + 8 +0 + 62 + 0 + 10 +7912.499965 + 20 +4698.187795 + 30 +0.0 + 11 +7899.999965 + 21 +4719.838431 + 31 +0.0 + 0 +LINE + 5 +743 + 8 +0 + 62 + 0 + 10 +7949.999965 + 20 +4676.53716 + 30 +0.0 + 11 +7937.499965 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +744 + 8 +0 + 62 + 0 + 10 +7912.499965 + 20 +4741.489066 + 30 +0.0 + 11 +7904.699423 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +745 + 8 +0 + 62 + 0 + 10 +7984.547699 + 20 +4660.0 + 30 +0.0 + 11 +7974.999965 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +746 + 8 +0 + 62 + 0 + 10 +7949.999965 + 20 +4719.83843 + 30 +0.0 + 11 +7937.499965 + 21 +4741.489066 + 31 +0.0 + 0 +LINE + 5 +747 + 8 +0 + 62 + 0 + 10 +7987.499965 + 20 +4698.187795 + 30 +0.0 + 11 +7974.999965 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +748 + 8 +0 + 62 + 0 + 10 +8024.999965 + 20 +4676.53716 + 30 +0.0 + 11 +8012.499965 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +749 + 8 +0 + 62 + 0 + 10 +7987.499965 + 20 +4741.489065 + 30 +0.0 + 11 +7979.699423 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +74A + 8 +0 + 62 + 0 + 10 +8059.547699 + 20 +4660.0 + 30 +0.0 + 11 +8049.999965 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +74B + 8 +0 + 62 + 0 + 10 +8024.999965 + 20 +4719.83843 + 30 +0.0 + 11 +8012.499965 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +74C + 8 +0 + 62 + 0 + 10 +8062.499965 + 20 +4698.187795 + 30 +0.0 + 11 +8049.999965 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +74D + 8 +0 + 62 + 0 + 10 +8099.999965 + 20 +4676.53716 + 30 +0.0 + 11 +8087.499965 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +74E + 8 +0 + 62 + 0 + 10 +8062.499965 + 20 +4741.489065 + 30 +0.0 + 11 +8054.699423 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +74F + 8 +0 + 62 + 0 + 10 +8134.547698 + 20 +4660.0 + 30 +0.0 + 11 +8124.999965 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +750 + 8 +0 + 62 + 0 + 10 +8099.999965 + 20 +4719.83843 + 30 +0.0 + 11 +8087.499965 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +751 + 8 +0 + 62 + 0 + 10 +8137.499964 + 20 +4698.187795 + 30 +0.0 + 11 +8124.999964 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +752 + 8 +0 + 62 + 0 + 10 +8174.999964 + 20 +4676.53716 + 30 +0.0 + 11 +8162.499964 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +753 + 8 +0 + 62 + 0 + 10 +8137.499964 + 20 +4741.489065 + 30 +0.0 + 11 +8129.699422 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +754 + 8 +0 + 62 + 0 + 10 +8209.547698 + 20 +4660.0 + 30 +0.0 + 11 +8199.999964 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +755 + 8 +0 + 62 + 0 + 10 +8174.999964 + 20 +4719.83843 + 30 +0.0 + 11 +8162.499964 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +756 + 8 +0 + 62 + 0 + 10 +8212.499964 + 20 +4698.187795 + 30 +0.0 + 11 +8199.999964 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +757 + 8 +0 + 62 + 0 + 10 +8249.999964 + 20 +4676.53716 + 30 +0.0 + 11 +8237.499964 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +758 + 8 +0 + 62 + 0 + 10 +8212.499964 + 20 +4741.489065 + 30 +0.0 + 11 +8204.699422 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +759 + 8 +0 + 62 + 0 + 10 +8284.547698 + 20 +4660.0 + 30 +0.0 + 11 +8274.999964 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +75A + 8 +0 + 62 + 0 + 10 +8249.999964 + 20 +4719.83843 + 30 +0.0 + 11 +8237.499964 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +75B + 8 +0 + 62 + 0 + 10 +8287.499964 + 20 +4698.187795 + 30 +0.0 + 11 +8274.999964 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +75C + 8 +0 + 62 + 0 + 10 +8324.999964 + 20 +4676.53716 + 30 +0.0 + 11 +8312.499964 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +75D + 8 +0 + 62 + 0 + 10 +8287.499964 + 20 +4741.489065 + 30 +0.0 + 11 +8279.699422 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +75E + 8 +0 + 62 + 0 + 10 +8359.547697 + 20 +4660.0 + 30 +0.0 + 11 +8349.999964 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +75F + 8 +0 + 62 + 0 + 10 +8324.999964 + 20 +4719.83843 + 30 +0.0 + 11 +8312.499964 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +760 + 8 +0 + 62 + 0 + 10 +8362.499964 + 20 +4698.187795 + 30 +0.0 + 11 +8349.999964 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +761 + 8 +0 + 62 + 0 + 10 +8399.999964 + 20 +4676.537159 + 30 +0.0 + 11 +8387.499964 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +762 + 8 +0 + 62 + 0 + 10 +8362.499964 + 20 +4741.489065 + 30 +0.0 + 11 +8354.699421 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +763 + 8 +0 + 62 + 0 + 10 +8434.547697 + 20 +4660.0 + 30 +0.0 + 11 +8424.999964 + 21 +4676.537159 + 31 +0.0 + 0 +LINE + 5 +764 + 8 +0 + 62 + 0 + 10 +8399.999964 + 20 +4719.83843 + 30 +0.0 + 11 +8387.499964 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +765 + 8 +0 + 62 + 0 + 10 +8437.499963 + 20 +4698.187794 + 30 +0.0 + 11 +8424.999963 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +766 + 8 +0 + 62 + 0 + 10 +8474.999963 + 20 +4676.537159 + 30 +0.0 + 11 +8462.499963 + 21 +4698.187794 + 31 +0.0 + 0 +LINE + 5 +767 + 8 +0 + 62 + 0 + 10 +8437.499963 + 20 +4741.489065 + 30 +0.0 + 11 +8429.699421 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +768 + 8 +0 + 62 + 0 + 10 +8509.547697 + 20 +4660.0 + 30 +0.0 + 11 +8499.999963 + 21 +4676.537159 + 31 +0.0 + 0 +LINE + 5 +769 + 8 +0 + 62 + 0 + 10 +8474.999963 + 20 +4719.838429 + 30 +0.0 + 11 +8462.499963 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +76A + 8 +0 + 62 + 0 + 10 +8512.499963 + 20 +4698.187794 + 30 +0.0 + 11 +8499.999963 + 21 +4719.838429 + 31 +0.0 + 0 +LINE + 5 +76B + 8 +0 + 62 + 0 + 10 +8549.999963 + 20 +4676.537159 + 30 +0.0 + 11 +8537.499963 + 21 +4698.187794 + 31 +0.0 + 0 +LINE + 5 +76C + 8 +0 + 62 + 0 + 10 +8512.499963 + 20 +4741.489064 + 30 +0.0 + 11 +8504.699421 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +76D + 8 +0 + 62 + 0 + 10 +8549.999963 + 20 +4719.838429 + 30 +0.0 + 11 +8537.499963 + 21 +4741.489064 + 31 +0.0 + 0 +LINE + 5 +76E + 8 +0 + 62 + 0 + 10 +7824.999983 + 20 +4676.53719 + 30 +0.0 + 11 +7837.499983 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +76F + 8 +0 + 62 + 0 + 10 +7862.499983 + 20 +4741.489095 + 30 +0.0 + 11 +7870.300508 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +770 + 8 +0 + 62 + 0 + 10 +7790.452232 + 20 +4660.0 + 30 +0.0 + 11 +7799.999983 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +771 + 8 +0 + 62 + 0 + 10 +7824.999983 + 20 +4719.83846 + 30 +0.0 + 11 +7837.499983 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +772 + 8 +0 + 62 + 0 + 10 +7787.499983 + 20 +4698.187825 + 30 +0.0 + 11 +7799.999983 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +773 + 8 +0 + 62 + 0 + 10 +7749.999983 + 20 +4676.53719 + 30 +0.0 + 11 +7762.499983 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +774 + 8 +0 + 62 + 0 + 10 +7787.499983 + 20 +4741.489095 + 30 +0.0 + 11 +7795.300508 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +775 + 8 +0 + 62 + 0 + 10 +7715.452232 + 20 +4660.0 + 30 +0.0 + 11 +7724.999984 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +776 + 8 +0 + 62 + 0 + 10 +7749.999984 + 20 +4719.83846 + 30 +0.0 + 11 +7762.499984 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +777 + 8 +0 + 62 + 0 + 10 +7712.499984 + 20 +4698.187825 + 30 +0.0 + 11 +7724.999984 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +778 + 8 +0 + 62 + 0 + 10 +7674.999984 + 20 +4676.53719 + 30 +0.0 + 11 +7687.499984 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +779 + 8 +0 + 62 + 0 + 10 +7712.499984 + 20 +4741.489095 + 30 +0.0 + 11 +7720.300508 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +77A + 8 +0 + 62 + 0 + 10 +7640.452233 + 20 +4660.0 + 30 +0.0 + 11 +7649.999984 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +77B + 8 +0 + 62 + 0 + 10 +7674.999984 + 20 +4719.83846 + 30 +0.0 + 11 +7687.499984 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +77C + 8 +0 + 62 + 0 + 10 +7637.499984 + 20 +4698.187825 + 30 +0.0 + 11 +7649.999984 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +77D + 8 +0 + 62 + 0 + 10 +7599.999984 + 20 +4676.53719 + 30 +0.0 + 11 +7612.499984 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +77E + 8 +0 + 62 + 0 + 10 +7637.499984 + 20 +4741.489095 + 30 +0.0 + 11 +7645.300509 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +77F + 8 +0 + 62 + 0 + 10 +7565.452233 + 20 +4660.0 + 30 +0.0 + 11 +7574.999984 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +780 + 8 +0 + 62 + 0 + 10 +7599.999984 + 20 +4719.83846 + 30 +0.0 + 11 +7612.499984 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +781 + 8 +0 + 62 + 0 + 10 +7562.499984 + 20 +4698.187825 + 30 +0.0 + 11 +7574.999984 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +782 + 8 +0 + 62 + 0 + 10 +7524.999984 + 20 +4676.53719 + 30 +0.0 + 11 +7537.499984 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +783 + 8 +0 + 62 + 0 + 10 +7562.499984 + 20 +4741.489095 + 30 +0.0 + 11 +7570.300509 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +784 + 8 +0 + 62 + 0 + 10 +7490.452233 + 20 +4660.0 + 30 +0.0 + 11 +7499.999984 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +785 + 8 +0 + 62 + 0 + 10 +7524.999984 + 20 +4719.83846 + 30 +0.0 + 11 +7537.499984 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +786 + 8 +0 + 62 + 0 + 10 +7487.499984 + 20 +4698.187825 + 30 +0.0 + 11 +7499.999984 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +787 + 8 +0 + 62 + 0 + 10 +7449.999984 + 20 +4676.537189 + 30 +0.0 + 11 +7462.499984 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +788 + 8 +0 + 62 + 0 + 10 +7487.499984 + 20 +4741.489095 + 30 +0.0 + 11 +7495.300509 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +789 + 8 +0 + 62 + 0 + 10 +7415.452234 + 20 +4660.0 + 30 +0.0 + 11 +7424.999985 + 21 +4676.537189 + 31 +0.0 + 0 +LINE + 5 +78A + 8 +0 + 62 + 0 + 10 +7449.999985 + 20 +4719.83846 + 30 +0.0 + 11 +7462.499985 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +78B + 8 +0 + 62 + 0 + 10 +7412.499985 + 20 +4698.187824 + 30 +0.0 + 11 +7424.999985 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +78C + 8 +0 + 62 + 0 + 10 +7374.999985 + 20 +4676.537189 + 30 +0.0 + 11 +7387.499985 + 21 +4698.187824 + 31 +0.0 + 0 +LINE + 5 +78D + 8 +0 + 62 + 0 + 10 +7412.499985 + 20 +4741.489095 + 30 +0.0 + 11 +7420.30051 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +78E + 8 +0 + 62 + 0 + 10 +7340.452234 + 20 +4660.0 + 30 +0.0 + 11 +7349.999985 + 21 +4676.537189 + 31 +0.0 + 0 +LINE + 5 +78F + 8 +0 + 62 + 0 + 10 +7374.999985 + 20 +4719.838459 + 30 +0.0 + 11 +7387.499985 + 21 +4741.489095 + 31 +0.0 + 0 +LINE + 5 +790 + 8 +0 + 62 + 0 + 10 +7337.499985 + 20 +4698.187824 + 30 +0.0 + 11 +7349.999985 + 21 +4719.838459 + 31 +0.0 + 0 +LINE + 5 +791 + 8 +0 + 62 + 0 + 10 +7299.999985 + 20 +4676.537189 + 30 +0.0 + 11 +7312.499985 + 21 +4698.187824 + 31 +0.0 + 0 +LINE + 5 +792 + 8 +0 + 62 + 0 + 10 +7337.499985 + 20 +4741.489094 + 30 +0.0 + 11 +7345.30051 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +793 + 8 +0 + 62 + 0 + 10 +7265.452234 + 20 +4660.0 + 30 +0.0 + 11 +7274.999985 + 21 +4676.537189 + 31 +0.0 + 0 +LINE + 5 +794 + 8 +0 + 62 + 0 + 10 +7299.999985 + 20 +4719.838459 + 30 +0.0 + 11 +7312.499985 + 21 +4741.489094 + 31 +0.0 + 0 +LINE + 5 +795 + 8 +0 + 62 + 0 + 10 +7262.499985 + 20 +4698.187824 + 30 +0.0 + 11 +7274.999985 + 21 +4719.838459 + 31 +0.0 + 0 +LINE + 5 +796 + 8 +0 + 62 + 0 + 10 +7224.999985 + 20 +4676.537189 + 30 +0.0 + 11 +7237.499985 + 21 +4698.187824 + 31 +0.0 + 0 +LINE + 5 +797 + 8 +0 + 62 + 0 + 10 +7262.499985 + 20 +4741.489094 + 30 +0.0 + 11 +7270.30051 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +798 + 8 +0 + 62 + 0 + 10 +7190.452235 + 20 +4660.0 + 30 +0.0 + 11 +7199.999985 + 21 +4676.537189 + 31 +0.0 + 0 +LINE + 5 +799 + 8 +0 + 62 + 0 + 10 +7224.999985 + 20 +4719.838459 + 30 +0.0 + 11 +7237.499985 + 21 +4741.489094 + 31 +0.0 + 0 +LINE + 5 +79A + 8 +0 + 62 + 0 + 10 +7187.499985 + 20 +4698.187824 + 30 +0.0 + 11 +7199.999985 + 21 +4719.838459 + 31 +0.0 + 0 +LINE + 5 +79B + 8 +0 + 62 + 0 + 10 +7160.0 + 20 +4693.857722 + 30 +0.0 + 11 +7162.499985 + 21 +4698.187824 + 31 +0.0 + 0 +LINE + 5 +79C + 8 +0 + 62 + 0 + 10 +7187.499985 + 20 +4741.489094 + 30 +0.0 + 11 +7195.300511 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +79D + 8 +0 + 62 + 0 + 10 +7160.0 + 20 +4737.158992 + 30 +0.0 + 11 +7162.499985 + 21 +4741.489094 + 31 +0.0 + 0 +LINE + 5 +79E + 8 +0 + 62 + 0 + 10 +7862.499983 + 20 +4698.187825 + 30 +0.0 + 11 +7874.999983 + 21 +4719.83846 + 31 +0.0 + 0 +LINE + 5 +79F + 8 +0 + 62 + 0 + 10 +7865.452232 + 20 +4660.0 + 30 +0.0 + 11 +7874.999983 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +7A0 + 8 +0 + 62 + 0 + 10 +7899.999983 + 20 +4719.83846 + 30 +0.0 + 11 +7912.499983 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7A1 + 8 +0 + 62 + 0 + 10 +7899.999983 + 20 +4676.53719 + 30 +0.0 + 11 +7912.499983 + 21 +4698.187825 + 31 +0.0 + 0 +LINE + 5 +7A2 + 8 +0 + 62 + 0 + 10 +7937.499983 + 20 +4741.489096 + 30 +0.0 + 11 +7945.300507 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7A3 + 8 +0 + 62 + 0 + 10 +7937.499983 + 20 +4698.187825 + 30 +0.0 + 11 +7949.999983 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7A4 + 8 +0 + 62 + 0 + 10 +7940.452231 + 20 +4660.0 + 30 +0.0 + 11 +7949.999983 + 21 +4676.53719 + 31 +0.0 + 0 +LINE + 5 +7A5 + 8 +0 + 62 + 0 + 10 +7974.999983 + 20 +4719.838461 + 30 +0.0 + 11 +7987.499983 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7A6 + 8 +0 + 62 + 0 + 10 +7974.999983 + 20 +4676.53719 + 30 +0.0 + 11 +7987.499983 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7A7 + 8 +0 + 62 + 0 + 10 +8012.499983 + 20 +4741.489096 + 30 +0.0 + 11 +8020.300507 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7A8 + 8 +0 + 62 + 0 + 10 +8012.499983 + 20 +4698.187826 + 30 +0.0 + 11 +8024.999983 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7A9 + 8 +0 + 62 + 0 + 10 +8015.452231 + 20 +4660.0 + 30 +0.0 + 11 +8024.999983 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7AA + 8 +0 + 62 + 0 + 10 +8049.999983 + 20 +4719.838461 + 30 +0.0 + 11 +8062.499983 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7AB + 8 +0 + 62 + 0 + 10 +8049.999982 + 20 +4676.537191 + 30 +0.0 + 11 +8062.499982 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7AC + 8 +0 + 62 + 0 + 10 +8087.499982 + 20 +4741.489096 + 30 +0.0 + 11 +8095.300507 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7AD + 8 +0 + 62 + 0 + 10 +8087.499982 + 20 +4698.187826 + 30 +0.0 + 11 +8099.999982 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7AE + 8 +0 + 62 + 0 + 10 +8090.452231 + 20 +4660.0 + 30 +0.0 + 11 +8099.999982 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7AF + 8 +0 + 62 + 0 + 10 +8124.999982 + 20 +4719.838461 + 30 +0.0 + 11 +8137.499982 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7B0 + 8 +0 + 62 + 0 + 10 +8124.999982 + 20 +4676.537191 + 30 +0.0 + 11 +8137.499982 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7B1 + 8 +0 + 62 + 0 + 10 +8162.499982 + 20 +4741.489096 + 30 +0.0 + 11 +8170.300506 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7B2 + 8 +0 + 62 + 0 + 10 +8162.499982 + 20 +4698.187826 + 30 +0.0 + 11 +8174.999982 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7B3 + 8 +0 + 62 + 0 + 10 +8165.45223 + 20 +4660.0 + 30 +0.0 + 11 +8174.999982 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7B4 + 8 +0 + 62 + 0 + 10 +8199.999982 + 20 +4719.838461 + 30 +0.0 + 11 +8212.499982 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7B5 + 8 +0 + 62 + 0 + 10 +8199.999982 + 20 +4676.537191 + 30 +0.0 + 11 +8212.499982 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7B6 + 8 +0 + 62 + 0 + 10 +8237.499982 + 20 +4741.489096 + 30 +0.0 + 11 +8245.300506 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7B7 + 8 +0 + 62 + 0 + 10 +8237.499982 + 20 +4698.187826 + 30 +0.0 + 11 +8249.999982 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7B8 + 8 +0 + 62 + 0 + 10 +8240.45223 + 20 +4660.0 + 30 +0.0 + 11 +8249.999982 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7B9 + 8 +0 + 62 + 0 + 10 +8274.999982 + 20 +4719.838461 + 30 +0.0 + 11 +8287.499982 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7BA + 8 +0 + 62 + 0 + 10 +8274.999982 + 20 +4676.537191 + 30 +0.0 + 11 +8287.499982 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7BB + 8 +0 + 62 + 0 + 10 +8312.499982 + 20 +4741.489096 + 30 +0.0 + 11 +8320.300506 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7BC + 8 +0 + 62 + 0 + 10 +8312.499982 + 20 +4698.187826 + 30 +0.0 + 11 +8324.999982 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7BD + 8 +0 + 62 + 0 + 10 +8315.45223 + 20 +4660.0 + 30 +0.0 + 11 +8324.999982 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7BE + 8 +0 + 62 + 0 + 10 +8349.999982 + 20 +4719.838461 + 30 +0.0 + 11 +8362.499982 + 21 +4741.489096 + 31 +0.0 + 0 +LINE + 5 +7BF + 8 +0 + 62 + 0 + 10 +8349.999981 + 20 +4676.537191 + 30 +0.0 + 11 +8362.499981 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7C0 + 8 +0 + 62 + 0 + 10 +8387.499981 + 20 +4741.489096 + 30 +0.0 + 11 +8395.300505 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7C1 + 8 +0 + 62 + 0 + 10 +8387.499981 + 20 +4698.187826 + 30 +0.0 + 11 +8399.999981 + 21 +4719.838461 + 31 +0.0 + 0 +LINE + 5 +7C2 + 8 +0 + 62 + 0 + 10 +8390.45223 + 20 +4660.0 + 30 +0.0 + 11 +8399.999981 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7C3 + 8 +0 + 62 + 0 + 10 +8424.999981 + 20 +4719.838461 + 30 +0.0 + 11 +8437.499981 + 21 +4741.489097 + 31 +0.0 + 0 +LINE + 5 +7C4 + 8 +0 + 62 + 0 + 10 +8424.999981 + 20 +4676.537191 + 30 +0.0 + 11 +8437.499981 + 21 +4698.187826 + 31 +0.0 + 0 +LINE + 5 +7C5 + 8 +0 + 62 + 0 + 10 +8462.499981 + 20 +4741.489097 + 30 +0.0 + 11 +8470.300505 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7C6 + 8 +0 + 62 + 0 + 10 +8462.499981 + 20 +4698.187826 + 30 +0.0 + 11 +8474.999981 + 21 +4719.838462 + 31 +0.0 + 0 +LINE + 5 +7C7 + 8 +0 + 62 + 0 + 10 +8465.452229 + 20 +4660.0 + 30 +0.0 + 11 +8474.999981 + 21 +4676.537191 + 31 +0.0 + 0 +LINE + 5 +7C8 + 8 +0 + 62 + 0 + 10 +8499.999981 + 20 +4719.838462 + 30 +0.0 + 11 +8512.499981 + 21 +4741.489097 + 31 +0.0 + 0 +LINE + 5 +7C9 + 8 +0 + 62 + 0 + 10 +8499.999981 + 20 +4676.537191 + 30 +0.0 + 11 +8512.499981 + 21 +4698.187827 + 31 +0.0 + 0 +LINE + 5 +7CA + 8 +0 + 62 + 0 + 10 +8537.499981 + 20 +4741.489097 + 30 +0.0 + 11 +8545.300505 + 21 +4755.0 + 31 +0.0 + 0 +LINE + 5 +7CB + 8 +0 + 62 + 0 + 10 +8537.499981 + 20 +4698.187827 + 30 +0.0 + 11 +8549.999981 + 21 +4719.838462 + 31 +0.0 + 0 +LINE + 5 +7CC + 8 +0 + 62 + 0 + 10 +8540.452229 + 20 +4660.0 + 30 +0.0 + 11 +8549.999981 + 21 +4676.537192 + 31 +0.0 + 0 +ENDBLK + 5 +7CD + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X33 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X33 + 1 + + 0 +LINE + 5 +7CF + 8 +0 + 62 + 0 + 10 +7813.529932 + 20 +4808.326112 + 30 +0.0 + 11 +7831.207602 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7D0 + 8 +0 + 62 + 0 + 10 +7848.885271 + 20 +4843.681451 + 30 +0.0 + 11 +7866.562941 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7D1 + 8 +0 + 62 + 0 + 10 +7884.24061 + 20 +4879.03679 + 30 +0.0 + 11 +7900.986327 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7D2 + 8 +0 + 62 + 0 + 10 +7778.174593 + 20 +4808.326112 + 30 +0.0 + 11 +7795.852263 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7D3 + 8 +0 + 62 + 0 + 10 +7813.529932 + 20 +4843.681451 + 30 +0.0 + 11 +7831.207602 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7D4 + 8 +0 + 62 + 0 + 10 +7848.885271 + 20 +4879.03679 + 30 +0.0 + 11 +7865.630988 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7D5 + 8 +0 + 62 + 0 + 10 +7742.819254 + 20 +4808.326112 + 30 +0.0 + 11 +7760.496924 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7D6 + 8 +0 + 62 + 0 + 10 +7778.174593 + 20 +4843.681451 + 30 +0.0 + 11 +7795.852263 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7D7 + 8 +0 + 62 + 0 + 10 +7813.529932 + 20 +4879.03679 + 30 +0.0 + 11 +7830.275649 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7D8 + 8 +0 + 62 + 0 + 10 +7707.463915 + 20 +4808.326112 + 30 +0.0 + 11 +7725.141584 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7D9 + 8 +0 + 62 + 0 + 10 +7742.819254 + 20 +4843.681451 + 30 +0.0 + 11 +7760.496924 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7DA + 8 +0 + 62 + 0 + 10 +7778.174593 + 20 +4879.03679 + 30 +0.0 + 11 +7794.92031 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7DB + 8 +0 + 62 + 0 + 10 +7672.108576 + 20 +4808.326112 + 30 +0.0 + 11 +7689.786245 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7DC + 8 +0 + 62 + 0 + 10 +7707.463915 + 20 +4843.681451 + 30 +0.0 + 11 +7725.141584 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7DD + 8 +0 + 62 + 0 + 10 +7742.819254 + 20 +4879.03679 + 30 +0.0 + 11 +7759.564971 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7DE + 8 +0 + 62 + 0 + 10 +7636.753237 + 20 +4808.326112 + 30 +0.0 + 11 +7654.430906 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7DF + 8 +0 + 62 + 0 + 10 +7672.108576 + 20 +4843.681451 + 30 +0.0 + 11 +7689.786245 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7E0 + 8 +0 + 62 + 0 + 10 +7707.463915 + 20 +4879.03679 + 30 +0.0 + 11 +7724.209632 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7E1 + 8 +0 + 62 + 0 + 10 +7601.397898 + 20 +4808.326112 + 30 +0.0 + 11 +7619.075567 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7E2 + 8 +0 + 62 + 0 + 10 +7636.753237 + 20 +4843.681451 + 30 +0.0 + 11 +7654.430906 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7E3 + 8 +0 + 62 + 0 + 10 +7672.108576 + 20 +4879.03679 + 30 +0.0 + 11 +7688.854293 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7E4 + 8 +0 + 62 + 0 + 10 +7566.042559 + 20 +4808.326112 + 30 +0.0 + 11 +7583.720228 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7E5 + 8 +0 + 62 + 0 + 10 +7601.397898 + 20 +4843.681451 + 30 +0.0 + 11 +7619.075567 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7E6 + 8 +0 + 62 + 0 + 10 +7636.753237 + 20 +4879.03679 + 30 +0.0 + 11 +7653.498954 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7E7 + 8 +0 + 62 + 0 + 10 +7530.68722 + 20 +4808.326112 + 30 +0.0 + 11 +7548.364889 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7E8 + 8 +0 + 62 + 0 + 10 +7566.042559 + 20 +4843.681451 + 30 +0.0 + 11 +7583.720228 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7E9 + 8 +0 + 62 + 0 + 10 +7601.397898 + 20 +4879.03679 + 30 +0.0 + 11 +7618.143615 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7EA + 8 +0 + 62 + 0 + 10 +7495.331881 + 20 +4808.326112 + 30 +0.0 + 11 +7513.00955 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7EB + 8 +0 + 62 + 0 + 10 +7530.68722 + 20 +4843.681451 + 30 +0.0 + 11 +7548.364889 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7EC + 8 +0 + 62 + 0 + 10 +7566.042559 + 20 +4879.03679 + 30 +0.0 + 11 +7582.788276 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7ED + 8 +0 + 62 + 0 + 10 +7459.976542 + 20 +4808.326112 + 30 +0.0 + 11 +7477.654211 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7EE + 8 +0 + 62 + 0 + 10 +7495.331881 + 20 +4843.681451 + 30 +0.0 + 11 +7513.00955 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7EF + 8 +0 + 62 + 0 + 10 +7530.68722 + 20 +4879.03679 + 30 +0.0 + 11 +7547.432936 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7F0 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +4808.326112 + 30 +0.0 + 11 +7442.298872 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7F1 + 8 +0 + 62 + 0 + 10 +7459.976542 + 20 +4843.681451 + 30 +0.0 + 11 +7477.654211 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7F2 + 8 +0 + 62 + 0 + 10 +7495.331881 + 20 +4879.03679 + 30 +0.0 + 11 +7512.077597 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7F3 + 8 +0 + 62 + 0 + 10 +7389.265863 + 20 +4808.326112 + 30 +0.0 + 11 +7406.943533 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7F4 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +4843.681451 + 30 +0.0 + 11 +7442.298872 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7F5 + 8 +0 + 62 + 0 + 10 +7459.976542 + 20 +4879.03679 + 30 +0.0 + 11 +7476.722258 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7F6 + 8 +0 + 62 + 0 + 10 +7353.910524 + 20 +4808.326112 + 30 +0.0 + 11 +7371.588194 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7F7 + 8 +0 + 62 + 0 + 10 +7389.265863 + 20 +4843.681451 + 30 +0.0 + 11 +7406.943533 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7F8 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +4879.03679 + 30 +0.0 + 11 +7441.366919 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7F9 + 8 +0 + 62 + 0 + 10 +7318.555185 + 20 +4808.326112 + 30 +0.0 + 11 +7336.232855 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7FA + 8 +0 + 62 + 0 + 10 +7353.910524 + 20 +4843.681451 + 30 +0.0 + 11 +7371.588194 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7FB + 8 +0 + 62 + 0 + 10 +7389.265863 + 20 +4879.03679 + 30 +0.0 + 11 +7406.01158 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7FC + 8 +0 + 62 + 0 + 10 +7283.199846 + 20 +4808.326112 + 30 +0.0 + 11 +7300.877516 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +7FD + 8 +0 + 62 + 0 + 10 +7318.555185 + 20 +4843.681451 + 30 +0.0 + 11 +7336.232855 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +7FE + 8 +0 + 62 + 0 + 10 +7353.910524 + 20 +4879.03679 + 30 +0.0 + 11 +7370.656241 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +7FF + 8 +0 + 62 + 0 + 10 +7247.844507 + 20 +4808.326112 + 30 +0.0 + 11 +7265.522177 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +800 + 8 +0 + 62 + 0 + 10 +7283.199846 + 20 +4843.681451 + 30 +0.0 + 11 +7300.877516 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +801 + 8 +0 + 62 + 0 + 10 +7318.555185 + 20 +4879.03679 + 30 +0.0 + 11 +7335.300902 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +802 + 8 +0 + 62 + 0 + 10 +7212.489168 + 20 +4808.326112 + 30 +0.0 + 11 +7230.166838 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +803 + 8 +0 + 62 + 0 + 10 +7247.844507 + 20 +4843.681451 + 30 +0.0 + 11 +7265.522177 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +804 + 8 +0 + 62 + 0 + 10 +7283.199846 + 20 +4879.03679 + 30 +0.0 + 11 +7299.945563 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +805 + 8 +0 + 62 + 0 + 10 +7191.15625 + 20 +4822.348533 + 30 +0.0 + 11 +7194.811499 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +806 + 8 +0 + 62 + 0 + 10 +7212.489168 + 20 +4843.681451 + 30 +0.0 + 11 +7230.166838 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +807 + 8 +0 + 62 + 0 + 10 +7247.844507 + 20 +4879.03679 + 30 +0.0 + 11 +7264.590224 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +808 + 8 +0 + 62 + 0 + 10 +7191.15625 + 20 +4857.703872 + 30 +0.0 + 11 +7194.811499 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +809 + 8 +0 + 62 + 0 + 10 +7212.489168 + 20 +4879.03679 + 30 +0.0 + 11 +7229.234885 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +80A + 8 +0 + 62 + 0 + 10 +7191.15625 + 20 +4893.059211 + 30 +0.0 + 11 +7193.879546 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +80B + 8 +0 + 62 + 0 + 10 +7848.885271 + 20 +4808.326112 + 30 +0.0 + 11 +7866.562941 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +80C + 8 +0 + 62 + 0 + 10 +7884.24061 + 20 +4843.681451 + 30 +0.0 + 11 +7901.91828 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +80D + 8 +0 + 62 + 0 + 10 +7919.595949 + 20 +4879.03679 + 30 +0.0 + 11 +7936.341666 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +80E + 8 +0 + 62 + 0 + 10 +7884.24061 + 20 +4808.326112 + 30 +0.0 + 11 +7901.91828 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +80F + 8 +0 + 62 + 0 + 10 +7919.595949 + 20 +4843.681451 + 30 +0.0 + 11 +7937.273619 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +810 + 8 +0 + 62 + 0 + 10 +7954.951288 + 20 +4879.03679 + 30 +0.0 + 11 +7971.697005 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +811 + 8 +0 + 62 + 0 + 10 +7919.595949 + 20 +4808.326112 + 30 +0.0 + 11 +7937.273619 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +812 + 8 +0 + 62 + 0 + 10 +7954.951288 + 20 +4843.681451 + 30 +0.0 + 11 +7972.628958 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +813 + 8 +0 + 62 + 0 + 10 +7990.306627 + 20 +4879.03679 + 30 +0.0 + 11 +8007.052344 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +814 + 8 +0 + 62 + 0 + 10 +7954.951288 + 20 +4808.326112 + 30 +0.0 + 11 +7972.628958 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +815 + 8 +0 + 62 + 0 + 10 +7990.306627 + 20 +4843.681451 + 30 +0.0 + 11 +8007.984297 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +816 + 8 +0 + 62 + 0 + 10 +8025.661966 + 20 +4879.03679 + 30 +0.0 + 11 +8042.407683 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +817 + 8 +0 + 62 + 0 + 10 +7990.306627 + 20 +4808.326112 + 30 +0.0 + 11 +8007.984297 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +818 + 8 +0 + 62 + 0 + 10 +8025.661966 + 20 +4843.681451 + 30 +0.0 + 11 +8043.339636 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +819 + 8 +0 + 62 + 0 + 10 +8061.017306 + 20 +4879.03679 + 30 +0.0 + 11 +8077.763022 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +81A + 8 +0 + 62 + 0 + 10 +8025.661966 + 20 +4808.326112 + 30 +0.0 + 11 +8043.339636 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +81B + 8 +0 + 62 + 0 + 10 +8061.017306 + 20 +4843.681451 + 30 +0.0 + 11 +8078.694975 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +81C + 8 +0 + 62 + 0 + 10 +8096.372645 + 20 +4879.03679 + 30 +0.0 + 11 +8113.118361 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +81D + 8 +0 + 62 + 0 + 10 +8061.017306 + 20 +4808.326112 + 30 +0.0 + 11 +8078.694975 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +81E + 8 +0 + 62 + 0 + 10 +8096.372645 + 20 +4843.681451 + 30 +0.0 + 11 +8114.050314 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +81F + 8 +0 + 62 + 0 + 10 +8131.727984 + 20 +4879.03679 + 30 +0.0 + 11 +8148.4737 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +820 + 8 +0 + 62 + 0 + 10 +8096.372645 + 20 +4808.326112 + 30 +0.0 + 11 +8114.050314 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +821 + 8 +0 + 62 + 0 + 10 +8131.727984 + 20 +4843.681451 + 30 +0.0 + 11 +8149.405653 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +822 + 8 +0 + 62 + 0 + 10 +8167.083323 + 20 +4879.03679 + 30 +0.0 + 11 +8183.82904 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +823 + 8 +0 + 62 + 0 + 10 +8131.727984 + 20 +4808.326112 + 30 +0.0 + 11 +8149.405653 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +824 + 8 +0 + 62 + 0 + 10 +8167.083323 + 20 +4843.681451 + 30 +0.0 + 11 +8184.760992 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +825 + 8 +0 + 62 + 0 + 10 +8202.438662 + 20 +4879.03679 + 30 +0.0 + 11 +8219.184379 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +826 + 8 +0 + 62 + 0 + 10 +8167.083323 + 20 +4808.326112 + 30 +0.0 + 11 +8184.760992 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +827 + 8 +0 + 62 + 0 + 10 +8202.438662 + 20 +4843.681451 + 30 +0.0 + 11 +8220.116331 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +828 + 8 +0 + 62 + 0 + 10 +8237.794001 + 20 +4879.03679 + 30 +0.0 + 11 +8254.539718 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +829 + 8 +0 + 62 + 0 + 10 +8202.438662 + 20 +4808.326112 + 30 +0.0 + 11 +8220.116331 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +82A + 8 +0 + 62 + 0 + 10 +8237.794001 + 20 +4843.681451 + 30 +0.0 + 11 +8255.47167 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +82B + 8 +0 + 62 + 0 + 10 +8273.14934 + 20 +4879.03679 + 30 +0.0 + 11 +8289.895057 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +82C + 8 +0 + 62 + 0 + 10 +8237.794001 + 20 +4808.326112 + 30 +0.0 + 11 +8255.47167 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +82D + 8 +0 + 62 + 0 + 10 +8273.14934 + 20 +4843.681451 + 30 +0.0 + 11 +8290.827009 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +82E + 8 +0 + 62 + 0 + 10 +8308.504679 + 20 +4879.03679 + 30 +0.0 + 11 +8325.250396 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +82F + 8 +0 + 62 + 0 + 10 +8273.14934 + 20 +4808.326112 + 30 +0.0 + 11 +8290.827009 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +830 + 8 +0 + 62 + 0 + 10 +8308.504679 + 20 +4843.681451 + 30 +0.0 + 11 +8326.182348 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +831 + 8 +0 + 62 + 0 + 10 +8343.860018 + 20 +4879.03679 + 30 +0.0 + 11 +8360.605735 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +832 + 8 +0 + 62 + 0 + 10 +8308.504679 + 20 +4808.326112 + 30 +0.0 + 11 +8326.182348 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +833 + 8 +0 + 62 + 0 + 10 +8343.860018 + 20 +4843.681451 + 30 +0.0 + 11 +8361.537688 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +834 + 8 +0 + 62 + 0 + 10 +8379.215357 + 20 +4879.03679 + 30 +0.0 + 11 +8395.961074 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +835 + 8 +0 + 62 + 0 + 10 +8343.860018 + 20 +4808.326112 + 30 +0.0 + 11 +8361.537688 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +836 + 8 +0 + 62 + 0 + 10 +8379.215357 + 20 +4843.681451 + 30 +0.0 + 11 +8396.893027 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +837 + 8 +0 + 62 + 0 + 10 +8414.570696 + 20 +4879.03679 + 30 +0.0 + 11 +8431.316413 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +838 + 8 +0 + 62 + 0 + 10 +8379.215357 + 20 +4808.326112 + 30 +0.0 + 11 +8396.893027 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +839 + 8 +0 + 62 + 0 + 10 +8414.570696 + 20 +4843.681451 + 30 +0.0 + 11 +8432.248366 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +83A + 8 +0 + 62 + 0 + 10 +8449.926035 + 20 +4879.03679 + 30 +0.0 + 11 +8466.671752 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +83B + 8 +0 + 62 + 0 + 10 +8414.570696 + 20 +4808.326112 + 30 +0.0 + 11 +8432.248366 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +83C + 8 +0 + 62 + 0 + 10 +8449.926035 + 20 +4843.681451 + 30 +0.0 + 11 +8467.603705 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +83D + 8 +0 + 62 + 0 + 10 +8485.281374 + 20 +4879.03679 + 30 +0.0 + 11 +8502.027091 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +83E + 8 +0 + 62 + 0 + 10 +8449.926035 + 20 +4808.326112 + 30 +0.0 + 11 +8467.603705 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +83F + 8 +0 + 62 + 0 + 10 +8485.281374 + 20 +4843.681451 + 30 +0.0 + 11 +8502.959044 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +840 + 8 +0 + 62 + 0 + 10 +8520.636713 + 20 +4879.03679 + 30 +0.0 + 11 +8537.38243 + 21 +4895.782507 + 31 +0.0 + 0 +LINE + 5 +841 + 8 +0 + 62 + 0 + 10 +8485.281374 + 20 +4808.326112 + 30 +0.0 + 11 +8502.959044 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +842 + 8 +0 + 62 + 0 + 10 +8520.636713 + 20 +4843.681451 + 30 +0.0 + 11 +8538.314383 + 21 +4861.359121 + 31 +0.0 + 0 +LINE + 5 +843 + 8 +0 + 62 + 0 + 10 +8555.992052 + 20 +4879.03679 + 30 +0.0 + 11 +8565.0 + 21 +4888.044738 + 31 +0.0 + 0 +LINE + 5 +844 + 8 +0 + 62 + 0 + 10 +8520.636713 + 20 +4808.326112 + 30 +0.0 + 11 +8538.314383 + 21 +4826.003782 + 31 +0.0 + 0 +LINE + 5 +845 + 8 +0 + 62 + 0 + 10 +8555.992052 + 20 +4843.681451 + 30 +0.0 + 11 +8565.0 + 21 +4852.689399 + 31 +0.0 + 0 +LINE + 5 +846 + 8 +0 + 62 + 0 + 10 +8555.992052 + 20 +4808.326112 + 30 +0.0 + 11 +8565.0 + 21 +4817.33406 + 31 +0.0 + 0 +ENDBLK + 5 +847 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X34 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X34 + 1 + + 0 +LINE + 5 +849 + 8 +0 + 62 + 0 + 10 +7652.716447 + 20 +4895.0 + 30 +0.0 + 11 +7712.716447 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +84A + 8 +0 + 62 + 0 + 10 +7440.584412 + 20 +4895.0 + 30 +0.0 + 11 +7500.584412 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +84B + 8 +0 + 62 + 0 + 10 +7228.452378 + 20 +4895.0 + 30 +0.0 + 11 +7288.452378 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +84C + 8 +0 + 62 + 0 + 10 +7864.848481 + 20 +4895.0 + 30 +0.0 + 11 +7924.848481 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +84D + 8 +0 + 62 + 0 + 10 +8076.980515 + 20 +4895.0 + 30 +0.0 + 11 +8136.980515 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +84E + 8 +0 + 62 + 0 + 10 +8289.11255 + 20 +4895.0 + 30 +0.0 + 11 +8349.11255 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +84F + 8 +0 + 62 + 0 + 10 +8501.244584 + 20 +4895.0 + 30 +0.0 + 11 +8561.244584 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +850 + 8 +0 + 62 + 0 + 10 +7688.071786 + 20 +4895.0 + 30 +0.0 + 11 +7748.071786 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +851 + 8 +0 + 62 + 0 + 10 +7475.939751 + 20 +4895.0 + 30 +0.0 + 11 +7535.939751 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +852 + 8 +0 + 62 + 0 + 10 +7263.807717 + 20 +4895.0 + 30 +0.0 + 11 +7323.807717 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +853 + 8 +0 + 62 + 0 + 10 +7900.20382 + 20 +4895.0 + 30 +0.0 + 11 +7960.20382 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +854 + 8 +0 + 62 + 0 + 10 +8112.335854 + 20 +4895.0 + 30 +0.0 + 11 +8172.335854 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +855 + 8 +0 + 62 + 0 + 10 +8324.467889 + 20 +4895.0 + 30 +0.0 + 11 +8384.467889 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +856 + 8 +0 + 62 + 0 + 10 +8536.599923 + 20 +4895.0 + 30 +0.0 + 11 +8570.0 + 21 +4928.400077 + 31 +0.0 + 0 +LINE + 5 +857 + 8 +0 + 62 + 0 + 10 +7723.427125 + 20 +4895.0 + 30 +0.0 + 11 +7783.427125 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +858 + 8 +0 + 62 + 0 + 10 +7511.29509 + 20 +4895.0 + 30 +0.0 + 11 +7571.29509 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +859 + 8 +0 + 62 + 0 + 10 +7299.163056 + 20 +4895.0 + 30 +0.0 + 11 +7359.163056 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +85A + 8 +0 + 62 + 0 + 10 +7935.559159 + 20 +4895.0 + 30 +0.0 + 11 +7995.559159 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +85B + 8 +0 + 62 + 0 + 10 +8147.691194 + 20 +4895.0 + 30 +0.0 + 11 +8207.691194 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +85C + 8 +0 + 62 + 0 + 10 +8359.823228 + 20 +4895.0 + 30 +0.0 + 11 +8419.823228 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +85D + 8 +0 + 62 + 0 + 10 +7758.782464 + 20 +4895.0 + 30 +0.0 + 11 +7818.782464 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +85E + 8 +0 + 62 + 0 + 10 +7546.650429 + 20 +4895.0 + 30 +0.0 + 11 +7606.650429 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +85F + 8 +0 + 62 + 0 + 10 +7334.518395 + 20 +4895.0 + 30 +0.0 + 11 +7394.518395 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +860 + 8 +0 + 62 + 0 + 10 +7970.914498 + 20 +4895.0 + 30 +0.0 + 11 +8030.914498 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +861 + 8 +0 + 62 + 0 + 10 +8183.046533 + 20 +4895.0 + 30 +0.0 + 11 +8243.046533 + 21 +4955.0 + 31 +0.0 + 0 +LINE + 5 +862 + 8 +0 + 62 + 0 + 10 +8395.178567 + 20 +4895.0 + 30 +0.0 + 11 +8455.178567 + 21 +4955.0 + 31 +0.0 + 0 +ENDBLK + 5 +863 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X35 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X35 + 1 + + 0 +LINE + 5 +865 + 8 +0 + 62 + 0 + 10 +6210.0 + 20 +5149.339828 + 30 +0.0 + 11 +6850.660172 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +866 + 8 +0 + 62 + 0 + 10 +6210.0 + 20 +5326.116524 + 30 +0.0 + 11 +6673.883476 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +867 + 8 +0 + 62 + 0 + 10 +6210.0 + 20 +5502.893219 + 30 +0.0 + 11 +6497.106781 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +868 + 8 +0 + 62 + 0 + 10 +6210.0 + 20 +5679.669914 + 30 +0.0 + 11 +6320.330086 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +869 + 8 +0 + 62 + 0 + 10 +6372.436867 + 20 +5135.0 + 30 +0.0 + 11 +7027.436867 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +86A + 8 +0 + 62 + 0 + 10 +6549.213562 + 20 +5135.0 + 30 +0.0 + 11 +7120.0 + 21 +5705.786438 + 31 +0.0 + 0 +LINE + 5 +86B + 8 +0 + 62 + 0 + 10 +6725.990258 + 20 +5135.0 + 30 +0.0 + 11 +7120.0 + 21 +5529.009742 + 31 +0.0 + 0 +LINE + 5 +86C + 8 +0 + 62 + 0 + 10 +6902.766953 + 20 +5135.0 + 30 +0.0 + 11 +7120.0 + 21 +5352.233047 + 31 +0.0 + 0 +LINE + 5 +86D + 8 +0 + 62 + 0 + 10 +7079.543648 + 20 +5135.0 + 30 +0.0 + 11 +7120.0 + 21 +5175.456352 + 31 +0.0 + 0 +ENDBLK + 5 +86E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X36 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X36 + 1 + + 0 +LINE + 5 +870 + 8 +0 + 62 + 0 + 10 +6768.084412 + 20 +4222.5 + 30 +0.0 + 11 +7168.084412 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +871 + 8 +0 + 62 + 0 + 10 +6343.820344 + 20 +4222.5 + 30 +0.0 + 11 +6743.820344 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +872 + 8 +0 + 62 + 0 + 10 +6215.0 + 20 +4517.943725 + 30 +0.0 + 11 +6319.556275 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +873 + 8 +0 + 62 + 0 + 10 +7192.348481 + 20 +4222.5 + 30 +0.0 + 11 +7592.348481 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +874 + 8 +0 + 62 + 0 + 10 +7616.61255 + 20 +4222.5 + 30 +0.0 + 11 +8016.61255 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +875 + 8 +0 + 62 + 0 + 10 +8040.876618 + 20 +4222.5 + 30 +0.0 + 11 +8440.876618 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +876 + 8 +0 + 62 + 0 + 10 +8465.140687 + 20 +4222.5 + 30 +0.0 + 11 +8565.0 + 21 +4322.359313 + 31 +0.0 + 0 +LINE + 5 +877 + 8 +0 + 62 + 0 + 10 +6980.216446 + 20 +4222.5 + 30 +0.0 + 11 +7000.357133 + 21 +4242.640687 + 31 +0.0 + 0 +LINE + 5 +878 + 8 +0 + 62 + 0 + 10 +7053.390142 + 20 +4295.673696 + 30 +0.0 + 11 +7159.456159 + 21 +4401.739713 + 31 +0.0 + 0 +LINE + 5 +879 + 8 +0 + 62 + 0 + 10 +7212.489168 + 20 +4454.772721 + 30 +0.0 + 11 +7318.555185 + 21 +4560.838739 + 31 +0.0 + 0 +LINE + 5 +87A + 8 +0 + 62 + 0 + 10 +7371.588194 + 20 +4613.871747 + 30 +0.0 + 11 +7380.216446 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +87B + 8 +0 + 62 + 0 + 10 +6555.952378 + 20 +4222.5 + 30 +0.0 + 11 +6629.126073 + 21 +4295.673696 + 31 +0.0 + 0 +LINE + 5 +87C + 8 +0 + 62 + 0 + 10 +6682.159082 + 20 +4348.706704 + 30 +0.0 + 11 +6788.225099 + 21 +4454.772721 + 31 +0.0 + 0 +LINE + 5 +87D + 8 +0 + 62 + 0 + 10 +6841.258108 + 20 +4507.80573 + 30 +0.0 + 11 +6947.324125 + 21 +4613.871747 + 31 +0.0 + 0 +LINE + 5 +87E + 8 +0 + 62 + 0 + 10 +6215.0 + 20 +4305.811691 + 30 +0.0 + 11 +6257.895013 + 21 +4348.706704 + 31 +0.0 + 0 +LINE + 5 +87F + 8 +0 + 62 + 0 + 10 +6310.928022 + 20 +4401.739713 + 30 +0.0 + 11 +6416.994039 + 21 +4507.80573 + 31 +0.0 + 0 +LINE + 5 +880 + 8 +0 + 62 + 0 + 10 +6470.027048 + 20 +4560.838739 + 30 +0.0 + 11 +6531.688309 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +881 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +4242.640687 + 30 +0.0 + 11 +7530.687219 + 21 +4348.706704 + 31 +0.0 + 0 +LINE + 5 +882 + 8 +0 + 62 + 0 + 10 +7583.720228 + 20 +4401.739713 + 30 +0.0 + 11 +7689.786245 + 21 +4507.80573 + 31 +0.0 + 0 +LINE + 5 +883 + 8 +0 + 62 + 0 + 10 +7742.819254 + 20 +4560.838739 + 30 +0.0 + 11 +7804.480515 + 21 +4622.5 + 31 +0.0 + 0 +LINE + 5 +884 + 8 +0 + 62 + 0 + 10 +7828.744584 + 20 +4222.5 + 30 +0.0 + 11 +7901.918279 + 21 +4295.673696 + 31 +0.0 + 0 +LINE + 5 +885 + 8 +0 + 62 + 0 + 10 +7954.951288 + 20 +4348.706704 + 30 +0.0 + 11 +8061.017305 + 21 +4454.772721 + 31 +0.0 + 0 +LINE + 5 +886 + 8 +0 + 62 + 0 + 10 +8114.050314 + 20 +4507.80573 + 30 +0.0 + 11 +8220.116331 + 21 +4613.871747 + 31 +0.0 + 0 +LINE + 5 +887 + 8 +0 + 62 + 0 + 10 +8253.008652 + 20 +4222.5 + 30 +0.0 + 11 +8273.14934 + 21 +4242.640687 + 31 +0.0 + 0 +LINE + 5 +888 + 8 +0 + 62 + 0 + 10 +8326.182348 + 20 +4295.673696 + 30 +0.0 + 11 +8432.248365 + 21 +4401.739713 + 31 +0.0 + 0 +LINE + 5 +889 + 8 +0 + 62 + 0 + 10 +8485.281374 + 20 +4454.772721 + 30 +0.0 + 11 +8565.0 + 21 +4534.491348 + 31 +0.0 + 0 +ENDBLK + 5 +88A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X37 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X37 + 1 + + 0 +LINE + 5 +88C + 8 +0 + 62 + 0 + 10 +5833.630945 + 20 +2916.815472 + 30 +0.0 + 11 +5966.213466 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +88D + 8 +0 + 62 + 0 + 10 +6098.795988 + 20 +3181.980515 + 30 +0.0 + 11 +6231.378509 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +88E + 8 +0 + 62 + 0 + 10 +6363.961031 + 20 +3447.145558 + 30 +0.0 + 11 +6496.543552 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +88F + 8 +0 + 62 + 0 + 10 +6629.126074 + 20 +3712.310601 + 30 +0.0 + 11 +6761.708595 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +890 + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +3977.475644 + 30 +0.0 + 11 +7026.873638 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +891 + 8 +0 + 62 + 0 + 10 +5568.465902 + 20 +2916.815472 + 30 +0.0 + 11 +5701.048423 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +892 + 8 +0 + 62 + 0 + 10 +5833.630945 + 20 +3181.980515 + 30 +0.0 + 11 +5966.213466 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +893 + 8 +0 + 62 + 0 + 10 +6098.795988 + 20 +3447.145558 + 30 +0.0 + 11 +6231.378509 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +894 + 8 +0 + 62 + 0 + 10 +6363.961031 + 20 +3712.310601 + 30 +0.0 + 11 +6496.543552 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +895 + 8 +0 + 62 + 0 + 10 +6629.126074 + 20 +3977.475644 + 30 +0.0 + 11 +6761.708595 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +896 + 8 +0 + 62 + 0 + 10 +5421.25 + 20 +3034.764613 + 30 +0.0 + 11 +5435.88338 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +897 + 8 +0 + 62 + 0 + 10 +5568.465902 + 20 +3181.980515 + 30 +0.0 + 11 +5701.048423 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +898 + 8 +0 + 62 + 0 + 10 +5833.630945 + 20 +3447.145558 + 30 +0.0 + 11 +5966.213466 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +899 + 8 +0 + 62 + 0 + 10 +6098.795988 + 20 +3712.310601 + 30 +0.0 + 11 +6231.378509 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +89A + 8 +0 + 62 + 0 + 10 +6363.961031 + 20 +3977.475644 + 30 +0.0 + 11 +6496.543552 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +89B + 8 +0 + 62 + 0 + 10 +5421.25 + 20 +3299.929656 + 30 +0.0 + 11 +5435.88338 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +89C + 8 +0 + 62 + 0 + 10 +5568.465902 + 20 +3447.145558 + 30 +0.0 + 11 +5701.048423 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +89D + 8 +0 + 62 + 0 + 10 +5833.630945 + 20 +3712.310601 + 30 +0.0 + 11 +5966.213466 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +89E + 8 +0 + 62 + 0 + 10 +6098.795988 + 20 +3977.475644 + 30 +0.0 + 11 +6231.378509 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +89F + 8 +0 + 62 + 0 + 10 +5421.25 + 20 +3565.094699 + 30 +0.0 + 11 +5435.88338 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +8A0 + 8 +0 + 62 + 0 + 10 +5568.465902 + 20 +3712.310601 + 30 +0.0 + 11 +5701.048423 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +8A1 + 8 +0 + 62 + 0 + 10 +5833.630945 + 20 +3977.475644 + 30 +0.0 + 11 +5966.213466 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +8A2 + 8 +0 + 62 + 0 + 10 +5421.25 + 20 +3830.259742 + 30 +0.0 + 11 +5435.88338 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +8A3 + 8 +0 + 62 + 0 + 10 +5568.465902 + 20 +3977.475644 + 30 +0.0 + 11 +5701.048423 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +8A4 + 8 +0 + 62 + 0 + 10 +5421.25 + 20 +4095.424785 + 30 +0.0 + 11 +5435.88338 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +8A5 + 8 +0 + 62 + 0 + 10 +6098.795988 + 20 +2916.815472 + 30 +0.0 + 11 +6231.378509 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +8A6 + 8 +0 + 62 + 0 + 10 +6363.961031 + 20 +3181.980515 + 30 +0.0 + 11 +6496.543552 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +8A7 + 8 +0 + 62 + 0 + 10 +6629.126074 + 20 +3447.145558 + 30 +0.0 + 11 +6761.708595 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +8A8 + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +3712.310601 + 30 +0.0 + 11 +7026.873638 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +8A9 + 8 +0 + 62 + 0 + 10 +7159.45616 + 20 +3977.475644 + 30 +0.0 + 11 +7292.038681 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +8AA + 8 +0 + 62 + 0 + 10 +6363.961031 + 20 +2916.815472 + 30 +0.0 + 11 +6496.543552 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +8AB + 8 +0 + 62 + 0 + 10 +6629.126074 + 20 +3181.980515 + 30 +0.0 + 11 +6761.708595 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +8AC + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +3447.145558 + 30 +0.0 + 11 +7026.873638 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +8AD + 8 +0 + 62 + 0 + 10 +7159.45616 + 20 +3712.310601 + 30 +0.0 + 11 +7292.038681 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +8AE + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +3977.475644 + 30 +0.0 + 11 +7557.203724 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +8AF + 8 +0 + 62 + 0 + 10 +6629.126074 + 20 +2916.815472 + 30 +0.0 + 11 +6761.708595 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +8B0 + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +3181.980515 + 30 +0.0 + 11 +7026.873638 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +8B1 + 8 +0 + 62 + 0 + 10 +7159.45616 + 20 +3447.145558 + 30 +0.0 + 11 +7292.038681 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +8B2 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +3712.310601 + 30 +0.0 + 11 +7557.203724 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +8B3 + 8 +0 + 62 + 0 + 10 +7689.786245 + 20 +3977.475644 + 30 +0.0 + 11 +7822.368767 + 21 +4110.058166 + 31 +0.0 + 0 +LINE + 5 +8B4 + 8 +0 + 62 + 0 + 10 +6894.291117 + 20 +2916.815472 + 30 +0.0 + 11 +7026.873638 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +8B5 + 8 +0 + 62 + 0 + 10 +7159.45616 + 20 +3181.980515 + 30 +0.0 + 11 +7292.038681 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +8B6 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +3447.145558 + 30 +0.0 + 11 +7557.203724 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +8B7 + 8 +0 + 62 + 0 + 10 +7689.786245 + 20 +3712.310601 + 30 +0.0 + 11 +7822.368767 + 21 +3844.893123 + 31 +0.0 + 0 +LINE + 5 +8B8 + 8 +0 + 62 + 0 + 10 +7159.45616 + 20 +2916.815472 + 30 +0.0 + 11 +7292.038681 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +8B9 + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +3181.980515 + 30 +0.0 + 11 +7557.203724 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +8BA + 8 +0 + 62 + 0 + 10 +7689.786245 + 20 +3447.145558 + 30 +0.0 + 11 +7822.368767 + 21 +3579.72808 + 31 +0.0 + 0 +LINE + 5 +8BB + 8 +0 + 62 + 0 + 10 +7424.621202 + 20 +2916.815472 + 30 +0.0 + 11 +7557.203724 + 21 +3049.397994 + 31 +0.0 + 0 +LINE + 5 +8BC + 8 +0 + 62 + 0 + 10 +7689.786245 + 20 +3181.980515 + 30 +0.0 + 11 +7822.368767 + 21 +3314.563037 + 31 +0.0 + 0 +LINE + 5 +8BD + 8 +0 + 62 + 0 + 10 +7689.786245 + 20 +2916.815472 + 30 +0.0 + 11 +7822.368767 + 21 +3049.397994 + 31 +0.0 + 0 +ENDBLK + 5 +8BE + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X38 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X38 + 1 + + 0 +LINE + 5 +8C0 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5022.94732 + 30 +0.0 + 11 +6025.0 + 21 +5022.94732 + 31 +0.0 + 0 +LINE + 5 +8C1 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5022.94732 + 30 +0.0 + 11 +6100.0 + 21 +5022.94732 + 31 +0.0 + 0 +LINE + 5 +8C2 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5044.597955 + 30 +0.0 + 11 +5987.5 + 21 +5044.597955 + 31 +0.0 + 0 +LINE + 5 +8C3 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5044.597955 + 30 +0.0 + 11 +6062.5 + 21 +5044.597955 + 31 +0.0 + 0 +LINE + 5 +8C4 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5044.597955 + 30 +0.0 + 11 +6137.5 + 21 +5044.597955 + 31 +0.0 + 0 +LINE + 5 +8C5 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5066.24859 + 30 +0.0 + 11 +6025.0 + 21 +5066.24859 + 31 +0.0 + 0 +LINE + 5 +8C6 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5066.24859 + 30 +0.0 + 11 +6100.0 + 21 +5066.24859 + 31 +0.0 + 0 +LINE + 5 +8C7 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5087.899225 + 30 +0.0 + 11 +5987.5 + 21 +5087.899225 + 31 +0.0 + 0 +LINE + 5 +8C8 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5087.899225 + 30 +0.0 + 11 +6062.5 + 21 +5087.899225 + 31 +0.0 + 0 +LINE + 5 +8C9 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5087.899225 + 30 +0.0 + 11 +6137.5 + 21 +5087.899225 + 31 +0.0 + 0 +LINE + 5 +8CA + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5109.54986 + 30 +0.0 + 11 +6025.0 + 21 +5109.54986 + 31 +0.0 + 0 +LINE + 5 +8CB + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5109.54986 + 30 +0.0 + 11 +6100.0 + 21 +5109.54986 + 31 +0.0 + 0 +LINE + 5 +8CC + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5131.200495 + 30 +0.0 + 11 +5987.5 + 21 +5131.200495 + 31 +0.0 + 0 +LINE + 5 +8CD + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5131.200495 + 30 +0.0 + 11 +6062.5 + 21 +5131.200495 + 31 +0.0 + 0 +LINE + 5 +8CE + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5131.200495 + 30 +0.0 + 11 +6137.5 + 21 +5131.200495 + 31 +0.0 + 0 +LINE + 5 +8CF + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5152.85113 + 30 +0.0 + 11 +6025.0 + 21 +5152.85113 + 31 +0.0 + 0 +LINE + 5 +8D0 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5152.85113 + 30 +0.0 + 11 +6100.0 + 21 +5152.85113 + 31 +0.0 + 0 +LINE + 5 +8D1 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5152.85113 + 30 +0.0 + 11 +6157.140452 + 21 +5152.85113 + 31 +0.0 + 0 +LINE + 5 +8D2 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5174.501765 + 30 +0.0 + 11 +5987.5 + 21 +5174.501765 + 31 +0.0 + 0 +LINE + 5 +8D3 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5174.501765 + 30 +0.0 + 11 +6062.5 + 21 +5174.501765 + 31 +0.0 + 0 +LINE + 5 +8D4 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5174.501765 + 30 +0.0 + 11 +6137.5 + 21 +5174.501765 + 31 +0.0 + 0 +LINE + 5 +8D5 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5196.1524 + 30 +0.0 + 11 +6025.0 + 21 +5196.1524 + 31 +0.0 + 0 +LINE + 5 +8D6 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5196.1524 + 30 +0.0 + 11 +6100.0 + 21 +5196.1524 + 31 +0.0 + 0 +LINE + 5 +8D7 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5196.1524 + 30 +0.0 + 11 +6174.46096 + 21 +5196.1524 + 31 +0.0 + 0 +LINE + 5 +8D8 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5217.803035 + 30 +0.0 + 11 +5987.5 + 21 +5217.803035 + 31 +0.0 + 0 +LINE + 5 +8D9 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5217.803035 + 30 +0.0 + 11 +6062.5 + 21 +5217.803035 + 31 +0.0 + 0 +LINE + 5 +8DA + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5217.803035 + 30 +0.0 + 11 +6137.5 + 21 +5217.803035 + 31 +0.0 + 0 +LINE + 5 +8DB + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5239.45367 + 30 +0.0 + 11 +6025.0 + 21 +5239.45367 + 31 +0.0 + 0 +LINE + 5 +8DC + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5239.45367 + 30 +0.0 + 11 +6100.0 + 21 +5239.45367 + 31 +0.0 + 0 +LINE + 5 +8DD + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5239.45367 + 30 +0.0 + 11 +6175.0 + 21 +5239.45367 + 31 +0.0 + 0 +LINE + 5 +8DE + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5261.104305 + 30 +0.0 + 11 +5987.5 + 21 +5261.104305 + 31 +0.0 + 0 +LINE + 5 +8DF + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5261.104305 + 30 +0.0 + 11 +6062.5 + 21 +5261.104305 + 31 +0.0 + 0 +LINE + 5 +8E0 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5261.104305 + 30 +0.0 + 11 +6137.5 + 21 +5261.104305 + 31 +0.0 + 0 +LINE + 5 +8E1 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5282.75494 + 30 +0.0 + 11 +6025.0 + 21 +5282.75494 + 31 +0.0 + 0 +LINE + 5 +8E2 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5282.75494 + 30 +0.0 + 11 +6100.0 + 21 +5282.75494 + 31 +0.0 + 0 +LINE + 5 +8E3 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5282.75494 + 30 +0.0 + 11 +6175.0 + 21 +5282.75494 + 31 +0.0 + 0 +LINE + 5 +8E4 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5304.405575 + 30 +0.0 + 11 +5987.5 + 21 +5304.405575 + 31 +0.0 + 0 +LINE + 5 +8E5 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5304.405575 + 30 +0.0 + 11 +6062.5 + 21 +5304.405575 + 31 +0.0 + 0 +LINE + 5 +8E6 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5304.405575 + 30 +0.0 + 11 +6137.5 + 21 +5304.405575 + 31 +0.0 + 0 +LINE + 5 +8E7 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5326.05621 + 30 +0.0 + 11 +6025.0 + 21 +5326.05621 + 31 +0.0 + 0 +LINE + 5 +8E8 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5326.05621 + 30 +0.0 + 11 +6100.0 + 21 +5326.05621 + 31 +0.0 + 0 +LINE + 5 +8E9 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5326.05621 + 30 +0.0 + 11 +6175.0 + 21 +5326.05621 + 31 +0.0 + 0 +LINE + 5 +8EA + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5347.706845 + 30 +0.0 + 11 +5987.5 + 21 +5347.706845 + 31 +0.0 + 0 +LINE + 5 +8EB + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5347.706845 + 30 +0.0 + 11 +6062.5 + 21 +5347.706845 + 31 +0.0 + 0 +LINE + 5 +8EC + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5347.706845 + 30 +0.0 + 11 +6137.5 + 21 +5347.706845 + 31 +0.0 + 0 +LINE + 5 +8ED + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5369.35748 + 30 +0.0 + 11 +6025.0 + 21 +5369.35748 + 31 +0.0 + 0 +LINE + 5 +8EE + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5369.35748 + 30 +0.0 + 11 +6100.0 + 21 +5369.35748 + 31 +0.0 + 0 +LINE + 5 +8EF + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5369.35748 + 30 +0.0 + 11 +6175.0 + 21 +5369.35748 + 31 +0.0 + 0 +LINE + 5 +8F0 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5391.008115 + 30 +0.0 + 11 +5987.5 + 21 +5391.008115 + 31 +0.0 + 0 +LINE + 5 +8F1 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5391.008115 + 30 +0.0 + 11 +6062.5 + 21 +5391.008115 + 31 +0.0 + 0 +LINE + 5 +8F2 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5391.008115 + 30 +0.0 + 11 +6137.5 + 21 +5391.008115 + 31 +0.0 + 0 +LINE + 5 +8F3 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5412.65875 + 30 +0.0 + 11 +6025.0 + 21 +5412.65875 + 31 +0.0 + 0 +LINE + 5 +8F4 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5412.65875 + 30 +0.0 + 11 +6100.0 + 21 +5412.65875 + 31 +0.0 + 0 +LINE + 5 +8F5 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5412.65875 + 30 +0.0 + 11 +6175.0 + 21 +5412.65875 + 31 +0.0 + 0 +LINE + 5 +8F6 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5434.309385 + 30 +0.0 + 11 +5987.5 + 21 +5434.309385 + 31 +0.0 + 0 +LINE + 5 +8F7 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5434.309385 + 30 +0.0 + 11 +6062.5 + 21 +5434.309385 + 31 +0.0 + 0 +LINE + 5 +8F8 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5434.309385 + 30 +0.0 + 11 +6137.5 + 21 +5434.309385 + 31 +0.0 + 0 +LINE + 5 +8F9 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5455.96002 + 30 +0.0 + 11 +6025.0 + 21 +5455.96002 + 31 +0.0 + 0 +LINE + 5 +8FA + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5455.96002 + 30 +0.0 + 11 +6100.0 + 21 +5455.96002 + 31 +0.0 + 0 +LINE + 5 +8FB + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5455.96002 + 30 +0.0 + 11 +6175.0 + 21 +5455.96002 + 31 +0.0 + 0 +LINE + 5 +8FC + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5477.610655 + 30 +0.0 + 11 +5987.5 + 21 +5477.610655 + 31 +0.0 + 0 +LINE + 5 +8FD + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5477.610655 + 30 +0.0 + 11 +6062.5 + 21 +5477.610655 + 31 +0.0 + 0 +LINE + 5 +8FE + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5477.610655 + 30 +0.0 + 11 +6137.5 + 21 +5477.610655 + 31 +0.0 + 0 +LINE + 5 +8FF + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5499.26129 + 30 +0.0 + 11 +6025.0 + 21 +5499.26129 + 31 +0.0 + 0 +LINE + 5 +900 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5499.26129 + 30 +0.0 + 11 +6100.0 + 21 +5499.26129 + 31 +0.0 + 0 +LINE + 5 +901 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5499.26129 + 30 +0.0 + 11 +6175.0 + 21 +5499.26129 + 31 +0.0 + 0 +LINE + 5 +902 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5520.911925 + 30 +0.0 + 11 +5987.5 + 21 +5520.911925 + 31 +0.0 + 0 +LINE + 5 +903 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5520.911925 + 30 +0.0 + 11 +6062.5 + 21 +5520.911925 + 31 +0.0 + 0 +LINE + 5 +904 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5520.911925 + 30 +0.0 + 11 +6137.5 + 21 +5520.911925 + 31 +0.0 + 0 +LINE + 5 +905 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5542.56256 + 30 +0.0 + 11 +6025.0 + 21 +5542.56256 + 31 +0.0 + 0 +LINE + 5 +906 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5542.56256 + 30 +0.0 + 11 +6100.0 + 21 +5542.56256 + 31 +0.0 + 0 +LINE + 5 +907 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5542.56256 + 30 +0.0 + 11 +6175.0 + 21 +5542.56256 + 31 +0.0 + 0 +LINE + 5 +908 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5564.213195 + 30 +0.0 + 11 +5987.5 + 21 +5564.213195 + 31 +0.0 + 0 +LINE + 5 +909 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5564.213195 + 30 +0.0 + 11 +6062.5 + 21 +5564.213195 + 31 +0.0 + 0 +LINE + 5 +90A + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5564.213195 + 30 +0.0 + 11 +6137.5 + 21 +5564.213195 + 31 +0.0 + 0 +LINE + 5 +90B + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5585.86383 + 30 +0.0 + 11 +6025.0 + 21 +5585.86383 + 31 +0.0 + 0 +LINE + 5 +90C + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5585.86383 + 30 +0.0 + 11 +6100.0 + 21 +5585.86383 + 31 +0.0 + 0 +LINE + 5 +90D + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5585.86383 + 30 +0.0 + 11 +6175.0 + 21 +5585.86383 + 31 +0.0 + 0 +LINE + 5 +90E + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5607.514465 + 30 +0.0 + 11 +5987.5 + 21 +5607.514465 + 31 +0.0 + 0 +LINE + 5 +90F + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5607.514465 + 30 +0.0 + 11 +6062.5 + 21 +5607.514465 + 31 +0.0 + 0 +LINE + 5 +910 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5607.514465 + 30 +0.0 + 11 +6137.5 + 21 +5607.514465 + 31 +0.0 + 0 +LINE + 5 +911 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5629.1651 + 30 +0.0 + 11 +6025.0 + 21 +5629.1651 + 31 +0.0 + 0 +LINE + 5 +912 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5629.1651 + 30 +0.0 + 11 +6100.0 + 21 +5629.1651 + 31 +0.0 + 0 +LINE + 5 +913 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5629.1651 + 30 +0.0 + 11 +6175.0 + 21 +5629.1651 + 31 +0.0 + 0 +LINE + 5 +914 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5650.815735 + 30 +0.0 + 11 +5987.5 + 21 +5650.815735 + 31 +0.0 + 0 +LINE + 5 +915 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5650.815735 + 30 +0.0 + 11 +6062.5 + 21 +5650.815735 + 31 +0.0 + 0 +LINE + 5 +916 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5650.815735 + 30 +0.0 + 11 +6137.5 + 21 +5650.815735 + 31 +0.0 + 0 +LINE + 5 +917 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5672.46637 + 30 +0.0 + 11 +6025.0 + 21 +5672.46637 + 31 +0.0 + 0 +LINE + 5 +918 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5672.46637 + 30 +0.0 + 11 +6100.0 + 21 +5672.46637 + 31 +0.0 + 0 +LINE + 5 +919 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5672.46637 + 30 +0.0 + 11 +6175.0 + 21 +5672.46637 + 31 +0.0 + 0 +LINE + 5 +91A + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5694.117005 + 30 +0.0 + 11 +5987.5 + 21 +5694.117005 + 31 +0.0 + 0 +LINE + 5 +91B + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5694.117005 + 30 +0.0 + 11 +6062.5 + 21 +5694.117005 + 31 +0.0 + 0 +LINE + 5 +91C + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5694.117005 + 30 +0.0 + 11 +6137.5 + 21 +5694.117005 + 31 +0.0 + 0 +LINE + 5 +91D + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5715.76764 + 30 +0.0 + 11 +6025.0 + 21 +5715.76764 + 31 +0.0 + 0 +LINE + 5 +91E + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5715.76764 + 30 +0.0 + 11 +6100.0 + 21 +5715.76764 + 31 +0.0 + 0 +LINE + 5 +91F + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5715.76764 + 30 +0.0 + 11 +6175.0 + 21 +5715.76764 + 31 +0.0 + 0 +LINE + 5 +920 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5737.418275 + 30 +0.0 + 11 +5987.5 + 21 +5737.418275 + 31 +0.0 + 0 +LINE + 5 +921 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5737.418275 + 30 +0.0 + 11 +6062.5 + 21 +5737.418275 + 31 +0.0 + 0 +LINE + 5 +922 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5737.418275 + 30 +0.0 + 11 +6137.5 + 21 +5737.418275 + 31 +0.0 + 0 +LINE + 5 +923 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +5759.06891 + 30 +0.0 + 11 +6025.0 + 21 +5759.06891 + 31 +0.0 + 0 +LINE + 5 +924 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +5759.06891 + 30 +0.0 + 11 +6100.0 + 21 +5759.06891 + 31 +0.0 + 0 +LINE + 5 +925 + 8 +0 + 62 + 0 + 10 +6150.0 + 20 +5759.06891 + 30 +0.0 + 11 +6175.0 + 21 +5759.06891 + 31 +0.0 + 0 +LINE + 5 +926 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5780.719545 + 30 +0.0 + 11 +5987.5 + 21 +5780.719545 + 31 +0.0 + 0 +LINE + 5 +927 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5780.719545 + 30 +0.0 + 11 +6062.5 + 21 +5780.719545 + 31 +0.0 + 0 +LINE + 5 +928 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5780.719545 + 30 +0.0 + 11 +6137.5 + 21 +5780.719545 + 31 +0.0 + 0 +LINE + 5 +929 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +5001.296685 + 30 +0.0 + 11 +5987.5 + 21 +5001.296685 + 31 +0.0 + 0 +LINE + 5 +92A + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +5001.296685 + 30 +0.0 + 11 +6062.5 + 21 +5001.296685 + 31 +0.0 + 0 +LINE + 5 +92B + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +5001.296685 + 30 +0.0 + 11 +6137.5 + 21 +5001.296685 + 31 +0.0 + 0 +LINE + 5 +92C + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4979.64605 + 30 +0.0 + 11 +6025.0 + 21 +4979.64605 + 31 +0.0 + 0 +LINE + 5 +92D + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4979.64605 + 30 +0.0 + 11 +6100.0 + 21 +4979.64605 + 31 +0.0 + 0 +LINE + 5 +92E + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4957.995415 + 30 +0.0 + 11 +5987.5 + 21 +4957.995415 + 31 +0.0 + 0 +LINE + 5 +92F + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4957.995415 + 30 +0.0 + 11 +6062.5 + 21 +4957.995415 + 31 +0.0 + 0 +LINE + 5 +930 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4957.995415 + 30 +0.0 + 11 +6137.5 + 21 +4957.995415 + 31 +0.0 + 0 +LINE + 5 +931 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4936.34478 + 30 +0.0 + 11 +6025.0 + 21 +4936.34478 + 31 +0.0 + 0 +LINE + 5 +932 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4936.34478 + 30 +0.0 + 11 +6100.0 + 21 +4936.34478 + 31 +0.0 + 0 +LINE + 5 +933 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4914.694145 + 30 +0.0 + 11 +5987.5 + 21 +4914.694145 + 31 +0.0 + 0 +LINE + 5 +934 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4914.694145 + 30 +0.0 + 11 +6062.5 + 21 +4914.694145 + 31 +0.0 + 0 +LINE + 5 +935 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4914.694145 + 30 +0.0 + 11 +6137.5 + 21 +4914.694145 + 31 +0.0 + 0 +LINE + 5 +936 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4893.04351 + 30 +0.0 + 11 +6025.0 + 21 +4893.04351 + 31 +0.0 + 0 +LINE + 5 +937 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4893.04351 + 30 +0.0 + 11 +6100.0 + 21 +4893.04351 + 31 +0.0 + 0 +LINE + 5 +938 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4871.392875 + 30 +0.0 + 11 +5987.5 + 21 +4871.392875 + 31 +0.0 + 0 +LINE + 5 +939 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4871.392875 + 30 +0.0 + 11 +6062.5 + 21 +4871.392875 + 31 +0.0 + 0 +LINE + 5 +93A + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4871.392875 + 30 +0.0 + 11 +6137.5 + 21 +4871.392875 + 31 +0.0 + 0 +LINE + 5 +93B + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4849.74224 + 30 +0.0 + 11 +6025.0 + 21 +4849.74224 + 31 +0.0 + 0 +LINE + 5 +93C + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4849.74224 + 30 +0.0 + 11 +6100.0 + 21 +4849.74224 + 31 +0.0 + 0 +LINE + 5 +93D + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4828.091605 + 30 +0.0 + 11 +5987.5 + 21 +4828.091605 + 31 +0.0 + 0 +LINE + 5 +93E + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4828.091605 + 30 +0.0 + 11 +6062.5 + 21 +4828.091605 + 31 +0.0 + 0 +LINE + 5 +93F + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4828.091605 + 30 +0.0 + 11 +6137.5 + 21 +4828.091605 + 31 +0.0 + 0 +LINE + 5 +940 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4806.44097 + 30 +0.0 + 11 +6025.0 + 21 +4806.44097 + 31 +0.0 + 0 +LINE + 5 +941 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4806.44097 + 30 +0.0 + 11 +6100.0 + 21 +4806.44097 + 31 +0.0 + 0 +LINE + 5 +942 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4784.790335 + 30 +0.0 + 11 +5987.5 + 21 +4784.790335 + 31 +0.0 + 0 +LINE + 5 +943 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4784.790335 + 30 +0.0 + 11 +6062.5 + 21 +4784.790335 + 31 +0.0 + 0 +LINE + 5 +944 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4784.790335 + 30 +0.0 + 11 +6137.5 + 21 +4784.790335 + 31 +0.0 + 0 +LINE + 5 +945 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4763.1397 + 30 +0.0 + 11 +6025.0 + 21 +4763.1397 + 31 +0.0 + 0 +LINE + 5 +946 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4763.1397 + 30 +0.0 + 11 +6100.0 + 21 +4763.1397 + 31 +0.0 + 0 +LINE + 5 +947 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4741.489065 + 30 +0.0 + 11 +5987.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +948 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4741.489065 + 30 +0.0 + 11 +6062.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +949 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4741.489065 + 30 +0.0 + 11 +6137.5 + 21 +4741.489065 + 31 +0.0 + 0 +LINE + 5 +94A + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4719.83843 + 30 +0.0 + 11 +6025.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +94B + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4719.83843 + 30 +0.0 + 11 +6100.0 + 21 +4719.83843 + 31 +0.0 + 0 +LINE + 5 +94C + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4698.187795 + 30 +0.0 + 11 +5987.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +94D + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4698.187795 + 30 +0.0 + 11 +6062.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +94E + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4698.187795 + 30 +0.0 + 11 +6137.5 + 21 +4698.187795 + 31 +0.0 + 0 +LINE + 5 +94F + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4676.53716 + 30 +0.0 + 11 +6025.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +950 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4676.53716 + 30 +0.0 + 11 +6100.0 + 21 +4676.53716 + 31 +0.0 + 0 +LINE + 5 +951 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4654.886525 + 30 +0.0 + 11 +5987.5 + 21 +4654.886525 + 31 +0.0 + 0 +LINE + 5 +952 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4654.886525 + 30 +0.0 + 11 +6062.5 + 21 +4654.886525 + 31 +0.0 + 0 +LINE + 5 +953 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4654.886525 + 30 +0.0 + 11 +6137.5 + 21 +4654.886525 + 31 +0.0 + 0 +LINE + 5 +954 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4633.23589 + 30 +0.0 + 11 +6025.0 + 21 +4633.23589 + 31 +0.0 + 0 +LINE + 5 +955 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4633.23589 + 30 +0.0 + 11 +6100.0 + 21 +4633.23589 + 31 +0.0 + 0 +LINE + 5 +956 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4611.585255 + 30 +0.0 + 11 +5987.5 + 21 +4611.585255 + 31 +0.0 + 0 +LINE + 5 +957 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4611.585255 + 30 +0.0 + 11 +6062.5 + 21 +4611.585255 + 31 +0.0 + 0 +LINE + 5 +958 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4611.585255 + 30 +0.0 + 11 +6137.5 + 21 +4611.585255 + 31 +0.0 + 0 +LINE + 5 +959 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4589.93462 + 30 +0.0 + 11 +6025.0 + 21 +4589.93462 + 31 +0.0 + 0 +LINE + 5 +95A + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4589.93462 + 30 +0.0 + 11 +6100.0 + 21 +4589.93462 + 31 +0.0 + 0 +LINE + 5 +95B + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4568.283985 + 30 +0.0 + 11 +5987.5 + 21 +4568.283985 + 31 +0.0 + 0 +LINE + 5 +95C + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4568.283985 + 30 +0.0 + 11 +6062.5 + 21 +4568.283985 + 31 +0.0 + 0 +LINE + 5 +95D + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4568.283985 + 30 +0.0 + 11 +6137.5 + 21 +4568.283985 + 31 +0.0 + 0 +LINE + 5 +95E + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4546.63335 + 30 +0.0 + 11 +6025.0 + 21 +4546.63335 + 31 +0.0 + 0 +LINE + 5 +95F + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4546.63335 + 30 +0.0 + 11 +6100.0 + 21 +4546.63335 + 31 +0.0 + 0 +LINE + 5 +960 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4524.982715 + 30 +0.0 + 11 +5987.5 + 21 +4524.982715 + 31 +0.0 + 0 +LINE + 5 +961 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4524.982715 + 30 +0.0 + 11 +6062.5 + 21 +4524.982715 + 31 +0.0 + 0 +LINE + 5 +962 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4524.982715 + 30 +0.0 + 11 +6137.5 + 21 +4524.982715 + 31 +0.0 + 0 +LINE + 5 +963 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4503.33208 + 30 +0.0 + 11 +6025.0 + 21 +4503.33208 + 31 +0.0 + 0 +LINE + 5 +964 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4503.33208 + 30 +0.0 + 11 +6100.0 + 21 +4503.33208 + 31 +0.0 + 0 +LINE + 5 +965 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4481.681445 + 30 +0.0 + 11 +5987.5 + 21 +4481.681445 + 31 +0.0 + 0 +LINE + 5 +966 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4481.681445 + 30 +0.0 + 11 +6062.5 + 21 +4481.681445 + 31 +0.0 + 0 +LINE + 5 +967 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4481.681445 + 30 +0.0 + 11 +6136.666968 + 21 +4481.681445 + 31 +0.0 + 0 +LINE + 5 +968 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4460.03081 + 30 +0.0 + 11 +6025.0 + 21 +4460.03081 + 31 +0.0 + 0 +LINE + 5 +969 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4460.03081 + 30 +0.0 + 11 +6100.0 + 21 +4460.03081 + 31 +0.0 + 0 +LINE + 5 +96A + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4438.380175 + 30 +0.0 + 11 +5987.5 + 21 +4438.380175 + 31 +0.0 + 0 +LINE + 5 +96B + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4438.380175 + 30 +0.0 + 11 +6062.5 + 21 +4438.380175 + 31 +0.0 + 0 +LINE + 5 +96C + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4438.380175 + 30 +0.0 + 11 +6135.783269 + 21 +4438.380175 + 31 +0.0 + 0 +LINE + 5 +96D + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4416.72954 + 30 +0.0 + 11 +6025.0 + 21 +4416.72954 + 31 +0.0 + 0 +LINE + 5 +96E + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4416.72954 + 30 +0.0 + 11 +6100.0 + 21 +4416.72954 + 31 +0.0 + 0 +LINE + 5 +96F + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4395.078905 + 30 +0.0 + 11 +5987.5 + 21 +4395.078905 + 31 +0.0 + 0 +LINE + 5 +970 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4395.078905 + 30 +0.0 + 11 +6062.5 + 21 +4395.078905 + 31 +0.0 + 0 +LINE + 5 +971 + 8 +0 + 62 + 0 + 10 +6112.5 + 20 +4395.078905 + 30 +0.0 + 11 +6129.094686 + 21 +4395.078905 + 31 +0.0 + 0 +LINE + 5 +972 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4373.42827 + 30 +0.0 + 11 +6025.0 + 21 +4373.42827 + 31 +0.0 + 0 +LINE + 5 +973 + 8 +0 + 62 + 0 + 10 +6075.0 + 20 +4373.42827 + 30 +0.0 + 11 +6100.0 + 21 +4373.42827 + 31 +0.0 + 0 +LINE + 5 +974 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4351.777635 + 30 +0.0 + 11 +5987.5 + 21 +4351.777635 + 31 +0.0 + 0 +LINE + 5 +975 + 8 +0 + 62 + 0 + 10 +6037.5 + 20 +4351.777635 + 30 +0.0 + 11 +6062.5 + 21 +4351.777635 + 31 +0.0 + 0 +LINE + 5 +976 + 8 +0 + 62 + 0 + 10 +6000.0 + 20 +4330.127 + 30 +0.0 + 11 +6025.0 + 21 +4330.127 + 31 +0.0 + 0 +LINE + 5 +977 + 8 +0 + 62 + 0 + 10 +5968.4375 + 20 +4308.476365 + 30 +0.0 + 11 +5987.5 + 21 +4308.476365 + 31 +0.0 + 0 +LINE + 5 +978 + 8 +0 + 62 + 0 + 10 +6145.230697 + 20 +4901.304139 + 30 +0.0 + 11 +6137.499971 + 21 +4914.694149 + 31 +0.0 + 0 +LINE + 5 +979 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4957.99542 + 30 +0.0 + 11 +6099.999971 + 21 +4979.646055 + 31 +0.0 + 0 +LINE + 5 +97A + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +5022.947325 + 30 +0.0 + 11 +6062.499971 + 21 +5044.59796 + 31 +0.0 + 0 +LINE + 5 +97B + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +5087.89923 + 30 +0.0 + 11 +6024.999971 + 21 +5109.549865 + 31 +0.0 + 0 +LINE + 5 +97C + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +5152.851136 + 30 +0.0 + 11 +5987.499971 + 21 +5174.501771 + 31 +0.0 + 0 +LINE + 5 +97D + 8 +0 + 62 + 0 + 10 +6144.377168 + 20 +4859.481224 + 30 +0.0 + 11 +6137.499971 + 21 +4871.392879 + 31 +0.0 + 0 +LINE + 5 +97E + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4914.69415 + 30 +0.0 + 11 +6099.999971 + 21 +4936.344785 + 31 +0.0 + 0 +LINE + 5 +97F + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4979.646055 + 30 +0.0 + 11 +6062.499971 + 21 +5001.29669 + 31 +0.0 + 0 +LINE + 5 +980 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +5044.59796 + 30 +0.0 + 11 +6024.999971 + 21 +5066.248595 + 31 +0.0 + 0 +LINE + 5 +981 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +5109.549865 + 30 +0.0 + 11 +5987.499971 + 21 +5131.2005 + 31 +0.0 + 0 +LINE + 5 +982 + 8 +0 + 62 + 0 + 10 +6143.523639 + 20 +4817.65831 + 30 +0.0 + 11 +6137.499971 + 21 +4828.091609 + 31 +0.0 + 0 +LINE + 5 +983 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4871.392879 + 30 +0.0 + 11 +6099.999971 + 21 +4893.043514 + 31 +0.0 + 0 +LINE + 5 +984 + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4936.344785 + 30 +0.0 + 11 +6062.499971 + 21 +4957.99542 + 31 +0.0 + 0 +LINE + 5 +985 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +5001.29669 + 30 +0.0 + 11 +6024.999971 + 21 +5022.947325 + 31 +0.0 + 0 +LINE + 5 +986 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +5066.248595 + 30 +0.0 + 11 +5987.499971 + 21 +5087.89923 + 31 +0.0 + 0 +LINE + 5 +987 + 8 +0 + 62 + 0 + 10 +6142.67011 + 20 +4775.835395 + 30 +0.0 + 11 +6137.499971 + 21 +4784.790339 + 31 +0.0 + 0 +LINE + 5 +988 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4828.091609 + 30 +0.0 + 11 +6099.999971 + 21 +4849.742244 + 31 +0.0 + 0 +LINE + 5 +989 + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4893.043515 + 30 +0.0 + 11 +6062.499971 + 21 +4914.69415 + 31 +0.0 + 0 +LINE + 5 +98A + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4957.99542 + 30 +0.0 + 11 +6024.999971 + 21 +4979.646055 + 31 +0.0 + 0 +LINE + 5 +98B + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +5022.947325 + 30 +0.0 + 11 +5987.499971 + 21 +5044.59796 + 31 +0.0 + 0 +LINE + 5 +98C + 8 +0 + 62 + 0 + 10 +6141.816581 + 20 +4734.012481 + 30 +0.0 + 11 +6137.499971 + 21 +4741.489069 + 31 +0.0 + 0 +LINE + 5 +98D + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4784.790339 + 30 +0.0 + 11 +6099.999971 + 21 +4806.440974 + 31 +0.0 + 0 +LINE + 5 +98E + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4849.742244 + 30 +0.0 + 11 +6062.499971 + 21 +4871.392879 + 31 +0.0 + 0 +LINE + 5 +98F + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4914.69415 + 30 +0.0 + 11 +6024.999971 + 21 +4936.344785 + 31 +0.0 + 0 +LINE + 5 +990 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4979.646055 + 30 +0.0 + 11 +5987.499971 + 21 +5001.29669 + 31 +0.0 + 0 +LINE + 5 +991 + 8 +0 + 62 + 0 + 10 +6140.963052 + 20 +4692.189566 + 30 +0.0 + 11 +6137.499971 + 21 +4698.187799 + 31 +0.0 + 0 +LINE + 5 +992 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4741.489069 + 30 +0.0 + 11 +6099.999971 + 21 +4763.139704 + 31 +0.0 + 0 +LINE + 5 +993 + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4806.440974 + 30 +0.0 + 11 +6062.499971 + 21 +4828.091609 + 31 +0.0 + 0 +LINE + 5 +994 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4871.39288 + 30 +0.0 + 11 +6024.999971 + 21 +4893.043515 + 31 +0.0 + 0 +LINE + 5 +995 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4936.344785 + 30 +0.0 + 11 +5987.499971 + 21 +4957.99542 + 31 +0.0 + 0 +LINE + 5 +996 + 8 +0 + 62 + 0 + 10 +6140.109523 + 20 +4650.366651 + 30 +0.0 + 11 +6137.499971 + 21 +4654.886529 + 31 +0.0 + 0 +LINE + 5 +997 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4698.187799 + 30 +0.0 + 11 +6099.999971 + 21 +4719.838434 + 31 +0.0 + 0 +LINE + 5 +998 + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4763.139704 + 30 +0.0 + 11 +6062.499971 + 21 +4784.790339 + 31 +0.0 + 0 +LINE + 5 +999 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4828.091609 + 30 +0.0 + 11 +6024.999971 + 21 +4849.742244 + 31 +0.0 + 0 +LINE + 5 +99A + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4893.043515 + 30 +0.0 + 11 +5987.499971 + 21 +4914.69415 + 31 +0.0 + 0 +LINE + 5 +99B + 8 +0 + 62 + 0 + 10 +6139.255995 + 20 +4608.543737 + 30 +0.0 + 11 +6137.499971 + 21 +4611.585259 + 31 +0.0 + 0 +LINE + 5 +99C + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4654.886529 + 30 +0.0 + 11 +6099.999971 + 21 +4676.537164 + 31 +0.0 + 0 +LINE + 5 +99D + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4719.838434 + 30 +0.0 + 11 +6062.499971 + 21 +4741.489069 + 31 +0.0 + 0 +LINE + 5 +99E + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4784.790339 + 30 +0.0 + 11 +6024.999971 + 21 +4806.440974 + 31 +0.0 + 0 +LINE + 5 +99F + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4849.742245 + 30 +0.0 + 11 +5987.499971 + 21 +4871.39288 + 31 +0.0 + 0 +LINE + 5 +9A0 + 8 +0 + 62 + 0 + 10 +6138.402466 + 20 +4566.720822 + 30 +0.0 + 11 +6137.499971 + 21 +4568.283988 + 31 +0.0 + 0 +LINE + 5 +9A1 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4611.585259 + 30 +0.0 + 11 +6099.999971 + 21 +4633.235894 + 31 +0.0 + 0 +LINE + 5 +9A2 + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4676.537164 + 30 +0.0 + 11 +6062.499971 + 21 +4698.187799 + 31 +0.0 + 0 +LINE + 5 +9A3 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4741.489069 + 30 +0.0 + 11 +6024.999971 + 21 +4763.139704 + 31 +0.0 + 0 +LINE + 5 +9A4 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4806.440974 + 30 +0.0 + 11 +5987.499971 + 21 +4828.091609 + 31 +0.0 + 0 +LINE + 5 +9A5 + 8 +0 + 62 + 0 + 10 +6137.548937 + 20 +4524.897907 + 30 +0.0 + 11 +6137.499971 + 21 +4524.982718 + 31 +0.0 + 0 +LINE + 5 +9A6 + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4568.283988 + 30 +0.0 + 11 +6099.999971 + 21 +4589.934624 + 31 +0.0 + 0 +LINE + 5 +9A7 + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4633.235894 + 30 +0.0 + 11 +6062.499971 + 21 +4654.886529 + 31 +0.0 + 0 +LINE + 5 +9A8 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4698.187799 + 30 +0.0 + 11 +6024.999971 + 21 +4719.838434 + 31 +0.0 + 0 +LINE + 5 +9A9 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4763.139704 + 30 +0.0 + 11 +5987.499971 + 21 +4784.790339 + 31 +0.0 + 0 +LINE + 5 +9AA + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4524.982718 + 30 +0.0 + 11 +6099.999971 + 21 +4546.633353 + 31 +0.0 + 0 +LINE + 5 +9AB + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4589.934624 + 30 +0.0 + 11 +6062.499971 + 21 +4611.585259 + 31 +0.0 + 0 +LINE + 5 +9AC + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4654.886529 + 30 +0.0 + 11 +6024.999971 + 21 +4676.537164 + 31 +0.0 + 0 +LINE + 5 +9AD + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4719.838434 + 30 +0.0 + 11 +5987.499971 + 21 +4741.489069 + 31 +0.0 + 0 +LINE + 5 +9AE + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +4481.681448 + 30 +0.0 + 11 +6099.999971 + 21 +4503.332083 + 31 +0.0 + 0 +LINE + 5 +9AF + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +4546.633353 + 30 +0.0 + 11 +6062.499971 + 21 +4568.283989 + 31 +0.0 + 0 +LINE + 5 +9B0 + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +4611.585259 + 30 +0.0 + 11 +6024.999971 + 21 +4633.235894 + 31 +0.0 + 0 +LINE + 5 +9B1 + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +4676.537164 + 30 +0.0 + 11 +5987.499971 + 21 +4698.187799 + 31 +0.0 + 0 +LINE + 5 +9B2 + 8 +0 + 62 + 0 + 10 +6112.499972 + 20 +4438.380178 + 30 +0.0 + 11 +6099.999972 + 21 +4460.030813 + 31 +0.0 + 0 +LINE + 5 +9B3 + 8 +0 + 62 + 0 + 10 +6074.999972 + 20 +4503.332083 + 30 +0.0 + 11 +6062.499972 + 21 +4524.982718 + 31 +0.0 + 0 +LINE + 5 +9B4 + 8 +0 + 62 + 0 + 10 +6037.499972 + 20 +4568.283989 + 30 +0.0 + 11 +6024.999972 + 21 +4589.934624 + 31 +0.0 + 0 +LINE + 5 +9B5 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4633.235894 + 30 +0.0 + 11 +5987.499972 + 21 +4654.886529 + 31 +0.0 + 0 +LINE + 5 +9B6 + 8 +0 + 62 + 0 + 10 +6112.499972 + 20 +4395.078908 + 30 +0.0 + 11 +6099.999972 + 21 +4416.729543 + 31 +0.0 + 0 +LINE + 5 +9B7 + 8 +0 + 62 + 0 + 10 +6074.999972 + 20 +4460.030813 + 30 +0.0 + 11 +6062.499972 + 21 +4481.681448 + 31 +0.0 + 0 +LINE + 5 +9B8 + 8 +0 + 62 + 0 + 10 +6037.499972 + 20 +4524.982718 + 30 +0.0 + 11 +6024.999972 + 21 +4546.633354 + 31 +0.0 + 0 +LINE + 5 +9B9 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4589.934624 + 30 +0.0 + 11 +5987.499972 + 21 +4611.585259 + 31 +0.0 + 0 +LINE + 5 +9BA + 8 +0 + 62 + 0 + 10 +6101.011502 + 20 +4371.676251 + 30 +0.0 + 11 +6099.999972 + 21 +4373.428273 + 31 +0.0 + 0 +LINE + 5 +9BB + 8 +0 + 62 + 0 + 10 +6074.999972 + 20 +4416.729543 + 30 +0.0 + 11 +6062.499972 + 21 +4438.380178 + 31 +0.0 + 0 +LINE + 5 +9BC + 8 +0 + 62 + 0 + 10 +6037.499972 + 20 +4481.681448 + 30 +0.0 + 11 +6024.999972 + 21 +4503.332083 + 31 +0.0 + 0 +LINE + 5 +9BD + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4546.633354 + 30 +0.0 + 11 +5987.499972 + 21 +4568.283989 + 31 +0.0 + 0 +LINE + 5 +9BE + 8 +0 + 62 + 0 + 10 +6074.999972 + 20 +4373.428273 + 30 +0.0 + 11 +6062.499972 + 21 +4395.078908 + 31 +0.0 + 0 +LINE + 5 +9BF + 8 +0 + 62 + 0 + 10 +6037.499972 + 20 +4438.380178 + 30 +0.0 + 11 +6024.999972 + 21 +4460.030813 + 31 +0.0 + 0 +LINE + 5 +9C0 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4503.332083 + 30 +0.0 + 11 +5987.499972 + 21 +4524.982719 + 31 +0.0 + 0 +LINE + 5 +9C1 + 8 +0 + 62 + 0 + 10 +6067.253384 + 20 +4343.544487 + 30 +0.0 + 11 +6062.499972 + 21 +4351.777638 + 31 +0.0 + 0 +LINE + 5 +9C2 + 8 +0 + 62 + 0 + 10 +6037.499972 + 20 +4395.078908 + 30 +0.0 + 11 +6024.999972 + 21 +4416.729543 + 31 +0.0 + 0 +LINE + 5 +9C3 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4460.030813 + 30 +0.0 + 11 +5987.499972 + 21 +4481.681448 + 31 +0.0 + 0 +LINE + 5 +9C4 + 8 +0 + 62 + 0 + 10 +6037.499972 + 20 +4351.777638 + 30 +0.0 + 11 +6024.999972 + 21 +4373.428273 + 31 +0.0 + 0 +LINE + 5 +9C5 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4416.729543 + 30 +0.0 + 11 +5987.499972 + 21 +4438.380178 + 31 +0.0 + 0 +LINE + 5 +9C6 + 8 +0 + 62 + 0 + 10 +6032.277357 + 20 +4317.522202 + 30 +0.0 + 11 +6024.999972 + 21 +4330.127003 + 31 +0.0 + 0 +LINE + 5 +9C7 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4373.428273 + 30 +0.0 + 11 +5987.499972 + 21 +4395.078908 + 31 +0.0 + 0 +LINE + 5 +9C8 + 8 +0 + 62 + 0 + 10 +5999.999972 + 20 +4330.127003 + 30 +0.0 + 11 +5987.499972 + 21 +4351.777638 + 31 +0.0 + 0 +LINE + 5 +9C9 + 8 +0 + 62 + 0 + 10 +5994.945553 + 20 +4295.580243 + 30 +0.0 + 11 +5987.499972 + 21 +4308.476368 + 31 +0.0 + 0 +LINE + 5 +9CA + 8 +0 + 62 + 0 + 10 +6146.084226 + 20 +4943.127054 + 30 +0.0 + 11 +6137.499971 + 21 +4957.99542 + 31 +0.0 + 0 +LINE + 5 +9CB + 8 +0 + 62 + 0 + 10 +6112.499971 + 20 +5001.29669 + 30 +0.0 + 11 +6099.999971 + 21 +5022.947325 + 31 +0.0 + 0 +LINE + 5 +9CC + 8 +0 + 62 + 0 + 10 +6074.999971 + 20 +5066.248595 + 30 +0.0 + 11 +6062.499971 + 21 +5087.89923 + 31 +0.0 + 0 +LINE + 5 +9CD + 8 +0 + 62 + 0 + 10 +6037.499971 + 20 +5131.2005 + 30 +0.0 + 11 +6024.999971 + 21 +5152.851135 + 31 +0.0 + 0 +LINE + 5 +9CE + 8 +0 + 62 + 0 + 10 +5999.999971 + 20 +5196.152406 + 30 +0.0 + 11 +5987.499971 + 21 +5217.803041 + 31 +0.0 + 0 +LINE + 5 +9CF + 8 +0 + 62 + 0 + 10 +6146.937754 + 20 +4984.949968 + 30 +0.0 + 11 +6137.49997 + 21 +5001.29669 + 31 +0.0 + 0 +LINE + 5 +9D0 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5044.59796 + 30 +0.0 + 11 +6099.99997 + 21 +5066.248595 + 31 +0.0 + 0 +LINE + 5 +9D1 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5109.549865 + 30 +0.0 + 11 +6062.49997 + 21 +5131.2005 + 31 +0.0 + 0 +LINE + 5 +9D2 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5174.501771 + 30 +0.0 + 11 +6024.99997 + 21 +5196.152406 + 31 +0.0 + 0 +LINE + 5 +9D3 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5239.453676 + 30 +0.0 + 11 +5987.49997 + 21 +5261.104311 + 31 +0.0 + 0 +LINE + 5 +9D4 + 8 +0 + 62 + 0 + 10 +6147.791283 + 20 +5026.772883 + 30 +0.0 + 11 +6137.49997 + 21 +5044.59796 + 31 +0.0 + 0 +LINE + 5 +9D5 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5087.89923 + 30 +0.0 + 11 +6099.99997 + 21 +5109.549865 + 31 +0.0 + 0 +LINE + 5 +9D6 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5152.851135 + 30 +0.0 + 11 +6062.49997 + 21 +5174.50177 + 31 +0.0 + 0 +LINE + 5 +9D7 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5217.803041 + 30 +0.0 + 11 +6024.99997 + 21 +5239.453676 + 31 +0.0 + 0 +LINE + 5 +9D8 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5282.754946 + 30 +0.0 + 11 +5987.49997 + 21 +5304.405581 + 31 +0.0 + 0 +LINE + 5 +9D9 + 8 +0 + 62 + 0 + 10 +6148.644812 + 20 +5068.595798 + 30 +0.0 + 11 +6137.49997 + 21 +5087.89923 + 31 +0.0 + 0 +LINE + 5 +9DA + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5131.2005 + 30 +0.0 + 11 +6099.99997 + 21 +5152.851135 + 31 +0.0 + 0 +LINE + 5 +9DB + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5196.152406 + 30 +0.0 + 11 +6062.49997 + 21 +5217.803041 + 31 +0.0 + 0 +LINE + 5 +9DC + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5261.104311 + 30 +0.0 + 11 +6024.99997 + 21 +5282.754946 + 31 +0.0 + 0 +LINE + 5 +9DD + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5326.056216 + 30 +0.0 + 11 +5987.49997 + 21 +5347.706851 + 31 +0.0 + 0 +LINE + 5 +9DE + 8 +0 + 62 + 0 + 10 +6149.498341 + 20 +5110.418712 + 30 +0.0 + 11 +6137.49997 + 21 +5131.2005 + 31 +0.0 + 0 +LINE + 5 +9DF + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5174.50177 + 30 +0.0 + 11 +6099.99997 + 21 +5196.152405 + 31 +0.0 + 0 +LINE + 5 +9E0 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5239.453676 + 30 +0.0 + 11 +6062.49997 + 21 +5261.104311 + 31 +0.0 + 0 +LINE + 5 +9E1 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5304.405581 + 30 +0.0 + 11 +6024.99997 + 21 +5326.056216 + 31 +0.0 + 0 +LINE + 5 +9E2 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5369.357486 + 30 +0.0 + 11 +5987.49997 + 21 +5391.008121 + 31 +0.0 + 0 +LINE + 5 +9E3 + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5152.851135 + 30 +0.0 + 11 +6137.49997 + 21 +5174.50177 + 31 +0.0 + 0 +LINE + 5 +9E4 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5217.803041 + 30 +0.0 + 11 +6099.99997 + 21 +5239.453676 + 31 +0.0 + 0 +LINE + 5 +9E5 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5282.754946 + 30 +0.0 + 11 +6062.49997 + 21 +5304.405581 + 31 +0.0 + 0 +LINE + 5 +9E6 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5347.706851 + 30 +0.0 + 11 +6024.99997 + 21 +5369.357486 + 31 +0.0 + 0 +LINE + 5 +9E7 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5412.658756 + 30 +0.0 + 11 +5987.49997 + 21 +5434.309391 + 31 +0.0 + 0 +LINE + 5 +9E8 + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5196.152405 + 30 +0.0 + 11 +6137.49997 + 21 +5217.80304 + 31 +0.0 + 0 +LINE + 5 +9E9 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5261.104311 + 30 +0.0 + 11 +6099.99997 + 21 +5282.754946 + 31 +0.0 + 0 +LINE + 5 +9EA + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5326.056216 + 30 +0.0 + 11 +6062.49997 + 21 +5347.706851 + 31 +0.0 + 0 +LINE + 5 +9EB + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5391.008121 + 30 +0.0 + 11 +6024.99997 + 21 +5412.658756 + 31 +0.0 + 0 +LINE + 5 +9EC + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5455.960027 + 30 +0.0 + 11 +5987.49997 + 21 +5477.610662 + 31 +0.0 + 0 +LINE + 5 +9ED + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5239.453676 + 30 +0.0 + 11 +6137.49997 + 21 +5261.104311 + 31 +0.0 + 0 +LINE + 5 +9EE + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5304.405581 + 30 +0.0 + 11 +6099.99997 + 21 +5326.056216 + 31 +0.0 + 0 +LINE + 5 +9EF + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5369.357486 + 30 +0.0 + 11 +6062.49997 + 21 +5391.008121 + 31 +0.0 + 0 +LINE + 5 +9F0 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5434.309391 + 30 +0.0 + 11 +6024.99997 + 21 +5455.960026 + 31 +0.0 + 0 +LINE + 5 +9F1 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5499.261297 + 30 +0.0 + 11 +5987.49997 + 21 +5520.911932 + 31 +0.0 + 0 +LINE + 5 +9F2 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5239.453623 + 30 +0.0 + 11 +6174.99997 + 21 +5239.453675 + 31 +0.0 + 0 +LINE + 5 +9F3 + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5282.754946 + 30 +0.0 + 11 +6137.49997 + 21 +5304.405581 + 31 +0.0 + 0 +LINE + 5 +9F4 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5347.706851 + 30 +0.0 + 11 +6099.99997 + 21 +5369.357486 + 31 +0.0 + 0 +LINE + 5 +9F5 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5412.658756 + 30 +0.0 + 11 +6062.49997 + 21 +5434.309391 + 31 +0.0 + 0 +LINE + 5 +9F6 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5477.610662 + 30 +0.0 + 11 +6024.99997 + 21 +5499.261297 + 31 +0.0 + 0 +LINE + 5 +9F7 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5542.562567 + 30 +0.0 + 11 +5987.49997 + 21 +5564.213202 + 31 +0.0 + 0 +LINE + 5 +9F8 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5282.754893 + 30 +0.0 + 11 +6174.99997 + 21 +5282.754946 + 31 +0.0 + 0 +LINE + 5 +9F9 + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5326.056216 + 30 +0.0 + 11 +6137.49997 + 21 +5347.706851 + 31 +0.0 + 0 +LINE + 5 +9FA + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5391.008121 + 30 +0.0 + 11 +6099.99997 + 21 +5412.658756 + 31 +0.0 + 0 +LINE + 5 +9FB + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5455.960026 + 30 +0.0 + 11 +6062.49997 + 21 +5477.610661 + 31 +0.0 + 0 +LINE + 5 +9FC + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5520.911932 + 30 +0.0 + 11 +6024.99997 + 21 +5542.562567 + 31 +0.0 + 0 +LINE + 5 +9FD + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5585.863837 + 30 +0.0 + 11 +5987.49997 + 21 +5607.514472 + 31 +0.0 + 0 +LINE + 5 +9FE + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5326.056163 + 30 +0.0 + 11 +6174.99997 + 21 +5326.056216 + 31 +0.0 + 0 +LINE + 5 +9FF + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5369.357486 + 30 +0.0 + 11 +6137.49997 + 21 +5391.008121 + 31 +0.0 + 0 +LINE + 5 +A00 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5434.309391 + 30 +0.0 + 11 +6099.99997 + 21 +5455.960026 + 31 +0.0 + 0 +LINE + 5 +A01 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5499.261297 + 30 +0.0 + 11 +6062.49997 + 21 +5520.911932 + 31 +0.0 + 0 +LINE + 5 +A02 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5564.213202 + 30 +0.0 + 11 +6024.99997 + 21 +5585.863837 + 31 +0.0 + 0 +LINE + 5 +A03 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5629.165107 + 30 +0.0 + 11 +5987.49997 + 21 +5650.815742 + 31 +0.0 + 0 +LINE + 5 +A04 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5369.357433 + 30 +0.0 + 11 +6174.99997 + 21 +5369.357486 + 31 +0.0 + 0 +LINE + 5 +A05 + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5412.658756 + 30 +0.0 + 11 +6137.49997 + 21 +5434.309391 + 31 +0.0 + 0 +LINE + 5 +A06 + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5477.610661 + 30 +0.0 + 11 +6099.99997 + 21 +5499.261296 + 31 +0.0 + 0 +LINE + 5 +A07 + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5542.562567 + 30 +0.0 + 11 +6062.49997 + 21 +5564.213202 + 31 +0.0 + 0 +LINE + 5 +A08 + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5607.514472 + 30 +0.0 + 11 +6024.99997 + 21 +5629.165107 + 31 +0.0 + 0 +LINE + 5 +A09 + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5672.466377 + 30 +0.0 + 11 +5987.49997 + 21 +5694.117012 + 31 +0.0 + 0 +LINE + 5 +A0A + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5412.658703 + 30 +0.0 + 11 +6174.99997 + 21 +5412.658756 + 31 +0.0 + 0 +LINE + 5 +A0B + 8 +0 + 62 + 0 + 10 +6149.99997 + 20 +5455.960026 + 30 +0.0 + 11 +6137.49997 + 21 +5477.610661 + 31 +0.0 + 0 +LINE + 5 +A0C + 8 +0 + 62 + 0 + 10 +6112.49997 + 20 +5520.911932 + 30 +0.0 + 11 +6099.99997 + 21 +5542.562567 + 31 +0.0 + 0 +LINE + 5 +A0D + 8 +0 + 62 + 0 + 10 +6074.99997 + 20 +5585.863837 + 30 +0.0 + 11 +6062.49997 + 21 +5607.514472 + 31 +0.0 + 0 +LINE + 5 +A0E + 8 +0 + 62 + 0 + 10 +6037.49997 + 20 +5650.815742 + 30 +0.0 + 11 +6024.99997 + 21 +5672.466377 + 31 +0.0 + 0 +LINE + 5 +A0F + 8 +0 + 62 + 0 + 10 +5999.99997 + 20 +5715.767647 + 30 +0.0 + 11 +5987.49997 + 21 +5737.418282 + 31 +0.0 + 0 +LINE + 5 +A10 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5455.959973 + 30 +0.0 + 11 +6174.999969 + 21 +5455.960026 + 31 +0.0 + 0 +LINE + 5 +A11 + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5499.261296 + 30 +0.0 + 11 +6137.499969 + 21 +5520.911931 + 31 +0.0 + 0 +LINE + 5 +A12 + 8 +0 + 62 + 0 + 10 +6112.499969 + 20 +5564.213202 + 30 +0.0 + 11 +6099.999969 + 21 +5585.863837 + 31 +0.0 + 0 +LINE + 5 +A13 + 8 +0 + 62 + 0 + 10 +6074.999969 + 20 +5629.165107 + 30 +0.0 + 11 +6062.499969 + 21 +5650.815742 + 31 +0.0 + 0 +LINE + 5 +A14 + 8 +0 + 62 + 0 + 10 +6037.499969 + 20 +5694.117012 + 30 +0.0 + 11 +6024.999969 + 21 +5715.767647 + 31 +0.0 + 0 +LINE + 5 +A15 + 8 +0 + 62 + 0 + 10 +5999.999969 + 20 +5759.068918 + 30 +0.0 + 11 +5987.499969 + 21 +5780.719553 + 31 +0.0 + 0 +LINE + 5 +A16 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5499.261243 + 30 +0.0 + 11 +6174.999969 + 21 +5499.261296 + 31 +0.0 + 0 +LINE + 5 +A17 + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5542.562567 + 30 +0.0 + 11 +6137.499969 + 21 +5564.213202 + 31 +0.0 + 0 +LINE + 5 +A18 + 8 +0 + 62 + 0 + 10 +6112.499969 + 20 +5607.514472 + 30 +0.0 + 11 +6099.999969 + 21 +5629.165107 + 31 +0.0 + 0 +LINE + 5 +A19 + 8 +0 + 62 + 0 + 10 +6074.999969 + 20 +5672.466377 + 30 +0.0 + 11 +6062.499969 + 21 +5694.117012 + 31 +0.0 + 0 +LINE + 5 +A1A + 8 +0 + 62 + 0 + 10 +6037.499969 + 20 +5737.418282 + 30 +0.0 + 11 +6024.999969 + 21 +5759.068917 + 31 +0.0 + 0 +LINE + 5 +A1B + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5542.562513 + 30 +0.0 + 11 +6174.999969 + 21 +5542.562566 + 31 +0.0 + 0 +LINE + 5 +A1C + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5585.863837 + 30 +0.0 + 11 +6137.499969 + 21 +5607.514472 + 31 +0.0 + 0 +LINE + 5 +A1D + 8 +0 + 62 + 0 + 10 +6112.499969 + 20 +5650.815742 + 30 +0.0 + 11 +6099.999969 + 21 +5672.466377 + 31 +0.0 + 0 +LINE + 5 +A1E + 8 +0 + 62 + 0 + 10 +6074.999969 + 20 +5715.767647 + 30 +0.0 + 11 +6062.499969 + 21 +5737.418282 + 31 +0.0 + 0 +LINE + 5 +A1F + 8 +0 + 62 + 0 + 10 +6037.499969 + 20 +5780.719553 + 30 +0.0 + 11 +6032.1419 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +A20 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5585.863783 + 30 +0.0 + 11 +6174.999969 + 21 +5585.863837 + 31 +0.0 + 0 +LINE + 5 +A21 + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5629.165107 + 30 +0.0 + 11 +6137.499969 + 21 +5650.815742 + 31 +0.0 + 0 +LINE + 5 +A22 + 8 +0 + 62 + 0 + 10 +6112.499969 + 20 +5694.117012 + 30 +0.0 + 11 +6099.999969 + 21 +5715.767647 + 31 +0.0 + 0 +LINE + 5 +A23 + 8 +0 + 62 + 0 + 10 +6074.999969 + 20 +5759.068917 + 30 +0.0 + 11 +6062.499969 + 21 +5780.719552 + 31 +0.0 + 0 +LINE + 5 +A24 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5629.165053 + 30 +0.0 + 11 +6174.999969 + 21 +5629.165107 + 31 +0.0 + 0 +LINE + 5 +A25 + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5672.466377 + 30 +0.0 + 11 +6137.499969 + 21 +5694.117012 + 31 +0.0 + 0 +LINE + 5 +A26 + 8 +0 + 62 + 0 + 10 +6112.499969 + 20 +5737.418282 + 30 +0.0 + 11 +6099.999969 + 21 +5759.068917 + 31 +0.0 + 0 +LINE + 5 +A27 + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5672.466323 + 30 +0.0 + 11 +6174.999969 + 21 +5672.466377 + 31 +0.0 + 0 +LINE + 5 +A28 + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5715.767647 + 30 +0.0 + 11 +6137.499969 + 21 +5737.418282 + 31 +0.0 + 0 +LINE + 5 +A29 + 8 +0 + 62 + 0 + 10 +6112.499969 + 20 +5780.719552 + 30 +0.0 + 11 +6107.1419 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +A2A + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5715.767593 + 30 +0.0 + 11 +6174.999969 + 21 +5715.767647 + 31 +0.0 + 0 +LINE + 5 +A2B + 8 +0 + 62 + 0 + 10 +6149.999969 + 20 +5759.068917 + 30 +0.0 + 11 +6137.499969 + 21 +5780.719552 + 31 +0.0 + 0 +LINE + 5 +A2C + 8 +0 + 62 + 0 + 10 +6175.0 + 20 +5759.068863 + 30 +0.0 + 11 +6174.999969 + 21 +5759.068917 + 31 +0.0 + 0 +LINE + 5 +A2D + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +4914.694172 + 30 +0.0 + 11 +5999.99999 + 21 +4936.344808 + 31 +0.0 + 0 +LINE + 5 +A2E + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +4979.646078 + 30 +0.0 + 11 +6037.49999 + 21 +5001.296713 + 31 +0.0 + 0 +LINE + 5 +A2F + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5044.597983 + 30 +0.0 + 11 +6074.99999 + 21 +5066.248618 + 31 +0.0 + 0 +LINE + 5 +A30 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5109.549888 + 30 +0.0 + 11 +6112.49999 + 21 +5131.200523 + 31 +0.0 + 0 +LINE + 5 +A31 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5174.501794 + 30 +0.0 + 11 +6149.99999 + 21 +5196.152429 + 31 +0.0 + 0 +LINE + 5 +A32 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5239.453699 + 30 +0.0 + 11 +6175.0 + 21 +5239.453717 + 31 +0.0 + 0 +LINE + 5 +A33 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +4957.995443 + 30 +0.0 + 11 +5999.99999 + 21 +4979.646078 + 31 +0.0 + 0 +LINE + 5 +A34 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5022.947348 + 30 +0.0 + 11 +6037.49999 + 21 +5044.597983 + 31 +0.0 + 0 +LINE + 5 +A35 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5087.899253 + 30 +0.0 + 11 +6074.99999 + 21 +5109.549888 + 31 +0.0 + 0 +LINE + 5 +A36 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5152.851158 + 30 +0.0 + 11 +6112.49999 + 21 +5174.501794 + 31 +0.0 + 0 +LINE + 5 +A37 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5217.803064 + 30 +0.0 + 11 +6149.99999 + 21 +5239.453699 + 31 +0.0 + 0 +LINE + 5 +A38 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5282.754969 + 30 +0.0 + 11 +6175.0 + 21 +5282.754987 + 31 +0.0 + 0 +LINE + 5 +A39 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5001.296713 + 30 +0.0 + 11 +5999.99999 + 21 +5022.947348 + 31 +0.0 + 0 +LINE + 5 +A3A + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5066.248618 + 30 +0.0 + 11 +6037.49999 + 21 +5087.899253 + 31 +0.0 + 0 +LINE + 5 +A3B + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5131.200523 + 30 +0.0 + 11 +6074.99999 + 21 +5152.851158 + 31 +0.0 + 0 +LINE + 5 +A3C + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5196.152429 + 30 +0.0 + 11 +6112.49999 + 21 +5217.803064 + 31 +0.0 + 0 +LINE + 5 +A3D + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5261.104334 + 30 +0.0 + 11 +6149.99999 + 21 +5282.754969 + 31 +0.0 + 0 +LINE + 5 +A3E + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5326.056239 + 30 +0.0 + 11 +6175.0 + 21 +5326.056257 + 31 +0.0 + 0 +LINE + 5 +A3F + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5044.597983 + 30 +0.0 + 11 +5999.99999 + 21 +5066.248618 + 31 +0.0 + 0 +LINE + 5 +A40 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5109.549888 + 30 +0.0 + 11 +6037.49999 + 21 +5131.200523 + 31 +0.0 + 0 +LINE + 5 +A41 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5174.501793 + 30 +0.0 + 11 +6074.99999 + 21 +5196.152429 + 31 +0.0 + 0 +LINE + 5 +A42 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5239.453699 + 30 +0.0 + 11 +6112.49999 + 21 +5261.104334 + 31 +0.0 + 0 +LINE + 5 +A43 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5304.405604 + 30 +0.0 + 11 +6149.99999 + 21 +5326.056239 + 31 +0.0 + 0 +LINE + 5 +A44 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5369.357509 + 30 +0.0 + 11 +6175.0 + 21 +5369.357527 + 31 +0.0 + 0 +LINE + 5 +A45 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5087.899253 + 30 +0.0 + 11 +5999.99999 + 21 +5109.549888 + 31 +0.0 + 0 +LINE + 5 +A46 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5152.851158 + 30 +0.0 + 11 +6037.49999 + 21 +5174.501793 + 31 +0.0 + 0 +LINE + 5 +A47 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5217.803064 + 30 +0.0 + 11 +6074.99999 + 21 +5239.453699 + 31 +0.0 + 0 +LINE + 5 +A48 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5282.754969 + 30 +0.0 + 11 +6112.49999 + 21 +5304.405604 + 31 +0.0 + 0 +LINE + 5 +A49 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5347.706874 + 30 +0.0 + 11 +6149.99999 + 21 +5369.357509 + 31 +0.0 + 0 +LINE + 5 +A4A + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5412.658779 + 30 +0.0 + 11 +6175.0 + 21 +5412.658797 + 31 +0.0 + 0 +LINE + 5 +A4B + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5131.200523 + 30 +0.0 + 11 +5999.99999 + 21 +5152.851158 + 31 +0.0 + 0 +LINE + 5 +A4C + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5196.152428 + 30 +0.0 + 11 +6037.49999 + 21 +5217.803064 + 31 +0.0 + 0 +LINE + 5 +A4D + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5261.104334 + 30 +0.0 + 11 +6074.99999 + 21 +5282.754969 + 31 +0.0 + 0 +LINE + 5 +A4E + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5326.056239 + 30 +0.0 + 11 +6112.49999 + 21 +5347.706874 + 31 +0.0 + 0 +LINE + 5 +A4F + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5391.008144 + 30 +0.0 + 11 +6149.99999 + 21 +5412.658779 + 31 +0.0 + 0 +LINE + 5 +A50 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5455.96005 + 30 +0.0 + 11 +6175.0 + 21 +5455.960067 + 31 +0.0 + 0 +LINE + 5 +A51 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5174.501793 + 30 +0.0 + 11 +5999.99999 + 21 +5196.152428 + 31 +0.0 + 0 +LINE + 5 +A52 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5239.453699 + 30 +0.0 + 11 +6037.49999 + 21 +5261.104334 + 31 +0.0 + 0 +LINE + 5 +A53 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5304.405604 + 30 +0.0 + 11 +6074.99999 + 21 +5326.056239 + 31 +0.0 + 0 +LINE + 5 +A54 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5369.357509 + 30 +0.0 + 11 +6112.49999 + 21 +5391.008144 + 31 +0.0 + 0 +LINE + 5 +A55 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5434.309414 + 30 +0.0 + 11 +6149.99999 + 21 +5455.96005 + 31 +0.0 + 0 +LINE + 5 +A56 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5499.26132 + 30 +0.0 + 11 +6175.0 + 21 +5499.261337 + 31 +0.0 + 0 +LINE + 5 +A57 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5217.803063 + 30 +0.0 + 11 +5999.99999 + 21 +5239.453699 + 31 +0.0 + 0 +LINE + 5 +A58 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5282.754969 + 30 +0.0 + 11 +6037.49999 + 21 +5304.405604 + 31 +0.0 + 0 +LINE + 5 +A59 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5347.706874 + 30 +0.0 + 11 +6074.99999 + 21 +5369.357509 + 31 +0.0 + 0 +LINE + 5 +A5A + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5412.658779 + 30 +0.0 + 11 +6112.49999 + 21 +5434.309414 + 31 +0.0 + 0 +LINE + 5 +A5B + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5477.610685 + 30 +0.0 + 11 +6149.99999 + 21 +5499.26132 + 31 +0.0 + 0 +LINE + 5 +A5C + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5542.56259 + 30 +0.0 + 11 +6175.0 + 21 +5542.562607 + 31 +0.0 + 0 +LINE + 5 +A5D + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5261.104334 + 30 +0.0 + 11 +5999.99999 + 21 +5282.754969 + 31 +0.0 + 0 +LINE + 5 +A5E + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5326.056239 + 30 +0.0 + 11 +6037.49999 + 21 +5347.706874 + 31 +0.0 + 0 +LINE + 5 +A5F + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5391.008144 + 30 +0.0 + 11 +6074.99999 + 21 +5412.658779 + 31 +0.0 + 0 +LINE + 5 +A60 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5455.960049 + 30 +0.0 + 11 +6112.49999 + 21 +5477.610685 + 31 +0.0 + 0 +LINE + 5 +A61 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5520.911955 + 30 +0.0 + 11 +6149.99999 + 21 +5542.56259 + 31 +0.0 + 0 +LINE + 5 +A62 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5585.86386 + 30 +0.0 + 11 +6175.0 + 21 +5585.863877 + 31 +0.0 + 0 +LINE + 5 +A63 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5304.405604 + 30 +0.0 + 11 +5999.99999 + 21 +5326.056239 + 31 +0.0 + 0 +LINE + 5 +A64 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5369.357509 + 30 +0.0 + 11 +6037.49999 + 21 +5391.008144 + 31 +0.0 + 0 +LINE + 5 +A65 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5434.309414 + 30 +0.0 + 11 +6074.99999 + 21 +5455.960049 + 31 +0.0 + 0 +LINE + 5 +A66 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5499.26132 + 30 +0.0 + 11 +6112.49999 + 21 +5520.911955 + 31 +0.0 + 0 +LINE + 5 +A67 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5564.213225 + 30 +0.0 + 11 +6149.99999 + 21 +5585.86386 + 31 +0.0 + 0 +LINE + 5 +A68 + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5629.16513 + 30 +0.0 + 11 +6175.0 + 21 +5629.165147 + 31 +0.0 + 0 +LINE + 5 +A69 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +5347.706874 + 30 +0.0 + 11 +5999.99999 + 21 +5369.357509 + 31 +0.0 + 0 +LINE + 5 +A6A + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +5412.658779 + 30 +0.0 + 11 +6037.49999 + 21 +5434.309414 + 31 +0.0 + 0 +LINE + 5 +A6B + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5477.610684 + 30 +0.0 + 11 +6074.99999 + 21 +5499.26132 + 31 +0.0 + 0 +LINE + 5 +A6C + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5542.56259 + 30 +0.0 + 11 +6112.49999 + 21 +5564.213225 + 31 +0.0 + 0 +LINE + 5 +A6D + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5607.514495 + 30 +0.0 + 11 +6149.99999 + 21 +5629.16513 + 31 +0.0 + 0 +LINE + 5 +A6E + 8 +0 + 62 + 0 + 10 +6174.99999 + 20 +5672.4664 + 30 +0.0 + 11 +6175.0 + 21 +5672.466417 + 31 +0.0 + 0 +LINE + 5 +A6F + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5391.008144 + 30 +0.0 + 11 +5999.999991 + 21 +5412.658779 + 31 +0.0 + 0 +LINE + 5 +A70 + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5455.960049 + 30 +0.0 + 11 +6037.499991 + 21 +5477.610684 + 31 +0.0 + 0 +LINE + 5 +A71 + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5520.911955 + 30 +0.0 + 11 +6074.999991 + 21 +5542.56259 + 31 +0.0 + 0 +LINE + 5 +A72 + 8 +0 + 62 + 0 + 10 +6099.999991 + 20 +5585.86386 + 30 +0.0 + 11 +6112.499991 + 21 +5607.514495 + 31 +0.0 + 0 +LINE + 5 +A73 + 8 +0 + 62 + 0 + 10 +6137.499991 + 20 +5650.815765 + 30 +0.0 + 11 +6149.999991 + 21 +5672.4664 + 31 +0.0 + 0 +LINE + 5 +A74 + 8 +0 + 62 + 0 + 10 +6174.999991 + 20 +5715.76767 + 30 +0.0 + 11 +6175.0 + 21 +5715.767687 + 31 +0.0 + 0 +LINE + 5 +A75 + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5434.309414 + 30 +0.0 + 11 +5999.999991 + 21 +5455.960049 + 31 +0.0 + 0 +LINE + 5 +A76 + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5499.261319 + 30 +0.0 + 11 +6037.499991 + 21 +5520.911955 + 31 +0.0 + 0 +LINE + 5 +A77 + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5564.213225 + 30 +0.0 + 11 +6074.999991 + 21 +5585.86386 + 31 +0.0 + 0 +LINE + 5 +A78 + 8 +0 + 62 + 0 + 10 +6099.999991 + 20 +5629.16513 + 30 +0.0 + 11 +6112.499991 + 21 +5650.815765 + 31 +0.0 + 0 +LINE + 5 +A79 + 8 +0 + 62 + 0 + 10 +6137.499991 + 20 +5694.117035 + 30 +0.0 + 11 +6149.999991 + 21 +5715.76767 + 31 +0.0 + 0 +LINE + 5 +A7A + 8 +0 + 62 + 0 + 10 +6174.999991 + 20 +5759.068941 + 30 +0.0 + 11 +6175.0 + 21 +5759.068957 + 31 +0.0 + 0 +LINE + 5 +A7B + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5477.610684 + 30 +0.0 + 11 +5999.999991 + 21 +5499.261319 + 31 +0.0 + 0 +LINE + 5 +A7C + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5542.56259 + 30 +0.0 + 11 +6037.499991 + 21 +5564.213225 + 31 +0.0 + 0 +LINE + 5 +A7D + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5607.514495 + 30 +0.0 + 11 +6074.999991 + 21 +5629.16513 + 31 +0.0 + 0 +LINE + 5 +A7E + 8 +0 + 62 + 0 + 10 +6099.999991 + 20 +5672.4664 + 30 +0.0 + 11 +6112.499991 + 21 +5694.117035 + 31 +0.0 + 0 +LINE + 5 +A7F + 8 +0 + 62 + 0 + 10 +6137.499991 + 20 +5737.418305 + 30 +0.0 + 11 +6149.999991 + 21 +5759.068941 + 31 +0.0 + 0 +LINE + 5 +A80 + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5520.911954 + 30 +0.0 + 11 +5999.999991 + 21 +5542.56259 + 31 +0.0 + 0 +LINE + 5 +A81 + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5585.86386 + 30 +0.0 + 11 +6037.499991 + 21 +5607.514495 + 31 +0.0 + 0 +LINE + 5 +A82 + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5650.815765 + 30 +0.0 + 11 +6074.999991 + 21 +5672.4664 + 31 +0.0 + 0 +LINE + 5 +A83 + 8 +0 + 62 + 0 + 10 +6099.999991 + 20 +5715.76767 + 30 +0.0 + 11 +6112.499991 + 21 +5737.418305 + 31 +0.0 + 0 +LINE + 5 +A84 + 8 +0 + 62 + 0 + 10 +6137.499991 + 20 +5780.719576 + 30 +0.0 + 11 +6142.858046 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +A85 + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5564.213225 + 30 +0.0 + 11 +5999.999991 + 21 +5585.86386 + 31 +0.0 + 0 +LINE + 5 +A86 + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5629.16513 + 30 +0.0 + 11 +6037.499991 + 21 +5650.815765 + 31 +0.0 + 0 +LINE + 5 +A87 + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5694.117035 + 30 +0.0 + 11 +6074.999991 + 21 +5715.76767 + 31 +0.0 + 0 +LINE + 5 +A88 + 8 +0 + 62 + 0 + 10 +6099.999991 + 20 +5759.06894 + 30 +0.0 + 11 +6112.499991 + 21 +5780.719576 + 31 +0.0 + 0 +LINE + 5 +A89 + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5607.514495 + 30 +0.0 + 11 +5999.999991 + 21 +5629.16513 + 31 +0.0 + 0 +LINE + 5 +A8A + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5672.4664 + 30 +0.0 + 11 +6037.499991 + 21 +5694.117035 + 31 +0.0 + 0 +LINE + 5 +A8B + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5737.418305 + 30 +0.0 + 11 +6074.999991 + 21 +5759.06894 + 31 +0.0 + 0 +LINE + 5 +A8C + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5650.815765 + 30 +0.0 + 11 +5999.999991 + 21 +5672.4664 + 31 +0.0 + 0 +LINE + 5 +A8D + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5715.76767 + 30 +0.0 + 11 +6037.499991 + 21 +5737.418305 + 31 +0.0 + 0 +LINE + 5 +A8E + 8 +0 + 62 + 0 + 10 +6062.499991 + 20 +5780.719575 + 30 +0.0 + 11 +6067.858047 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +A8F + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5694.117035 + 30 +0.0 + 11 +5999.999991 + 21 +5715.76767 + 31 +0.0 + 0 +LINE + 5 +A90 + 8 +0 + 62 + 0 + 10 +6024.999991 + 20 +5759.06894 + 30 +0.0 + 11 +6037.499991 + 21 +5780.719575 + 31 +0.0 + 0 +LINE + 5 +A91 + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5737.418305 + 30 +0.0 + 11 +5999.999991 + 21 +5759.06894 + 31 +0.0 + 0 +LINE + 5 +A92 + 8 +0 + 62 + 0 + 10 +5987.499991 + 20 +5780.719575 + 30 +0.0 + 11 +5992.858047 + 21 +5790.0 + 31 +0.0 + 0 +LINE + 5 +A93 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +4871.392902 + 30 +0.0 + 11 +5999.99999 + 21 +4893.043537 + 31 +0.0 + 0 +LINE + 5 +A94 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +4936.344808 + 30 +0.0 + 11 +6037.49999 + 21 +4957.995443 + 31 +0.0 + 0 +LINE + 5 +A95 + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +5001.296713 + 30 +0.0 + 11 +6074.99999 + 21 +5022.947348 + 31 +0.0 + 0 +LINE + 5 +A96 + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5066.248618 + 30 +0.0 + 11 +6112.49999 + 21 +5087.899253 + 31 +0.0 + 0 +LINE + 5 +A97 + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5131.200523 + 30 +0.0 + 11 +6149.99999 + 21 +5152.851159 + 31 +0.0 + 0 +LINE + 5 +A98 + 8 +0 + 62 + 0 + 10 +5987.49999 + 20 +4828.091632 + 30 +0.0 + 11 +5999.99999 + 21 +4849.742267 + 31 +0.0 + 0 +LINE + 5 +A99 + 8 +0 + 62 + 0 + 10 +6024.99999 + 20 +4893.043537 + 30 +0.0 + 11 +6037.49999 + 21 +4914.694173 + 31 +0.0 + 0 +LINE + 5 +A9A + 8 +0 + 62 + 0 + 10 +6062.49999 + 20 +4957.995443 + 30 +0.0 + 11 +6074.99999 + 21 +4979.646078 + 31 +0.0 + 0 +LINE + 5 +A9B + 8 +0 + 62 + 0 + 10 +6099.99999 + 20 +5022.947348 + 30 +0.0 + 11 +6112.49999 + 21 +5044.597983 + 31 +0.0 + 0 +LINE + 5 +A9C + 8 +0 + 62 + 0 + 10 +6137.49999 + 20 +5087.899253 + 30 +0.0 + 11 +6149.461578 + 21 +5108.617333 + 31 +0.0 + 0 +LINE + 5 +A9D + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4784.790362 + 30 +0.0 + 11 +5999.999989 + 21 +4806.440997 + 31 +0.0 + 0 +LINE + 5 +A9E + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4849.742267 + 30 +0.0 + 11 +6037.499989 + 21 +4871.392902 + 31 +0.0 + 0 +LINE + 5 +A9F + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4914.694173 + 30 +0.0 + 11 +6074.999989 + 21 +4936.344808 + 31 +0.0 + 0 +LINE + 5 +AA0 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4979.646078 + 30 +0.0 + 11 +6112.499989 + 21 +5001.296713 + 31 +0.0 + 0 +LINE + 5 +AA1 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +5044.597983 + 30 +0.0 + 11 +6148.545497 + 21 +5063.729364 + 31 +0.0 + 0 +LINE + 5 +AA2 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4741.489092 + 30 +0.0 + 11 +5999.999989 + 21 +4763.139727 + 31 +0.0 + 0 +LINE + 5 +AA3 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4806.440997 + 30 +0.0 + 11 +6037.499989 + 21 +4828.091632 + 31 +0.0 + 0 +LINE + 5 +AA4 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4871.392902 + 30 +0.0 + 11 +6074.999989 + 21 +4893.043538 + 31 +0.0 + 0 +LINE + 5 +AA5 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4936.344808 + 30 +0.0 + 11 +6112.499989 + 21 +4957.995443 + 31 +0.0 + 0 +LINE + 5 +AA6 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +5001.296713 + 30 +0.0 + 11 +6147.629416 + 21 +5018.841395 + 31 +0.0 + 0 +LINE + 5 +AA7 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4698.187822 + 30 +0.0 + 11 +5999.999989 + 21 +4719.838457 + 31 +0.0 + 0 +LINE + 5 +AA8 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4763.139727 + 30 +0.0 + 11 +6037.499989 + 21 +4784.790362 + 31 +0.0 + 0 +LINE + 5 +AA9 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4828.091632 + 30 +0.0 + 11 +6074.999989 + 21 +4849.742267 + 31 +0.0 + 0 +LINE + 5 +AAA + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4893.043538 + 30 +0.0 + 11 +6112.499989 + 21 +4914.694173 + 31 +0.0 + 0 +LINE + 5 +AAB + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4957.995443 + 30 +0.0 + 11 +6146.713335 + 21 +4973.953426 + 31 +0.0 + 0 +LINE + 5 +AAC + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4654.886552 + 30 +0.0 + 11 +5999.999989 + 21 +4676.537187 + 31 +0.0 + 0 +LINE + 5 +AAD + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4719.838457 + 30 +0.0 + 11 +6037.499989 + 21 +4741.489092 + 31 +0.0 + 0 +LINE + 5 +AAE + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4784.790362 + 30 +0.0 + 11 +6074.999989 + 21 +4806.440997 + 31 +0.0 + 0 +LINE + 5 +AAF + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4849.742267 + 30 +0.0 + 11 +6112.499989 + 21 +4871.392903 + 31 +0.0 + 0 +LINE + 5 +AB0 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4914.694173 + 30 +0.0 + 11 +6145.797254 + 21 +4929.065457 + 31 +0.0 + 0 +LINE + 5 +AB1 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4611.585281 + 30 +0.0 + 11 +5999.999989 + 21 +4633.235917 + 31 +0.0 + 0 +LINE + 5 +AB2 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4676.537187 + 30 +0.0 + 11 +6037.499989 + 21 +4698.187822 + 31 +0.0 + 0 +LINE + 5 +AB3 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4741.489092 + 30 +0.0 + 11 +6074.999989 + 21 +4763.139727 + 31 +0.0 + 0 +LINE + 5 +AB4 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4806.440997 + 30 +0.0 + 11 +6112.499989 + 21 +4828.091632 + 31 +0.0 + 0 +LINE + 5 +AB5 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4871.392903 + 30 +0.0 + 11 +6144.881173 + 21 +4884.177489 + 31 +0.0 + 0 +LINE + 5 +AB6 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4568.284011 + 30 +0.0 + 11 +5999.999989 + 21 +4589.934646 + 31 +0.0 + 0 +LINE + 5 +AB7 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4633.235917 + 30 +0.0 + 11 +6037.499989 + 21 +4654.886552 + 31 +0.0 + 0 +LINE + 5 +AB8 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4698.187822 + 30 +0.0 + 11 +6074.999989 + 21 +4719.838457 + 31 +0.0 + 0 +LINE + 5 +AB9 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4763.139727 + 30 +0.0 + 11 +6112.499989 + 21 +4784.790362 + 31 +0.0 + 0 +LINE + 5 +ABA + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4828.091632 + 30 +0.0 + 11 +6143.965092 + 21 +4839.28952 + 31 +0.0 + 0 +LINE + 5 +ABB + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4524.982741 + 30 +0.0 + 11 +5999.999989 + 21 +4546.633376 + 31 +0.0 + 0 +LINE + 5 +ABC + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4589.934646 + 30 +0.0 + 11 +6037.499989 + 21 +4611.585282 + 31 +0.0 + 0 +LINE + 5 +ABD + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4654.886552 + 30 +0.0 + 11 +6074.999989 + 21 +4676.537187 + 31 +0.0 + 0 +LINE + 5 +ABE + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4719.838457 + 30 +0.0 + 11 +6112.499989 + 21 +4741.489092 + 31 +0.0 + 0 +LINE + 5 +ABF + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4784.790362 + 30 +0.0 + 11 +6143.049011 + 21 +4794.401551 + 31 +0.0 + 0 +LINE + 5 +AC0 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4481.681471 + 30 +0.0 + 11 +5999.999989 + 21 +4503.332106 + 31 +0.0 + 0 +LINE + 5 +AC1 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4546.633376 + 30 +0.0 + 11 +6037.499989 + 21 +4568.284011 + 31 +0.0 + 0 +LINE + 5 +AC2 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4611.585282 + 30 +0.0 + 11 +6074.999989 + 21 +4633.235917 + 31 +0.0 + 0 +LINE + 5 +AC3 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4676.537187 + 30 +0.0 + 11 +6112.499989 + 21 +4698.187822 + 31 +0.0 + 0 +LINE + 5 +AC4 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4741.489092 + 30 +0.0 + 11 +6142.13293 + 21 +4749.513582 + 31 +0.0 + 0 +LINE + 5 +AC5 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4438.380201 + 30 +0.0 + 11 +5999.999989 + 21 +4460.030836 + 31 +0.0 + 0 +LINE + 5 +AC6 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4503.332106 + 30 +0.0 + 11 +6037.499989 + 21 +4524.982741 + 31 +0.0 + 0 +LINE + 5 +AC7 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4568.284011 + 30 +0.0 + 11 +6074.999989 + 21 +4589.934647 + 31 +0.0 + 0 +LINE + 5 +AC8 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4633.235917 + 30 +0.0 + 11 +6112.499989 + 21 +4654.886552 + 31 +0.0 + 0 +LINE + 5 +AC9 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4698.187822 + 30 +0.0 + 11 +6141.216849 + 21 +4704.625613 + 31 +0.0 + 0 +LINE + 5 +ACA + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4395.078931 + 30 +0.0 + 11 +5999.999989 + 21 +4416.729566 + 31 +0.0 + 0 +LINE + 5 +ACB + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4460.030836 + 30 +0.0 + 11 +6037.499989 + 21 +4481.681471 + 31 +0.0 + 0 +LINE + 5 +ACC + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4524.982741 + 30 +0.0 + 11 +6074.999989 + 21 +4546.633376 + 31 +0.0 + 0 +LINE + 5 +ACD + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4589.934647 + 30 +0.0 + 11 +6112.499989 + 21 +4611.585282 + 31 +0.0 + 0 +LINE + 5 +ACE + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4654.886552 + 30 +0.0 + 11 +6140.300768 + 21 +4659.737644 + 31 +0.0 + 0 +LINE + 5 +ACF + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4351.777661 + 30 +0.0 + 11 +5999.999989 + 21 +4373.428296 + 31 +0.0 + 0 +LINE + 5 +AD0 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4416.729566 + 30 +0.0 + 11 +6037.499989 + 21 +4438.380201 + 31 +0.0 + 0 +LINE + 5 +AD1 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4481.681471 + 30 +0.0 + 11 +6074.999989 + 21 +4503.332106 + 31 +0.0 + 0 +LINE + 5 +AD2 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4546.633376 + 30 +0.0 + 11 +6112.499989 + 21 +4568.284012 + 31 +0.0 + 0 +LINE + 5 +AD3 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4611.585282 + 30 +0.0 + 11 +6139.384687 + 21 +4614.849676 + 31 +0.0 + 0 +LINE + 5 +AD4 + 8 +0 + 62 + 0 + 10 +5987.499989 + 20 +4308.47639 + 30 +0.0 + 11 +5999.999989 + 21 +4330.127026 + 31 +0.0 + 0 +LINE + 5 +AD5 + 8 +0 + 62 + 0 + 10 +6024.999989 + 20 +4373.428296 + 30 +0.0 + 11 +6037.499989 + 21 +4395.078931 + 31 +0.0 + 0 +LINE + 5 +AD6 + 8 +0 + 62 + 0 + 10 +6062.499989 + 20 +4438.380201 + 30 +0.0 + 11 +6074.999989 + 21 +4460.030836 + 31 +0.0 + 0 +LINE + 5 +AD7 + 8 +0 + 62 + 0 + 10 +6099.999989 + 20 +4503.332106 + 30 +0.0 + 11 +6112.499989 + 21 +4524.982741 + 31 +0.0 + 0 +LINE + 5 +AD8 + 8 +0 + 62 + 0 + 10 +6137.499989 + 20 +4568.284012 + 30 +0.0 + 11 +6138.468606 + 21 +4569.961707 + 31 +0.0 + 0 +LINE + 5 +AD9 + 8 +0 + 62 + 0 + 10 +6024.999988 + 20 +4330.127026 + 30 +0.0 + 11 +6037.499988 + 21 +4351.777661 + 31 +0.0 + 0 +LINE + 5 +ADA + 8 +0 + 62 + 0 + 10 +6062.499988 + 20 +4395.078931 + 30 +0.0 + 11 +6074.999988 + 21 +4416.729566 + 31 +0.0 + 0 +LINE + 5 +ADB + 8 +0 + 62 + 0 + 10 +6099.999988 + 20 +4460.030836 + 30 +0.0 + 11 +6112.499988 + 21 +4481.681471 + 31 +0.0 + 0 +LINE + 5 +ADC + 8 +0 + 62 + 0 + 10 +6137.499988 + 20 +4524.982741 + 30 +0.0 + 11 +6137.552525 + 21 +4525.073738 + 31 +0.0 + 0 +LINE + 5 +ADD + 8 +0 + 62 + 0 + 10 +6062.499988 + 20 +4351.777661 + 30 +0.0 + 11 +6074.999988 + 21 +4373.428296 + 31 +0.0 + 0 +LINE + 5 +ADE + 8 +0 + 62 + 0 + 10 +6099.999988 + 20 +4416.729566 + 30 +0.0 + 11 +6112.499988 + 21 +4438.380201 + 31 +0.0 + 0 +LINE + 5 +ADF + 8 +0 + 62 + 0 + 10 +6099.999988 + 20 +4373.428296 + 30 +0.0 + 11 +6112.499988 + 21 +4395.078931 + 31 +0.0 + 0 +ENDBLK + 5 +AE0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D39 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D39 + 1 + + 0 +LINE + 5 +AE2 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +2851.0 + 30 +0.0 + 11 +9820.0 + 21 +4224.0 + 31 +0.0 + 0 +INSERT + 5 +AE3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +2850.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +AE4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4225.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +AE5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9776.25 + 20 +3482.8125 + 30 +0.0 + 40 +87.5 + 1 +55 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9732.5 + 21 +3537.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +AE6 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7915.0 + 20 +2850.0 + 30 +0.0 + 0 +POINT + 5 +AE7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7915.0 + 20 +4225.0 + 30 +0.0 + 0 +POINT + 5 +AE8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4225.0 + 30 +0.0 + 0 +ENDBLK + 5 +AE9 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D40 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D40 + 1 + + 0 +LINE + 5 +AEB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4226.0 + 30 +0.0 + 11 +9820.0 + 21 +4624.0 + 31 +0.0 + 0 +INSERT + 5 +AEC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4225.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +AED + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4625.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +AEE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9776.25 + 20 +4381.25 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9732.5 + 21 +4425.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +AEF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7915.0 + 20 +4225.0 + 30 +0.0 + 0 +POINT + 5 +AF0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8530.0 + 20 +4625.0 + 30 +0.0 + 0 +POINT + 5 +AF1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4625.0 + 30 +0.0 + 0 +ENDBLK + 5 +AF2 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D41 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D41 + 1 + + 0 +LINE + 5 +AF4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4626.0 + 30 +0.0 + 11 +9820.0 + 21 +4779.0 + 31 +0.0 + 0 +INSERT + 5 +AF5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4625.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +AF6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4780.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +AF7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9776.25 + 20 +4680.625 + 30 +0.0 + 40 +87.5 + 1 +4 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9732.5 + 21 +4702.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +AF8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8530.0 + 20 +4625.0 + 30 +0.0 + 0 +POINT + 5 +AF9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8555.0 + 20 +4780.0 + 30 +0.0 + 0 +POINT + 5 +AFA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4780.0 + 30 +0.0 + 0 +ENDBLK + 5 +AFB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D42 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D42 + 1 + + 0 +LINE + 5 +AFD + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4781.0 + 30 +0.0 + 11 +9820.0 + 21 +4899.0 + 31 +0.0 + 0 +INSERT + 5 +AFE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4780.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +AFF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4900.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +B00 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9776.25 + 20 +4818.125 + 30 +0.0 + 40 +87.5 + 1 +4 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9732.5 + 21 +4840.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B01 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8555.0 + 20 +4780.0 + 30 +0.0 + 0 +POINT + 5 +B02 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8535.0 + 20 +4900.0 + 30 +0.0 + 0 +POINT + 5 +B03 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4900.0 + 30 +0.0 + 0 +ENDBLK + 5 +B04 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D43 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D43 + 1 + + 0 +LINE + 5 +B06 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5966.0 + 20 +6435.0 + 30 +0.0 + 11 +6184.0 + 21 +6435.0 + 31 +0.0 + 0 +INSERT + 5 +B07 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5965.0 + 20 +6435.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +B08 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6185.0 + 20 +6435.0 + 30 +0.0 + 0 +TEXT + 5 +B09 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6053.125 + 20 +6478.75 + 30 +0.0 + 40 +87.5 + 1 +8 + 41 +0.75 + 72 + 1 + 11 +6075.0 + 21 +6522.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B0A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5965.0 + 20 +5775.0 + 30 +0.0 + 0 +POINT + 5 +B0B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6185.0 + 20 +5775.0 + 30 +0.0 + 0 +POINT + 5 +B0C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6185.0 + 20 +6435.0 + 30 +0.0 + 0 +ENDBLK + 5 +B0D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D44 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D44 + 1 + + 0 +LINE + 5 +B0F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6186.0 + 20 +6435.0 + 30 +0.0 + 11 +7124.0 + 21 +6435.0 + 31 +0.0 + 0 +INSERT + 5 +B10 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6185.0 + 20 +6435.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +B11 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7125.0 + 20 +6435.0 + 30 +0.0 + 0 +TEXT + 5 +B12 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6600.3125 + 20 +6478.75 + 30 +0.0 + 40 +87.5 + 1 +36 + 41 +0.75 + 72 + 1 + 11 +6655.0 + 21 +6522.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B13 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6185.0 + 20 +5775.0 + 30 +0.0 + 0 +POINT + 5 +B14 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7125.0 + 20 +5780.0 + 30 +0.0 + 0 +POINT + 5 +B15 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7125.0 + 20 +6435.0 + 30 +0.0 + 0 +ENDBLK + 5 +B16 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D45 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D45 + 1 + + 0 +LINE + 5 +B18 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5421.0 + 20 +1715.0 + 30 +0.0 + 11 +7919.0 + 21 +1715.0 + 31 +0.0 + 0 +INSERT + 5 +B19 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5420.0 + 20 +1715.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +B1A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7920.0 + 20 +1715.0 + 30 +0.0 + 0 +TEXT + 5 +B1B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6604.375 + 20 +1758.75 + 30 +0.0 + 40 +87.5 + 1 +100 + 41 +0.75 + 72 + 1 + 11 +6670.0 + 21 +1802.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B1C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5420.0 + 20 +2850.0 + 30 +0.0 + 0 +POINT + 5 +B1D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7920.0 + 20 +2850.0 + 30 +0.0 + 0 +POINT + 5 +B1E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7920.0 + 20 +1715.0 + 30 +0.0 + 0 +ENDBLK + 5 +B1F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D46 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D46 + 1 + + 0 +LINE + 5 +B21 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3550.0 + 20 +4661.0 + 30 +0.0 + 11 +3550.0 + 21 +5094.0 + 31 +0.0 + 0 +INSERT + 5 +B22 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3550.0 + 20 +4660.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +B23 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3550.0 + 20 +5095.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +B24 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3506.25 + 20 +4833.75 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +3462.5 + 21 +4877.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B25 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6220.0 + 20 +4660.0 + 30 +0.0 + 0 +POINT + 5 +B26 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6220.0 + 20 +5095.0 + 30 +0.0 + 0 +POINT + 5 +B27 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3550.0 + 20 +5095.0 + 30 +0.0 + 0 +ENDBLK + 5 +B28 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D47 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D47 + 1 + + 0 +LINE + 5 +B2A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7126.0 + 20 +6435.0 + 30 +0.0 + 11 +7159.0 + 21 +6435.0 + 31 +0.0 + 0 +INSERT + 5 +B2B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7125.0 + 20 +6435.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +B2C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7160.0 + 20 +6435.0 + 30 +0.0 + 0 +TEXT + 5 +B2D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7204.0625 + 20 +6478.75 + 30 +0.0 + 40 +87.5 + 1 +1 + 41 +0.75 + 72 + 1 + 11 +7215.0 + 21 +6522.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B2E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7125.0 + 20 +5780.0 + 30 +0.0 + 0 +POINT + 5 +B2F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7160.0 + 20 +5785.0 + 30 +0.0 + 0 +POINT + 5 +B30 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7160.0 + 20 +6435.0 + 30 +0.0 + 0 +ENDBLK + 5 +B31 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D48 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D48 + 1 + + 0 +LINE + 5 +B33 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4901.0 + 30 +0.0 + 11 +9820.0 + 21 +4959.0 + 31 +0.0 + 0 +INSERT + 5 +B34 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4900.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +B35 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9820.0 + 20 +4960.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +B36 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9776.25 + 20 +4988.125 + 30 +0.0 + 40 +87.5 + 1 +2 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +9732.5 + 21 +5010.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +B37 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8535.0 + 20 +4900.0 + 30 +0.0 + 0 +POINT + 5 +B38 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8540.0 + 20 +4960.0 + 30 +0.0 + 0 +POINT + 5 +B39 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9820.0 + 20 +4960.0 + 30 +0.0 + 0 +ENDBLK + 5 +B3A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X51 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X51 + 1 + + 0 +LINE + 5 +B3C + 8 +0 + 62 + 0 + 10 +14124.696962 + 20 +8185.0 + 30 +0.0 + 11 +14924.696962 + 21 +8985.0 + 31 +0.0 + 0 +LINE + 5 +B3D + 8 +0 + 62 + 0 + 10 +13952.375735 + 20 +8755.140893 + 30 +0.0 + 11 +14182.234842 + 21 +8985.0 + 31 +0.0 + 0 +LINE + 5 +B3E + 8 +0 + 62 + 0 + 10 +14867.159082 + 20 +8185.0 + 30 +0.0 + 11 +15667.159082 + 21 +8985.0 + 31 +0.0 + 0 +LINE + 5 +B3F + 8 +0 + 62 + 0 + 10 +15609.621202 + 20 +8185.0 + 30 +0.0 + 11 +16409.621202 + 21 +8985.0 + 31 +0.0 + 0 +LINE + 5 +B40 + 8 +0 + 62 + 0 + 10 +16352.083323 + 20 +8185.0 + 30 +0.0 + 11 +16564.992137 + 21 +8397.908815 + 31 +0.0 + 0 +LINE + 5 +B41 + 8 +0 + 62 + 0 + 10 +14495.928021 + 20 +8185.0 + 30 +0.0 + 11 +14663.626874 + 21 +8352.698853 + 31 +0.0 + 0 +LINE + 5 +B42 + 8 +0 + 62 + 0 + 10 +14756.434639 + 20 +8445.506618 + 30 +0.0 + 11 +14942.050169 + 21 +8631.122148 + 31 +0.0 + 0 +LINE + 5 +B43 + 8 +0 + 62 + 0 + 10 +15034.857934 + 20 +8723.929913 + 30 +0.0 + 11 +15220.473464 + 21 +8909.545443 + 31 +0.0 + 0 +LINE + 5 +B44 + 8 +0 + 62 + 0 + 10 +13952.375735 + 20 +8383.909833 + 30 +0.0 + 11 +14013.972519 + 21 +8445.506618 + 31 +0.0 + 0 +LINE + 5 +B45 + 8 +0 + 62 + 0 + 10 +14106.780284 + 20 +8538.314383 + 30 +0.0 + 11 +14292.395814 + 21 +8723.929913 + 31 +0.0 + 0 +LINE + 5 +B46 + 8 +0 + 62 + 0 + 10 +14385.203579 + 20 +8816.737678 + 30 +0.0 + 11 +14553.465901 + 21 +8985.0 + 31 +0.0 + 0 +LINE + 5 +B47 + 8 +0 + 62 + 0 + 10 +15238.390142 + 20 +8185.0 + 30 +0.0 + 11 +15313.281229 + 21 +8259.891088 + 31 +0.0 + 0 +LINE + 5 +B48 + 8 +0 + 62 + 0 + 10 +15406.088994 + 20 +8352.698853 + 30 +0.0 + 11 +15591.704525 + 21 +8538.314383 + 31 +0.0 + 0 +LINE + 5 +B49 + 8 +0 + 62 + 0 + 10 +15684.51229 + 20 +8631.122148 + 30 +0.0 + 11 +15870.12782 + 21 +8816.737678 + 31 +0.0 + 0 +LINE + 5 +B4A + 8 +0 + 62 + 0 + 10 +15962.935585 + 20 +8909.545443 + 30 +0.0 + 11 +16038.390142 + 21 +8985.0 + 31 +0.0 + 0 +LINE + 5 +B4B + 8 +0 + 62 + 0 + 10 +16055.74335 + 20 +8259.891088 + 30 +0.0 + 11 +16241.35888 + 21 +8445.506618 + 31 +0.0 + 0 +LINE + 5 +B4C + 8 +0 + 62 + 0 + 10 +16334.166645 + 20 +8538.314383 + 30 +0.0 + 11 +16519.782175 + 21 +8723.929913 + 31 +0.0 + 0 +ENDBLK + 5 +B4D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X54 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X54 + 1 + + 0 +LINE + 5 +B4F + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9206.932534 + 30 +0.0 + 11 +14953.125 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +B50 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9206.932534 + 30 +0.0 + 11 +15000.0 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +B51 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9206.932534 + 30 +0.0 + 11 +15628.125 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +B52 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9206.932534 + 30 +0.0 + 11 +15684.375 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +B53 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9206.932534 + 30 +0.0 + 11 +15725.0 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +B54 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9223.17051 + 30 +0.0 + 11 +14925.0 + 21 +9223.17051 + 31 +0.0 + 0 +LINE + 5 +B55 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9223.17051 + 30 +0.0 + 11 +14981.25 + 21 +9223.17051 + 31 +0.0 + 0 +LINE + 5 +B56 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9223.17051 + 30 +0.0 + 11 +15656.25 + 21 +9223.17051 + 31 +0.0 + 0 +LINE + 5 +B57 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9223.17051 + 30 +0.0 + 11 +15712.5 + 21 +9223.17051 + 31 +0.0 + 0 +LINE + 5 +B58 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9239.408486 + 30 +0.0 + 11 +14953.125 + 21 +9239.408486 + 31 +0.0 + 0 +LINE + 5 +B59 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9239.408486 + 30 +0.0 + 11 +15000.0 + 21 +9239.408486 + 31 +0.0 + 0 +LINE + 5 +B5A + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9239.408486 + 30 +0.0 + 11 +15628.125 + 21 +9239.408486 + 31 +0.0 + 0 +LINE + 5 +B5B + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9239.408486 + 30 +0.0 + 11 +15684.375 + 21 +9239.408486 + 31 +0.0 + 0 +LINE + 5 +B5C + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9239.408486 + 30 +0.0 + 11 +15725.0 + 21 +9239.408486 + 31 +0.0 + 0 +LINE + 5 +B5D + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9255.646463 + 30 +0.0 + 11 +14925.0 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +B5E + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9255.646463 + 30 +0.0 + 11 +14981.25 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +B5F + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9255.646463 + 30 +0.0 + 11 +15656.25 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +B60 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9255.646463 + 30 +0.0 + 11 +15712.5 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +B61 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9271.884439 + 30 +0.0 + 11 +14953.125 + 21 +9271.884439 + 31 +0.0 + 0 +LINE + 5 +B62 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9271.884439 + 30 +0.0 + 11 +15000.0 + 21 +9271.884439 + 31 +0.0 + 0 +LINE + 5 +B63 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9271.884439 + 30 +0.0 + 11 +15628.125 + 21 +9271.884439 + 31 +0.0 + 0 +LINE + 5 +B64 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9271.884439 + 30 +0.0 + 11 +15684.375 + 21 +9271.884439 + 31 +0.0 + 0 +LINE + 5 +B65 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9271.884439 + 30 +0.0 + 11 +15725.0 + 21 +9271.884439 + 31 +0.0 + 0 +LINE + 5 +B66 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9288.122415 + 30 +0.0 + 11 +14925.0 + 21 +9288.122415 + 31 +0.0 + 0 +LINE + 5 +B67 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9288.122415 + 30 +0.0 + 11 +14981.25 + 21 +9288.122415 + 31 +0.0 + 0 +LINE + 5 +B68 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9288.122415 + 30 +0.0 + 11 +15656.25 + 21 +9288.122415 + 31 +0.0 + 0 +LINE + 5 +B69 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9288.122415 + 30 +0.0 + 11 +15712.5 + 21 +9288.122415 + 31 +0.0 + 0 +LINE + 5 +B6A + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9304.360391 + 30 +0.0 + 11 +14953.125 + 21 +9304.360391 + 31 +0.0 + 0 +LINE + 5 +B6B + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9304.360391 + 30 +0.0 + 11 +15000.0 + 21 +9304.360391 + 31 +0.0 + 0 +LINE + 5 +B6C + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9304.360391 + 30 +0.0 + 11 +15628.125 + 21 +9304.360391 + 31 +0.0 + 0 +LINE + 5 +B6D + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9304.360391 + 30 +0.0 + 11 +15684.375 + 21 +9304.360391 + 31 +0.0 + 0 +LINE + 5 +B6E + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9304.360391 + 30 +0.0 + 11 +15725.0 + 21 +9304.360391 + 31 +0.0 + 0 +LINE + 5 +B6F + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9320.598368 + 30 +0.0 + 11 +14925.0 + 21 +9320.598368 + 31 +0.0 + 0 +LINE + 5 +B70 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9320.598368 + 30 +0.0 + 11 +14981.25 + 21 +9320.598368 + 31 +0.0 + 0 +LINE + 5 +B71 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9320.598368 + 30 +0.0 + 11 +15656.25 + 21 +9320.598368 + 31 +0.0 + 0 +LINE + 5 +B72 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9320.598368 + 30 +0.0 + 11 +15712.5 + 21 +9320.598368 + 31 +0.0 + 0 +LINE + 5 +B73 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9336.836344 + 30 +0.0 + 11 +14953.125 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +B74 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9336.836344 + 30 +0.0 + 11 +15000.0 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +B75 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9336.836344 + 30 +0.0 + 11 +15628.125 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +B76 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9336.836344 + 30 +0.0 + 11 +15684.375 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +B77 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9336.836344 + 30 +0.0 + 11 +15725.0 + 21 +9336.836344 + 31 +0.0 + 0 +LINE + 5 +B78 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9353.07432 + 30 +0.0 + 11 +14925.0 + 21 +9353.07432 + 31 +0.0 + 0 +LINE + 5 +B79 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9353.07432 + 30 +0.0 + 11 +14981.25 + 21 +9353.07432 + 31 +0.0 + 0 +LINE + 5 +B7A + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9353.07432 + 30 +0.0 + 11 +15656.25 + 21 +9353.07432 + 31 +0.0 + 0 +LINE + 5 +B7B + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9353.07432 + 30 +0.0 + 11 +15712.5 + 21 +9353.07432 + 31 +0.0 + 0 +LINE + 5 +B7C + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9369.312296 + 30 +0.0 + 11 +14953.125 + 21 +9369.312296 + 31 +0.0 + 0 +LINE + 5 +B7D + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9369.312296 + 30 +0.0 + 11 +15000.0 + 21 +9369.312296 + 31 +0.0 + 0 +LINE + 5 +B7E + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9369.312296 + 30 +0.0 + 11 +15628.125 + 21 +9369.312296 + 31 +0.0 + 0 +LINE + 5 +B7F + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9369.312296 + 30 +0.0 + 11 +15684.375 + 21 +9369.312296 + 31 +0.0 + 0 +LINE + 5 +B80 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9369.312296 + 30 +0.0 + 11 +15725.0 + 21 +9369.312296 + 31 +0.0 + 0 +LINE + 5 +B81 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9385.550273 + 30 +0.0 + 11 +14925.0 + 21 +9385.550273 + 31 +0.0 + 0 +LINE + 5 +B82 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9385.550273 + 30 +0.0 + 11 +14981.25 + 21 +9385.550273 + 31 +0.0 + 0 +LINE + 5 +B83 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9385.550273 + 30 +0.0 + 11 +15656.25 + 21 +9385.550273 + 31 +0.0 + 0 +LINE + 5 +B84 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9385.550273 + 30 +0.0 + 11 +15712.5 + 21 +9385.550273 + 31 +0.0 + 0 +LINE + 5 +B85 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9401.788249 + 30 +0.0 + 11 +14953.125 + 21 +9401.788249 + 31 +0.0 + 0 +LINE + 5 +B86 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9401.788249 + 30 +0.0 + 11 +15000.0 + 21 +9401.788249 + 31 +0.0 + 0 +LINE + 5 +B87 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9401.788249 + 30 +0.0 + 11 +15628.125 + 21 +9401.788249 + 31 +0.0 + 0 +LINE + 5 +B88 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9401.788249 + 30 +0.0 + 11 +15684.375 + 21 +9401.788249 + 31 +0.0 + 0 +LINE + 5 +B89 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9401.788249 + 30 +0.0 + 11 +15725.0 + 21 +9401.788249 + 31 +0.0 + 0 +LINE + 5 +B8A + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9418.026225 + 30 +0.0 + 11 +14925.0 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +B8B + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9418.026225 + 30 +0.0 + 11 +14981.25 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +B8C + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9418.026225 + 30 +0.0 + 11 +15656.25 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +B8D + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9418.026225 + 30 +0.0 + 11 +15712.5 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +B8E + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9434.264201 + 30 +0.0 + 11 +14953.125 + 21 +9434.264201 + 31 +0.0 + 0 +LINE + 5 +B8F + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9434.264201 + 30 +0.0 + 11 +15000.0 + 21 +9434.264201 + 31 +0.0 + 0 +LINE + 5 +B90 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9434.264201 + 30 +0.0 + 11 +15628.125 + 21 +9434.264201 + 31 +0.0 + 0 +LINE + 5 +B91 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9434.264201 + 30 +0.0 + 11 +15684.375 + 21 +9434.264201 + 31 +0.0 + 0 +LINE + 5 +B92 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9434.264201 + 30 +0.0 + 11 +15725.0 + 21 +9434.264201 + 31 +0.0 + 0 +LINE + 5 +B93 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9190.694558 + 30 +0.0 + 11 +14925.0 + 21 +9190.694558 + 31 +0.0 + 0 +LINE + 5 +B94 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9190.694558 + 30 +0.0 + 11 +14981.25 + 21 +9190.694558 + 31 +0.0 + 0 +LINE + 5 +B95 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9190.694558 + 30 +0.0 + 11 +15656.25 + 21 +9190.694558 + 31 +0.0 + 0 +LINE + 5 +B96 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9190.694558 + 30 +0.0 + 11 +15712.5 + 21 +9190.694558 + 31 +0.0 + 0 +LINE + 5 +B97 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9174.456581 + 30 +0.0 + 11 +14953.125 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +B98 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9174.456581 + 30 +0.0 + 11 +15000.0 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +B99 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9174.456581 + 30 +0.0 + 11 +15628.125 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +B9A + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9174.456581 + 30 +0.0 + 11 +15684.375 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +B9B + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9174.456581 + 30 +0.0 + 11 +15725.0 + 21 +9174.456581 + 31 +0.0 + 0 +LINE + 5 +B9C + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9158.218605 + 30 +0.0 + 11 +14925.0 + 21 +9158.218605 + 31 +0.0 + 0 +LINE + 5 +B9D + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9158.218605 + 30 +0.0 + 11 +14981.25 + 21 +9158.218605 + 31 +0.0 + 0 +LINE + 5 +B9E + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9158.218605 + 30 +0.0 + 11 +15656.25 + 21 +9158.218605 + 31 +0.0 + 0 +LINE + 5 +B9F + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9158.218605 + 30 +0.0 + 11 +15712.5 + 21 +9158.218605 + 31 +0.0 + 0 +LINE + 5 +BA0 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9141.980629 + 30 +0.0 + 11 +14953.125 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +BA1 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9141.980629 + 30 +0.0 + 11 +15000.0 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +BA2 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9141.980629 + 30 +0.0 + 11 +15628.125 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +BA3 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9141.980629 + 30 +0.0 + 11 +15684.375 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +BA4 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9141.980629 + 30 +0.0 + 11 +15725.0 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +BA5 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9125.742653 + 30 +0.0 + 11 +14925.0 + 21 +9125.742653 + 31 +0.0 + 0 +LINE + 5 +BA6 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9125.742653 + 30 +0.0 + 11 +14981.25 + 21 +9125.742653 + 31 +0.0 + 0 +LINE + 5 +BA7 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9125.742653 + 30 +0.0 + 11 +15656.25 + 21 +9125.742653 + 31 +0.0 + 0 +LINE + 5 +BA8 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9125.742653 + 30 +0.0 + 11 +15712.5 + 21 +9125.742653 + 31 +0.0 + 0 +LINE + 5 +BA9 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9109.504676 + 30 +0.0 + 11 +14953.125 + 21 +9109.504676 + 31 +0.0 + 0 +LINE + 5 +BAA + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9109.504676 + 30 +0.0 + 11 +15000.0 + 21 +9109.504676 + 31 +0.0 + 0 +LINE + 5 +BAB + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9109.504676 + 30 +0.0 + 11 +15628.125 + 21 +9109.504676 + 31 +0.0 + 0 +LINE + 5 +BAC + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9109.504676 + 30 +0.0 + 11 +15684.375 + 21 +9109.504676 + 31 +0.0 + 0 +LINE + 5 +BAD + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9109.504676 + 30 +0.0 + 11 +15725.0 + 21 +9109.504676 + 31 +0.0 + 0 +LINE + 5 +BAE + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9093.2667 + 30 +0.0 + 11 +14925.0 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +BAF + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9093.2667 + 30 +0.0 + 11 +14981.25 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +BB0 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9093.2667 + 30 +0.0 + 11 +15656.25 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +BB1 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9093.2667 + 30 +0.0 + 11 +15712.5 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +BB2 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9077.028724 + 30 +0.0 + 11 +14953.125 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +BB3 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9077.028724 + 30 +0.0 + 11 +15000.0 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +BB4 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9077.028724 + 30 +0.0 + 11 +15628.125 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +BB5 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9077.028724 + 30 +0.0 + 11 +15684.375 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +BB6 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9077.028724 + 30 +0.0 + 11 +15725.0 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +BB7 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9060.790748 + 30 +0.0 + 11 +14925.0 + 21 +9060.790748 + 31 +0.0 + 0 +LINE + 5 +BB8 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9060.790748 + 30 +0.0 + 11 +14981.25 + 21 +9060.790748 + 31 +0.0 + 0 +LINE + 5 +BB9 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9060.790748 + 30 +0.0 + 11 +15656.25 + 21 +9060.790748 + 31 +0.0 + 0 +LINE + 5 +BBA + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9060.790748 + 30 +0.0 + 11 +15712.5 + 21 +9060.790748 + 31 +0.0 + 0 +LINE + 5 +BBB + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9044.552771 + 30 +0.0 + 11 +14953.125 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +BBC + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9044.552771 + 30 +0.0 + 11 +15000.0 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +BBD + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9044.552771 + 30 +0.0 + 11 +15628.125 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +BBE + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9044.552771 + 30 +0.0 + 11 +15684.375 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +BBF + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9044.552771 + 30 +0.0 + 11 +15725.0 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +BC0 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +9028.314795 + 30 +0.0 + 11 +14925.0 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +BC1 + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +9028.314795 + 30 +0.0 + 11 +14981.25 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +BC2 + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +9028.314795 + 30 +0.0 + 11 +15656.25 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +BC3 + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +9028.314795 + 30 +0.0 + 11 +15712.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +BC4 + 8 +0 + 62 + 0 + 10 +14934.375 + 20 +9012.076819 + 30 +0.0 + 11 +14953.125 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +BC5 + 8 +0 + 62 + 0 + 10 +14990.625 + 20 +9012.076819 + 30 +0.0 + 11 +15000.0 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +BC6 + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9012.076819 + 30 +0.0 + 11 +15628.125 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +BC7 + 8 +0 + 62 + 0 + 10 +15665.625 + 20 +9012.076819 + 30 +0.0 + 11 +15684.375 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +BC8 + 8 +0 + 62 + 0 + 10 +15721.875 + 20 +9012.076819 + 30 +0.0 + 11 +15725.0 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +BC9 + 8 +0 + 62 + 0 + 10 +14906.25 + 20 +8995.838843 + 30 +0.0 + 11 +14925.0 + 21 +8995.838843 + 31 +0.0 + 0 +LINE + 5 +BCA + 8 +0 + 62 + 0 + 10 +14962.5 + 20 +8995.838843 + 30 +0.0 + 11 +14981.25 + 21 +8995.838843 + 31 +0.0 + 0 +LINE + 5 +BCB + 8 +0 + 62 + 0 + 10 +15637.5 + 20 +8995.838843 + 30 +0.0 + 11 +15656.25 + 21 +8995.838843 + 31 +0.0 + 0 +LINE + 5 +BCC + 8 +0 + 62 + 0 + 10 +15693.75 + 20 +8995.838843 + 30 +0.0 + 11 +15712.5 + 21 +8995.838843 + 31 +0.0 + 0 +LINE + 5 +BCD + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9434.264204 + 30 +0.0 + 11 +14990.200121 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +BCE + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9401.788251 + 30 +0.0 + 11 +14981.249933 + 21 +9418.026228 + 31 +0.0 + 0 +LINE + 5 +BCF + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9369.312299 + 30 +0.0 + 11 +14981.249933 + 21 +9385.550275 + 31 +0.0 + 0 +LINE + 5 +BD0 + 8 +0 + 62 + 0 + 10 +14962.499933 + 20 +9418.026228 + 30 +0.0 + 11 +14953.124933 + 21 +9434.264204 + 31 +0.0 + 0 +LINE + 5 +BD1 + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9336.836346 + 30 +0.0 + 11 +14981.249933 + 21 +9353.074322 + 31 +0.0 + 0 +LINE + 5 +BD2 + 8 +0 + 62 + 0 + 10 +14962.499933 + 20 +9385.550275 + 30 +0.0 + 11 +14953.124933 + 21 +9401.788251 + 31 +0.0 + 0 +LINE + 5 +BD3 + 8 +0 + 62 + 0 + 10 +14934.374933 + 20 +9434.264204 + 30 +0.0 + 11 +14933.950121 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +BD4 + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9304.360393 + 30 +0.0 + 11 +14981.249933 + 21 +9320.59837 + 31 +0.0 + 0 +LINE + 5 +BD5 + 8 +0 + 62 + 0 + 10 +14962.499933 + 20 +9353.074322 + 30 +0.0 + 11 +14953.124933 + 21 +9369.312299 + 31 +0.0 + 0 +LINE + 5 +BD6 + 8 +0 + 62 + 0 + 10 +14934.374933 + 20 +9401.788251 + 30 +0.0 + 11 +14924.999933 + 21 +9418.026228 + 31 +0.0 + 0 +LINE + 5 +BD7 + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9271.884441 + 30 +0.0 + 11 +14981.249933 + 21 +9288.122417 + 31 +0.0 + 0 +LINE + 5 +BD8 + 8 +0 + 62 + 0 + 10 +14962.499933 + 20 +9320.59837 + 30 +0.0 + 11 +14953.124933 + 21 +9336.836346 + 31 +0.0 + 0 +LINE + 5 +BD9 + 8 +0 + 62 + 0 + 10 +14934.374933 + 20 +9369.312299 + 30 +0.0 + 11 +14924.999933 + 21 +9385.550275 + 31 +0.0 + 0 +LINE + 5 +BDA + 8 +0 + 62 + 0 + 10 +14906.249933 + 20 +9418.026228 + 30 +0.0 + 11 +14900.0 + 21 +9428.85143 + 31 +0.0 + 0 +LINE + 5 +BDB + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9239.408488 + 30 +0.0 + 11 +14981.249933 + 21 +9255.646464 + 31 +0.0 + 0 +LINE + 5 +BDC + 8 +0 + 62 + 0 + 10 +14962.499933 + 20 +9288.122417 + 30 +0.0 + 11 +14953.124933 + 21 +9304.360393 + 31 +0.0 + 0 +LINE + 5 +BDD + 8 +0 + 62 + 0 + 10 +14934.374933 + 20 +9336.836346 + 30 +0.0 + 11 +14924.999933 + 21 +9353.074322 + 31 +0.0 + 0 +LINE + 5 +BDE + 8 +0 + 62 + 0 + 10 +14906.249933 + 20 +9385.550275 + 30 +0.0 + 11 +14900.0 + 21 +9396.375477 + 31 +0.0 + 0 +LINE + 5 +BDF + 8 +0 + 62 + 0 + 10 +14990.624933 + 20 +9206.932536 + 30 +0.0 + 11 +14981.249933 + 21 +9223.170512 + 31 +0.0 + 0 +LINE + 5 +BE0 + 8 +0 + 62 + 0 + 10 +14962.499933 + 20 +9255.646465 + 30 +0.0 + 11 +14953.124933 + 21 +9271.884441 + 31 +0.0 + 0 +LINE + 5 +BE1 + 8 +0 + 62 + 0 + 10 +14934.374933 + 20 +9304.360393 + 30 +0.0 + 11 +14924.999933 + 21 +9320.59837 + 31 +0.0 + 0 +LINE + 5 +BE2 + 8 +0 + 62 + 0 + 10 +14906.249933 + 20 +9353.074322 + 30 +0.0 + 11 +14900.0 + 21 +9363.899525 + 31 +0.0 + 0 +LINE + 5 +BE3 + 8 +0 + 62 + 0 + 10 +14990.624934 + 20 +9174.456583 + 30 +0.0 + 11 +14981.249934 + 21 +9190.694559 + 31 +0.0 + 0 +LINE + 5 +BE4 + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9223.170512 + 30 +0.0 + 11 +14953.124934 + 21 +9239.408488 + 31 +0.0 + 0 +LINE + 5 +BE5 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9271.884441 + 30 +0.0 + 11 +14924.999934 + 21 +9288.122417 + 31 +0.0 + 0 +LINE + 5 +BE6 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9320.59837 + 30 +0.0 + 11 +14900.0 + 21 +9331.423572 + 31 +0.0 + 0 +LINE + 5 +BE7 + 8 +0 + 62 + 0 + 10 +14990.624934 + 20 +9141.98063 + 30 +0.0 + 11 +14981.249934 + 21 +9158.218607 + 31 +0.0 + 0 +LINE + 5 +BE8 + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9190.694559 + 30 +0.0 + 11 +14953.124934 + 21 +9206.932536 + 31 +0.0 + 0 +LINE + 5 +BE9 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9239.408488 + 30 +0.0 + 11 +14924.999934 + 21 +9255.646465 + 31 +0.0 + 0 +LINE + 5 +BEA + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9288.122417 + 30 +0.0 + 11 +14900.0 + 21 +9298.94762 + 31 +0.0 + 0 +LINE + 5 +BEB + 8 +0 + 62 + 0 + 10 +14990.624934 + 20 +9109.504678 + 30 +0.0 + 11 +14981.249934 + 21 +9125.742654 + 31 +0.0 + 0 +LINE + 5 +BEC + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9158.218607 + 30 +0.0 + 11 +14953.124934 + 21 +9174.456583 + 31 +0.0 + 0 +LINE + 5 +BED + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9206.932536 + 30 +0.0 + 11 +14924.999934 + 21 +9223.170512 + 31 +0.0 + 0 +LINE + 5 +BEE + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9255.646465 + 30 +0.0 + 11 +14900.0 + 21 +9266.471667 + 31 +0.0 + 0 +LINE + 5 +BEF + 8 +0 + 62 + 0 + 10 +14990.624934 + 20 +9077.028725 + 30 +0.0 + 11 +14981.249934 + 21 +9093.266701 + 31 +0.0 + 0 +LINE + 5 +BF0 + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9125.742654 + 30 +0.0 + 11 +14953.124934 + 21 +9141.98063 + 31 +0.0 + 0 +LINE + 5 +BF1 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9174.456583 + 30 +0.0 + 11 +14924.999934 + 21 +9190.694559 + 31 +0.0 + 0 +LINE + 5 +BF2 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9223.170512 + 30 +0.0 + 11 +14900.0 + 21 +9233.995715 + 31 +0.0 + 0 +LINE + 5 +BF3 + 8 +0 + 62 + 0 + 10 +14990.624934 + 20 +9044.552773 + 30 +0.0 + 11 +14981.249934 + 21 +9060.790749 + 31 +0.0 + 0 +LINE + 5 +BF4 + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9093.266701 + 30 +0.0 + 11 +14953.124934 + 21 +9109.504678 + 31 +0.0 + 0 +LINE + 5 +BF5 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9141.98063 + 30 +0.0 + 11 +14924.999934 + 21 +9158.218607 + 31 +0.0 + 0 +LINE + 5 +BF6 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9190.694559 + 30 +0.0 + 11 +14900.0 + 21 +9201.519762 + 31 +0.0 + 0 +LINE + 5 +BF7 + 8 +0 + 62 + 0 + 10 +14990.624934 + 20 +9012.07682 + 30 +0.0 + 11 +14981.249934 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +BF8 + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9060.790749 + 30 +0.0 + 11 +14953.124934 + 21 +9077.028725 + 31 +0.0 + 0 +LINE + 5 +BF9 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9109.504678 + 30 +0.0 + 11 +14924.999934 + 21 +9125.742654 + 31 +0.0 + 0 +LINE + 5 +BFA + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9158.218607 + 30 +0.0 + 11 +14900.0 + 21 +9169.04381 + 31 +0.0 + 0 +LINE + 5 +BFB + 8 +0 + 62 + 0 + 10 +14987.507743 + 20 +8985.0 + 30 +0.0 + 11 +14981.249934 + 21 +8995.838844 + 31 +0.0 + 0 +LINE + 5 +BFC + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +9028.314796 + 30 +0.0 + 11 +14953.124934 + 21 +9044.552773 + 31 +0.0 + 0 +LINE + 5 +BFD + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9077.028725 + 30 +0.0 + 11 +14924.999934 + 21 +9093.266702 + 31 +0.0 + 0 +LINE + 5 +BFE + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9125.742654 + 30 +0.0 + 11 +14900.0 + 21 +9136.567857 + 31 +0.0 + 0 +LINE + 5 +BFF + 8 +0 + 62 + 0 + 10 +14962.499934 + 20 +8995.838844 + 30 +0.0 + 11 +14953.124934 + 21 +9012.07682 + 31 +0.0 + 0 +LINE + 5 +C00 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9044.552773 + 30 +0.0 + 11 +14924.999934 + 21 +9060.790749 + 31 +0.0 + 0 +LINE + 5 +C01 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9093.266702 + 30 +0.0 + 11 +14900.0 + 21 +9104.091905 + 31 +0.0 + 0 +LINE + 5 +C02 + 8 +0 + 62 + 0 + 10 +14934.374934 + 20 +9012.07682 + 30 +0.0 + 11 +14924.999934 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +C03 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9060.790749 + 30 +0.0 + 11 +14900.0 + 21 +9071.615952 + 31 +0.0 + 0 +LINE + 5 +C04 + 8 +0 + 62 + 0 + 10 +14931.257743 + 20 +8985.0 + 30 +0.0 + 11 +14924.999934 + 21 +8995.838844 + 31 +0.0 + 0 +LINE + 5 +C05 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +9028.314796 + 30 +0.0 + 11 +14900.0 + 21 +9039.14 + 31 +0.0 + 0 +LINE + 5 +C06 + 8 +0 + 62 + 0 + 10 +14906.249934 + 20 +8995.838844 + 30 +0.0 + 11 +14900.0 + 21 +9006.664047 + 31 +0.0 + 0 +LINE + 5 +C07 + 8 +0 + 62 + 0 + 10 +15637.499932 + 20 +8995.838842 + 30 +0.0 + 11 +15628.124932 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +C08 + 8 +0 + 62 + 0 + 10 +15662.50774 + 20 +8985.0 + 30 +0.0 + 11 +15656.249932 + 21 +8995.838842 + 31 +0.0 + 0 +LINE + 5 +C09 + 8 +0 + 62 + 0 + 10 +15637.499932 + 20 +9028.314795 + 30 +0.0 + 11 +15628.124932 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +C0A + 8 +0 + 62 + 0 + 10 +15665.624932 + 20 +9012.076819 + 30 +0.0 + 11 +15656.249932 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +C0B + 8 +0 + 62 + 0 + 10 +15637.499932 + 20 +9060.790748 + 30 +0.0 + 11 +15628.124932 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +C0C + 8 +0 + 62 + 0 + 10 +15693.749932 + 20 +8995.838842 + 30 +0.0 + 11 +15684.374932 + 21 +9012.076819 + 31 +0.0 + 0 +LINE + 5 +C0D + 8 +0 + 62 + 0 + 10 +15665.624932 + 20 +9044.552771 + 30 +0.0 + 11 +15656.249932 + 21 +9060.790748 + 31 +0.0 + 0 +LINE + 5 +C0E + 8 +0 + 62 + 0 + 10 +15637.499932 + 20 +9093.2667 + 30 +0.0 + 11 +15628.124932 + 21 +9109.504677 + 31 +0.0 + 0 +LINE + 5 +C0F + 8 +0 + 62 + 0 + 10 +15718.75774 + 20 +8985.0 + 30 +0.0 + 11 +15712.499931 + 21 +8995.838842 + 31 +0.0 + 0 +LINE + 5 +C10 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9028.314795 + 30 +0.0 + 11 +15684.374931 + 21 +9044.552771 + 31 +0.0 + 0 +LINE + 5 +C11 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9077.028724 + 30 +0.0 + 11 +15656.249931 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +C12 + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9125.742653 + 30 +0.0 + 11 +15628.124931 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +C13 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9012.076819 + 30 +0.0 + 11 +15712.499931 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +C14 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9060.790747 + 30 +0.0 + 11 +15684.374931 + 21 +9077.028724 + 31 +0.0 + 0 +LINE + 5 +C15 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9109.504676 + 30 +0.0 + 11 +15656.249931 + 21 +9125.742653 + 31 +0.0 + 0 +LINE + 5 +C16 + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9158.218605 + 30 +0.0 + 11 +15628.124931 + 21 +9174.456582 + 31 +0.0 + 0 +LINE + 5 +C17 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9044.552771 + 30 +0.0 + 11 +15712.499931 + 21 +9060.790747 + 31 +0.0 + 0 +LINE + 5 +C18 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9093.2667 + 30 +0.0 + 11 +15684.374931 + 21 +9109.504676 + 31 +0.0 + 0 +LINE + 5 +C19 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9141.980629 + 30 +0.0 + 11 +15656.249931 + 21 +9158.218605 + 31 +0.0 + 0 +LINE + 5 +C1A + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9190.694558 + 30 +0.0 + 11 +15628.124931 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +C1B + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9077.028724 + 30 +0.0 + 11 +15712.499931 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +C1C + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9125.742653 + 30 +0.0 + 11 +15684.374931 + 21 +9141.980629 + 31 +0.0 + 0 +LINE + 5 +C1D + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9174.456582 + 30 +0.0 + 11 +15656.249931 + 21 +9190.694558 + 31 +0.0 + 0 +LINE + 5 +C1E + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9223.170511 + 30 +0.0 + 11 +15628.124931 + 21 +9239.408487 + 31 +0.0 + 0 +LINE + 5 +C1F + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9109.504676 + 30 +0.0 + 11 +15712.499931 + 21 +9125.742653 + 31 +0.0 + 0 +LINE + 5 +C20 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9158.218605 + 30 +0.0 + 11 +15684.374931 + 21 +9174.456582 + 31 +0.0 + 0 +LINE + 5 +C21 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9206.932534 + 30 +0.0 + 11 +15656.249931 + 21 +9223.170511 + 31 +0.0 + 0 +LINE + 5 +C22 + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9255.646463 + 30 +0.0 + 11 +15628.124931 + 21 +9271.88444 + 31 +0.0 + 0 +LINE + 5 +C23 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9141.980629 + 30 +0.0 + 11 +15712.499931 + 21 +9158.218605 + 31 +0.0 + 0 +LINE + 5 +C24 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9190.694558 + 30 +0.0 + 11 +15684.374931 + 21 +9206.932534 + 31 +0.0 + 0 +LINE + 5 +C25 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9239.408487 + 30 +0.0 + 11 +15656.249931 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +C26 + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9288.122416 + 30 +0.0 + 11 +15628.124931 + 21 +9304.360392 + 31 +0.0 + 0 +LINE + 5 +C27 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9174.456582 + 30 +0.0 + 11 +15712.499931 + 21 +9190.694558 + 31 +0.0 + 0 +LINE + 5 +C28 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9223.170511 + 30 +0.0 + 11 +15684.374931 + 21 +9239.408487 + 31 +0.0 + 0 +LINE + 5 +C29 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9271.884439 + 30 +0.0 + 11 +15656.249931 + 21 +9288.122416 + 31 +0.0 + 0 +LINE + 5 +C2A + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9320.598368 + 30 +0.0 + 11 +15628.124931 + 21 +9336.836345 + 31 +0.0 + 0 +LINE + 5 +C2B + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9206.932534 + 30 +0.0 + 11 +15712.499931 + 21 +9223.17051 + 31 +0.0 + 0 +LINE + 5 +C2C + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9255.646463 + 30 +0.0 + 11 +15684.374931 + 21 +9271.884439 + 31 +0.0 + 0 +LINE + 5 +C2D + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9304.360392 + 30 +0.0 + 11 +15656.249931 + 21 +9320.598368 + 31 +0.0 + 0 +LINE + 5 +C2E + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9353.074321 + 30 +0.0 + 11 +15628.124931 + 21 +9369.312297 + 31 +0.0 + 0 +LINE + 5 +C2F + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9239.408487 + 30 +0.0 + 11 +15712.499931 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +C30 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9288.122416 + 30 +0.0 + 11 +15684.374931 + 21 +9304.360392 + 31 +0.0 + 0 +LINE + 5 +C31 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9336.836345 + 30 +0.0 + 11 +15656.249931 + 21 +9353.074321 + 31 +0.0 + 0 +LINE + 5 +C32 + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9385.550274 + 30 +0.0 + 11 +15628.124931 + 21 +9401.78825 + 31 +0.0 + 0 +LINE + 5 +C33 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9271.884439 + 30 +0.0 + 11 +15712.499931 + 21 +9288.122416 + 31 +0.0 + 0 +LINE + 5 +C34 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9320.598368 + 30 +0.0 + 11 +15684.374931 + 21 +9336.836345 + 31 +0.0 + 0 +LINE + 5 +C35 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9369.312297 + 30 +0.0 + 11 +15656.249931 + 21 +9385.550274 + 31 +0.0 + 0 +LINE + 5 +C36 + 8 +0 + 62 + 0 + 10 +15637.499931 + 20 +9418.026226 + 30 +0.0 + 11 +15628.124931 + 21 +9434.264203 + 31 +0.0 + 0 +LINE + 5 +C37 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9304.360392 + 30 +0.0 + 11 +15712.499931 + 21 +9320.598368 + 31 +0.0 + 0 +LINE + 5 +C38 + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9353.074321 + 30 +0.0 + 11 +15684.374931 + 21 +9369.312297 + 31 +0.0 + 0 +LINE + 5 +C39 + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9401.78825 + 30 +0.0 + 11 +15656.249931 + 21 +9418.026226 + 31 +0.0 + 0 +LINE + 5 +C3A + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9336.836345 + 30 +0.0 + 11 +15712.499931 + 21 +9353.074321 + 31 +0.0 + 0 +LINE + 5 +C3B + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9385.550274 + 30 +0.0 + 11 +15684.374931 + 21 +9401.78825 + 31 +0.0 + 0 +LINE + 5 +C3C + 8 +0 + 62 + 0 + 10 +15665.624931 + 20 +9434.264203 + 30 +0.0 + 11 +15665.200118 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +C3D + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9369.312297 + 30 +0.0 + 11 +15712.499931 + 21 +9385.550274 + 31 +0.0 + 0 +LINE + 5 +C3E + 8 +0 + 62 + 0 + 10 +15693.749931 + 20 +9418.026226 + 30 +0.0 + 11 +15684.374931 + 21 +9434.264202 + 31 +0.0 + 0 +LINE + 5 +C3F + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9401.78825 + 30 +0.0 + 11 +15712.499931 + 21 +9418.026226 + 31 +0.0 + 0 +LINE + 5 +C40 + 8 +0 + 62 + 0 + 10 +15721.874931 + 20 +9434.264202 + 30 +0.0 + 11 +15721.450118 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +C41 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +8995.8389 + 30 +0.0 + 11 +14990.624968 + 21 +9012.076877 + 31 +0.0 + 0 +LINE + 5 +C42 + 8 +0 + 62 + 0 + 10 +14956.242126 + 20 +8985.0 + 30 +0.0 + 11 +14962.499968 + 21 +8995.8389 + 31 +0.0 + 0 +LINE + 5 +C43 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9028.314853 + 30 +0.0 + 11 +14990.624968 + 21 +9044.552829 + 31 +0.0 + 0 +LINE + 5 +C44 + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9012.076877 + 30 +0.0 + 11 +14962.499968 + 21 +9028.314853 + 31 +0.0 + 0 +LINE + 5 +C45 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9060.790806 + 30 +0.0 + 11 +14990.624968 + 21 +9077.028782 + 31 +0.0 + 0 +LINE + 5 +C46 + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +8995.8389 + 30 +0.0 + 11 +14934.374968 + 21 +9012.076877 + 31 +0.0 + 0 +LINE + 5 +C47 + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9044.552829 + 30 +0.0 + 11 +14962.499968 + 21 +9060.790806 + 31 +0.0 + 0 +LINE + 5 +C48 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9093.266758 + 30 +0.0 + 11 +14990.624968 + 21 +9109.504734 + 31 +0.0 + 0 +LINE + 5 +C49 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +8985.013638 + 30 +0.0 + 11 +14906.249968 + 21 +8995.8389 + 31 +0.0 + 0 +LINE + 5 +C4A + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +9028.314853 + 30 +0.0 + 11 +14934.374968 + 21 +9044.552829 + 31 +0.0 + 0 +LINE + 5 +C4B + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9077.028782 + 30 +0.0 + 11 +14962.499968 + 21 +9093.266758 + 31 +0.0 + 0 +LINE + 5 +C4C + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9125.742711 + 30 +0.0 + 11 +14990.624968 + 21 +9141.980687 + 31 +0.0 + 0 +LINE + 5 +C4D + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9017.48959 + 30 +0.0 + 11 +14906.249968 + 21 +9028.314853 + 31 +0.0 + 0 +LINE + 5 +C4E + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +9060.790805 + 30 +0.0 + 11 +14934.374968 + 21 +9077.028782 + 31 +0.0 + 0 +LINE + 5 +C4F + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9109.504734 + 30 +0.0 + 11 +14962.499968 + 21 +9125.742711 + 31 +0.0 + 0 +LINE + 5 +C50 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9158.218663 + 30 +0.0 + 11 +14990.624968 + 21 +9174.45664 + 31 +0.0 + 0 +LINE + 5 +C51 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9049.965543 + 30 +0.0 + 11 +14906.249968 + 21 +9060.790805 + 31 +0.0 + 0 +LINE + 5 +C52 + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +9093.266758 + 30 +0.0 + 11 +14934.374968 + 21 +9109.504734 + 31 +0.0 + 0 +LINE + 5 +C53 + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9141.980687 + 30 +0.0 + 11 +14962.499968 + 21 +9158.218663 + 31 +0.0 + 0 +LINE + 5 +C54 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9190.694616 + 30 +0.0 + 11 +14990.624968 + 21 +9206.932592 + 31 +0.0 + 0 +LINE + 5 +C55 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9082.441495 + 30 +0.0 + 11 +14906.249968 + 21 +9093.266758 + 31 +0.0 + 0 +LINE + 5 +C56 + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +9125.742711 + 30 +0.0 + 11 +14934.374968 + 21 +9141.980687 + 31 +0.0 + 0 +LINE + 5 +C57 + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9174.45664 + 30 +0.0 + 11 +14962.499968 + 21 +9190.694616 + 31 +0.0 + 0 +LINE + 5 +C58 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9223.170569 + 30 +0.0 + 11 +14990.624968 + 21 +9239.408545 + 31 +0.0 + 0 +LINE + 5 +C59 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9114.917448 + 30 +0.0 + 11 +14906.249968 + 21 +9125.742711 + 31 +0.0 + 0 +LINE + 5 +C5A + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +9158.218663 + 30 +0.0 + 11 +14934.374968 + 21 +9174.45664 + 31 +0.0 + 0 +LINE + 5 +C5B + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9206.932592 + 30 +0.0 + 11 +14962.499968 + 21 +9223.170569 + 31 +0.0 + 0 +LINE + 5 +C5C + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9255.646521 + 30 +0.0 + 11 +14990.624968 + 21 +9271.884498 + 31 +0.0 + 0 +LINE + 5 +C5D + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9147.3934 + 30 +0.0 + 11 +14906.249968 + 21 +9158.218663 + 31 +0.0 + 0 +LINE + 5 +C5E + 8 +0 + 62 + 0 + 10 +14924.999968 + 20 +9190.694616 + 30 +0.0 + 11 +14934.374968 + 21 +9206.932592 + 31 +0.0 + 0 +LINE + 5 +C5F + 8 +0 + 62 + 0 + 10 +14953.124968 + 20 +9239.408545 + 30 +0.0 + 11 +14962.499968 + 21 +9255.646521 + 31 +0.0 + 0 +LINE + 5 +C60 + 8 +0 + 62 + 0 + 10 +14981.249968 + 20 +9288.122474 + 30 +0.0 + 11 +14990.624968 + 21 +9304.36045 + 31 +0.0 + 0 +LINE + 5 +C61 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9179.869353 + 30 +0.0 + 11 +14906.249969 + 21 +9190.694616 + 31 +0.0 + 0 +LINE + 5 +C62 + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9223.170568 + 30 +0.0 + 11 +14934.374969 + 21 +9239.408545 + 31 +0.0 + 0 +LINE + 5 +C63 + 8 +0 + 62 + 0 + 10 +14953.124969 + 20 +9271.884497 + 30 +0.0 + 11 +14962.499969 + 21 +9288.122474 + 31 +0.0 + 0 +LINE + 5 +C64 + 8 +0 + 62 + 0 + 10 +14981.249969 + 20 +9320.598426 + 30 +0.0 + 11 +14990.624969 + 21 +9336.836403 + 31 +0.0 + 0 +LINE + 5 +C65 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9212.345305 + 30 +0.0 + 11 +14906.249969 + 21 +9223.170568 + 31 +0.0 + 0 +LINE + 5 +C66 + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9255.646521 + 30 +0.0 + 11 +14934.374969 + 21 +9271.884497 + 31 +0.0 + 0 +LINE + 5 +C67 + 8 +0 + 62 + 0 + 10 +14953.124969 + 20 +9304.36045 + 30 +0.0 + 11 +14962.499969 + 21 +9320.598426 + 31 +0.0 + 0 +LINE + 5 +C68 + 8 +0 + 62 + 0 + 10 +14981.249969 + 20 +9353.074379 + 30 +0.0 + 11 +14990.624969 + 21 +9369.312355 + 31 +0.0 + 0 +LINE + 5 +C69 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9244.821258 + 30 +0.0 + 11 +14906.249969 + 21 +9255.646521 + 31 +0.0 + 0 +LINE + 5 +C6A + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9288.122474 + 30 +0.0 + 11 +14934.374969 + 21 +9304.36045 + 31 +0.0 + 0 +LINE + 5 +C6B + 8 +0 + 62 + 0 + 10 +14953.124969 + 20 +9336.836403 + 30 +0.0 + 11 +14962.499969 + 21 +9353.074379 + 31 +0.0 + 0 +LINE + 5 +C6C + 8 +0 + 62 + 0 + 10 +14981.249969 + 20 +9385.550332 + 30 +0.0 + 11 +14990.624969 + 21 +9401.788308 + 31 +0.0 + 0 +LINE + 5 +C6D + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9277.29721 + 30 +0.0 + 11 +14906.249969 + 21 +9288.122474 + 31 +0.0 + 0 +LINE + 5 +C6E + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9320.598426 + 30 +0.0 + 11 +14934.374969 + 21 +9336.836403 + 31 +0.0 + 0 +LINE + 5 +C6F + 8 +0 + 62 + 0 + 10 +14953.124969 + 20 +9369.312355 + 30 +0.0 + 11 +14962.499969 + 21 +9385.550332 + 31 +0.0 + 0 +LINE + 5 +C70 + 8 +0 + 62 + 0 + 10 +14981.249969 + 20 +9418.026284 + 30 +0.0 + 11 +14990.624969 + 21 +9434.264261 + 31 +0.0 + 0 +LINE + 5 +C71 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9309.773163 + 30 +0.0 + 11 +14906.249969 + 21 +9320.598426 + 31 +0.0 + 0 +LINE + 5 +C72 + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9353.074379 + 30 +0.0 + 11 +14934.374969 + 21 +9369.312355 + 31 +0.0 + 0 +LINE + 5 +C73 + 8 +0 + 62 + 0 + 10 +14953.124969 + 20 +9401.788308 + 30 +0.0 + 11 +14962.499969 + 21 +9418.026284 + 31 +0.0 + 0 +LINE + 5 +C74 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9342.249115 + 30 +0.0 + 11 +14906.249969 + 21 +9353.074379 + 31 +0.0 + 0 +LINE + 5 +C75 + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9385.550332 + 30 +0.0 + 11 +14934.374969 + 21 +9401.788308 + 31 +0.0 + 0 +LINE + 5 +C76 + 8 +0 + 62 + 0 + 10 +14953.124969 + 20 +9434.26426 + 30 +0.0 + 11 +14953.549748 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +C77 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9374.725068 + 30 +0.0 + 11 +14906.249969 + 21 +9385.550331 + 31 +0.0 + 0 +LINE + 5 +C78 + 8 +0 + 62 + 0 + 10 +14924.999969 + 20 +9418.026284 + 30 +0.0 + 11 +14934.374969 + 21 +9434.26426 + 31 +0.0 + 0 +LINE + 5 +C79 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +9407.20102 + 30 +0.0 + 11 +14906.249969 + 21 +9418.026284 + 31 +0.0 + 0 +LINE + 5 +C7A + 8 +0 + 62 + 0 + 10 +15628.124967 + 20 +9434.264262 + 30 +0.0 + 11 +15628.549745 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +C7B + 8 +0 + 62 + 0 + 10 +15628.124967 + 20 +9401.788309 + 30 +0.0 + 11 +15637.499967 + 21 +9418.026285 + 31 +0.0 + 0 +LINE + 5 +C7C + 8 +0 + 62 + 0 + 10 +15628.124967 + 20 +9369.312357 + 30 +0.0 + 11 +15637.499967 + 21 +9385.550333 + 31 +0.0 + 0 +LINE + 5 +C7D + 8 +0 + 62 + 0 + 10 +15656.249967 + 20 +9418.026285 + 30 +0.0 + 11 +15665.624967 + 21 +9434.264262 + 31 +0.0 + 0 +LINE + 5 +C7E + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9336.836404 + 30 +0.0 + 11 +15637.499966 + 21 +9353.07438 + 31 +0.0 + 0 +LINE + 5 +C7F + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9385.550333 + 30 +0.0 + 11 +15665.624966 + 21 +9401.788309 + 31 +0.0 + 0 +LINE + 5 +C80 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9434.264262 + 30 +0.0 + 11 +15684.799745 + 21 +9435.0 + 31 +0.0 + 0 +LINE + 5 +C81 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9304.360451 + 30 +0.0 + 11 +15637.499966 + 21 +9320.598428 + 31 +0.0 + 0 +LINE + 5 +C82 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9353.07438 + 30 +0.0 + 11 +15665.624966 + 21 +9369.312357 + 31 +0.0 + 0 +LINE + 5 +C83 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9401.788309 + 30 +0.0 + 11 +15693.749966 + 21 +9418.026286 + 31 +0.0 + 0 +LINE + 5 +C84 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9271.884499 + 30 +0.0 + 11 +15637.499966 + 21 +9288.122475 + 31 +0.0 + 0 +LINE + 5 +C85 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9320.598428 + 30 +0.0 + 11 +15665.624966 + 21 +9336.836404 + 31 +0.0 + 0 +LINE + 5 +C86 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9369.312357 + 30 +0.0 + 11 +15693.749966 + 21 +9385.550333 + 31 +0.0 + 0 +LINE + 5 +C87 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9418.026286 + 30 +0.0 + 11 +15721.874966 + 21 +9434.264262 + 31 +0.0 + 0 +LINE + 5 +C88 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9239.408546 + 30 +0.0 + 11 +15637.499966 + 21 +9255.646522 + 31 +0.0 + 0 +LINE + 5 +C89 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9288.122475 + 30 +0.0 + 11 +15665.624966 + 21 +9304.360451 + 31 +0.0 + 0 +LINE + 5 +C8A + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9336.836404 + 30 +0.0 + 11 +15693.749966 + 21 +9353.07438 + 31 +0.0 + 0 +LINE + 5 +C8B + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9385.550333 + 30 +0.0 + 11 +15721.874966 + 21 +9401.788309 + 31 +0.0 + 0 +LINE + 5 +C8C + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9206.932593 + 30 +0.0 + 11 +15637.499966 + 21 +9223.17057 + 31 +0.0 + 0 +LINE + 5 +C8D + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9255.646522 + 30 +0.0 + 11 +15665.624966 + 21 +9271.884499 + 31 +0.0 + 0 +LINE + 5 +C8E + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9304.360451 + 30 +0.0 + 11 +15693.749966 + 21 +9320.598428 + 31 +0.0 + 0 +LINE + 5 +C8F + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9353.07438 + 30 +0.0 + 11 +15721.874966 + 21 +9369.312357 + 31 +0.0 + 0 +LINE + 5 +C90 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9174.456641 + 30 +0.0 + 11 +15637.499966 + 21 +9190.694617 + 31 +0.0 + 0 +LINE + 5 +C91 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9223.17057 + 30 +0.0 + 11 +15665.624966 + 21 +9239.408546 + 31 +0.0 + 0 +LINE + 5 +C92 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9271.884499 + 30 +0.0 + 11 +15693.749966 + 21 +9288.122475 + 31 +0.0 + 0 +LINE + 5 +C93 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9320.598428 + 30 +0.0 + 11 +15721.874966 + 21 +9336.836404 + 31 +0.0 + 0 +LINE + 5 +C94 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9141.980688 + 30 +0.0 + 11 +15637.499966 + 21 +9158.218665 + 31 +0.0 + 0 +LINE + 5 +C95 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9190.694617 + 30 +0.0 + 11 +15665.624966 + 21 +9206.932594 + 31 +0.0 + 0 +LINE + 5 +C96 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9239.408546 + 30 +0.0 + 11 +15693.749966 + 21 +9255.646523 + 31 +0.0 + 0 +LINE + 5 +C97 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9288.122475 + 30 +0.0 + 11 +15721.874966 + 21 +9304.360451 + 31 +0.0 + 0 +LINE + 5 +C98 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9109.504736 + 30 +0.0 + 11 +15637.499966 + 21 +9125.742712 + 31 +0.0 + 0 +LINE + 5 +C99 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9158.218665 + 30 +0.0 + 11 +15665.624966 + 21 +9174.456641 + 31 +0.0 + 0 +LINE + 5 +C9A + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9206.932594 + 30 +0.0 + 11 +15693.749966 + 21 +9223.17057 + 31 +0.0 + 0 +LINE + 5 +C9B + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9255.646523 + 30 +0.0 + 11 +15721.874966 + 21 +9271.884499 + 31 +0.0 + 0 +LINE + 5 +C9C + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9077.028783 + 30 +0.0 + 11 +15637.499966 + 21 +9093.266759 + 31 +0.0 + 0 +LINE + 5 +C9D + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9125.742712 + 30 +0.0 + 11 +15665.624966 + 21 +9141.980688 + 31 +0.0 + 0 +LINE + 5 +C9E + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9174.456641 + 30 +0.0 + 11 +15693.749966 + 21 +9190.694617 + 31 +0.0 + 0 +LINE + 5 +C9F + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9223.17057 + 30 +0.0 + 11 +15721.874966 + 21 +9239.408546 + 31 +0.0 + 0 +LINE + 5 +CA0 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9044.55283 + 30 +0.0 + 11 +15637.499966 + 21 +9060.790807 + 31 +0.0 + 0 +LINE + 5 +CA1 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9093.266759 + 30 +0.0 + 11 +15665.624966 + 21 +9109.504736 + 31 +0.0 + 0 +LINE + 5 +CA2 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9141.980688 + 30 +0.0 + 11 +15693.749966 + 21 +9158.218665 + 31 +0.0 + 0 +LINE + 5 +CA3 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9190.694617 + 30 +0.0 + 11 +15721.874966 + 21 +9206.932594 + 31 +0.0 + 0 +LINE + 5 +CA4 + 8 +0 + 62 + 0 + 10 +15628.124966 + 20 +9012.076878 + 30 +0.0 + 11 +15637.499966 + 21 +9028.314854 + 31 +0.0 + 0 +LINE + 5 +CA5 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9060.790807 + 30 +0.0 + 11 +15665.624966 + 21 +9077.028783 + 31 +0.0 + 0 +LINE + 5 +CA6 + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9109.504736 + 30 +0.0 + 11 +15693.749966 + 21 +9125.742712 + 31 +0.0 + 0 +LINE + 5 +CA7 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9158.218665 + 30 +0.0 + 11 +15721.874966 + 21 +9174.456641 + 31 +0.0 + 0 +LINE + 5 +CA8 + 8 +0 + 62 + 0 + 10 +15631.242123 + 20 +8985.0 + 30 +0.0 + 11 +15637.499966 + 21 +8995.838902 + 31 +0.0 + 0 +LINE + 5 +CA9 + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +9028.314854 + 30 +0.0 + 11 +15665.624966 + 21 +9044.552831 + 31 +0.0 + 0 +LINE + 5 +CAA + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9077.028783 + 30 +0.0 + 11 +15693.749966 + 21 +9093.266759 + 31 +0.0 + 0 +LINE + 5 +CAB + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9125.742712 + 30 +0.0 + 11 +15721.874966 + 21 +9141.980688 + 31 +0.0 + 0 +LINE + 5 +CAC + 8 +0 + 62 + 0 + 10 +15656.249966 + 20 +8995.838902 + 30 +0.0 + 11 +15665.624966 + 21 +9012.076878 + 31 +0.0 + 0 +LINE + 5 +CAD + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9044.552831 + 30 +0.0 + 11 +15693.749966 + 21 +9060.790807 + 31 +0.0 + 0 +LINE + 5 +CAE + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9093.26676 + 30 +0.0 + 11 +15721.874966 + 21 +9109.504736 + 31 +0.0 + 0 +LINE + 5 +CAF + 8 +0 + 62 + 0 + 10 +15684.374966 + 20 +9012.076878 + 30 +0.0 + 11 +15693.749966 + 21 +9028.314854 + 31 +0.0 + 0 +LINE + 5 +CB0 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9060.790807 + 30 +0.0 + 11 +15721.874966 + 21 +9077.028783 + 31 +0.0 + 0 +LINE + 5 +CB1 + 8 +0 + 62 + 0 + 10 +15687.492123 + 20 +8985.0 + 30 +0.0 + 11 +15693.749966 + 21 +8995.838902 + 31 +0.0 + 0 +LINE + 5 +CB2 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +9028.314854 + 30 +0.0 + 11 +15721.874966 + 21 +9044.552831 + 31 +0.0 + 0 +LINE + 5 +CB3 + 8 +0 + 62 + 0 + 10 +15712.499966 + 20 +8995.838902 + 30 +0.0 + 11 +15721.874966 + 21 +9012.076878 + 31 +0.0 + 0 +ENDBLK + 5 +CB4 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X57 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X57 + 1 + + 0 +LINE + 5 +CB6 + 8 +0 + 62 + 0 + 10 +15000.0 + 20 +9006.66416 + 30 +0.0 + 11 +15025.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CB7 + 8 +0 + 62 + 0 + 10 +15075.0 + 20 +9006.66416 + 30 +0.0 + 11 +15100.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CB8 + 8 +0 + 62 + 0 + 10 +15150.0 + 20 +9006.66416 + 30 +0.0 + 11 +15175.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CB9 + 8 +0 + 62 + 0 + 10 +15225.0 + 20 +9006.66416 + 30 +0.0 + 11 +15250.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CBA + 8 +0 + 62 + 0 + 10 +15300.0 + 20 +9006.66416 + 30 +0.0 + 11 +15325.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CBB + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9006.66416 + 30 +0.0 + 11 +15400.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CBC + 8 +0 + 62 + 0 + 10 +15450.0 + 20 +9006.66416 + 30 +0.0 + 11 +15475.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CBD + 8 +0 + 62 + 0 + 10 +15525.0 + 20 +9006.66416 + 30 +0.0 + 11 +15550.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CBE + 8 +0 + 62 + 0 + 10 +15600.0 + 20 +9006.66416 + 30 +0.0 + 11 +15625.0 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CBF + 8 +0 + 62 + 0 + 10 +15037.5 + 20 +9028.314795 + 30 +0.0 + 11 +15062.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC0 + 8 +0 + 62 + 0 + 10 +15112.5 + 20 +9028.314795 + 30 +0.0 + 11 +15137.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC1 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9028.314795 + 30 +0.0 + 11 +15212.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC2 + 8 +0 + 62 + 0 + 10 +15262.5 + 20 +9028.314795 + 30 +0.0 + 11 +15287.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC3 + 8 +0 + 62 + 0 + 10 +15337.5 + 20 +9028.314795 + 30 +0.0 + 11 +15362.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC4 + 8 +0 + 62 + 0 + 10 +15412.5 + 20 +9028.314795 + 30 +0.0 + 11 +15437.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC5 + 8 +0 + 62 + 0 + 10 +15487.5 + 20 +9028.314795 + 30 +0.0 + 11 +15512.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC6 + 8 +0 + 62 + 0 + 10 +15562.5 + 20 +9028.314795 + 30 +0.0 + 11 +15587.5 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CC7 + 8 +0 + 62 + 0 + 10 +15037.5 + 20 +8985.013525 + 30 +0.0 + 11 +15062.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CC8 + 8 +0 + 62 + 0 + 10 +15112.5 + 20 +8985.013525 + 30 +0.0 + 11 +15137.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CC9 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +8985.013525 + 30 +0.0 + 11 +15212.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CCA + 8 +0 + 62 + 0 + 10 +15262.5 + 20 +8985.013525 + 30 +0.0 + 11 +15287.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CCB + 8 +0 + 62 + 0 + 10 +15337.5 + 20 +8985.013525 + 30 +0.0 + 11 +15362.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CCC + 8 +0 + 62 + 0 + 10 +15412.5 + 20 +8985.013525 + 30 +0.0 + 11 +15437.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CCD + 8 +0 + 62 + 0 + 10 +15487.5 + 20 +8985.013525 + 30 +0.0 + 11 +15512.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CCE + 8 +0 + 62 + 0 + 10 +15562.5 + 20 +8985.013525 + 30 +0.0 + 11 +15587.5 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CCF + 8 +0 + 62 + 0 + 10 +15299.999933 + 20 +9006.664161 + 30 +0.0 + 11 +15287.499933 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +CD0 + 8 +0 + 62 + 0 + 10 +15287.507742 + 20 +8985.0 + 30 +0.0 + 11 +15287.499933 + 21 +8985.013526 + 31 +0.0 + 0 +LINE + 5 +CD1 + 8 +0 + 62 + 0 + 10 +15262.499933 + 20 +9028.314796 + 30 +0.0 + 11 +15258.640228 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CD2 + 8 +0 + 62 + 0 + 10 +15262.499933 + 20 +8985.013526 + 30 +0.0 + 11 +15249.999933 + 21 +9006.664161 + 31 +0.0 + 0 +LINE + 5 +CD3 + 8 +0 + 62 + 0 + 10 +15224.999933 + 20 +9006.664161 + 30 +0.0 + 11 +15212.499933 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +CD4 + 8 +0 + 62 + 0 + 10 +15212.507742 + 20 +8985.0 + 30 +0.0 + 11 +15212.499933 + 21 +8985.013526 + 31 +0.0 + 0 +LINE + 5 +CD5 + 8 +0 + 62 + 0 + 10 +15187.499933 + 20 +9028.314796 + 30 +0.0 + 11 +15183.640229 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CD6 + 8 +0 + 62 + 0 + 10 +15187.499933 + 20 +8985.013526 + 30 +0.0 + 11 +15174.999933 + 21 +9006.664161 + 31 +0.0 + 0 +LINE + 5 +CD7 + 8 +0 + 62 + 0 + 10 +15149.999933 + 20 +9006.664161 + 30 +0.0 + 11 +15137.499933 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +CD8 + 8 +0 + 62 + 0 + 10 +15137.507743 + 20 +8985.0 + 30 +0.0 + 11 +15137.499933 + 21 +8985.013526 + 31 +0.0 + 0 +LINE + 5 +CD9 + 8 +0 + 62 + 0 + 10 +15112.499933 + 20 +9028.314796 + 30 +0.0 + 11 +15108.640229 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CDA + 8 +0 + 62 + 0 + 10 +15112.499933 + 20 +8985.013526 + 30 +0.0 + 11 +15099.999933 + 21 +9006.664161 + 31 +0.0 + 0 +LINE + 5 +CDB + 8 +0 + 62 + 0 + 10 +15074.999934 + 20 +9006.664161 + 30 +0.0 + 11 +15062.499934 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +CDC + 8 +0 + 62 + 0 + 10 +15062.507743 + 20 +8985.0 + 30 +0.0 + 11 +15062.499934 + 21 +8985.013526 + 31 +0.0 + 0 +LINE + 5 +CDD + 8 +0 + 62 + 0 + 10 +15037.499934 + 20 +9028.314796 + 30 +0.0 + 11 +15033.640229 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CDE + 8 +0 + 62 + 0 + 10 +15037.499934 + 20 +8985.013526 + 30 +0.0 + 11 +15024.999934 + 21 +9006.664161 + 31 +0.0 + 0 +LINE + 5 +CDF + 8 +0 + 62 + 0 + 10 +15337.499933 + 20 +8985.013525 + 30 +0.0 + 11 +15324.999933 + 21 +9006.664161 + 31 +0.0 + 0 +LINE + 5 +CE0 + 8 +0 + 62 + 0 + 10 +15362.507742 + 20 +8985.0 + 30 +0.0 + 11 +15362.499933 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CE1 + 8 +0 + 62 + 0 + 10 +15337.499933 + 20 +9028.314796 + 30 +0.0 + 11 +15333.640228 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CE2 + 8 +0 + 62 + 0 + 10 +15374.999933 + 20 +9006.66416 + 30 +0.0 + 11 +15362.499933 + 21 +9028.314796 + 31 +0.0 + 0 +LINE + 5 +CE3 + 8 +0 + 62 + 0 + 10 +15412.499932 + 20 +8985.013525 + 30 +0.0 + 11 +15399.999932 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CE4 + 8 +0 + 62 + 0 + 10 +15437.507741 + 20 +8985.0 + 30 +0.0 + 11 +15437.499932 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CE5 + 8 +0 + 62 + 0 + 10 +15412.499932 + 20 +9028.314795 + 30 +0.0 + 11 +15408.640228 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CE6 + 8 +0 + 62 + 0 + 10 +15449.999932 + 20 +9006.66416 + 30 +0.0 + 11 +15437.499932 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CE7 + 8 +0 + 62 + 0 + 10 +15487.499932 + 20 +8985.013525 + 30 +0.0 + 11 +15474.999932 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CE8 + 8 +0 + 62 + 0 + 10 +15512.507741 + 20 +8985.0 + 30 +0.0 + 11 +15512.499932 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CE9 + 8 +0 + 62 + 0 + 10 +15487.499932 + 20 +9028.314795 + 30 +0.0 + 11 +15483.640227 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CEA + 8 +0 + 62 + 0 + 10 +15524.999932 + 20 +9006.66416 + 30 +0.0 + 11 +15512.499932 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CEB + 8 +0 + 62 + 0 + 10 +15562.499932 + 20 +8985.013525 + 30 +0.0 + 11 +15549.999932 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CEC + 8 +0 + 62 + 0 + 10 +15587.507741 + 20 +8985.0 + 30 +0.0 + 11 +15587.499932 + 21 +8985.013525 + 31 +0.0 + 0 +LINE + 5 +CED + 8 +0 + 62 + 0 + 10 +15562.499932 + 20 +9028.314795 + 30 +0.0 + 11 +15558.640227 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CEE + 8 +0 + 62 + 0 + 10 +15599.999932 + 20 +9006.66416 + 30 +0.0 + 11 +15587.499932 + 21 +9028.314795 + 31 +0.0 + 0 +LINE + 5 +CEF + 8 +0 + 62 + 0 + 10 +15625.0 + 20 +9006.664042 + 30 +0.0 + 11 +15624.999932 + 21 +9006.66416 + 31 +0.0 + 0 +LINE + 5 +CF0 + 8 +0 + 62 + 0 + 10 +15287.499967 + 20 +8985.013583 + 30 +0.0 + 11 +15299.999967 + 21 +9006.664218 + 31 +0.0 + 0 +LINE + 5 +CF1 + 8 +0 + 62 + 0 + 10 +15262.492125 + 20 +8985.0 + 30 +0.0 + 11 +15262.499967 + 21 +8985.013583 + 31 +0.0 + 0 +LINE + 5 +CF2 + 8 +0 + 62 + 0 + 10 +15287.499967 + 20 +9028.314854 + 30 +0.0 + 11 +15291.359638 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CF3 + 8 +0 + 62 + 0 + 10 +15249.999967 + 20 +9006.664218 + 30 +0.0 + 11 +15262.499967 + 21 +9028.314853 + 31 +0.0 + 0 +LINE + 5 +CF4 + 8 +0 + 62 + 0 + 10 +15212.499967 + 20 +8985.013583 + 30 +0.0 + 11 +15224.999967 + 21 +9006.664218 + 31 +0.0 + 0 +LINE + 5 +CF5 + 8 +0 + 62 + 0 + 10 +15187.492125 + 20 +8985.0 + 30 +0.0 + 11 +15187.499967 + 21 +8985.013583 + 31 +0.0 + 0 +LINE + 5 +CF6 + 8 +0 + 62 + 0 + 10 +15212.499967 + 20 +9028.314853 + 30 +0.0 + 11 +15216.359638 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CF7 + 8 +0 + 62 + 0 + 10 +15174.999967 + 20 +9006.664218 + 30 +0.0 + 11 +15187.499967 + 21 +9028.314853 + 31 +0.0 + 0 +LINE + 5 +CF8 + 8 +0 + 62 + 0 + 10 +15137.499967 + 20 +8985.013583 + 30 +0.0 + 11 +15149.999967 + 21 +9006.664218 + 31 +0.0 + 0 +LINE + 5 +CF9 + 8 +0 + 62 + 0 + 10 +15112.492125 + 20 +8985.0 + 30 +0.0 + 11 +15112.499967 + 21 +8985.013583 + 31 +0.0 + 0 +LINE + 5 +CFA + 8 +0 + 62 + 0 + 10 +15137.499967 + 20 +9028.314853 + 30 +0.0 + 11 +15141.359639 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CFB + 8 +0 + 62 + 0 + 10 +15099.999968 + 20 +9006.664218 + 30 +0.0 + 11 +15112.499968 + 21 +9028.314853 + 31 +0.0 + 0 +LINE + 5 +CFC + 8 +0 + 62 + 0 + 10 +15062.499968 + 20 +8985.013583 + 30 +0.0 + 11 +15074.999968 + 21 +9006.664218 + 31 +0.0 + 0 +LINE + 5 +CFD + 8 +0 + 62 + 0 + 10 +15037.492126 + 20 +8985.0 + 30 +0.0 + 11 +15037.499968 + 21 +8985.013583 + 31 +0.0 + 0 +LINE + 5 +CFE + 8 +0 + 62 + 0 + 10 +15062.499968 + 20 +9028.314853 + 30 +0.0 + 11 +15066.359639 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +CFF + 8 +0 + 62 + 0 + 10 +15024.999968 + 20 +9006.664218 + 30 +0.0 + 11 +15037.499968 + 21 +9028.314853 + 31 +0.0 + 0 +LINE + 5 +D00 + 8 +0 + 62 + 0 + 10 +15324.999967 + 20 +9006.664219 + 30 +0.0 + 11 +15337.499967 + 21 +9028.314854 + 31 +0.0 + 0 +LINE + 5 +D01 + 8 +0 + 62 + 0 + 10 +15337.492124 + 20 +8985.0 + 30 +0.0 + 11 +15337.499967 + 21 +8985.013583 + 31 +0.0 + 0 +LINE + 5 +D02 + 8 +0 + 62 + 0 + 10 +15362.499967 + 20 +9028.314854 + 30 +0.0 + 11 +15366.359638 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +D03 + 8 +0 + 62 + 0 + 10 +15362.499967 + 20 +8985.013584 + 30 +0.0 + 11 +15374.999967 + 21 +9006.664219 + 31 +0.0 + 0 +LINE + 5 +D04 + 8 +0 + 62 + 0 + 10 +15399.999967 + 20 +9006.664219 + 30 +0.0 + 11 +15412.499967 + 21 +9028.314854 + 31 +0.0 + 0 +LINE + 5 +D05 + 8 +0 + 62 + 0 + 10 +15412.492124 + 20 +8985.0 + 30 +0.0 + 11 +15412.499966 + 21 +8985.013584 + 31 +0.0 + 0 +LINE + 5 +D06 + 8 +0 + 62 + 0 + 10 +15437.499966 + 20 +9028.314854 + 30 +0.0 + 11 +15441.359637 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +D07 + 8 +0 + 62 + 0 + 10 +15437.499966 + 20 +8985.013584 + 30 +0.0 + 11 +15449.999966 + 21 +9006.664219 + 31 +0.0 + 0 +LINE + 5 +D08 + 8 +0 + 62 + 0 + 10 +15474.999966 + 20 +9006.664219 + 30 +0.0 + 11 +15487.499966 + 21 +9028.314854 + 31 +0.0 + 0 +LINE + 5 +D09 + 8 +0 + 62 + 0 + 10 +15487.492124 + 20 +8985.0 + 30 +0.0 + 11 +15487.499966 + 21 +8985.013584 + 31 +0.0 + 0 +LINE + 5 +D0A + 8 +0 + 62 + 0 + 10 +15512.499966 + 20 +9028.314854 + 30 +0.0 + 11 +15516.359637 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +D0B + 8 +0 + 62 + 0 + 10 +15512.499966 + 20 +8985.013584 + 30 +0.0 + 11 +15524.999966 + 21 +9006.664219 + 31 +0.0 + 0 +LINE + 5 +D0C + 8 +0 + 62 + 0 + 10 +15549.999966 + 20 +9006.664219 + 30 +0.0 + 11 +15562.499966 + 21 +9028.314854 + 31 +0.0 + 0 +LINE + 5 +D0D + 8 +0 + 62 + 0 + 10 +15562.492123 + 20 +8985.0 + 30 +0.0 + 11 +15562.499966 + 21 +8985.013584 + 31 +0.0 + 0 +LINE + 5 +D0E + 8 +0 + 62 + 0 + 10 +15587.499966 + 20 +9028.314854 + 30 +0.0 + 11 +15591.359637 + 21 +9035.0 + 31 +0.0 + 0 +LINE + 5 +D0F + 8 +0 + 62 + 0 + 10 +15587.499966 + 20 +8985.013584 + 30 +0.0 + 11 +15599.999966 + 21 +9006.664219 + 31 +0.0 + 0 +LINE + 5 +D10 + 8 +0 + 62 + 0 + 10 +15624.999966 + 20 +9006.664219 + 30 +0.0 + 11 +15625.0 + 21 +9006.664278 + 31 +0.0 + 0 +ENDBLK + 5 +D11 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X67 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X67 + 1 + + 0 +LINE + 5 +D13 + 8 +0 + 62 + 0 + 10 +16023.225099 + 20 +9235.0 + 30 +0.0 + 11 +16069.001602 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D14 + 8 +0 + 62 + 0 + 10 +16122.034611 + 20 +9333.809512 + 30 +0.0 + 11 +16175.06762 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D15 + 8 +0 + 62 + 0 + 10 +15917.159082 + 20 +9235.0 + 30 +0.0 + 11 +15962.935585 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D16 + 8 +0 + 62 + 0 + 10 +16015.968594 + 20 +9333.809512 + 30 +0.0 + 11 +16069.001602 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D17 + 8 +0 + 62 + 0 + 10 +15811.093065 + 20 +9235.0 + 30 +0.0 + 11 +15856.869568 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D18 + 8 +0 + 62 + 0 + 10 +15909.902577 + 20 +9333.809512 + 30 +0.0 + 11 +15962.935585 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D19 + 8 +0 + 62 + 0 + 10 +15725.0 + 20 +9254.972952 + 30 +0.0 + 11 +15750.803551 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D1A + 8 +0 + 62 + 0 + 10 +15803.83656 + 20 +9333.809512 + 30 +0.0 + 11 +15856.869568 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D1B + 8 +0 + 62 + 0 + 10 +15725.0 + 20 +9361.038969 + 30 +0.0 + 11 +15750.803551 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D1C + 8 +0 + 62 + 0 + 10 +16129.291117 + 20 +9235.0 + 30 +0.0 + 11 +16175.06762 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D1D + 8 +0 + 62 + 0 + 10 +16228.100628 + 20 +9333.809512 + 30 +0.0 + 11 +16281.133637 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D1E + 8 +0 + 62 + 0 + 10 +16235.357134 + 20 +9235.0 + 30 +0.0 + 11 +16281.133637 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D1F + 8 +0 + 62 + 0 + 10 +16334.166645 + 20 +9333.809512 + 30 +0.0 + 11 +16387.199654 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D20 + 8 +0 + 62 + 0 + 10 +16341.423151 + 20 +9235.0 + 30 +0.0 + 11 +16387.199654 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D21 + 8 +0 + 62 + 0 + 10 +16440.232663 + 20 +9333.809512 + 30 +0.0 + 11 +16493.265671 + 21 +9386.84252 + 31 +0.0 + 0 +LINE + 5 +D22 + 8 +0 + 62 + 0 + 10 +16447.489168 + 20 +9235.0 + 30 +0.0 + 11 +16493.265671 + 21 +9280.776503 + 31 +0.0 + 0 +LINE + 5 +D23 + 8 +0 + 62 + 0 + 10 +16546.29868 + 20 +9333.809512 + 30 +0.0 + 11 +16564.992137 + 21 +9352.502969 + 31 +0.0 + 0 +LINE + 5 +D24 + 8 +0 + 62 + 0 + 10 +16553.555185 + 20 +9235.0 + 30 +0.0 + 11 +16564.992137 + 21 +9246.436952 + 31 +0.0 + 0 +ENDBLK + 5 +D25 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X69 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X69 + 1 + + 0 +LINE + 5 +D27 + 8 +0 + 62 + 0 + 10 +14642.386361 + 20 +12415.0 + 30 +0.0 + 11 +15442.386361 + 21 +13215.0 + 31 +0.0 + 0 +LINE + 5 +D28 + 8 +0 + 62 + 0 + 10 +13952.375735 + 20 +12467.451494 + 30 +0.0 + 11 +14699.92424 + 21 +13215.0 + 31 +0.0 + 0 +LINE + 5 +D29 + 8 +0 + 62 + 0 + 10 +13952.375735 + 20 +13209.913614 + 30 +0.0 + 11 +13957.46212 + 21 +13215.0 + 31 +0.0 + 0 +LINE + 5 +D2A + 8 +0 + 62 + 0 + 10 +15384.848481 + 20 +12415.0 + 30 +0.0 + 11 +16184.848481 + 21 +13215.0 + 31 +0.0 + 0 +LINE + 5 +D2B + 8 +0 + 62 + 0 + 10 +16127.310601 + 20 +12415.0 + 30 +0.0 + 11 +16564.992137 + 21 +12852.681536 + 31 +0.0 + 0 +LINE + 5 +D2C + 8 +0 + 62 + 0 + 10 +14271.1553 + 20 +12415.0 + 30 +0.0 + 11 +14385.203579 + 21 +12529.048279 + 31 +0.0 + 0 +LINE + 5 +D2D + 8 +0 + 62 + 0 + 10 +14478.011344 + 20 +12621.856044 + 30 +0.0 + 11 +14663.626874 + 21 +12807.471574 + 31 +0.0 + 0 +LINE + 5 +D2E + 8 +0 + 62 + 0 + 10 +14756.434639 + 20 +12900.279339 + 30 +0.0 + 11 +14942.050169 + 21 +13085.894869 + 31 +0.0 + 0 +LINE + 5 +D2F + 8 +0 + 62 + 0 + 10 +15034.857934 + 20 +13178.702634 + 30 +0.0 + 11 +15071.1553 + 21 +13215.0 + 31 +0.0 + 0 +LINE + 5 +D30 + 8 +0 + 62 + 0 + 10 +13952.375735 + 20 +12838.682555 + 30 +0.0 + 11 +14013.972519 + 21 +12900.279339 + 31 +0.0 + 0 +LINE + 5 +D31 + 8 +0 + 62 + 0 + 10 +14106.780284 + 20 +12993.087104 + 30 +0.0 + 11 +14292.395814 + 21 +13178.702634 + 31 +0.0 + 0 +LINE + 5 +D32 + 8 +0 + 62 + 0 + 10 +15013.61742 + 20 +12415.0 + 30 +0.0 + 11 +15034.857934 + 21 +12436.240514 + 31 +0.0 + 0 +LINE + 5 +D33 + 8 +0 + 62 + 0 + 10 +15127.665699 + 20 +12529.048279 + 30 +0.0 + 11 +15313.281229 + 21 +12714.663809 + 31 +0.0 + 0 +LINE + 5 +D34 + 8 +0 + 62 + 0 + 10 +15406.088994 + 20 +12807.471574 + 30 +0.0 + 11 +15591.704525 + 21 +12993.087104 + 31 +0.0 + 0 +LINE + 5 +D35 + 8 +0 + 62 + 0 + 10 +15684.51229 + 20 +13085.894869 + 30 +0.0 + 11 +15813.61742 + 21 +13215.0 + 31 +0.0 + 0 +LINE + 5 +D36 + 8 +0 + 62 + 0 + 10 +15777.320055 + 20 +12436.240514 + 30 +0.0 + 11 +15962.935585 + 21 +12621.856044 + 31 +0.0 + 0 +LINE + 5 +D37 + 8 +0 + 62 + 0 + 10 +16055.74335 + 20 +12714.663809 + 30 +0.0 + 11 +16241.35888 + 21 +12900.279339 + 31 +0.0 + 0 +LINE + 5 +D38 + 8 +0 + 62 + 0 + 10 +16334.166645 + 20 +12993.087104 + 30 +0.0 + 11 +16519.782175 + 21 +13178.702634 + 31 +0.0 + 0 +LINE + 5 +D39 + 8 +0 + 62 + 0 + 10 +16498.541661 + 20 +12415.0 + 30 +0.0 + 11 +16564.992137 + 21 +12481.450477 + 31 +0.0 + 0 +ENDBLK + 5 +D3A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X71 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X71 + 1 + + 0 +LINE + 5 +D3C + 8 +0 + 62 + 0 + 10 +15013.596279 + 20 +11599.344022 + 30 +0.0 + 11 +15013.596279 + 21 +11599.344022 + 31 +0.0 + 0 +LINE + 5 +D3D + 8 +0 + 62 + 0 + 10 +15011.076544 + 20 +11676.416973 + 30 +0.0 + 11 +15011.076544 + 21 +11676.416973 + 31 +0.0 + 0 +LINE + 5 +D3E + 8 +0 + 62 + 0 + 10 +15008.55681 + 20 +11753.489924 + 30 +0.0 + 11 +15008.55681 + 21 +11753.489924 + 31 +0.0 + 0 +LINE + 5 +D3F + 8 +0 + 62 + 0 + 10 +15060.124777 + 20 +11793.059417 + 30 +0.0 + 11 +15060.124777 + 21 +11793.059417 + 31 +0.0 + 0 +LINE + 5 +D40 + 8 +0 + 62 + 0 + 10 +15006.037076 + 20 +11830.562874 + 30 +0.0 + 11 +15006.037076 + 21 +11830.562874 + 31 +0.0 + 0 +LINE + 5 +D41 + 8 +0 + 62 + 0 + 10 +15057.605043 + 20 +11870.132367 + 30 +0.0 + 11 +15057.605043 + 21 +11870.132367 + 31 +0.0 + 0 +LINE + 5 +D42 + 8 +0 + 62 + 0 + 10 +15003.517341 + 20 +11907.635825 + 30 +0.0 + 11 +15003.517341 + 21 +11907.635825 + 31 +0.0 + 0 +LINE + 5 +D43 + 8 +0 + 62 + 0 + 10 +15055.085309 + 20 +11947.205318 + 30 +0.0 + 11 +15055.085309 + 21 +11947.205318 + 31 +0.0 + 0 +LINE + 5 +D44 + 8 +0 + 62 + 0 + 10 +15000.997607 + 20 +11984.708776 + 30 +0.0 + 11 +15000.997607 + 21 +11984.708776 + 31 +0.0 + 0 +LINE + 5 +D45 + 8 +0 + 62 + 0 + 10 +15052.565574 + 20 +12024.278269 + 30 +0.0 + 11 +15052.565574 + 21 +12024.278269 + 31 +0.0 + 0 +LINE + 5 +D46 + 8 +0 + 62 + 0 + 10 +15050.04584 + 20 +12101.35122 + 30 +0.0 + 11 +15050.04584 + 21 +12101.35122 + 31 +0.0 + 0 +LINE + 5 +D47 + 8 +0 + 62 + 0 + 10 +15047.526106 + 20 +12178.42417 + 30 +0.0 + 11 +15047.526106 + 21 +12178.42417 + 31 +0.0 + 0 +LINE + 5 +D48 + 8 +0 + 62 + 0 + 10 +15045.006371 + 20 +12255.497121 + 30 +0.0 + 11 +15045.006371 + 21 +12255.497121 + 31 +0.0 + 0 +LINE + 5 +D49 + 8 +0 + 62 + 0 + 10 +15042.486637 + 20 +12332.570072 + 30 +0.0 + 11 +15042.486637 + 21 +12332.570072 + 31 +0.0 + 0 +LINE + 5 +D4A + 8 +0 + 62 + 0 + 10 +15016.116013 + 20 +11522.271071 + 30 +0.0 + 11 +15016.116013 + 21 +11522.271071 + 31 +0.0 + 0 +LINE + 5 +D4B + 8 +0 + 62 + 0 + 10 +15018.635747 + 20 +11445.198121 + 30 +0.0 + 11 +15018.635747 + 21 +11445.198121 + 31 +0.0 + 0 +LINE + 5 +D4C + 8 +0 + 62 + 0 + 10 +15021.155482 + 20 +11368.12517 + 30 +0.0 + 11 +15021.155482 + 21 +11368.12517 + 31 +0.0 + 0 +LINE + 5 +D4D + 8 +0 + 62 + 0 + 10 +15023.675216 + 20 +11291.052219 + 30 +0.0 + 11 +15023.675216 + 21 +11291.052219 + 31 +0.0 + 0 +LINE + 5 +D4E + 8 +0 + 62 + 0 + 10 +15026.19495 + 20 +11213.979268 + 30 +0.0 + 11 +15026.19495 + 21 +11213.979268 + 31 +0.0 + 0 +LINE + 5 +D4F + 8 +0 + 62 + 0 + 10 +15028.714685 + 20 +11136.906318 + 30 +0.0 + 11 +15028.714685 + 21 +11136.906318 + 31 +0.0 + 0 +LINE + 5 +D50 + 8 +0 + 62 + 0 + 10 +15031.234419 + 20 +11059.833367 + 30 +0.0 + 11 +15031.234419 + 21 +11059.833367 + 31 +0.0 + 0 +LINE + 5 +D51 + 8 +0 + 62 + 0 + 10 +15014.419867 + 20 +11608.325891 + 30 +0.0 + 11 +15014.419867 + 21 +11608.325891 + 31 +0.0 + 0 +LINE + 5 +D52 + 8 +0 + 62 + 0 + 10 +15031.871201 + 20 +11714.189424 + 30 +0.0 + 11 +15031.871201 + 21 +11714.189424 + 31 +0.0 + 0 +LINE + 5 +D53 + 8 +0 + 62 + 0 + 10 +15052.691544 + 20 +11716.930474 + 30 +0.0 + 11 +15052.691544 + 21 +11716.930474 + 31 +0.0 + 0 +LINE + 5 +D54 + 8 +0 + 62 + 0 + 10 +15015.8117 + 20 +11815.641172 + 30 +0.0 + 11 +15015.8117 + 21 +11815.641172 + 31 +0.0 + 0 +LINE + 5 +D55 + 8 +0 + 62 + 0 + 10 +15048.331091 + 20 +11819.922432 + 30 +0.0 + 11 +15048.331091 + 21 +11819.922432 + 31 +0.0 + 0 +LINE + 5 +D56 + 8 +0 + 62 + 0 + 10 +15011.451248 + 20 +11918.63313 + 30 +0.0 + 11 +15011.451248 + 21 +11918.63313 + 31 +0.0 + 0 +LINE + 5 +D57 + 8 +0 + 62 + 0 + 10 +15028.902582 + 20 +12024.496663 + 30 +0.0 + 11 +15028.902582 + 21 +12024.496663 + 31 +0.0 + 0 +LINE + 5 +D58 + 8 +0 + 62 + 0 + 10 +15049.722924 + 20 +12027.237713 + 30 +0.0 + 11 +15049.722924 + 21 +12027.237713 + 31 +0.0 + 0 +LINE + 5 +D59 + 8 +0 + 62 + 0 + 10 +15012.843081 + 20 +12125.948411 + 30 +0.0 + 11 +15012.843081 + 21 +12125.948411 + 31 +0.0 + 0 +LINE + 5 +D5A + 8 +0 + 62 + 0 + 10 +15045.362472 + 20 +12130.22967 + 30 +0.0 + 11 +15045.362472 + 21 +12130.22967 + 31 +0.0 + 0 +LINE + 5 +D5B + 8 +0 + 62 + 0 + 10 +15008.482628 + 20 +12228.940369 + 30 +0.0 + 11 +15008.482628 + 21 +12228.940369 + 31 +0.0 + 0 +LINE + 5 +D5C + 8 +0 + 62 + 0 + 10 +15025.933963 + 20 +12334.803902 + 30 +0.0 + 11 +15025.933963 + 21 +12334.803902 + 31 +0.0 + 0 +LINE + 5 +D5D + 8 +0 + 62 + 0 + 10 +15046.754305 + 20 +12337.544952 + 30 +0.0 + 11 +15046.754305 + 21 +12337.544952 + 31 +0.0 + 0 +LINE + 5 +D5E + 8 +0 + 62 + 0 + 10 +15018.780319 + 20 +11505.333934 + 30 +0.0 + 11 +15018.780319 + 21 +11505.333934 + 31 +0.0 + 0 +LINE + 5 +D5F + 8 +0 + 62 + 0 + 10 +15051.299711 + 20 +11509.615193 + 30 +0.0 + 11 +15051.299711 + 21 +11509.615193 + 31 +0.0 + 0 +LINE + 5 +D60 + 8 +0 + 62 + 0 + 10 +15034.839821 + 20 +11403.882185 + 30 +0.0 + 11 +15034.839821 + 21 +11403.882185 + 31 +0.0 + 0 +LINE + 5 +D61 + 8 +0 + 62 + 0 + 10 +15055.660163 + 20 +11406.623235 + 30 +0.0 + 11 +15055.660163 + 21 +11406.623235 + 31 +0.0 + 0 +LINE + 5 +D62 + 8 +0 + 62 + 0 + 10 +15017.388486 + 20 +11298.018652 + 30 +0.0 + 11 +15017.388486 + 21 +11298.018652 + 31 +0.0 + 0 +LINE + 5 +D63 + 8 +0 + 62 + 0 + 10 +15000.928596 + 20 +11192.285645 + 30 +0.0 + 11 +15000.928596 + 21 +11192.285645 + 31 +0.0 + 0 +LINE + 5 +D64 + 8 +0 + 62 + 0 + 10 +15021.748938 + 20 +11195.026695 + 30 +0.0 + 11 +15021.748938 + 21 +11195.026695 + 31 +0.0 + 0 +LINE + 5 +D65 + 8 +0 + 62 + 0 + 10 +15054.26833 + 20 +11199.307954 + 30 +0.0 + 11 +15054.26833 + 21 +11199.307954 + 31 +0.0 + 0 +LINE + 5 +D66 + 8 +0 + 62 + 0 + 10 +15037.80844 + 20 +11093.574947 + 30 +0.0 + 11 +15037.80844 + 21 +11093.574947 + 31 +0.0 + 0 +LINE + 5 +D67 + 8 +0 + 62 + 0 + 10 +15058.628782 + 20 +11096.315997 + 30 +0.0 + 11 +15058.628782 + 21 +11096.315997 + 31 +0.0 + 0 +LINE + 5 +D68 + 8 +0 + 62 + 0 + 10 +15012.821249 + 20 +11653.215041 + 30 +0.0 + 11 +15012.821249 + 21 +11653.215041 + 31 +0.0 + 0 +LINE + 5 +D69 + 8 +0 + 62 + 0 + 10 +15029.689078 + 20 +11642.469049 + 30 +0.0 + 11 +15029.689078 + 21 +11642.469049 + 31 +0.0 + 0 +LINE + 5 +D6A + 8 +0 + 62 + 0 + 10 +15058.108127 + 20 +11703.947567 + 30 +0.0 + 11 +15058.108127 + 21 +11703.947567 + 31 +0.0 + 0 +LINE + 5 +D6B + 8 +0 + 62 + 0 + 10 +15025.802993 + 20 +11804.111656 + 30 +0.0 + 11 +15025.802993 + 21 +11804.111656 + 31 +0.0 + 0 +LINE + 5 +D6C + 8 +0 + 62 + 0 + 10 +15040.47152 + 20 +11953.933671 + 30 +0.0 + 11 +15040.47152 + 21 +11953.933671 + 31 +0.0 + 0 +LINE + 5 +D6D + 8 +0 + 62 + 0 + 10 +15057.339349 + 20 +11943.187679 + 30 +0.0 + 11 +15057.339349 + 21 +11943.187679 + 31 +0.0 + 0 +LINE + 5 +D6E + 8 +0 + 62 + 0 + 10 +15008.166385 + 20 +12054.097761 + 30 +0.0 + 11 +15008.166385 + 21 +12054.097761 + 31 +0.0 + 0 +LINE + 5 +D6F + 8 +0 + 62 + 0 + 10 +15025.034214 + 20 +12043.351769 + 30 +0.0 + 11 +15025.034214 + 21 +12043.351769 + 31 +0.0 + 0 +LINE + 5 +D70 + 8 +0 + 62 + 0 + 10 +15053.453264 + 20 +12104.830286 + 30 +0.0 + 11 +15053.453264 + 21 +12104.830286 + 31 +0.0 + 0 +LINE + 5 +D71 + 8 +0 + 62 + 0 + 10 +15021.148129 + 20 +12204.994375 + 30 +0.0 + 11 +15021.148129 + 21 +12204.994375 + 31 +0.0 + 0 +LINE + 5 +D72 + 8 +0 + 62 + 0 + 10 +15035.816656 + 20 +12354.816391 + 30 +0.0 + 11 +15035.816656 + 21 +12354.816391 + 31 +0.0 + 0 +LINE + 5 +D73 + 8 +0 + 62 + 0 + 10 +15052.684485 + 20 +12344.070399 + 30 +0.0 + 11 +15052.684485 + 21 +12344.070399 + 31 +0.0 + 0 +LINE + 5 +D74 + 8 +0 + 62 + 0 + 10 +15045.126383 + 20 +11553.050952 + 30 +0.0 + 11 +15045.126383 + 21 +11553.050952 + 31 +0.0 + 0 +LINE + 5 +D75 + 8 +0 + 62 + 0 + 10 +15061.994212 + 20 +11542.30496 + 30 +0.0 + 11 +15061.994212 + 21 +11542.30496 + 31 +0.0 + 0 +LINE + 5 +D76 + 8 +0 + 62 + 0 + 10 +15030.457856 + 20 +11403.228937 + 30 +0.0 + 11 +15030.457856 + 21 +11403.228937 + 31 +0.0 + 0 +LINE + 5 +D77 + 8 +0 + 62 + 0 + 10 +15002.038806 + 20 +11341.750419 + 30 +0.0 + 11 +15002.038806 + 21 +11341.750419 + 31 +0.0 + 0 +LINE + 5 +D78 + 8 +0 + 62 + 0 + 10 +15017.476112 + 20 +11252.332322 + 30 +0.0 + 11 +15017.476112 + 21 +11252.332322 + 31 +0.0 + 0 +LINE + 5 +D79 + 8 +0 + 62 + 0 + 10 +15034.343941 + 20 +11241.58633 + 30 +0.0 + 11 +15034.343941 + 21 +11241.58633 + 31 +0.0 + 0 +LINE + 5 +D7A + 8 +0 + 62 + 0 + 10 +15049.781246 + 20 +11152.168233 + 30 +0.0 + 11 +15049.781246 + 21 +11152.168233 + 31 +0.0 + 0 +LINE + 5 +D7B + 8 +0 + 62 + 0 + 10 +15002.807585 + 20 +11102.510307 + 30 +0.0 + 11 +15002.807585 + 21 +11102.510307 + 31 +0.0 + 0 +LINE + 5 +D7C + 8 +0 + 62 + 0 + 10 +15035.112719 + 20 +11002.346217 + 30 +0.0 + 11 +15035.112719 + 21 +11002.346217 + 31 +0.0 + 0 +LINE + 5 +D7D + 8 +0 + 62 + 0 + 10 +15008.763723 + 20 +11627.900024 + 30 +0.0 + 11 +15008.763723 + 21 +11627.900024 + 31 +0.0 + 0 +LINE + 5 +D7E + 8 +0 + 62 + 0 + 10 +15016.136496 + 20 +11621.144122 + 30 +0.0 + 11 +15016.136496 + 21 +11621.144122 + 31 +0.0 + 0 +LINE + 5 +D7F + 8 +0 + 62 + 0 + 10 +15050.935986 + 20 +11589.256264 + 30 +0.0 + 11 +15050.935986 + 21 +11589.256264 + 31 +0.0 + 0 +LINE + 5 +D80 + 8 +0 + 62 + 0 + 10 +15007.210571 + 20 +11774.614549 + 30 +0.0 + 11 +15007.210571 + 21 +11774.614549 + 31 +0.0 + 0 +LINE + 5 +D81 + 8 +0 + 62 + 0 + 10 +15047.023547 + 20 +11738.132678 + 30 +0.0 + 11 +15047.023547 + 21 +11738.132678 + 31 +0.0 + 0 +LINE + 5 +D82 + 8 +0 + 62 + 0 + 10 +15054.39632 + 20 +11731.376775 + 30 +0.0 + 11 +15054.39632 + 21 +11731.376775 + 31 +0.0 + 0 +LINE + 5 +D83 + 8 +0 + 62 + 0 + 10 +15003.298132 + 20 +11923.490962 + 30 +0.0 + 11 +15003.298132 + 21 +11923.490962 + 31 +0.0 + 0 +LINE + 5 +D84 + 8 +0 + 62 + 0 + 10 +15010.670905 + 20 +11916.73506 + 30 +0.0 + 11 +15010.670905 + 21 +11916.73506 + 31 +0.0 + 0 +LINE + 5 +D85 + 8 +0 + 62 + 0 + 10 +15045.470395 + 20 +11884.847202 + 30 +0.0 + 11 +15045.470395 + 21 +11884.847202 + 31 +0.0 + 0 +LINE + 5 +D86 + 8 +0 + 62 + 0 + 10 +15001.74498 + 20 +12070.205487 + 30 +0.0 + 11 +15001.74498 + 21 +12070.205487 + 31 +0.0 + 0 +LINE + 5 +D87 + 8 +0 + 62 + 0 + 10 +15041.557956 + 20 +12033.723616 + 30 +0.0 + 11 +15041.557956 + 21 +12033.723616 + 31 +0.0 + 0 +LINE + 5 +D88 + 8 +0 + 62 + 0 + 10 +15048.930729 + 20 +12026.967714 + 30 +0.0 + 11 +15048.930729 + 21 +12026.967714 + 31 +0.0 + 0 +LINE + 5 +D89 + 8 +0 + 62 + 0 + 10 +15005.205314 + 20 +12212.325999 + 30 +0.0 + 11 +15005.205314 + 21 +12212.325999 + 31 +0.0 + 0 +LINE + 5 +D8A + 8 +0 + 62 + 0 + 10 +15040.004804 + 20 +12180.438141 + 30 +0.0 + 11 +15040.004804 + 21 +12180.438141 + 31 +0.0 + 0 +LINE + 5 +D8B + 8 +0 + 62 + 0 + 10 +15036.092365 + 20 +12329.314554 + 30 +0.0 + 11 +15036.092365 + 21 +12329.314554 + 31 +0.0 + 0 +LINE + 5 +D8C + 8 +0 + 62 + 0 + 10 +15043.465138 + 20 +12322.558652 + 30 +0.0 + 11 +15043.465138 + 21 +12322.558652 + 31 +0.0 + 0 +LINE + 5 +D8D + 8 +0 + 62 + 0 + 10 +15012.676162 + 20 +11479.02361 + 30 +0.0 + 11 +15012.676162 + 21 +11479.02361 + 31 +0.0 + 0 +LINE + 5 +D8E + 8 +0 + 62 + 0 + 10 +15052.489138 + 20 +11442.541739 + 30 +0.0 + 11 +15052.489138 + 21 +11442.541739 + 31 +0.0 + 0 +LINE + 5 +D8F + 8 +0 + 62 + 0 + 10 +15059.861912 + 20 +11435.785837 + 30 +0.0 + 11 +15059.861912 + 21 +11435.785837 + 31 +0.0 + 0 +LINE + 5 +D90 + 8 +0 + 62 + 0 + 10 +15014.229314 + 20 +11332.309085 + 30 +0.0 + 11 +15014.229314 + 21 +11332.309085 + 31 +0.0 + 0 +LINE + 5 +D91 + 8 +0 + 62 + 0 + 10 +15021.602087 + 20 +11325.553183 + 30 +0.0 + 11 +15021.602087 + 21 +11325.553183 + 31 +0.0 + 0 +LINE + 5 +D92 + 8 +0 + 62 + 0 + 10 +15056.401578 + 20 +11293.665326 + 30 +0.0 + 11 +15056.401578 + 21 +11293.665326 + 31 +0.0 + 0 +LINE + 5 +D93 + 8 +0 + 62 + 0 + 10 +15018.141753 + 20 +11183.432672 + 30 +0.0 + 11 +15018.141753 + 21 +11183.432672 + 31 +0.0 + 0 +LINE + 5 +D94 + 8 +0 + 62 + 0 + 10 +15057.954729 + 20 +11146.950801 + 30 +0.0 + 11 +15057.954729 + 21 +11146.950801 + 31 +0.0 + 0 +LINE + 5 +D95 + 8 +0 + 62 + 0 + 10 +15019.694905 + 20 +11036.718147 + 30 +0.0 + 11 +15019.694905 + 21 +11036.718147 + 31 +0.0 + 0 +LINE + 5 +D96 + 8 +0 + 62 + 0 + 10 +15027.067678 + 20 +11029.962245 + 30 +0.0 + 11 +15027.067678 + 21 +11029.962245 + 31 +0.0 + 0 +ENDBLK + 5 +D97 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X72 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X72 + 1 + + 0 +LINE + 5 +D99 + 8 +0 + 62 + 0 + 10 +15584.734698 + 20 +11721.568302 + 30 +0.0 + 11 +15584.734698 + 21 +11721.568302 + 31 +0.0 + 0 +LINE + 5 +D9A + 8 +0 + 62 + 0 + 10 +15582.214964 + 20 +11798.641252 + 30 +0.0 + 11 +15582.214964 + 21 +11798.641252 + 31 +0.0 + 0 +LINE + 5 +D9B + 8 +0 + 62 + 0 + 10 +15579.69523 + 20 +11875.714203 + 30 +0.0 + 11 +15579.69523 + 21 +11875.714203 + 31 +0.0 + 0 +LINE + 5 +D9C + 8 +0 + 62 + 0 + 10 +15577.175495 + 20 +11952.787154 + 30 +0.0 + 11 +15577.175495 + 21 +11952.787154 + 31 +0.0 + 0 +LINE + 5 +D9D + 8 +0 + 62 + 0 + 10 +15574.655761 + 20 +12029.860105 + 30 +0.0 + 11 +15574.655761 + 21 +12029.860105 + 31 +0.0 + 0 +LINE + 5 +D9E + 8 +0 + 62 + 0 + 10 +15572.136027 + 20 +12106.933056 + 30 +0.0 + 11 +15572.136027 + 21 +12106.933056 + 31 +0.0 + 0 +LINE + 5 +D9F + 8 +0 + 62 + 0 + 10 +15569.616292 + 20 +12184.006006 + 30 +0.0 + 11 +15569.616292 + 21 +12184.006006 + 31 +0.0 + 0 +LINE + 5 +DA0 + 8 +0 + 62 + 0 + 10 +15623.564319 + 20 +12225.401783 + 30 +0.0 + 11 +15623.564319 + 21 +12225.401783 + 31 +0.0 + 0 +LINE + 5 +DA1 + 8 +0 + 62 + 0 + 10 +15567.096558 + 20 +12261.078957 + 30 +0.0 + 11 +15567.096558 + 21 +12261.078957 + 31 +0.0 + 0 +LINE + 5 +DA2 + 8 +0 + 62 + 0 + 10 +15621.044585 + 20 +12302.474734 + 30 +0.0 + 11 +15621.044585 + 21 +12302.474734 + 31 +0.0 + 0 +LINE + 5 +DA3 + 8 +0 + 62 + 0 + 10 +15564.576824 + 20 +12338.151908 + 30 +0.0 + 11 +15564.576824 + 21 +12338.151908 + 31 +0.0 + 0 +LINE + 5 +DA4 + 8 +0 + 62 + 0 + 10 +15587.254433 + 20 +11644.495351 + 30 +0.0 + 11 +15587.254433 + 21 +11644.495351 + 31 +0.0 + 0 +LINE + 5 +DA5 + 8 +0 + 62 + 0 + 10 +15589.774167 + 20 +11567.4224 + 30 +0.0 + 11 +15589.774167 + 21 +11567.4224 + 31 +0.0 + 0 +LINE + 5 +DA6 + 8 +0 + 62 + 0 + 10 +15592.293901 + 20 +11490.349449 + 30 +0.0 + 11 +15592.293901 + 21 +11490.349449 + 31 +0.0 + 0 +LINE + 5 +DA7 + 8 +0 + 62 + 0 + 10 +15594.813636 + 20 +11413.276499 + 30 +0.0 + 11 +15594.813636 + 21 +11413.276499 + 31 +0.0 + 0 +LINE + 5 +DA8 + 8 +0 + 62 + 0 + 10 +15597.33337 + 20 +11336.203548 + 30 +0.0 + 11 +15597.33337 + 21 +11336.203548 + 31 +0.0 + 0 +LINE + 5 +DA9 + 8 +0 + 62 + 0 + 10 +15599.853104 + 20 +11259.130597 + 30 +0.0 + 11 +15599.853104 + 21 +11259.130597 + 31 +0.0 + 0 +LINE + 5 +DAA + 8 +0 + 62 + 0 + 10 +15602.372839 + 20 +11182.057646 + 30 +0.0 + 11 +15602.372839 + 21 +11182.057646 + 31 +0.0 + 0 +LINE + 5 +DAB + 8 +0 + 62 + 0 + 10 +15604.892573 + 20 +11104.984696 + 30 +0.0 + 11 +15604.892573 + 21 +11104.984696 + 31 +0.0 + 0 +LINE + 5 +DAC + 8 +0 + 62 + 0 + 10 +15607.412307 + 20 +11027.911745 + 30 +0.0 + 11 +15607.412307 + 21 +11027.911745 + 31 +0.0 + 0 +LINE + 5 +DAD + 8 +0 + 62 + 0 + 10 +15589.65427 + 20 +11580.490915 + 30 +0.0 + 11 +15589.65427 + 21 +11580.490915 + 31 +0.0 + 0 +LINE + 5 +DAE + 8 +0 + 62 + 0 + 10 +15607.105605 + 20 +11686.354449 + 30 +0.0 + 11 +15607.105605 + 21 +11686.354449 + 31 +0.0 + 0 +LINE + 5 +DAF + 8 +0 + 62 + 0 + 10 +15570.225761 + 20 +11785.065147 + 30 +0.0 + 11 +15570.225761 + 21 +11785.065147 + 31 +0.0 + 0 +LINE + 5 +DB0 + 8 +0 + 62 + 0 + 10 +15591.046103 + 20 +11787.806197 + 30 +0.0 + 11 +15591.046103 + 21 +11787.806197 + 31 +0.0 + 0 +LINE + 5 +DB1 + 8 +0 + 62 + 0 + 10 +15623.565495 + 20 +11792.087456 + 30 +0.0 + 11 +15623.565495 + 21 +11792.087456 + 31 +0.0 + 0 +LINE + 5 +DB2 + 8 +0 + 62 + 0 + 10 +15586.685651 + 20 +11890.798154 + 30 +0.0 + 11 +15586.685651 + 21 +11890.798154 + 31 +0.0 + 0 +LINE + 5 +DB3 + 8 +0 + 62 + 0 + 10 +15604.136986 + 20 +11996.661687 + 30 +0.0 + 11 +15604.136986 + 21 +11996.661687 + 31 +0.0 + 0 +LINE + 5 +DB4 + 8 +0 + 62 + 0 + 10 +15624.957328 + 20 +11999.402737 + 30 +0.0 + 11 +15624.957328 + 21 +11999.402737 + 31 +0.0 + 0 +LINE + 5 +DB5 + 8 +0 + 62 + 0 + 10 +15567.257142 + 20 +12095.372386 + 30 +0.0 + 11 +15567.257142 + 21 +12095.372386 + 31 +0.0 + 0 +LINE + 5 +DB6 + 8 +0 + 62 + 0 + 10 +15588.077484 + 20 +12098.113436 + 30 +0.0 + 11 +15588.077484 + 21 +12098.113436 + 31 +0.0 + 0 +LINE + 5 +DB7 + 8 +0 + 62 + 0 + 10 +15620.596875 + 20 +12102.394695 + 30 +0.0 + 11 +15620.596875 + 21 +12102.394695 + 31 +0.0 + 0 +LINE + 5 +DB8 + 8 +0 + 62 + 0 + 10 +15583.717032 + 20 +12201.105393 + 30 +0.0 + 11 +15583.717032 + 21 +12201.105393 + 31 +0.0 + 0 +LINE + 5 +DB9 + 8 +0 + 62 + 0 + 10 +15601.168366 + 20 +12306.968926 + 30 +0.0 + 11 +15601.168366 + 21 +12306.968926 + 31 +0.0 + 0 +LINE + 5 +DBA + 8 +0 + 62 + 0 + 10 +15621.988708 + 20 +12309.709976 + 30 +0.0 + 11 +15621.988708 + 21 +12309.709976 + 31 +0.0 + 0 +LINE + 5 +DBB + 8 +0 + 62 + 0 + 10 +15573.19438 + 20 +11474.757908 + 30 +0.0 + 11 +15573.19438 + 21 +11474.757908 + 31 +0.0 + 0 +LINE + 5 +DBC + 8 +0 + 62 + 0 + 10 +15594.014723 + 20 +11477.498958 + 30 +0.0 + 11 +15594.014723 + 21 +11477.498958 + 31 +0.0 + 0 +LINE + 5 +DBD + 8 +0 + 62 + 0 + 10 +15610.074224 + 20 +11376.04721 + 30 +0.0 + 11 +15610.074224 + 21 +11376.04721 + 31 +0.0 + 0 +LINE + 5 +DBE + 8 +0 + 62 + 0 + 10 +15592.622889 + 20 +11270.183676 + 30 +0.0 + 11 +15592.622889 + 21 +11270.183676 + 31 +0.0 + 0 +LINE + 5 +DBF + 8 +0 + 62 + 0 + 10 +15576.163 + 20 +11164.450669 + 30 +0.0 + 11 +15576.163 + 21 +11164.450669 + 31 +0.0 + 0 +LINE + 5 +DC0 + 8 +0 + 62 + 0 + 10 +15596.983342 + 20 +11167.191719 + 30 +0.0 + 11 +15596.983342 + 21 +11167.191719 + 31 +0.0 + 0 +LINE + 5 +DC1 + 8 +0 + 62 + 0 + 10 +15613.042843 + 20 +11065.739971 + 30 +0.0 + 11 +15613.042843 + 21 +11065.739971 + 31 +0.0 + 0 +LINE + 5 +DC2 + 8 +0 + 62 + 0 + 10 +15603.344487 + 20 +11754.510941 + 30 +0.0 + 11 +15603.344487 + 21 +11754.510941 + 31 +0.0 + 0 +LINE + 5 +DC3 + 8 +0 + 62 + 0 + 10 +15620.212315 + 20 +11743.764949 + 30 +0.0 + 11 +15620.212315 + 21 +11743.764949 + 31 +0.0 + 0 +LINE + 5 +DC4 + 8 +0 + 62 + 0 + 10 +15571.039352 + 20 +11854.675031 + 30 +0.0 + 11 +15571.039352 + 21 +11854.675031 + 31 +0.0 + 0 +LINE + 5 +DC5 + 8 +0 + 62 + 0 + 10 +15587.907181 + 20 +11843.929039 + 30 +0.0 + 11 +15587.907181 + 21 +11843.929039 + 31 +0.0 + 0 +LINE + 5 +DC6 + 8 +0 + 62 + 0 + 10 +15616.326231 + 20 +11905.407556 + 30 +0.0 + 11 +15616.326231 + 21 +11905.407556 + 31 +0.0 + 0 +LINE + 5 +DC7 + 8 +0 + 62 + 0 + 10 +15584.021096 + 20 +12005.571645 + 30 +0.0 + 11 +15584.021096 + 21 +12005.571645 + 31 +0.0 + 0 +LINE + 5 +DC8 + 8 +0 + 62 + 0 + 10 +15598.689623 + 20 +12155.393661 + 30 +0.0 + 11 +15598.689623 + 21 +12155.393661 + 31 +0.0 + 0 +LINE + 5 +DC9 + 8 +0 + 62 + 0 + 10 +15615.557452 + 20 +12144.647669 + 30 +0.0 + 11 +15615.557452 + 21 +12144.647669 + 31 +0.0 + 0 +LINE + 5 +DCA + 8 +0 + 62 + 0 + 10 +15566.384489 + 20 +12255.55775 + 30 +0.0 + 11 +15566.384489 + 21 +12255.55775 + 31 +0.0 + 0 +LINE + 5 +DCB + 8 +0 + 62 + 0 + 10 +15583.252318 + 20 +12244.811758 + 30 +0.0 + 11 +15583.252318 + 21 +12244.811758 + 31 +0.0 + 0 +LINE + 5 +DCC + 8 +0 + 62 + 0 + 10 +15611.671367 + 20 +12306.290275 + 30 +0.0 + 11 +15611.671367 + 21 +12306.290275 + 31 +0.0 + 0 +LINE + 5 +DCD + 8 +0 + 62 + 0 + 10 +15588.67596 + 20 +11604.688926 + 30 +0.0 + 11 +15588.67596 + 21 +11604.688926 + 31 +0.0 + 0 +LINE + 5 +DCE + 8 +0 + 62 + 0 + 10 +15620.981094 + 20 +11504.524837 + 30 +0.0 + 11 +15620.981094 + 21 +11504.524837 + 31 +0.0 + 0 +LINE + 5 +DCF + 8 +0 + 62 + 0 + 10 +15575.694215 + 20 +11453.792311 + 30 +0.0 + 11 +15575.694215 + 21 +11453.792311 + 31 +0.0 + 0 +LINE + 5 +DD0 + 8 +0 + 62 + 0 + 10 +15592.562044 + 20 +11443.046319 + 30 +0.0 + 11 +15592.562044 + 21 +11443.046319 + 31 +0.0 + 0 +LINE + 5 +DD1 + 8 +0 + 62 + 0 + 10 +15607.99935 + 20 +11353.628222 + 30 +0.0 + 11 +15607.99935 + 21 +11353.628222 + 31 +0.0 + 0 +LINE + 5 +DD2 + 8 +0 + 62 + 0 + 10 +15624.867179 + 20 +11342.88223 + 30 +0.0 + 11 +15624.867179 + 21 +11342.88223 + 31 +0.0 + 0 +LINE + 5 +DD3 + 8 +0 + 62 + 0 + 10 +15593.330823 + 20 +11203.806207 + 30 +0.0 + 11 +15593.330823 + 21 +11203.806207 + 31 +0.0 + 0 +LINE + 5 +DD4 + 8 +0 + 62 + 0 + 10 +15564.911773 + 20 +11142.327689 + 30 +0.0 + 11 +15564.911773 + 21 +11142.327689 + 31 +0.0 + 0 +LINE + 5 +DD5 + 8 +0 + 62 + 0 + 10 +15580.349079 + 20 +11052.909592 + 30 +0.0 + 11 +15580.349079 + 21 +11052.909592 + 31 +0.0 + 0 +LINE + 5 +DD6 + 8 +0 + 62 + 0 + 10 +15597.216908 + 20 +11042.1636 + 30 +0.0 + 11 +15597.216908 + 21 +11042.1636 + 31 +0.0 + 0 +LINE + 5 +DD7 + 8 +0 + 62 + 0 + 10 +15571.729219 + 20 +11693.202483 + 30 +0.0 + 11 +15571.729219 + 21 +11693.202483 + 31 +0.0 + 0 +LINE + 5 +DD8 + 8 +0 + 62 + 0 + 10 +15579.101993 + 20 +11686.446581 + 30 +0.0 + 11 +15579.101993 + 21 +11686.446581 + 31 +0.0 + 0 +LINE + 5 +DD9 + 8 +0 + 62 + 0 + 10 +15613.901483 + 20 +11654.558723 + 30 +0.0 + 11 +15613.901483 + 21 +11654.558723 + 31 +0.0 + 0 +LINE + 5 +DDA + 8 +0 + 62 + 0 + 10 +15570.176067 + 20 +11839.917008 + 30 +0.0 + 11 +15570.176067 + 21 +11839.917008 + 31 +0.0 + 0 +LINE + 5 +DDB + 8 +0 + 62 + 0 + 10 +15609.989044 + 20 +11803.435137 + 30 +0.0 + 11 +15609.989044 + 21 +11803.435137 + 31 +0.0 + 0 +LINE + 5 +DDC + 8 +0 + 62 + 0 + 10 +15617.361817 + 20 +11796.679235 + 30 +0.0 + 11 +15617.361817 + 21 +11796.679235 + 31 +0.0 + 0 +LINE + 5 +DDD + 8 +0 + 62 + 0 + 10 +15566.263628 + 20 +11988.793422 + 30 +0.0 + 11 +15566.263628 + 21 +11988.793422 + 31 +0.0 + 0 +LINE + 5 +DDE + 8 +0 + 62 + 0 + 10 +15573.636401 + 20 +11982.03752 + 30 +0.0 + 11 +15573.636401 + 21 +11982.03752 + 31 +0.0 + 0 +LINE + 5 +DDF + 8 +0 + 62 + 0 + 10 +15608.435892 + 20 +11950.149662 + 30 +0.0 + 11 +15608.435892 + 21 +11950.149662 + 31 +0.0 + 0 +LINE + 5 +DE0 + 8 +0 + 62 + 0 + 10 +15564.710476 + 20 +12135.507947 + 30 +0.0 + 11 +15564.710476 + 21 +12135.507947 + 31 +0.0 + 0 +LINE + 5 +DE1 + 8 +0 + 62 + 0 + 10 +15604.523452 + 20 +12099.026075 + 30 +0.0 + 11 +15604.523452 + 21 +12099.026075 + 31 +0.0 + 0 +LINE + 5 +DE2 + 8 +0 + 62 + 0 + 10 +15611.896226 + 20 +12092.270173 + 30 +0.0 + 11 +15611.896226 + 21 +12092.270173 + 31 +0.0 + 0 +LINE + 5 +DE3 + 8 +0 + 62 + 0 + 10 +15568.17081 + 20 +12277.628458 + 30 +0.0 + 11 +15568.17081 + 21 +12277.628458 + 31 +0.0 + 0 +LINE + 5 +DE4 + 8 +0 + 62 + 0 + 10 +15602.970301 + 20 +12245.7406 + 30 +0.0 + 11 +15602.970301 + 21 +12245.7406 + 31 +0.0 + 0 +LINE + 5 +DE5 + 8 +0 + 62 + 0 + 10 +15575.641659 + 20 +11544.32607 + 30 +0.0 + 11 +15575.641659 + 21 +11544.32607 + 31 +0.0 + 0 +LINE + 5 +DE6 + 8 +0 + 62 + 0 + 10 +15615.454635 + 20 +11507.844198 + 30 +0.0 + 11 +15615.454635 + 21 +11507.844198 + 31 +0.0 + 0 +LINE + 5 +DE7 + 8 +0 + 62 + 0 + 10 +15622.827408 + 20 +11501.088296 + 30 +0.0 + 11 +15622.827408 + 21 +11501.088296 + 31 +0.0 + 0 +LINE + 5 +DE8 + 8 +0 + 62 + 0 + 10 +15577.19481 + 20 +11397.611545 + 30 +0.0 + 11 +15577.19481 + 21 +11397.611545 + 31 +0.0 + 0 +LINE + 5 +DE9 + 8 +0 + 62 + 0 + 10 +15584.567584 + 20 +11390.855643 + 30 +0.0 + 11 +15584.567584 + 21 +11390.855643 + 31 +0.0 + 0 +LINE + 5 +DEA + 8 +0 + 62 + 0 + 10 +15619.367074 + 20 +11358.967785 + 30 +0.0 + 11 +15619.367074 + 21 +11358.967785 + 31 +0.0 + 0 +LINE + 5 +DEB + 8 +0 + 62 + 0 + 10 +15581.10725 + 20 +11248.735131 + 30 +0.0 + 11 +15581.10725 + 21 +11248.735131 + 31 +0.0 + 0 +LINE + 5 +DEC + 8 +0 + 62 + 0 + 10 +15620.920226 + 20 +11212.25326 + 30 +0.0 + 11 +15620.920226 + 21 +11212.25326 + 31 +0.0 + 0 +LINE + 5 +DED + 8 +0 + 62 + 0 + 10 +15582.660402 + 20 +11102.020606 + 30 +0.0 + 11 +15582.660402 + 21 +11102.020606 + 31 +0.0 + 0 +LINE + 5 +DEE + 8 +0 + 62 + 0 + 10 +15590.033175 + 20 +11095.264704 + 30 +0.0 + 11 +15590.033175 + 21 +11095.264704 + 31 +0.0 + 0 +LINE + 5 +DEF + 8 +0 + 62 + 0 + 10 +15624.832665 + 20 +11063.376846 + 30 +0.0 + 11 +15624.832665 + 21 +11063.376846 + 31 +0.0 + 0 +ENDBLK + 5 +DF0 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X73 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X73 + 1 + + 0 +LINE + 5 +DF2 + 8 +0 + 62 + 0 + 10 +15017.602141 + 20 +9785.270378 + 30 +0.0 + 11 +15017.602141 + 21 +9785.270378 + 31 +0.0 + 0 +LINE + 5 +DF3 + 8 +0 + 62 + 0 + 10 +15015.082407 + 20 +9862.343328 + 30 +0.0 + 11 +15015.082407 + 21 +9862.343328 + 31 +0.0 + 0 +LINE + 5 +DF4 + 8 +0 + 62 + 0 + 10 +15012.562672 + 20 +9939.416279 + 30 +0.0 + 11 +15012.562672 + 21 +9939.416279 + 31 +0.0 + 0 +LINE + 5 +DF5 + 8 +0 + 62 + 0 + 10 +15010.042938 + 20 +10016.48923 + 30 +0.0 + 11 +15010.042938 + 21 +10016.48923 + 31 +0.0 + 0 +LINE + 5 +DF6 + 8 +0 + 62 + 0 + 10 +15007.523204 + 20 +10093.562181 + 30 +0.0 + 11 +15007.523204 + 21 +10093.562181 + 31 +0.0 + 0 +LINE + 5 +DF7 + 8 +0 + 62 + 0 + 10 +15061.471231 + 20 +10134.957958 + 30 +0.0 + 11 +15061.471231 + 21 +10134.957958 + 31 +0.0 + 0 +LINE + 5 +DF8 + 8 +0 + 62 + 0 + 10 +15005.003469 + 20 +10170.635131 + 30 +0.0 + 11 +15005.003469 + 21 +10170.635131 + 31 +0.0 + 0 +LINE + 5 +DF9 + 8 +0 + 62 + 0 + 10 +15058.951497 + 20 +10212.030908 + 30 +0.0 + 11 +15058.951497 + 21 +10212.030908 + 31 +0.0 + 0 +LINE + 5 +DFA + 8 +0 + 62 + 0 + 10 +15002.483735 + 20 +10247.708082 + 30 +0.0 + 11 +15002.483735 + 21 +10247.708082 + 31 +0.0 + 0 +LINE + 5 +DFB + 8 +0 + 62 + 0 + 10 +15056.431762 + 20 +10289.103859 + 30 +0.0 + 11 +15056.431762 + 21 +10289.103859 + 31 +0.0 + 0 +LINE + 5 +DFC + 8 +0 + 62 + 0 + 10 +15053.912028 + 20 +10366.17681 + 30 +0.0 + 11 +15053.912028 + 21 +10366.17681 + 31 +0.0 + 0 +LINE + 5 +DFD + 8 +0 + 62 + 0 + 10 +15020.121875 + 20 +9708.197427 + 30 +0.0 + 11 +15020.121875 + 21 +9708.197427 + 31 +0.0 + 0 +LINE + 5 +DFE + 8 +0 + 62 + 0 + 10 +15022.64161 + 20 +9631.124476 + 30 +0.0 + 11 +15022.64161 + 21 +9631.124476 + 31 +0.0 + 0 +LINE + 5 +DFF + 8 +0 + 62 + 0 + 10 +15025.161344 + 20 +9554.051525 + 30 +0.0 + 11 +15025.161344 + 21 +9554.051525 + 31 +0.0 + 0 +LINE + 5 +E00 + 8 +0 + 62 + 0 + 10 +15027.681078 + 20 +9476.978574 + 30 +0.0 + 11 +15027.681078 + 21 +9476.978574 + 31 +0.0 + 0 +LINE + 5 +E01 + 8 +0 + 62 + 0 + 10 +15030.200813 + 20 +9399.905624 + 30 +0.0 + 11 +15030.200813 + 21 +9399.905624 + 31 +0.0 + 0 +LINE + 5 +E02 + 8 +0 + 62 + 0 + 10 +15032.720547 + 20 +9322.832673 + 30 +0.0 + 11 +15032.720547 + 21 +9322.832673 + 31 +0.0 + 0 +LINE + 5 +E03 + 8 +0 + 62 + 0 + 10 +15035.240281 + 20 +9245.759722 + 30 +0.0 + 11 +15035.240281 + 21 +9245.759722 + 31 +0.0 + 0 +LINE + 5 +E04 + 8 +0 + 62 + 0 + 10 +15037.760016 + 20 +9168.686771 + 30 +0.0 + 11 +15037.760016 + 21 +9168.686771 + 31 +0.0 + 0 +LINE + 5 +E05 + 8 +0 + 62 + 0 + 10 +15040.27975 + 20 +9091.613821 + 30 +0.0 + 11 +15040.27975 + 21 +9091.613821 + 31 +0.0 + 0 +LINE + 5 +E06 + 8 +0 + 62 + 0 + 10 +15015.771693 + 20 +9640.74945 + 30 +0.0 + 11 +15015.771693 + 21 +9640.74945 + 31 +0.0 + 0 +LINE + 5 +E07 + 8 +0 + 62 + 0 + 10 +15036.592035 + 20 +9643.4905 + 30 +0.0 + 11 +15036.592035 + 21 +9643.4905 + 31 +0.0 + 0 +LINE + 5 +E08 + 8 +0 + 62 + 0 + 10 +15032.231582 + 20 +9746.482458 + 30 +0.0 + 11 +15032.231582 + 21 +9746.482458 + 31 +0.0 + 0 +LINE + 5 +E09 + 8 +0 + 62 + 0 + 10 +15049.682917 + 20 +9852.345991 + 30 +0.0 + 11 +15049.682917 + 21 +9852.345991 + 31 +0.0 + 0 +LINE + 5 +E0A + 8 +0 + 62 + 0 + 10 +15012.803073 + 20 +9951.056689 + 30 +0.0 + 11 +15012.803073 + 21 +9951.056689 + 31 +0.0 + 0 +LINE + 5 +E0B + 8 +0 + 62 + 0 + 10 +15033.623415 + 20 +9953.797739 + 30 +0.0 + 11 +15033.623415 + 21 +9953.797739 + 31 +0.0 + 0 +LINE + 5 +E0C + 8 +0 + 62 + 0 + 10 +15029.262963 + 20 +10056.789696 + 30 +0.0 + 11 +15029.262963 + 21 +10056.789696 + 31 +0.0 + 0 +LINE + 5 +E0D + 8 +0 + 62 + 0 + 10 +15046.714298 + 20 +10162.65323 + 30 +0.0 + 11 +15046.714298 + 21 +10162.65323 + 31 +0.0 + 0 +LINE + 5 +E0E + 8 +0 + 62 + 0 + 10 +15009.834454 + 20 +10261.363928 + 30 +0.0 + 11 +15009.834454 + 21 +10261.363928 + 31 +0.0 + 0 +LINE + 5 +E0F + 8 +0 + 62 + 0 + 10 +15030.654796 + 20 +10264.104978 + 30 +0.0 + 11 +15030.654796 + 21 +10264.104978 + 31 +0.0 + 0 +LINE + 5 +E10 + 8 +0 + 62 + 0 + 10 +15026.294344 + 20 +10367.096935 + 30 +0.0 + 11 +15026.294344 + 21 +10367.096935 + 31 +0.0 + 0 +LINE + 5 +E11 + 8 +0 + 62 + 0 + 10 +15052.651536 + 20 +9542.038752 + 30 +0.0 + 11 +15052.651536 + 21 +9542.038752 + 31 +0.0 + 0 +LINE + 5 +E12 + 8 +0 + 62 + 0 + 10 +15002.68081 + 20 +9431.89396 + 30 +0.0 + 11 +15002.68081 + 21 +9431.89396 + 31 +0.0 + 0 +LINE + 5 +E13 + 8 +0 + 62 + 0 + 10 +15035.200202 + 20 +9436.175219 + 30 +0.0 + 11 +15035.200202 + 21 +9436.175219 + 31 +0.0 + 0 +LINE + 5 +E14 + 8 +0 + 62 + 0 + 10 +15018.740312 + 20 +9330.442211 + 30 +0.0 + 11 +15018.740312 + 21 +9330.442211 + 31 +0.0 + 0 +LINE + 5 +E15 + 8 +0 + 62 + 0 + 10 +15039.560654 + 20 +9333.183261 + 30 +0.0 + 11 +15039.560654 + 21 +9333.183261 + 31 +0.0 + 0 +LINE + 5 +E16 + 8 +0 + 62 + 0 + 10 +15001.288977 + 20 +9224.578678 + 30 +0.0 + 11 +15001.288977 + 21 +9224.578678 + 31 +0.0 + 0 +LINE + 5 +E17 + 8 +0 + 62 + 0 + 10 +15055.620156 + 20 +9231.731513 + 30 +0.0 + 11 +15055.620156 + 21 +9231.731513 + 31 +0.0 + 0 +LINE + 5 +E18 + 8 +0 + 62 + 0 + 10 +15005.649429 + 20 +9121.586721 + 30 +0.0 + 11 +15005.649429 + 21 +9121.586721 + 31 +0.0 + 0 +LINE + 5 +E19 + 8 +0 + 62 + 0 + 10 +15038.168821 + 20 +9125.86798 + 30 +0.0 + 11 +15038.168821 + 21 +9125.86798 + 31 +0.0 + 0 +LINE + 5 +E1A + 8 +0 + 62 + 0 + 10 +15036.095565 + 20 +9648.801445 + 30 +0.0 + 11 +15036.095565 + 21 +9648.801445 + 31 +0.0 + 0 +LINE + 5 +E1B + 8 +0 + 62 + 0 + 10 +15052.963394 + 20 +9638.055453 + 30 +0.0 + 11 +15052.963394 + 21 +9638.055453 + 31 +0.0 + 0 +LINE + 5 +E1C + 8 +0 + 62 + 0 + 10 +15003.790431 + 20 +9748.965534 + 30 +0.0 + 11 +15003.790431 + 21 +9748.965534 + 31 +0.0 + 0 +LINE + 5 +E1D + 8 +0 + 62 + 0 + 10 +15020.65826 + 20 +9738.219542 + 30 +0.0 + 11 +15020.65826 + 21 +9738.219542 + 31 +0.0 + 0 +LINE + 5 +E1E + 8 +0 + 62 + 0 + 10 +15049.077309 + 20 +9799.698059 + 30 +0.0 + 11 +15049.077309 + 21 +9799.698059 + 31 +0.0 + 0 +LINE + 5 +E1F + 8 +0 + 62 + 0 + 10 +15016.772175 + 20 +9899.862149 + 30 +0.0 + 11 +15016.772175 + 21 +9899.862149 + 31 +0.0 + 0 +LINE + 5 +E20 + 8 +0 + 62 + 0 + 10 +15031.440702 + 20 +10049.684164 + 30 +0.0 + 11 +15031.440702 + 21 +10049.684164 + 31 +0.0 + 0 +LINE + 5 +E21 + 8 +0 + 62 + 0 + 10 +15048.308531 + 20 +10038.938172 + 30 +0.0 + 11 +15048.308531 + 21 +10038.938172 + 31 +0.0 + 0 +LINE + 5 +E22 + 8 +0 + 62 + 0 + 10 +15016.003396 + 20 +10139.102261 + 30 +0.0 + 11 +15016.003396 + 21 +10139.102261 + 31 +0.0 + 0 +LINE + 5 +E23 + 8 +0 + 62 + 0 + 10 +15044.422446 + 20 +10200.580779 + 30 +0.0 + 11 +15044.422446 + 21 +10200.580779 + 31 +0.0 + 0 +LINE + 5 +E24 + 8 +0 + 62 + 0 + 10 +15012.117312 + 20 +10300.744868 + 30 +0.0 + 11 +15012.117312 + 21 +10300.744868 + 31 +0.0 + 0 +LINE + 5 +E25 + 8 +0 + 62 + 0 + 10 +15059.090973 + 20 +10350.402794 + 30 +0.0 + 11 +15059.090973 + 21 +10350.402794 + 31 +0.0 + 0 +LINE + 5 +E26 + 8 +0 + 62 + 0 + 10 +15021.427038 + 20 +9498.979429 + 30 +0.0 + 11 +15021.427038 + 21 +9498.979429 + 31 +0.0 + 0 +LINE + 5 +E27 + 8 +0 + 62 + 0 + 10 +15053.732173 + 20 +9398.81534 + 30 +0.0 + 11 +15053.732173 + 21 +9398.81534 + 31 +0.0 + 0 +LINE + 5 +E28 + 8 +0 + 62 + 0 + 10 +15008.445294 + 20 +9348.082815 + 30 +0.0 + 11 +15008.445294 + 21 +9348.082815 + 31 +0.0 + 0 +LINE + 5 +E29 + 8 +0 + 62 + 0 + 10 +15025.313123 + 20 +9337.336823 + 30 +0.0 + 11 +15025.313123 + 21 +9337.336823 + 31 +0.0 + 0 +LINE + 5 +E2A + 8 +0 + 62 + 0 + 10 +15040.750429 + 20 +9247.918726 + 30 +0.0 + 11 +15040.750429 + 21 +9247.918726 + 31 +0.0 + 0 +LINE + 5 +E2B + 8 +0 + 62 + 0 + 10 +15057.618258 + 20 +9237.172733 + 30 +0.0 + 11 +15057.618258 + 21 +9237.172733 + 31 +0.0 + 0 +LINE + 5 +E2C + 8 +0 + 62 + 0 + 10 +15026.081902 + 20 +9098.09671 + 30 +0.0 + 11 +15026.081902 + 21 +9098.09671 + 31 +0.0 + 0 +LINE + 5 +E2D + 8 +0 + 62 + 0 + 10 +15007.209885 + 20 +9595.245326 + 30 +0.0 + 11 +15007.209885 + 21 +9595.245326 + 31 +0.0 + 0 +LINE + 5 +E2E + 8 +0 + 62 + 0 + 10 +15047.022861 + 20 +9558.763455 + 30 +0.0 + 11 +15047.022861 + 21 +9558.763455 + 31 +0.0 + 0 +LINE + 5 +E2F + 8 +0 + 62 + 0 + 10 +15054.395634 + 20 +9552.007553 + 30 +0.0 + 11 +15054.395634 + 21 +9552.007553 + 31 +0.0 + 0 +LINE + 5 +E30 + 8 +0 + 62 + 0 + 10 +15003.297446 + 20 +9744.121739 + 30 +0.0 + 11 +15003.297446 + 21 +9744.121739 + 31 +0.0 + 0 +LINE + 5 +E31 + 8 +0 + 62 + 0 + 10 +15010.670219 + 20 +9737.365837 + 30 +0.0 + 11 +15010.670219 + 21 +9737.365837 + 31 +0.0 + 0 +LINE + 5 +E32 + 8 +0 + 62 + 0 + 10 +15045.469709 + 20 +9705.47798 + 30 +0.0 + 11 +15045.469709 + 21 +9705.47798 + 31 +0.0 + 0 +LINE + 5 +E33 + 8 +0 + 62 + 0 + 10 +15001.744294 + 20 +9890.836264 + 30 +0.0 + 11 +15001.744294 + 21 +9890.836264 + 31 +0.0 + 0 +LINE + 5 +E34 + 8 +0 + 62 + 0 + 10 +15041.55727 + 20 +9854.354393 + 30 +0.0 + 11 +15041.55727 + 21 +9854.354393 + 31 +0.0 + 0 +LINE + 5 +E35 + 8 +0 + 62 + 0 + 10 +15048.930043 + 20 +9847.598491 + 30 +0.0 + 11 +15048.930043 + 21 +9847.598491 + 31 +0.0 + 0 +LINE + 5 +E36 + 8 +0 + 62 + 0 + 10 +15005.204628 + 20 +10032.956776 + 30 +0.0 + 11 +15005.204628 + 21 +10032.956776 + 31 +0.0 + 0 +LINE + 5 +E37 + 8 +0 + 62 + 0 + 10 +15040.004118 + 20 +10001.068918 + 30 +0.0 + 11 +15040.004118 + 21 +10001.068918 + 31 +0.0 + 0 +LINE + 5 +E38 + 8 +0 + 62 + 0 + 10 +15036.091679 + 20 +10149.945332 + 30 +0.0 + 11 +15036.091679 + 21 +10149.945332 + 31 +0.0 + 0 +LINE + 5 +E39 + 8 +0 + 62 + 0 + 10 +15043.464452 + 20 +10143.18943 + 30 +0.0 + 11 +15043.464452 + 21 +10143.18943 + 31 +0.0 + 0 +LINE + 5 +E3A + 8 +0 + 62 + 0 + 10 +15034.538527 + 20 +10296.659856 + 30 +0.0 + 11 +15034.538527 + 21 +10296.659856 + 31 +0.0 + 0 +LINE + 5 +E3B + 8 +0 + 62 + 0 + 10 +15008.763037 + 20 +9448.530801 + 30 +0.0 + 11 +15008.763037 + 21 +9448.530801 + 31 +0.0 + 0 +LINE + 5 +E3C + 8 +0 + 62 + 0 + 10 +15016.13581 + 20 +9441.774899 + 30 +0.0 + 11 +15016.13581 + 21 +9441.774899 + 31 +0.0 + 0 +LINE + 5 +E3D + 8 +0 + 62 + 0 + 10 +15050.9353 + 20 +9409.887041 + 30 +0.0 + 11 +15050.9353 + 21 +9409.887041 + 31 +0.0 + 0 +LINE + 5 +E3E + 8 +0 + 62 + 0 + 10 +15012.675476 + 20 +9299.654387 + 30 +0.0 + 11 +15012.675476 + 21 +9299.654387 + 31 +0.0 + 0 +LINE + 5 +E3F + 8 +0 + 62 + 0 + 10 +15052.488452 + 20 +9263.172516 + 30 +0.0 + 11 +15052.488452 + 21 +9263.172516 + 31 +0.0 + 0 +LINE + 5 +E40 + 8 +0 + 62 + 0 + 10 +15059.861226 + 20 +9256.416614 + 30 +0.0 + 11 +15059.861226 + 21 +9256.416614 + 31 +0.0 + 0 +LINE + 5 +E41 + 8 +0 + 62 + 0 + 10 +15014.228628 + 20 +9152.939863 + 30 +0.0 + 11 +15014.228628 + 21 +9152.939863 + 31 +0.0 + 0 +LINE + 5 +E42 + 8 +0 + 62 + 0 + 10 +15021.601401 + 20 +9146.18396 + 30 +0.0 + 11 +15021.601401 + 21 +9146.18396 + 31 +0.0 + 0 +LINE + 5 +E43 + 8 +0 + 62 + 0 + 10 +15056.400892 + 20 +9114.296103 + 30 +0.0 + 11 +15056.400892 + 21 +9114.296103 + 31 +0.0 + 0 +ENDBLK + 5 +E44 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X74 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X74 + 1 + + 0 +LINE + 5 +E46 + 8 +0 + 62 + 0 + 10 +15599.492173 + 20 +9757.731838 + 30 +0.0 + 11 +15599.492173 + 21 +9757.731838 + 31 +0.0 + 0 +LINE + 5 +E47 + 8 +0 + 62 + 0 + 10 +15596.972439 + 20 +9834.804789 + 30 +0.0 + 11 +15596.972439 + 21 +9834.804789 + 31 +0.0 + 0 +LINE + 5 +E48 + 8 +0 + 62 + 0 + 10 +15594.452705 + 20 +9911.877739 + 30 +0.0 + 11 +15594.452705 + 21 +9911.877739 + 31 +0.0 + 0 +LINE + 5 +E49 + 8 +0 + 62 + 0 + 10 +15591.93297 + 20 +9988.95069 + 30 +0.0 + 11 +15591.93297 + 21 +9988.95069 + 31 +0.0 + 0 +LINE + 5 +E4A + 8 +0 + 62 + 0 + 10 +15589.413236 + 20 +10066.023641 + 30 +0.0 + 11 +15589.413236 + 21 +10066.023641 + 31 +0.0 + 0 +LINE + 5 +E4B + 8 +0 + 62 + 0 + 10 +15586.893502 + 20 +10143.096592 + 30 +0.0 + 11 +15586.893502 + 21 +10143.096592 + 31 +0.0 + 0 +LINE + 5 +E4C + 8 +0 + 62 + 0 + 10 +15584.373767 + 20 +10220.169542 + 30 +0.0 + 11 +15584.373767 + 21 +10220.169542 + 31 +0.0 + 0 +LINE + 5 +E4D + 8 +0 + 62 + 0 + 10 +15581.854033 + 20 +10297.242493 + 30 +0.0 + 11 +15581.854033 + 21 +10297.242493 + 31 +0.0 + 0 +LINE + 5 +E4E + 8 +0 + 62 + 0 + 10 +15579.334299 + 20 +10374.315444 + 30 +0.0 + 11 +15579.334299 + 21 +10374.315444 + 31 +0.0 + 0 +LINE + 5 +E4F + 8 +0 + 62 + 0 + 10 +15602.011908 + 20 +9680.658887 + 30 +0.0 + 11 +15602.011908 + 21 +9680.658887 + 31 +0.0 + 0 +LINE + 5 +E50 + 8 +0 + 62 + 0 + 10 +15604.531642 + 20 +9603.585936 + 30 +0.0 + 11 +15604.531642 + 21 +9603.585936 + 31 +0.0 + 0 +LINE + 5 +E51 + 8 +0 + 62 + 0 + 10 +15607.051376 + 20 +9526.512986 + 30 +0.0 + 11 +15607.051376 + 21 +9526.512986 + 31 +0.0 + 0 +LINE + 5 +E52 + 8 +0 + 62 + 0 + 10 +15609.571111 + 20 +9449.440035 + 30 +0.0 + 11 +15609.571111 + 21 +9449.440035 + 31 +0.0 + 0 +LINE + 5 +E53 + 8 +0 + 62 + 0 + 10 +15612.090845 + 20 +9372.367084 + 30 +0.0 + 11 +15612.090845 + 21 +9372.367084 + 31 +0.0 + 0 +LINE + 5 +E54 + 8 +0 + 62 + 0 + 10 +15563.042612 + 20 +9255.72464 + 30 +0.0 + 11 +15563.042612 + 21 +9255.72464 + 31 +0.0 + 0 +LINE + 5 +E55 + 8 +0 + 62 + 0 + 10 +15614.610579 + 20 +9295.294133 + 30 +0.0 + 11 +15614.610579 + 21 +9295.294133 + 31 +0.0 + 0 +LINE + 5 +E56 + 8 +0 + 62 + 0 + 10 +15565.562346 + 20 +9178.65169 + 30 +0.0 + 11 +15565.562346 + 21 +9178.65169 + 31 +0.0 + 0 +LINE + 5 +E57 + 8 +0 + 62 + 0 + 10 +15617.130314 + 20 +9218.221183 + 30 +0.0 + 11 +15617.130314 + 21 +9218.221183 + 31 +0.0 + 0 +LINE + 5 +E58 + 8 +0 + 62 + 0 + 10 +15568.082081 + 20 +9101.578739 + 30 +0.0 + 11 +15568.082081 + 21 +9101.578739 + 31 +0.0 + 0 +LINE + 5 +E59 + 8 +0 + 62 + 0 + 10 +15619.650048 + 20 +9141.148232 + 30 +0.0 + 11 +15619.650048 + 21 +9141.148232 + 31 +0.0 + 0 +LINE + 5 +E5A + 8 +0 + 62 + 0 + 10 +15622.169782 + 20 +9064.075281 + 30 +0.0 + 11 +15622.169782 + 21 +9064.075281 + 31 +0.0 + 0 +LINE + 5 +E5B + 8 +0 + 62 + 0 + 10 +15574.946594 + 20 +9714.366223 + 30 +0.0 + 11 +15574.946594 + 21 +9714.366223 + 31 +0.0 + 0 +LINE + 5 +E5C + 8 +0 + 62 + 0 + 10 +15607.465986 + 20 +9718.647482 + 30 +0.0 + 11 +15607.465986 + 21 +9718.647482 + 31 +0.0 + 0 +LINE + 5 +E5D + 8 +0 + 62 + 0 + 10 +15570.586142 + 20 +9817.35818 + 30 +0.0 + 11 +15570.586142 + 21 +9817.35818 + 31 +0.0 + 0 +LINE + 5 +E5E + 8 +0 + 62 + 0 + 10 +15624.91732 + 20 +9824.511015 + 30 +0.0 + 11 +15624.91732 + 21 +9824.511015 + 31 +0.0 + 0 +LINE + 5 +E5F + 8 +0 + 62 + 0 + 10 +15588.037477 + 20 +9923.221713 + 30 +0.0 + 11 +15588.037477 + 21 +9923.221713 + 31 +0.0 + 0 +LINE + 5 +E60 + 8 +0 + 62 + 0 + 10 +15608.857819 + 20 +9925.962763 + 30 +0.0 + 11 +15608.857819 + 21 +9925.962763 + 31 +0.0 + 0 +LINE + 5 +E61 + 8 +0 + 62 + 0 + 10 +15571.977975 + 20 +10024.673462 + 30 +0.0 + 11 +15571.977975 + 21 +10024.673462 + 31 +0.0 + 0 +LINE + 5 +E62 + 8 +0 + 62 + 0 + 10 +15604.497367 + 20 +10028.954721 + 30 +0.0 + 11 +15604.497367 + 21 +10028.954721 + 31 +0.0 + 0 +LINE + 5 +E63 + 8 +0 + 62 + 0 + 10 +15567.617523 + 20 +10127.665419 + 30 +0.0 + 11 +15567.617523 + 21 +10127.665419 + 31 +0.0 + 0 +LINE + 5 +E64 + 8 +0 + 62 + 0 + 10 +15621.948701 + 20 +10134.818254 + 30 +0.0 + 11 +15621.948701 + 21 +10134.818254 + 31 +0.0 + 0 +LINE + 5 +E65 + 8 +0 + 62 + 0 + 10 +15585.068857 + 20 +10233.528952 + 30 +0.0 + 11 +15585.068857 + 21 +10233.528952 + 31 +0.0 + 0 +LINE + 5 +E66 + 8 +0 + 62 + 0 + 10 +15605.8892 + 20 +10236.270002 + 30 +0.0 + 11 +15605.8892 + 21 +10236.270002 + 31 +0.0 + 0 +LINE + 5 +E67 + 8 +0 + 62 + 0 + 10 +15569.009356 + 20 +10334.9807 + 30 +0.0 + 11 +15569.009356 + 21 +10334.9807 + 31 +0.0 + 0 +LINE + 5 +E68 + 8 +0 + 62 + 0 + 10 +15601.528747 + 20 +10339.26196 + 30 +0.0 + 11 +15601.528747 + 21 +10339.26196 + 31 +0.0 + 0 +LINE + 5 +E69 + 8 +0 + 62 + 0 + 10 +15591.006096 + 20 +9612.914475 + 30 +0.0 + 11 +15591.006096 + 21 +9612.914475 + 31 +0.0 + 0 +LINE + 5 +E6A + 8 +0 + 62 + 0 + 10 +15611.826438 + 20 +9615.655525 + 30 +0.0 + 11 +15611.826438 + 21 +9615.655525 + 31 +0.0 + 0 +LINE + 5 +E6B + 8 +0 + 62 + 0 + 10 +15573.554761 + 20 +9507.050941 + 30 +0.0 + 11 +15573.554761 + 21 +9507.050941 + 31 +0.0 + 0 +LINE + 5 +E6C + 8 +0 + 62 + 0 + 10 +15577.915214 + 20 +9404.058984 + 30 +0.0 + 11 +15577.915214 + 21 +9404.058984 + 31 +0.0 + 0 +LINE + 5 +E6D + 8 +0 + 62 + 0 + 10 +15610.434605 + 20 +9408.340243 + 30 +0.0 + 11 +15610.434605 + 21 +9408.340243 + 31 +0.0 + 0 +LINE + 5 +E6E + 8 +0 + 62 + 0 + 10 +15593.974715 + 20 +9302.607236 + 30 +0.0 + 11 +15593.974715 + 21 +9302.607236 + 31 +0.0 + 0 +LINE + 5 +E6F + 8 +0 + 62 + 0 + 10 +15614.795057 + 20 +9305.348286 + 30 +0.0 + 11 +15614.795057 + 21 +9305.348286 + 31 +0.0 + 0 +LINE + 5 +E70 + 8 +0 + 62 + 0 + 10 +15576.523381 + 20 +9196.743702 + 30 +0.0 + 11 +15576.523381 + 21 +9196.743702 + 31 +0.0 + 0 +LINE + 5 +E71 + 8 +0 + 62 + 0 + 10 +15580.883833 + 20 +9093.751745 + 30 +0.0 + 11 +15580.883833 + 21 +9093.751745 + 31 +0.0 + 0 +LINE + 5 +E72 + 8 +0 + 62 + 0 + 10 +15613.403224 + 20 +9098.033004 + 30 +0.0 + 11 +15613.403224 + 21 +9098.033004 + 31 +0.0 + 0 +LINE + 5 +E73 + 8 +0 + 62 + 0 + 10 +15579.645142 + 20 +9700.439419 + 30 +0.0 + 11 +15579.645142 + 21 +9700.439419 + 31 +0.0 + 0 +LINE + 5 +E74 + 8 +0 + 62 + 0 + 10 +15594.313669 + 20 +9850.261434 + 30 +0.0 + 11 +15594.313669 + 21 +9850.261434 + 31 +0.0 + 0 +LINE + 5 +E75 + 8 +0 + 62 + 0 + 10 +15611.181498 + 20 +9839.515442 + 30 +0.0 + 11 +15611.181498 + 21 +9839.515442 + 31 +0.0 + 0 +LINE + 5 +E76 + 8 +0 + 62 + 0 + 10 +15578.876363 + 20 +9939.679531 + 30 +0.0 + 11 +15578.876363 + 21 +9939.679531 + 31 +0.0 + 0 +LINE + 5 +E77 + 8 +0 + 62 + 0 + 10 +15607.295413 + 20 +10001.158049 + 30 +0.0 + 11 +15607.295413 + 21 +10001.158049 + 31 +0.0 + 0 +LINE + 5 +E78 + 8 +0 + 62 + 0 + 10 +15574.990278 + 20 +10101.322138 + 30 +0.0 + 11 +15574.990278 + 21 +10101.322138 + 31 +0.0 + 0 +LINE + 5 +E79 + 8 +0 + 62 + 0 + 10 +15621.96394 + 20 +10150.980064 + 30 +0.0 + 11 +15621.96394 + 21 +10150.980064 + 31 +0.0 + 0 +LINE + 5 +E7A + 8 +0 + 62 + 0 + 10 +15589.658805 + 20 +10251.144153 + 30 +0.0 + 11 +15589.658805 + 21 +10251.144153 + 31 +0.0 + 0 +LINE + 5 +E7B + 8 +0 + 62 + 0 + 10 +15606.526634 + 20 +10240.398161 + 30 +0.0 + 11 +15606.526634 + 21 +10240.398161 + 31 +0.0 + 0 +LINE + 5 +E7C + 8 +0 + 62 + 0 + 10 +15574.2215 + 20 +10340.562251 + 30 +0.0 + 11 +15574.2215 + 21 +10340.562251 + 31 +0.0 + 0 +LINE + 5 +E7D + 8 +0 + 62 + 0 + 10 +15611.950276 + 20 +9600.275329 + 30 +0.0 + 11 +15611.950276 + 21 +9600.275329 + 31 +0.0 + 0 +LINE + 5 +E7E + 8 +0 + 62 + 0 + 10 +15566.663398 + 20 +9549.542804 + 30 +0.0 + 11 +15566.663398 + 21 +9549.542804 + 31 +0.0 + 0 +LINE + 5 +E7F + 8 +0 + 62 + 0 + 10 +15583.531227 + 20 +9538.796812 + 30 +0.0 + 11 +15583.531227 + 21 +9538.796812 + 31 +0.0 + 0 +LINE + 5 +E80 + 8 +0 + 62 + 0 + 10 +15598.968532 + 20 +9449.378715 + 30 +0.0 + 11 +15598.968532 + 21 +9449.378715 + 31 +0.0 + 0 +LINE + 5 +E81 + 8 +0 + 62 + 0 + 10 +15615.836361 + 20 +9438.632723 + 30 +0.0 + 11 +15615.836361 + 21 +9438.632723 + 31 +0.0 + 0 +LINE + 5 +E82 + 8 +0 + 62 + 0 + 10 +15584.300005 + 20 +9299.556699 + 30 +0.0 + 11 +15584.300005 + 21 +9299.556699 + 31 +0.0 + 0 +LINE + 5 +E83 + 8 +0 + 62 + 0 + 10 +15616.60514 + 20 +9199.39261 + 30 +0.0 + 11 +15616.60514 + 21 +9199.39261 + 31 +0.0 + 0 +LINE + 5 +E84 + 8 +0 + 62 + 0 + 10 +15571.318261 + 20 +9148.660085 + 30 +0.0 + 11 +15571.318261 + 21 +9148.660085 + 31 +0.0 + 0 +LINE + 5 +E85 + 8 +0 + 62 + 0 + 10 +15588.18609 + 20 +9137.914093 + 30 +0.0 + 11 +15588.18609 + 21 +9137.914093 + 31 +0.0 + 0 +LINE + 5 +E86 + 8 +0 + 62 + 0 + 10 +15603.623395 + 20 +9048.495996 + 30 +0.0 + 11 +15603.623395 + 21 +9048.495996 + 31 +0.0 + 0 +LINE + 5 +E87 + 8 +0 + 62 + 0 + 10 +15620.491224 + 20 +9037.750003 + 30 +0.0 + 11 +15620.491224 + 21 +9037.750003 + 31 +0.0 + 0 +LINE + 5 +E88 + 8 +0 + 62 + 0 + 10 +15570.175381 + 20 +9660.547785 + 30 +0.0 + 11 +15570.175381 + 21 +9660.547785 + 31 +0.0 + 0 +LINE + 5 +E89 + 8 +0 + 62 + 0 + 10 +15609.988358 + 20 +9624.065914 + 30 +0.0 + 11 +15609.988358 + 21 +9624.065914 + 31 +0.0 + 0 +LINE + 5 +E8A + 8 +0 + 62 + 0 + 10 +15617.361131 + 20 +9617.310012 + 30 +0.0 + 11 +15617.361131 + 21 +9617.310012 + 31 +0.0 + 0 +LINE + 5 +E8B + 8 +0 + 62 + 0 + 10 +15566.262942 + 20 +9809.424199 + 30 +0.0 + 11 +15566.262942 + 21 +9809.424199 + 31 +0.0 + 0 +LINE + 5 +E8C + 8 +0 + 62 + 0 + 10 +15573.635716 + 20 +9802.668297 + 30 +0.0 + 11 +15573.635716 + 21 +9802.668297 + 31 +0.0 + 0 +LINE + 5 +E8D + 8 +0 + 62 + 0 + 10 +15608.435206 + 20 +9770.780439 + 30 +0.0 + 11 +15608.435206 + 21 +9770.780439 + 31 +0.0 + 0 +LINE + 5 +E8E + 8 +0 + 62 + 0 + 10 +15564.70979 + 20 +9956.138724 + 30 +0.0 + 11 +15564.70979 + 21 +9956.138724 + 31 +0.0 + 0 +LINE + 5 +E8F + 8 +0 + 62 + 0 + 10 +15604.522766 + 20 +9919.656852 + 30 +0.0 + 11 +15604.522766 + 21 +9919.656852 + 31 +0.0 + 0 +LINE + 5 +E90 + 8 +0 + 62 + 0 + 10 +15611.89554 + 20 +9912.90095 + 30 +0.0 + 11 +15611.89554 + 21 +9912.90095 + 31 +0.0 + 0 +LINE + 5 +E91 + 8 +0 + 62 + 0 + 10 +15568.170124 + 20 +10098.259235 + 30 +0.0 + 11 +15568.170124 + 21 +10098.259235 + 31 +0.0 + 0 +LINE + 5 +E92 + 8 +0 + 62 + 0 + 10 +15602.969615 + 20 +10066.371377 + 30 +0.0 + 11 +15602.969615 + 21 +10066.371377 + 31 +0.0 + 0 +LINE + 5 +E93 + 8 +0 + 62 + 0 + 10 +15599.057175 + 20 +10215.247791 + 30 +0.0 + 11 +15599.057175 + 21 +10215.247791 + 31 +0.0 + 0 +LINE + 5 +E94 + 8 +0 + 62 + 0 + 10 +15606.429949 + 20 +10208.491889 + 30 +0.0 + 11 +15606.429949 + 21 +10208.491889 + 31 +0.0 + 0 +LINE + 5 +E95 + 8 +0 + 62 + 0 + 10 +15562.704533 + 20 +10393.850174 + 30 +0.0 + 11 +15562.704533 + 21 +10393.850174 + 31 +0.0 + 0 +LINE + 5 +E96 + 8 +0 + 62 + 0 + 10 +15597.504023 + 20 +10361.962316 + 30 +0.0 + 11 +15597.504023 + 21 +10361.962316 + 31 +0.0 + 0 +LINE + 5 +E97 + 8 +0 + 62 + 0 + 10 +15571.728533 + 20 +9513.83326 + 30 +0.0 + 11 +15571.728533 + 21 +9513.83326 + 31 +0.0 + 0 +LINE + 5 +E98 + 8 +0 + 62 + 0 + 10 +15579.101307 + 20 +9507.077358 + 30 +0.0 + 11 +15579.101307 + 21 +9507.077358 + 31 +0.0 + 0 +LINE + 5 +E99 + 8 +0 + 62 + 0 + 10 +15613.900797 + 20 +9475.1895 + 30 +0.0 + 11 +15613.900797 + 21 +9475.1895 + 31 +0.0 + 0 +LINE + 5 +E9A + 8 +0 + 62 + 0 + 10 +15575.640973 + 20 +9364.956847 + 30 +0.0 + 11 +15575.640973 + 21 +9364.956847 + 31 +0.0 + 0 +LINE + 5 +E9B + 8 +0 + 62 + 0 + 10 +15615.453949 + 20 +9328.474976 + 30 +0.0 + 11 +15615.453949 + 21 +9328.474976 + 31 +0.0 + 0 +LINE + 5 +E9C + 8 +0 + 62 + 0 + 10 +15622.826722 + 20 +9321.719073 + 30 +0.0 + 11 +15622.826722 + 21 +9321.719073 + 31 +0.0 + 0 +LINE + 5 +E9D + 8 +0 + 62 + 0 + 10 +15577.194125 + 20 +9218.242322 + 30 +0.0 + 11 +15577.194125 + 21 +9218.242322 + 31 +0.0 + 0 +LINE + 5 +E9E + 8 +0 + 62 + 0 + 10 +15584.566898 + 20 +9211.48642 + 30 +0.0 + 11 +15584.566898 + 21 +9211.48642 + 31 +0.0 + 0 +LINE + 5 +E9F + 8 +0 + 62 + 0 + 10 +15619.366388 + 20 +9179.598562 + 30 +0.0 + 11 +15619.366388 + 21 +9179.598562 + 31 +0.0 + 0 +LINE + 5 +EA0 + 8 +0 + 62 + 0 + 10 +15581.106564 + 20 +9069.365908 + 30 +0.0 + 11 +15581.106564 + 21 +9069.365908 + 31 +0.0 + 0 +ENDBLK + 5 +EA1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X77 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X77 + 1 + + 0 +LINE + 5 +EA3 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11637.216313 + 30 +0.0 + 11 +15156.25 + 21 +11637.216313 + 31 +0.0 + 0 +LINE + 5 +EA4 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11637.216313 + 30 +0.0 + 11 +15343.75 + 21 +11637.216313 + 31 +0.0 + 0 +LINE + 5 +EA5 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11691.3429 + 30 +0.0 + 11 +15250.0 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +EA6 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11691.3429 + 30 +0.0 + 11 +15437.5 + 21 +11691.3429 + 31 +0.0 + 0 +LINE + 5 +EA7 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11745.469488 + 30 +0.0 + 11 +15156.25 + 21 +11745.469488 + 31 +0.0 + 0 +LINE + 5 +EA8 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11745.469488 + 30 +0.0 + 11 +15343.75 + 21 +11745.469488 + 31 +0.0 + 0 +LINE + 5 +EA9 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11799.596075 + 30 +0.0 + 11 +15250.0 + 21 +11799.596075 + 31 +0.0 + 0 +LINE + 5 +EAA + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11799.596075 + 30 +0.0 + 11 +15437.5 + 21 +11799.596075 + 31 +0.0 + 0 +LINE + 5 +EAB + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11853.722663 + 30 +0.0 + 11 +15156.25 + 21 +11853.722663 + 31 +0.0 + 0 +LINE + 5 +EAC + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11853.722663 + 30 +0.0 + 11 +15343.75 + 21 +11853.722663 + 31 +0.0 + 0 +LINE + 5 +EAD + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11907.84925 + 30 +0.0 + 11 +15250.0 + 21 +11907.84925 + 31 +0.0 + 0 +LINE + 5 +EAE + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11907.84925 + 30 +0.0 + 11 +15437.5 + 21 +11907.84925 + 31 +0.0 + 0 +LINE + 5 +EAF + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11961.975838 + 30 +0.0 + 11 +15156.25 + 21 +11961.975838 + 31 +0.0 + 0 +LINE + 5 +EB0 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11961.975838 + 30 +0.0 + 11 +15343.75 + 21 +11961.975838 + 31 +0.0 + 0 +LINE + 5 +EB1 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +12016.102425 + 30 +0.0 + 11 +15250.0 + 21 +12016.102425 + 31 +0.0 + 0 +LINE + 5 +EB2 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +12016.102425 + 30 +0.0 + 11 +15437.5 + 21 +12016.102425 + 31 +0.0 + 0 +LINE + 5 +EB3 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +12070.229013 + 30 +0.0 + 11 +15156.25 + 21 +12070.229013 + 31 +0.0 + 0 +LINE + 5 +EB4 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +12070.229013 + 30 +0.0 + 11 +15343.75 + 21 +12070.229013 + 31 +0.0 + 0 +LINE + 5 +EB5 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +12124.3556 + 30 +0.0 + 11 +15250.0 + 21 +12124.3556 + 31 +0.0 + 0 +LINE + 5 +EB6 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +12124.3556 + 30 +0.0 + 11 +15437.5 + 21 +12124.3556 + 31 +0.0 + 0 +LINE + 5 +EB7 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +12178.482188 + 30 +0.0 + 11 +15156.25 + 21 +12178.482188 + 31 +0.0 + 0 +LINE + 5 +EB8 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +12178.482188 + 30 +0.0 + 11 +15343.75 + 21 +12178.482188 + 31 +0.0 + 0 +LINE + 5 +EB9 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +12232.608775 + 30 +0.0 + 11 +15250.0 + 21 +12232.608775 + 31 +0.0 + 0 +LINE + 5 +EBA + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +12232.608775 + 30 +0.0 + 11 +15437.5 + 21 +12232.608775 + 31 +0.0 + 0 +LINE + 5 +EBB + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +12286.735363 + 30 +0.0 + 11 +15156.25 + 21 +12286.735363 + 31 +0.0 + 0 +LINE + 5 +EBC + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +12286.735363 + 30 +0.0 + 11 +15343.75 + 21 +12286.735363 + 31 +0.0 + 0 +LINE + 5 +EBD + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +12340.86195 + 30 +0.0 + 11 +15250.0 + 21 +12340.86195 + 31 +0.0 + 0 +LINE + 5 +EBE + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +12340.86195 + 30 +0.0 + 11 +15437.5 + 21 +12340.86195 + 31 +0.0 + 0 +LINE + 5 +EBF + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11583.089725 + 30 +0.0 + 11 +15250.0 + 21 +11583.089725 + 31 +0.0 + 0 +LINE + 5 +EC0 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11583.089725 + 30 +0.0 + 11 +15437.5 + 21 +11583.089725 + 31 +0.0 + 0 +LINE + 5 +EC1 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11528.963138 + 30 +0.0 + 11 +15156.25 + 21 +11528.963138 + 31 +0.0 + 0 +LINE + 5 +EC2 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11528.963138 + 30 +0.0 + 11 +15343.75 + 21 +11528.963138 + 31 +0.0 + 0 +LINE + 5 +EC3 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11474.83655 + 30 +0.0 + 11 +15250.0 + 21 +11474.83655 + 31 +0.0 + 0 +LINE + 5 +EC4 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11474.83655 + 30 +0.0 + 11 +15437.5 + 21 +11474.83655 + 31 +0.0 + 0 +LINE + 5 +EC5 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11420.709963 + 30 +0.0 + 11 +15156.25 + 21 +11420.709963 + 31 +0.0 + 0 +LINE + 5 +EC6 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11420.709963 + 30 +0.0 + 11 +15343.75 + 21 +11420.709963 + 31 +0.0 + 0 +LINE + 5 +EC7 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11366.583375 + 30 +0.0 + 11 +15250.0 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +EC8 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11366.583375 + 30 +0.0 + 11 +15437.5 + 21 +11366.583375 + 31 +0.0 + 0 +LINE + 5 +EC9 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11312.456788 + 30 +0.0 + 11 +15156.25 + 21 +11312.456788 + 31 +0.0 + 0 +LINE + 5 +ECA + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11312.456788 + 30 +0.0 + 11 +15343.75 + 21 +11312.456788 + 31 +0.0 + 0 +LINE + 5 +ECB + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11258.3302 + 30 +0.0 + 11 +15250.0 + 21 +11258.3302 + 31 +0.0 + 0 +LINE + 5 +ECC + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11258.3302 + 30 +0.0 + 11 +15437.5 + 21 +11258.3302 + 31 +0.0 + 0 +LINE + 5 +ECD + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11204.203613 + 30 +0.0 + 11 +15156.25 + 21 +11204.203613 + 31 +0.0 + 0 +LINE + 5 +ECE + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11204.203613 + 30 +0.0 + 11 +15343.75 + 21 +11204.203613 + 31 +0.0 + 0 +LINE + 5 +ECF + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11150.077025 + 30 +0.0 + 11 +15250.0 + 21 +11150.077025 + 31 +0.0 + 0 +LINE + 5 +ED0 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11150.077025 + 30 +0.0 + 11 +15437.5 + 21 +11150.077025 + 31 +0.0 + 0 +LINE + 5 +ED1 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +11095.950438 + 30 +0.0 + 11 +15156.25 + 21 +11095.950438 + 31 +0.0 + 0 +LINE + 5 +ED2 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +11095.950438 + 30 +0.0 + 11 +15343.75 + 21 +11095.950438 + 31 +0.0 + 0 +LINE + 5 +ED3 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +11041.82385 + 30 +0.0 + 11 +15250.0 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +ED4 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +11041.82385 + 30 +0.0 + 11 +15437.5 + 21 +11041.82385 + 31 +0.0 + 0 +LINE + 5 +ED5 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11318.951861 + 30 +0.0 + 11 +15437.499928 + 21 +11366.583383 + 31 +0.0 + 0 +LINE + 5 +ED6 + 8 +0 + 62 + 0 + 10 +15374.999928 + 20 +11474.836559 + 30 +0.0 + 11 +15343.749928 + 21 +11528.963146 + 31 +0.0 + 0 +LINE + 5 +ED7 + 8 +0 + 62 + 0 + 10 +15281.249928 + 20 +11637.216322 + 30 +0.0 + 11 +15249.999928 + 21 +11691.342909 + 31 +0.0 + 0 +LINE + 5 +ED8 + 8 +0 + 62 + 0 + 10 +15187.499928 + 20 +11799.596085 + 30 +0.0 + 11 +15156.249928 + 21 +11853.722673 + 31 +0.0 + 0 +LINE + 5 +ED9 + 8 +0 + 62 + 0 + 10 +15093.749928 + 20 +11961.975848 + 30 +0.0 + 11 +15090.0 + 21 +11968.470914 + 31 +0.0 + 0 +LINE + 5 +EDA + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11210.698686 + 30 +0.0 + 11 +15437.499928 + 21 +11258.330208 + 31 +0.0 + 0 +LINE + 5 +EDB + 8 +0 + 62 + 0 + 10 +15374.999928 + 20 +11366.583383 + 30 +0.0 + 11 +15343.749928 + 21 +11420.709971 + 31 +0.0 + 0 +LINE + 5 +EDC + 8 +0 + 62 + 0 + 10 +15281.249928 + 20 +11528.963146 + 30 +0.0 + 11 +15249.999928 + 21 +11583.089734 + 31 +0.0 + 0 +LINE + 5 +EDD + 8 +0 + 62 + 0 + 10 +15187.499928 + 20 +11691.34291 + 30 +0.0 + 11 +15156.249928 + 21 +11745.469497 + 31 +0.0 + 0 +LINE + 5 +EDE + 8 +0 + 62 + 0 + 10 +15093.749928 + 20 +11853.722673 + 30 +0.0 + 11 +15090.0 + 21 +11860.217739 + 31 +0.0 + 0 +LINE + 5 +EDF + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11102.445511 + 30 +0.0 + 11 +15437.499928 + 21 +11150.077032 + 31 +0.0 + 0 +LINE + 5 +EE0 + 8 +0 + 62 + 0 + 10 +15374.999928 + 20 +11258.330208 + 30 +0.0 + 11 +15343.749928 + 21 +11312.456796 + 31 +0.0 + 0 +LINE + 5 +EE1 + 8 +0 + 62 + 0 + 10 +15281.249928 + 20 +11420.709971 + 30 +0.0 + 11 +15249.999928 + 21 +11474.836559 + 31 +0.0 + 0 +LINE + 5 +EE2 + 8 +0 + 62 + 0 + 10 +15187.499928 + 20 +11583.089734 + 30 +0.0 + 11 +15156.249928 + 21 +11637.216322 + 31 +0.0 + 0 +LINE + 5 +EE3 + 8 +0 + 62 + 0 + 10 +15093.749928 + 20 +11745.469497 + 30 +0.0 + 11 +15090.0 + 21 +11751.964564 + 31 +0.0 + 0 +LINE + 5 +EE4 + 8 +0 + 62 + 0 + 10 +15461.646944 + 20 +11000.0 + 30 +0.0 + 11 +15437.499929 + 21 +11041.823857 + 31 +0.0 + 0 +LINE + 5 +EE5 + 8 +0 + 62 + 0 + 10 +15374.999929 + 20 +11150.077032 + 30 +0.0 + 11 +15343.749929 + 21 +11204.20362 + 31 +0.0 + 0 +LINE + 5 +EE6 + 8 +0 + 62 + 0 + 10 +15281.249929 + 20 +11312.456796 + 30 +0.0 + 11 +15249.999929 + 21 +11366.583383 + 31 +0.0 + 0 +LINE + 5 +EE7 + 8 +0 + 62 + 0 + 10 +15187.499929 + 20 +11474.836559 + 30 +0.0 + 11 +15156.249929 + 21 +11528.963147 + 31 +0.0 + 0 +LINE + 5 +EE8 + 8 +0 + 62 + 0 + 10 +15093.749929 + 20 +11637.216322 + 30 +0.0 + 11 +15090.0 + 21 +11643.711389 + 31 +0.0 + 0 +LINE + 5 +EE9 + 8 +0 + 62 + 0 + 10 +15374.999929 + 20 +11041.823857 + 30 +0.0 + 11 +15343.749929 + 21 +11095.950445 + 31 +0.0 + 0 +LINE + 5 +EEA + 8 +0 + 62 + 0 + 10 +15281.249929 + 20 +11204.20362 + 30 +0.0 + 11 +15249.999929 + 21 +11258.330208 + 31 +0.0 + 0 +LINE + 5 +EEB + 8 +0 + 62 + 0 + 10 +15187.499929 + 20 +11366.583384 + 30 +0.0 + 11 +15156.249929 + 21 +11420.709971 + 31 +0.0 + 0 +LINE + 5 +EEC + 8 +0 + 62 + 0 + 10 +15093.749929 + 20 +11528.963147 + 30 +0.0 + 11 +15090.0 + 21 +11535.458214 + 31 +0.0 + 0 +LINE + 5 +EED + 8 +0 + 62 + 0 + 10 +15281.249929 + 20 +11095.950445 + 30 +0.0 + 11 +15249.999929 + 21 +11150.077033 + 31 +0.0 + 0 +LINE + 5 +EEE + 8 +0 + 62 + 0 + 10 +15187.499929 + 20 +11258.330208 + 30 +0.0 + 11 +15156.249929 + 21 +11312.456796 + 31 +0.0 + 0 +LINE + 5 +EEF + 8 +0 + 62 + 0 + 10 +15093.749929 + 20 +11420.709971 + 30 +0.0 + 11 +15090.0 + 21 +11427.205039 + 31 +0.0 + 0 +LINE + 5 +EF0 + 8 +0 + 62 + 0 + 10 +15274.146944 + 20 +11000.0 + 30 +0.0 + 11 +15249.999929 + 21 +11041.823857 + 31 +0.0 + 0 +LINE + 5 +EF1 + 8 +0 + 62 + 0 + 10 +15187.499929 + 20 +11150.077033 + 30 +0.0 + 11 +15156.249929 + 21 +11204.203621 + 31 +0.0 + 0 +LINE + 5 +EF2 + 8 +0 + 62 + 0 + 10 +15093.749929 + 20 +11312.456796 + 30 +0.0 + 11 +15090.0 + 21 +11318.951864 + 31 +0.0 + 0 +LINE + 5 +EF3 + 8 +0 + 62 + 0 + 10 +15187.499929 + 20 +11041.823857 + 30 +0.0 + 11 +15156.249929 + 21 +11095.950445 + 31 +0.0 + 0 +LINE + 5 +EF4 + 8 +0 + 62 + 0 + 10 +15093.749929 + 20 +11204.203621 + 30 +0.0 + 11 +15090.0 + 21 +11210.698689 + 31 +0.0 + 0 +LINE + 5 +EF5 + 8 +0 + 62 + 0 + 10 +15093.74993 + 20 +11095.950445 + 30 +0.0 + 11 +15090.0 + 21 +11102.445514 + 31 +0.0 + 0 +LINE + 5 +EF6 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11427.205036 + 30 +0.0 + 11 +15437.499928 + 21 +11474.836558 + 31 +0.0 + 0 +LINE + 5 +EF7 + 8 +0 + 62 + 0 + 10 +15374.999928 + 20 +11583.089734 + 30 +0.0 + 11 +15343.749928 + 21 +11637.216322 + 31 +0.0 + 0 +LINE + 5 +EF8 + 8 +0 + 62 + 0 + 10 +15281.249928 + 20 +11745.469497 + 30 +0.0 + 11 +15249.999928 + 21 +11799.596085 + 31 +0.0 + 0 +LINE + 5 +EF9 + 8 +0 + 62 + 0 + 10 +15187.499928 + 20 +11907.84926 + 30 +0.0 + 11 +15156.249928 + 21 +11961.975848 + 31 +0.0 + 0 +LINE + 5 +EFA + 8 +0 + 62 + 0 + 10 +15093.749928 + 20 +12070.229023 + 30 +0.0 + 11 +15090.0 + 21 +12076.724089 + 31 +0.0 + 0 +LINE + 5 +EFB + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11535.458211 + 30 +0.0 + 11 +15437.499927 + 21 +11583.089734 + 31 +0.0 + 0 +LINE + 5 +EFC + 8 +0 + 62 + 0 + 10 +15374.999927 + 20 +11691.342909 + 30 +0.0 + 11 +15343.749927 + 21 +11745.469497 + 31 +0.0 + 0 +LINE + 5 +EFD + 8 +0 + 62 + 0 + 10 +15281.249927 + 20 +11853.722672 + 30 +0.0 + 11 +15249.999927 + 21 +11907.84926 + 31 +0.0 + 0 +LINE + 5 +EFE + 8 +0 + 62 + 0 + 10 +15187.499927 + 20 +12016.102436 + 30 +0.0 + 11 +15156.249927 + 21 +12070.229023 + 31 +0.0 + 0 +LINE + 5 +EFF + 8 +0 + 62 + 0 + 10 +15093.749927 + 20 +12178.482199 + 30 +0.0 + 11 +15090.0 + 21 +12184.977264 + 31 +0.0 + 0 +LINE + 5 +F00 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11643.711386 + 30 +0.0 + 11 +15437.499927 + 21 +11691.342909 + 31 +0.0 + 0 +LINE + 5 +F01 + 8 +0 + 62 + 0 + 10 +15374.999927 + 20 +11799.596085 + 30 +0.0 + 11 +15343.749927 + 21 +11853.722672 + 31 +0.0 + 0 +LINE + 5 +F02 + 8 +0 + 62 + 0 + 10 +15281.249927 + 20 +11961.975848 + 30 +0.0 + 11 +15249.999927 + 21 +12016.102436 + 31 +0.0 + 0 +LINE + 5 +F03 + 8 +0 + 62 + 0 + 10 +15187.499927 + 20 +12124.355611 + 30 +0.0 + 11 +15156.249927 + 21 +12178.482199 + 31 +0.0 + 0 +LINE + 5 +F04 + 8 +0 + 62 + 0 + 10 +15093.749927 + 20 +12286.735374 + 30 +0.0 + 11 +15090.0 + 21 +12293.230439 + 31 +0.0 + 0 +LINE + 5 +F05 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11751.964561 + 30 +0.0 + 11 +15437.499927 + 21 +11799.596084 + 31 +0.0 + 0 +LINE + 5 +F06 + 8 +0 + 62 + 0 + 10 +15374.999927 + 20 +11907.84926 + 30 +0.0 + 11 +15343.749927 + 21 +11961.975848 + 31 +0.0 + 0 +LINE + 5 +F07 + 8 +0 + 62 + 0 + 10 +15281.249927 + 20 +12070.229023 + 30 +0.0 + 11 +15249.999927 + 21 +12124.355611 + 31 +0.0 + 0 +LINE + 5 +F08 + 8 +0 + 62 + 0 + 10 +15187.499927 + 20 +12232.608786 + 30 +0.0 + 11 +15156.249927 + 21 +12286.735374 + 31 +0.0 + 0 +LINE + 5 +F09 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11860.217736 + 30 +0.0 + 11 +15437.499927 + 21 +11907.84926 + 31 +0.0 + 0 +LINE + 5 +F0A + 8 +0 + 62 + 0 + 10 +15374.999927 + 20 +12016.102435 + 30 +0.0 + 11 +15343.749927 + 21 +12070.229023 + 31 +0.0 + 0 +LINE + 5 +F0B + 8 +0 + 62 + 0 + 10 +15281.249927 + 20 +12178.482198 + 30 +0.0 + 11 +15249.999927 + 21 +12232.608786 + 31 +0.0 + 0 +LINE + 5 +F0C + 8 +0 + 62 + 0 + 10 +15187.499927 + 20 +12340.861962 + 30 +0.0 + 11 +15176.450575 + 21 +12360.0 + 31 +0.0 + 0 +LINE + 5 +F0D + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +11968.470911 + 30 +0.0 + 11 +15437.499927 + 21 +12016.102435 + 31 +0.0 + 0 +LINE + 5 +F0E + 8 +0 + 62 + 0 + 10 +15374.999927 + 20 +12124.355611 + 30 +0.0 + 11 +15343.749927 + 21 +12178.482198 + 31 +0.0 + 0 +LINE + 5 +F0F + 8 +0 + 62 + 0 + 10 +15281.249927 + 20 +12286.735374 + 30 +0.0 + 11 +15249.999927 + 21 +12340.861962 + 31 +0.0 + 0 +LINE + 5 +F10 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +12076.724086 + 30 +0.0 + 11 +15437.499926 + 21 +12124.355611 + 31 +0.0 + 0 +LINE + 5 +F11 + 8 +0 + 62 + 0 + 10 +15374.999926 + 20 +12232.608786 + 30 +0.0 + 11 +15343.749926 + 21 +12286.735374 + 31 +0.0 + 0 +LINE + 5 +F12 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +12184.977261 + 30 +0.0 + 11 +15437.499926 + 21 +12232.608786 + 31 +0.0 + 0 +LINE + 5 +F13 + 8 +0 + 62 + 0 + 10 +15374.999926 + 20 +12340.861961 + 30 +0.0 + 11 +15363.950574 + 21 +12360.0 + 31 +0.0 + 0 +LINE + 5 +F14 + 8 +0 + 62 + 0 + 10 +15465.0 + 20 +12293.230436 + 30 +0.0 + 11 +15437.499926 + 21 +12340.861961 + 31 +0.0 + 0 +LINE + 5 +F15 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11414.214886 + 30 +0.0 + 11 +15093.749972 + 21 +11420.710028 + 31 +0.0 + 0 +LINE + 5 +F16 + 8 +0 + 62 + 0 + 10 +15156.249972 + 20 +11528.963204 + 30 +0.0 + 11 +15187.499972 + 21 +11583.089792 + 31 +0.0 + 0 +LINE + 5 +F17 + 8 +0 + 62 + 0 + 10 +15249.999972 + 20 +11691.342967 + 30 +0.0 + 11 +15281.249972 + 21 +11745.469555 + 31 +0.0 + 0 +LINE + 5 +F18 + 8 +0 + 62 + 0 + 10 +15343.749972 + 20 +11853.72273 + 30 +0.0 + 11 +15374.999972 + 21 +11907.849318 + 31 +0.0 + 0 +LINE + 5 +F19 + 8 +0 + 62 + 0 + 10 +15437.499972 + 20 +12016.102494 + 30 +0.0 + 11 +15465.0 + 21 +12063.733939 + 31 +0.0 + 0 +LINE + 5 +F1A + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11522.468061 + 30 +0.0 + 11 +15093.749972 + 21 +11528.963204 + 31 +0.0 + 0 +LINE + 5 +F1B + 8 +0 + 62 + 0 + 10 +15156.249972 + 20 +11637.216379 + 30 +0.0 + 11 +15187.499972 + 21 +11691.342967 + 31 +0.0 + 0 +LINE + 5 +F1C + 8 +0 + 62 + 0 + 10 +15249.999972 + 20 +11799.596143 + 30 +0.0 + 11 +15281.249972 + 21 +11853.72273 + 31 +0.0 + 0 +LINE + 5 +F1D + 8 +0 + 62 + 0 + 10 +15343.749972 + 20 +11961.975906 + 30 +0.0 + 11 +15374.999972 + 21 +12016.102493 + 31 +0.0 + 0 +LINE + 5 +F1E + 8 +0 + 62 + 0 + 10 +15437.499972 + 20 +12124.355669 + 30 +0.0 + 11 +15465.0 + 21 +12171.987114 + 31 +0.0 + 0 +LINE + 5 +F1F + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11630.721236 + 30 +0.0 + 11 +15093.749973 + 21 +11637.216379 + 31 +0.0 + 0 +LINE + 5 +F20 + 8 +0 + 62 + 0 + 10 +15156.249973 + 20 +11745.469555 + 30 +0.0 + 11 +15187.499973 + 21 +11799.596142 + 31 +0.0 + 0 +LINE + 5 +F21 + 8 +0 + 62 + 0 + 10 +15249.999973 + 20 +11907.849318 + 30 +0.0 + 11 +15281.249973 + 21 +11961.975906 + 31 +0.0 + 0 +LINE + 5 +F22 + 8 +0 + 62 + 0 + 10 +15343.749973 + 20 +12070.229081 + 30 +0.0 + 11 +15374.999973 + 21 +12124.355669 + 31 +0.0 + 0 +LINE + 5 +F23 + 8 +0 + 62 + 0 + 10 +15437.499973 + 20 +12232.608844 + 30 +0.0 + 11 +15465.0 + 21 +12280.240289 + 31 +0.0 + 0 +LINE + 5 +F24 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11738.974411 + 30 +0.0 + 11 +15093.749973 + 21 +11745.469555 + 31 +0.0 + 0 +LINE + 5 +F25 + 8 +0 + 62 + 0 + 10 +15156.249973 + 20 +11853.72273 + 30 +0.0 + 11 +15187.499973 + 21 +11907.849318 + 31 +0.0 + 0 +LINE + 5 +F26 + 8 +0 + 62 + 0 + 10 +15249.999973 + 20 +12016.102493 + 30 +0.0 + 11 +15281.249973 + 21 +12070.229081 + 31 +0.0 + 0 +LINE + 5 +F27 + 8 +0 + 62 + 0 + 10 +15343.749973 + 20 +12178.482256 + 30 +0.0 + 11 +15374.999973 + 21 +12232.608844 + 31 +0.0 + 0 +LINE + 5 +F28 + 8 +0 + 62 + 0 + 10 +15437.499973 + 20 +12340.86202 + 30 +0.0 + 11 +15448.549291 + 21 +12360.0 + 31 +0.0 + 0 +LINE + 5 +F29 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11847.227586 + 30 +0.0 + 11 +15093.749973 + 21 +11853.72273 + 31 +0.0 + 0 +LINE + 5 +F2A + 8 +0 + 62 + 0 + 10 +15156.249973 + 20 +11961.975905 + 30 +0.0 + 11 +15187.499973 + 21 +12016.102493 + 31 +0.0 + 0 +LINE + 5 +F2B + 8 +0 + 62 + 0 + 10 +15249.999973 + 20 +12124.355669 + 30 +0.0 + 11 +15281.249973 + 21 +12178.482256 + 31 +0.0 + 0 +LINE + 5 +F2C + 8 +0 + 62 + 0 + 10 +15343.749973 + 20 +12286.735432 + 30 +0.0 + 11 +15374.999973 + 21 +12340.86202 + 31 +0.0 + 0 +LINE + 5 +F2D + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11955.480761 + 30 +0.0 + 11 +15093.749973 + 21 +11961.975905 + 31 +0.0 + 0 +LINE + 5 +F2E + 8 +0 + 62 + 0 + 10 +15156.249973 + 20 +12070.229081 + 30 +0.0 + 11 +15187.499973 + 21 +12124.355668 + 31 +0.0 + 0 +LINE + 5 +F2F + 8 +0 + 62 + 0 + 10 +15249.999973 + 20 +12232.608844 + 30 +0.0 + 11 +15281.249973 + 21 +12286.735432 + 31 +0.0 + 0 +LINE + 5 +F30 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +12063.733936 + 30 +0.0 + 11 +15093.749973 + 21 +12070.229081 + 31 +0.0 + 0 +LINE + 5 +F31 + 8 +0 + 62 + 0 + 10 +15156.249973 + 20 +12178.482256 + 30 +0.0 + 11 +15187.499973 + 21 +12232.608844 + 31 +0.0 + 0 +LINE + 5 +F32 + 8 +0 + 62 + 0 + 10 +15249.999973 + 20 +12340.862019 + 30 +0.0 + 11 +15261.049292 + 21 +12360.0 + 31 +0.0 + 0 +LINE + 5 +F33 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +12171.987111 + 30 +0.0 + 11 +15093.749974 + 21 +12178.482256 + 31 +0.0 + 0 +LINE + 5 +F34 + 8 +0 + 62 + 0 + 10 +15156.249974 + 20 +12286.735431 + 30 +0.0 + 11 +15187.499974 + 21 +12340.862019 + 31 +0.0 + 0 +LINE + 5 +F35 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +12280.240286 + 30 +0.0 + 11 +15093.749974 + 21 +12286.735431 + 31 +0.0 + 0 +LINE + 5 +F36 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11305.961711 + 30 +0.0 + 11 +15093.749972 + 21 +11312.456853 + 31 +0.0 + 0 +LINE + 5 +F37 + 8 +0 + 62 + 0 + 10 +15156.249972 + 20 +11420.710029 + 30 +0.0 + 11 +15187.499972 + 21 +11474.836616 + 31 +0.0 + 0 +LINE + 5 +F38 + 8 +0 + 62 + 0 + 10 +15249.999972 + 20 +11583.089792 + 30 +0.0 + 11 +15281.249972 + 21 +11637.21638 + 31 +0.0 + 0 +LINE + 5 +F39 + 8 +0 + 62 + 0 + 10 +15343.749972 + 20 +11745.469555 + 30 +0.0 + 11 +15374.999972 + 21 +11799.596143 + 31 +0.0 + 0 +LINE + 5 +F3A + 8 +0 + 62 + 0 + 10 +15437.499972 + 20 +11907.849318 + 30 +0.0 + 11 +15465.0 + 21 +11955.480764 + 31 +0.0 + 0 +LINE + 5 +F3B + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11197.708536 + 30 +0.0 + 11 +15093.749972 + 21 +11204.203678 + 31 +0.0 + 0 +LINE + 5 +F3C + 8 +0 + 62 + 0 + 10 +15156.249972 + 20 +11312.456853 + 30 +0.0 + 11 +15187.499972 + 21 +11366.583441 + 31 +0.0 + 0 +LINE + 5 +F3D + 8 +0 + 62 + 0 + 10 +15249.999972 + 20 +11474.836616 + 30 +0.0 + 11 +15281.249972 + 21 +11528.963204 + 31 +0.0 + 0 +LINE + 5 +F3E + 8 +0 + 62 + 0 + 10 +15343.749972 + 20 +11637.21638 + 30 +0.0 + 11 +15374.999972 + 21 +11691.342967 + 31 +0.0 + 0 +LINE + 5 +F3F + 8 +0 + 62 + 0 + 10 +15437.499972 + 20 +11799.596143 + 30 +0.0 + 11 +15465.0 + 21 +11847.227589 + 31 +0.0 + 0 +LINE + 5 +F40 + 8 +0 + 62 + 0 + 10 +15090.0 + 20 +11089.455361 + 30 +0.0 + 11 +15093.749972 + 21 +11095.950502 + 31 +0.0 + 0 +LINE + 5 +F41 + 8 +0 + 62 + 0 + 10 +15156.249972 + 20 +11204.203678 + 30 +0.0 + 11 +15187.499972 + 21 +11258.330266 + 31 +0.0 + 0 +LINE + 5 +F42 + 8 +0 + 62 + 0 + 10 +15249.999972 + 20 +11366.583441 + 30 +0.0 + 11 +15281.249972 + 21 +11420.710029 + 31 +0.0 + 0 +LINE + 5 +F43 + 8 +0 + 62 + 0 + 10 +15343.749972 + 20 +11528.963204 + 30 +0.0 + 11 +15374.999972 + 21 +11583.089792 + 31 +0.0 + 0 +LINE + 5 +F44 + 8 +0 + 62 + 0 + 10 +15437.499972 + 20 +11691.342968 + 30 +0.0 + 11 +15465.0 + 21 +11738.974414 + 31 +0.0 + 0 +LINE + 5 +F45 + 8 +0 + 62 + 0 + 10 +15156.249971 + 20 +11095.950503 + 30 +0.0 + 11 +15187.499971 + 21 +11150.07709 + 31 +0.0 + 0 +LINE + 5 +F46 + 8 +0 + 62 + 0 + 10 +15249.999971 + 20 +11258.330266 + 30 +0.0 + 11 +15281.249971 + 21 +11312.456853 + 31 +0.0 + 0 +LINE + 5 +F47 + 8 +0 + 62 + 0 + 10 +15343.749971 + 20 +11420.710029 + 30 +0.0 + 11 +15374.999971 + 21 +11474.836617 + 31 +0.0 + 0 +LINE + 5 +F48 + 8 +0 + 62 + 0 + 10 +15437.499971 + 20 +11583.089792 + 30 +0.0 + 11 +15465.0 + 21 +11630.721239 + 31 +0.0 + 0 +LINE + 5 +F49 + 8 +0 + 62 + 0 + 10 +15163.352923 + 20 +11000.0 + 30 +0.0 + 11 +15187.499971 + 21 +11041.823915 + 31 +0.0 + 0 +LINE + 5 +F4A + 8 +0 + 62 + 0 + 10 +15249.999971 + 20 +11150.07709 + 30 +0.0 + 11 +15281.249971 + 21 +11204.203678 + 31 +0.0 + 0 +LINE + 5 +F4B + 8 +0 + 62 + 0 + 10 +15343.749971 + 20 +11312.456854 + 30 +0.0 + 11 +15374.999971 + 21 +11366.583441 + 31 +0.0 + 0 +LINE + 5 +F4C + 8 +0 + 62 + 0 + 10 +15437.499971 + 20 +11474.836617 + 30 +0.0 + 11 +15465.0 + 21 +11522.468064 + 31 +0.0 + 0 +LINE + 5 +F4D + 8 +0 + 62 + 0 + 10 +15249.999971 + 20 +11041.823915 + 30 +0.0 + 11 +15281.249971 + 21 +11095.950503 + 31 +0.0 + 0 +LINE + 5 +F4E + 8 +0 + 62 + 0 + 10 +15343.749971 + 20 +11204.203678 + 30 +0.0 + 11 +15374.999971 + 21 +11258.330266 + 31 +0.0 + 0 +LINE + 5 +F4F + 8 +0 + 62 + 0 + 10 +15437.499971 + 20 +11366.583441 + 30 +0.0 + 11 +15465.0 + 21 +11414.214889 + 31 +0.0 + 0 +LINE + 5 +F50 + 8 +0 + 62 + 0 + 10 +15343.749971 + 20 +11095.950503 + 30 +0.0 + 11 +15374.999971 + 21 +11150.077091 + 31 +0.0 + 0 +LINE + 5 +F51 + 8 +0 + 62 + 0 + 10 +15437.499971 + 20 +11258.330266 + 30 +0.0 + 11 +15465.0 + 21 +11305.961714 + 31 +0.0 + 0 +LINE + 5 +F52 + 8 +0 + 62 + 0 + 10 +15350.852922 + 20 +11000.0 + 30 +0.0 + 11 +15374.999971 + 21 +11041.823915 + 31 +0.0 + 0 +LINE + 5 +F53 + 8 +0 + 62 + 0 + 10 +15437.499971 + 20 +11150.077091 + 30 +0.0 + 11 +15465.0 + 21 +11197.708539 + 31 +0.0 + 0 +LINE + 5 +F54 + 8 +0 + 62 + 0 + 10 +15437.49997 + 20 +11041.823915 + 30 +0.0 + 11 +15465.0 + 21 +11089.455364 + 31 +0.0 + 0 +ENDBLK + 5 +F55 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X78 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X78 + 1 + + 0 +LINE + 5 +F57 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9688.659163 + 30 +0.0 + 11 +15156.25 + 21 +9688.659163 + 31 +0.0 + 0 +LINE + 5 +F58 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9688.659163 + 30 +0.0 + 11 +15343.75 + 21 +9688.659163 + 31 +0.0 + 0 +LINE + 5 +F59 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9742.78575 + 30 +0.0 + 11 +15250.0 + 21 +9742.78575 + 31 +0.0 + 0 +LINE + 5 +F5A + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9742.78575 + 30 +0.0 + 11 +15437.5 + 21 +9742.78575 + 31 +0.0 + 0 +LINE + 5 +F5B + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9796.912338 + 30 +0.0 + 11 +15156.25 + 21 +9796.912338 + 31 +0.0 + 0 +LINE + 5 +F5C + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9796.912338 + 30 +0.0 + 11 +15343.75 + 21 +9796.912338 + 31 +0.0 + 0 +LINE + 5 +F5D + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9851.038925 + 30 +0.0 + 11 +15250.0 + 21 +9851.038925 + 31 +0.0 + 0 +LINE + 5 +F5E + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9851.038925 + 30 +0.0 + 11 +15437.5 + 21 +9851.038925 + 31 +0.0 + 0 +LINE + 5 +F5F + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9905.165513 + 30 +0.0 + 11 +15156.25 + 21 +9905.165513 + 31 +0.0 + 0 +LINE + 5 +F60 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9905.165513 + 30 +0.0 + 11 +15343.75 + 21 +9905.165513 + 31 +0.0 + 0 +LINE + 5 +F61 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9959.2921 + 30 +0.0 + 11 +15250.0 + 21 +9959.2921 + 31 +0.0 + 0 +LINE + 5 +F62 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9959.2921 + 30 +0.0 + 11 +15437.5 + 21 +9959.2921 + 31 +0.0 + 0 +LINE + 5 +F63 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +10013.418688 + 30 +0.0 + 11 +15156.25 + 21 +10013.418688 + 31 +0.0 + 0 +LINE + 5 +F64 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +10013.418688 + 30 +0.0 + 11 +15343.75 + 21 +10013.418688 + 31 +0.0 + 0 +LINE + 5 +F65 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +10067.545275 + 30 +0.0 + 11 +15250.0 + 21 +10067.545275 + 31 +0.0 + 0 +LINE + 5 +F66 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +10067.545275 + 30 +0.0 + 11 +15437.5 + 21 +10067.545275 + 31 +0.0 + 0 +LINE + 5 +F67 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +10121.671863 + 30 +0.0 + 11 +15156.25 + 21 +10121.671863 + 31 +0.0 + 0 +LINE + 5 +F68 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +10121.671863 + 30 +0.0 + 11 +15343.75 + 21 +10121.671863 + 31 +0.0 + 0 +LINE + 5 +F69 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +10175.79845 + 30 +0.0 + 11 +15250.0 + 21 +10175.79845 + 31 +0.0 + 0 +LINE + 5 +F6A + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +10175.79845 + 30 +0.0 + 11 +15437.5 + 21 +10175.79845 + 31 +0.0 + 0 +LINE + 5 +F6B + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +10229.925038 + 30 +0.0 + 11 +15156.25 + 21 +10229.925038 + 31 +0.0 + 0 +LINE + 5 +F6C + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +10229.925038 + 30 +0.0 + 11 +15343.75 + 21 +10229.925038 + 31 +0.0 + 0 +LINE + 5 +F6D + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +10284.051625 + 30 +0.0 + 11 +15250.0 + 21 +10284.051625 + 31 +0.0 + 0 +LINE + 5 +F6E + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +10284.051625 + 30 +0.0 + 11 +15437.5 + 21 +10284.051625 + 31 +0.0 + 0 +LINE + 5 +F6F + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +10338.178213 + 30 +0.0 + 11 +15156.25 + 21 +10338.178213 + 31 +0.0 + 0 +LINE + 5 +F70 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +10338.178213 + 30 +0.0 + 11 +15343.75 + 21 +10338.178213 + 31 +0.0 + 0 +LINE + 5 +F71 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +10392.3048 + 30 +0.0 + 11 +15250.0 + 21 +10392.3048 + 31 +0.0 + 0 +LINE + 5 +F72 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +10392.3048 + 30 +0.0 + 11 +15437.5 + 21 +10392.3048 + 31 +0.0 + 0 +LINE + 5 +F73 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9634.532575 + 30 +0.0 + 11 +15250.0 + 21 +9634.532575 + 31 +0.0 + 0 +LINE + 5 +F74 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9634.532575 + 30 +0.0 + 11 +15437.5 + 21 +9634.532575 + 31 +0.0 + 0 +LINE + 5 +F75 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9580.405988 + 30 +0.0 + 11 +15156.25 + 21 +9580.405988 + 31 +0.0 + 0 +LINE + 5 +F76 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9580.405988 + 30 +0.0 + 11 +15343.75 + 21 +9580.405988 + 31 +0.0 + 0 +LINE + 5 +F77 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9526.2794 + 30 +0.0 + 11 +15250.0 + 21 +9526.2794 + 31 +0.0 + 0 +LINE + 5 +F78 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9526.2794 + 30 +0.0 + 11 +15437.5 + 21 +9526.2794 + 31 +0.0 + 0 +LINE + 5 +F79 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9472.152813 + 30 +0.0 + 11 +15156.25 + 21 +9472.152813 + 31 +0.0 + 0 +LINE + 5 +F7A + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9472.152813 + 30 +0.0 + 11 +15343.75 + 21 +9472.152813 + 31 +0.0 + 0 +LINE + 5 +F7B + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9418.026225 + 30 +0.0 + 11 +15250.0 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +F7C + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9418.026225 + 30 +0.0 + 11 +15437.5 + 21 +9418.026225 + 31 +0.0 + 0 +LINE + 5 +F7D + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9363.899638 + 30 +0.0 + 11 +15156.25 + 21 +9363.899638 + 31 +0.0 + 0 +LINE + 5 +F7E + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9363.899638 + 30 +0.0 + 11 +15343.75 + 21 +9363.899638 + 31 +0.0 + 0 +LINE + 5 +F7F + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9309.77305 + 30 +0.0 + 11 +15250.0 + 21 +9309.77305 + 31 +0.0 + 0 +LINE + 5 +F80 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9309.77305 + 30 +0.0 + 11 +15437.5 + 21 +9309.77305 + 31 +0.0 + 0 +LINE + 5 +F81 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9255.646463 + 30 +0.0 + 11 +15156.25 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +F82 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9255.646463 + 30 +0.0 + 11 +15343.75 + 21 +9255.646463 + 31 +0.0 + 0 +LINE + 5 +F83 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9201.519875 + 30 +0.0 + 11 +15250.0 + 21 +9201.519875 + 31 +0.0 + 0 +LINE + 5 +F84 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9201.519875 + 30 +0.0 + 11 +15437.5 + 21 +9201.519875 + 31 +0.0 + 0 +LINE + 5 +F85 + 8 +0 + 62 + 0 + 10 +15093.75 + 20 +9147.393288 + 30 +0.0 + 11 +15156.25 + 21 +9147.393288 + 31 +0.0 + 0 +LINE + 5 +F86 + 8 +0 + 62 + 0 + 10 +15281.25 + 20 +9147.393288 + 30 +0.0 + 11 +15343.75 + 21 +9147.393288 + 31 +0.0 + 0 +LINE + 5 +F87 + 8 +0 + 62 + 0 + 10 +15187.5 + 20 +9093.2667 + 30 +0.0 + 11 +15250.0 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +F88 + 8 +0 + 62 + 0 + 10 +15375.0 + 20 +9093.2667 + 30 +0.0 + 11 +15437.5 + 21 +9093.2667 + 31 +0.0 + 0 +LINE + 5 +F89 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9379.054965 + 30 +0.0 + 11 +15437.499932 + 21 +9418.026227 + 31 +0.0 + 0 +LINE + 5 +F8A + 8 +0 + 62 + 0 + 10 +15374.999932 + 20 +9526.279402 + 30 +0.0 + 11 +15343.749932 + 21 +9580.40599 + 31 +0.0 + 0 +LINE + 5 +F8B + 8 +0 + 62 + 0 + 10 +15281.249932 + 20 +9688.659165 + 30 +0.0 + 11 +15249.999932 + 21 +9742.785753 + 31 +0.0 + 0 +LINE + 5 +F8C + 8 +0 + 62 + 0 + 10 +15187.499932 + 20 +9851.038929 + 30 +0.0 + 11 +15156.249932 + 21 +9905.165516 + 31 +0.0 + 0 +LINE + 5 +F8D + 8 +0 + 62 + 0 + 10 +15093.749932 + 20 +10013.418692 + 30 +0.0 + 11 +15092.225606 + 21 +10016.058902 + 31 +0.0 + 0 +LINE + 5 +F8E + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9270.80179 + 30 +0.0 + 11 +15437.499932 + 21 +9309.773051 + 31 +0.0 + 0 +LINE + 5 +F8F + 8 +0 + 62 + 0 + 10 +15374.999932 + 20 +9418.026227 + 30 +0.0 + 11 +15343.749932 + 21 +9472.152815 + 31 +0.0 + 0 +LINE + 5 +F90 + 8 +0 + 62 + 0 + 10 +15281.249932 + 20 +9580.40599 + 30 +0.0 + 11 +15249.999932 + 21 +9634.532578 + 31 +0.0 + 0 +LINE + 5 +F91 + 8 +0 + 62 + 0 + 10 +15187.499932 + 20 +9742.785753 + 30 +0.0 + 11 +15156.249932 + 21 +9796.912341 + 31 +0.0 + 0 +LINE + 5 +F92 + 8 +0 + 62 + 0 + 10 +15093.749932 + 20 +9905.165516 + 30 +0.0 + 11 +15092.225606 + 21 +9907.805727 + 31 +0.0 + 0 +LINE + 5 +F93 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9162.548615 + 30 +0.0 + 11 +15437.499932 + 21 +9201.519876 + 31 +0.0 + 0 +LINE + 5 +F94 + 8 +0 + 62 + 0 + 10 +15374.999932 + 20 +9309.773051 + 30 +0.0 + 11 +15343.749932 + 21 +9363.899639 + 31 +0.0 + 0 +LINE + 5 +F95 + 8 +0 + 62 + 0 + 10 +15281.249932 + 20 +9472.152815 + 30 +0.0 + 11 +15249.999932 + 21 +9526.279402 + 31 +0.0 + 0 +LINE + 5 +F96 + 8 +0 + 62 + 0 + 10 +15187.499932 + 20 +9634.532578 + 30 +0.0 + 11 +15156.249932 + 21 +9688.659166 + 31 +0.0 + 0 +LINE + 5 +F97 + 8 +0 + 62 + 0 + 10 +15093.749932 + 20 +9796.912341 + 30 +0.0 + 11 +15092.225606 + 21 +9799.552552 + 31 +0.0 + 0 +LINE + 5 +F98 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9054.29544 + 30 +0.0 + 11 +15437.499932 + 21 +9093.266701 + 31 +0.0 + 0 +LINE + 5 +F99 + 8 +0 + 62 + 0 + 10 +15374.999932 + 20 +9201.519876 + 30 +0.0 + 11 +15343.749932 + 21 +9255.646464 + 31 +0.0 + 0 +LINE + 5 +F9A + 8 +0 + 62 + 0 + 10 +15281.249932 + 20 +9363.899639 + 30 +0.0 + 11 +15249.999932 + 21 +9418.026227 + 31 +0.0 + 0 +LINE + 5 +F9B + 8 +0 + 62 + 0 + 10 +15187.499932 + 20 +9526.279402 + 30 +0.0 + 11 +15156.249932 + 21 +9580.40599 + 31 +0.0 + 0 +LINE + 5 +F9C + 8 +0 + 62 + 0 + 10 +15093.749932 + 20 +9688.659166 + 30 +0.0 + 11 +15092.225606 + 21 +9691.299377 + 31 +0.0 + 0 +LINE + 5 +F9D + 8 +0 + 62 + 0 + 10 +15374.999932 + 20 +9093.266701 + 30 +0.0 + 11 +15343.749932 + 21 +9147.393288 + 31 +0.0 + 0 +LINE + 5 +F9E + 8 +0 + 62 + 0 + 10 +15281.249932 + 20 +9255.646464 + 30 +0.0 + 11 +15249.999932 + 21 +9309.773052 + 31 +0.0 + 0 +LINE + 5 +F9F + 8 +0 + 62 + 0 + 10 +15187.499932 + 20 +9418.026227 + 30 +0.0 + 11 +15156.249932 + 21 +9472.152815 + 31 +0.0 + 0 +LINE + 5 +FA0 + 8 +0 + 62 + 0 + 10 +15093.749932 + 20 +9580.40599 + 30 +0.0 + 11 +15092.225606 + 21 +9583.046202 + 31 +0.0 + 0 +LINE + 5 +FA1 + 8 +0 + 62 + 0 + 10 +15281.249933 + 20 +9147.393289 + 30 +0.0 + 11 +15249.999933 + 21 +9201.519876 + 31 +0.0 + 0 +LINE + 5 +FA2 + 8 +0 + 62 + 0 + 10 +15187.499933 + 20 +9309.773052 + 30 +0.0 + 11 +15156.249933 + 21 +9363.89964 + 31 +0.0 + 0 +LINE + 5 +FA3 + 8 +0 + 62 + 0 + 10 +15093.749933 + 20 +9472.152815 + 30 +0.0 + 11 +15092.225606 + 21 +9474.793027 + 31 +0.0 + 0 +LINE + 5 +FA4 + 8 +0 + 62 + 0 + 10 +15274.979974 + 20 +9050.0 + 30 +0.0 + 11 +15249.999933 + 21 +9093.266701 + 31 +0.0 + 0 +LINE + 5 +FA5 + 8 +0 + 62 + 0 + 10 +15187.499933 + 20 +9201.519876 + 30 +0.0 + 11 +15156.249933 + 21 +9255.646464 + 31 +0.0 + 0 +LINE + 5 +FA6 + 8 +0 + 62 + 0 + 10 +15093.749933 + 20 +9363.89964 + 30 +0.0 + 11 +15092.225606 + 21 +9366.539852 + 31 +0.0 + 0 +LINE + 5 +FA7 + 8 +0 + 62 + 0 + 10 +15187.499933 + 20 +9093.266701 + 30 +0.0 + 11 +15156.249933 + 21 +9147.393289 + 31 +0.0 + 0 +LINE + 5 +FA8 + 8 +0 + 62 + 0 + 10 +15093.749933 + 20 +9255.646464 + 30 +0.0 + 11 +15092.225606 + 21 +9258.286677 + 31 +0.0 + 0 +LINE + 5 +FA9 + 8 +0 + 62 + 0 + 10 +15093.749933 + 20 +9147.393289 + 30 +0.0 + 11 +15092.225606 + 21 +9150.033502 + 31 +0.0 + 0 +LINE + 5 +FAA + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9487.30814 + 30 +0.0 + 11 +15437.499931 + 21 +9526.279402 + 31 +0.0 + 0 +LINE + 5 +FAB + 8 +0 + 62 + 0 + 10 +15374.999931 + 20 +9634.532577 + 30 +0.0 + 11 +15343.749931 + 21 +9688.659165 + 31 +0.0 + 0 +LINE + 5 +FAC + 8 +0 + 62 + 0 + 10 +15281.249931 + 20 +9796.912341 + 30 +0.0 + 11 +15249.999931 + 21 +9851.038928 + 31 +0.0 + 0 +LINE + 5 +FAD + 8 +0 + 62 + 0 + 10 +15187.499931 + 20 +9959.292104 + 30 +0.0 + 11 +15156.249931 + 21 +10013.418692 + 31 +0.0 + 0 +LINE + 5 +FAE + 8 +0 + 62 + 0 + 10 +15093.749931 + 20 +10121.671867 + 30 +0.0 + 11 +15092.225606 + 21 +10124.312077 + 31 +0.0 + 0 +LINE + 5 +FAF + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9595.561315 + 30 +0.0 + 11 +15437.499931 + 21 +9634.532577 + 31 +0.0 + 0 +LINE + 5 +FB0 + 8 +0 + 62 + 0 + 10 +15374.999931 + 20 +9742.785753 + 30 +0.0 + 11 +15343.749931 + 21 +9796.912341 + 31 +0.0 + 0 +LINE + 5 +FB1 + 8 +0 + 62 + 0 + 10 +15281.249931 + 20 +9905.165516 + 30 +0.0 + 11 +15249.999931 + 21 +9959.292104 + 31 +0.0 + 0 +LINE + 5 +FB2 + 8 +0 + 62 + 0 + 10 +15187.499931 + 20 +10067.545279 + 30 +0.0 + 11 +15156.249931 + 21 +10121.671867 + 31 +0.0 + 0 +LINE + 5 +FB3 + 8 +0 + 62 + 0 + 10 +15093.749931 + 20 +10229.925042 + 30 +0.0 + 11 +15092.225606 + 21 +10232.565252 + 31 +0.0 + 0 +LINE + 5 +FB4 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9703.81449 + 30 +0.0 + 11 +15437.499931 + 21 +9742.785753 + 31 +0.0 + 0 +LINE + 5 +FB5 + 8 +0 + 62 + 0 + 10 +15374.999931 + 20 +9851.038928 + 30 +0.0 + 11 +15343.749931 + 21 +9905.165516 + 31 +0.0 + 0 +LINE + 5 +FB6 + 8 +0 + 62 + 0 + 10 +15281.249931 + 20 +10013.418691 + 30 +0.0 + 11 +15249.999931 + 21 +10067.545279 + 31 +0.0 + 0 +LINE + 5 +FB7 + 8 +0 + 62 + 0 + 10 +15187.499931 + 20 +10175.798455 + 30 +0.0 + 11 +15156.249931 + 21 +10229.925042 + 31 +0.0 + 0 +LINE + 5 +FB8 + 8 +0 + 62 + 0 + 10 +15093.749931 + 20 +10338.178218 + 30 +0.0 + 11 +15092.225606 + 21 +10340.818427 + 31 +0.0 + 0 +LINE + 5 +FB9 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9812.067665 + 30 +0.0 + 11 +15437.499931 + 21 +9851.038928 + 31 +0.0 + 0 +LINE + 5 +FBA + 8 +0 + 62 + 0 + 10 +15374.999931 + 20 +9959.292104 + 30 +0.0 + 11 +15343.749931 + 21 +10013.418691 + 31 +0.0 + 0 +LINE + 5 +FBB + 8 +0 + 62 + 0 + 10 +15281.249931 + 20 +10121.671867 + 30 +0.0 + 11 +15249.999931 + 21 +10175.798454 + 31 +0.0 + 0 +LINE + 5 +FBC + 8 +0 + 62 + 0 + 10 +15187.499931 + 20 +10284.05163 + 30 +0.0 + 11 +15156.249931 + 21 +10338.178218 + 31 +0.0 + 0 +LINE + 5 +FBD + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +9920.32084 + 30 +0.0 + 11 +15437.499931 + 21 +9959.292103 + 31 +0.0 + 0 +LINE + 5 +FBE + 8 +0 + 62 + 0 + 10 +15374.999931 + 20 +10067.545279 + 30 +0.0 + 11 +15343.749931 + 21 +10121.671867 + 31 +0.0 + 0 +LINE + 5 +FBF + 8 +0 + 62 + 0 + 10 +15281.249931 + 20 +10229.925042 + 30 +0.0 + 11 +15249.999931 + 21 +10284.05163 + 31 +0.0 + 0 +LINE + 5 +FC0 + 8 +0 + 62 + 0 + 10 +15187.499931 + 20 +10392.304805 + 30 +0.0 + 11 +15182.174755 + 21 +10401.528279 + 31 +0.0 + 0 +LINE + 5 +FC1 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +10028.574015 + 30 +0.0 + 11 +15437.49993 + 21 +10067.545279 + 31 +0.0 + 0 +LINE + 5 +FC2 + 8 +0 + 62 + 0 + 10 +15374.99993 + 20 +10175.798454 + 30 +0.0 + 11 +15343.74993 + 21 +10229.925042 + 31 +0.0 + 0 +LINE + 5 +FC3 + 8 +0 + 62 + 0 + 10 +15281.24993 + 20 +10338.178217 + 30 +0.0 + 11 +15249.99993 + 21 +10392.304805 + 31 +0.0 + 0 +LINE + 5 +FC4 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +10136.82719 + 30 +0.0 + 11 +15437.49993 + 21 +10175.798454 + 31 +0.0 + 0 +LINE + 5 +FC5 + 8 +0 + 62 + 0 + 10 +15374.99993 + 20 +10284.05163 + 30 +0.0 + 11 +15343.74993 + 21 +10338.178217 + 31 +0.0 + 0 +LINE + 5 +FC6 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +10245.080365 + 30 +0.0 + 11 +15437.49993 + 21 +10284.051629 + 31 +0.0 + 0 +LINE + 5 +FC7 + 8 +0 + 62 + 0 + 10 +15374.99993 + 20 +10392.304805 + 30 +0.0 + 11 +15370.272138 + 21 +10400.493581 + 31 +0.0 + 0 +LINE + 5 +FC8 + 8 +0 + 62 + 0 + 10 +15460.0 + 20 +10353.33354 + 30 +0.0 + 11 +15437.49993 + 21 +10392.304805 + 31 +0.0 + 0 +LINE + 5 +FC9 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9469.512598 + 30 +0.0 + 11 +15093.749968 + 21 +9472.152872 + 31 +0.0 + 0 +LINE + 5 +FCA + 8 +0 + 62 + 0 + 10 +15156.249968 + 20 +9580.406048 + 30 +0.0 + 11 +15187.499968 + 21 +9634.532635 + 31 +0.0 + 0 +LINE + 5 +FCB + 8 +0 + 62 + 0 + 10 +15249.999968 + 20 +9742.785811 + 30 +0.0 + 11 +15281.249968 + 21 +9796.912399 + 31 +0.0 + 0 +LINE + 5 +FCC + 8 +0 + 62 + 0 + 10 +15343.749968 + 20 +9905.165574 + 30 +0.0 + 11 +15374.999968 + 21 +9959.292162 + 31 +0.0 + 0 +LINE + 5 +FCD + 8 +0 + 62 + 0 + 10 +15437.499968 + 20 +10067.545337 + 30 +0.0 + 11 +15460.0 + 21 +10106.516535 + 31 +0.0 + 0 +LINE + 5 +FCE + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9577.765773 + 30 +0.0 + 11 +15093.749969 + 21 +9580.406047 + 31 +0.0 + 0 +LINE + 5 +FCF + 8 +0 + 62 + 0 + 10 +15156.249969 + 20 +9688.659223 + 30 +0.0 + 11 +15187.499969 + 21 +9742.785811 + 31 +0.0 + 0 +LINE + 5 +FD0 + 8 +0 + 62 + 0 + 10 +15249.999969 + 20 +9851.038986 + 30 +0.0 + 11 +15281.249969 + 21 +9905.165574 + 31 +0.0 + 0 +LINE + 5 +FD1 + 8 +0 + 62 + 0 + 10 +15343.749969 + 20 +10013.418749 + 30 +0.0 + 11 +15374.999969 + 21 +10067.545337 + 31 +0.0 + 0 +LINE + 5 +FD2 + 8 +0 + 62 + 0 + 10 +15437.499969 + 20 +10175.798513 + 30 +0.0 + 11 +15460.0 + 21 +10214.76971 + 31 +0.0 + 0 +LINE + 5 +FD3 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9686.018948 + 30 +0.0 + 11 +15093.749969 + 21 +9688.659223 + 31 +0.0 + 0 +LINE + 5 +FD4 + 8 +0 + 62 + 0 + 10 +15156.249969 + 20 +9796.912398 + 30 +0.0 + 11 +15187.499969 + 21 +9851.038986 + 31 +0.0 + 0 +LINE + 5 +FD5 + 8 +0 + 62 + 0 + 10 +15249.999969 + 20 +9959.292161 + 30 +0.0 + 11 +15281.249969 + 21 +10013.418749 + 31 +0.0 + 0 +LINE + 5 +FD6 + 8 +0 + 62 + 0 + 10 +15343.749969 + 20 +10121.671925 + 30 +0.0 + 11 +15374.999969 + 21 +10175.798512 + 31 +0.0 + 0 +LINE + 5 +FD7 + 8 +0 + 62 + 0 + 10 +15437.499969 + 20 +10284.051688 + 30 +0.0 + 11 +15460.0 + 21 +10323.022885 + 31 +0.0 + 0 +LINE + 5 +FD8 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9794.272123 + 30 +0.0 + 11 +15093.749969 + 21 +9796.912398 + 31 +0.0 + 0 +LINE + 5 +FD9 + 8 +0 + 62 + 0 + 10 +15156.249969 + 20 +9905.165574 + 30 +0.0 + 11 +15187.499969 + 21 +9959.292161 + 31 +0.0 + 0 +LINE + 5 +FDA + 8 +0 + 62 + 0 + 10 +15249.999969 + 20 +10067.545337 + 30 +0.0 + 11 +15281.249969 + 21 +10121.671925 + 31 +0.0 + 0 +LINE + 5 +FDB + 8 +0 + 62 + 0 + 10 +15343.749969 + 20 +10229.9251 + 30 +0.0 + 11 +15374.999969 + 21 +10284.051688 + 31 +0.0 + 0 +LINE + 5 +FDC + 8 +0 + 62 + 0 + 10 +15437.499969 + 20 +10392.304863 + 30 +0.0 + 11 +15441.999925 + 21 +10400.099016 + 31 +0.0 + 0 +LINE + 5 +FDD + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9902.525298 + 30 +0.0 + 11 +15093.749969 + 21 +9905.165574 + 31 +0.0 + 0 +LINE + 5 +FDE + 8 +0 + 62 + 0 + 10 +15156.249969 + 20 +10013.418749 + 30 +0.0 + 11 +15187.499969 + 21 +10067.545337 + 31 +0.0 + 0 +LINE + 5 +FDF + 8 +0 + 62 + 0 + 10 +15249.999969 + 20 +10175.798512 + 30 +0.0 + 11 +15281.249969 + 21 +10229.9251 + 31 +0.0 + 0 +LINE + 5 +FE0 + 8 +0 + 62 + 0 + 10 +15343.749969 + 20 +10338.178275 + 30 +0.0 + 11 +15374.999969 + 21 +10392.304863 + 31 +0.0 + 0 +LINE + 5 +FE1 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +10010.778473 + 30 +0.0 + 11 +15093.749969 + 21 +10013.418749 + 31 +0.0 + 0 +LINE + 5 +FE2 + 8 +0 + 62 + 0 + 10 +15156.249969 + 20 +10121.671924 + 30 +0.0 + 11 +15187.499969 + 21 +10175.798512 + 31 +0.0 + 0 +LINE + 5 +FE3 + 8 +0 + 62 + 0 + 10 +15249.999969 + 20 +10284.051688 + 30 +0.0 + 11 +15281.249969 + 21 +10338.178275 + 31 +0.0 + 0 +LINE + 5 +FE4 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +10119.031648 + 30 +0.0 + 11 +15093.74997 + 21 +10121.671924 + 31 +0.0 + 0 +LINE + 5 +FE5 + 8 +0 + 62 + 0 + 10 +15156.24997 + 20 +10229.9251 + 30 +0.0 + 11 +15187.49997 + 21 +10284.051687 + 31 +0.0 + 0 +LINE + 5 +FE6 + 8 +0 + 62 + 0 + 10 +15249.99997 + 20 +10392.304863 + 30 +0.0 + 11 +15255.093527 + 21 +10401.127163 + 31 +0.0 + 0 +LINE + 5 +FE7 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +10227.284823 + 30 +0.0 + 11 +15093.74997 + 21 +10229.9251 + 31 +0.0 + 0 +LINE + 5 +FE8 + 8 +0 + 62 + 0 + 10 +15156.24997 + 20 +10338.178275 + 30 +0.0 + 11 +15187.49997 + 21 +10392.304863 + 31 +0.0 + 0 +LINE + 5 +FE9 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +10335.537998 + 30 +0.0 + 11 +15093.74997 + 21 +10338.178275 + 31 +0.0 + 0 +LINE + 5 +FEA + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9361.259423 + 30 +0.0 + 11 +15093.749968 + 21 +9363.899697 + 31 +0.0 + 0 +LINE + 5 +FEB + 8 +0 + 62 + 0 + 10 +15156.249968 + 20 +9472.152872 + 30 +0.0 + 11 +15187.499968 + 21 +9526.27946 + 31 +0.0 + 0 +LINE + 5 +FEC + 8 +0 + 62 + 0 + 10 +15249.999968 + 20 +9634.532635 + 30 +0.0 + 11 +15281.249968 + 21 +9688.659223 + 31 +0.0 + 0 +LINE + 5 +FED + 8 +0 + 62 + 0 + 10 +15343.749968 + 20 +9796.912399 + 30 +0.0 + 11 +15374.999968 + 21 +9851.038986 + 31 +0.0 + 0 +LINE + 5 +FEE + 8 +0 + 62 + 0 + 10 +15437.499968 + 20 +9959.292162 + 30 +0.0 + 11 +15460.0 + 21 +9998.26336 + 31 +0.0 + 0 +LINE + 5 +FEF + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9253.006248 + 30 +0.0 + 11 +15093.749968 + 21 +9255.646521 + 31 +0.0 + 0 +LINE + 5 +FF0 + 8 +0 + 62 + 0 + 10 +15156.249968 + 20 +9363.899697 + 30 +0.0 + 11 +15187.499968 + 21 +9418.026285 + 31 +0.0 + 0 +LINE + 5 +FF1 + 8 +0 + 62 + 0 + 10 +15249.999968 + 20 +9526.27946 + 30 +0.0 + 11 +15281.249968 + 21 +9580.406048 + 31 +0.0 + 0 +LINE + 5 +FF2 + 8 +0 + 62 + 0 + 10 +15343.749968 + 20 +9688.659223 + 30 +0.0 + 11 +15374.999968 + 21 +9742.785811 + 31 +0.0 + 0 +LINE + 5 +FF3 + 8 +0 + 62 + 0 + 10 +15437.499968 + 20 +9851.038986 + 30 +0.0 + 11 +15460.0 + 21 +9890.010185 + 31 +0.0 + 0 +LINE + 5 +FF4 + 8 +0 + 62 + 0 + 10 +15092.225606 + 20 +9144.753073 + 30 +0.0 + 11 +15093.749968 + 21 +9147.393346 + 31 +0.0 + 0 +LINE + 5 +FF5 + 8 +0 + 62 + 0 + 10 +15156.249968 + 20 +9255.646522 + 30 +0.0 + 11 +15187.499968 + 21 +9309.773109 + 31 +0.0 + 0 +LINE + 5 +FF6 + 8 +0 + 62 + 0 + 10 +15249.999968 + 20 +9418.026285 + 30 +0.0 + 11 +15281.249968 + 21 +9472.152872 + 31 +0.0 + 0 +LINE + 5 +FF7 + 8 +0 + 62 + 0 + 10 +15343.749968 + 20 +9580.406048 + 30 +0.0 + 11 +15374.999968 + 21 +9634.532636 + 31 +0.0 + 0 +LINE + 5 +FF8 + 8 +0 + 62 + 0 + 10 +15437.499968 + 20 +9742.785811 + 30 +0.0 + 11 +15460.0 + 21 +9781.75701 + 31 +0.0 + 0 +LINE + 5 +FF9 + 8 +0 + 62 + 0 + 10 +15156.249968 + 20 +9147.393346 + 30 +0.0 + 11 +15187.499968 + 21 +9201.519934 + 31 +0.0 + 0 +LINE + 5 +FFA + 8 +0 + 62 + 0 + 10 +15249.999968 + 20 +9309.773109 + 30 +0.0 + 11 +15281.249968 + 21 +9363.899697 + 31 +0.0 + 0 +LINE + 5 +FFB + 8 +0 + 62 + 0 + 10 +15343.749968 + 20 +9472.152873 + 30 +0.0 + 11 +15374.999968 + 21 +9526.27946 + 31 +0.0 + 0 +LINE + 5 +FFC + 8 +0 + 62 + 0 + 10 +15437.499968 + 20 +9634.532636 + 30 +0.0 + 11 +15460.0 + 21 +9673.503835 + 31 +0.0 + 0 +LINE + 5 +FFD + 8 +0 + 62 + 0 + 10 +15162.519893 + 20 +9050.0 + 30 +0.0 + 11 +15187.499967 + 21 +9093.266759 + 31 +0.0 + 0 +LINE + 5 +FFE + 8 +0 + 62 + 0 + 10 +15249.999967 + 20 +9201.519934 + 30 +0.0 + 11 +15281.249967 + 21 +9255.646522 + 31 +0.0 + 0 +LINE + 5 +FFF + 8 +0 + 62 + 0 + 10 +15343.749967 + 20 +9363.899697 + 30 +0.0 + 11 +15374.999967 + 21 +9418.026285 + 31 +0.0 + 0 +LINE + 5 +1000 + 8 +0 + 62 + 0 + 10 +15437.499967 + 20 +9526.27946 + 30 +0.0 + 11 +15460.0 + 21 +9565.25066 + 31 +0.0 + 0 +LINE + 5 +1001 + 8 +0 + 62 + 0 + 10 +15249.999967 + 20 +9093.266759 + 30 +0.0 + 11 +15281.249967 + 21 +9147.393346 + 31 +0.0 + 0 +LINE + 5 +1002 + 8 +0 + 62 + 0 + 10 +15343.749967 + 20 +9255.646522 + 30 +0.0 + 11 +15374.999967 + 21 +9309.77311 + 31 +0.0 + 0 +LINE + 5 +1003 + 8 +0 + 62 + 0 + 10 +15437.499967 + 20 +9418.026285 + 30 +0.0 + 11 +15460.0 + 21 +9456.997485 + 31 +0.0 + 0 +LINE + 5 +1004 + 8 +0 + 62 + 0 + 10 +15343.749967 + 20 +9147.393347 + 30 +0.0 + 11 +15374.999967 + 21 +9201.519934 + 31 +0.0 + 0 +LINE + 5 +1005 + 8 +0 + 62 + 0 + 10 +15437.499967 + 20 +9309.77311 + 30 +0.0 + 11 +15460.0 + 21 +9348.74431 + 31 +0.0 + 0 +LINE + 5 +1006 + 8 +0 + 62 + 0 + 10 +15350.019892 + 20 +9050.0 + 30 +0.0 + 11 +15374.999967 + 21 +9093.266759 + 31 +0.0 + 0 +LINE + 5 +1007 + 8 +0 + 62 + 0 + 10 +15437.499967 + 20 +9201.519934 + 30 +0.0 + 11 +15460.0 + 21 +9240.491135 + 31 +0.0 + 0 +LINE + 5 +1008 + 8 +0 + 62 + 0 + 10 +15437.499967 + 20 +9093.266759 + 30 +0.0 + 11 +15460.0 + 21 +9132.23796 + 31 +0.0 + 0 +ENDBLK + 5 +1009 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D79 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D79 + 1 + + 0 +LINE + 5 +100B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15921.0 + 20 +7285.0 + 30 +0.0 + 11 +16019.0 + 21 +7285.0 + 31 +0.0 + 0 +INSERT + 5 +100C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15920.0 + 20 +7285.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +100D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16020.0 + 20 +7285.0 + 30 +0.0 + 0 +TEXT + 5 +100E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15948.125 + 20 +7328.75 + 30 +0.0 + 40 +87.5 + 1 +2 + 41 +0.75 + 72 + 1 + 11 +15970.0 + 21 +7372.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +100F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15920.0 + 20 +8990.0 + 30 +0.0 + 0 +POINT + 5 +1010 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16020.0 + 20 +8990.0 + 30 +0.0 + 0 +POINT + 5 +1011 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16020.0 + 20 +7285.0 + 30 +0.0 + 0 +ENDBLK + 5 +1012 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D81 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D81 + 1 + + 0 +LINE + 5 +1014 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16081.0 + 20 +7285.0 + 30 +0.0 + 11 +16584.0 + 21 +7285.0 + 31 +0.0 + 0 +INSERT + 5 +1015 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16080.0 + 20 +7285.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1016 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16585.0 + 20 +7285.0 + 30 +0.0 + 0 +TEXT + 5 +1017 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16310.625 + 20 +7328.75 + 30 +0.0 + 40 +87.5 + 1 +8 + 41 +0.75 + 72 + 1 + 11 +16332.5 + 21 +7372.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1018 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16080.0 + 20 +9050.0 + 30 +0.0 + 0 +POINT + 5 +1019 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16585.0 + 20 +9065.0 + 30 +0.0 + 0 +POINT + 5 +101A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16585.0 + 20 +7285.0 + 30 +0.0 + 0 +ENDBLK + 5 +101B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D83 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D83 + 1 + + 0 +LINE + 5 +101D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16651.0 + 20 +7285.0 + 30 +0.0 + 11 +16749.0 + 21 +7285.0 + 31 +0.0 + 0 +INSERT + 5 +101E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16650.0 + 20 +7285.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +101F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16750.0 + 20 +7285.0 + 30 +0.0 + 0 +TEXT + 5 +1020 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16678.125 + 20 +7328.75 + 30 +0.0 + 40 +87.5 + 1 +2 + 41 +0.75 + 72 + 1 + 11 +16700.0 + 21 +7372.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1021 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16650.0 + 20 +9460.0 + 30 +0.0 + 0 +POINT + 5 +1022 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16750.0 + 20 +9000.0 + 30 +0.0 + 0 +POINT + 5 +1023 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16750.0 + 20 +7285.0 + 30 +0.0 + 0 +ENDBLK + 5 +1024 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D84 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D84 + 1 + + 0 +LINE + 5 +1026 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +8186.0 + 30 +0.0 + 11 +18630.0 + 21 +8984.0 + 31 +0.0 + 0 +INSERT + 5 +1027 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +8185.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1028 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +8985.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1029 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18586.25 + 20 +8541.25 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18542.5 + 21 +8585.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +102A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17570.0 + 20 +8185.0 + 30 +0.0 + 0 +POINT + 5 +102B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17570.0 + 20 +8985.0 + 30 +0.0 + 0 +POINT + 5 +102C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +8985.0 + 30 +0.0 + 0 +ENDBLK + 5 +102D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D85 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D85 + 1 + + 0 +LINE + 5 +102F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +8986.0 + 30 +0.0 + 11 +18630.0 + 21 +9179.0 + 31 +0.0 + 0 +INSERT + 5 +1030 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +8985.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1031 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9180.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1032 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18586.25 + 20 +9060.625 + 30 +0.0 + 40 +87.5 + 1 +4 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18542.5 + 21 +9082.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1033 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17570.0 + 20 +8985.0 + 30 +0.0 + 0 +POINT + 5 +1034 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17580.0 + 20 +9180.0 + 30 +0.0 + 0 +POINT + 5 +1035 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9180.0 + 30 +0.0 + 0 +ENDBLK + 5 +1036 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D86 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D86 + 1 + + 0 +LINE + 5 +1038 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9181.0 + 30 +0.0 + 11 +18630.0 + 21 +9239.0 + 31 +0.0 + 0 +INSERT + 5 +1039 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9180.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +103A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9240.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +103B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18586.25 + 20 +9199.0625 + 30 +0.0 + 40 +87.5 + 1 +1 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18542.5 + 21 +9210.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +103C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17580.0 + 20 +9180.0 + 30 +0.0 + 0 +POINT + 5 +103D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17575.0 + 20 +9240.0 + 30 +0.0 + 0 +POINT + 5 +103E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9240.0 + 30 +0.0 + 0 +ENDBLK + 5 +103F + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D87 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D87 + 1 + + 0 +LINE + 5 +1041 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9241.0 + 30 +0.0 + 11 +18630.0 + 21 +9434.0 + 31 +0.0 + 0 +INSERT + 5 +1042 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9240.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1043 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9435.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1044 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18586.25 + 20 +9315.625 + 30 +0.0 + 40 +87.5 + 1 +4 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18542.5 + 21 +9337.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1045 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17575.0 + 20 +9240.0 + 30 +0.0 + 0 +POINT + 5 +1046 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17585.0 + 20 +9435.0 + 30 +0.0 + 0 +POINT + 5 +1047 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9435.0 + 30 +0.0 + 0 +ENDBLK + 5 +1048 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D93 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D93 + 1 + + 0 +LINE + 5 +104A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16021.0 + 20 +7285.0 + 30 +0.0 + 11 +16079.0 + 21 +7285.0 + 31 +0.0 + 0 +INSERT + 5 +104B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16020.0 + 20 +7285.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +104C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16080.0 + 20 +7285.0 + 30 +0.0 + 0 +TEXT + 5 +104D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16022.5 + 20 +7481.25 + 30 +0.0 + 40 +87.5 + 1 +1.25 + 41 +0.75 + 72 + 1 + 11 +16110.0 + 21 +7525.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +104E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16020.0 + 20 +8990.0 + 30 +0.0 + 0 +POINT + 5 +104F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16080.0 + 20 +9050.0 + 30 +0.0 + 0 +POINT + 5 +1050 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16080.0 + 20 +7285.0 + 30 +0.0 + 0 +ENDBLK + 5 +1051 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D95 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D95 + 1 + + 0 +LINE + 5 +1053 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16586.0 + 20 +7285.0 + 30 +0.0 + 11 +16649.0 + 21 +7285.0 + 31 +0.0 + 0 +INSERT + 5 +1054 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16585.0 + 20 +7285.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1055 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16650.0 + 20 +7285.0 + 30 +0.0 + 0 +TEXT + 5 +1056 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16612.5 + 20 +7496.25 + 30 +0.0 + 40 +87.5 + 1 +1.25 + 41 +0.75 + 72 + 1 + 11 +16700.0 + 21 +7540.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1057 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16585.0 + 20 +9065.0 + 30 +0.0 + 0 +POINT + 5 +1058 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16650.0 + 20 +9460.0 + 30 +0.0 + 0 +POINT + 5 +1059 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16650.0 + 20 +7285.0 + 30 +0.0 + 0 +ENDBLK + 5 +105A + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D96 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D96 + 1 + + 0 +LINE + 5 +105C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9436.0 + 30 +0.0 + 11 +18630.0 + 21 +9559.0 + 31 +0.0 + 0 +INSERT + 5 +105D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9435.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +105E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18630.0 + 20 +9560.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +105F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18586.25 + 20 +9598.125 + 30 +0.0 + 40 +87.5 + 1 +2 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18542.5 + 21 +9620.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1060 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17585.0 + 20 +9435.0 + 30 +0.0 + 0 +POINT + 5 +1061 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17585.0 + 20 +9560.0 + 30 +0.0 + 0 +POINT + 5 +1062 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18630.0 + 20 +9560.0 + 30 +0.0 + 0 +ENDBLK + 5 +1063 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D97 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D97 + 1 + + 0 +LINE + 5 +1065 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15620.0 + 20 +9561.0 + 30 +0.0 + 11 +15620.0 + 21 +9859.0 + 31 +0.0 + 0 +INSERT + 5 +1066 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15620.0 + 20 +9560.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1067 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15620.0 + 20 +9860.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1068 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15576.25 + 20 +9688.125 + 30 +0.0 + 40 +87.5 + 1 +6 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +15532.5 + 21 +9710.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1069 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15870.0 + 20 +9560.0 + 30 +0.0 + 0 +POINT + 5 +106A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15870.0 + 20 +9860.0 + 30 +0.0 + 0 +POINT + 5 +106B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15620.0 + 20 +9860.0 + 30 +0.0 + 0 +ENDBLK + 5 +106C + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D98 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D98 + 1 + + 0 +LINE + 5 +106E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16021.789473 + 20 +10121.000702 + 30 +0.0 + 11 +15872.582352 + 21 +10121.000702 + 31 +0.0 + 0 +INSERT + 5 +106F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16022.789473 + 20 +10121.000702 + 30 +0.0 + 0 +INSERT + 5 +1070 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15871.582352 + 20 +10121.000702 + 30 +0.0 + 50 +180.0 + 0 +TEXT + 5 +1071 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15925.310913 + 20 +10164.750702 + 30 +0.0 + 40 +87.5 + 1 +3 + 41 +0.75 + 72 + 1 + 11 +15947.185913 + 21 +10208.500702 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1072 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16022.789473 + 20 +9960.24584 + 30 +0.0 + 0 +POINT + 5 +1073 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15871.582352 + 20 +9960.24584 + 30 +0.0 + 0 +POINT + 5 +1074 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15871.582352 + 20 +10121.000702 + 30 +0.0 + 0 +ENDBLK + 5 +1075 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D99 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D99 + 1 + + 0 +LINE + 5 +1077 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16021.0 + 20 +13550.0 + 30 +0.0 + 11 +16649.0 + 21 +13550.0 + 31 +0.0 + 0 +INSERT + 5 +1078 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16020.0 + 20 +13550.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1079 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16650.0 + 20 +13550.0 + 30 +0.0 + 0 +TEXT + 5 +107A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16291.25 + 20 +13593.75 + 30 +0.0 + 40 +87.5 + 1 +12 + 41 +0.75 + 72 + 1 + 11 +16335.0 + 21 +13637.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +107B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16020.0 + 20 +12320.0 + 30 +0.0 + 0 +POINT + 5 +107C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16650.0 + 20 +12320.0 + 30 +0.0 + 0 +POINT + 5 +107D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16650.0 + 20 +13550.0 + 30 +0.0 + 0 +ENDBLK + 5 +107E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D103 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D103 + 1 + + 0 +LINE + 5 +1080 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +16020.357827 + 20 +12020.090071 + 30 +0.0 + 11 +15947.609987 + 21 +12020.090071 + 31 +0.0 + 0 +INSERT + 5 +1081 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +16021.357827 + 20 +12020.090071 + 30 +0.0 + 0 +INSERT + 5 +1082 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +15946.609987 + 20 +12020.090071 + 30 +0.0 + 50 +180.0 + 0 +TEXT + 5 +1083 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +15840.389563 + 20 +12063.840071 + 30 +0.0 + 40 +87.5 + 1 +1 + 41 +0.75 + 72 + 1 + 11 +15851.327063 + 21 +12107.590071 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1084 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +16021.357827 + 20 +12209.009781 + 30 +0.0 + 0 +POINT + 5 +1085 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15946.609987 + 20 +12209.009781 + 30 +0.0 + 0 +POINT + 5 +1086 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +15946.609987 + 20 +12020.090071 + 30 +0.0 + 0 +ENDBLK + 5 +1087 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D105 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D105 + 1 + + 0 +LINE + 5 +1089 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18624.167458 + 20 +12416.10418 + 30 +0.0 + 11 +18624.167458 + 21 +13214.0 + 31 +0.0 + 0 +INSERT + 5 +108A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18624.167458 + 20 +12415.10418 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +108B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18624.167458 + 20 +13215.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +108C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18580.417458 + 20 +12771.30209 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18536.667458 + 21 +12815.05209 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +108D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17578.177313 + 20 +12415.10418 + 30 +0.0 + 0 +POINT + 5 +108E + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17570.0 + 20 +13215.0 + 30 +0.0 + 0 +POINT + 5 +108F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18624.167458 + 20 +13215.0 + 30 +0.0 + 0 +ENDBLK + 5 +1090 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D106 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D106 + 1 + + 0 +LINE + 5 +1092 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18624.167458 + 20 +12341.808311 + 30 +0.0 + 11 +18624.167458 + 21 +12414.10418 + 31 +0.0 + 0 +INSERT + 5 +1093 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18624.167458 + 20 +12340.808311 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +1094 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +18624.167458 + 20 +12415.10418 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1095 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +18580.417458 + 20 +12204.0625 + 30 +0.0 + 40 +87.5 + 1 +1 + 50 +90.0 + 41 +0.75 + 72 + 1 + 11 +18536.667458 + 21 +12215.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1096 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17578.177313 + 20 +12340.808311 + 30 +0.0 + 0 +POINT + 5 +1097 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +17578.177313 + 20 +12415.10418 + 30 +0.0 + 0 +POINT + 5 +1098 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +18624.167458 + 20 +12415.10418 + 30 +0.0 + 0 +ENDBLK + 5 +1099 + 8 +0 + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +POLYLINE + 5 +109A + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1EF4 + 8 +0 + 10 +500.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1EF5 + 8 +0 + 10 +20900.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1EF6 + 8 +0 + 10 +20900.0 + 20 +14725.0 + 30 +0.0 + 0 +VERTEX + 5 +1EF7 + 8 +0 + 10 +500.0 + 20 +14725.0 + 30 +0.0 + 0 +SEQEND + 5 +1EF8 + 8 +0 + 0 +POLYLINE + 5 +10A0 + 8 +FUNDAMENT + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1EF9 + 8 +FUNDAMENT + 10 +7921.25 + 20 +4222.5 + 30 +0.0 + 0 +VERTEX + 5 +1EFA + 8 +FUNDAMENT + 10 +5421.25 + 20 +4222.5 + 30 +0.0 + 0 +VERTEX + 5 +1EFB + 8 +FUNDAMENT + 10 +5421.25 + 20 +2847.5 + 30 +0.0 + 0 +VERTEX + 5 +1EFC + 8 +FUNDAMENT + 10 +7921.25 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +1EFD + 8 +FUNDAMENT + 0 +POLYLINE + 5 +10A6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1EFE + 8 +0 + 10 +20900.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +1EFF + 8 +0 + 10 +16275.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +1F00 + 8 +0 + 10 +16275.0 + 20 +125.0 + 30 +0.0 + 0 +SEQEND + 5 +1F01 + 8 +0 + 0 +POLYLINE + 5 +10AB + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F02 + 8 +MAUERWERK + 10 +6215.0 + 20 +4660.0 + 30 +0.0 + 0 +VERTEX + 5 +1F03 + 8 +MAUERWERK + 10 +7127.5 + 20 +4660.0 + 30 +0.0 + 0 +VERTEX + 5 +1F04 + 8 +MAUERWERK + 10 +7127.5 + 20 +5094.375 + 30 +0.0 + 0 +VERTEX + 5 +1F05 + 8 +MAUERWERK + 10 +6215.0 + 20 +5094.375 + 30 +0.0 + 0 +SEQEND + 5 +1F06 + 8 +MAUERWERK + 0 +POLYLINE + 5 +10B1 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F07 + 8 +MAUERWERK + 10 +6141.15625 + 20 +9890.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F08 + 8 +MAUERWERK + 10 +7053.65625 + 20 +9890.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F09 + 8 +MAUERWERK + 10 +7053.65625 + 20 +11143.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F0A + 8 +MAUERWERK + 10 +6141.15625 + 20 +11143.282507 + 30 +0.0 + 0 +SEQEND + 5 +1F0B + 8 +MAUERWERK + 0 +POLYLINE + 5 +10B7 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F0C + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11105.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F0D + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11105.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F0E + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11283.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F0F + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11283.282507 + 30 +0.0 + 0 +SEQEND + 5 +1F10 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +10BD + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F11 + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11320.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F12 + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11320.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F13 + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11498.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F14 + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11498.282507 + 30 +0.0 + 0 +SEQEND + 5 +1F15 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +10C3 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F16 + 8 +VORSATZSCHALE + 10 +5603.65625 + 20 +11090.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F17 + 8 +VORSATZSCHALE + 10 +5853.65625 + 20 +11090.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F18 + 8 +VORSATZSCHALE + 10 +5853.65625 + 20 +11278.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F19 + 8 +VORSATZSCHALE + 10 +6141.15625 + 20 +11278.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F1A + 8 +VORSATZSCHALE + 10 +6141.15625 + 20 +11190.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F1B + 8 +VORSATZSCHALE + 10 +6141.15625 + 20 +11130.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F1C + 8 +VORSATZSCHALE + 10 +5856.15625 + 20 +11130.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F1D + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +10CC + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F1E + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11323.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F1F + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11495.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F20 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +10D0 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F21 + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11323.282507 + 30 +0.0 + 0 +VERTEX + 5 +1F22 + 8 +VORSATZSCHALE + 10 +5501.15625 + 20 +11495.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F23 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +10D4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F24 + 8 +DRAHTANKER + 10 +5778.65625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F25 + 8 +DRAHTANKER + 10 +5953.65625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F26 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10D8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F27 + 8 +DRAHTANKER + 10 +6203.65625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F28 + 8 +DRAHTANKER + 10 +6253.65625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F29 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10DC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F2A + 8 +DRAHTANKER + 10 +6303.65625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F2B + 8 +DRAHTANKER + 10 +6353.65625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F2C + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10E0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F2D + 8 +DRAHTANKER + 10 +5591.15625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F2E + 8 +DRAHTANKER + 10 +5641.15625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F2F + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10E4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F30 + 8 +DRAHTANKER + 10 +5678.65625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F31 + 8 +DRAHTANKER + 10 +5728.65625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F32 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10E8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F33 + 8 +DRAHTANKER + 10 +5853.65625 + 20 +12140.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F34 + 8 +DRAHTANKER + 10 +5853.65625 + 20 +11990.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F35 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10EC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F36 + 8 +DRAHTANKER + 10 +5916.15625 + 20 +12115.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F37 + 8 +DRAHTANKER + 10 +5916.15625 + 20 +12020.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F38 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10F0 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F39 + 8 +DRAHTANKER + 10 +5978.65625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F3A + 8 +DRAHTANKER + 10 +6028.65625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F3B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10F4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1F3C + 8 +DRAHTANKER + 10 +6053.65625 + 20 +12065.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F3D + 8 +DRAHTANKER + 10 +6103.65625 + 20 +12065.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F3E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +10F8 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +10F9 + 8 +ERDBODEN + 10 +4656.653978 + 20 +3326.420535 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10FA + 8 +ERDBODEN + 10 +4611.533246 + 20 +3481.453371 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10FB + 8 +ERDBODEN + 10 +4612.538438 + 20 +3494.15164 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10FC + 8 +ERDBODEN + 10 +4615.344714 + 20 +3504.818406 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10FD + 8 +ERDBODEN + 10 +4619.638123 + 20 +3513.536251 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10FE + 8 +ERDBODEN + 10 +4625.104716 + 20 +3520.387756 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10FF + 8 +ERDBODEN + 10 +4631.430541 + 20 +3525.455503 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1100 + 8 +ERDBODEN + 10 +4638.301649 + 20 +3528.822073 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1101 + 8 +ERDBODEN + 10 +4645.404088 + 20 +3530.570048 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1102 + 8 +ERDBODEN + 10 +4652.423909 + 20 +3530.782008 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1103 + 8 +ERDBODEN + 10 +4659.110502 + 20 +3529.543289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1104 + 8 +ERDBODEN + 10 +4665.466621 + 20 +3526.950234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1105 + 8 +ERDBODEN + 10 +4671.55836 + 20 +3523.101943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1106 + 8 +ERDBODEN + 10 +4677.451815 + 20 +3518.097511 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1107 + 8 +ERDBODEN + 10 +4683.21308 + 20 +3512.036038 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1108 + 8 +ERDBODEN + 10 +4688.908251 + 20 +3505.01662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1109 + 8 +ERDBODEN + 10 +4694.603421 + 20 +3497.138355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110A + 8 +ERDBODEN + 10 +4700.364687 + 20 +3488.500342 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110B + 8 +ERDBODEN + 10 +4706.233356 + 20 +3479.201677 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110C + 8 +ERDBODEN + 10 +4712.151597 + 20 +3469.341458 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110D + 8 +ERDBODEN + 10 +4718.03679 + 20 +3459.018783 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110E + 8 +ERDBODEN + 10 +4723.806317 + 20 +3448.33275 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110F + 8 +ERDBODEN + 10 +4729.37756 + 20 +3437.382456 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1110 + 8 +ERDBODEN + 10 +4734.667899 + 20 +3426.266999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1111 + 8 +ERDBODEN + 10 +4739.594718 + 20 +3415.085477 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1112 + 8 +ERDBODEN + 10 +4744.075396 + 20 +3403.936986 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1113 + 8 +ERDBODEN + 10 +4748.032823 + 20 +3392.917873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1114 + 8 +ERDBODEN + 10 +4751.411921 + 20 +3382.113471 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1115 + 8 +ERDBODEN + 10 +4754.163118 + 20 +3371.606362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1116 + 8 +ERDBODEN + 10 +4756.236843 + 20 +3361.479127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1117 + 8 +ERDBODEN + 10 +4757.583525 + 20 +3351.814348 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1118 + 8 +ERDBODEN + 10 +4758.153593 + 20 +3342.694605 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1119 + 8 +ERDBODEN + 10 +4757.897475 + 20 +3334.202481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111A + 8 +ERDBODEN + 10 +4756.765602 + 20 +3326.420557 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111B + 8 +ERDBODEN + 10 +4754.713908 + 20 +3319.431414 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111C + 8 +ERDBODEN + 10 +4751.720364 + 20 +3313.317634 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111D + 8 +ERDBODEN + 10 +4747.768444 + 20 +3308.161798 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111E + 8 +ERDBODEN + 10 +4742.841626 + 20 +3304.046489 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111F + 8 +ERDBODEN + 10 +4736.923385 + 20 +3301.054288 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1120 + 8 +ERDBODEN + 10 +4729.997199 + 20 +3299.267777 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1121 + 8 +ERDBODEN + 10 +4722.046542 + 20 +3298.769537 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1122 + 8 +ERDBODEN + 10 +4713.054893 + 20 +3299.64215 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1123 + 8 +ERDBODEN + 10 +4703.080082 + 20 +3301.899379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1124 + 8 +ERDBODEN + 10 +4692.477371 + 20 +3305.279717 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1125 + 8 +ERDBODEN + 10 +4681.676376 + 20 +3309.452838 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1126 + 8 +ERDBODEN + 10 +4671.106712 + 20 +3314.088414 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1127 + 8 +ERDBODEN + 10 +4661.197997 + 20 +3318.856121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1128 + 8 +ERDBODEN + 10 +4652.379846 + 20 +3323.425631 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1129 + 8 +ERDBODEN + 10 +4645.081876 + 20 +3327.466618 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112A + 8 +ERDBODEN + 10 +4639.733703 + 20 +3330.648757 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112B + 8 +ERDBODEN + 10 +4636.607969 + 20 +3332.784862 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112C + 8 +ERDBODEN + 10 +4635.349413 + 20 +3334.260314 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112D + 8 +ERDBODEN + 10 +4635.445802 + 20 +3335.603633 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112E + 8 +ERDBODEN + 10 +4636.384899 + 20 +3337.343342 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112F + 8 +ERDBODEN + 10 +4637.65447 + 20 +3340.007962 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1130 + 8 +ERDBODEN + 10 +4638.742281 + 20 +3344.126015 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1131 + 8 +ERDBODEN + 10 +4639.136096 + 20 +3350.226022 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1132 + 8 +ERDBODEN + 10 +4638.32368 + 20 +3358.836505 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1133 + 8 +ERDBODEN + 10 +4635.958037 + 20 +3370.290542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1134 + 8 +ERDBODEN + 10 +4632.353115 + 20 +3384.139441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1135 + 8 +ERDBODEN + 10 +4627.988103 + 20 +3399.739067 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1136 + 8 +ERDBODEN + 10 +4623.342187 + 20 +3416.445285 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1137 + 8 +ERDBODEN + 10 +4618.894557 + 20 +3433.61396 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1138 + 8 +ERDBODEN + 10 +4615.124398 + 20 +3450.600956 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1139 + 8 +ERDBODEN + 10 +4612.510898 + 20 +3466.762138 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +113A + 8 +ERDBODEN + 10 +4588.97288 + 20 +3504.003601 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +113B + 8 +ERDBODEN + 10 +4656.653978 + 20 +3546.28529 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +113C + 8 +ERDBODEN + 10 +4698.954664 + 20 +3495.54729 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +113D + 8 +ERDBODEN + 10 +4749.715487 + 20 +3402.527601 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +113E + 8 +ERDBODEN + 10 +4766.635762 + 20 +3317.964224 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +113F + 8 +ERDBODEN + 10 +4724.335076 + 20 +3284.138846 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1140 + 8 +ERDBODEN + 10 +4614.353292 + 20 +3343.33329 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1141 + 8 +ERDBODEN + 0 +POLYLINE + 5 +1142 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +1143 + 8 +ERDBODEN + 10 +4849.48898 + 20 +4097.413563 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1144 + 8 +ERDBODEN + 10 +4804.368248 + 20 +4252.446399 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1145 + 8 +ERDBODEN + 10 +4805.37344 + 20 +4265.144668 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1146 + 8 +ERDBODEN + 10 +4808.179716 + 20 +4275.811434 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1147 + 8 +ERDBODEN + 10 +4812.473126 + 20 +4284.529279 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1148 + 8 +ERDBODEN + 10 +4817.939718 + 20 +4291.380784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1149 + 8 +ERDBODEN + 10 +4824.265543 + 20 +4296.448531 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114A + 8 +ERDBODEN + 10 +4831.136651 + 20 +4299.815101 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114B + 8 +ERDBODEN + 10 +4838.23909 + 20 +4301.563076 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114C + 8 +ERDBODEN + 10 +4845.258911 + 20 +4301.775036 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114D + 8 +ERDBODEN + 10 +4851.945504 + 20 +4300.536317 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114E + 8 +ERDBODEN + 10 +4858.301623 + 20 +4297.943262 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114F + 8 +ERDBODEN + 10 +4864.393362 + 20 +4294.094971 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1150 + 8 +ERDBODEN + 10 +4870.286817 + 20 +4289.090539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1151 + 8 +ERDBODEN + 10 +4876.048083 + 20 +4283.029066 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1152 + 8 +ERDBODEN + 10 +4881.743253 + 20 +4276.009648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1153 + 8 +ERDBODEN + 10 +4887.438424 + 20 +4268.131383 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1154 + 8 +ERDBODEN + 10 +4893.199689 + 20 +4259.49337 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1155 + 8 +ERDBODEN + 10 +4899.068358 + 20 +4250.194705 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1156 + 8 +ERDBODEN + 10 +4904.986599 + 20 +4240.334486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1157 + 8 +ERDBODEN + 10 +4910.871792 + 20 +4230.011811 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1158 + 8 +ERDBODEN + 10 +4916.641319 + 20 +4219.325778 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1159 + 8 +ERDBODEN + 10 +4922.212562 + 20 +4208.375484 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115A + 8 +ERDBODEN + 10 +4927.502902 + 20 +4197.260027 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115B + 8 +ERDBODEN + 10 +4932.42972 + 20 +4186.078505 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115C + 8 +ERDBODEN + 10 +4936.910398 + 20 +4174.930014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115D + 8 +ERDBODEN + 10 +4940.867825 + 20 +4163.910901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115E + 8 +ERDBODEN + 10 +4944.246923 + 20 +4153.106499 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115F + 8 +ERDBODEN + 10 +4946.99812 + 20 +4142.59939 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1160 + 8 +ERDBODEN + 10 +4949.071845 + 20 +4132.472155 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1161 + 8 +ERDBODEN + 10 +4950.418527 + 20 +4122.807376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1162 + 8 +ERDBODEN + 10 +4950.988595 + 20 +4113.687633 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1163 + 8 +ERDBODEN + 10 +4950.732478 + 20 +4105.195509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1164 + 8 +ERDBODEN + 10 +4949.600604 + 20 +4097.413585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1165 + 8 +ERDBODEN + 10 +4947.54891 + 20 +4090.424442 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1166 + 8 +ERDBODEN + 10 +4944.555366 + 20 +4084.310662 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1167 + 8 +ERDBODEN + 10 +4940.603446 + 20 +4079.154826 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1168 + 8 +ERDBODEN + 10 +4935.676628 + 20 +4075.039517 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1169 + 8 +ERDBODEN + 10 +4929.758387 + 20 +4072.047316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116A + 8 +ERDBODEN + 10 +4922.832201 + 20 +4070.260805 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116B + 8 +ERDBODEN + 10 +4914.881545 + 20 +4069.762565 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116C + 8 +ERDBODEN + 10 +4905.889895 + 20 +4070.635177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116D + 8 +ERDBODEN + 10 +4895.915085 + 20 +4072.892407 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116E + 8 +ERDBODEN + 10 +4885.312373 + 20 +4076.272745 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116F + 8 +ERDBODEN + 10 +4874.511378 + 20 +4080.445866 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1170 + 8 +ERDBODEN + 10 +4863.941714 + 20 +4085.081442 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1171 + 8 +ERDBODEN + 10 +4854.032999 + 20 +4089.849149 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1172 + 8 +ERDBODEN + 10 +4845.214848 + 20 +4094.418659 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1173 + 8 +ERDBODEN + 10 +4837.916878 + 20 +4098.459646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1174 + 8 +ERDBODEN + 10 +4832.568705 + 20 +4101.641785 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1175 + 8 +ERDBODEN + 10 +4829.442971 + 20 +4103.77789 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1176 + 8 +ERDBODEN + 10 +4828.184416 + 20 +4105.253341 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1177 + 8 +ERDBODEN + 10 +4828.280804 + 20 +4106.596661 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1178 + 8 +ERDBODEN + 10 +4829.219901 + 20 +4108.33637 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1179 + 8 +ERDBODEN + 10 +4830.489473 + 20 +4111.00099 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117A + 8 +ERDBODEN + 10 +4831.577283 + 20 +4115.119043 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117B + 8 +ERDBODEN + 10 +4831.971098 + 20 +4121.21905 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117C + 8 +ERDBODEN + 10 +4831.158683 + 20 +4129.829533 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117D + 8 +ERDBODEN + 10 +4828.793039 + 20 +4141.28357 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117E + 8 +ERDBODEN + 10 +4825.188117 + 20 +4155.132469 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117F + 8 +ERDBODEN + 10 +4820.823105 + 20 +4170.732095 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1180 + 8 +ERDBODEN + 10 +4816.17719 + 20 +4187.438313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1181 + 8 +ERDBODEN + 10 +4811.729559 + 20 +4204.606988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1182 + 8 +ERDBODEN + 10 +4807.9594 + 20 +4221.593984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1183 + 8 +ERDBODEN + 10 +4805.345901 + 20 +4237.755166 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1184 + 8 +ERDBODEN + 10 +4781.807882 + 20 +4274.996629 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1185 + 8 +ERDBODEN + 10 +4849.48898 + 20 +4317.278318 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1186 + 8 +ERDBODEN + 10 +4891.789666 + 20 +4266.540318 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1187 + 8 +ERDBODEN + 10 +4942.550489 + 20 +4173.520629 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1188 + 8 +ERDBODEN + 10 +4959.470764 + 20 +4088.957252 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1189 + 8 +ERDBODEN + 10 +4917.170078 + 20 +4055.131874 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +118A + 8 +ERDBODEN + 10 +4807.188294 + 20 +4114.326318 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +118B + 8 +ERDBODEN + 0 +POLYLINE + 5 +118C + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +118D + 8 +ERDBODEN + 10 +5131.080443 + 20 +5303.451933 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +118E + 8 +ERDBODEN + 10 +5148.133859 + 20 +5425.619621 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118F + 8 +ERDBODEN + 10 +5157.768082 + 20 +5434.151274 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1190 + 8 +ERDBODEN + 10 +5169.25088 + 20 +5440.602037 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1191 + 8 +ERDBODEN + 10 +5182.032676 + 20 +5445.021851 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1192 + 8 +ERDBODEN + 10 +5195.563894 + 20 +5447.460657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1193 + 8 +ERDBODEN + 10 +5209.294959 + 20 +5447.968397 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1194 + 8 +ERDBODEN + 10 +5222.676295 + 20 +5446.59501 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1195 + 8 +ERDBODEN + 10 +5235.158326 + 20 +5443.390439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1196 + 8 +ERDBODEN + 10 +5246.191475 + 20 +5438.404625 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1197 + 8 +ERDBODEN + 10 +5255.337193 + 20 +5431.723577 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1198 + 8 +ERDBODEN + 10 +5262.601031 + 20 +5423.577581 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1199 + 8 +ERDBODEN + 10 +5268.099564 + 20 +5414.232991 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119A + 8 +ERDBODEN + 10 +5271.949371 + 20 +5403.956161 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119B + 8 +ERDBODEN + 10 +5274.267026 + 20 +5393.013445 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119C + 8 +ERDBODEN + 10 +5275.169108 + 20 +5381.671197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119D + 8 +ERDBODEN + 10 +5274.772191 + 20 +5370.195772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119E + 8 +ERDBODEN + 10 +5273.192854 + 20 +5358.853523 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119F + 8 +ERDBODEN + 10 +5270.522691 + 20 +5347.896933 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A0 + 8 +ERDBODEN + 10 +5266.753377 + 20 +5337.522992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A1 + 8 +ERDBODEN + 10 +5261.851604 + 20 +5327.914819 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A2 + 8 +ERDBODEN + 10 +5255.784064 + 20 +5319.255532 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A3 + 8 +ERDBODEN + 10 +5248.517451 + 20 +5311.728251 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A4 + 8 +ERDBODEN + 10 +5240.018456 + 20 +5305.516094 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A5 + 8 +ERDBODEN + 10 +5230.253774 + 20 +5300.802179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A6 + 8 +ERDBODEN + 10 +5219.190097 + 20 +5297.769626 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A7 + 8 +ERDBODEN + 10 +5206.882936 + 20 +5296.512768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A8 + 8 +ERDBODEN + 10 +5193.743087 + 20 +5296.7708 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11A9 + 8 +ERDBODEN + 10 +5180.270164 + 20 +5298.194132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11AA + 8 +ERDBODEN + 10 +5166.963779 + 20 +5300.433174 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11AB + 8 +ERDBODEN + 10 +5154.323547 + 20 +5303.138338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11AC + 8 +ERDBODEN + 10 +5142.849082 + 20 +5305.960031 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11AD + 8 +ERDBODEN + 10 +5133.039997 + 20 +5308.548666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11AE + 8 +ERDBODEN + 10 +5125.395907 + 20 +5310.554651 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11AF + 8 +ERDBODEN + 10 +5120.263765 + 20 +5311.7588 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B0 + 8 +ERDBODEN + 10 +5117.379886 + 20 +5312.463535 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B1 + 8 +ERDBODEN + 10 +5116.327925 + 20 +5313.101681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B2 + 8 +ERDBODEN + 10 +5116.691536 + 20 +5314.106064 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B3 + 8 +ERDBODEN + 10 +5118.054374 + 20 +5315.909507 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B4 + 8 +ERDBODEN + 10 +5120.000094 + 20 +5318.944838 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B5 + 8 +ERDBODEN + 10 +5122.11235 + 20 +5323.64488 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B6 + 8 +ERDBODEN + 10 +5123.974797 + 20 +5330.442459 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B7 + 8 +ERDBODEN + 10 +5125.30432 + 20 +5339.601153 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B8 + 8 +ERDBODEN + 10 +5126.350727 + 20 +5350.707561 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11B9 + 8 +ERDBODEN + 10 +5127.497056 + 20 +5363.179032 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11BA + 8 +ERDBODEN + 10 +5129.126344 + 20 +5376.432917 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11BB + 8 +ERDBODEN + 10 +5131.621631 + 20 +5389.886568 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11BC + 8 +ERDBODEN + 10 +5135.365953 + 20 +5402.957335 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11BD + 8 +ERDBODEN + 10 +5140.74235 + 20 +5415.062569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11BE + 8 +ERDBODEN + 10 +5122.55359 + 20 +5448.348486 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +11BF + 8 +ERDBODEN + 10 +5267.50835 + 20 +5456.871851 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +11C0 + 8 +ERDBODEN + 10 +5284.561862 + 20 +5354.591863 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +11C1 + 8 +ERDBODEN + 10 +5233.401325 + 20 +5277.88184 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +11C2 + 8 +ERDBODEN + 10 +5096.973418 + 20 +5320.498533 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +11C3 + 8 +ERDBODEN + 0 +POLYLINE + 5 +11C4 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +11C5 + 8 +ERDBODEN + 10 +5357.134482 + 20 +4729.750892 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +11C6 + 8 +ERDBODEN + 10 +5220.362263 + 20 +4836.864477 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11C7 + 8 +ERDBODEN + 10 +5210.368175 + 20 +4854.385499 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11C8 + 8 +ERDBODEN + 10 +5202.538693 + 20 +4872.914014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11C9 + 8 +ERDBODEN + 10 +5196.791197 + 20 +4892.136213 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11CA + 8 +ERDBODEN + 10 +5193.04307 + 20 +4911.738287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11CB + 8 +ERDBODEN + 10 +5191.211693 + 20 +4931.406425 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11CC + 8 +ERDBODEN + 10 +5191.214447 + 20 +4950.826819 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11CD + 8 +ERDBODEN + 10 +5192.968713 + 20 +4969.685659 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11CE + 8 +ERDBODEN + 10 +5196.391874 + 20 +4987.669136 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11CF + 8 +ERDBODEN + 10 +5201.398557 + 20 +5004.490966 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D0 + 8 +ERDBODEN + 10 +5207.892373 + 20 +5019.974978 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D1 + 8 +ERDBODEN + 10 +5215.774181 + 20 +5033.972524 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D2 + 8 +ERDBODEN + 10 +5224.944837 + 20 +5046.334958 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D3 + 8 +ERDBODEN + 10 +5235.305201 + 20 +5056.913633 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D4 + 8 +ERDBODEN + 10 +5246.756129 + 20 +5065.559904 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D5 + 8 +ERDBODEN + 10 +5259.198479 + 20 +5072.125124 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D6 + 8 +ERDBODEN + 10 +5272.533109 + 20 +5076.460647 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D7 + 8 +ERDBODEN + 10 +5286.636092 + 20 +5078.486643 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D8 + 8 +ERDBODEN + 10 +5301.284357 + 20 +5078.398556 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11D9 + 8 +ERDBODEN + 10 +5316.230049 + 20 +5076.460646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11DA + 8 +ERDBODEN + 10 +5331.225311 + 20 +5072.937172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11DB + 8 +ERDBODEN + 10 +5346.02229 + 20 +5068.092396 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11DC + 8 +ERDBODEN + 10 +5360.373128 + 20 +5062.190578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11DD + 8 +ERDBODEN + 10 +5374.02997 + 20 +5055.495977 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11DE + 8 +ERDBODEN + 10 +5386.744962 + 20 +5048.272854 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11DF + 8 +ERDBODEN + 10 +5398.319818 + 20 +5040.711146 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E0 + 8 +ERDBODEN + 10 +5408.754538 + 20 +5032.703498 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E1 + 8 +ERDBODEN + 10 +5418.098693 + 20 +5024.068231 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E2 + 8 +ERDBODEN + 10 +5426.401855 + 20 +5014.623666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E3 + 8 +ERDBODEN + 10 +5433.713595 + 20 +5004.188125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E4 + 8 +ERDBODEN + 10 +5440.083483 + 20 +4992.57993 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E5 + 8 +ERDBODEN + 10 +5445.561092 + 20 +4979.617402 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E6 + 8 +ERDBODEN + 10 +5450.195991 + 20 +4965.118861 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E7 + 8 +ERDBODEN + 10 +5454.037753 + 20 +4948.987965 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E8 + 8 +ERDBODEN + 10 +5457.135947 + 20 +4931.469703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11E9 + 8 +ERDBODEN + 10 +5459.540147 + 20 +4912.894401 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11EA + 8 +ERDBODEN + 10 +5461.299921 + 20 +4893.592383 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11EB + 8 +ERDBODEN + 10 +5462.464842 + 20 +4873.893975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11EC + 8 +ERDBODEN + 10 +5463.084481 + 20 +4854.1295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11ED + 8 +ERDBODEN + 10 +5463.208409 + 20 +4834.629286 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11EE + 8 +ERDBODEN + 10 +5462.886197 + 20 +4815.723655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11EF + 8 +ERDBODEN + 10 +5462.14263 + 20 +4797.720911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F0 + 8 +ERDBODEN + 10 +5460.903352 + 20 +4780.841273 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F1 + 8 +ERDBODEN + 10 +5459.069221 + 20 +4765.282935 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F2 + 8 +ERDBODEN + 10 +5456.541094 + 20 +4751.244094 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F3 + 8 +ERDBODEN + 10 +5453.219829 + 20 +4738.922945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F4 + 8 +ERDBODEN + 10 +5449.006284 + 20 +4728.517684 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F5 + 8 +ERDBODEN + 10 +5443.801317 + 20 +4720.226507 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F6 + 8 +ERDBODEN + 10 +5437.505785 + 20 +4714.24761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F7 + 8 +ERDBODEN + 10 +5430.039824 + 20 +4710.710371 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F8 + 8 +ERDBODEN + 10 +5421.40068 + 20 +4709.468896 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11F9 + 8 +ERDBODEN + 10 +5411.604877 + 20 +4710.308473 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11FA + 8 +ERDBODEN + 10 +5400.668938 + 20 +4713.01439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11FB + 8 +ERDBODEN + 10 +5388.609387 + 20 +4717.371936 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11FC + 8 +ERDBODEN + 10 +5375.442747 + 20 +4723.166398 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11FD + 8 +ERDBODEN + 10 +5361.185543 + 20 +4730.183065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11FE + 8 +ERDBODEN + 10 +5345.854299 + 20 +4738.207225 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +11FF + 8 +ERDBODEN + 10 +5329.531632 + 20 +4747.070963 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1200 + 8 +ERDBODEN + 10 +5312.56454 + 20 +4756.793547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1201 + 8 +ERDBODEN + 10 +5295.366116 + 20 +4767.441042 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1202 + 8 +ERDBODEN + 10 +5278.349454 + 20 +4779.079515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1203 + 8 +ERDBODEN + 10 +5261.927644 + 20 +4791.775029 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1204 + 8 +ERDBODEN + 10 +5246.513781 + 20 +4805.593651 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1205 + 8 +ERDBODEN + 10 +5232.520956 + 20 +4820.601445 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1206 + 8 +ERDBODEN + 10 +5196.391874 + 20 +4822.77058 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1207 + 8 +ERDBODEN + 10 +5179.4716 + 20 +5000.353647 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1208 + 8 +ERDBODEN + 10 +5264.072972 + 20 +5101.829646 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1209 + 8 +ERDBODEN + 10 +5399.435168 + 20 +5051.091647 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +120A + 8 +ERDBODEN + 10 +5458.656128 + 20 +4983.440891 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +120B + 8 +ERDBODEN + 10 +5467.116266 + 20 +4805.857959 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +120C + 8 +ERDBODEN + 10 +5450.195991 + 20 +4687.469203 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +120D + 8 +ERDBODEN + 0 +POLYLINE + 5 +120E + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +120F + 8 +ERDBODEN + 10 +8330.442776 + 20 +3457.799361 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1210 + 8 +ERDBODEN + 10 +8281.725643 + 20 +3526.918659 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1211 + 8 +ERDBODEN + 10 +8280.743442 + 20 +3536.436061 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1212 + 8 +ERDBODEN + 10 +8281.234542 + 20 +3545.916645 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1213 + 8 +ERDBODEN + 10 +8283.051613 + 20 +3555.029052 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1214 + 8 +ERDBODEN + 10 +8286.047324 + 20 +3563.441919 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1215 + 8 +ERDBODEN + 10 +8290.074345 + 20 +3570.823888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1216 + 8 +ERDBODEN + 10 +8294.985346 + 20 +3576.843599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1217 + 8 +ERDBODEN + 10 +8300.632998 + 20 +3581.16969 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1218 + 8 +ERDBODEN + 10 +8306.86997 + 20 +3583.470801 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1219 + 8 +ERDBODEN + 10 +8313.545862 + 20 +3583.510686 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +121A + 8 +ERDBODEN + 10 +8320.497999 + 20 +3581.433548 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +121B + 8 +ERDBODEN + 10 +8327.560632 + 20 +3577.478701 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +121C + 8 +ERDBODEN + 10 +8334.568018 + 20 +3571.885463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +121D + 8 +ERDBODEN + 10 +8341.354408 + 20 +3564.893149 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +121E + 8 +ERDBODEN + 10 +8347.754056 + 20 +3556.741075 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +121F + 8 +ERDBODEN + 10 +8353.601217 + 20 +3547.668557 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1220 + 8 +ERDBODEN + 10 +8358.730144 + 20 +3537.914911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1221 + 8 +ERDBODEN + 10 +8363.005785 + 20 +3527.719452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1222 + 8 +ERDBODEN + 10 +8366.415862 + 20 +3517.321497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1223 + 8 +ERDBODEN + 10 +8368.978791 + 20 +3506.96036 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1224 + 8 +ERDBODEN + 10 +8370.712988 + 20 +3496.875357 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1225 + 8 +ERDBODEN + 10 +8371.63687 + 20 +3487.305803 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1226 + 8 +ERDBODEN + 10 +8371.768853 + 20 +3478.491014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1227 + 8 +ERDBODEN + 10 +8371.127354 + 20 +3470.670306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1228 + 8 +ERDBODEN + 10 +8369.730788 + 20 +3464.082992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1229 + 8 +ERDBODEN + 10 +8367.619057 + 20 +3458.900891 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +122A + 8 +ERDBODEN + 10 +8364.918006 + 20 +3455.02582 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +122B + 8 +ERDBODEN + 10 +8361.774965 + 20 +3452.2921 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +122C + 8 +ERDBODEN + 10 +8358.337264 + 20 +3450.534051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +122D + 8 +ERDBODEN + 10 +8354.752233 + 20 +3449.585992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +122E + 8 +ERDBODEN + 10 +8351.167202 + 20 +3449.282243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +122F + 8 +ERDBODEN + 10 +8347.729501 + 20 +3449.457125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1230 + 8 +ERDBODEN + 10 +8344.58646 + 20 +3449.944957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1231 + 8 +ERDBODEN + 10 +8341.83323 + 20 +3450.623013 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1232 + 8 +ERDBODEN + 10 +8339.356244 + 20 +3451.540384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1233 + 8 +ERDBODEN + 10 +8336.989755 + 20 +3452.789115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1234 + 8 +ERDBODEN + 10 +8334.568018 + 20 +3454.46125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1235 + 8 +ERDBODEN + 10 +8331.925285 + 20 +3456.648834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1236 + 8 +ERDBODEN + 10 +8328.895811 + 20 +3459.443913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1237 + 8 +ERDBODEN + 10 +8325.313849 + 20 +3462.938531 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1238 + 8 +ERDBODEN + 10 +8321.013654 + 20 +3467.224732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1239 + 8 +ERDBODEN + 10 +8315.909282 + 20 +3472.366949 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +123A + 8 +ERDBODEN + 10 +8310.234006 + 20 +3478.319158 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +123B + 8 +ERDBODEN + 10 +8304.300902 + 20 +3485.007725 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +123C + 8 +ERDBODEN + 10 +8298.423047 + 20 +3492.359012 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +123D + 8 +ERDBODEN + 10 +8292.913518 + 20 +3500.299385 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +123E + 8 +ERDBODEN + 10 +8288.085389 + 20 +3508.755208 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +123F + 8 +ERDBODEN + 10 +8284.251739 + 20 +3517.652844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1240 + 8 +ERDBODEN + 10 +8264.438918 + 20 +3523.776875 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1241 + 8 +ERDBODEN + 10 +8302.155408 + 20 +3608.60509 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1242 + 8 +ERDBODEN + 10 +8368.159267 + 20 +3542.627575 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1243 + 8 +ERDBODEN + 10 +8377.58839 + 20 +3448.374076 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1244 + 8 +ERDBODEN + 10 +8339.871899 + 20 +3448.374076 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1245 + 8 +ERDBODEN + 0 +POLYLINE + 5 +1246 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +1247 + 8 +ERDBODEN + 10 +8031.123903 + 20 +3181.852322 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1248 + 8 +ERDBODEN + 10 +8020.184672 + 20 +3224.440612 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1249 + 8 +ERDBODEN + 10 +8021.711753 + 20 +3229.067238 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +124A + 8 +ERDBODEN + 10 +8024.088963 + 20 +3233.397113 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +124B + 8 +ERDBODEN + 10 +8027.248831 + 20 +3237.349306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +124C + 8 +ERDBODEN + 10 +8031.123887 + 20 +3240.842883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +124D + 8 +ERDBODEN + 10 +8035.64666 + 20 +3243.796911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +124E + 8 +ERDBODEN + 10 +8040.74968 + 20 +3246.130458 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +124F + 8 +ERDBODEN + 10 +8046.365477 + 20 +3247.76259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1250 + 8 +ERDBODEN + 10 +8052.42658 + 20 +3248.612376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1251 + 8 +ERDBODEN + 10 +8058.849775 + 20 +3248.621364 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1252 + 8 +ERDBODEN + 10 +8065.488876 + 20 +3247.821027 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1253 + 8 +ERDBODEN + 10 +8072.181954 + 20 +3246.265322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1254 + 8 +ERDBODEN + 10 +8078.76708 + 20 +3244.008204 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1255 + 8 +ERDBODEN + 10 +8085.082325 + 20 +3241.103629 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1256 + 8 +ERDBODEN + 10 +8090.965758 + 20 +3237.605552 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1257 + 8 +ERDBODEN + 10 +8096.255451 + 20 +3233.567929 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1258 + 8 +ERDBODEN + 10 +8100.789474 + 20 +3229.044716 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1259 + 8 +ERDBODEN + 10 +8104.434011 + 20 +3224.102233 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +125A + 8 +ERDBODEN + 10 +8107.167695 + 20 +3218.856256 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +125B + 8 +ERDBODEN + 10 +8108.997276 + 20 +3213.434929 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +125C + 8 +ERDBODEN + 10 +8109.929498 + 20 +3207.966393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +125D + 8 +ERDBODEN + 10 +8109.97111 + 20 +3202.57879 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +125E + 8 +ERDBODEN + 10 +8109.128858 + 20 +3197.400262 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +125F + 8 +ERDBODEN + 10 +8107.40949 + 20 +3192.55895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1260 + 8 +ERDBODEN + 10 +8104.819753 + 20 +3188.182998 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1261 + 8 +ERDBODEN + 10 +8101.390009 + 20 +3184.375818 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1262 + 8 +ERDBODEN + 10 +8097.245077 + 20 +3181.141905 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1263 + 8 +ERDBODEN + 10 +8092.533392 + 20 +3178.461028 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1264 + 8 +ERDBODEN + 10 +8087.403389 + 20 +3176.312954 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1265 + 8 +ERDBODEN + 10 +8082.003503 + 20 +3174.677449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1266 + 8 +ERDBODEN + 10 +8076.482169 + 20 +3173.534282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1267 + 8 +ERDBODEN + 10 +8070.987821 + 20 +3172.863218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1268 + 8 +ERDBODEN + 10 +8065.668893 + 20 +3172.644027 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1269 + 8 +ERDBODEN + 10 +8060.645709 + 20 +3172.86097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +126A + 8 +ERDBODEN + 10 +8055.92614 + 20 +3173.516297 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +126B + 8 +ERDBODEN + 10 +8051.489945 + 20 +3174.61675 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +126C + 8 +ERDBODEN + 10 +8047.316884 + 20 +3176.169075 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +126D + 8 +ERDBODEN + 10 +8043.386716 + 20 +3178.180016 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +126E + 8 +ERDBODEN + 10 +8039.679201 + 20 +3180.656316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +126F + 8 +ERDBODEN + 10 +8036.174098 + 20 +3183.60472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1270 + 8 +ERDBODEN + 10 +8032.851166 + 20 +3187.031972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1271 + 8 +ERDBODEN + 10 +8029.709282 + 20 +3190.929079 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1272 + 8 +ERDBODEN + 10 +8026.823787 + 20 +3195.224103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1273 + 8 +ERDBODEN + 10 +8024.28914 + 20 +3199.829366 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1274 + 8 +ERDBODEN + 10 +8022.199799 + 20 +3204.657193 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1275 + 8 +ERDBODEN + 10 +8020.650224 + 20 +3209.619907 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1276 + 8 +ERDBODEN + 10 +8019.734872 + 20 +3214.629832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1277 + 8 +ERDBODEN + 10 +8019.548202 + 20 +3219.599293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1278 + 8 +ERDBODEN + 10 +8010.396949 + 20 +3226.742664 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1279 + 8 +ERDBODEN + 10 +8048.396333 + 20 +3257.820693 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +127A + 8 +ERDBODEN + 10 +8110.577197 + 20 +3233.64882 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +127B + 8 +ERDBODEN + 10 +8114.031722 + 20 +3181.852322 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +127C + 8 +ERDBODEN + 10 +8062.214434 + 20 +3168.039879 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +127D + 8 +ERDBODEN + 0 +POLYLINE + 5 +127E + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 5 + 40 +12.5 + 41 +12.5 + 75 + 6 + 0 +VERTEX + 5 +127F + 8 +ERDBODEN + 10 +8107.122672 + 20 +3692.912321 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1280 + 8 +ERDBODEN + 10 +8162.970403 + 20 +3757.945847 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1281 + 8 +ERDBODEN + 10 +8170.097548 + 20 +3758.758536 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1282 + 8 +ERDBODEN + 10 +8177.130231 + 20 +3757.433265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1283 + 8 +ERDBODEN + 10 +8183.920018 + 20 +3754.152131 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1284 + 8 +ERDBODEN + 10 +8190.318474 + 20 +3749.097232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1285 + 8 +ERDBODEN + 10 +8196.177163 + 20 +3742.450666 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1286 + 8 +ERDBODEN + 10 +8201.347651 + 20 +3734.394532 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1287 + 8 +ERDBODEN + 10 +8205.681501 + 20 +3725.110926 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1288 + 8 +ERDBODEN + 10 +8209.030281 + 20 +3714.781946 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1289 + 8 +ERDBODEN + 10 +8211.269168 + 20 +3703.617792 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +128A + 8 +ERDBODEN + 10 +8212.367801 + 20 +3691.941069 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +128B + 8 +ERDBODEN + 10 +8212.319436 + 20 +3680.102482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +128C + 8 +ERDBODEN + 10 +8211.117324 + 20 +3668.452737 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +128D + 8 +ERDBODEN + 10 +8208.75472 + 20 +3657.342542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +128E + 8 +ERDBODEN + 10 +8205.224877 + 20 +3647.1226 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +128F + 8 +ERDBODEN + 10 +8200.52105 + 20 +3638.14362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1290 + 8 +ERDBODEN + 10 +8194.636491 + 20 +3630.756306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1291 + 8 +ERDBODEN + 10 +8187.616182 + 20 +3625.23268 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1292 + 8 +ERDBODEN + 10 +8179.712011 + 20 +3621.53003 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1293 + 8 +ERDBODEN + 10 +8171.227596 + 20 +3619.526956 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1294 + 8 +ERDBODEN + 10 +8162.466553 + 20 +3619.102061 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1295 + 8 +ERDBODEN + 10 +8153.732498 + 20 +3620.133946 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1296 + 8 +ERDBODEN + 10 +8145.329048 + 20 +3622.501214 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1297 + 8 +ERDBODEN + 10 +8137.55982 + 20 +3626.082467 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1298 + 8 +ERDBODEN + 10 +8130.72843 + 20 +3630.756306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1299 + 8 +ERDBODEN + 10 +8125.083394 + 20 +3636.406953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +129A + 8 +ERDBODEN + 10 +8120.652825 + 20 +3642.941112 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +129B + 8 +ERDBODEN + 10 +8117.409736 + 20 +3650.271106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +129C + 8 +ERDBODEN + 10 +8115.32714 + 20 +3658.309257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +129D + 8 +ERDBODEN + 10 +8114.37805 + 20 +3666.967888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +129E + 8 +ERDBODEN + 10 +8114.535477 + 20 +3676.159323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +129F + 8 +ERDBODEN + 10 +8115.772435 + 20 +3685.795885 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A0 + 8 +ERDBODEN + 10 +8118.061936 + 20 +3695.789897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A1 + 8 +ERDBODEN + 10 +8121.36125 + 20 +3706.014339 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A2 + 8 +ERDBODEN + 10 +8125.564672 + 20 +3716.184825 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A3 + 8 +ERDBODEN + 10 +8130.550755 + 20 +3725.977626 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A4 + 8 +ERDBODEN + 10 +8136.19805 + 20 +3735.069014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A5 + 8 +ERDBODEN + 10 +8142.38511 + 20 +3743.135258 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A6 + 8 +ERDBODEN + 10 +8148.990488 + 20 +3749.852631 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A7 + 8 +ERDBODEN + 10 +8155.892735 + 20 +3754.897404 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +12A8 + 8 +ERDBODEN + 10 +8162.394682 + 20 +3782.693135 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +12A9 + 8 +ERDBODEN + 10 +8221.121021 + 20 +3723.99022 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +12AA + 8 +ERDBODEN + 10 +8207.30292 + 20 +3610.037663 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +12AB + 8 +ERDBODEN + 10 +8117.486247 + 20 +3620.396963 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +12AC + 8 +ERDBODEN + 0 +POINT + 5 +12AD + 8 +ERDBODEN + 10 +4415.0 + 20 +3147.5 + 30 +0.0 + 0 +POINT + 5 +12AE + 8 +ERDBODEN + 10 +8302.5 + 20 +3972.5 + 30 +0.0 + 0 +POINT + 5 +12AF + 8 +ERDBODEN + 10 +8565.0 + 20 +3947.5 + 30 +0.0 + 0 +POLYLINE + 5 +12B0 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +37.4875 + 41 +37.4875 + 0 +VERTEX + 5 +1F3F + 8 +MAUERWERK + 10 +6322.4 + 20 +10965.782507 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +1F40 + 8 +MAUERWERK + 10 +6359.9125 + 20 +10965.782507 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +1F41 + 8 +MAUERWERK + 0 +POINT + 5 +12B4 + 8 +MAUERWERK + 10 +6353.65625 + 20 +10965.782507 + 30 +0.0 + 0 +POLYLINE + 5 +12B5 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +37.4875 + 41 +37.4875 + 0 +VERTEX + 5 +1F42 + 8 +MAUERWERK + 10 +6834.9 + 20 +10965.782507 + 30 +0.0 + 42 +1.0 + 0 +VERTEX + 5 +1F43 + 8 +MAUERWERK + 10 +6872.4125 + 20 +10965.782507 + 30 +0.0 + 42 +1.0 + 0 +SEQEND + 5 +1F44 + 8 +MAUERWERK + 0 +POINT + 5 +12B9 + 8 +MAUERWERK + 10 +6866.15625 + 20 +10965.782507 + 30 +0.0 + 0 +POLYLINE + 5 +12BA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F45 + 8 +0 + 10 +18650.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1F46 + 8 +0 + 10 +18650.0 + 20 +1495.0 + 30 +0.0 + 0 +SEQEND + 5 +1F47 + 8 +0 + 0 +POLYLINE + 5 +12BE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F48 + 8 +0 + 10 +17525.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1F49 + 8 +0 + 10 +17525.0 + 20 +1500.0 + 30 +0.0 + 0 +SEQEND + 5 +1F4A + 8 +0 + 0 +POLYLINE + 5 +12C2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F4B + 8 +0 + 10 +17525.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +1F4C + 8 +0 + 10 +20900.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +1F4D + 8 +0 + 0 +POLYLINE + 5 +12C6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F4E + 8 +0 + 10 +17525.0 + 20 +1125.0 + 30 +0.0 + 0 +VERTEX + 5 +1F4F + 8 +0 + 10 +20900.0 + 20 +1125.0 + 30 +0.0 + 0 +SEQEND + 5 +1F50 + 8 +0 + 0 +POLYLINE + 5 +12CA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F51 + 8 +0 + 10 +17525.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1F52 + 8 +0 + 10 +16275.0 + 20 +250.0 + 30 +0.0 + 0 +SEQEND + 5 +1F53 + 8 +0 + 0 +POLYLINE + 5 +12CE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F54 + 8 +0 + 10 +17525.0 + 20 +375.0 + 30 +0.0 + 0 +VERTEX + 5 +1F55 + 8 +0 + 10 +16275.0 + 20 +375.0 + 30 +0.0 + 0 +SEQEND + 5 +1F56 + 8 +0 + 0 +POLYLINE + 5 +12D2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F57 + 8 +0 + 10 +17525.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +1F58 + 8 +0 + 10 +16275.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +1F59 + 8 +0 + 0 +POLYLINE + 5 +12D6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F5A + 8 +0 + 10 +17525.0 + 20 +625.0 + 30 +0.0 + 0 +VERTEX + 5 +1F5B + 8 +0 + 10 +16275.0 + 20 +625.0 + 30 +0.0 + 0 +SEQEND + 5 +1F5C + 8 +0 + 0 +POLYLINE + 5 +12DA + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F5D + 8 +0 + 10 +17525.0 + 20 +750.0 + 30 +0.0 + 0 +VERTEX + 5 +1F5E + 8 +0 + 10 +16275.0 + 20 +750.0 + 30 +0.0 + 0 +SEQEND + 5 +1F5F + 8 +0 + 0 +POLYLINE + 5 +12DE + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F60 + 8 +0 + 10 +17525.0 + 20 +875.0 + 30 +0.0 + 0 +VERTEX + 5 +1F61 + 8 +0 + 10 +16275.0 + 20 +875.0 + 30 +0.0 + 0 +SEQEND + 5 +1F62 + 8 +0 + 0 +POLYLINE + 5 +12E2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F63 + 8 +0 + 10 +17525.0 + 20 +1000.0 + 30 +0.0 + 0 +VERTEX + 5 +1F64 + 8 +0 + 10 +16275.0 + 20 +1000.0 + 30 +0.0 + 0 +SEQEND + 5 +1F65 + 8 +0 + 0 +POLYLINE + 5 +12E6 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F66 + 8 +0 + 10 +17525.0 + 20 +1125.0 + 30 +0.0 + 0 +VERTEX + 5 +1F67 + 8 +0 + 10 +16275.0 + 20 +1125.0 + 30 +0.0 + 0 +SEQEND + 5 +1F68 + 8 +0 + 0 +TEXT + 5 +12EA + 8 +LEGENDE-70 + 10 +19130.0 + 20 +730.0 + 30 +0.0 + 40 +175.0 + 1 +D1, D2, D3 + 41 +0.75 + 0 +POLYLINE + 5 +12EB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F69 + 8 +0 + 10 +18650.0 + 20 +1375.0 + 30 +0.0 + 0 +VERTEX + 5 +1F6A + 8 +0 + 10 +20901.604101 + 20 +1375.0 + 30 +0.0 + 0 +SEQEND + 5 +1F6B + 8 +0 + 0 +TEXT + 5 +12EF + 8 +LEGENDE-35 + 10 +18745.266644 + 20 +1210.264338 + 30 +0.0 + 40 +87.5 + 1 +MASSTAB 1:10 1:5 + 0 +TEXT + 5 +12F0 + 8 +LEGENDE-35 + 10 +18730.0 + 20 +260.0 + 30 +0.0 + 40 +87.5 + 1 +Name + 0 +TEXT + 5 +12F1 + 8 +LEGENDE-35 + 10 +17705.0 + 20 +225.0 + 30 +0.0 + 40 +87.5 + 1 +001 + 0 +POLYLINE + 5 +12F2 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1F6C + 8 +0 + 10 +20525.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1F6D + 8 +0 + 10 +20525.0 + 20 +495.0 + 30 +0.0 + 0 +SEQEND + 5 +1F6E + 8 +0 + 0 +TEXT + 5 +12F6 + 8 +LEGENDE-35 + 10 +20580.0 + 20 +365.0 + 30 +0.0 + 40 +87.5 + 1 +Blatt + 41 +0.75 + 0 +TEXT + 5 +12F7 + 8 +LEGENDE-35 + 10 +20670.0 + 20 +170.0 + 30 +0.0 + 40 +87.5 + 1 +6 + 0 +POLYLINE + 5 +12F8 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +1F6F + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F70 + 8 +0 + 10 +21025.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F71 + 8 +0 + 10 +21025.0 + 20 +14850.0 + 30 +0.0 + 0 +VERTEX + 5 +1F72 + 8 +0 + 10 +0.0 + 20 +14850.0 + 30 +0.0 + 0 +SEQEND + 5 +1F73 + 8 +0 + 0 +POLYLINE + 5 +12FE + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F74 + 8 +ERDBODEN + 10 +4517.777778 + 20 +2497.5 + 30 +0.0 + 0 +VERTEX + 5 +1F75 + 8 +ERDBODEN + 10 +4790.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +1F76 + 8 +ERDBODEN + 0 +POLYLINE + 5 +1302 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F77 + 8 +ERDBODEN + 10 +4692.777778 + 20 +2497.5 + 30 +0.0 + 0 +VERTEX + 5 +1F78 + 8 +ERDBODEN + 10 +4965.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +1F79 + 8 +ERDBODEN + 0 +POLYLINE + 5 +1306 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F7A + 8 +SCHNITTKANTEN + 10 +5321.15625 + 20 +12530.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F7B + 8 +SCHNITTKANTEN + 10 +7331.15625 + 20 +12530.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F7C + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +130A + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1F7D + 8 +VORSATZSCHALE + 10 +6036.15625 + 20 +11275.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F7E + 8 +VORSATZSCHALE + 10 +6036.15625 + 20 +11415.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F7F + 8 +VORSATZSCHALE + 10 +6141.15625 + 20 +11415.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F80 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +130F + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F81 + 8 +VORSATZSCHALE + 10 +6096.15625 + 20 +11275.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F82 + 8 +VORSATZSCHALE + 10 +6096.15625 + 20 +11335.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F83 + 8 +VORSATZSCHALE + 10 +6111.15625 + 20 +11345.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F84 + 8 +VORSATZSCHALE + 10 +6096.15625 + 20 +11360.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F85 + 8 +VORSATZSCHALE + 10 +6111.15625 + 20 +11370.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F86 + 8 +VORSATZSCHALE + 10 +6096.15625 + 20 +11380.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F87 + 8 +VORSATZSCHALE + 10 +6116.15625 + 20 +11395.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F88 + 8 +VORSATZSCHALE + 10 +6096.15625 + 20 +11410.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F89 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1319 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F8A + 8 +VORSATZSCHALE + 10 +6026.15625 + 20 +11375.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F8B + 8 +VORSATZSCHALE + 10 +6066.15625 + 20 +11375.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F8C + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +131D + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F8D + 8 +VORSATZSCHALE + 10 +6091.15625 + 20 +11375.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F8E + 8 +VORSATZSCHALE + 10 +6121.15625 + 20 +11375.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F8F + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1321 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F90 + 8 +VORSATZSCHALE + 10 +6141.15625 + 20 +11375.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F91 + 8 +VORSATZSCHALE + 10 +6191.15625 + 20 +11375.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F92 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1325 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F93 + 8 +VORSATZSCHALE + 10 +6216.15625 + 20 +11375.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F94 + 8 +VORSATZSCHALE + 10 +6271.15625 + 20 +11375.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F95 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1329 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F96 + 8 +VORSATZSCHALE + 10 +6026.15625 + 20 +11375.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F97 + 8 +VORSATZSCHALE + 10 +6011.15625 + 20 +11390.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F98 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +132D + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F99 + 8 +VORSATZSCHALE + 10 +6026.15625 + 20 +11375.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F9A + 8 +VORSATZSCHALE + 10 +6011.15625 + 20 +11360.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F9B + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1331 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F9C + 8 +VORSATZSCHALE + 10 +6026.15625 + 20 +11315.782507 + 30 +0.0 + 0 +VERTEX + 5 +1F9D + 8 +VORSATZSCHALE + 10 +6011.15625 + 20 +11300.782507 + 30 +0.0 + 0 +SEQEND + 5 +1F9E + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1335 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1F9F + 8 +VORSATZSCHALE + 10 +6026.15625 + 20 +11315.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FA0 + 8 +VORSATZSCHALE + 10 +6011.15625 + 20 +11330.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FA1 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1339 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1FA2 + 8 +VORSATZSCHALE + 10 +6216.15625 + 20 +11315.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FA3 + 8 +VORSATZSCHALE + 10 +6271.15625 + 20 +11315.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FA4 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +133D + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1FA5 + 8 +VORSATZSCHALE + 10 +6141.15625 + 20 +11315.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FA6 + 8 +VORSATZSCHALE + 10 +6191.15625 + 20 +11315.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FA7 + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1341 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1FA8 + 8 +VORSATZSCHALE + 10 +6091.15625 + 20 +11315.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FA9 + 8 +VORSATZSCHALE + 10 +6121.15625 + 20 +11315.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FAA + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1345 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1FAB + 8 +VORSATZSCHALE + 10 +6026.15625 + 20 +11315.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FAC + 8 +VORSATZSCHALE + 10 +6066.15625 + 20 +11315.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FAD + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1349 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FAE + 8 +ESTRICH + 10 +7061.15625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FAF + 8 +ESTRICH + 10 +7141.15625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FB0 + 8 +ESTRICH + 10 +7141.15625 + 20 +11630.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FB1 + 8 +ESTRICH + 10 +7061.15625 + 20 +11630.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FB2 + 8 +ESTRICH + 0 +POLYLINE + 5 +134F + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FB3 + 8 +ESTRICH + 10 +7098.631736 + 20 +12115.796252 + 30 +0.0 + 0 +VERTEX + 5 +1FB4 + 8 +ESTRICH + 10 +7151.15625 + 20 +12075.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FB5 + 8 +ESTRICH + 10 +7151.15625 + 20 +11930.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FB6 + 8 +ESTRICH + 10 +7098.589174 + 20 +11965.768101 + 30 +0.0 + 0 +SEQEND + 5 +1FB7 + 8 +ESTRICH + 0 +POLYLINE + 5 +1355 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1356 + 8 +ESTRICH + 10 +7133.193551 + 20 +11946.338012 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1357 + 8 +ESTRICH + 10 +7133.193551 + 20 +11946.338012 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1358 + 8 +ESTRICH + 10 +7134.786969 + 20 +11948.581252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1359 + 8 +ESTRICH + 10 +7136.53263 + 20 +11950.598851 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135A + 8 +ESTRICH + 10 +7138.414783 + 20 +11952.375069 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135B + 8 +ESTRICH + 10 +7140.41768 + 20 +11953.894164 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135C + 8 +ESTRICH + 10 +7142.525572 + 20 +11955.140395 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135D + 8 +ESTRICH + 10 +7144.72271 + 20 +11956.098022 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135E + 8 +ESTRICH + 10 +7146.993344 + 20 +11956.751303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135F + 8 +ESTRICH + 10 +7149.321725 + 20 +11957.084497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1360 + 8 +ESTRICH + 10 +7137.225677 + 20 +11952.606847 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1361 + 8 +ESTRICH + 10 +7143.049712 + 20 +11956.636753 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1362 + 8 +ESTRICH + 10 +7149.321725 + 20 +11957.084497 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1363 + 8 +ESTRICH + 0 +POLYLINE + 5 +1364 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1365 + 8 +ESTRICH + 10 +7119.305595 + 20 +11955.293416 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1366 + 8 +ESTRICH + 10 +7119.305595 + 20 +11955.293416 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1367 + 8 +ESTRICH + 10 +7121.931242 + 20 +11957.963663 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1368 + 8 +ESTRICH + 10 +7124.434832 + 20 +11960.283642 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1369 + 8 +ESTRICH + 10 +7126.820302 + 20 +11962.280904 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136A + 8 +ESTRICH + 10 +7129.091589 + 20 +11963.982998 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136B + 8 +ESTRICH + 10 +7131.252629 + 20 +11965.417476 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136C + 8 +ESTRICH + 10 +7133.30736 + 20 +11966.611888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136D + 8 +ESTRICH + 10 +7135.259719 + 20 +11967.593784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136E + 8 +ESTRICH + 10 +7137.113641 + 20 +11968.390714 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136F + 8 +ESTRICH + 10 +7138.876565 + 20 +11969.027606 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1370 + 8 +ESTRICH + 10 +7140.569925 + 20 +11969.518887 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1371 + 8 +ESTRICH + 10 +7142.218657 + 20 +11969.876362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1372 + 8 +ESTRICH + 10 +7143.847698 + 20 +11970.111835 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1373 + 8 +ESTRICH + 10 +7145.481982 + 20 +11970.237112 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1374 + 8 +ESTRICH + 10 +7147.146446 + 20 +11970.263997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1375 + 8 +ESTRICH + 10 +7148.866026 + 20 +11970.204294 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1376 + 8 +ESTRICH + 10 +7150.665656 + 20 +11970.069807 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1377 + 8 +ESTRICH + 10 +7126.473561 + 20 +11962.905588 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1378 + 8 +ESTRICH + 10 +7138.121632 + 20 +11970.069807 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1379 + 8 +ESTRICH + 10 +7145.737741 + 20 +11970.517655 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +137A + 8 +ESTRICH + 10 +7150.665656 + 20 +11970.069807 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +137B + 8 +ESTRICH + 0 +POLYLINE + 5 +137C + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +137D + 8 +ESTRICH + 10 +7110.345553 + 20 +11962.009995 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +137E + 8 +ESTRICH + 10 +7110.345553 + 20 +11962.009995 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +137F + 8 +ESTRICH + 10 +7112.272548 + 20 +11966.339897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1380 + 8 +ESTRICH + 10 +7114.337348 + 20 +11969.992893 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1381 + 8 +ESTRICH + 10 +7116.509767 + 20 +11973.068683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1382 + 8 +ESTRICH + 10 +7118.759617 + 20 +11975.666967 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1383 + 8 +ESTRICH + 10 +7121.056713 + 20 +11977.887446 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1384 + 8 +ESTRICH + 10 +7123.370869 + 20 +11979.829818 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1385 + 8 +ESTRICH + 10 +7125.671897 + 20 +11981.593783 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1386 + 8 +ESTRICH + 10 +7127.929612 + 20 +11983.279041 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1387 + 8 +ESTRICH + 10 +7130.128701 + 20 +11984.973049 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1388 + 8 +ESTRICH + 10 +7132.313353 + 20 +11986.714284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1389 + 8 +ESTRICH + 10 +7134.54263 + 20 +11988.528984 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138A + 8 +ESTRICH + 10 +7136.875597 + 20 +11990.443384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138B + 8 +ESTRICH + 10 +7139.371314 + 20 +11992.483719 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138C + 8 +ESTRICH + 10 +7142.088846 + 20 +11994.676225 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138D + 8 +ESTRICH + 10 +7145.087255 + 20 +11997.047138 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138E + 8 +ESTRICH + 10 +7148.425604 + 20 +11999.622693 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138F + 8 +ESTRICH + 10 +7115.273634 + 20 +11974.547561 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1390 + 8 +ESTRICH + 10 +7128.713613 + 20 +11983.055117 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1391 + 8 +ESTRICH + 10 +7139.017586 + 20 +11992.458369 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1392 + 8 +ESTRICH + 10 +7148.425604 + 20 +11999.622693 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1393 + 8 +ESTRICH + 0 +POLYLINE + 5 +1394 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1395 + 8 +ESTRICH + 10 +7102.281467 + 20 +11992.010521 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1396 + 8 +ESTRICH + 10 +7102.281467 + 20 +11992.010521 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1397 + 8 +ESTRICH + 10 +7107.166405 + 20 +11994.772161 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1398 + 8 +ESTRICH + 10 +7111.162773 + 20 +11997.354072 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1399 + 8 +ESTRICH + 10 +7114.41101 + 20 +11999.765439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +139A + 8 +ESTRICH + 10 +7117.051554 + 20 +12002.015446 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +139B + 8 +ESTRICH + 10 +7119.224845 + 20 +12004.113277 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +139C + 8 +ESTRICH + 10 +7121.071321 + 20 +12006.068115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +139D + 8 +ESTRICH + 10 +7122.731422 + 20 +12007.889144 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +139E + 8 +ESTRICH + 10 +7124.345587 + 20 +12009.585547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +139F + 8 +ESTRICH + 10 +7126.045504 + 20 +12011.174381 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A0 + 8 +ESTRICH + 10 +7127.92786 + 20 +12012.704182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A1 + 8 +ESTRICH + 10 +7130.080591 + 20 +12014.23136 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A2 + 8 +ESTRICH + 10 +7132.591633 + 20 +12015.812325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A3 + 8 +ESTRICH + 10 +7135.548922 + 20 +12017.503485 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A4 + 8 +ESTRICH + 10 +7139.040393 + 20 +12019.361251 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A5 + 8 +ESTRICH + 10 +7143.153983 + 20 +12021.44203 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A6 + 8 +ESTRICH + 10 +7147.977627 + 20 +12023.802232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13A7 + 8 +ESTRICH + 10 +7116.617566 + 20 +11999.622693 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13A8 + 8 +ESTRICH + 10 +7123.337555 + 20 +12010.816922 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13A9 + 8 +ESTRICH + 10 +7134.089671 + 20 +12017.085653 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13AA + 8 +ESTRICH + 10 +7147.977627 + 20 +12023.802232 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +13AB + 8 +ESTRICH + 0 +POLYLINE + 5 +13AC + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +13AD + 8 +ESTRICH + 10 +7104.073541 + 20 +12010.369074 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13AE + 8 +ESTRICH + 10 +7104.073541 + 20 +12010.369074 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13AF + 8 +ESTRICH + 10 +7108.149751 + 20 +12016.116179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B0 + 8 +ESTRICH + 10 +7111.693079 + 20 +12021.000103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B1 + 8 +ESTRICH + 10 +7114.779652 + 20 +12025.123171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B2 + 8 +ESTRICH + 10 +7117.485594 + 20 +12028.587703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B3 + 8 +ESTRICH + 10 +7119.887033 + 20 +12031.496023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B4 + 8 +ESTRICH + 10 +7122.060093 + 20 +12033.950452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B5 + 8 +ESTRICH + 10 +7124.080902 + 20 +12036.053313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B6 + 8 +ESTRICH + 10 +7126.025584 + 20 +12037.906929 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B7 + 8 +ESTRICH + 10 +7127.970267 + 20 +12039.594381 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B8 + 8 +ESTRICH + 10 +7129.991075 + 20 +12041.12179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13B9 + 8 +ESTRICH + 10 +7132.164136 + 20 +12042.476038 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13BA + 8 +ESTRICH + 10 +7134.565574 + 20 +12043.644006 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13BB + 8 +ESTRICH + 10 +7137.271517 + 20 +12044.612574 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13BC + 8 +ESTRICH + 10 +7140.358089 + 20 +12045.368623 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13BD + 8 +ESTRICH + 10 +7143.901417 + 20 +12045.899035 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13BE + 8 +ESTRICH + 10 +7147.977627 + 20 +12046.190691 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13BF + 8 +ESTRICH + 10 +7115.721611 + 20 +12026.936546 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13C0 + 8 +ESTRICH + 10 +7126.025584 + 20 +12039.474112 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13C1 + 8 +ESTRICH + 10 +7136.329557 + 20 +12045.742946 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13C2 + 8 +ESTRICH + 10 +7147.977627 + 20 +12046.190691 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +13C3 + 8 +ESTRICH + 0 +POLYLINE + 5 +13C4 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +13C5 + 8 +ESTRICH + 10 +7103.625564 + 20 +12045.295098 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13C6 + 8 +ESTRICH + 10 +7103.625564 + 20 +12045.295098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13C7 + 8 +ESTRICH + 10 +7108.895057 + 20 +12048.989859 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13C8 + 8 +ESTRICH + 10 +7113.651353 + 20 +12052.058879 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13C9 + 8 +ESTRICH + 10 +7117.948268 + 20 +12054.569062 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13CA + 8 +ESTRICH + 10 +7121.839616 + 20 +12056.587311 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13CB + 8 +ESTRICH + 10 +7125.37921 + 20 +12058.180527 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13CC + 8 +ESTRICH + 10 +7128.620865 + 20 +12059.415615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13CD + 8 +ESTRICH + 10 +7131.618394 + 20 +12060.359478 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13CE + 8 +ESTRICH + 10 +7134.425612 + 20 +12061.079018 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13CF + 8 +ESTRICH + 10 +7137.079709 + 20 +12061.631517 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D0 + 8 +ESTRICH + 10 +7139.551369 + 20 +12062.035779 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D1 + 8 +ESTRICH + 10 +7141.794655 + 20 +12062.300986 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D2 + 8 +ESTRICH + 10 +7143.763629 + 20 +12062.43632 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D3 + 8 +ESTRICH + 10 +7145.412352 + 20 +12062.450963 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D4 + 8 +ESTRICH + 10 +7146.694885 + 20 +12062.354098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D5 + 8 +ESTRICH + 10 +7147.56529 + 20 +12062.154906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D6 + 8 +ESTRICH + 10 +7147.977627 + 20 +12061.86257 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13D7 + 8 +ESTRICH + 10 +7118.40964 + 20 +12056.041583 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13D8 + 8 +ESTRICH + 10 +7135.88158 + 20 +12062.758162 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13D9 + 8 +ESTRICH + 10 +7147.52965 + 20 +12062.758162 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13DA + 8 +ESTRICH + 10 +7147.977627 + 20 +12061.86257 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +13DB + 8 +ESTRICH + 0 +POLYLINE + 5 +13DC + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +13DD + 8 +ESTRICH + 10 +7101.385512 + 20 +12073.056799 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13DE + 8 +ESTRICH + 10 +7101.385512 + 20 +12073.056799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13DF + 8 +ESTRICH + 10 +7106.187523 + 20 +12076.682689 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E0 + 8 +ESTRICH + 10 +7111.073535 + 20 +12079.563461 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E1 + 8 +ESTRICH + 10 +7115.875547 + 20 +12081.793568 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E2 + 8 +ESTRICH + 10 +7120.425558 + 20 +12083.467463 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E3 + 8 +ESTRICH + 10 +7124.555568 + 20 +12084.679597 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E4 + 8 +ESTRICH + 10 +7128.097575 + 20 +12085.524423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E5 + 8 +ESTRICH + 10 +7130.883577 + 20 +12086.096392 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E6 + 8 +ESTRICH + 10 +7132.745574 + 20 +12086.489957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +13E7 + 8 +ESTRICH + 10 +7113.929537 + 20 +12083.803284 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13E8 + 8 +ESTRICH + 10 +7129.16159 + 20 +12085.594365 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +13E9 + 8 +ESTRICH + 10 +7132.745574 + 20 +12086.489957 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +13EA + 8 +ESTRICH + 0 +POLYLINE + 5 +13EB + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FB8 + 8 +SCHNITTKANTEN + 10 +8606.15625 + 20 +12090.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FB9 + 8 +SCHNITTKANTEN + 10 +8606.15625 + 20 +11075.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FBA + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +13EF + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FBB + 8 +SCHNITTKANTEN + 10 +5836.15625 + 20 +9540.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FBC + 8 +SCHNITTKANTEN + 10 +7236.15625 + 20 +9540.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FBD + 8 +SCHNITTKANTEN + 0 +INSERT + 5 +13F3 + 8 +SCHRAFFUR + 2 +*X3 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +DASH,I +1040 +200.0 +1040 +0.785398 +1002 +} + 0 +INSERT + 5 +13F4 + 8 +SCHRAFFUR + 2 +*X4 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13F5 + 8 +SCHRAFFUR + 2 +*X5 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI34,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13F6 + 8 +SCHRAFFUR + 2 +*X6 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13F7 + 8 +SCHRAFFUR + 2 +*X7 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13F8 + 8 +SCHRAFFUR + 2 +*X8 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13F9 + 8 +SCHRAFFUR + 2 +*X9 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +450.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13FA + 8 +SCHRAFFUR + 2 +*X10 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +450.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13FB + 8 +SCHRAFFUR + 2 +*X11 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +450.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13FC + 8 +SCHRAFFUR + 2 +*X12 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +20.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +13FD + 8 +SCHRAFFUR + 2 +*X13 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +13FE + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1FBE + 8 +PE-FOLIE + 10 +5503.65625 + 20 +11300.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FBF + 8 +PE-FOLIE + 10 +5801.15625 + 20 +11300.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FC0 + 8 +PE-FOLIE + 10 +6103.65625 + 20 +11645.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FC1 + 8 +PE-FOLIE + 10 +7058.614038 + 20 +11645.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FC2 + 8 +PE-FOLIE + 0 +INSERT + 5 +1404 + 8 +SCHRAFFUR + 2 +*X14 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +125.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1405 + 8 +SCHRAFFUR + 2 +*X15 + 10 +431.15625 + 20 +800.782507 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +1406 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FC3 + 8 +MAUERWERK + 10 +7056.15625 + 20 +11225.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FC4 + 8 +MAUERWERK + 10 +7093.65625 + 20 +11225.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FC5 + 8 +MAUERWERK + 10 +7093.65625 + 20 +9540.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FC6 + 8 +MAUERWERK + 0 +POLYLINE + 5 +140B + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FC7 + 8 +MAUERWERK + 10 +7056.15625 + 20 +9540.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FC8 + 8 +MAUERWERK + 10 +7056.15625 + 20 +11225.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FC9 + 8 +MAUERWERK + 0 +POLYLINE + 5 +140F + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FCA + 8 +MAUERWERK + 10 +6141.15625 + 20 +11130.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FCB + 8 +MAUERWERK + 10 +6103.65625 + 20 +11130.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FCC + 8 +MAUERWERK + 10 +6103.65625 + 20 +9540.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FCD + 8 +MAUERWERK + 0 +POLYLINE + 5 +1414 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FCE + 8 +MAUERWERK + 10 +6141.15625 + 20 +9540.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FCF + 8 +MAUERWERK + 10 +6141.15625 + 20 +11130.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FD0 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1418 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FD1 + 8 +MAUERWERK + 10 +6141.15625 + 20 +9540.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FD2 + 8 +MAUERWERK + 10 +6141.15625 + 20 +9855.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FD3 + 8 +MAUERWERK + 0 +POLYLINE + 5 +141C + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1FD4 + 8 +PE-FOLIE + 10 +7061.15625 + 20 +9870.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FD5 + 8 +PE-FOLIE + 10 +6126.15625 + 20 +9870.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FD6 + 8 +PE-FOLIE + 10 +6126.15625 + 20 +9540.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FD7 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +1421 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FD8 + 8 +MAUERWERK + 10 +6136.15625 + 20 +9855.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FD9 + 8 +MAUERWERK + 10 +7056.15625 + 20 +9855.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FDA + 8 +MAUERWERK + 10 +7054.462701 + 20 +9540.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FDB + 8 +MAUERWERK + 0 +POLYLINE + 5 +1426 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FDC + 8 +DECKEN + 10 +6141.15625 + 20 +11141.921786 + 30 +0.0 + 0 +VERTEX + 5 +1FDD + 8 +DECKEN + 10 +7053.65625 + 20 +11141.921786 + 30 +0.0 + 0 +VERTEX + 5 +1FDE + 8 +DECKEN + 10 +7053.65625 + 20 +11228.282507 + 30 +0.0 + 0 +VERTEX + 5 +1FDF + 8 +DECKEN + 10 +8606.15625 + 20 +11228.282507 + 30 +0.0 + 0 +SEQEND + 5 +1FE0 + 8 +DECKEN + 0 +POLYLINE + 5 +142C + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FE1 + 8 +DECKEN + 10 +8606.15625 + 20 +11628.282507 + 30 +0.0 + 0 +VERTEX + 5 +1FE2 + 8 +DECKEN + 10 +6141.15625 + 20 +11628.282507 + 30 +0.0 + 0 +VERTEX + 5 +1FE3 + 8 +DECKEN + 10 +6141.15625 + 20 +11141.921786 + 30 +0.0 + 0 +SEQEND + 5 +1FE4 + 8 +DECKEN + 0 +POLYLINE + 5 +1431 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FE5 + 8 +ESTRICH + 10 +8606.15625 + 20 +11728.282507 + 30 +0.0 + 0 +VERTEX + 5 +1FE6 + 8 +ESTRICH + 10 +7141.15625 + 20 +11728.282507 + 30 +0.0 + 0 +VERTEX + 5 +1FE7 + 8 +ESTRICH + 10 +7141.15625 + 20 +11628.282507 + 30 +0.0 + 0 +SEQEND + 5 +1FE8 + 8 +ESTRICH + 0 +POLYLINE + 5 +1436 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1FE9 + 8 +PE-FOLIE + 10 +7140.773723 + 20 +11745.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FEA + 8 +PE-FOLIE + 10 +8606.15625 + 20 +11745.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FEB + 8 +PE-FOLIE + 0 +POLYLINE + 5 +143A + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FEC + 8 +ESTRICH + 10 +7141.15625 + 20 +11765.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FED + 8 +ESTRICH + 10 +7141.15625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FEE + 8 +ESTRICH + 10 +8606.15625 + 20 +11865.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FEF + 8 +ESTRICH + 0 +POLYLINE + 5 +143F + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FF0 + 8 +ESTRICH + 10 +8606.15625 + 20 +11765.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FF1 + 8 +ESTRICH + 10 +7141.15625 + 20 +11765.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FF2 + 8 +ESTRICH + 0 +POLYLINE + 5 +1443 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FF3 + 8 +ESTRICH + 10 +7141.15625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FF4 + 8 +ESTRICH + 10 +7141.15625 + 20 +11928.282507 + 30 +0.0 + 0 +VERTEX + 5 +1FF5 + 8 +ESTRICH + 10 +8606.15625 + 20 +11928.282507 + 30 +0.0 + 0 +SEQEND + 5 +1FF6 + 8 +ESTRICH + 0 +POLYLINE + 5 +1448 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1FF7 + 8 +ESTRICH + 10 +8606.15625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FF8 + 8 +ESTRICH + 10 +7141.15625 + 20 +11865.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FF9 + 8 +ESTRICH + 0 +LINE + 5 +144C + 8 +0 + 62 + 0 + 10 +7462.0437 + 20 +11225.782507 + 30 +0.0 + 11 +7863.49178 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +144D + 8 +0 + 62 + 0 + 10 +6957.779631 + 20 +11145.782507 + 30 +0.0 + 11 +7439.227711 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +144E + 8 +0 + 62 + 0 + 10 +6533.515563 + 20 +11145.782507 + 30 +0.0 + 11 +7014.963642 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +144F + 8 +0 + 62 + 0 + 10 +6141.15625 + 20 +11177.687263 + 30 +0.0 + 11 +6590.699573 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +1450 + 8 +0 + 62 + 0 + 10 +6141.15625 + 20 +11601.951332 + 30 +0.0 + 11 +6166.435505 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +1451 + 8 +0 + 62 + 0 + 10 +7886.307769 + 20 +11225.782507 + 30 +0.0 + 11 +8287.755848 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +1452 + 8 +0 + 62 + 0 + 10 +8310.571837 + 20 +11225.782507 + 30 +0.0 + 11 +8606.15625 + 21 +11521.366919 + 31 +0.0 + 0 +LINE + 5 +1453 + 8 +0 + 62 + 0 + 10 +7696.678426 + 20 +11248.285199 + 30 +0.0 + 11 +7802.744443 + 21 +11354.351216 + 31 +0.0 + 0 +LINE + 5 +1454 + 8 +0 + 62 + 0 + 10 +7855.777452 + 20 +11407.384225 + 30 +0.0 + 11 +7961.843469 + 21 +11513.450242 + 31 +0.0 + 0 +LINE + 5 +1455 + 8 +0 + 62 + 0 + 10 +8014.876478 + 20 +11566.483251 + 30 +0.0 + 11 +8075.623814 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +1456 + 8 +0 + 62 + 0 + 10 +7249.911665 + 20 +11225.782507 + 30 +0.0 + 11 +7272.414357 + 21 +11248.285199 + 31 +0.0 + 0 +LINE + 5 +1457 + 8 +0 + 62 + 0 + 10 +7325.447366 + 20 +11301.318208 + 30 +0.0 + 11 +7431.513383 + 21 +11407.384225 + 31 +0.0 + 0 +LINE + 5 +1458 + 8 +0 + 62 + 0 + 10 +7484.546392 + 20 +11460.417233 + 30 +0.0 + 11 +7590.612409 + 21 +11566.483251 + 31 +0.0 + 0 +LINE + 5 +1459 + 8 +0 + 62 + 0 + 10 +7643.645417 + 20 +11619.516259 + 30 +0.0 + 11 +7651.359745 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +145A + 8 +0 + 62 + 0 + 10 +6795.11728 + 20 +11195.25219 + 30 +0.0 + 11 +6901.183297 + 21 +11301.318208 + 31 +0.0 + 0 +LINE + 5 +145B + 8 +0 + 62 + 0 + 10 +6954.216306 + 20 +11354.351216 + 30 +0.0 + 11 +7060.282323 + 21 +11460.417233 + 31 +0.0 + 0 +LINE + 5 +145C + 8 +0 + 62 + 0 + 10 +7113.315331 + 20 +11513.450242 + 30 +0.0 + 11 +7219.381349 + 21 +11619.516259 + 31 +0.0 + 0 +LINE + 5 +145D + 8 +0 + 62 + 0 + 10 +6321.383528 + 20 +11145.782507 + 30 +0.0 + 11 +6370.853211 + 21 +11195.25219 + 31 +0.0 + 0 +LINE + 5 +145E + 8 +0 + 62 + 0 + 10 +6423.88622 + 20 +11248.285199 + 30 +0.0 + 11 +6529.952237 + 21 +11354.351216 + 31 +0.0 + 0 +LINE + 5 +145F + 8 +0 + 62 + 0 + 10 +6582.985246 + 20 +11407.384225 + 30 +0.0 + 11 +6689.051263 + 21 +11513.450242 + 31 +0.0 + 0 +LINE + 5 +1460 + 8 +0 + 62 + 0 + 10 +6742.084271 + 20 +11566.483251 + 30 +0.0 + 11 +6802.831607 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +1461 + 8 +0 + 62 + 0 + 10 +6141.15625 + 20 +11389.819298 + 30 +0.0 + 11 +6158.721177 + 21 +11407.384225 + 31 +0.0 + 0 +LINE + 5 +1462 + 8 +0 + 62 + 0 + 10 +6211.754185 + 20 +11460.417233 + 30 +0.0 + 11 +6317.820203 + 21 +11566.483251 + 31 +0.0 + 0 +LINE + 5 +1463 + 8 +0 + 62 + 0 + 10 +6370.853211 + 20 +11619.516259 + 30 +0.0 + 11 +6378.567539 + 21 +11627.230587 + 31 +0.0 + 0 +LINE + 5 +1464 + 8 +0 + 62 + 0 + 10 +8098.439803 + 20 +11225.782507 + 30 +0.0 + 11 +8173.975503 + 21 +11301.318208 + 31 +0.0 + 0 +LINE + 5 +1465 + 8 +0 + 62 + 0 + 10 +8227.008512 + 20 +11354.351216 + 30 +0.0 + 11 +8333.074529 + 21 +11460.417233 + 31 +0.0 + 0 +LINE + 5 +1466 + 8 +0 + 62 + 0 + 10 +8386.107538 + 20 +11513.450242 + 30 +0.0 + 11 +8492.173555 + 21 +11619.516259 + 31 +0.0 + 0 +LINE + 5 +1467 + 8 +0 + 62 + 0 + 10 +8522.703871 + 20 +11225.782507 + 30 +0.0 + 11 +8545.206563 + 21 +11248.285199 + 31 +0.0 + 0 +LINE + 5 +1468 + 8 +0 + 62 + 0 + 10 +8598.239572 + 20 +11301.318208 + 30 +0.0 + 11 +8606.15625 + 21 +11309.234885 + 31 +0.0 + 0 +POLYLINE + 5 +1469 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FFA + 8 +MAUERWERK + 10 +7061.15625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FFB + 8 +MAUERWERK + 10 +7098.65625 + 20 +11865.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FFC + 8 +MAUERWERK + 10 +7098.65625 + 20 +12530.782507 + 30 +0.0 + 0 +SEQEND + 5 +1FFD + 8 +MAUERWERK + 0 +POLYLINE + 5 +146E + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1FFE + 8 +MAUERWERK + 10 +7061.15625 + 20 +12530.782507 + 30 +0.0 + 0 +VERTEX + 5 +1FFF + 8 +MAUERWERK + 10 +7061.15625 + 20 +11865.782507 + 30 +0.0 + 0 +SEQEND + 5 +2000 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1472 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2001 + 8 +MAUERWERK + 10 +6141.15625 + 20 +12530.782507 + 30 +0.0 + 0 +VERTEX + 5 +2002 + 8 +MAUERWERK + 10 +6141.15625 + 20 +11664.071973 + 30 +0.0 + 0 +SEQEND + 5 +2003 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1476 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2004 + 8 +DAEMMUNG + 10 +5941.15625 + 20 +12530.782507 + 30 +0.0 + 0 +VERTEX + 5 +2005 + 8 +DAEMMUNG + 10 +5941.15625 + 20 +11278.282507 + 30 +0.0 + 0 +VERTEX + 5 +2006 + 8 +DAEMMUNG + 10 +6141.15625 + 20 +11278.282507 + 30 +0.0 + 0 +VERTEX + 5 +2007 + 8 +DAEMMUNG + 10 +6141.15625 + 20 +12530.782507 + 30 +0.0 + 0 +SEQEND + 5 +2008 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +147C + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2009 + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +12530.782507 + 30 +0.0 + 0 +VERTEX + 5 +200A + 8 +VORSATZSCHALE + 10 +5791.15625 + 20 +11498.282507 + 30 +0.0 + 0 +VERTEX + 5 +200B + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11498.282507 + 30 +0.0 + 0 +SEQEND + 5 +200C + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1481 + 8 +VORSATZSCHALE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +200D + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +11498.282507 + 30 +0.0 + 0 +VERTEX + 5 +200E + 8 +VORSATZSCHALE + 10 +5503.65625 + 20 +12530.782507 + 30 +0.0 + 0 +SEQEND + 5 +200F + 8 +VORSATZSCHALE + 0 +POLYLINE + 5 +1485 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2010 + 8 +MAUERWERK + 10 +6141.15625 + 20 +11665.782507 + 30 +0.0 + 0 +VERTEX + 5 +2011 + 8 +MAUERWERK + 10 +7061.15625 + 20 +11665.782507 + 30 +0.0 + 0 +VERTEX + 5 +2012 + 8 +MAUERWERK + 10 +7061.15625 + 20 +12530.782507 + 30 +0.0 + 0 +SEQEND + 5 +2013 + 8 +MAUERWERK + 0 +POLYLINE + 5 +148A + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2014 + 8 +ESTRICH + 10 +7083.556019 + 20 +11628.282507 + 30 +0.0 + 0 +VERTEX + 5 +2015 + 8 +ESTRICH + 10 +8606.15625 + 20 +11628.282507 + 30 +0.0 + 0 +SEQEND + 5 +2016 + 8 +ESTRICH + 0 +LINE + 5 +148E + 8 +0 + 62 + 0 + 10 +6116.244194 + 20 +10101.004597 + 30 +0.0 + 11 +6116.244194 + 21 +10101.004597 + 31 +0.0 + 0 +LINE + 5 +148F + 8 +0 + 62 + 0 + 10 +6140.362135 + 20 +10119.510945 + 30 +0.0 + 11 +6140.362135 + 21 +10119.510945 + 31 +0.0 + 0 +LINE + 5 +1490 + 8 +0 + 62 + 0 + 10 +6114.984326 + 20 +10139.541073 + 30 +0.0 + 11 +6114.984326 + 21 +10139.541073 + 31 +0.0 + 0 +LINE + 5 +1491 + 8 +0 + 62 + 0 + 10 +6139.102268 + 20 +10158.04742 + 30 +0.0 + 11 +6139.102268 + 21 +10158.04742 + 31 +0.0 + 0 +LINE + 5 +1492 + 8 +0 + 62 + 0 + 10 +6113.724459 + 20 +10178.077548 + 30 +0.0 + 11 +6113.724459 + 21 +10178.077548 + 31 +0.0 + 0 +LINE + 5 +1493 + 8 +0 + 62 + 0 + 10 +6137.842401 + 20 +10196.583896 + 30 +0.0 + 11 +6137.842401 + 21 +10196.583896 + 31 +0.0 + 0 +LINE + 5 +1494 + 8 +0 + 62 + 0 + 10 +6112.464592 + 20 +10216.614023 + 30 +0.0 + 11 +6112.464592 + 21 +10216.614023 + 31 +0.0 + 0 +LINE + 5 +1495 + 8 +0 + 62 + 0 + 10 +6136.582534 + 20 +10235.120371 + 30 +0.0 + 11 +6136.582534 + 21 +10235.120371 + 31 +0.0 + 0 +LINE + 5 +1496 + 8 +0 + 62 + 0 + 10 +6111.204725 + 20 +10255.150499 + 30 +0.0 + 11 +6111.204725 + 21 +10255.150499 + 31 +0.0 + 0 +LINE + 5 +1497 + 8 +0 + 62 + 0 + 10 +6135.322666 + 20 +10273.656846 + 30 +0.0 + 11 +6135.322666 + 21 +10273.656846 + 31 +0.0 + 0 +LINE + 5 +1498 + 8 +0 + 62 + 0 + 10 +6109.944858 + 20 +10293.686974 + 30 +0.0 + 11 +6109.944858 + 21 +10293.686974 + 31 +0.0 + 0 +LINE + 5 +1499 + 8 +0 + 62 + 0 + 10 +6134.062799 + 20 +10312.193322 + 30 +0.0 + 11 +6134.062799 + 21 +10312.193322 + 31 +0.0 + 0 +LINE + 5 +149A + 8 +0 + 62 + 0 + 10 +6108.684991 + 20 +10332.22345 + 30 +0.0 + 11 +6108.684991 + 21 +10332.22345 + 31 +0.0 + 0 +LINE + 5 +149B + 8 +0 + 62 + 0 + 10 +6132.802932 + 20 +10350.729797 + 30 +0.0 + 11 +6132.802932 + 21 +10350.729797 + 31 +0.0 + 0 +LINE + 5 +149C + 8 +0 + 62 + 0 + 10 +6107.425123 + 20 +10370.759925 + 30 +0.0 + 11 +6107.425123 + 21 +10370.759925 + 31 +0.0 + 0 +LINE + 5 +149D + 8 +0 + 62 + 0 + 10 +6131.543065 + 20 +10389.266272 + 30 +0.0 + 11 +6131.543065 + 21 +10389.266272 + 31 +0.0 + 0 +LINE + 5 +149E + 8 +0 + 62 + 0 + 10 +6106.165256 + 20 +10409.2964 + 30 +0.0 + 11 +6106.165256 + 21 +10409.2964 + 31 +0.0 + 0 +LINE + 5 +149F + 8 +0 + 62 + 0 + 10 +6130.283198 + 20 +10427.802748 + 30 +0.0 + 11 +6130.283198 + 21 +10427.802748 + 31 +0.0 + 0 +LINE + 5 +14A0 + 8 +0 + 62 + 0 + 10 +6104.905389 + 20 +10447.832876 + 30 +0.0 + 11 +6104.905389 + 21 +10447.832876 + 31 +0.0 + 0 +LINE + 5 +14A1 + 8 +0 + 62 + 0 + 10 +6129.023331 + 20 +10466.339223 + 30 +0.0 + 11 +6129.023331 + 21 +10466.339223 + 31 +0.0 + 0 +LINE + 5 +14A2 + 8 +0 + 62 + 0 + 10 +6127.763464 + 20 +10504.875699 + 30 +0.0 + 11 +6127.763464 + 21 +10504.875699 + 31 +0.0 + 0 +LINE + 5 +14A3 + 8 +0 + 62 + 0 + 10 +6126.503596 + 20 +10543.412174 + 30 +0.0 + 11 +6126.503596 + 21 +10543.412174 + 31 +0.0 + 0 +LINE + 5 +14A4 + 8 +0 + 62 + 0 + 10 +6125.243729 + 20 +10581.948649 + 30 +0.0 + 11 +6125.243729 + 21 +10581.948649 + 31 +0.0 + 0 +LINE + 5 +14A5 + 8 +0 + 62 + 0 + 10 +6123.983862 + 20 +10620.485125 + 30 +0.0 + 11 +6123.983862 + 21 +10620.485125 + 31 +0.0 + 0 +LINE + 5 +14A6 + 8 +0 + 62 + 0 + 10 +6122.723995 + 20 +10659.0216 + 30 +0.0 + 11 +6122.723995 + 21 +10659.0216 + 31 +0.0 + 0 +LINE + 5 +14A7 + 8 +0 + 62 + 0 + 10 +6121.464128 + 20 +10697.558075 + 30 +0.0 + 11 +6121.464128 + 21 +10697.558075 + 31 +0.0 + 0 +LINE + 5 +14A8 + 8 +0 + 62 + 0 + 10 +6120.204261 + 20 +10736.094551 + 30 +0.0 + 11 +6120.204261 + 21 +10736.094551 + 31 +0.0 + 0 +LINE + 5 +14A9 + 8 +0 + 62 + 0 + 10 +6118.944393 + 20 +10774.631026 + 30 +0.0 + 11 +6118.944393 + 21 +10774.631026 + 31 +0.0 + 0 +LINE + 5 +14AA + 8 +0 + 62 + 0 + 10 +6117.684526 + 20 +10813.167502 + 30 +0.0 + 11 +6117.684526 + 21 +10813.167502 + 31 +0.0 + 0 +LINE + 5 +14AB + 8 +0 + 62 + 0 + 10 +6116.424659 + 20 +10851.703977 + 30 +0.0 + 11 +6116.424659 + 21 +10851.703977 + 31 +0.0 + 0 +LINE + 5 +14AC + 8 +0 + 62 + 0 + 10 +6115.164792 + 20 +10890.240452 + 30 +0.0 + 11 +6115.164792 + 21 +10890.240452 + 31 +0.0 + 0 +LINE + 5 +14AD + 8 +0 + 62 + 0 + 10 +6113.904925 + 20 +10928.776928 + 30 +0.0 + 11 +6113.904925 + 21 +10928.776928 + 31 +0.0 + 0 +LINE + 5 +14AE + 8 +0 + 62 + 0 + 10 +6140.878938 + 20 +10949.474816 + 30 +0.0 + 11 +6140.878938 + 21 +10949.474816 + 31 +0.0 + 0 +LINE + 5 +14AF + 8 +0 + 62 + 0 + 10 +6112.645058 + 20 +10967.313403 + 30 +0.0 + 11 +6112.645058 + 21 +10967.313403 + 31 +0.0 + 0 +LINE + 5 +14B0 + 8 +0 + 62 + 0 + 10 +6139.619071 + 20 +10988.011292 + 30 +0.0 + 11 +6139.619071 + 21 +10988.011292 + 31 +0.0 + 0 +LINE + 5 +14B1 + 8 +0 + 62 + 0 + 10 +6111.38519 + 20 +11005.849879 + 30 +0.0 + 11 +6111.38519 + 21 +11005.849879 + 31 +0.0 + 0 +LINE + 5 +14B2 + 8 +0 + 62 + 0 + 10 +6138.359204 + 20 +11026.547767 + 30 +0.0 + 11 +6138.359204 + 21 +11026.547767 + 31 +0.0 + 0 +LINE + 5 +14B3 + 8 +0 + 62 + 0 + 10 +6110.125323 + 20 +11044.386354 + 30 +0.0 + 11 +6110.125323 + 21 +11044.386354 + 31 +0.0 + 0 +LINE + 5 +14B4 + 8 +0 + 62 + 0 + 10 +6137.099337 + 20 +11065.084243 + 30 +0.0 + 11 +6137.099337 + 21 +11065.084243 + 31 +0.0 + 0 +LINE + 5 +14B5 + 8 +0 + 62 + 0 + 10 +6108.865456 + 20 +11082.922829 + 30 +0.0 + 11 +6108.865456 + 21 +11082.922829 + 31 +0.0 + 0 +LINE + 5 +14B6 + 8 +0 + 62 + 0 + 10 +6135.83947 + 20 +11103.620718 + 30 +0.0 + 11 +6135.83947 + 21 +11103.620718 + 31 +0.0 + 0 +LINE + 5 +14B7 + 8 +0 + 62 + 0 + 10 +6107.605589 + 20 +11121.459305 + 30 +0.0 + 11 +6107.605589 + 21 +11121.459305 + 31 +0.0 + 0 +LINE + 5 +14B8 + 8 +0 + 62 + 0 + 10 +6117.504061 + 20 +10062.468122 + 30 +0.0 + 11 +6117.504061 + 21 +10062.468122 + 31 +0.0 + 0 +LINE + 5 +14B9 + 8 +0 + 62 + 0 + 10 +6118.763928 + 20 +10023.931647 + 30 +0.0 + 11 +6118.763928 + 21 +10023.931647 + 31 +0.0 + 0 +LINE + 5 +14BA + 8 +0 + 62 + 0 + 10 +6120.023795 + 20 +9985.395171 + 30 +0.0 + 11 +6120.023795 + 21 +9985.395171 + 31 +0.0 + 0 +LINE + 5 +14BB + 8 +0 + 62 + 0 + 10 +6121.283662 + 20 +9946.858696 + 30 +0.0 + 11 +6121.283662 + 21 +9946.858696 + 31 +0.0 + 0 +LINE + 5 +14BC + 8 +0 + 62 + 0 + 10 +6122.543529 + 20 +9908.32222 + 30 +0.0 + 11 +6122.543529 + 21 +9908.32222 + 31 +0.0 + 0 +LINE + 5 +14BD + 8 +0 + 62 + 0 + 10 +6123.803397 + 20 +9869.785745 + 30 +0.0 + 11 +6123.803397 + 21 +9869.785745 + 31 +0.0 + 0 +LINE + 5 +14BE + 8 +0 + 62 + 0 + 10 +6125.063264 + 20 +9831.24927 + 30 +0.0 + 11 +6125.063264 + 21 +9831.24927 + 31 +0.0 + 0 +LINE + 5 +14BF + 8 +0 + 62 + 0 + 10 +6126.323131 + 20 +9792.712794 + 30 +0.0 + 11 +6126.323131 + 21 +9792.712794 + 31 +0.0 + 0 +LINE + 5 +14C0 + 8 +0 + 62 + 0 + 10 +6127.582998 + 20 +9754.176319 + 30 +0.0 + 11 +6127.582998 + 21 +9754.176319 + 31 +0.0 + 0 +LINE + 5 +14C1 + 8 +0 + 62 + 0 + 10 +6128.842865 + 20 +9715.639844 + 30 +0.0 + 11 +6128.842865 + 21 +9715.639844 + 31 +0.0 + 0 +LINE + 5 +14C2 + 8 +0 + 62 + 0 + 10 +6104.318749 + 20 +9657.318622 + 30 +0.0 + 11 +6104.318749 + 21 +9657.318622 + 31 +0.0 + 0 +LINE + 5 +14C3 + 8 +0 + 62 + 0 + 10 +6130.102732 + 20 +9677.103368 + 30 +0.0 + 11 +6130.102732 + 21 +9677.103368 + 31 +0.0 + 0 +LINE + 5 +14C4 + 8 +0 + 62 + 0 + 10 +6105.578616 + 20 +9618.782146 + 30 +0.0 + 11 +6105.578616 + 21 +9618.782146 + 31 +0.0 + 0 +LINE + 5 +14C5 + 8 +0 + 62 + 0 + 10 +6131.3626 + 20 +9638.566893 + 30 +0.0 + 11 +6131.3626 + 21 +9638.566893 + 31 +0.0 + 0 +LINE + 5 +14C6 + 8 +0 + 62 + 0 + 10 +6106.838483 + 20 +9580.245671 + 30 +0.0 + 11 +6106.838483 + 21 +9580.245671 + 31 +0.0 + 0 +LINE + 5 +14C7 + 8 +0 + 62 + 0 + 10 +6132.622467 + 20 +9600.030417 + 30 +0.0 + 11 +6132.622467 + 21 +9600.030417 + 31 +0.0 + 0 +LINE + 5 +14C8 + 8 +0 + 62 + 0 + 10 +6108.09835 + 20 +9541.709196 + 30 +0.0 + 11 +6108.09835 + 21 +9541.709196 + 31 +0.0 + 0 +LINE + 5 +14C9 + 8 +0 + 62 + 0 + 10 +6133.882334 + 20 +9561.493942 + 30 +0.0 + 11 +6133.882334 + 21 +9561.493942 + 31 +0.0 + 0 +LINE + 5 +14CA + 8 +0 + 62 + 0 + 10 +6109.913009 + 20 +10092.601806 + 30 +0.0 + 11 +6109.913009 + 21 +10092.601806 + 31 +0.0 + 0 +LINE + 5 +14CB + 8 +0 + 62 + 0 + 10 +6126.172705 + 20 +10094.742435 + 30 +0.0 + 11 +6126.172705 + 21 +10094.742435 + 31 +0.0 + 0 +LINE + 5 +14CC + 8 +0 + 62 + 0 + 10 +6107.732783 + 20 +10144.097784 + 30 +0.0 + 11 +6107.732783 + 21 +10144.097784 + 31 +0.0 + 0 +LINE + 5 +14CD + 8 +0 + 62 + 0 + 10 +6134.898372 + 20 +10147.674202 + 30 +0.0 + 11 +6134.898372 + 21 +10147.674202 + 31 +0.0 + 0 +LINE + 5 +14CE + 8 +0 + 62 + 0 + 10 +6116.45845 + 20 +10197.029551 + 30 +0.0 + 11 +6116.45845 + 21 +10197.029551 + 31 +0.0 + 0 +LINE + 5 +14CF + 8 +0 + 62 + 0 + 10 +6126.868621 + 20 +10198.400076 + 30 +0.0 + 11 +6126.868621 + 21 +10198.400076 + 31 +0.0 + 0 +LINE + 5 +14D0 + 8 +0 + 62 + 0 + 10 +6108.428699 + 20 +10247.755425 + 30 +0.0 + 11 +6108.428699 + 21 +10247.755425 + 31 +0.0 + 0 +LINE + 5 +14D1 + 8 +0 + 62 + 0 + 10 +6124.688395 + 20 +10249.896055 + 30 +0.0 + 11 +6124.688395 + 21 +10249.896055 + 31 +0.0 + 0 +LINE + 5 +14D2 + 8 +0 + 62 + 0 + 10 +6106.248473 + 20 +10299.251404 + 30 +0.0 + 11 +6106.248473 + 21 +10299.251404 + 31 +0.0 + 0 +LINE + 5 +14D3 + 8 +0 + 62 + 0 + 10 +6133.414063 + 20 +10302.827821 + 30 +0.0 + 11 +6133.414063 + 21 +10302.827821 + 31 +0.0 + 0 +LINE + 5 +14D4 + 8 +0 + 62 + 0 + 10 +6114.974141 + 20 +10352.18317 + 30 +0.0 + 11 +6114.974141 + 21 +10352.18317 + 31 +0.0 + 0 +LINE + 5 +14D5 + 8 +0 + 62 + 0 + 10 +6125.384312 + 20 +10353.553695 + 30 +0.0 + 11 +6125.384312 + 21 +10353.553695 + 31 +0.0 + 0 +LINE + 5 +14D6 + 8 +0 + 62 + 0 + 10 +6106.94439 + 20 +10402.909044 + 30 +0.0 + 11 +6106.94439 + 21 +10402.909044 + 31 +0.0 + 0 +LINE + 5 +14D7 + 8 +0 + 62 + 0 + 10 +6123.204086 + 20 +10405.049674 + 30 +0.0 + 11 +6123.204086 + 21 +10405.049674 + 31 +0.0 + 0 +LINE + 5 +14D8 + 8 +0 + 62 + 0 + 10 +6104.764164 + 20 +10454.405023 + 30 +0.0 + 11 +6104.764164 + 21 +10454.405023 + 31 +0.0 + 0 +LINE + 5 +14D9 + 8 +0 + 62 + 0 + 10 +6131.929753 + 20 +10457.981441 + 30 +0.0 + 11 +6131.929753 + 21 +10457.981441 + 31 +0.0 + 0 +LINE + 5 +14DA + 8 +0 + 62 + 0 + 10 +6113.489831 + 20 +10507.33679 + 30 +0.0 + 11 +6113.489831 + 21 +10507.33679 + 31 +0.0 + 0 +LINE + 5 +14DB + 8 +0 + 62 + 0 + 10 +6123.900002 + 20 +10508.707315 + 30 +0.0 + 11 +6123.900002 + 21 +10508.707315 + 31 +0.0 + 0 +LINE + 5 +14DC + 8 +0 + 62 + 0 + 10 +6140.159698 + 20 +10510.847944 + 30 +0.0 + 11 +6140.159698 + 21 +10510.847944 + 31 +0.0 + 0 +LINE + 5 +14DD + 8 +0 + 62 + 0 + 10 +6105.46008 + 20 +10558.062664 + 30 +0.0 + 11 +6105.46008 + 21 +10558.062664 + 31 +0.0 + 0 +LINE + 5 +14DE + 8 +0 + 62 + 0 + 10 +6121.719776 + 20 +10560.203293 + 30 +0.0 + 11 +6121.719776 + 21 +10560.203293 + 31 +0.0 + 0 +LINE + 5 +14DF + 8 +0 + 62 + 0 + 10 +6130.445443 + 20 +10613.13506 + 30 +0.0 + 11 +6130.445443 + 21 +10613.13506 + 31 +0.0 + 0 +LINE + 5 +14E0 + 8 +0 + 62 + 0 + 10 +6140.855614 + 20 +10614.505585 + 30 +0.0 + 11 +6140.855614 + 21 +10614.505585 + 31 +0.0 + 0 +LINE + 5 +14E1 + 8 +0 + 62 + 0 + 10 +6112.005521 + 20 +10662.490409 + 30 +0.0 + 11 +6112.005521 + 21 +10662.490409 + 31 +0.0 + 0 +LINE + 5 +14E2 + 8 +0 + 62 + 0 + 10 +6122.415692 + 20 +10663.860934 + 30 +0.0 + 11 +6122.415692 + 21 +10663.860934 + 31 +0.0 + 0 +LINE + 5 +14E3 + 8 +0 + 62 + 0 + 10 +6138.675388 + 20 +10666.001564 + 30 +0.0 + 11 +6138.675388 + 21 +10666.001564 + 31 +0.0 + 0 +LINE + 5 +14E4 + 8 +0 + 62 + 0 + 10 +6103.975771 + 20 +10713.216283 + 30 +0.0 + 11 +6103.975771 + 21 +10713.216283 + 31 +0.0 + 0 +LINE + 5 +14E5 + 8 +0 + 62 + 0 + 10 +6120.235466 + 20 +10715.356913 + 30 +0.0 + 11 +6120.235466 + 21 +10715.356913 + 31 +0.0 + 0 +LINE + 5 +14E6 + 8 +0 + 62 + 0 + 10 +6128.961134 + 20 +10768.28868 + 30 +0.0 + 11 +6128.961134 + 21 +10768.28868 + 31 +0.0 + 0 +LINE + 5 +14E7 + 8 +0 + 62 + 0 + 10 +6139.371305 + 20 +10769.659205 + 30 +0.0 + 11 +6139.371305 + 21 +10769.659205 + 31 +0.0 + 0 +LINE + 5 +14E8 + 8 +0 + 62 + 0 + 10 +6110.521212 + 20 +10817.644029 + 30 +0.0 + 11 +6110.521212 + 21 +10817.644029 + 31 +0.0 + 0 +LINE + 5 +14E9 + 8 +0 + 62 + 0 + 10 +6120.931383 + 20 +10819.014554 + 30 +0.0 + 11 +6120.931383 + 21 +10819.014554 + 31 +0.0 + 0 +LINE + 5 +14EA + 8 +0 + 62 + 0 + 10 +6137.191079 + 20 +10821.155183 + 30 +0.0 + 11 +6137.191079 + 21 +10821.155183 + 31 +0.0 + 0 +LINE + 5 +14EB + 8 +0 + 62 + 0 + 10 +6118.751157 + 20 +10870.510532 + 30 +0.0 + 11 +6118.751157 + 21 +10870.510532 + 31 +0.0 + 0 +LINE + 5 +14EC + 8 +0 + 62 + 0 + 10 +6127.476824 + 20 +10923.442299 + 30 +0.0 + 11 +6127.476824 + 21 +10923.442299 + 31 +0.0 + 0 +LINE + 5 +14ED + 8 +0 + 62 + 0 + 10 +6137.886995 + 20 +10924.812824 + 30 +0.0 + 11 +6137.886995 + 21 +10924.812824 + 31 +0.0 + 0 +LINE + 5 +14EE + 8 +0 + 62 + 0 + 10 +6109.036902 + 20 +10972.797648 + 30 +0.0 + 11 +6109.036902 + 21 +10972.797648 + 31 +0.0 + 0 +LINE + 5 +14EF + 8 +0 + 62 + 0 + 10 +6119.447073 + 20 +10974.168173 + 30 +0.0 + 11 +6119.447073 + 21 +10974.168173 + 31 +0.0 + 0 +LINE + 5 +14F0 + 8 +0 + 62 + 0 + 10 +6135.706769 + 20 +10976.308803 + 30 +0.0 + 11 +6135.706769 + 21 +10976.308803 + 31 +0.0 + 0 +LINE + 5 +14F1 + 8 +0 + 62 + 0 + 10 +6117.266847 + 20 +11025.664152 + 30 +0.0 + 11 +6117.266847 + 21 +11025.664152 + 31 +0.0 + 0 +LINE + 5 +14F2 + 8 +0 + 62 + 0 + 10 +6125.992514 + 20 +11078.595918 + 30 +0.0 + 11 +6125.992514 + 21 +11078.595918 + 31 +0.0 + 0 +LINE + 5 +14F3 + 8 +0 + 62 + 0 + 10 +6136.402685 + 20 +11079.966444 + 30 +0.0 + 11 +6136.402685 + 21 +11079.966444 + 31 +0.0 + 0 +LINE + 5 +14F4 + 8 +0 + 62 + 0 + 10 +6107.552593 + 20 +11127.951268 + 30 +0.0 + 11 +6107.552593 + 21 +11127.951268 + 31 +0.0 + 0 +LINE + 5 +14F5 + 8 +0 + 62 + 0 + 10 +6117.962764 + 20 +11129.321793 + 30 +0.0 + 11 +6117.962764 + 21 +11129.321793 + 31 +0.0 + 0 +LINE + 5 +14F6 + 8 +0 + 62 + 0 + 10 +6117.94276 + 20 +10041.875931 + 30 +0.0 + 11 +6117.94276 + 21 +10041.875931 + 31 +0.0 + 0 +LINE + 5 +14F7 + 8 +0 + 62 + 0 + 10 +6128.352931 + 20 +10043.246457 + 30 +0.0 + 11 +6128.352931 + 21 +10043.246457 + 31 +0.0 + 0 +LINE + 5 +14F8 + 8 +0 + 62 + 0 + 10 +6109.217093 + 20 +9988.944165 + 30 +0.0 + 11 +6109.217093 + 21 +9988.944165 + 31 +0.0 + 0 +LINE + 5 +14F9 + 8 +0 + 62 + 0 + 10 +6136.382682 + 20 +9992.520582 + 30 +0.0 + 11 +6136.382682 + 21 +9992.520582 + 31 +0.0 + 0 +LINE + 5 +14FA + 8 +0 + 62 + 0 + 10 +6111.397319 + 20 +9937.448186 + 30 +0.0 + 11 +6111.397319 + 21 +9937.448186 + 31 +0.0 + 0 +LINE + 5 +14FB + 8 +0 + 62 + 0 + 10 +6127.657014 + 20 +9939.588816 + 30 +0.0 + 11 +6127.657014 + 21 +9939.588816 + 31 +0.0 + 0 +LINE + 5 +14FC + 8 +0 + 62 + 0 + 10 +6119.42707 + 20 +9886.722312 + 30 +0.0 + 11 +6119.42707 + 21 +9886.722312 + 31 +0.0 + 0 +LINE + 5 +14FD + 8 +0 + 62 + 0 + 10 +6129.837241 + 20 +9888.092837 + 30 +0.0 + 11 +6129.837241 + 21 +9888.092837 + 31 +0.0 + 0 +LINE + 5 +14FE + 8 +0 + 62 + 0 + 10 +6110.701402 + 20 +9833.790545 + 30 +0.0 + 11 +6110.701402 + 21 +9833.790545 + 31 +0.0 + 0 +LINE + 5 +14FF + 8 +0 + 62 + 0 + 10 +6137.866991 + 20 +9837.366963 + 30 +0.0 + 11 +6137.866991 + 21 +9837.366963 + 31 +0.0 + 0 +LINE + 5 +1500 + 8 +0 + 62 + 0 + 10 +6112.881628 + 20 +9782.294567 + 30 +0.0 + 11 +6112.881628 + 21 +9782.294567 + 31 +0.0 + 0 +LINE + 5 +1501 + 8 +0 + 62 + 0 + 10 +6129.141324 + 20 +9784.435196 + 30 +0.0 + 11 +6129.141324 + 21 +9784.435196 + 31 +0.0 + 0 +LINE + 5 +1502 + 8 +0 + 62 + 0 + 10 +6120.911379 + 20 +9731.568693 + 30 +0.0 + 11 +6120.911379 + 21 +9731.568693 + 31 +0.0 + 0 +LINE + 5 +1503 + 8 +0 + 62 + 0 + 10 +6131.32155 + 20 +9732.939218 + 30 +0.0 + 11 +6131.32155 + 21 +9732.939218 + 31 +0.0 + 0 +LINE + 5 +1504 + 8 +0 + 62 + 0 + 10 +6112.185712 + 20 +9678.636926 + 30 +0.0 + 11 +6112.185712 + 21 +9678.636926 + 31 +0.0 + 0 +LINE + 5 +1505 + 8 +0 + 62 + 0 + 10 +6139.351301 + 20 +9682.213344 + 30 +0.0 + 11 +6139.351301 + 21 +9682.213344 + 31 +0.0 + 0 +LINE + 5 +1506 + 8 +0 + 62 + 0 + 10 +6103.955767 + 20 +9625.770422 + 30 +0.0 + 11 +6103.955767 + 21 +9625.770422 + 31 +0.0 + 0 +LINE + 5 +1507 + 8 +0 + 62 + 0 + 10 +6114.365938 + 20 +9627.140947 + 30 +0.0 + 11 +6114.365938 + 21 +9627.140947 + 31 +0.0 + 0 +LINE + 5 +1508 + 8 +0 + 62 + 0 + 10 +6130.625634 + 20 +9629.281577 + 30 +0.0 + 11 +6130.625634 + 21 +9629.281577 + 31 +0.0 + 0 +LINE + 5 +1509 + 8 +0 + 62 + 0 + 10 +6122.395689 + 20 +9576.415073 + 30 +0.0 + 11 +6122.395689 + 21 +9576.415073 + 31 +0.0 + 0 +LINE + 5 +150A + 8 +0 + 62 + 0 + 10 +6132.80586 + 20 +9577.785598 + 30 +0.0 + 11 +6132.80586 + 21 +9577.785598 + 31 +0.0 + 0 +LINE + 5 +150B + 8 +0 + 62 + 0 + 10 +6121.775959 + 20 +10131.888161 + 30 +0.0 + 11 +6121.775959 + 21 +10131.888161 + 31 +0.0 + 0 +LINE + 5 +150C + 8 +0 + 62 + 0 + 10 +6130.209873 + 20 +10126.515165 + 30 +0.0 + 11 +6130.209873 + 21 +10126.515165 + 31 +0.0 + 0 +LINE + 5 +150D + 8 +0 + 62 + 0 + 10 +6105.623391 + 20 +10181.970206 + 30 +0.0 + 11 +6105.623391 + 21 +10181.970206 + 31 +0.0 + 0 +LINE + 5 +150E + 8 +0 + 62 + 0 + 10 +6114.057306 + 20 +10176.59721 + 30 +0.0 + 11 +6114.057306 + 21 +10176.59721 + 31 +0.0 + 0 +LINE + 5 +150F + 8 +0 + 62 + 0 + 10 +6128.266831 + 20 +10207.336469 + 30 +0.0 + 11 +6128.266831 + 21 +10207.336469 + 31 +0.0 + 0 +LINE + 5 +1510 + 8 +0 + 62 + 0 + 10 +6112.114263 + 20 +10257.418513 + 30 +0.0 + 11 +6112.114263 + 21 +10257.418513 + 31 +0.0 + 0 +LINE + 5 +1511 + 8 +0 + 62 + 0 + 10 +6135.601094 + 20 +10282.247476 + 30 +0.0 + 11 +6135.601094 + 21 +10282.247476 + 31 +0.0 + 0 +LINE + 5 +1512 + 8 +0 + 62 + 0 + 10 +6119.448527 + 20 +10332.329521 + 30 +0.0 + 11 +6119.448527 + 21 +10332.329521 + 31 +0.0 + 0 +LINE + 5 +1513 + 8 +0 + 62 + 0 + 10 +6127.882441 + 20 +10326.956525 + 30 +0.0 + 11 +6127.882441 + 21 +10326.956525 + 31 +0.0 + 0 +LINE + 5 +1514 + 8 +0 + 62 + 0 + 10 +6111.729874 + 20 +10377.038569 + 30 +0.0 + 11 +6111.729874 + 21 +10377.038569 + 31 +0.0 + 0 +LINE + 5 +1515 + 8 +0 + 62 + 0 + 10 +6125.939399 + 20 +10407.777828 + 30 +0.0 + 11 +6125.939399 + 21 +10407.777828 + 31 +0.0 + 0 +LINE + 5 +1516 + 8 +0 + 62 + 0 + 10 +6109.786832 + 20 +10457.859873 + 30 +0.0 + 11 +6109.786832 + 21 +10457.859873 + 31 +0.0 + 0 +LINE + 5 +1517 + 8 +0 + 62 + 0 + 10 +6133.273662 + 20 +10482.688836 + 30 +0.0 + 11 +6133.273662 + 21 +10482.688836 + 31 +0.0 + 0 +LINE + 5 +1518 + 8 +0 + 62 + 0 + 10 +6117.121095 + 20 +10532.770881 + 30 +0.0 + 11 +6117.121095 + 21 +10532.770881 + 31 +0.0 + 0 +LINE + 5 +1519 + 8 +0 + 62 + 0 + 10 +6125.55501 + 20 +10527.397884 + 30 +0.0 + 11 +6125.55501 + 21 +10527.397884 + 31 +0.0 + 0 +LINE + 5 +151A + 8 +0 + 62 + 0 + 10 +6109.402442 + 20 +10577.479929 + 30 +0.0 + 11 +6109.402442 + 21 +10577.479929 + 31 +0.0 + 0 +LINE + 5 +151B + 8 +0 + 62 + 0 + 10 +6139.764535 + 20 +10558.137143 + 30 +0.0 + 11 +6139.764535 + 21 +10558.137143 + 31 +0.0 + 0 +LINE + 5 +151C + 8 +0 + 62 + 0 + 10 +6123.611967 + 20 +10608.219188 + 30 +0.0 + 11 +6123.611967 + 21 +10608.219188 + 31 +0.0 + 0 +LINE + 5 +151D + 8 +0 + 62 + 0 + 10 +6107.4594 + 20 +10658.301233 + 30 +0.0 + 11 +6107.4594 + 21 +10658.301233 + 31 +0.0 + 0 +LINE + 5 +151E + 8 +0 + 62 + 0 + 10 +6130.946231 + 20 +10683.130196 + 30 +0.0 + 11 +6130.946231 + 21 +10683.130196 + 31 +0.0 + 0 +LINE + 5 +151F + 8 +0 + 62 + 0 + 10 +6139.380145 + 20 +10677.7572 + 30 +0.0 + 11 +6139.380145 + 21 +10677.7572 + 31 +0.0 + 0 +LINE + 5 +1520 + 8 +0 + 62 + 0 + 10 +6114.793664 + 20 +10733.21224 + 30 +0.0 + 11 +6114.793664 + 21 +10733.21224 + 31 +0.0 + 0 +LINE + 5 +1521 + 8 +0 + 62 + 0 + 10 +6123.227578 + 20 +10727.839244 + 30 +0.0 + 11 +6123.227578 + 21 +10727.839244 + 31 +0.0 + 0 +LINE + 5 +1522 + 8 +0 + 62 + 0 + 10 +6107.075011 + 20 +10777.921289 + 30 +0.0 + 11 +6107.075011 + 21 +10777.921289 + 31 +0.0 + 0 +LINE + 5 +1523 + 8 +0 + 62 + 0 + 10 +6137.437103 + 20 +10758.578503 + 30 +0.0 + 11 +6137.437103 + 21 +10758.578503 + 31 +0.0 + 0 +LINE + 5 +1524 + 8 +0 + 62 + 0 + 10 +6121.284536 + 20 +10808.660548 + 30 +0.0 + 11 +6121.284536 + 21 +10808.660548 + 31 +0.0 + 0 +LINE + 5 +1525 + 8 +0 + 62 + 0 + 10 +6105.131968 + 20 +10858.742592 + 30 +0.0 + 11 +6105.131968 + 21 +10858.742592 + 31 +0.0 + 0 +LINE + 5 +1526 + 8 +0 + 62 + 0 + 10 +6128.618799 + 20 +10883.571555 + 30 +0.0 + 11 +6128.618799 + 21 +10883.571555 + 31 +0.0 + 0 +LINE + 5 +1527 + 8 +0 + 62 + 0 + 10 +6137.052714 + 20 +10878.198559 + 30 +0.0 + 11 +6137.052714 + 21 +10878.198559 + 31 +0.0 + 0 +LINE + 5 +1528 + 8 +0 + 62 + 0 + 10 +6112.466232 + 20 +10933.6536 + 30 +0.0 + 11 +6112.466232 + 21 +10933.6536 + 31 +0.0 + 0 +LINE + 5 +1529 + 8 +0 + 62 + 0 + 10 +6120.900146 + 20 +10928.280604 + 30 +0.0 + 11 +6120.900146 + 21 +10928.280604 + 31 +0.0 + 0 +LINE + 5 +152A + 8 +0 + 62 + 0 + 10 +6104.747579 + 20 +10978.362648 + 30 +0.0 + 11 +6104.747579 + 21 +10978.362648 + 31 +0.0 + 0 +LINE + 5 +152B + 8 +0 + 62 + 0 + 10 +6135.109671 + 20 +10959.019863 + 30 +0.0 + 11 +6135.109671 + 21 +10959.019863 + 31 +0.0 + 0 +LINE + 5 +152C + 8 +0 + 62 + 0 + 10 +6118.957104 + 20 +11009.101907 + 30 +0.0 + 11 +6118.957104 + 21 +11009.101907 + 31 +0.0 + 0 +LINE + 5 +152D + 8 +0 + 62 + 0 + 10 +6126.291367 + 20 +11084.012915 + 30 +0.0 + 11 +6126.291367 + 21 +11084.012915 + 31 +0.0 + 0 +LINE + 5 +152E + 8 +0 + 62 + 0 + 10 +6134.725282 + 20 +11078.639919 + 30 +0.0 + 11 +6134.725282 + 21 +11078.639919 + 31 +0.0 + 0 +LINE + 5 +152F + 8 +0 + 62 + 0 + 10 +6118.572715 + 20 +11128.721963 + 30 +0.0 + 11 +6118.572715 + 21 +11128.721963 + 31 +0.0 + 0 +LINE + 5 +1530 + 8 +0 + 62 + 0 + 10 +6137.928526 + 20 +10081.806117 + 30 +0.0 + 11 +6137.928526 + 21 +10081.806117 + 31 +0.0 + 0 +LINE + 5 +1531 + 8 +0 + 62 + 0 + 10 +6114.441695 + 20 +10056.977154 + 30 +0.0 + 11 +6114.441695 + 21 +10056.977154 + 31 +0.0 + 0 +LINE + 5 +1532 + 8 +0 + 62 + 0 + 10 +6130.594262 + 20 +10006.895109 + 30 +0.0 + 11 +6130.594262 + 21 +10006.895109 + 31 +0.0 + 0 +LINE + 5 +1533 + 8 +0 + 62 + 0 + 10 +6107.950823 + 20 +9981.528846 + 30 +0.0 + 11 +6107.950823 + 21 +9981.528846 + 31 +0.0 + 0 +LINE + 5 +1534 + 8 +0 + 62 + 0 + 10 +6116.384737 + 20 +9976.15585 + 30 +0.0 + 11 +6116.384737 + 21 +9976.15585 + 31 +0.0 + 0 +LINE + 5 +1535 + 8 +0 + 62 + 0 + 10 +6124.10339 + 20 +9931.446802 + 30 +0.0 + 11 +6124.10339 + 21 +9931.446802 + 31 +0.0 + 0 +LINE + 5 +1536 + 8 +0 + 62 + 0 + 10 +6132.537305 + 20 +9926.073806 + 30 +0.0 + 11 +6132.537305 + 21 +9926.073806 + 31 +0.0 + 0 +LINE + 5 +1537 + 8 +0 + 62 + 0 + 10 +6140.255957 + 20 +9881.364757 + 30 +0.0 + 11 +6140.255957 + 21 +9881.364757 + 31 +0.0 + 0 +LINE + 5 +1538 + 8 +0 + 62 + 0 + 10 +6116.769127 + 20 +9856.535794 + 30 +0.0 + 11 +6116.769127 + 21 +9856.535794 + 31 +0.0 + 0 +LINE + 5 +1539 + 8 +0 + 62 + 0 + 10 +6132.921694 + 20 +9806.453749 + 30 +0.0 + 11 +6132.921694 + 21 +9806.453749 + 31 +0.0 + 0 +LINE + 5 +153A + 8 +0 + 62 + 0 + 10 +6110.278255 + 20 +9781.087487 + 30 +0.0 + 11 +6110.278255 + 21 +9781.087487 + 31 +0.0 + 0 +LINE + 5 +153B + 8 +0 + 62 + 0 + 10 +6118.712169 + 20 +9775.714491 + 30 +0.0 + 11 +6118.712169 + 21 +9775.714491 + 31 +0.0 + 0 +LINE + 5 +153C + 8 +0 + 62 + 0 + 10 +6126.430822 + 20 +9731.005442 + 30 +0.0 + 11 +6126.430822 + 21 +9731.005442 + 31 +0.0 + 0 +LINE + 5 +153D + 8 +0 + 62 + 0 + 10 +6134.864736 + 20 +9725.632446 + 30 +0.0 + 11 +6134.864736 + 21 +9725.632446 + 31 +0.0 + 0 +LINE + 5 +153E + 8 +0 + 62 + 0 + 10 +6119.096558 + 20 +9656.094434 + 30 +0.0 + 11 +6119.096558 + 21 +9656.094434 + 31 +0.0 + 0 +LINE + 5 +153F + 8 +0 + 62 + 0 + 10 +6104.887034 + 20 +9625.355176 + 30 +0.0 + 11 +6104.887034 + 21 +9625.355176 + 31 +0.0 + 0 +LINE + 5 +1540 + 8 +0 + 62 + 0 + 10 +6135.249126 + 20 +9606.01239 + 30 +0.0 + 11 +6135.249126 + 21 +9606.01239 + 31 +0.0 + 0 +LINE + 5 +1541 + 8 +0 + 62 + 0 + 10 +6112.605686 + 20 +9580.646127 + 30 +0.0 + 11 +6112.605686 + 21 +9580.646127 + 31 +0.0 + 0 +LINE + 5 +1542 + 8 +0 + 62 + 0 + 10 +6121.039601 + 20 +9575.273131 + 30 +0.0 + 11 +6121.039601 + 21 +9575.273131 + 31 +0.0 + 0 +LINE + 5 +1543 + 8 +0 + 62 + 0 + 10 +6118.199199 + 20 +10096.15836 + 30 +0.0 + 11 +6118.199199 + 21 +10096.15836 + 31 +0.0 + 0 +LINE + 5 +1544 + 8 +0 + 62 + 0 + 10 +6121.885586 + 20 +10092.780409 + 30 +0.0 + 11 +6121.885586 + 21 +10092.780409 + 31 +0.0 + 0 +LINE + 5 +1545 + 8 +0 + 62 + 0 + 10 +6139.285331 + 20 +10076.836481 + 30 +0.0 + 11 +6139.285331 + 21 +10076.836481 + 31 +0.0 + 0 +LINE + 5 +1546 + 8 +0 + 62 + 0 + 10 +6117.422623 + 20 +10169.515623 + 30 +0.0 + 11 +6117.422623 + 21 +10169.515623 + 31 +0.0 + 0 +LINE + 5 +1547 + 8 +0 + 62 + 0 + 10 +6137.329111 + 20 +10151.274687 + 30 +0.0 + 11 +6137.329111 + 21 +10151.274687 + 31 +0.0 + 0 +LINE + 5 +1548 + 8 +0 + 62 + 0 + 10 +6141.015498 + 20 +10147.896736 + 30 +0.0 + 11 +6141.015498 + 21 +10147.896736 + 31 +0.0 + 0 +LINE + 5 +1549 + 8 +0 + 62 + 0 + 10 +6115.466404 + 20 +10243.95383 + 30 +0.0 + 11 +6115.466404 + 21 +10243.95383 + 31 +0.0 + 0 +LINE + 5 +154A + 8 +0 + 62 + 0 + 10 +6119.15279 + 20 +10240.575879 + 30 +0.0 + 11 +6119.15279 + 21 +10240.575879 + 31 +0.0 + 0 +LINE + 5 +154B + 8 +0 + 62 + 0 + 10 +6136.552535 + 20 +10224.63195 + 30 +0.0 + 11 +6136.552535 + 21 +10224.63195 + 31 +0.0 + 0 +LINE + 5 +154C + 8 +0 + 62 + 0 + 10 +6114.689828 + 20 +10317.311092 + 30 +0.0 + 11 +6114.689828 + 21 +10317.311092 + 31 +0.0 + 0 +LINE + 5 +154D + 8 +0 + 62 + 0 + 10 +6134.596316 + 20 +10299.070157 + 30 +0.0 + 11 +6134.596316 + 21 +10299.070157 + 31 +0.0 + 0 +LINE + 5 +154E + 8 +0 + 62 + 0 + 10 +6138.282702 + 20 +10295.692205 + 30 +0.0 + 11 +6138.282702 + 21 +10295.692205 + 31 +0.0 + 0 +LINE + 5 +154F + 8 +0 + 62 + 0 + 10 +6112.733608 + 20 +10391.749299 + 30 +0.0 + 11 +6112.733608 + 21 +10391.749299 + 31 +0.0 + 0 +LINE + 5 +1550 + 8 +0 + 62 + 0 + 10 +6116.419995 + 20 +10388.371348 + 30 +0.0 + 11 +6116.419995 + 21 +10388.371348 + 31 +0.0 + 0 +LINE + 5 +1551 + 8 +0 + 62 + 0 + 10 +6133.81974 + 20 +10372.427419 + 30 +0.0 + 11 +6133.81974 + 21 +10372.427419 + 31 +0.0 + 0 +LINE + 5 +1552 + 8 +0 + 62 + 0 + 10 +6111.957032 + 20 +10465.106561 + 30 +0.0 + 11 +6111.957032 + 21 +10465.106561 + 31 +0.0 + 0 +LINE + 5 +1553 + 8 +0 + 62 + 0 + 10 +6131.86352 + 20 +10446.865626 + 30 +0.0 + 11 +6131.86352 + 21 +10446.865626 + 31 +0.0 + 0 +LINE + 5 +1554 + 8 +0 + 62 + 0 + 10 +6135.549907 + 20 +10443.487675 + 30 +0.0 + 11 +6135.549907 + 21 +10443.487675 + 31 +0.0 + 0 +LINE + 5 +1555 + 8 +0 + 62 + 0 + 10 +6110.000812 + 20 +10539.544768 + 30 +0.0 + 11 +6110.000812 + 21 +10539.544768 + 31 +0.0 + 0 +LINE + 5 +1556 + 8 +0 + 62 + 0 + 10 +6113.687199 + 20 +10536.166817 + 30 +0.0 + 11 +6113.687199 + 21 +10536.166817 + 31 +0.0 + 0 +LINE + 5 +1557 + 8 +0 + 62 + 0 + 10 +6131.086944 + 20 +10520.222888 + 30 +0.0 + 11 +6131.086944 + 21 +10520.222888 + 31 +0.0 + 0 +LINE + 5 +1558 + 8 +0 + 62 + 0 + 10 +6109.224236 + 20 +10612.902031 + 30 +0.0 + 11 +6109.224236 + 21 +10612.902031 + 31 +0.0 + 0 +LINE + 5 +1559 + 8 +0 + 62 + 0 + 10 +6129.130725 + 20 +10594.661095 + 30 +0.0 + 11 +6129.130725 + 21 +10594.661095 + 31 +0.0 + 0 +LINE + 5 +155A + 8 +0 + 62 + 0 + 10 +6132.817111 + 20 +10591.283144 + 30 +0.0 + 11 +6132.817111 + 21 +10591.283144 + 31 +0.0 + 0 +LINE + 5 +155B + 8 +0 + 62 + 0 + 10 +6107.268017 + 20 +10687.340237 + 30 +0.0 + 11 +6107.268017 + 21 +10687.340237 + 31 +0.0 + 0 +LINE + 5 +155C + 8 +0 + 62 + 0 + 10 +6110.954404 + 20 +10683.962286 + 30 +0.0 + 11 +6110.954404 + 21 +10683.962286 + 31 +0.0 + 0 +LINE + 5 +155D + 8 +0 + 62 + 0 + 10 +6128.354149 + 20 +10668.018357 + 30 +0.0 + 11 +6128.354149 + 21 +10668.018357 + 31 +0.0 + 0 +LINE + 5 +155E + 8 +0 + 62 + 0 + 10 +6106.491441 + 20 +10760.6975 + 30 +0.0 + 11 +6106.491441 + 21 +10760.6975 + 31 +0.0 + 0 +LINE + 5 +155F + 8 +0 + 62 + 0 + 10 +6126.397929 + 20 +10742.456564 + 30 +0.0 + 11 +6126.397929 + 21 +10742.456564 + 31 +0.0 + 0 +LINE + 5 +1560 + 8 +0 + 62 + 0 + 10 +6130.084316 + 20 +10739.078613 + 30 +0.0 + 11 +6130.084316 + 21 +10739.078613 + 31 +0.0 + 0 +LINE + 5 +1561 + 8 +0 + 62 + 0 + 10 +6104.535221 + 20 +10835.135707 + 30 +0.0 + 11 +6104.535221 + 21 +10835.135707 + 31 +0.0 + 0 +LINE + 5 +1562 + 8 +0 + 62 + 0 + 10 +6108.221608 + 20 +10831.757756 + 30 +0.0 + 11 +6108.221608 + 21 +10831.757756 + 31 +0.0 + 0 +LINE + 5 +1563 + 8 +0 + 62 + 0 + 10 +6125.621353 + 20 +10815.813827 + 30 +0.0 + 11 +6125.621353 + 21 +10815.813827 + 31 +0.0 + 0 +LINE + 5 +1564 + 8 +0 + 62 + 0 + 10 +6103.758645 + 20 +10908.492969 + 30 +0.0 + 11 +6103.758645 + 21 +10908.492969 + 31 +0.0 + 0 +LINE + 5 +1565 + 8 +0 + 62 + 0 + 10 +6123.665133 + 20 +10890.252033 + 30 +0.0 + 11 +6123.665133 + 21 +10890.252033 + 31 +0.0 + 0 +LINE + 5 +1566 + 8 +0 + 62 + 0 + 10 +6127.35152 + 20 +10886.874082 + 30 +0.0 + 11 +6127.35152 + 21 +10886.874082 + 31 +0.0 + 0 +LINE + 5 +1567 + 8 +0 + 62 + 0 + 10 +6105.488812 + 20 +10979.553225 + 30 +0.0 + 11 +6105.488812 + 21 +10979.553225 + 31 +0.0 + 0 +LINE + 5 +1568 + 8 +0 + 62 + 0 + 10 +6122.888557 + 20 +10963.609296 + 30 +0.0 + 11 +6122.888557 + 21 +10963.609296 + 31 +0.0 + 0 +LINE + 5 +1569 + 8 +0 + 62 + 0 + 10 +6120.932338 + 20 +11038.047503 + 30 +0.0 + 11 +6120.932338 + 21 +11038.047503 + 31 +0.0 + 0 +LINE + 5 +156A + 8 +0 + 62 + 0 + 10 +6124.618724 + 20 +11034.669552 + 30 +0.0 + 11 +6124.618724 + 21 +11034.669552 + 31 +0.0 + 0 +LINE + 5 +156B + 8 +0 + 62 + 0 + 10 +6120.155762 + 20 +11111.404765 + 30 +0.0 + 11 +6120.155762 + 21 +11111.404765 + 31 +0.0 + 0 +LINE + 5 +156C + 8 +0 + 62 + 0 + 10 +6140.06225 + 20 +11093.163829 + 30 +0.0 + 11 +6140.06225 + 21 +11093.163829 + 31 +0.0 + 0 +LINE + 5 +156D + 8 +0 + 62 + 0 + 10 +6120.155419 + 20 +10021.720154 + 30 +0.0 + 11 +6120.155419 + 21 +10021.720154 + 31 +0.0 + 0 +LINE + 5 +156E + 8 +0 + 62 + 0 + 10 +6140.061907 + 20 +10003.479218 + 30 +0.0 + 11 +6140.061907 + 21 +10003.479218 + 31 +0.0 + 0 +LINE + 5 +156F + 8 +0 + 62 + 0 + 10 +6120.931995 + 20 +9948.362891 + 30 +0.0 + 11 +6120.931995 + 21 +9948.362891 + 31 +0.0 + 0 +LINE + 5 +1570 + 8 +0 + 62 + 0 + 10 +6124.618381 + 20 +9944.98494 + 30 +0.0 + 11 +6124.618381 + 21 +9944.98494 + 31 +0.0 + 0 +LINE + 5 +1571 + 8 +0 + 62 + 0 + 10 +6105.488469 + 20 +9889.868613 + 30 +0.0 + 11 +6105.488469 + 21 +9889.868613 + 31 +0.0 + 0 +LINE + 5 +1572 + 8 +0 + 62 + 0 + 10 +6122.888214 + 20 +9873.924684 + 30 +0.0 + 11 +6122.888214 + 21 +9873.924684 + 31 +0.0 + 0 +LINE + 5 +1573 + 8 +0 + 62 + 0 + 10 +6103.758302 + 20 +9818.808358 + 30 +0.0 + 11 +6103.758302 + 21 +9818.808358 + 31 +0.0 + 0 +LINE + 5 +1574 + 8 +0 + 62 + 0 + 10 +6123.66479 + 20 +9800.567422 + 30 +0.0 + 11 +6123.66479 + 21 +9800.567422 + 31 +0.0 + 0 +LINE + 5 +1575 + 8 +0 + 62 + 0 + 10 +6127.351177 + 20 +9797.189471 + 30 +0.0 + 11 +6127.351177 + 21 +9797.189471 + 31 +0.0 + 0 +LINE + 5 +1576 + 8 +0 + 62 + 0 + 10 +6104.534878 + 20 +9745.451095 + 30 +0.0 + 11 +6104.534878 + 21 +9745.451095 + 31 +0.0 + 0 +LINE + 5 +1577 + 8 +0 + 62 + 0 + 10 +6108.221265 + 20 +9742.073144 + 30 +0.0 + 11 +6108.221265 + 21 +9742.073144 + 31 +0.0 + 0 +LINE + 5 +1578 + 8 +0 + 62 + 0 + 10 +6125.62101 + 20 +9726.129215 + 30 +0.0 + 11 +6125.62101 + 21 +9726.129215 + 31 +0.0 + 0 +LINE + 5 +1579 + 8 +0 + 62 + 0 + 10 +6106.491098 + 20 +9671.012888 + 30 +0.0 + 11 +6106.491098 + 21 +9671.012888 + 31 +0.0 + 0 +LINE + 5 +157A + 8 +0 + 62 + 0 + 10 +6126.397586 + 20 +9652.771953 + 30 +0.0 + 11 +6126.397586 + 21 +9652.771953 + 31 +0.0 + 0 +LINE + 5 +157B + 8 +0 + 62 + 0 + 10 +6130.083973 + 20 +9649.394002 + 30 +0.0 + 11 +6130.083973 + 21 +9649.394002 + 31 +0.0 + 0 +LINE + 5 +157C + 8 +0 + 62 + 0 + 10 +6107.267674 + 20 +9597.655626 + 30 +0.0 + 11 +6107.267674 + 21 +9597.655626 + 31 +0.0 + 0 +LINE + 5 +157D + 8 +0 + 62 + 0 + 10 +6110.954061 + 20 +9594.277675 + 30 +0.0 + 11 +6110.954061 + 21 +9594.277675 + 31 +0.0 + 0 +LINE + 5 +157E + 8 +0 + 62 + 0 + 10 +6128.353806 + 20 +9578.333746 + 30 +0.0 + 11 +6128.353806 + 21 +9578.333746 + 31 +0.0 + 0 +LINE + 5 +157F + 8 +0 + 62 + 0 + 10 +7058.913332 + 20 +10192.288781 + 30 +0.0 + 11 +7058.913332 + 21 +10192.288781 + 31 +0.0 + 0 +LINE + 5 +1580 + 8 +0 + 62 + 0 + 10 +7083.031274 + 20 +10210.795128 + 30 +0.0 + 11 +7083.031274 + 21 +10210.795128 + 31 +0.0 + 0 +LINE + 5 +1581 + 8 +0 + 62 + 0 + 10 +7057.653465 + 20 +10230.825256 + 30 +0.0 + 11 +7057.653465 + 21 +10230.825256 + 31 +0.0 + 0 +LINE + 5 +1582 + 8 +0 + 62 + 0 + 10 +7081.771407 + 20 +10249.331604 + 30 +0.0 + 11 +7081.771407 + 21 +10249.331604 + 31 +0.0 + 0 +LINE + 5 +1583 + 8 +0 + 62 + 0 + 10 +7056.393598 + 20 +10269.361732 + 30 +0.0 + 11 +7056.393598 + 21 +10269.361732 + 31 +0.0 + 0 +LINE + 5 +1584 + 8 +0 + 62 + 0 + 10 +7080.51154 + 20 +10287.868079 + 30 +0.0 + 11 +7080.51154 + 21 +10287.868079 + 31 +0.0 + 0 +LINE + 5 +1585 + 8 +0 + 62 + 0 + 10 +7079.251672 + 20 +10326.404554 + 30 +0.0 + 11 +7079.251672 + 21 +10326.404554 + 31 +0.0 + 0 +LINE + 5 +1586 + 8 +0 + 62 + 0 + 10 +7077.991805 + 20 +10364.94103 + 30 +0.0 + 11 +7077.991805 + 21 +10364.94103 + 31 +0.0 + 0 +LINE + 5 +1587 + 8 +0 + 62 + 0 + 10 +7076.731938 + 20 +10403.477505 + 30 +0.0 + 11 +7076.731938 + 21 +10403.477505 + 31 +0.0 + 0 +LINE + 5 +1588 + 8 +0 + 62 + 0 + 10 +7075.472071 + 20 +10442.013981 + 30 +0.0 + 11 +7075.472071 + 21 +10442.013981 + 31 +0.0 + 0 +LINE + 5 +1589 + 8 +0 + 62 + 0 + 10 +7074.212204 + 20 +10480.550456 + 30 +0.0 + 11 +7074.212204 + 21 +10480.550456 + 31 +0.0 + 0 +LINE + 5 +158A + 8 +0 + 62 + 0 + 10 +7072.952337 + 20 +10519.086931 + 30 +0.0 + 11 +7072.952337 + 21 +10519.086931 + 31 +0.0 + 0 +LINE + 5 +158B + 8 +0 + 62 + 0 + 10 +7071.692469 + 20 +10557.623407 + 30 +0.0 + 11 +7071.692469 + 21 +10557.623407 + 31 +0.0 + 0 +LINE + 5 +158C + 8 +0 + 62 + 0 + 10 +7070.432602 + 20 +10596.159882 + 30 +0.0 + 11 +7070.432602 + 21 +10596.159882 + 31 +0.0 + 0 +LINE + 5 +158D + 8 +0 + 62 + 0 + 10 +7069.172735 + 20 +10634.696358 + 30 +0.0 + 11 +7069.172735 + 21 +10634.696358 + 31 +0.0 + 0 +LINE + 5 +158E + 8 +0 + 62 + 0 + 10 +7067.912868 + 20 +10673.232833 + 30 +0.0 + 11 +7067.912868 + 21 +10673.232833 + 31 +0.0 + 0 +LINE + 5 +158F + 8 +0 + 62 + 0 + 10 +7066.653001 + 20 +10711.769308 + 30 +0.0 + 11 +7066.653001 + 21 +10711.769308 + 31 +0.0 + 0 +LINE + 5 +1590 + 8 +0 + 62 + 0 + 10 +7093.627014 + 20 +10732.467197 + 30 +0.0 + 11 +7093.627014 + 21 +10732.467197 + 31 +0.0 + 0 +LINE + 5 +1591 + 8 +0 + 62 + 0 + 10 +7065.393134 + 20 +10750.305784 + 30 +0.0 + 11 +7065.393134 + 21 +10750.305784 + 31 +0.0 + 0 +LINE + 5 +1592 + 8 +0 + 62 + 0 + 10 +7092.367147 + 20 +10771.003672 + 30 +0.0 + 11 +7092.367147 + 21 +10771.003672 + 31 +0.0 + 0 +LINE + 5 +1593 + 8 +0 + 62 + 0 + 10 +7064.133266 + 20 +10788.842259 + 30 +0.0 + 11 +7064.133266 + 21 +10788.842259 + 31 +0.0 + 0 +LINE + 5 +1594 + 8 +0 + 62 + 0 + 10 +7091.10728 + 20 +10809.540148 + 30 +0.0 + 11 +7091.10728 + 21 +10809.540148 + 31 +0.0 + 0 +LINE + 5 +1595 + 8 +0 + 62 + 0 + 10 +7062.873399 + 20 +10827.378734 + 30 +0.0 + 11 +7062.873399 + 21 +10827.378734 + 31 +0.0 + 0 +LINE + 5 +1596 + 8 +0 + 62 + 0 + 10 +7089.847413 + 20 +10848.076623 + 30 +0.0 + 11 +7089.847413 + 21 +10848.076623 + 31 +0.0 + 0 +LINE + 5 +1597 + 8 +0 + 62 + 0 + 10 +7061.613532 + 20 +10865.91521 + 30 +0.0 + 11 +7061.613532 + 21 +10865.91521 + 31 +0.0 + 0 +LINE + 5 +1598 + 8 +0 + 62 + 0 + 10 +7088.587546 + 20 +10886.613098 + 30 +0.0 + 11 +7088.587546 + 21 +10886.613098 + 31 +0.0 + 0 +LINE + 5 +1599 + 8 +0 + 62 + 0 + 10 +7060.353665 + 20 +10904.451685 + 30 +0.0 + 11 +7060.353665 + 21 +10904.451685 + 31 +0.0 + 0 +LINE + 5 +159A + 8 +0 + 62 + 0 + 10 +7087.327678 + 20 +10925.149574 + 30 +0.0 + 11 +7087.327678 + 21 +10925.149574 + 31 +0.0 + 0 +LINE + 5 +159B + 8 +0 + 62 + 0 + 10 +7059.093798 + 20 +10942.988161 + 30 +0.0 + 11 +7059.093798 + 21 +10942.988161 + 31 +0.0 + 0 +LINE + 5 +159C + 8 +0 + 62 + 0 + 10 +7086.067811 + 20 +10963.686049 + 30 +0.0 + 11 +7086.067811 + 21 +10963.686049 + 31 +0.0 + 0 +LINE + 5 +159D + 8 +0 + 62 + 0 + 10 +7057.833931 + 20 +10981.524636 + 30 +0.0 + 11 +7057.833931 + 21 +10981.524636 + 31 +0.0 + 0 +LINE + 5 +159E + 8 +0 + 62 + 0 + 10 +7084.807944 + 20 +11002.222525 + 30 +0.0 + 11 +7084.807944 + 21 +11002.222525 + 31 +0.0 + 0 +LINE + 5 +159F + 8 +0 + 62 + 0 + 10 +7056.574063 + 20 +11020.061111 + 30 +0.0 + 11 +7056.574063 + 21 +11020.061111 + 31 +0.0 + 0 +LINE + 5 +15A0 + 8 +0 + 62 + 0 + 10 +7083.548077 + 20 +11040.759 + 30 +0.0 + 11 +7083.548077 + 21 +11040.759 + 31 +0.0 + 0 +LINE + 5 +15A1 + 8 +0 + 62 + 0 + 10 +7082.28821 + 20 +11079.295475 + 30 +0.0 + 11 +7082.28821 + 21 +11079.295475 + 31 +0.0 + 0 +LINE + 5 +15A2 + 8 +0 + 62 + 0 + 10 +7081.028343 + 20 +11117.831951 + 30 +0.0 + 11 +7081.028343 + 21 +11117.831951 + 31 +0.0 + 0 +LINE + 5 +15A3 + 8 +0 + 62 + 0 + 10 +7079.768476 + 20 +11156.368426 + 30 +0.0 + 11 +7079.768476 + 21 +11156.368426 + 31 +0.0 + 0 +LINE + 5 +15A4 + 8 +0 + 62 + 0 + 10 +7078.508608 + 20 +11194.904901 + 30 +0.0 + 11 +7078.508608 + 21 +11194.904901 + 31 +0.0 + 0 +LINE + 5 +15A5 + 8 +0 + 62 + 0 + 10 +7060.173199 + 20 +10153.752306 + 30 +0.0 + 11 +7060.173199 + 21 +10153.752306 + 31 +0.0 + 0 +LINE + 5 +15A6 + 8 +0 + 62 + 0 + 10 +7084.291141 + 20 +10172.258653 + 30 +0.0 + 11 +7084.291141 + 21 +10172.258653 + 31 +0.0 + 0 +LINE + 5 +15A7 + 8 +0 + 62 + 0 + 10 +7061.433067 + 20 +10115.21583 + 30 +0.0 + 11 +7061.433067 + 21 +10115.21583 + 31 +0.0 + 0 +LINE + 5 +15A8 + 8 +0 + 62 + 0 + 10 +7085.551008 + 20 +10133.722178 + 30 +0.0 + 11 +7085.551008 + 21 +10133.722178 + 31 +0.0 + 0 +LINE + 5 +15A9 + 8 +0 + 62 + 0 + 10 +7062.692934 + 20 +10076.679355 + 30 +0.0 + 11 +7062.692934 + 21 +10076.679355 + 31 +0.0 + 0 +LINE + 5 +15AA + 8 +0 + 62 + 0 + 10 +7086.810875 + 20 +10095.185702 + 30 +0.0 + 11 +7086.810875 + 21 +10095.185702 + 31 +0.0 + 0 +LINE + 5 +15AB + 8 +0 + 62 + 0 + 10 +7063.952801 + 20 +10038.142879 + 30 +0.0 + 11 +7063.952801 + 21 +10038.142879 + 31 +0.0 + 0 +LINE + 5 +15AC + 8 +0 + 62 + 0 + 10 +7088.070742 + 20 +10056.649227 + 30 +0.0 + 11 +7088.070742 + 21 +10056.649227 + 31 +0.0 + 0 +LINE + 5 +15AD + 8 +0 + 62 + 0 + 10 +7065.212668 + 20 +9999.606404 + 30 +0.0 + 11 +7065.212668 + 21 +9999.606404 + 31 +0.0 + 0 +LINE + 5 +15AE + 8 +0 + 62 + 0 + 10 +7089.33061 + 20 +10018.112751 + 30 +0.0 + 11 +7089.33061 + 21 +10018.112751 + 31 +0.0 + 0 +LINE + 5 +15AF + 8 +0 + 62 + 0 + 10 +7066.472535 + 20 +9961.069929 + 30 +0.0 + 11 +7066.472535 + 21 +9961.069929 + 31 +0.0 + 0 +LINE + 5 +15B0 + 8 +0 + 62 + 0 + 10 +7090.590477 + 20 +9979.576276 + 30 +0.0 + 11 +7090.590477 + 21 +9979.576276 + 31 +0.0 + 0 +LINE + 5 +15B1 + 8 +0 + 62 + 0 + 10 +7067.732402 + 20 +9922.533453 + 30 +0.0 + 11 +7067.732402 + 21 +9922.533453 + 31 +0.0 + 0 +LINE + 5 +15B2 + 8 +0 + 62 + 0 + 10 +7091.850344 + 20 +9941.039801 + 30 +0.0 + 11 +7091.850344 + 21 +9941.039801 + 31 +0.0 + 0 +LINE + 5 +15B3 + 8 +0 + 62 + 0 + 10 +7068.99227 + 20 +9883.996978 + 30 +0.0 + 11 +7068.99227 + 21 +9883.996978 + 31 +0.0 + 0 +LINE + 5 +15B4 + 8 +0 + 62 + 0 + 10 +7093.110211 + 20 +9902.503325 + 30 +0.0 + 11 +7093.110211 + 21 +9902.503325 + 31 +0.0 + 0 +LINE + 5 +15B5 + 8 +0 + 62 + 0 + 10 +7070.252137 + 20 +9845.460502 + 30 +0.0 + 11 +7070.252137 + 21 +9845.460502 + 31 +0.0 + 0 +LINE + 5 +15B6 + 8 +0 + 62 + 0 + 10 +7071.512004 + 20 +9806.924027 + 30 +0.0 + 11 +7071.512004 + 21 +9806.924027 + 31 +0.0 + 0 +LINE + 5 +15B7 + 8 +0 + 62 + 0 + 10 +7072.771871 + 20 +9768.387552 + 30 +0.0 + 11 +7072.771871 + 21 +9768.387552 + 31 +0.0 + 0 +LINE + 5 +15B8 + 8 +0 + 62 + 0 + 10 +7074.031738 + 20 +9729.851076 + 30 +0.0 + 11 +7074.031738 + 21 +9729.851076 + 31 +0.0 + 0 +LINE + 5 +15B9 + 8 +0 + 62 + 0 + 10 +7075.291605 + 20 +9691.314601 + 30 +0.0 + 11 +7075.291605 + 21 +9691.314601 + 31 +0.0 + 0 +LINE + 5 +15BA + 8 +0 + 62 + 0 + 10 +7076.551473 + 20 +9652.778126 + 30 +0.0 + 11 +7076.551473 + 21 +9652.778126 + 31 +0.0 + 0 +LINE + 5 +15BB + 8 +0 + 62 + 0 + 10 +7077.81134 + 20 +9614.24165 + 30 +0.0 + 11 +7077.81134 + 21 +9614.24165 + 31 +0.0 + 0 +LINE + 5 +15BC + 8 +0 + 62 + 0 + 10 +7079.071207 + 20 +9575.705175 + 30 +0.0 + 11 +7079.071207 + 21 +9575.705175 + 31 +0.0 + 0 +LINE + 5 +15BD + 8 +0 + 62 + 0 + 10 +7080.331074 + 20 +9537.168699 + 30 +0.0 + 11 +7080.331074 + 21 +9537.168699 + 31 +0.0 + 0 +LINE + 5 +15BE + 8 +0 + 62 + 0 + 10 +7068.541046 + 20 +10218.807581 + 30 +0.0 + 11 +7068.541046 + 21 +10218.807581 + 31 +0.0 + 0 +LINE + 5 +15BF + 8 +0 + 62 + 0 + 10 +7078.951217 + 20 +10220.178106 + 30 +0.0 + 11 +7078.951217 + 21 +10220.178106 + 31 +0.0 + 0 +LINE + 5 +15C0 + 8 +0 + 62 + 0 + 10 +7060.511295 + 20 +10269.533455 + 30 +0.0 + 11 +7060.511295 + 21 +10269.533455 + 31 +0.0 + 0 +LINE + 5 +15C1 + 8 +0 + 62 + 0 + 10 +7076.77099 + 20 +10271.674084 + 30 +0.0 + 11 +7076.77099 + 21 +10271.674084 + 31 +0.0 + 0 +LINE + 5 +15C2 + 8 +0 + 62 + 0 + 10 +7058.331069 + 20 +10321.029434 + 30 +0.0 + 11 +7058.331069 + 21 +10321.029434 + 31 +0.0 + 0 +LINE + 5 +15C3 + 8 +0 + 62 + 0 + 10 +7085.496658 + 20 +10324.605851 + 30 +0.0 + 11 +7085.496658 + 21 +10324.605851 + 31 +0.0 + 0 +LINE + 5 +15C4 + 8 +0 + 62 + 0 + 10 +7067.056736 + 20 +10373.9612 + 30 +0.0 + 11 +7067.056736 + 21 +10373.9612 + 31 +0.0 + 0 +LINE + 5 +15C5 + 8 +0 + 62 + 0 + 10 +7077.466907 + 20 +10375.331725 + 30 +0.0 + 11 +7077.466907 + 21 +10375.331725 + 31 +0.0 + 0 +LINE + 5 +15C6 + 8 +0 + 62 + 0 + 10 +7059.026985 + 20 +10424.687074 + 30 +0.0 + 11 +7059.026985 + 21 +10424.687074 + 31 +0.0 + 0 +LINE + 5 +15C7 + 8 +0 + 62 + 0 + 10 +7075.286681 + 20 +10426.827704 + 30 +0.0 + 11 +7075.286681 + 21 +10426.827704 + 31 +0.0 + 0 +LINE + 5 +15C8 + 8 +0 + 62 + 0 + 10 +7056.846759 + 20 +10476.183053 + 30 +0.0 + 11 +7056.846759 + 21 +10476.183053 + 31 +0.0 + 0 +LINE + 5 +15C9 + 8 +0 + 62 + 0 + 10 +7084.012348 + 20 +10479.759471 + 30 +0.0 + 11 +7084.012348 + 21 +10479.759471 + 31 +0.0 + 0 +LINE + 5 +15CA + 8 +0 + 62 + 0 + 10 +7065.572426 + 20 +10529.11482 + 30 +0.0 + 11 +7065.572426 + 21 +10529.11482 + 31 +0.0 + 0 +LINE + 5 +15CB + 8 +0 + 62 + 0 + 10 +7075.982597 + 20 +10530.485345 + 30 +0.0 + 11 +7075.982597 + 21 +10530.485345 + 31 +0.0 + 0 +LINE + 5 +15CC + 8 +0 + 62 + 0 + 10 +7092.242293 + 20 +10532.625974 + 30 +0.0 + 11 +7092.242293 + 21 +10532.625974 + 31 +0.0 + 0 +LINE + 5 +15CD + 8 +0 + 62 + 0 + 10 +7057.542675 + 20 +10579.840694 + 30 +0.0 + 11 +7057.542675 + 21 +10579.840694 + 31 +0.0 + 0 +LINE + 5 +15CE + 8 +0 + 62 + 0 + 10 +7073.802371 + 20 +10581.981323 + 30 +0.0 + 11 +7073.802371 + 21 +10581.981323 + 31 +0.0 + 0 +LINE + 5 +15CF + 8 +0 + 62 + 0 + 10 +7082.528039 + 20 +10634.91309 + 30 +0.0 + 11 +7082.528039 + 21 +10634.91309 + 31 +0.0 + 0 +LINE + 5 +15D0 + 8 +0 + 62 + 0 + 10 +7092.93821 + 20 +10636.283615 + 30 +0.0 + 11 +7092.93821 + 21 +10636.283615 + 31 +0.0 + 0 +LINE + 5 +15D1 + 8 +0 + 62 + 0 + 10 +7064.088117 + 20 +10684.268439 + 30 +0.0 + 11 +7064.088117 + 21 +10684.268439 + 31 +0.0 + 0 +LINE + 5 +15D2 + 8 +0 + 62 + 0 + 10 +7074.498288 + 20 +10685.638964 + 30 +0.0 + 11 +7074.498288 + 21 +10685.638964 + 31 +0.0 + 0 +LINE + 5 +15D3 + 8 +0 + 62 + 0 + 10 +7090.757983 + 20 +10687.779594 + 30 +0.0 + 11 +7090.757983 + 21 +10687.779594 + 31 +0.0 + 0 +LINE + 5 +15D4 + 8 +0 + 62 + 0 + 10 +7072.318062 + 20 +10737.134943 + 30 +0.0 + 11 +7072.318062 + 21 +10737.134943 + 31 +0.0 + 0 +LINE + 5 +15D5 + 8 +0 + 62 + 0 + 10 +7081.043729 + 20 +10790.06671 + 30 +0.0 + 11 +7081.043729 + 21 +10790.06671 + 31 +0.0 + 0 +LINE + 5 +15D6 + 8 +0 + 62 + 0 + 10 +7091.4539 + 20 +10791.437235 + 30 +0.0 + 11 +7091.4539 + 21 +10791.437235 + 31 +0.0 + 0 +LINE + 5 +15D7 + 8 +0 + 62 + 0 + 10 +7062.603807 + 20 +10839.422059 + 30 +0.0 + 11 +7062.603807 + 21 +10839.422059 + 31 +0.0 + 0 +LINE + 5 +15D8 + 8 +0 + 62 + 0 + 10 +7073.013978 + 20 +10840.792584 + 30 +0.0 + 11 +7073.013978 + 21 +10840.792584 + 31 +0.0 + 0 +LINE + 5 +15D9 + 8 +0 + 62 + 0 + 10 +7089.273674 + 20 +10842.933213 + 30 +0.0 + 11 +7089.273674 + 21 +10842.933213 + 31 +0.0 + 0 +LINE + 5 +15DA + 8 +0 + 62 + 0 + 10 +7070.833752 + 20 +10892.288562 + 30 +0.0 + 11 +7070.833752 + 21 +10892.288562 + 31 +0.0 + 0 +LINE + 5 +15DB + 8 +0 + 62 + 0 + 10 +7079.559419 + 20 +10945.220329 + 30 +0.0 + 11 +7079.559419 + 21 +10945.220329 + 31 +0.0 + 0 +LINE + 5 +15DC + 8 +0 + 62 + 0 + 10 +7089.96959 + 20 +10946.590854 + 30 +0.0 + 11 +7089.96959 + 21 +10946.590854 + 31 +0.0 + 0 +LINE + 5 +15DD + 8 +0 + 62 + 0 + 10 +7061.119497 + 20 +10994.575678 + 30 +0.0 + 11 +7061.119497 + 21 +10994.575678 + 31 +0.0 + 0 +LINE + 5 +15DE + 8 +0 + 62 + 0 + 10 +7071.529668 + 20 +10995.946203 + 30 +0.0 + 11 +7071.529668 + 21 +10995.946203 + 31 +0.0 + 0 +LINE + 5 +15DF + 8 +0 + 62 + 0 + 10 +7087.789364 + 20 +10998.086833 + 30 +0.0 + 11 +7087.789364 + 21 +10998.086833 + 31 +0.0 + 0 +LINE + 5 +15E0 + 8 +0 + 62 + 0 + 10 +7069.349442 + 20 +11047.442182 + 30 +0.0 + 11 +7069.349442 + 21 +11047.442182 + 31 +0.0 + 0 +LINE + 5 +15E1 + 8 +0 + 62 + 0 + 10 +7078.07511 + 20 +11100.373948 + 30 +0.0 + 11 +7078.07511 + 21 +11100.373948 + 31 +0.0 + 0 +LINE + 5 +15E2 + 8 +0 + 62 + 0 + 10 +7088.485281 + 20 +11101.744473 + 30 +0.0 + 11 +7088.485281 + 21 +11101.744473 + 31 +0.0 + 0 +LINE + 5 +15E3 + 8 +0 + 62 + 0 + 10 +7059.635188 + 20 +11149.729297 + 30 +0.0 + 11 +7059.635188 + 21 +11149.729297 + 31 +0.0 + 0 +LINE + 5 +15E4 + 8 +0 + 62 + 0 + 10 +7070.045359 + 20 +11151.099822 + 30 +0.0 + 11 +7070.045359 + 21 +11151.099822 + 31 +0.0 + 0 +LINE + 5 +15E5 + 8 +0 + 62 + 0 + 10 +7086.305055 + 20 +11153.240452 + 30 +0.0 + 11 +7086.305055 + 21 +11153.240452 + 31 +0.0 + 0 +LINE + 5 +15E6 + 8 +0 + 62 + 0 + 10 +7067.865133 + 20 +11202.595801 + 30 +0.0 + 11 +7067.865133 + 21 +11202.595801 + 31 +0.0 + 0 +LINE + 5 +15E7 + 8 +0 + 62 + 0 + 10 +7059.815378 + 20 +10165.875814 + 30 +0.0 + 11 +7059.815378 + 21 +10165.875814 + 31 +0.0 + 0 +LINE + 5 +15E8 + 8 +0 + 62 + 0 + 10 +7086.980967 + 20 +10169.452232 + 30 +0.0 + 11 +7086.980967 + 21 +10169.452232 + 31 +0.0 + 0 +LINE + 5 +15E9 + 8 +0 + 62 + 0 + 10 +7061.995604 + 20 +10114.379835 + 30 +0.0 + 11 +7061.995604 + 21 +10114.379835 + 31 +0.0 + 0 +LINE + 5 +15EA + 8 +0 + 62 + 0 + 10 +7078.2553 + 20 +10116.520465 + 30 +0.0 + 11 +7078.2553 + 21 +10116.520465 + 31 +0.0 + 0 +LINE + 5 +15EB + 8 +0 + 62 + 0 + 10 +7070.025355 + 20 +10063.653961 + 30 +0.0 + 11 +7070.025355 + 21 +10063.653961 + 31 +0.0 + 0 +LINE + 5 +15EC + 8 +0 + 62 + 0 + 10 +7080.435526 + 20 +10065.024486 + 30 +0.0 + 11 +7080.435526 + 21 +10065.024486 + 31 +0.0 + 0 +LINE + 5 +15ED + 8 +0 + 62 + 0 + 10 +7061.299688 + 20 +10010.722195 + 30 +0.0 + 11 +7061.299688 + 21 +10010.722195 + 31 +0.0 + 0 +LINE + 5 +15EE + 8 +0 + 62 + 0 + 10 +7088.465277 + 20 +10014.298612 + 30 +0.0 + 11 +7088.465277 + 21 +10014.298612 + 31 +0.0 + 0 +LINE + 5 +15EF + 8 +0 + 62 + 0 + 10 +7063.479914 + 20 +9959.226216 + 30 +0.0 + 11 +7063.479914 + 21 +9959.226216 + 31 +0.0 + 0 +LINE + 5 +15F0 + 8 +0 + 62 + 0 + 10 +7079.73961 + 20 +9961.366846 + 30 +0.0 + 11 +7079.73961 + 21 +9961.366846 + 31 +0.0 + 0 +LINE + 5 +15F1 + 8 +0 + 62 + 0 + 10 +7071.509665 + 20 +9908.500342 + 30 +0.0 + 11 +7071.509665 + 21 +9908.500342 + 31 +0.0 + 0 +LINE + 5 +15F2 + 8 +0 + 62 + 0 + 10 +7081.919836 + 20 +9909.870867 + 30 +0.0 + 11 +7081.919836 + 21 +9909.870867 + 31 +0.0 + 0 +LINE + 5 +15F3 + 8 +0 + 62 + 0 + 10 +7062.783997 + 20 +9855.568575 + 30 +0.0 + 11 +7062.783997 + 21 +9855.568575 + 31 +0.0 + 0 +LINE + 5 +15F4 + 8 +0 + 62 + 0 + 10 +7089.949587 + 20 +9859.144993 + 30 +0.0 + 11 +7089.949587 + 21 +9859.144993 + 31 +0.0 + 0 +LINE + 5 +15F5 + 8 +0 + 62 + 0 + 10 +7064.964224 + 20 +9804.072597 + 30 +0.0 + 11 +7064.964224 + 21 +9804.072597 + 31 +0.0 + 0 +LINE + 5 +15F6 + 8 +0 + 62 + 0 + 10 +7081.223919 + 20 +9806.213226 + 30 +0.0 + 11 +7081.223919 + 21 +9806.213226 + 31 +0.0 + 0 +LINE + 5 +15F7 + 8 +0 + 62 + 0 + 10 +7072.993974 + 20 +9753.346723 + 30 +0.0 + 11 +7072.993974 + 21 +9753.346723 + 31 +0.0 + 0 +LINE + 5 +15F8 + 8 +0 + 62 + 0 + 10 +7083.404145 + 20 +9754.717248 + 30 +0.0 + 11 +7083.404145 + 21 +9754.717248 + 31 +0.0 + 0 +LINE + 5 +15F9 + 8 +0 + 62 + 0 + 10 +7064.268307 + 20 +9700.414956 + 30 +0.0 + 11 +7064.268307 + 21 +9700.414956 + 31 +0.0 + 0 +LINE + 5 +15FA + 8 +0 + 62 + 0 + 10 +7091.433896 + 20 +9703.991373 + 30 +0.0 + 11 +7091.433896 + 21 +9703.991373 + 31 +0.0 + 0 +LINE + 5 +15FB + 8 +0 + 62 + 0 + 10 +7066.448533 + 20 +9648.918977 + 30 +0.0 + 11 +7066.448533 + 21 +9648.918977 + 31 +0.0 + 0 +LINE + 5 +15FC + 8 +0 + 62 + 0 + 10 +7082.708229 + 20 +9651.059607 + 30 +0.0 + 11 +7082.708229 + 21 +9651.059607 + 31 +0.0 + 0 +LINE + 5 +15FD + 8 +0 + 62 + 0 + 10 +7074.478284 + 20 +9598.193103 + 30 +0.0 + 11 +7074.478284 + 21 +9598.193103 + 31 +0.0 + 0 +LINE + 5 +15FE + 8 +0 + 62 + 0 + 10 +7084.888455 + 20 +9599.563628 + 30 +0.0 + 11 +7084.888455 + 21 +9599.563628 + 31 +0.0 + 0 +LINE + 5 +15FF + 8 +0 + 62 + 0 + 10 +7065.752617 + 20 +9545.261336 + 30 +0.0 + 11 +7065.752617 + 21 +9545.261336 + 31 +0.0 + 0 +LINE + 5 +1600 + 8 +0 + 62 + 0 + 10 +7092.918206 + 20 +9548.837754 + 30 +0.0 + 11 +7092.918206 + 21 +9548.837754 + 31 +0.0 + 0 +LINE + 5 +1601 + 8 +0 + 62 + 0 + 10 +7062.509389 + 20 +10209.034185 + 30 +0.0 + 11 +7062.509389 + 21 +10209.034185 + 31 +0.0 + 0 +LINE + 5 +1602 + 8 +0 + 62 + 0 + 10 +7085.99622 + 20 +10233.863148 + 30 +0.0 + 11 +7085.99622 + 21 +10233.863148 + 31 +0.0 + 0 +LINE + 5 +1603 + 8 +0 + 62 + 0 + 10 +7069.843653 + 20 +10283.945192 + 30 +0.0 + 11 +7069.843653 + 21 +10283.945192 + 31 +0.0 + 0 +LINE + 5 +1604 + 8 +0 + 62 + 0 + 10 +7078.277567 + 20 +10278.572196 + 30 +0.0 + 11 +7078.277567 + 21 +10278.572196 + 31 +0.0 + 0 +LINE + 5 +1605 + 8 +0 + 62 + 0 + 10 +7062.125 + 20 +10328.654241 + 30 +0.0 + 11 +7062.125 + 21 +10328.654241 + 31 +0.0 + 0 +LINE + 5 +1606 + 8 +0 + 62 + 0 + 10 +7092.487092 + 20 +10309.311455 + 30 +0.0 + 11 +7092.487092 + 21 +10309.311455 + 31 +0.0 + 0 +LINE + 5 +1607 + 8 +0 + 62 + 0 + 10 +7076.334525 + 20 +10359.3935 + 30 +0.0 + 11 +7076.334525 + 21 +10359.3935 + 31 +0.0 + 0 +LINE + 5 +1608 + 8 +0 + 62 + 0 + 10 +7060.181957 + 20 +10409.475544 + 30 +0.0 + 11 +7060.181957 + 21 +10409.475544 + 31 +0.0 + 0 +LINE + 5 +1609 + 8 +0 + 62 + 0 + 10 +7083.668788 + 20 +10434.304507 + 30 +0.0 + 11 +7083.668788 + 21 +10434.304507 + 31 +0.0 + 0 +LINE + 5 +160A + 8 +0 + 62 + 0 + 10 +7092.102703 + 20 +10428.931511 + 30 +0.0 + 11 +7092.102703 + 21 +10428.931511 + 31 +0.0 + 0 +LINE + 5 +160B + 8 +0 + 62 + 0 + 10 +7067.516221 + 20 +10484.386552 + 30 +0.0 + 11 +7067.516221 + 21 +10484.386552 + 31 +0.0 + 0 +LINE + 5 +160C + 8 +0 + 62 + 0 + 10 +7075.950135 + 20 +10479.013556 + 30 +0.0 + 11 +7075.950135 + 21 +10479.013556 + 31 +0.0 + 0 +LINE + 5 +160D + 8 +0 + 62 + 0 + 10 +7059.797568 + 20 +10529.095601 + 30 +0.0 + 11 +7059.797568 + 21 +10529.095601 + 31 +0.0 + 0 +LINE + 5 +160E + 8 +0 + 62 + 0 + 10 +7090.15966 + 20 +10509.752815 + 30 +0.0 + 11 +7090.15966 + 21 +10509.752815 + 31 +0.0 + 0 +LINE + 5 +160F + 8 +0 + 62 + 0 + 10 +7074.007093 + 20 +10559.834859 + 30 +0.0 + 11 +7074.007093 + 21 +10559.834859 + 31 +0.0 + 0 +LINE + 5 +1610 + 8 +0 + 62 + 0 + 10 +7057.854526 + 20 +10609.916904 + 30 +0.0 + 11 +7057.854526 + 21 +10609.916904 + 31 +0.0 + 0 +LINE + 5 +1611 + 8 +0 + 62 + 0 + 10 +7081.341357 + 20 +10634.745867 + 30 +0.0 + 11 +7081.341357 + 21 +10634.745867 + 31 +0.0 + 0 +LINE + 5 +1612 + 8 +0 + 62 + 0 + 10 +7089.775271 + 20 +10629.372871 + 30 +0.0 + 11 +7089.775271 + 21 +10629.372871 + 31 +0.0 + 0 +LINE + 5 +1613 + 8 +0 + 62 + 0 + 10 +7065.188789 + 20 +10684.827912 + 30 +0.0 + 11 +7065.188789 + 21 +10684.827912 + 31 +0.0 + 0 +LINE + 5 +1614 + 8 +0 + 62 + 0 + 10 +7073.622704 + 20 +10679.454916 + 30 +0.0 + 11 +7073.622704 + 21 +10679.454916 + 31 +0.0 + 0 +LINE + 5 +1615 + 8 +0 + 62 + 0 + 10 +7057.470137 + 20 +10729.53696 + 30 +0.0 + 11 +7057.470137 + 21 +10729.53696 + 31 +0.0 + 0 +LINE + 5 +1616 + 8 +0 + 62 + 0 + 10 +7087.832229 + 20 +10710.194174 + 30 +0.0 + 11 +7087.832229 + 21 +10710.194174 + 31 +0.0 + 0 +LINE + 5 +1617 + 8 +0 + 62 + 0 + 10 +7071.679661 + 20 +10760.276219 + 30 +0.0 + 11 +7071.679661 + 21 +10760.276219 + 31 +0.0 + 0 +LINE + 5 +1618 + 8 +0 + 62 + 0 + 10 +7079.013925 + 20 +10835.187227 + 30 +0.0 + 11 +7079.013925 + 21 +10835.187227 + 31 +0.0 + 0 +LINE + 5 +1619 + 8 +0 + 62 + 0 + 10 +7087.447839 + 20 +10829.814231 + 30 +0.0 + 11 +7087.447839 + 21 +10829.814231 + 31 +0.0 + 0 +LINE + 5 +161A + 8 +0 + 62 + 0 + 10 +7062.861358 + 20 +10885.269271 + 30 +0.0 + 11 +7062.861358 + 21 +10885.269271 + 31 +0.0 + 0 +LINE + 5 +161B + 8 +0 + 62 + 0 + 10 +7071.295272 + 20 +10879.896275 + 30 +0.0 + 11 +7071.295272 + 21 +10879.896275 + 31 +0.0 + 0 +LINE + 5 +161C + 8 +0 + 62 + 0 + 10 +7085.504797 + 20 +10910.635534 + 30 +0.0 + 11 +7085.504797 + 21 +10910.635534 + 31 +0.0 + 0 +LINE + 5 +161D + 8 +0 + 62 + 0 + 10 +7069.35223 + 20 +10960.717579 + 30 +0.0 + 11 +7069.35223 + 21 +10960.717579 + 31 +0.0 + 0 +LINE + 5 +161E + 8 +0 + 62 + 0 + 10 +7092.83906 + 20 +10985.546542 + 30 +0.0 + 11 +7092.83906 + 21 +10985.546542 + 31 +0.0 + 0 +LINE + 5 +161F + 8 +0 + 62 + 0 + 10 +7076.686493 + 20 +11035.628586 + 30 +0.0 + 11 +7076.686493 + 21 +11035.628586 + 31 +0.0 + 0 +LINE + 5 +1620 + 8 +0 + 62 + 0 + 10 +7085.120408 + 20 +11030.25559 + 30 +0.0 + 11 +7085.120408 + 21 +11030.25559 + 31 +0.0 + 0 +LINE + 5 +1621 + 8 +0 + 62 + 0 + 10 +7060.533926 + 20 +11085.710631 + 30 +0.0 + 11 +7060.533926 + 21 +11085.710631 + 31 +0.0 + 0 +LINE + 5 +1622 + 8 +0 + 62 + 0 + 10 +7068.96784 + 20 +11080.337635 + 30 +0.0 + 11 +7068.96784 + 21 +11080.337635 + 31 +0.0 + 0 +LINE + 5 +1623 + 8 +0 + 62 + 0 + 10 +7083.177365 + 20 +11111.076894 + 30 +0.0 + 11 +7083.177365 + 21 +11111.076894 + 31 +0.0 + 0 +LINE + 5 +1624 + 8 +0 + 62 + 0 + 10 +7067.024798 + 20 +11161.158938 + 30 +0.0 + 11 +7067.024798 + 21 +11161.158938 + 31 +0.0 + 0 +LINE + 5 +1625 + 8 +0 + 62 + 0 + 10 +7090.511629 + 20 +11185.987901 + 30 +0.0 + 11 +7090.511629 + 21 +11185.987901 + 31 +0.0 + 0 +LINE + 5 +1626 + 8 +0 + 62 + 0 + 10 +7078.661956 + 20 +10158.95214 + 30 +0.0 + 11 +7078.661956 + 21 +10158.95214 + 31 +0.0 + 0 +LINE + 5 +1627 + 8 +0 + 62 + 0 + 10 +7064.452432 + 20 +10128.212881 + 30 +0.0 + 11 +7064.452432 + 21 +10128.212881 + 31 +0.0 + 0 +LINE + 5 +1628 + 8 +0 + 62 + 0 + 10 +7072.171084 + 20 +10083.503833 + 30 +0.0 + 11 +7072.171084 + 21 +10083.503833 + 31 +0.0 + 0 +LINE + 5 +1629 + 8 +0 + 62 + 0 + 10 +7080.604999 + 20 +10078.130837 + 30 +0.0 + 11 +7080.604999 + 21 +10078.130837 + 31 +0.0 + 0 +LINE + 5 +162A + 8 +0 + 62 + 0 + 10 +7088.323652 + 20 +10033.421788 + 30 +0.0 + 11 +7088.323652 + 21 +10033.421788 + 31 +0.0 + 0 +LINE + 5 +162B + 8 +0 + 62 + 0 + 10 +7064.836821 + 20 +10008.592825 + 30 +0.0 + 11 +7064.836821 + 21 +10008.592825 + 31 +0.0 + 0 +LINE + 5 +162C + 8 +0 + 62 + 0 + 10 +7080.989388 + 20 +9958.51078 + 30 +0.0 + 11 +7080.989388 + 21 +9958.51078 + 31 +0.0 + 0 +LINE + 5 +162D + 8 +0 + 62 + 0 + 10 +7058.345949 + 20 +9933.144518 + 30 +0.0 + 11 +7058.345949 + 21 +9933.144518 + 31 +0.0 + 0 +LINE + 5 +162E + 8 +0 + 62 + 0 + 10 +7066.779863 + 20 +9927.771522 + 30 +0.0 + 11 +7066.779863 + 21 +9927.771522 + 31 +0.0 + 0 +LINE + 5 +162F + 8 +0 + 62 + 0 + 10 +7074.498516 + 20 +9883.062473 + 30 +0.0 + 11 +7074.498516 + 21 +9883.062473 + 31 +0.0 + 0 +LINE + 5 +1630 + 8 +0 + 62 + 0 + 10 +7082.93243 + 20 +9877.689477 + 30 +0.0 + 11 +7082.93243 + 21 +9877.689477 + 31 +0.0 + 0 +LINE + 5 +1631 + 8 +0 + 62 + 0 + 10 +7090.651083 + 20 +9832.980428 + 30 +0.0 + 11 +7090.651083 + 21 +9832.980428 + 31 +0.0 + 0 +LINE + 5 +1632 + 8 +0 + 62 + 0 + 10 +7067.164252 + 20 +9808.151465 + 30 +0.0 + 11 +7067.164252 + 21 +9808.151465 + 31 +0.0 + 0 +LINE + 5 +1633 + 8 +0 + 62 + 0 + 10 +7083.31682 + 20 +9758.069421 + 30 +0.0 + 11 +7083.31682 + 21 +9758.069421 + 31 +0.0 + 0 +LINE + 5 +1634 + 8 +0 + 62 + 0 + 10 +7060.67338 + 20 +9732.703158 + 30 +0.0 + 11 +7060.67338 + 21 +9732.703158 + 31 +0.0 + 0 +LINE + 5 +1635 + 8 +0 + 62 + 0 + 10 +7069.107295 + 20 +9727.330162 + 30 +0.0 + 11 +7069.107295 + 21 +9727.330162 + 31 +0.0 + 0 +LINE + 5 +1636 + 8 +0 + 62 + 0 + 10 +7076.825948 + 20 +9682.621113 + 30 +0.0 + 11 +7076.825948 + 21 +9682.621113 + 31 +0.0 + 0 +LINE + 5 +1637 + 8 +0 + 62 + 0 + 10 +7085.259862 + 20 +9677.248117 + 30 +0.0 + 11 +7085.259862 + 21 +9677.248117 + 31 +0.0 + 0 +LINE + 5 +1638 + 8 +0 + 62 + 0 + 10 +7092.978515 + 20 +9632.539069 + 30 +0.0 + 11 +7092.978515 + 21 +9632.539069 + 31 +0.0 + 0 +LINE + 5 +1639 + 8 +0 + 62 + 0 + 10 +7069.491684 + 20 +9607.710106 + 30 +0.0 + 11 +7069.491684 + 21 +9607.710106 + 31 +0.0 + 0 +LINE + 5 +163A + 8 +0 + 62 + 0 + 10 +7085.644251 + 20 +9557.628061 + 30 +0.0 + 11 +7085.644251 + 21 +9557.628061 + 31 +0.0 + 0 +LINE + 5 +163B + 8 +0 + 62 + 0 + 10 +7063.762596 + 20 +10174.102745 + 30 +0.0 + 11 +7063.762596 + 21 +10174.102745 + 31 +0.0 + 0 +LINE + 5 +163C + 8 +0 + 62 + 0 + 10 +7067.448983 + 20 +10170.724794 + 30 +0.0 + 11 +7067.448983 + 21 +10170.724794 + 31 +0.0 + 0 +LINE + 5 +163D + 8 +0 + 62 + 0 + 10 +7084.848728 + 20 +10154.780865 + 30 +0.0 + 11 +7084.848728 + 21 +10154.780865 + 31 +0.0 + 0 +LINE + 5 +163E + 8 +0 + 62 + 0 + 10 +7062.98602 + 20 +10247.460008 + 30 +0.0 + 11 +7062.98602 + 21 +10247.460008 + 31 +0.0 + 0 +LINE + 5 +163F + 8 +0 + 62 + 0 + 10 +7082.892508 + 20 +10229.219072 + 30 +0.0 + 11 +7082.892508 + 21 +10229.219072 + 31 +0.0 + 0 +LINE + 5 +1640 + 8 +0 + 62 + 0 + 10 +7086.578895 + 20 +10225.841121 + 30 +0.0 + 11 +7086.578895 + 21 +10225.841121 + 31 +0.0 + 0 +LINE + 5 +1641 + 8 +0 + 62 + 0 + 10 +7061.029801 + 20 +10321.898214 + 30 +0.0 + 11 +7061.029801 + 21 +10321.898214 + 31 +0.0 + 0 +LINE + 5 +1642 + 8 +0 + 62 + 0 + 10 +7064.716187 + 20 +10318.520263 + 30 +0.0 + 11 +7064.716187 + 21 +10318.520263 + 31 +0.0 + 0 +LINE + 5 +1643 + 8 +0 + 62 + 0 + 10 +7082.115932 + 20 +10302.576334 + 30 +0.0 + 11 +7082.115932 + 21 +10302.576334 + 31 +0.0 + 0 +LINE + 5 +1644 + 8 +0 + 62 + 0 + 10 +7060.253225 + 20 +10395.255477 + 30 +0.0 + 11 +7060.253225 + 21 +10395.255477 + 31 +0.0 + 0 +LINE + 5 +1645 + 8 +0 + 62 + 0 + 10 +7080.159713 + 20 +10377.014541 + 30 +0.0 + 11 +7080.159713 + 21 +10377.014541 + 31 +0.0 + 0 +LINE + 5 +1646 + 8 +0 + 62 + 0 + 10 +7083.846099 + 20 +10373.63659 + 30 +0.0 + 11 +7083.846099 + 21 +10373.63659 + 31 +0.0 + 0 +LINE + 5 +1647 + 8 +0 + 62 + 0 + 10 +7058.297005 + 20 +10469.693684 + 30 +0.0 + 11 +7058.297005 + 21 +10469.693684 + 31 +0.0 + 0 +LINE + 5 +1648 + 8 +0 + 62 + 0 + 10 +7061.983392 + 20 +10466.315733 + 30 +0.0 + 11 +7061.983392 + 21 +10466.315733 + 31 +0.0 + 0 +LINE + 5 +1649 + 8 +0 + 62 + 0 + 10 +7079.383137 + 20 +10450.371804 + 30 +0.0 + 11 +7079.383137 + 21 +10450.371804 + 31 +0.0 + 0 +LINE + 5 +164A + 8 +0 + 62 + 0 + 10 +7057.520429 + 20 +10543.050946 + 30 +0.0 + 11 +7057.520429 + 21 +10543.050946 + 31 +0.0 + 0 +LINE + 5 +164B + 8 +0 + 62 + 0 + 10 +7077.426917 + 20 +10524.81001 + 30 +0.0 + 11 +7077.426917 + 21 +10524.81001 + 31 +0.0 + 0 +LINE + 5 +164C + 8 +0 + 62 + 0 + 10 +7081.113304 + 20 +10521.432059 + 30 +0.0 + 11 +7081.113304 + 21 +10521.432059 + 31 +0.0 + 0 +LINE + 5 +164D + 8 +0 + 62 + 0 + 10 +7059.250596 + 20 +10614.111202 + 30 +0.0 + 11 +7059.250596 + 21 +10614.111202 + 31 +0.0 + 0 +LINE + 5 +164E + 8 +0 + 62 + 0 + 10 +7076.650341 + 20 +10598.167273 + 30 +0.0 + 11 +7076.650341 + 21 +10598.167273 + 31 +0.0 + 0 +LINE + 5 +164F + 8 +0 + 62 + 0 + 10 +7074.694121 + 20 +10672.60548 + 30 +0.0 + 11 +7074.694121 + 21 +10672.60548 + 31 +0.0 + 0 +LINE + 5 +1650 + 8 +0 + 62 + 0 + 10 +7078.380508 + 20 +10669.227529 + 30 +0.0 + 11 +7078.380508 + 21 +10669.227529 + 31 +0.0 + 0 +LINE + 5 +1651 + 8 +0 + 62 + 0 + 10 +7056.5178 + 20 +10761.906671 + 30 +0.0 + 11 +7056.5178 + 21 +10761.906671 + 31 +0.0 + 0 +LINE + 5 +1652 + 8 +0 + 62 + 0 + 10 +7073.917546 + 20 +10745.962742 + 30 +0.0 + 11 +7073.917546 + 21 +10745.962742 + 31 +0.0 + 0 +LINE + 5 +1653 + 8 +0 + 62 + 0 + 10 +7071.961326 + 20 +10820.400949 + 30 +0.0 + 11 +7071.961326 + 21 +10820.400949 + 31 +0.0 + 0 +LINE + 5 +1654 + 8 +0 + 62 + 0 + 10 +7075.647713 + 20 +10817.022998 + 30 +0.0 + 11 +7075.647713 + 21 +10817.022998 + 31 +0.0 + 0 +LINE + 5 +1655 + 8 +0 + 62 + 0 + 10 +7093.047458 + 20 +10801.079069 + 30 +0.0 + 11 +7093.047458 + 21 +10801.079069 + 31 +0.0 + 0 +LINE + 5 +1656 + 8 +0 + 62 + 0 + 10 +7071.18475 + 20 +10893.758211 + 30 +0.0 + 11 +7071.18475 + 21 +10893.758211 + 31 +0.0 + 0 +LINE + 5 +1657 + 8 +0 + 62 + 0 + 10 +7091.091238 + 20 +10875.517276 + 30 +0.0 + 11 +7091.091238 + 21 +10875.517276 + 31 +0.0 + 0 +LINE + 5 +1658 + 8 +0 + 62 + 0 + 10 +7069.22853 + 20 +10968.196418 + 30 +0.0 + 11 +7069.22853 + 21 +10968.196418 + 31 +0.0 + 0 +LINE + 5 +1659 + 8 +0 + 62 + 0 + 10 +7072.914917 + 20 +10964.818467 + 30 +0.0 + 11 +7072.914917 + 21 +10964.818467 + 31 +0.0 + 0 +LINE + 5 +165A + 8 +0 + 62 + 0 + 10 +7090.314662 + 20 +10948.874538 + 30 +0.0 + 11 +7090.314662 + 21 +10948.874538 + 31 +0.0 + 0 +LINE + 5 +165B + 8 +0 + 62 + 0 + 10 +7068.451954 + 20 +11041.553681 + 30 +0.0 + 11 +7068.451954 + 21 +11041.553681 + 31 +0.0 + 0 +LINE + 5 +165C + 8 +0 + 62 + 0 + 10 +7088.358442 + 20 +11023.312745 + 30 +0.0 + 11 +7088.358442 + 21 +11023.312745 + 31 +0.0 + 0 +LINE + 5 +165D + 8 +0 + 62 + 0 + 10 +7092.044829 + 20 +11019.934794 + 30 +0.0 + 11 +7092.044829 + 21 +11019.934794 + 31 +0.0 + 0 +LINE + 5 +165E + 8 +0 + 62 + 0 + 10 +7066.495735 + 20 +11115.991887 + 30 +0.0 + 11 +7066.495735 + 21 +11115.991887 + 31 +0.0 + 0 +LINE + 5 +165F + 8 +0 + 62 + 0 + 10 +7070.182121 + 20 +11112.613936 + 30 +0.0 + 11 +7070.182121 + 21 +11112.613936 + 31 +0.0 + 0 +LINE + 5 +1660 + 8 +0 + 62 + 0 + 10 +7087.581867 + 20 +11096.670007 + 30 +0.0 + 11 +7087.581867 + 21 +11096.670007 + 31 +0.0 + 0 +LINE + 5 +1661 + 8 +0 + 62 + 0 + 10 +7065.719159 + 20 +11189.34915 + 30 +0.0 + 11 +7065.719159 + 21 +11189.34915 + 31 +0.0 + 0 +LINE + 5 +1662 + 8 +0 + 62 + 0 + 10 +7085.625647 + 20 +11171.108214 + 30 +0.0 + 11 +7085.625647 + 21 +11171.108214 + 31 +0.0 + 0 +LINE + 5 +1663 + 8 +0 + 62 + 0 + 10 +7089.312034 + 20 +11167.730263 + 30 +0.0 + 11 +7089.312034 + 21 +11167.730263 + 31 +0.0 + 0 +LINE + 5 +1664 + 8 +0 + 62 + 0 + 10 +7065.718816 + 20 +10099.664538 + 30 +0.0 + 11 +7065.718816 + 21 +10099.664538 + 31 +0.0 + 0 +LINE + 5 +1665 + 8 +0 + 62 + 0 + 10 +7085.625304 + 20 +10081.423603 + 30 +0.0 + 11 +7085.625304 + 21 +10081.423603 + 31 +0.0 + 0 +LINE + 5 +1666 + 8 +0 + 62 + 0 + 10 +7089.311691 + 20 +10078.045652 + 30 +0.0 + 11 +7089.311691 + 21 +10078.045652 + 31 +0.0 + 0 +LINE + 5 +1667 + 8 +0 + 62 + 0 + 10 +7066.495392 + 20 +10026.307276 + 30 +0.0 + 11 +7066.495392 + 21 +10026.307276 + 31 +0.0 + 0 +LINE + 5 +1668 + 8 +0 + 62 + 0 + 10 +7070.181778 + 20 +10022.929325 + 30 +0.0 + 11 +7070.181778 + 21 +10022.929325 + 31 +0.0 + 0 +LINE + 5 +1669 + 8 +0 + 62 + 0 + 10 +7087.581524 + 20 +10006.985396 + 30 +0.0 + 11 +7087.581524 + 21 +10006.985396 + 31 +0.0 + 0 +LINE + 5 +166A + 8 +0 + 62 + 0 + 10 +7068.451611 + 20 +9951.869069 + 30 +0.0 + 11 +7068.451611 + 21 +9951.869069 + 31 +0.0 + 0 +LINE + 5 +166B + 8 +0 + 62 + 0 + 10 +7088.358099 + 20 +9933.628134 + 30 +0.0 + 11 +7088.358099 + 21 +9933.628134 + 31 +0.0 + 0 +LINE + 5 +166C + 8 +0 + 62 + 0 + 10 +7092.044486 + 20 +9930.250183 + 30 +0.0 + 11 +7092.044486 + 21 +9930.250183 + 31 +0.0 + 0 +LINE + 5 +166D + 8 +0 + 62 + 0 + 10 +7069.228187 + 20 +9878.511807 + 30 +0.0 + 11 +7069.228187 + 21 +9878.511807 + 31 +0.0 + 0 +LINE + 5 +166E + 8 +0 + 62 + 0 + 10 +7072.914574 + 20 +9875.133856 + 30 +0.0 + 11 +7072.914574 + 21 +9875.133856 + 31 +0.0 + 0 +LINE + 5 +166F + 8 +0 + 62 + 0 + 10 +7090.314319 + 20 +9859.189927 + 30 +0.0 + 11 +7090.314319 + 21 +9859.189927 + 31 +0.0 + 0 +LINE + 5 +1670 + 8 +0 + 62 + 0 + 10 +7071.184407 + 20 +9804.0736 + 30 +0.0 + 11 +7071.184407 + 21 +9804.0736 + 31 +0.0 + 0 +LINE + 5 +1671 + 8 +0 + 62 + 0 + 10 +7091.090895 + 20 +9785.832664 + 30 +0.0 + 11 +7091.090895 + 21 +9785.832664 + 31 +0.0 + 0 +LINE + 5 +1672 + 8 +0 + 62 + 0 + 10 +7071.960983 + 20 +9730.716337 + 30 +0.0 + 11 +7071.960983 + 21 +9730.716337 + 31 +0.0 + 0 +LINE + 5 +1673 + 8 +0 + 62 + 0 + 10 +7075.64737 + 20 +9727.338386 + 30 +0.0 + 11 +7075.64737 + 21 +9727.338386 + 31 +0.0 + 0 +LINE + 5 +1674 + 8 +0 + 62 + 0 + 10 +7093.047115 + 20 +9711.394458 + 30 +0.0 + 11 +7093.047115 + 21 +9711.394458 + 31 +0.0 + 0 +LINE + 5 +1675 + 8 +0 + 62 + 0 + 10 +7056.517457 + 20 +9672.22206 + 30 +0.0 + 11 +7056.517457 + 21 +9672.22206 + 31 +0.0 + 0 +LINE + 5 +1676 + 8 +0 + 62 + 0 + 10 +7073.917203 + 20 +9656.278131 + 30 +0.0 + 11 +7073.917203 + 21 +9656.278131 + 31 +0.0 + 0 +LINE + 5 +1677 + 8 +0 + 62 + 0 + 10 +7074.693779 + 20 +9582.920868 + 30 +0.0 + 11 +7074.693779 + 21 +9582.920868 + 31 +0.0 + 0 +LINE + 5 +1678 + 8 +0 + 62 + 0 + 10 +7078.380165 + 20 +9579.542917 + 30 +0.0 + 11 +7078.380165 + 21 +9579.542917 + 31 +0.0 + 0 +DIMENSION + 5 +1679 + 8 +BEMASSUNG + 2 +*D26 + 10 +6141.572752 + 20 +8884.916877 + 30 +0.0 + 11 +6040.0 + 21 +8972.416877 + 31 +0.0 + 70 + 128 + 1 +1 + 13 +6100.665062 + 23 +9555.000103 + 33 +0.0 + 14 +6141.572752 + 24 +9555.000103 + 34 +0.0 + 0 +DIMENSION + 5 +167A + 8 +BEMASSUNG + 2 +*D20 + 10 +7052.902997 + 20 +8884.916877 + 30 +0.0 + 11 +6597.237875 + 21 +8972.416877 + 31 +0.0 + 1 +36 + 13 +6141.572752 + 23 +9555.000103 + 33 +0.0 + 14 +7052.902997 + 24 +9561.814406 + 34 +0.0 + 0 +DIMENSION + 5 +167B + 8 +BEMASSUNG + 2 +*D27 + 10 +7091.53801 + 20 +8884.916877 + 30 +0.0 + 11 +7145.0 + 21 +8972.416877 + 31 +0.0 + 70 + 128 + 1 +1 + 13 +7052.902997 + 23 +9561.814406 + 33 +0.0 + 14 +7091.53801 + 24 +9555.000103 + 34 +0.0 + 0 +DIMENSION + 5 +167C + 8 +BEMASSUNG + 2 +*D21 + 10 +5789.99228 + 20 +13098.623281 + 30 +0.0 + 11 +5645.684244 + 21 +13186.123281 + 31 +0.0 + 1 +11 + 13 +5501.376207 + 23 +12526.305162 + 33 +0.0 + 14 +5789.99228 + 24 +12526.305162 + 34 +0.0 + 0 +DIMENSION + 5 +167D + 8 +BEMASSUNG + 2 +*D22 + 10 +5940.072764 + 20 +13098.623281 + 30 +0.0 + 11 +5865.032522 + 21 +13186.123281 + 31 +0.0 + 1 +6 + 13 +5789.99228 + 23 +12526.305162 + 33 +0.0 + 14 +5940.072764 + 24 +12526.305162 + 34 +0.0 + 0 +DIMENSION + 5 +167E + 8 +BEMASSUNG + 2 +*D23 + 10 +6140.949559 + 20 +13098.623281 + 30 +0.0 + 11 +6040.511162 + 21 +13186.123281 + 31 +0.0 + 1 +8 + 13 +5940.072764 + 23 +12526.305162 + 33 +0.0 + 14 +6140.949559 + 24 +12521.68964 + 34 +0.0 + 0 +DIMENSION + 5 +167F + 8 +BEMASSUNG + 2 +*D24 + 10 +7062.212311 + 20 +13098.623281 + 30 +0.0 + 11 +6601.580935 + 21 +13186.123281 + 31 +0.0 + 1 +36 + 13 +6140.949559 + 23 +12521.68964 + 33 +0.0 + 14 +7062.212311 + 24 +12523.997349 + 34 +0.0 + 0 +DIMENSION + 5 +1680 + 8 +BEMASSUNG + 2 +*D25 + 10 +7099.155279 + 20 +13098.623281 + 30 +0.0 + 11 +7150.550955 + 21 +13186.123281 + 31 +0.0 + 70 + 128 + 1 +1 + 13 +7062.212311 + 23 +12523.997349 + 33 +0.0 + 14 +7099.155279 + 24 +12519.381932 + 34 +0.0 + 0 +DIMENSION + 5 +1681 + 8 +BEMASSUNG + 2 +*D19 + 10 +9369.023561 + 20 +11625.154251 + 30 +0.0 + 11 +9281.523561 + 21 +11426.926419 + 31 +0.0 + 1 +16 + 13 +8581.288492 + 23 +11228.698587 + 33 +0.0 + 14 +8581.288492 + 24 +11625.154251 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1682 + 8 +BEMASSUNG + 2 +*D18 + 10 +9369.023561 + 20 +11728.455992 + 30 +0.0 + 11 +9281.523561 + 21 +11676.805121 + 31 +0.0 + 1 +4 + 13 +8581.288492 + 23 +11625.154251 + 33 +0.0 + 14 +8592.462088 + 24 +11728.455992 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1683 + 8 +BEMASSUNG + 2 +*D17 + 10 +9369.023561 + 20 +11770.335123 + 30 +0.0 + 11 +9281.523561 + 21 +11749.395557 + 31 +0.0 + 1 +1 + 13 +8592.462088 + 23 +11728.455992 + 33 +0.0 + 14 +8592.462088 + 24 +11770.335123 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1684 + 8 +BEMASSUNG + 2 +*D16 + 10 +9369.023561 + 20 +11868.053132 + 30 +0.0 + 11 +9281.523561 + 21 +11819.194128 + 31 +0.0 + 1 +4 + 13 +8592.462088 + 23 +11770.335123 + 33 +0.0 + 14 +8592.462088 + 24 +11868.053132 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1685 + 8 +BEMASSUNG + 2 +*D28 + 10 +9369.023561 + 20 +11932.267711 + 30 +0.0 + 11 +9281.523561 + 21 +11980.0 + 31 +0.0 + 70 + 128 + 1 +2 + 13 +8592.462088 + 23 +11868.053132 + 33 +0.0 + 14 +8595.255445 + 24 +11932.267711 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1686 + 8 +BEMASSUNG + 10 +5683.312116 + 20 +13202.168147 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +1687 + 8 +BEMASSUNG + 10 +6673.312116 + 20 +13202.168147 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +1688 + 8 +BEMASSUNG + 10 +7168.312116 + 20 +13202.168147 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +1689 + 8 +BEMASSUNG + 10 +6050.0 + 20 +8995.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +168A + 8 +BEMASSUNG + 10 +7165.0 + 20 +8995.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +168B + 8 +BEMASSUNG + 10 +6665.0 + 20 +8995.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +168C + 8 +BEMASSUNG + 10 +9285.0 + 20 +12020.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +168D + 8 +LEGENDE-35 + 10 +8505.0 + 20 +13515.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 41 +0.75 + 0 +TEXT + 5 +168E + 8 +LEGENDE-35 + 10 +8505.0 + 20 +13265.0 + 30 +0.0 + 40 +87.5 + 1 +ABSCHLUSSLEISTE + 41 +0.75 + 0 +TEXT + 5 +168F + 8 +LEGENDE-35 + 10 +8505.0 + 20 +13015.0 + 30 +0.0 + 40 +87.5 + 1 +NATURSTEINPLATTEN + 41 +0.75 + 0 +TEXT + 5 +1690 + 8 +LEGENDE-35 + 10 +8505.0 + 20 +12765.0 + 30 +0.0 + 40 +87.5 + 1 +ZEMENTESTRICH + 41 +0.75 + 0 +TEXT + 5 +1691 + 8 +LEGENDE-35 + 10 +8505.0 + 20 +12515.0 + 30 +0.0 + 40 +87.5 + 1 +DICHTUNGSBAHN (PE/ BITUMEN) + 41 +0.75 + 0 +TEXT + 5 +1692 + 8 +LEGENDE-35 + 10 +8505.0 + 20 +12265.0 + 30 +0.0 + 40 +87.5 + 1 +PS-WD + 41 +0.75 + 0 +POLYLINE + 5 +1693 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2017 + 8 +LEGENDE-35 + 10 +8355.0 + 20 +13560.0 + 30 +0.0 + 0 +VERTEX + 5 +2018 + 8 +LEGENDE-35 + 10 +7420.0 + 20 +13560.0 + 30 +0.0 + 0 +VERTEX + 5 +2019 + 8 +LEGENDE-35 + 10 +7420.0 + 20 +12415.0 + 30 +0.0 + 0 +VERTEX + 5 +201A + 8 +LEGENDE-35 + 10 +7085.0 + 20 +12415.0 + 30 +0.0 + 0 +SEQEND + 5 +201B + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1699 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +201C + 8 +LEGENDE-35 + 10 +8350.0 + 20 +13315.0 + 30 +0.0 + 0 +VERTEX + 5 +201D + 8 +LEGENDE-35 + 10 +7565.0 + 20 +13315.0 + 30 +0.0 + 0 +VERTEX + 5 +201E + 8 +LEGENDE-35 + 10 +7565.0 + 20 +12025.0 + 30 +0.0 + 0 +VERTEX + 5 +201F + 8 +LEGENDE-35 + 10 +7130.0 + 20 +12025.0 + 30 +0.0 + 0 +SEQEND + 5 +2020 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +169F + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2021 + 8 +LEGENDE-35 + 10 +8350.0 + 20 +13075.0 + 30 +0.0 + 0 +VERTEX + 5 +2022 + 8 +LEGENDE-35 + 10 +7720.0 + 20 +13075.0 + 30 +0.0 + 0 +VERTEX + 5 +2023 + 8 +LEGENDE-35 + 10 +7720.0 + 20 +11920.0 + 30 +0.0 + 0 +SEQEND + 5 +2024 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16A4 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2025 + 8 +LEGENDE-35 + 10 +8345.0 + 20 +12800.0 + 30 +0.0 + 0 +VERTEX + 5 +2026 + 8 +LEGENDE-35 + 10 +7840.0 + 20 +12800.0 + 30 +0.0 + 0 +VERTEX + 5 +2027 + 8 +LEGENDE-35 + 10 +7840.0 + 20 +11835.0 + 30 +0.0 + 0 +SEQEND + 5 +2028 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16A9 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2029 + 8 +LEGENDE-35 + 10 +8350.0 + 20 +12575.0 + 30 +0.0 + 0 +VERTEX + 5 +202A + 8 +LEGENDE-35 + 10 +7990.0 + 20 +12575.0 + 30 +0.0 + 0 +VERTEX + 5 +202B + 8 +LEGENDE-35 + 10 +7990.0 + 20 +11760.0 + 30 +0.0 + 0 +SEQEND + 5 +202C + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16AE + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +202D + 8 +LEGENDE-35 + 10 +8350.0 + 20 +12325.0 + 30 +0.0 + 0 +VERTEX + 5 +202E + 8 +LEGENDE-35 + 10 +8120.0 + 20 +12325.0 + 30 +0.0 + 0 +VERTEX + 5 +202F + 8 +LEGENDE-35 + 10 +8120.0 + 20 +11690.0 + 30 +0.0 + 0 +SEQEND + 5 +2030 + 8 +LEGENDE-35 + 0 +TEXT + 5 +16B3 + 8 +LEGENDE-35 + 10 +8515.0 + 20 +10815.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 41 +0.75 + 0 +TEXT + 5 +16B4 + 8 +LEGENDE-35 + 10 +8515.0 + 20 +10565.0 + 30 +0.0 + 40 +87.5 + 1 +RINGANKER BST III + 41 +0.75 + 0 +TEXT + 5 +16B5 + 8 +LEGENDE-35 + 10 +8515.0 + 20 +10315.0 + 30 +0.0 + 40 +87.5 + 1 +DICHTUNGSBAHN (BITUMEN) + 41 +0.75 + 0 +POLYLINE + 5 +16B6 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2031 + 8 +LEGENDE-35 + 10 +8365.0 + 20 +10865.0 + 30 +0.0 + 0 +VERTEX + 5 +2032 + 8 +LEGENDE-35 + 10 +7080.0 + 20 +10865.0 + 30 +0.0 + 0 +SEQEND + 5 +2033 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16BA + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2034 + 8 +LEGENDE-35 + 10 +8365.0 + 20 +10620.0 + 30 +0.0 + 0 +VERTEX + 5 +2035 + 8 +LEGENDE-35 + 10 +6850.0 + 20 +10620.0 + 30 +0.0 + 0 +VERTEX + 5 +2036 + 8 +LEGENDE-35 + 10 +6850.0 + 20 +10930.0 + 30 +0.0 + 0 +SEQEND + 5 +2037 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16BF + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2038 + 8 +LEGENDE-35 + 10 +8365.0 + 20 +10375.0 + 30 +0.0 + 0 +VERTEX + 5 +2039 + 8 +LEGENDE-35 + 10 +7320.0 + 20 +10375.0 + 30 +0.0 + 0 +VERTEX + 5 +203A + 8 +LEGENDE-35 + 10 +7320.0 + 20 +9870.0 + 30 +0.0 + 0 +VERTEX + 5 +203B + 8 +LEGENDE-35 + 10 +7010.0 + 20 +9870.0 + 30 +0.0 + 0 +SEQEND + 5 +203C + 8 +LEGENDE-35 + 0 +TEXT + 5 +16C5 + 8 +LEGENDE-35 + 10 +2240.0 + 20 +12400.0 + 30 +0.0 + 40 +87.5 + 1 +VMW KHLz-20-1.8-NF + 41 +0.75 + 0 +TEXT + 5 +16C6 + 8 +LEGENDE-35 + 10 +2240.0 + 20 +12150.0 + 30 +0.0 + 40 +87.5 + 1 +MINERALFASER-WD + 41 +0.75 + 0 +TEXT + 5 +16C7 + 8 +LEGENDE-35 + 10 +2240.0 + 20 +11900.0 + 30 +0.0 + 40 +87.5 + 1 +DRAHTANKER + 41 +0.75 + 0 +TEXT + 5 +16C8 + 8 +LEGENDE-35 + 10 +2240.0 + 20 +11650.0 + 30 +0.0 + 40 +87.5 + 1 +MW Mz-20-1.8-NF + 41 +0.75 + 0 +TEXT + 5 +16C9 + 8 +LEGENDE-35 + 10 +2240.0 + 20 +11400.0 + 30 +0.0 + 40 +87.5 + 1 +ENTLFTUNGSSTEIN + 41 +0.75 + 0 +TEXT + 5 +16CA + 8 +LEGENDE-35 + 10 +2240.0 + 20 +11150.0 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 41 +0.75 + 0 +POLYLINE + 5 +16CB + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +203D + 8 +LEGENDE-35 + 10 +3635.0 + 20 +12455.0 + 30 +0.0 + 0 +VERTEX + 5 +203E + 8 +LEGENDE-35 + 10 +5615.0 + 20 +12455.0 + 30 +0.0 + 0 +SEQEND + 5 +203F + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16CF + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2040 + 8 +LEGENDE-35 + 10 +3625.0 + 20 +12215.0 + 30 +0.0 + 0 +VERTEX + 5 +2041 + 8 +LEGENDE-35 + 10 +6025.0 + 20 +12215.0 + 30 +0.0 + 0 +SEQEND + 5 +2042 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16D3 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2043 + 8 +LEGENDE-35 + 10 +3625.0 + 20 +11950.0 + 30 +0.0 + 0 +VERTEX + 5 +2044 + 8 +LEGENDE-35 + 10 +5880.0 + 20 +11950.0 + 30 +0.0 + 0 +VERTEX + 5 +2045 + 8 +LEGENDE-35 + 10 +5880.0 + 20 +12045.0 + 30 +0.0 + 0 +SEQEND + 5 +2046 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16D8 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2047 + 8 +LEGENDE-35 + 10 +3625.0 + 20 +11680.0 + 30 +0.0 + 0 +VERTEX + 5 +2048 + 8 +LEGENDE-35 + 10 +6345.0 + 20 +11680.0 + 30 +0.0 + 0 +VERTEX + 5 +2049 + 8 +LEGENDE-35 + 10 +6345.0 + 20 +11810.0 + 30 +0.0 + 0 +SEQEND + 5 +204A + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16DD + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +204B + 8 +LEGENDE-35 + 10 +3625.0 + 20 +11460.0 + 30 +0.0 + 0 +VERTEX + 5 +204C + 8 +LEGENDE-35 + 10 +5635.0 + 20 +11460.0 + 30 +0.0 + 0 +SEQEND + 5 +204D + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16E1 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +204E + 8 +LEGENDE-35 + 10 +3625.0 + 20 +11215.0 + 30 +0.0 + 0 +VERTEX + 5 +204F + 8 +LEGENDE-35 + 10 +5175.0 + 20 +11215.0 + 30 +0.0 + 0 +VERTEX + 5 +2050 + 8 +LEGENDE-35 + 10 +5495.0 + 20 +11300.0 + 30 +0.0 + 0 +SEQEND + 5 +2051 + 8 +LEGENDE-35 + 0 +TEXT + 5 +16E6 + 8 +LEGENDE-35 + 10 +2940.0 + 20 +10805.0 + 30 +0.0 + 40 +87.5 + 1 +LAGERSCHIENE + 41 +0.75 + 0 +TEXT + 5 +16E7 + 8 +LEGENDE-35 + 10 +2940.0 + 20 +10555.0 + 30 +0.0 + 40 +87.5 + 1 +ANKERSCHIENE + 41 +0.75 + 0 +TEXT + 5 +16E8 + 8 +LEGENDE-35 + 10 +2940.0 + 20 +10305.0 + 30 +0.0 + 40 +87.5 + 1 +AUSSENPUTZ + 41 +0.75 + 0 +TEXT + 5 +16E9 + 8 +LEGENDE-35 + 10 +2940.0 + 20 +10055.0 + 30 +0.0 + 40 +87.5 + 1 +MW Mz-20-1.8-NF + 41 +0.75 + 0 +POLYLINE + 5 +16EA + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2052 + 8 +LEGENDE-35 + 10 +3920.0 + 20 +10850.0 + 30 +0.0 + 0 +VERTEX + 5 +2053 + 8 +LEGENDE-35 + 10 +5915.0 + 20 +10850.0 + 30 +0.0 + 0 +VERTEX + 5 +2054 + 8 +LEGENDE-35 + 10 +5915.0 + 20 +11155.0 + 30 +0.0 + 0 +SEQEND + 5 +2055 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16EF + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2056 + 8 +LEGENDE-35 + 10 +3920.0 + 20 +10595.0 + 30 +0.0 + 0 +VERTEX + 5 +2057 + 8 +LEGENDE-35 + 10 +6050.0 + 20 +10595.0 + 30 +0.0 + 0 +VERTEX + 5 +2058 + 8 +LEGENDE-35 + 10 +6050.0 + 20 +11320.0 + 30 +0.0 + 0 +SEQEND + 5 +2059 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16F4 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +205A + 8 +LEGENDE-35 + 10 +3920.0 + 20 +10360.0 + 30 +0.0 + 0 +VERTEX + 5 +205B + 8 +LEGENDE-35 + 10 +6115.0 + 20 +10360.0 + 30 +0.0 + 0 +SEQEND + 5 +205C + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16F8 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +205D + 8 +LEGENDE-35 + 10 +3920.0 + 20 +10095.0 + 30 +0.0 + 0 +VERTEX + 5 +205E + 8 +LEGENDE-35 + 10 +6335.0 + 20 +10095.0 + 30 +0.0 + 0 +SEQEND + 5 +205F + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +16FC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2060 + 8 +DRAHTANKER + 10 +7145.0 + 20 +12075.0 + 30 +0.0 + 0 +VERTEX + 5 +2061 + 8 +DRAHTANKER + 10 +7080.0 + 20 +12075.0 + 30 +0.0 + 0 +SEQEND + 5 +2062 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1700 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2063 + 8 +DRAHTANKER + 10 +7060.0 + 20 +12075.0 + 30 +0.0 + 0 +VERTEX + 5 +2064 + 8 +DRAHTANKER + 10 +7040.0 + 20 +12075.0 + 30 +0.0 + 0 +SEQEND + 5 +2065 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1704 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2066 + 8 +DRAHTANKER + 10 +7015.0 + 20 +12075.0 + 30 +0.0 + 0 +VERTEX + 5 +2067 + 8 +DRAHTANKER + 10 +6990.0 + 20 +12075.0 + 30 +0.0 + 0 +SEQEND + 5 +2068 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1708 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2069 + 8 +DRAHTANKER + 10 +7015.0 + 20 +11995.0 + 30 +0.0 + 0 +VERTEX + 5 +206A + 8 +DRAHTANKER + 10 +6990.0 + 20 +11995.0 + 30 +0.0 + 0 +SEQEND + 5 +206B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +170C + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +206C + 8 +DRAHTANKER + 10 +7060.0 + 20 +11995.0 + 30 +0.0 + 0 +VERTEX + 5 +206D + 8 +DRAHTANKER + 10 +7040.0 + 20 +11995.0 + 30 +0.0 + 0 +SEQEND + 5 +206E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1710 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +206F + 8 +DRAHTANKER + 10 +7150.0 + 20 +11995.0 + 30 +0.0 + 0 +VERTEX + 5 +2070 + 8 +DRAHTANKER + 10 +7080.0 + 20 +11995.0 + 30 +0.0 + 0 +SEQEND + 5 +2071 + 8 +DRAHTANKER + 0 +DIMENSION + 5 +1714 + 8 +DRAHTANKER + 2 +*D29 + 10 +7730.0 + 20 +11145.0 + 30 +0.0 + 11 +7642.5 + 21 +11187.5 + 31 +0.0 + 1 +3 + 13 +7055.0 + 23 +11230.0 + 33 +0.0 + 14 +7055.0 + 24 +11145.0 + 34 +0.0 + 50 +90.0 + 0 +POLYLINE + 5 +1715 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +2072 + 8 +SCHRAFFUR + 10 +7190.0 + 20 +4795.0 + 30 +0.0 + 0 +VERTEX + 5 +2073 + 8 +SCHRAFFUR + 10 +7126.991073 + 20 +4795.0 + 30 +0.0 + 0 +VERTEX + 5 +2074 + 8 +SCHRAFFUR + 10 +7126.991073 + 20 +4959.629568 + 30 +0.0 + 0 +VERTEX + 5 +2075 + 8 +SCHRAFFUR + 10 +7191.498177 + 20 +4959.629568 + 30 +0.0 + 0 +SEQEND + 5 +2076 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +171B + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2077 + 8 +SCHNITTKANTEN + 10 +8565.0 + 20 +5100.0 + 30 +0.0 + 0 +VERTEX + 5 +2078 + 8 +SCHNITTKANTEN + 10 +8565.0 + 20 +3195.0 + 30 +0.0 + 0 +SEQEND + 5 +2079 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +171F + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +207A + 8 +SCHNITTKANTEN + 10 +5655.0 + 20 +5790.0 + 30 +0.0 + 0 +VERTEX + 5 +207B + 8 +SCHNITTKANTEN + 10 +7485.0 + 20 +5790.0 + 30 +0.0 + 0 +SEQEND + 5 +207C + 8 +SCHNITTKANTEN + 0 +INSERT + 5 +1723 + 8 +SCHRAFFUR + 2 +*X30 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1724 + 8 +SCHRAFFUR + 2 +*X31 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +125.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1725 + 8 +SCHRAFFUR + 2 +*X32 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1726 + 8 +SCHRAFFUR + 2 +*X33 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +DASH,I +1040 +200.0 +1040 +0.785398 +1002 +} + 0 +INSERT + 5 +1727 + 8 +SCHRAFFUR + 2 +*X34 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI34,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1728 + 8 +SCHRAFFUR + 2 +*X35 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1000.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1729 + 8 +SCHRAFFUR + 2 +*X36 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI33,I +1040 +1200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +172A + 8 +SCHRAFFUR + 2 +*X37 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +DASH,I +1040 +1500.0 +1040 +0.785398 +1002 +} + 0 +INSERT + 5 +172B + 8 +SCHRAFFUR + 2 +*X38 + 10 +0.0 + 20 +0.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +172C + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +207D + 8 +MAUERWERK + 10 +7125.0 + 20 +4962.28 + 30 +0.0 + 0 +VERTEX + 5 +207E + 8 +MAUERWERK + 10 +7162.5 + 20 +4962.28 + 30 +0.0 + 0 +VERTEX + 5 +207F + 8 +MAUERWERK + 10 +7162.5 + 20 +5790.0 + 30 +0.0 + 0 +SEQEND + 5 +2080 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1731 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2081 + 8 +MAUERWERK + 10 +7125.0 + 20 +5790.0 + 30 +0.0 + 0 +VERTEX + 5 +2082 + 8 +MAUERWERK + 10 +7125.0 + 20 +4962.28 + 30 +0.0 + 0 +SEQEND + 5 +2083 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1735 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +2084 + 8 +PE-FOLIE + 10 +6195.0 + 20 +5790.0 + 30 +0.0 + 0 +VERTEX + 5 +2085 + 8 +PE-FOLIE + 10 +6195.0 + 20 +5195.0 + 30 +0.0 + 0 +VERTEX + 5 +2086 + 8 +PE-FOLIE + 10 +6170.0 + 20 +5085.0 + 30 +0.0 + 0 +VERTEX + 5 +2087 + 8 +PE-FOLIE + 10 +6160.0 + 20 +4380.0 + 30 +0.0 + 0 +VERTEX + 5 +2088 + 8 +PE-FOLIE + 10 +6000.0 + 20 +4265.0 + 30 +0.0 + 0 +VERTEX + 5 +2089 + 8 +PE-FOLIE + 10 +5375.0 + 20 +4265.0 + 30 +0.0 + 0 +VERTEX + 5 +208A + 8 +PE-FOLIE + 10 +5375.0 + 20 +3275.0 + 30 +0.0 + 0 +SEQEND + 5 +208B + 8 +PE-FOLIE + 0 +POLYLINE + 5 +173E + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +208C + 8 +DAEMMUNG + 10 +6175.0 + 20 +5790.0 + 30 +0.0 + 0 +VERTEX + 5 +208D + 8 +DAEMMUNG + 10 +6175.0 + 20 +5197.5 + 30 +0.0 + 0 +VERTEX + 5 +208E + 8 +DAEMMUNG + 10 +6150.0 + 20 +5135.0 + 30 +0.0 + 0 +VERTEX + 5 +208F + 8 +DAEMMUNG + 10 +6135.0 + 20 +4400.0 + 30 +0.0 + 0 +VERTEX + 5 +2090 + 8 +DAEMMUNG + 10 +6045.0 + 20 +4325.0 + 30 +0.0 + 0 +VERTEX + 5 +2091 + 8 +DAEMMUNG + 10 +5968.4375 + 20 +4280.0 + 30 +0.0 + 0 +SEQEND + 5 +2092 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +1746 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2093 + 8 +DAEMMUNG + 10 +5968.4375 + 20 +4280.0 + 30 +0.0 + 0 +VERTEX + 5 +2094 + 8 +DAEMMUNG + 10 +5968.4375 + 20 +5790.0 + 30 +0.0 + 0 +SEQEND + 5 +2095 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +174A + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2096 + 8 +MAUERWERK + 10 +7125.0 + 20 +5790.0 + 30 +0.0 + 0 +VERTEX + 5 +2097 + 8 +MAUERWERK + 10 +7125.0 + 20 +5135.0 + 30 +0.0 + 0 +VERTEX + 5 +2098 + 8 +MAUERWERK + 10 +6215.0 + 20 +5135.0 + 30 +0.0 + 0 +VERTEX + 5 +2099 + 8 +MAUERWERK + 10 +6215.0 + 20 +5790.0 + 30 +0.0 + 0 +SEQEND + 5 +209A + 8 +MAUERWERK + 0 +POLYLINE + 5 +1750 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +209B + 8 +ESTRICH + 10 +7191.15625 + 20 +4895.782507 + 30 +0.0 + 0 +VERTEX + 5 +209C + 8 +ESTRICH + 10 +7191.15625 + 20 +4958.282507 + 30 +0.0 + 0 +VERTEX + 5 +209D + 8 +ESTRICH + 10 +8565.0 + 20 +4958.282507 + 30 +0.0 + 0 +SEQEND + 5 +209E + 8 +ESTRICH + 0 +POLYLINE + 5 +1755 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +209F + 8 +ESTRICH + 10 +7191.15625 + 20 +4795.782507 + 30 +0.0 + 0 +VERTEX + 5 +20A0 + 8 +ESTRICH + 10 +7191.15625 + 20 +4895.782507 + 30 +0.0 + 0 +VERTEX + 5 +20A1 + 8 +ESTRICH + 10 +8565.0 + 20 +4895.782507 + 30 +0.0 + 0 +SEQEND + 5 +20A2 + 8 +ESTRICH + 0 +POLYLINE + 5 +175A + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20A3 + 8 +ESTRICH + 10 +8565.0 + 20 +4795.782507 + 30 +0.0 + 0 +VERTEX + 5 +20A4 + 8 +ESTRICH + 10 +7190.0 + 20 +4795.782507 + 30 +0.0 + 0 +SEQEND + 5 +20A5 + 8 +ESTRICH + 0 +POLYLINE + 5 +175E + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +20A6 + 8 +PE-FOLIE + 10 +6195.0 + 20 +4670.0 + 30 +0.0 + 0 +VERTEX + 5 +20A7 + 8 +PE-FOLIE + 10 +6195.0 + 20 +5115.0 + 30 +0.0 + 0 +VERTEX + 5 +20A8 + 8 +PE-FOLIE + 10 +7145.0 + 20 +5115.0 + 30 +0.0 + 0 +VERTEX + 5 +20A9 + 8 +PE-FOLIE + 10 +7145.0 + 20 +4775.0 + 30 +0.0 + 0 +VERTEX + 5 +20AA + 8 +PE-FOLIE + 10 +8565.0 + 20 +4775.0 + 30 +0.0 + 0 +SEQEND + 5 +20AB + 8 +PE-FOLIE + 0 +POLYLINE + 5 +1765 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20AC + 8 +ESTRICH + 10 +8565.0 + 20 +4755.0 + 30 +0.0 + 0 +VERTEX + 5 +20AD + 8 +ESTRICH + 10 +7160.0 + 20 +4755.0 + 30 +0.0 + 0 +VERTEX + 5 +20AE + 8 +ESTRICH + 10 +7160.0 + 20 +4655.0 + 30 +0.0 + 0 +SEQEND + 5 +20AF + 8 +ESTRICH + 0 +POLYLINE + 5 +176A + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20B0 + 8 +ESTRICH + 10 +7160.0 + 20 +4660.0 + 30 +0.0 + 0 +VERTEX + 5 +20B1 + 8 +ESTRICH + 10 +8565.0 + 20 +4660.0 + 30 +0.0 + 0 +SEQEND + 5 +20B2 + 8 +ESTRICH + 0 +POLYLINE + 5 +176E + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +20B3 + 8 +PE-FOLIE + 10 +8565.0 + 20 +4640.0 + 30 +0.0 + 0 +VERTEX + 5 +20B4 + 8 +PE-FOLIE + 10 +6602.5 + 20 +4640.0 + 30 +0.0 + 0 +VERTEX + 5 +20B5 + 8 +PE-FOLIE + 10 +6195.0 + 20 +4640.0 + 30 +0.0 + 0 +VERTEX + 5 +20B6 + 8 +PE-FOLIE + 10 +6195.0 + 20 +4410.0 + 30 +0.0 + 0 +VERTEX + 5 +20B7 + 8 +PE-FOLIE + 10 +6127.5 + 20 +4297.5 + 30 +0.0 + 0 +VERTEX + 5 +20B8 + 8 +PE-FOLIE + 10 +6000.0 + 20 +4240.0 + 30 +0.0 + 0 +VERTEX + 5 +20B9 + 8 +PE-FOLIE + 10 +5565.0 + 20 +4240.0 + 30 +0.0 + 0 +VERTEX + 5 +20BA + 8 +PE-FOLIE + 10 +5400.0 + 20 +4240.0 + 30 +0.0 + 0 +VERTEX + 5 +20BB + 8 +PE-FOLIE + 10 +5400.0 + 20 +3360.0 + 30 +0.0 + 0 +SEQEND + 5 +20BC + 8 +PE-FOLIE + 0 +POLYLINE + 5 +1779 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20BD + 8 +DECKEN + 10 +8565.0 + 20 +4622.5 + 30 +0.0 + 0 +VERTEX + 5 +20BE + 8 +DECKEN + 10 +6215.0 + 20 +4622.5 + 30 +0.0 + 0 +VERTEX + 5 +20BF + 8 +DECKEN + 10 +6215.0 + 20 +4222.5 + 30 +0.0 + 0 +SEQEND + 5 +20C0 + 8 +DECKEN + 0 +POLYLINE + 5 +177E + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20C1 + 8 +DECKEN + 10 +6215.0 + 20 +4222.5 + 30 +0.0 + 0 +VERTEX + 5 +20C2 + 8 +DECKEN + 10 +8565.0 + 20 +4222.5 + 30 +0.0 + 0 +SEQEND + 5 +20C3 + 8 +DECKEN + 0 +POLYLINE + 5 +1782 + 8 +FUNDAMENT + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20C4 + 8 +FUNDAMENT + 10 +7927.5 + 20 +2847.5 + 30 +0.0 + 0 +VERTEX + 5 +20C5 + 8 +FUNDAMENT + 10 +8565.0 + 20 +3485.0 + 30 +0.0 + 0 +SEQEND + 5 +20C6 + 8 +FUNDAMENT + 0 +POLYLINE + 5 +1786 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20C7 + 8 +SCHNITTKANTEN + 10 +4425.0 + 20 +3870.0 + 30 +0.0 + 0 +VERTEX + 5 +20C8 + 8 +SCHNITTKANTEN + 10 +4425.0 + 20 +2430.0 + 30 +0.0 + 0 +SEQEND + 5 +20C9 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +178A + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20CA + 8 +ERDBODEN + 10 +5415.0 + 20 +2847.5 + 30 +0.0 + 0 +VERTEX + 5 +20CB + 8 +ERDBODEN + 10 +4425.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +20CC + 8 +ERDBODEN + 0 +POLYLINE + 5 +178E + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20CD + 8 +ERDBODEN + 10 +4425.0 + 20 +2603.214286 + 30 +0.0 + 0 +VERTEX + 5 +20CE + 8 +ERDBODEN + 10 +4615.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +20CF + 8 +ERDBODEN + 0 +POLYLINE + 5 +1792 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20D0 + 8 +ERDBODEN + 10 +6440.0 + 20 +2603.214286 + 30 +0.0 + 0 +VERTEX + 5 +20D1 + 8 +ERDBODEN + 10 +6630.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +20D2 + 8 +ERDBODEN + 0 +POLYLINE + 5 +1796 + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20D3 + 8 +ERDBODEN + 10 +6532.777778 + 20 +2497.5 + 30 +0.0 + 0 +VERTEX + 5 +20D4 + 8 +ERDBODEN + 10 +6805.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +20D5 + 8 +ERDBODEN + 0 +POLYLINE + 5 +179A + 8 +ERDBODEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +20D6 + 8 +ERDBODEN + 10 +6707.777778 + 20 +2497.5 + 30 +0.0 + 0 +VERTEX + 5 +20D7 + 8 +ERDBODEN + 10 +6980.0 + 20 +2847.5 + 30 +0.0 + 0 +SEQEND + 5 +20D8 + 8 +ERDBODEN + 0 +LINE + 5 +179E + 8 +0 + 62 + 0 + 10 +7146.942562 + 20 +5563.048321 + 30 +0.0 + 11 +7146.942562 + 21 +5563.048321 + 31 +0.0 + 0 +LINE + 5 +179F + 8 +0 + 62 + 0 + 10 +7145.682695 + 20 +5601.584796 + 30 +0.0 + 11 +7145.682695 + 21 +5601.584796 + 31 +0.0 + 0 +LINE + 5 +17A0 + 8 +0 + 62 + 0 + 10 +7144.422828 + 20 +5640.121271 + 30 +0.0 + 11 +7144.422828 + 21 +5640.121271 + 31 +0.0 + 0 +LINE + 5 +17A1 + 8 +0 + 62 + 0 + 10 +7143.162961 + 20 +5678.657747 + 30 +0.0 + 11 +7143.162961 + 21 +5678.657747 + 31 +0.0 + 0 +LINE + 5 +17A2 + 8 +0 + 62 + 0 + 10 +7141.903094 + 20 +5717.194222 + 30 +0.0 + 11 +7141.903094 + 21 +5717.194222 + 31 +0.0 + 0 +LINE + 5 +17A3 + 8 +0 + 62 + 0 + 10 +7140.643227 + 20 +5755.730697 + 30 +0.0 + 11 +7140.643227 + 21 +5755.730697 + 31 +0.0 + 0 +LINE + 5 +17A4 + 8 +0 + 62 + 0 + 10 +7148.20243 + 20 +5524.511845 + 30 +0.0 + 11 +7148.20243 + 21 +5524.511845 + 31 +0.0 + 0 +LINE + 5 +17A5 + 8 +0 + 62 + 0 + 10 +7149.462297 + 20 +5485.97537 + 30 +0.0 + 11 +7149.462297 + 21 +5485.97537 + 31 +0.0 + 0 +LINE + 5 +17A6 + 8 +0 + 62 + 0 + 10 +7150.722164 + 20 +5447.438894 + 30 +0.0 + 11 +7150.722164 + 21 +5447.438894 + 31 +0.0 + 0 +LINE + 5 +17A7 + 8 +0 + 62 + 0 + 10 +7126.198047 + 20 +5389.117673 + 30 +0.0 + 11 +7126.198047 + 21 +5389.117673 + 31 +0.0 + 0 +LINE + 5 +17A8 + 8 +0 + 62 + 0 + 10 +7151.982031 + 20 +5408.902419 + 30 +0.0 + 11 +7151.982031 + 21 +5408.902419 + 31 +0.0 + 0 +LINE + 5 +17A9 + 8 +0 + 62 + 0 + 10 +7127.457915 + 20 +5350.581197 + 30 +0.0 + 11 +7127.457915 + 21 +5350.581197 + 31 +0.0 + 0 +LINE + 5 +17AA + 8 +0 + 62 + 0 + 10 +7153.241898 + 20 +5370.365944 + 30 +0.0 + 11 +7153.241898 + 21 +5370.365944 + 31 +0.0 + 0 +LINE + 5 +17AB + 8 +0 + 62 + 0 + 10 +7128.717782 + 20 +5312.044722 + 30 +0.0 + 11 +7128.717782 + 21 +5312.044722 + 31 +0.0 + 0 +LINE + 5 +17AC + 8 +0 + 62 + 0 + 10 +7154.501765 + 20 +5331.829468 + 30 +0.0 + 11 +7154.501765 + 21 +5331.829468 + 31 +0.0 + 0 +LINE + 5 +17AD + 8 +0 + 62 + 0 + 10 +7129.977649 + 20 +5273.508246 + 30 +0.0 + 11 +7129.977649 + 21 +5273.508246 + 31 +0.0 + 0 +LINE + 5 +17AE + 8 +0 + 62 + 0 + 10 +7155.761633 + 20 +5293.292993 + 30 +0.0 + 11 +7155.761633 + 21 +5293.292993 + 31 +0.0 + 0 +LINE + 5 +17AF + 8 +0 + 62 + 0 + 10 +7131.237516 + 20 +5234.971771 + 30 +0.0 + 11 +7131.237516 + 21 +5234.971771 + 31 +0.0 + 0 +LINE + 5 +17B0 + 8 +0 + 62 + 0 + 10 +7157.0215 + 20 +5254.756518 + 30 +0.0 + 11 +7157.0215 + 21 +5254.756518 + 31 +0.0 + 0 +LINE + 5 +17B1 + 8 +0 + 62 + 0 + 10 +7132.497383 + 20 +5196.435296 + 30 +0.0 + 11 +7132.497383 + 21 +5196.435296 + 31 +0.0 + 0 +LINE + 5 +17B2 + 8 +0 + 62 + 0 + 10 +7158.281367 + 20 +5216.220042 + 30 +0.0 + 11 +7158.281367 + 21 +5216.220042 + 31 +0.0 + 0 +LINE + 5 +17B3 + 8 +0 + 62 + 0 + 10 +7133.75725 + 20 +5157.89882 + 30 +0.0 + 11 +7133.75725 + 21 +5157.89882 + 31 +0.0 + 0 +LINE + 5 +17B4 + 8 +0 + 62 + 0 + 10 +7159.541234 + 20 +5177.683567 + 30 +0.0 + 11 +7159.541234 + 21 +5177.683567 + 31 +0.0 + 0 +LINE + 5 +17B5 + 8 +0 + 62 + 0 + 10 +7135.017118 + 20 +5119.362345 + 30 +0.0 + 11 +7135.017118 + 21 +5119.362345 + 31 +0.0 + 0 +LINE + 5 +17B6 + 8 +0 + 62 + 0 + 10 +7160.801101 + 20 +5139.147091 + 30 +0.0 + 11 +7160.801101 + 21 +5139.147091 + 31 +0.0 + 0 +LINE + 5 +17B7 + 8 +0 + 62 + 0 + 10 +7136.276985 + 20 +5080.82587 + 30 +0.0 + 11 +7136.276985 + 21 +5080.82587 + 31 +0.0 + 0 +LINE + 5 +17B8 + 8 +0 + 62 + 0 + 10 +7162.060968 + 20 +5100.610616 + 30 +0.0 + 11 +7162.060968 + 21 +5100.610616 + 31 +0.0 + 0 +LINE + 5 +17B9 + 8 +0 + 62 + 0 + 10 +7137.536852 + 20 +5042.289394 + 30 +0.0 + 11 +7137.536852 + 21 +5042.289394 + 31 +0.0 + 0 +LINE + 5 +17BA + 8 +0 + 62 + 0 + 10 +7138.796719 + 20 +5003.752919 + 30 +0.0 + 11 +7138.796719 + 21 +5003.752919 + 31 +0.0 + 0 +LINE + 5 +17BB + 8 +0 + 62 + 0 + 10 +7140.056586 + 20 +4965.216443 + 30 +0.0 + 11 +7140.056586 + 21 +4965.216443 + 31 +0.0 + 0 +LINE + 5 +17BC + 8 +0 + 62 + 0 + 10 +7134.026277 + 20 +5547.900342 + 30 +0.0 + 11 +7134.026277 + 21 +5547.900342 + 31 +0.0 + 0 +LINE + 5 +17BD + 8 +0 + 62 + 0 + 10 +7150.285973 + 20 +5550.040971 + 30 +0.0 + 11 +7150.285973 + 21 +5550.040971 + 31 +0.0 + 0 +LINE + 5 +17BE + 8 +0 + 62 + 0 + 10 +7131.846051 + 20 +5599.39632 + 30 +0.0 + 11 +7131.846051 + 21 +5599.39632 + 31 +0.0 + 0 +LINE + 5 +17BF + 8 +0 + 62 + 0 + 10 +7159.01164 + 20 +5602.972738 + 30 +0.0 + 11 +7159.01164 + 21 +5602.972738 + 31 +0.0 + 0 +LINE + 5 +17C0 + 8 +0 + 62 + 0 + 10 +7140.571719 + 20 +5652.328087 + 30 +0.0 + 11 +7140.571719 + 21 +5652.328087 + 31 +0.0 + 0 +LINE + 5 +17C1 + 8 +0 + 62 + 0 + 10 +7150.98189 + 20 +5653.698612 + 30 +0.0 + 11 +7150.98189 + 21 +5653.698612 + 31 +0.0 + 0 +LINE + 5 +17C2 + 8 +0 + 62 + 0 + 10 +7132.541968 + 20 +5703.053961 + 30 +0.0 + 11 +7132.541968 + 21 +5703.053961 + 31 +0.0 + 0 +LINE + 5 +17C3 + 8 +0 + 62 + 0 + 10 +7148.801663 + 20 +5705.194591 + 30 +0.0 + 11 +7148.801663 + 21 +5705.194591 + 31 +0.0 + 0 +LINE + 5 +17C4 + 8 +0 + 62 + 0 + 10 +7130.361742 + 20 +5754.54994 + 30 +0.0 + 11 +7130.361742 + 21 +5754.54994 + 31 +0.0 + 0 +LINE + 5 +17C5 + 8 +0 + 62 + 0 + 10 +7157.527331 + 20 +5758.126357 + 30 +0.0 + 11 +7157.527331 + 21 +5758.126357 + 31 +0.0 + 0 +LINE + 5 +17C6 + 8 +0 + 62 + 0 + 10 +7142.056028 + 20 +5497.174468 + 30 +0.0 + 11 +7142.056028 + 21 +5497.174468 + 31 +0.0 + 0 +LINE + 5 +17C7 + 8 +0 + 62 + 0 + 10 +7152.466199 + 20 +5498.544993 + 30 +0.0 + 11 +7152.466199 + 21 +5498.544993 + 31 +0.0 + 0 +LINE + 5 +17C8 + 8 +0 + 62 + 0 + 10 +7133.330361 + 20 +5444.242701 + 30 +0.0 + 11 +7133.330361 + 21 +5444.242701 + 31 +0.0 + 0 +LINE + 5 +17C9 + 8 +0 + 62 + 0 + 10 +7160.49595 + 20 +5447.819119 + 30 +0.0 + 11 +7160.49595 + 21 +5447.819119 + 31 +0.0 + 0 +LINE + 5 +17CA + 8 +0 + 62 + 0 + 10 +7125.100416 + 20 +5391.376197 + 30 +0.0 + 11 +7125.100416 + 21 +5391.376197 + 31 +0.0 + 0 +LINE + 5 +17CB + 8 +0 + 62 + 0 + 10 +7135.510587 + 20 +5392.746722 + 30 +0.0 + 11 +7135.510587 + 21 +5392.746722 + 31 +0.0 + 0 +LINE + 5 +17CC + 8 +0 + 62 + 0 + 10 +7151.770283 + 20 +5394.887352 + 30 +0.0 + 11 +7151.770283 + 21 +5394.887352 + 31 +0.0 + 0 +LINE + 5 +17CD + 8 +0 + 62 + 0 + 10 +7143.540338 + 20 +5342.020848 + 30 +0.0 + 11 +7143.540338 + 21 +5342.020848 + 31 +0.0 + 0 +LINE + 5 +17CE + 8 +0 + 62 + 0 + 10 +7153.950509 + 20 +5343.391373 + 30 +0.0 + 11 +7153.950509 + 21 +5343.391373 + 31 +0.0 + 0 +LINE + 5 +17CF + 8 +0 + 62 + 0 + 10 +7134.81467 + 20 +5289.089081 + 30 +0.0 + 11 +7134.81467 + 21 +5289.089081 + 31 +0.0 + 0 +LINE + 5 +17D0 + 8 +0 + 62 + 0 + 10 +7161.98026 + 20 +5292.665499 + 30 +0.0 + 11 +7161.98026 + 21 +5292.665499 + 31 +0.0 + 0 +LINE + 5 +17D1 + 8 +0 + 62 + 0 + 10 +7126.584726 + 20 +5236.222578 + 30 +0.0 + 11 +7126.584726 + 21 +5236.222578 + 31 +0.0 + 0 +LINE + 5 +17D2 + 8 +0 + 62 + 0 + 10 +7136.994897 + 20 +5237.593103 + 30 +0.0 + 11 +7136.994897 + 21 +5237.593103 + 31 +0.0 + 0 +LINE + 5 +17D3 + 8 +0 + 62 + 0 + 10 +7153.254592 + 20 +5239.733732 + 30 +0.0 + 11 +7153.254592 + 21 +5239.733732 + 31 +0.0 + 0 +LINE + 5 +17D4 + 8 +0 + 62 + 0 + 10 +7145.024647 + 20 +5186.867229 + 30 +0.0 + 11 +7145.024647 + 21 +5186.867229 + 31 +0.0 + 0 +LINE + 5 +17D5 + 8 +0 + 62 + 0 + 10 +7155.434818 + 20 +5188.237754 + 30 +0.0 + 11 +7155.434818 + 21 +5188.237754 + 31 +0.0 + 0 +LINE + 5 +17D6 + 8 +0 + 62 + 0 + 10 +7136.29898 + 20 +5133.935462 + 30 +0.0 + 11 +7136.29898 + 21 +5133.935462 + 31 +0.0 + 0 +LINE + 5 +17D7 + 8 +0 + 62 + 0 + 10 +7128.069035 + 20 +5081.068958 + 30 +0.0 + 11 +7128.069035 + 21 +5081.068958 + 31 +0.0 + 0 +LINE + 5 +17D8 + 8 +0 + 62 + 0 + 10 +7138.479206 + 20 +5082.439483 + 30 +0.0 + 11 +7138.479206 + 21 +5082.439483 + 31 +0.0 + 0 +LINE + 5 +17D9 + 8 +0 + 62 + 0 + 10 +7154.738902 + 20 +5084.580113 + 30 +0.0 + 11 +7154.738902 + 21 +5084.580113 + 31 +0.0 + 0 +LINE + 5 +17DA + 8 +0 + 62 + 0 + 10 +7146.508957 + 20 +5031.713609 + 30 +0.0 + 11 +7146.508957 + 21 +5031.713609 + 31 +0.0 + 0 +LINE + 5 +17DB + 8 +0 + 62 + 0 + 10 +7156.919128 + 20 +5033.084134 + 30 +0.0 + 11 +7156.919128 + 21 +5033.084134 + 31 +0.0 + 0 +LINE + 5 +17DC + 8 +0 + 62 + 0 + 10 +7137.78329 + 20 +4978.781843 + 30 +0.0 + 11 +7137.78329 + 21 +4978.781843 + 31 +0.0 + 0 +LINE + 5 +17DD + 8 +0 + 62 + 0 + 10 +7127.706769 + 20 +5550.576067 + 30 +0.0 + 11 +7127.706769 + 21 +5550.576067 + 31 +0.0 + 0 +LINE + 5 +17DE + 8 +0 + 62 + 0 + 10 +7151.1936 + 20 +5575.40503 + 30 +0.0 + 11 +7151.1936 + 21 +5575.40503 + 31 +0.0 + 0 +LINE + 5 +17DF + 8 +0 + 62 + 0 + 10 +7159.627514 + 20 +5570.032034 + 30 +0.0 + 11 +7159.627514 + 21 +5570.032034 + 31 +0.0 + 0 +LINE + 5 +17E0 + 8 +0 + 62 + 0 + 10 +7135.041033 + 20 +5625.487075 + 30 +0.0 + 11 +7135.041033 + 21 +5625.487075 + 31 +0.0 + 0 +LINE + 5 +17E1 + 8 +0 + 62 + 0 + 10 +7143.474947 + 20 +5620.114079 + 30 +0.0 + 11 +7143.474947 + 21 +5620.114079 + 31 +0.0 + 0 +LINE + 5 +17E2 + 8 +0 + 62 + 0 + 10 +7127.32238 + 20 +5670.196123 + 30 +0.0 + 11 +7127.32238 + 21 +5670.196123 + 31 +0.0 + 0 +LINE + 5 +17E3 + 8 +0 + 62 + 0 + 10 +7157.684472 + 20 +5650.853337 + 30 +0.0 + 11 +7157.684472 + 21 +5650.853337 + 31 +0.0 + 0 +LINE + 5 +17E4 + 8 +0 + 62 + 0 + 10 +7141.531905 + 20 +5700.935382 + 30 +0.0 + 11 +7141.531905 + 21 +5700.935382 + 31 +0.0 + 0 +LINE + 5 +17E5 + 8 +0 + 62 + 0 + 10 +7125.379337 + 20 +5751.017427 + 30 +0.0 + 11 +7125.379337 + 21 +5751.017427 + 31 +0.0 + 0 +LINE + 5 +17E6 + 8 +0 + 62 + 0 + 10 +7148.866168 + 20 +5775.84639 + 30 +0.0 + 11 +7148.866168 + 21 +5775.84639 + 31 +0.0 + 0 +LINE + 5 +17E7 + 8 +0 + 62 + 0 + 10 +7157.300083 + 20 +5770.473394 + 30 +0.0 + 11 +7157.300083 + 21 +5770.473394 + 31 +0.0 + 0 +LINE + 5 +17E8 + 8 +0 + 62 + 0 + 10 +7143.859336 + 20 +5500.494022 + 30 +0.0 + 11 +7143.859336 + 21 +5500.494022 + 31 +0.0 + 0 +LINE + 5 +17E9 + 8 +0 + 62 + 0 + 10 +7129.649811 + 20 +5469.754764 + 30 +0.0 + 11 +7129.649811 + 21 +5469.754764 + 31 +0.0 + 0 +LINE + 5 +17EA + 8 +0 + 62 + 0 + 10 +7160.011904 + 20 +5450.411978 + 30 +0.0 + 11 +7160.011904 + 21 +5450.411978 + 31 +0.0 + 0 +LINE + 5 +17EB + 8 +0 + 62 + 0 + 10 +7137.368464 + 20 +5425.045715 + 30 +0.0 + 11 +7137.368464 + 21 +5425.045715 + 31 +0.0 + 0 +LINE + 5 +17EC + 8 +0 + 62 + 0 + 10 +7145.802379 + 20 +5419.672719 + 30 +0.0 + 11 +7145.802379 + 21 +5419.672719 + 31 +0.0 + 0 +LINE + 5 +17ED + 8 +0 + 62 + 0 + 10 +7153.521031 + 20 +5374.96367 + 30 +0.0 + 11 +7153.521031 + 21 +5374.96367 + 31 +0.0 + 0 +LINE + 5 +17EE + 8 +0 + 62 + 0 + 10 +7161.954946 + 20 +5369.590674 + 30 +0.0 + 11 +7161.954946 + 21 +5369.590674 + 31 +0.0 + 0 +LINE + 5 +17EF + 8 +0 + 62 + 0 + 10 +7130.034201 + 20 +5350.134707 + 30 +0.0 + 11 +7130.034201 + 21 +5350.134707 + 31 +0.0 + 0 +LINE + 5 +17F0 + 8 +0 + 62 + 0 + 10 +7146.186768 + 20 +5300.052663 + 30 +0.0 + 11 +7146.186768 + 21 +5300.052663 + 31 +0.0 + 0 +LINE + 5 +17F1 + 8 +0 + 62 + 0 + 10 +7131.977243 + 20 +5269.313404 + 30 +0.0 + 11 +7131.977243 + 21 +5269.313404 + 31 +0.0 + 0 +LINE + 5 +17F2 + 8 +0 + 62 + 0 + 10 +7162.339335 + 20 +5249.970618 + 30 +0.0 + 11 +7162.339335 + 21 +5249.970618 + 31 +0.0 + 0 +LINE + 5 +17F3 + 8 +0 + 62 + 0 + 10 +7139.695896 + 20 +5224.604355 + 30 +0.0 + 11 +7139.695896 + 21 +5224.604355 + 31 +0.0 + 0 +LINE + 5 +17F4 + 8 +0 + 62 + 0 + 10 +7148.12981 + 20 +5219.231359 + 30 +0.0 + 11 +7148.12981 + 21 +5219.231359 + 31 +0.0 + 0 +LINE + 5 +17F5 + 8 +0 + 62 + 0 + 10 +7155.848463 + 20 +5174.522311 + 30 +0.0 + 11 +7155.848463 + 21 +5174.522311 + 31 +0.0 + 0 +LINE + 5 +17F6 + 8 +0 + 62 + 0 + 10 +7132.361632 + 20 +5149.693348 + 30 +0.0 + 11 +7132.361632 + 21 +5149.693348 + 31 +0.0 + 0 +LINE + 5 +17F7 + 8 +0 + 62 + 0 + 10 +7148.5142 + 20 +5099.611303 + 30 +0.0 + 11 +7148.5142 + 21 +5099.611303 + 31 +0.0 + 0 +LINE + 5 +17F8 + 8 +0 + 62 + 0 + 10 +7125.87076 + 20 +5074.24504 + 30 +0.0 + 11 +7125.87076 + 21 +5074.24504 + 31 +0.0 + 0 +LINE + 5 +17F9 + 8 +0 + 62 + 0 + 10 +7134.304675 + 20 +5068.872044 + 30 +0.0 + 11 +7134.304675 + 21 +5068.872044 + 31 +0.0 + 0 +LINE + 5 +17FA + 8 +0 + 62 + 0 + 10 +7142.023328 + 20 +5024.162996 + 30 +0.0 + 11 +7142.023328 + 21 +5024.162996 + 31 +0.0 + 0 +LINE + 5 +17FB + 8 +0 + 62 + 0 + 10 +7150.457242 + 20 +5018.79 + 30 +0.0 + 11 +7150.457242 + 21 +5018.79 + 31 +0.0 + 0 +LINE + 5 +17FC + 8 +0 + 62 + 0 + 10 +7158.175895 + 20 +4974.080951 + 30 +0.0 + 11 +7158.175895 + 21 +4974.080951 + 31 +0.0 + 0 +LINE + 5 +17FD + 8 +0 + 62 + 0 + 10 +7127.249552 + 20 +5505.717148 + 30 +0.0 + 11 +7127.249552 + 21 +5505.717148 + 31 +0.0 + 0 +LINE + 5 +17FE + 8 +0 + 62 + 0 + 10 +7130.935939 + 20 +5502.339197 + 30 +0.0 + 11 +7130.935939 + 21 +5502.339197 + 31 +0.0 + 0 +LINE + 5 +17FF + 8 +0 + 62 + 0 + 10 +7148.335684 + 20 +5486.395268 + 30 +0.0 + 11 +7148.335684 + 21 +5486.395268 + 31 +0.0 + 0 +LINE + 5 +1800 + 8 +0 + 62 + 0 + 10 +7126.472976 + 20 +5579.074411 + 30 +0.0 + 11 +7126.472976 + 21 +5579.074411 + 31 +0.0 + 0 +LINE + 5 +1801 + 8 +0 + 62 + 0 + 10 +7146.379464 + 20 +5560.833475 + 30 +0.0 + 11 +7146.379464 + 21 +5560.833475 + 31 +0.0 + 0 +LINE + 5 +1802 + 8 +0 + 62 + 0 + 10 +7150.065851 + 20 +5557.455524 + 30 +0.0 + 11 +7150.065851 + 21 +5557.455524 + 31 +0.0 + 0 +LINE + 5 +1803 + 8 +0 + 62 + 0 + 10 +7128.203143 + 20 +5650.134666 + 30 +0.0 + 11 +7128.203143 + 21 +5650.134666 + 31 +0.0 + 0 +LINE + 5 +1804 + 8 +0 + 62 + 0 + 10 +7145.602888 + 20 +5634.190737 + 30 +0.0 + 11 +7145.602888 + 21 +5634.190737 + 31 +0.0 + 0 +LINE + 5 +1805 + 8 +0 + 62 + 0 + 10 +7143.646669 + 20 +5708.628944 + 30 +0.0 + 11 +7143.646669 + 21 +5708.628944 + 31 +0.0 + 0 +LINE + 5 +1806 + 8 +0 + 62 + 0 + 10 +7147.333055 + 20 +5705.250993 + 30 +0.0 + 11 +7147.333055 + 21 +5705.250993 + 31 +0.0 + 0 +LINE + 5 +1807 + 8 +0 + 62 + 0 + 10 +7142.870093 + 20 +5781.986207 + 30 +0.0 + 11 +7142.870093 + 21 +5781.986207 + 31 +0.0 + 0 +LINE + 5 +1808 + 8 +0 + 62 + 0 + 10 +7129.205772 + 20 +5431.278941 + 30 +0.0 + 11 +7129.205772 + 21 +5431.278941 + 31 +0.0 + 0 +LINE + 5 +1809 + 8 +0 + 62 + 0 + 10 +7149.11226 + 20 +5413.038006 + 30 +0.0 + 11 +7149.11226 + 21 +5413.038006 + 31 +0.0 + 0 +LINE + 5 +180A + 8 +0 + 62 + 0 + 10 +7152.798647 + 20 +5409.660055 + 30 +0.0 + 11 +7152.798647 + 21 +5409.660055 + 31 +0.0 + 0 +LINE + 5 +180B + 8 +0 + 62 + 0 + 10 +7129.982348 + 20 +5357.921679 + 30 +0.0 + 11 +7129.982348 + 21 +5357.921679 + 31 +0.0 + 0 +LINE + 5 +180C + 8 +0 + 62 + 0 + 10 +7133.668735 + 20 +5354.543728 + 30 +0.0 + 11 +7133.668735 + 21 +5354.543728 + 31 +0.0 + 0 +LINE + 5 +180D + 8 +0 + 62 + 0 + 10 +7151.06848 + 20 +5338.599799 + 30 +0.0 + 11 +7151.06848 + 21 +5338.599799 + 31 +0.0 + 0 +LINE + 5 +180E + 8 +0 + 62 + 0 + 10 +7131.938568 + 20 +5283.483472 + 30 +0.0 + 11 +7131.938568 + 21 +5283.483472 + 31 +0.0 + 0 +LINE + 5 +180F + 8 +0 + 62 + 0 + 10 +7151.845056 + 20 +5265.242536 + 30 +0.0 + 11 +7151.845056 + 21 +5265.242536 + 31 +0.0 + 0 +LINE + 5 +1810 + 8 +0 + 62 + 0 + 10 +7155.531442 + 20 +5261.864585 + 30 +0.0 + 11 +7155.531442 + 21 +5261.864585 + 31 +0.0 + 0 +LINE + 5 +1811 + 8 +0 + 62 + 0 + 10 +7132.715143 + 20 +5210.12621 + 30 +0.0 + 11 +7132.715143 + 21 +5210.12621 + 31 +0.0 + 0 +LINE + 5 +1812 + 8 +0 + 62 + 0 + 10 +7136.40153 + 20 +5206.748259 + 30 +0.0 + 11 +7136.40153 + 21 +5206.748259 + 31 +0.0 + 0 +LINE + 5 +1813 + 8 +0 + 62 + 0 + 10 +7153.801275 + 20 +5190.80433 + 30 +0.0 + 11 +7153.801275 + 21 +5190.80433 + 31 +0.0 + 0 +LINE + 5 +1814 + 8 +0 + 62 + 0 + 10 +7134.671363 + 20 +5135.688003 + 30 +0.0 + 11 +7134.671363 + 21 +5135.688003 + 31 +0.0 + 0 +LINE + 5 +1815 + 8 +0 + 62 + 0 + 10 +7154.577851 + 20 +5117.447067 + 30 +0.0 + 11 +7154.577851 + 21 +5117.447067 + 31 +0.0 + 0 +LINE + 5 +1816 + 8 +0 + 62 + 0 + 10 +7158.264238 + 20 +5114.069116 + 30 +0.0 + 11 +7158.264238 + 21 +5114.069116 + 31 +0.0 + 0 +LINE + 5 +1817 + 8 +0 + 62 + 0 + 10 +7135.447939 + 20 +5062.33074 + 30 +0.0 + 11 +7135.447939 + 21 +5062.33074 + 31 +0.0 + 0 +LINE + 5 +1818 + 8 +0 + 62 + 0 + 10 +7139.134326 + 20 +5058.952789 + 30 +0.0 + 11 +7139.134326 + 21 +5058.952789 + 31 +0.0 + 0 +LINE + 5 +1819 + 8 +0 + 62 + 0 + 10 +7156.534071 + 20 +5043.00886 + 30 +0.0 + 11 +7156.534071 + 21 +5043.00886 + 31 +0.0 + 0 +LINE + 5 +181A + 8 +0 + 62 + 0 + 10 +7137.404159 + 20 +4987.892534 + 30 +0.0 + 11 +7137.404159 + 21 +4987.892534 + 31 +0.0 + 0 +LINE + 5 +181B + 8 +0 + 62 + 0 + 10 +7157.310647 + 20 +4969.651598 + 30 +0.0 + 11 +7157.310647 + 21 +4969.651598 + 31 +0.0 + 0 +LINE + 5 +181C + 8 +0 + 62 + 0 + 10 +7160.997033 + 20 +4966.273647 + 30 +0.0 + 11 +7160.997033 + 21 +4966.273647 + 31 +0.0 + 0 +DIMENSION + 5 +181D + 8 +BEMASSUNG + 2 +*D39 + 10 +9820.0 + 20 +4225.0 + 30 +0.0 + 11 +9732.5 + 21 +3537.5 + 31 +0.0 + 1 +55 + 13 +7915.0 + 23 +2850.0 + 33 +0.0 + 14 +7915.0 + 24 +4225.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +181E + 8 +BEMASSUNG + 2 +*D40 + 10 +9820.0 + 20 +4625.0 + 30 +0.0 + 11 +9732.5 + 21 +4425.0 + 31 +0.0 + 1 +16 + 13 +7915.0 + 23 +4225.0 + 33 +0.0 + 14 +8530.0 + 24 +4625.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +181F + 8 +BEMASSUNG + 2 +*D41 + 10 +9820.0 + 20 +4780.0 + 30 +0.0 + 11 +9732.5 + 21 +4702.5 + 31 +0.0 + 1 +4 + 13 +8530.0 + 23 +4625.0 + 33 +0.0 + 14 +8555.0 + 24 +4780.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1820 + 8 +BEMASSUNG + 2 +*D42 + 10 +9820.0 + 20 +4900.0 + 30 +0.0 + 11 +9732.5 + 21 +4840.0 + 31 +0.0 + 1 +4 + 13 +8555.0 + 23 +4780.0 + 33 +0.0 + 14 +8535.0 + 24 +4900.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1821 + 8 +BEMASSUNG + 2 +*D48 + 10 +9820.0 + 20 +4960.0 + 30 +0.0 + 11 +9732.5 + 21 +5010.0 + 31 +0.0 + 70 + 128 + 1 +2 + 13 +8535.0 + 23 +4900.0 + 33 +0.0 + 14 +8540.0 + 24 +4960.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1822 + 8 +BEMASSUNG + 2 +*D43 + 10 +6185.0 + 20 +6435.0 + 30 +0.0 + 11 +6075.0 + 21 +6522.5 + 31 +0.0 + 1 +8 + 13 +5965.0 + 23 +5775.0 + 33 +0.0 + 14 +6185.0 + 24 +5775.0 + 34 +0.0 + 0 +DIMENSION + 5 +1823 + 8 +BEMASSUNG + 2 +*D44 + 10 +7125.0 + 20 +6435.0 + 30 +0.0 + 11 +6655.0 + 21 +6522.5 + 31 +0.0 + 1 +36 + 13 +6185.0 + 23 +5775.0 + 33 +0.0 + 14 +7125.0 + 24 +5780.0 + 34 +0.0 + 0 +DIMENSION + 5 +1824 + 8 +BEMASSUNG + 2 +*D47 + 10 +7160.0 + 20 +6435.0 + 30 +0.0 + 11 +7215.0 + 21 +6522.5 + 31 +0.0 + 70 + 128 + 1 +1 + 13 +7125.0 + 23 +5780.0 + 33 +0.0 + 14 +7160.0 + 24 +5785.0 + 34 +0.0 + 0 +DIMENSION + 5 +1825 + 8 +BEMASSUNG + 2 +*D45 + 10 +7920.0 + 20 +1715.0 + 30 +0.0 + 11 +6670.0 + 21 +1802.5 + 31 +0.0 + 1 +100 + 13 +5420.0 + 23 +2850.0 + 33 +0.0 + 14 +7920.0 + 24 +2850.0 + 34 +0.0 + 0 +POINT + 5 +1826 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5789.0709 + 30 +0.0 + 0 +POINT + 5 +1827 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5769.0709 + 30 +0.0 + 0 +POINT + 5 +1828 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5749.0709 + 30 +0.0 + 0 +POINT + 5 +1829 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5729.0709 + 30 +0.0 + 0 +POINT + 5 +182A + 8 +BEMASSUNG + 10 +6175.0 + 20 +5709.0709 + 30 +0.0 + 0 +POINT + 5 +182B + 8 +BEMASSUNG + 10 +6175.0 + 20 +5689.0709 + 30 +0.0 + 0 +POINT + 5 +182C + 8 +BEMASSUNG + 10 +6175.0 + 20 +5669.0709 + 30 +0.0 + 0 +POINT + 5 +182D + 8 +BEMASSUNG + 10 +6175.0 + 20 +5649.0709 + 30 +0.0 + 0 +POINT + 5 +182E + 8 +BEMASSUNG + 10 +6175.0 + 20 +5629.0709 + 30 +0.0 + 0 +POINT + 5 +182F + 8 +BEMASSUNG + 10 +6175.0 + 20 +5609.0709 + 30 +0.0 + 0 +POINT + 5 +1830 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5589.0709 + 30 +0.0 + 0 +POINT + 5 +1831 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5569.0709 + 30 +0.0 + 0 +POINT + 5 +1832 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5549.0709 + 30 +0.0 + 0 +POINT + 5 +1833 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5529.0709 + 30 +0.0 + 0 +POINT + 5 +1834 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5509.0709 + 30 +0.0 + 0 +POINT + 5 +1835 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5489.0709 + 30 +0.0 + 0 +POINT + 5 +1836 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5469.0709 + 30 +0.0 + 0 +POINT + 5 +1837 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5449.0709 + 30 +0.0 + 0 +POINT + 5 +1838 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5429.0709 + 30 +0.0 + 0 +POINT + 5 +1839 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5409.0709 + 30 +0.0 + 0 +POINT + 5 +183A + 8 +BEMASSUNG + 10 +6175.0 + 20 +5389.0709 + 30 +0.0 + 0 +POINT + 5 +183B + 8 +BEMASSUNG + 10 +6175.0 + 20 +5369.0709 + 30 +0.0 + 0 +POINT + 5 +183C + 8 +BEMASSUNG + 10 +6175.0 + 20 +5349.0709 + 30 +0.0 + 0 +POINT + 5 +183D + 8 +BEMASSUNG + 10 +6175.0 + 20 +5329.0709 + 30 +0.0 + 0 +POINT + 5 +183E + 8 +BEMASSUNG + 10 +6175.0 + 20 +5309.0709 + 30 +0.0 + 0 +POINT + 5 +183F + 8 +BEMASSUNG + 10 +6175.0 + 20 +5289.0709 + 30 +0.0 + 0 +POINT + 5 +1840 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5269.0709 + 30 +0.0 + 0 +POINT + 5 +1841 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5249.0709 + 30 +0.0 + 0 +POINT + 5 +1842 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5229.0709 + 30 +0.0 + 0 +POINT + 5 +1843 + 8 +BEMASSUNG + 10 +6175.0 + 20 +5209.0709 + 30 +0.0 + 0 +POINT + 5 +1844 + 8 +BEMASSUNG + 10 +6171.869511 + 20 +5189.673777 + 30 +0.0 + 0 +POINT + 5 +1845 + 8 +BEMASSUNG + 10 +6164.441697 + 20 +5171.104243 + 30 +0.0 + 0 +POINT + 5 +1846 + 8 +BEMASSUNG + 10 +6157.013884 + 20 +5152.534709 + 30 +0.0 + 0 +POINT + 5 +1847 + 8 +BEMASSUNG + 10 +6149.977259 + 20 +5133.885692 + 30 +0.0 + 0 +POINT + 5 +1848 + 8 +BEMASSUNG + 10 +6149.569181 + 20 +5113.889856 + 30 +0.0 + 0 +POINT + 5 +1849 + 8 +BEMASSUNG + 10 +6149.161102 + 20 +5093.894019 + 30 +0.0 + 0 +POINT + 5 +184A + 8 +BEMASSUNG + 10 +6148.753024 + 20 +5073.898183 + 30 +0.0 + 0 +POINT + 5 +184B + 8 +BEMASSUNG + 10 +6148.344946 + 20 +5053.902346 + 30 +0.0 + 0 +POINT + 5 +184C + 8 +BEMASSUNG + 10 +6147.936868 + 20 +5033.90651 + 30 +0.0 + 0 +POINT + 5 +184D + 8 +BEMASSUNG + 10 +6147.528789 + 20 +5013.910674 + 30 +0.0 + 0 +POINT + 5 +184E + 8 +BEMASSUNG + 10 +6147.120711 + 20 +4993.914837 + 30 +0.0 + 0 +POINT + 5 +184F + 8 +BEMASSUNG + 10 +6146.712633 + 20 +4973.919001 + 30 +0.0 + 0 +POINT + 5 +1850 + 8 +BEMASSUNG + 10 +6146.304554 + 20 +4953.923165 + 30 +0.0 + 0 +POINT + 5 +1851 + 8 +BEMASSUNG + 10 +6145.896476 + 20 +4933.927328 + 30 +0.0 + 0 +POINT + 5 +1852 + 8 +BEMASSUNG + 10 +6145.488398 + 20 +4913.931492 + 30 +0.0 + 0 +POINT + 5 +1853 + 8 +BEMASSUNG + 10 +6145.080319 + 20 +4893.935655 + 30 +0.0 + 0 +POINT + 5 +1854 + 8 +BEMASSUNG + 10 +6144.672241 + 20 +4873.939819 + 30 +0.0 + 0 +POINT + 5 +1855 + 8 +BEMASSUNG + 10 +6144.264163 + 20 +4853.943983 + 30 +0.0 + 0 +POINT + 5 +1856 + 8 +BEMASSUNG + 10 +6143.856085 + 20 +4833.948146 + 30 +0.0 + 0 +POINT + 5 +1857 + 8 +BEMASSUNG + 10 +6143.448006 + 20 +4813.95231 + 30 +0.0 + 0 +POINT + 5 +1858 + 8 +BEMASSUNG + 10 +6143.039928 + 20 +4793.956474 + 30 +0.0 + 0 +POINT + 5 +1859 + 8 +BEMASSUNG + 10 +6142.63185 + 20 +4773.960637 + 30 +0.0 + 0 +POINT + 5 +185A + 8 +BEMASSUNG + 10 +6142.223771 + 20 +4753.964801 + 30 +0.0 + 0 +POINT + 5 +185B + 8 +BEMASSUNG + 10 +6141.815693 + 20 +4733.968965 + 30 +0.0 + 0 +POINT + 5 +185C + 8 +BEMASSUNG + 10 +6141.407615 + 20 +4713.973128 + 30 +0.0 + 0 +POINT + 5 +185D + 8 +BEMASSUNG + 10 +6140.999537 + 20 +4693.977292 + 30 +0.0 + 0 +POINT + 5 +185E + 8 +BEMASSUNG + 10 +6140.591458 + 20 +4673.981455 + 30 +0.0 + 0 +POINT + 5 +185F + 8 +BEMASSUNG + 10 +6140.18338 + 20 +4653.985619 + 30 +0.0 + 0 +POINT + 5 +1860 + 8 +BEMASSUNG + 10 +6139.775302 + 20 +4633.989783 + 30 +0.0 + 0 +POINT + 5 +1861 + 8 +BEMASSUNG + 10 +6139.367223 + 20 +4613.993946 + 30 +0.0 + 0 +POINT + 5 +1862 + 8 +BEMASSUNG + 10 +6138.959145 + 20 +4593.99811 + 30 +0.0 + 0 +POINT + 5 +1863 + 8 +BEMASSUNG + 10 +6138.551067 + 20 +4574.002274 + 30 +0.0 + 0 +POINT + 5 +1864 + 8 +BEMASSUNG + 10 +6138.142989 + 20 +4554.006437 + 30 +0.0 + 0 +POINT + 5 +1865 + 8 +BEMASSUNG + 10 +6137.73491 + 20 +4534.010601 + 30 +0.0 + 0 +POINT + 5 +1866 + 8 +BEMASSUNG + 10 +6137.326832 + 20 +4514.014764 + 30 +0.0 + 0 +POINT + 5 +1867 + 8 +BEMASSUNG + 10 +6136.918754 + 20 +4494.018928 + 30 +0.0 + 0 +POINT + 5 +1868 + 8 +BEMASSUNG + 10 +6136.510675 + 20 +4474.023092 + 30 +0.0 + 0 +POINT + 5 +1869 + 8 +BEMASSUNG + 10 +6136.102597 + 20 +4454.027255 + 30 +0.0 + 0 +POINT + 5 +186A + 8 +BEMASSUNG + 10 +6135.694519 + 20 +4434.031419 + 30 +0.0 + 0 +POINT + 5 +186B + 8 +BEMASSUNG + 10 +6135.28644 + 20 +4414.035583 + 30 +0.0 + 0 +POINT + 5 +186C + 8 +BEMASSUNG + 10 +6130.420253 + 20 +4396.183544 + 30 +0.0 + 0 +POINT + 5 +186D + 8 +BEMASSUNG + 10 +6115.055827 + 20 +4383.379856 + 30 +0.0 + 0 +POINT + 5 +186E + 8 +BEMASSUNG + 10 +6099.691402 + 20 +4370.576168 + 30 +0.0 + 0 +POINT + 5 +186F + 8 +BEMASSUNG + 10 +6084.326976 + 20 +4357.77248 + 30 +0.0 + 0 +POINT + 5 +1870 + 8 +BEMASSUNG + 10 +6068.96255 + 20 +4344.968792 + 30 +0.0 + 0 +POINT + 5 +1871 + 8 +BEMASSUNG + 10 +6053.598125 + 20 +4332.165104 + 30 +0.0 + 0 +POINT + 5 +1872 + 8 +BEMASSUNG + 10 +6037.406706 + 20 +4320.537003 + 30 +0.0 + 0 +POINT + 5 +1873 + 8 +BEMASSUNG + 10 +6020.164405 + 20 +4310.402752 + 30 +0.0 + 0 +POINT + 5 +1874 + 8 +BEMASSUNG + 10 +6002.922103 + 20 +4300.268501 + 30 +0.0 + 0 +POINT + 5 +1875 + 8 +BEMASSUNG + 10 +5985.679802 + 20 +4290.134251 + 30 +0.0 + 0 +DIMENSION + 5 +1876 + 8 +BEMASSUNG + 2 +*D46 + 10 +4565.0 + 20 +5095.0 + 30 +0.0 + 11 +4477.5 + 21 +4877.5 + 31 +0.0 + 12 +1015.0 + 22 +0.0 + 32 +0.0 + 1 +16 + 13 +7235.0 + 23 +4660.0 + 33 +0.0 + 14 +7235.0 + 24 +5095.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1877 + 8 +LEGENDE-35 + 10 +8505.0 + 20 +6355.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 41 +0.75 + 0 +TEXT + 5 +1878 + 8 +LEGENDE-35 + 10 +8505.0 + 20 +6105.0 + 30 +0.0 + 40 +87.5 + 1 +NATURSTEINPLATTEN + 41 +0.75 + 0 +TEXT + 5 +1879 + 8 +LEGENDE-35 + 10 +8505.0 + 20 +5855.0 + 30 +0.0 + 40 +87.5 + 1 +ZEMENTESTRICH + 41 +0.75 + 0 +TEXT + 5 +187A + 8 +LEGENDE-35 + 10 +8505.0 + 20 +5605.0 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 41 +0.75 + 0 +TEXT + 5 +187B + 8 +LEGENDE-35 + 10 +8505.0 + 20 +5355.0 + 30 +0.0 + 40 +87.5 + 1 +PS-WD + 41 +0.75 + 0 +POLYLINE + 5 +187C + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20D9 + 8 +BEMASSUNG + 10 +8390.0 + 20 +6410.0 + 30 +0.0 + 0 +VERTEX + 5 +20DA + 8 +BEMASSUNG + 10 +7545.0 + 20 +6410.0 + 30 +0.0 + 0 +VERTEX + 5 +20DB + 8 +BEMASSUNG + 10 +7545.0 + 20 +5525.0 + 30 +0.0 + 0 +VERTEX + 5 +20DC + 8 +BEMASSUNG + 10 +7145.0 + 20 +5525.0 + 30 +0.0 + 0 +SEQEND + 5 +20DD + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1882 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20DE + 8 +BEMASSUNG + 10 +8390.0 + 20 +6155.0 + 30 +0.0 + 0 +VERTEX + 5 +20DF + 8 +BEMASSUNG + 10 +7655.0 + 20 +6155.0 + 30 +0.0 + 0 +VERTEX + 5 +20E0 + 8 +BEMASSUNG + 10 +7655.0 + 20 +4940.0 + 30 +0.0 + 0 +SEQEND + 5 +20E1 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1887 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20E2 + 8 +BEMASSUNG + 10 +8385.0 + 20 +5890.0 + 30 +0.0 + 0 +VERTEX + 5 +20E3 + 8 +BEMASSUNG + 10 +7825.0 + 20 +5890.0 + 30 +0.0 + 0 +VERTEX + 5 +20E4 + 8 +BEMASSUNG + 10 +7825.0 + 20 +4855.0 + 30 +0.0 + 0 +SEQEND + 5 +20E5 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +188C + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20E6 + 8 +BEMASSUNG + 10 +8385.0 + 20 +5645.0 + 30 +0.0 + 0 +VERTEX + 5 +20E7 + 8 +BEMASSUNG + 10 +7910.0 + 20 +5645.0 + 30 +0.0 + 0 +VERTEX + 5 +20E8 + 8 +BEMASSUNG + 10 +7910.0 + 20 +4790.0 + 30 +0.0 + 0 +SEQEND + 5 +20E9 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1891 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20EA + 8 +BEMASSUNG + 10 +8010.0 + 20 +5645.0 + 30 +0.0 + 0 +VERTEX + 5 +20EB + 8 +BEMASSUNG + 10 +8010.0 + 20 +4655.0 + 30 +0.0 + 0 +SEQEND + 5 +20EC + 8 +BEMASSUNG + 0 +POLYLINE + 5 +1895 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20ED + 8 +BEMASSUNG + 10 +8380.0 + 20 +5405.0 + 30 +0.0 + 0 +VERTEX + 5 +20EE + 8 +BEMASSUNG + 10 +8125.0 + 20 +5405.0 + 30 +0.0 + 0 +VERTEX + 5 +20EF + 8 +BEMASSUNG + 10 +8125.0 + 20 +4715.0 + 30 +0.0 + 0 +SEQEND + 5 +20F0 + 8 +BEMASSUNG + 0 +TEXT + 5 +189A + 8 +BEMASSUNG + 10 +2330.0 + 20 +5700.0 + 30 +0.0 + 40 +87.5 + 1 +PS-HARTSCHAUM-WD + 41 +0.75 + 0 +TEXT + 5 +189B + 8 +BEMASSUNG + 10 +2330.0 + 20 +5450.0 + 30 +0.0 + 40 +87.5 + 1 +DICHTUNGSBAHN (BITUMEN) + 41 +0.75 + 0 +TEXT + 5 +189C + 8 +BEMASSUNG + 10 +2330.0 + 20 +5200.0 + 30 +0.0 + 40 +87.5 + 1 +MW Mz-20-1.8-NF + 41 +0.75 + 0 +TEXT + 5 +189D + 8 +BEMASSUNG + 10 +2330.0 + 20 +4950.0 + 30 +0.0 + 40 +87.5 + 1 +MRTELKEHLE + 41 +0.75 + 0 +POLYLINE + 5 +189E + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20F1 + 8 +BEMASSUNG + 10 +4005.0 + 20 +5735.0 + 30 +0.0 + 0 +VERTEX + 5 +20F2 + 8 +BEMASSUNG + 10 +6080.0 + 20 +5735.0 + 30 +0.0 + 0 +SEQEND + 5 +20F3 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +18A2 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20F4 + 8 +BEMASSUNG + 10 +4010.0 + 20 +5500.0 + 30 +0.0 + 0 +VERTEX + 5 +20F5 + 8 +BEMASSUNG + 10 +6195.0 + 20 +5500.0 + 30 +0.0 + 0 +SEQEND + 5 +20F6 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +18A6 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20F7 + 8 +BEMASSUNG + 10 +3390.0 + 20 +5270.0 + 30 +0.0 + 0 +VERTEX + 5 +20F8 + 8 +BEMASSUNG + 10 +6320.0 + 20 +5270.0 + 30 +0.0 + 0 +SEQEND + 5 +20F9 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +18AA + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20FA + 8 +BEMASSUNG + 10 +3355.0 + 20 +4990.0 + 30 +0.0 + 0 +VERTEX + 5 +20FB + 8 +BEMASSUNG + 10 +4255.0 + 20 +4450.0 + 30 +0.0 + 0 +VERTEX + 5 +20FC + 8 +BEMASSUNG + 10 +5770.0 + 20 +4450.0 + 30 +0.0 + 0 +VERTEX + 5 +20FD + 8 +BEMASSUNG + 10 +6140.0 + 20 +4265.0 + 30 +0.0 + 0 +SEQEND + 5 +20FE + 8 +BEMASSUNG + 0 +TEXT + 5 +18B0 + 8 +BEMASSUNG + 10 +9300.0 + 20 +2220.0 + 30 +0.0 + 40 +87.5 + 1 +ORTBETON B25 ZWEIACHSIG GESPANNT + 41 +0.75 + 0 +TEXT + 5 +18B1 + 8 +BEMASSUNG + 10 +9300.0 + 20 +1970.0 + 30 +0.0 + 40 +87.5 + 1 +KIES + 41 +0.75 + 0 +TEXT + 5 +18B2 + 8 +BEMASSUNG + 10 +9300.0 + 20 +1720.0 + 30 +0.0 + 40 +87.5 + 1 +FUNDAMENT B15 + 41 +0.75 + 0 +POLYLINE + 5 +18B3 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +20FF + 8 +BEMASSUNG + 10 +9210.0 + 20 +2275.0 + 30 +0.0 + 0 +VERTEX + 5 +2100 + 8 +BEMASSUNG + 10 +8990.0 + 20 +2275.0 + 30 +0.0 + 0 +VERTEX + 5 +2101 + 8 +BEMASSUNG + 10 +8990.0 + 20 +4350.0 + 30 +0.0 + 0 +VERTEX + 5 +2102 + 8 +BEMASSUNG + 10 +8490.0 + 20 +4350.0 + 30 +0.0 + 0 +SEQEND + 5 +2103 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +18B9 + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2104 + 8 +BEMASSUNG + 10 +9205.0 + 20 +2010.0 + 30 +0.0 + 0 +VERTEX + 5 +2105 + 8 +BEMASSUNG + 10 +8875.0 + 20 +2010.0 + 30 +0.0 + 0 +VERTEX + 5 +2106 + 8 +BEMASSUNG + 10 +8875.0 + 20 +3755.0 + 30 +0.0 + 0 +VERTEX + 5 +2107 + 8 +BEMASSUNG + 10 +8450.0 + 20 +3755.0 + 30 +0.0 + 0 +SEQEND + 5 +2108 + 8 +BEMASSUNG + 0 +POLYLINE + 5 +18BF + 8 +BEMASSUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2109 + 8 +BEMASSUNG + 10 +9200.0 + 20 +1765.0 + 30 +0.0 + 0 +VERTEX + 5 +210A + 8 +BEMASSUNG + 10 +8620.0 + 20 +1765.0 + 30 +0.0 + 0 +VERTEX + 5 +210B + 8 +BEMASSUNG + 10 +8620.0 + 20 +2490.0 + 30 +0.0 + 0 +VERTEX + 5 +210C + 8 +BEMASSUNG + 10 +7825.0 + 20 +2490.0 + 30 +0.0 + 0 +VERTEX + 5 +210D + 8 +BEMASSUNG + 10 +7520.0 + 20 +3165.0 + 30 +0.0 + 0 +SEQEND + 5 +210E + 8 +BEMASSUNG + 0 +TEXT + 5 +18C6 + 8 +BEMASSUNG + 10 +6725.0 + 20 +6540.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +18C7 + 8 +BEMASSUNG + 10 +7235.0 + 20 +6540.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +18C8 + 8 +BEMASSUNG + 10 +9735.0 + 20 +5050.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +18C9 + 8 +LEGENDE-70 + 10 +2070.0 + 20 +7065.0 + 30 +0.0 + 40 +175.0 + 1 +KELLERFUSSBODENAUFBAU MIT FUNDAMENTENANSCHLUSS + 41 +0.75 + 0 +TEXT + 5 +18CA + 8 +LEGENDE-70 + 10 +2050.0 + 20 +14040.0 + 30 +0.0 + 40 +175.0 + 1 +GESCHOSSDECKENANSCHLUSS BER KELLERGESCHOSS + 41 +0.75 + 0 +TEXT + 5 +18CB + 8 +LEGENDE-70 + 10 +7920.0 + 20 +14035.0 + 30 +0.0 + 40 +87.5 + 1 +M 1:10 + 41 +0.75 + 0 +TEXT + 5 +18CC + 8 +LEGENDE-70 + 10 +8240.0 + 20 +7065.0 + 30 +0.0 + 40 +87.5 + 1 +M 1:10 + 41 +0.75 + 0 +TEXT + 5 +18CD + 8 +LEGENDE-70 + 10 +12515.0 + 20 +11935.0 + 30 +0.0 + 40 +175.0 + 1 +LEICHTE TRENNWAND MIT FUSSBODEN- UND DECKENANSCHLUSS + 41 +0.75 + 0 +POLYLINE + 5 +18CE + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +210F + 8 +DAEMMUNG + 10 +15727.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +2110 + 8 +DAEMMUNG + 10 +16352.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +2111 + 8 +DAEMMUNG + 10 +16352.274018 + 20 +10260.0 + 30 +0.0 + 0 +VERTEX + 5 +2112 + 8 +DAEMMUNG + 10 +15727.274018 + 20 +10260.0 + 30 +0.0 + 0 +SEQEND + 5 +2113 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +18D4 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2114 + 8 +TRENNWAND + 10 +15812.274018 + 20 +10135.0 + 30 +0.0 + 0 +VERTEX + 5 +2115 + 8 +TRENNWAND + 10 +15812.274018 + 20 +10245.0 + 30 +0.0 + 0 +VERTEX + 5 +2116 + 8 +TRENNWAND + 10 +16267.274018 + 20 +10245.0 + 30 +0.0 + 0 +VERTEX + 5 +2117 + 8 +TRENNWAND + 10 +16267.274018 + 20 +10140.0 + 30 +0.0 + 0 +SEQEND + 5 +2118 + 8 +TRENNWAND + 0 +POLYLINE + 5 +18DA + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2119 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10240.0 + 30 +0.0 + 0 +VERTEX + 5 +211A + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10285.0 + 30 +0.0 + 0 +SEQEND + 5 +211B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18DE + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +211C + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10300.0 + 30 +0.0 + 0 +VERTEX + 5 +211D + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10345.0 + 30 +0.0 + 0 +SEQEND + 5 +211E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18E2 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +211F + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10370.0 + 30 +0.0 + 0 +VERTEX + 5 +2120 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10415.0 + 30 +0.0 + 0 +SEQEND + 5 +2121 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18E6 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2122 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10445.0 + 30 +0.0 + 0 +VERTEX + 5 +2123 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10495.0 + 30 +0.0 + 0 +SEQEND + 5 +2124 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18EA + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2125 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10520.0 + 30 +0.0 + 0 +VERTEX + 5 +2126 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10560.0 + 30 +0.0 + 0 +SEQEND + 5 +2127 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18EE + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2128 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10245.0 + 30 +0.0 + 0 +VERTEX + 5 +2129 + 8 +DRAHTANKER + 10 +15992.274018 + 20 +10205.0 + 30 +0.0 + 0 +SEQEND + 5 +212A + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18F2 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +212B + 8 +DRAHTANKER + 10 +16022.274018 + 20 +10245.0 + 30 +0.0 + 0 +VERTEX + 5 +212C + 8 +DRAHTANKER + 10 +16052.274018 + 20 +10205.0 + 30 +0.0 + 0 +SEQEND + 5 +212D + 8 +DRAHTANKER + 0 +POLYLINE + 5 +18F6 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +212E + 8 +MAUERWERK + 10 +15727.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +212F + 8 +MAUERWERK + 10 +15652.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +2130 + 8 +MAUERWERK + 10 +15652.274018 + 20 +10235.0 + 30 +0.0 + 0 +VERTEX + 5 +2131 + 8 +MAUERWERK + 10 +15727.274018 + 20 +10235.0 + 30 +0.0 + 0 +SEQEND + 5 +2132 + 8 +MAUERWERK + 0 +POLYLINE + 5 +18FC + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2133 + 8 +MAUERWERK + 10 +15652.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +2134 + 8 +MAUERWERK + 10 +15727.274018 + 20 +10235.0 + 30 +0.0 + 0 +SEQEND + 5 +2135 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1900 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2136 + 8 +MAUERWERK + 10 +15652.274018 + 20 +10235.0 + 30 +0.0 + 0 +VERTEX + 5 +2137 + 8 +MAUERWERK + 10 +15727.274018 + 20 +10310.0 + 30 +0.0 + 0 +SEQEND + 5 +2138 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1904 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2139 + 8 +MAUERWERK + 10 +16427.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +213A + 8 +MAUERWERK + 10 +16352.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +213B + 8 +MAUERWERK + 10 +16352.274018 + 20 +10235.0 + 30 +0.0 + 0 +VERTEX + 5 +213C + 8 +MAUERWERK + 10 +16427.274018 + 20 +10235.0 + 30 +0.0 + 0 +SEQEND + 5 +213D + 8 +MAUERWERK + 0 +POLYLINE + 5 +190A + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +213E + 8 +MAUERWERK + 10 +16352.274018 + 20 +10235.0 + 30 +0.0 + 0 +VERTEX + 5 +213F + 8 +MAUERWERK + 10 +16427.274018 + 20 +10310.0 + 30 +0.0 + 0 +SEQEND + 5 +2140 + 8 +MAUERWERK + 0 +POLYLINE + 5 +190E + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2141 + 8 +MAUERWERK + 10 +16352.274018 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +2142 + 8 +MAUERWERK + 10 +16427.274018 + 20 +10235.0 + 30 +0.0 + 0 +SEQEND + 5 +2143 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1912 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2144 + 8 +SCHNITTKANTEN + 10 +15527.274018 + 20 +8895.0 + 30 +0.0 + 0 +VERTEX + 5 +2145 + 8 +SCHNITTKANTEN + 10 +16562.274018 + 20 +8895.0 + 30 +0.0 + 0 +SEQEND + 5 +2146 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +1916 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2147 + 8 +TRENNWAND + 10 +15727.274018 + 20 +10260.0 + 30 +0.0 + 0 +VERTEX + 5 +2148 + 8 +TRENNWAND + 10 +15727.274018 + 20 +8895.0 + 30 +0.0 + 0 +SEQEND + 5 +2149 + 8 +TRENNWAND + 0 +POLYLINE + 5 +191A + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +214A + 8 +TRENNWAND + 10 +15789.774018 + 20 +8895.0 + 30 +0.0 + 0 +VERTEX + 5 +214B + 8 +TRENNWAND + 10 +15789.774018 + 20 +10260.0 + 30 +0.0 + 0 +VERTEX + 5 +214C + 8 +TRENNWAND + 10 +15727.274018 + 20 +10260.0 + 30 +0.0 + 0 +SEQEND + 5 +214D + 8 +TRENNWAND + 0 +POLYLINE + 5 +191F + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +214E + 8 +TRENNWAND + 10 +15822.274018 + 20 +10230.0 + 30 +0.0 + 0 +VERTEX + 5 +214F + 8 +TRENNWAND + 10 +15822.274018 + 20 +8895.0 + 30 +0.0 + 0 +SEQEND + 5 +2150 + 8 +TRENNWAND + 0 +POLYLINE + 5 +1923 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2151 + 8 +TRENNWAND + 10 +16257.274018 + 20 +10230.0 + 30 +0.0 + 0 +VERTEX + 5 +2152 + 8 +TRENNWAND + 10 +16257.274018 + 20 +8895.0 + 30 +0.0 + 0 +SEQEND + 5 +2153 + 8 +TRENNWAND + 0 +POLYLINE + 5 +1927 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2154 + 8 +TRENNWAND + 10 +16189.774018 + 20 +10245.0 + 30 +0.0 + 0 +VERTEX + 5 +2155 + 8 +TRENNWAND + 10 +16189.774018 + 20 +8895.0 + 30 +0.0 + 0 +SEQEND + 5 +2156 + 8 +TRENNWAND + 0 +POLYLINE + 5 +192B + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2157 + 8 +TRENNWAND + 10 +16289.774018 + 20 +10260.0 + 30 +0.0 + 0 +VERTEX + 5 +2158 + 8 +TRENNWAND + 10 +16289.774018 + 20 +8895.0 + 30 +0.0 + 0 +SEQEND + 5 +2159 + 8 +TRENNWAND + 0 +POLYLINE + 5 +192F + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +215A + 8 +TRENNWAND + 10 +16352.274018 + 20 +8895.0 + 30 +0.0 + 0 +VERTEX + 5 +215B + 8 +TRENNWAND + 10 +16352.274018 + 20 +10260.0 + 30 +0.0 + 0 +VERTEX + 5 +215C + 8 +TRENNWAND + 10 +16289.774018 + 20 +10260.0 + 30 +0.0 + 0 +SEQEND + 5 +215D + 8 +TRENNWAND + 0 +POLYLINE + 5 +1934 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +215E + 8 +SCHNITTKANTEN + 10 +14679.649752 + 20 +11227.792194 + 30 +0.0 + 0 +VERTEX + 5 +215F + 8 +SCHNITTKANTEN + 10 +14679.649752 + 20 +10053.885464 + 30 +0.0 + 0 +SEQEND + 5 +2160 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +1938 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2161 + 8 +SCHNITTKANTEN + 10 +17292.266155 + 20 +11231.666484 + 30 +0.0 + 0 +VERTEX + 5 +2162 + 8 +SCHNITTKANTEN + 10 +17292.266155 + 20 +10057.759754 + 30 +0.0 + 0 +SEQEND + 5 +2163 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +193C + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2164 + 8 +MAUERWERK + 10 +14679.649752 + 20 +10235.0 + 30 +0.0 + 0 +VERTEX + 5 +2165 + 8 +MAUERWERK + 10 +15727.274018 + 20 +10235.0 + 30 +0.0 + 0 +SEQEND + 5 +2166 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1940 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2167 + 8 +DECKEN + 10 +14679.649752 + 20 +11110.0 + 30 +0.0 + 0 +VERTEX + 5 +2168 + 8 +DECKEN + 10 +17292.266155 + 20 +11110.0 + 30 +0.0 + 0 +SEQEND + 5 +2169 + 8 +DECKEN + 0 +POLYLINE + 5 +1944 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +216A + 8 +DECKEN + 10 +17292.266155 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +216B + 8 +DECKEN + 10 +14679.649752 + 20 +10310.0 + 30 +0.0 + 0 +SEQEND + 5 +216C + 8 +DECKEN + 0 +POLYLINE + 5 +1948 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +216D + 8 +MAUERWERK + 10 +16352.274018 + 20 +10235.0 + 30 +0.0 + 0 +VERTEX + 5 +216E + 8 +MAUERWERK + 10 +17292.266155 + 20 +10235.0 + 30 +0.0 + 0 +SEQEND + 5 +216F + 8 +MAUERWERK + 0 +POLYLINE + 5 +194C + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2170 + 8 +MAUERWERK + 10 +17292.266155 + 20 +10310.0 + 30 +0.0 + 0 +VERTEX + 5 +2171 + 8 +MAUERWERK + 10 +14679.649752 + 20 +10310.0 + 30 +0.0 + 0 +SEQEND + 5 +2172 + 8 +MAUERWERK + 0 +POLYLINE + 5 +1950 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2173 + 8 +TRENNWAND + 10 +15727.274018 + 20 +8930.0 + 30 +0.0 + 0 +VERTEX + 5 +2174 + 8 +TRENNWAND + 10 +15727.274018 + 20 +10295.0 + 30 +0.0 + 0 +SEQEND + 5 +2175 + 8 +TRENNWAND + 0 +POLYLINE + 5 +1954 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2176 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6670.0 + 30 +0.0 + 0 +VERTEX + 5 +2177 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6630.0 + 30 +0.0 + 0 +SEQEND + 5 +2178 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1958 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2179 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6945.0 + 30 +0.0 + 0 +VERTEX + 5 +217A + 8 +DRAHTANKER + 10 +16052.274018 + 20 +6985.0 + 30 +0.0 + 0 +SEQEND + 5 +217B + 8 +DRAHTANKER + 0 +POLYLINE + 5 +195C + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +217C + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6945.0 + 30 +0.0 + 0 +VERTEX + 5 +217D + 8 +DRAHTANKER + 10 +15992.274018 + 20 +6985.0 + 30 +0.0 + 0 +SEQEND + 5 +217E + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1960 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +217F + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6745.0 + 30 +0.0 + 0 +VERTEX + 5 +2180 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6695.0 + 30 +0.0 + 0 +SEQEND + 5 +2181 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1964 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2182 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6820.0 + 30 +0.0 + 0 +VERTEX + 5 +2183 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6775.0 + 30 +0.0 + 0 +SEQEND + 5 +2184 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1968 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2185 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6890.0 + 30 +0.0 + 0 +VERTEX + 5 +2186 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6845.0 + 30 +0.0 + 0 +SEQEND + 5 +2187 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +196C + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2188 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6950.0 + 30 +0.0 + 0 +VERTEX + 5 +2189 + 8 +DRAHTANKER + 10 +16022.274018 + 20 +6905.0 + 30 +0.0 + 0 +SEQEND + 5 +218A + 8 +DRAHTANKER + 0 +POLYLINE + 5 +1970 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +218B + 8 +DAEMMUNG + 10 +15727.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +218C + 8 +DAEMMUNG + 10 +16352.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +218D + 8 +DAEMMUNG + 10 +16352.274018 + 20 +6930.0 + 30 +0.0 + 0 +VERTEX + 5 +218E + 8 +DAEMMUNG + 10 +15727.274018 + 20 +6930.0 + 30 +0.0 + 0 +SEQEND + 5 +218F + 8 +DAEMMUNG + 0 +POLYLINE + 5 +1976 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2190 + 8 +MAUERWERK + 10 +17292.266155 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +2191 + 8 +MAUERWERK + 10 +14679.649752 + 20 +6880.0 + 30 +0.0 + 0 +SEQEND + 5 +2192 + 8 +MAUERWERK + 0 +POLYLINE + 5 +197A + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2193 + 8 +DECKEN + 10 +17292.266155 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +2194 + 8 +DECKEN + 10 +14679.649752 + 20 +6880.0 + 30 +0.0 + 0 +SEQEND + 5 +2195 + 8 +DECKEN + 0 +POLYLINE + 5 +197E + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2196 + 8 +SCHNITTKANTEN + 10 +17292.266155 + 20 +5958.333516 + 30 +0.0 + 0 +VERTEX + 5 +2197 + 8 +SCHNITTKANTEN + 10 +17292.266155 + 20 +7585.0 + 30 +0.0 + 0 +SEQEND + 5 +2198 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +1982 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +2199 + 8 +SCHNITTKANTEN + 10 +14679.649752 + 20 +5962.207806 + 30 +0.0 + 0 +VERTEX + 5 +219A + 8 +SCHNITTKANTEN + 10 +14679.649752 + 20 +7580.0 + 30 +0.0 + 0 +SEQEND + 5 +219B + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +1986 + 8 +DECKEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +219C + 8 +DECKEN + 10 +14679.649752 + 20 +6080.0 + 30 +0.0 + 0 +VERTEX + 5 +219D + 8 +DECKEN + 10 +17292.266155 + 20 +6080.0 + 30 +0.0 + 0 +SEQEND + 5 +219E + 8 +DECKEN + 0 +POLYLINE + 5 +198A + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +219F + 8 +TRENNWAND + 10 +15727.274018 + 20 +8300.0 + 30 +0.0 + 0 +VERTEX + 5 +21A0 + 8 +TRENNWAND + 10 +15727.274018 + 20 +6930.0 + 30 +0.0 + 0 +SEQEND + 5 +21A1 + 8 +TRENNWAND + 0 +POLYLINE + 5 +198E + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21A2 + 8 +TRENNWAND + 10 +15822.274018 + 20 +6960.0 + 30 +0.0 + 0 +VERTEX + 5 +21A3 + 8 +TRENNWAND + 10 +15822.274018 + 20 +8295.0 + 30 +0.0 + 0 +SEQEND + 5 +21A4 + 8 +TRENNWAND + 0 +POLYLINE + 5 +1992 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21A5 + 8 +TRENNWAND + 10 +15789.774018 + 20 +8295.0 + 30 +0.0 + 0 +VERTEX + 5 +21A6 + 8 +TRENNWAND + 10 +15789.774018 + 20 +6930.0 + 30 +0.0 + 0 +VERTEX + 5 +21A7 + 8 +TRENNWAND + 10 +15727.274018 + 20 +6930.0 + 30 +0.0 + 0 +SEQEND + 5 +21A8 + 8 +TRENNWAND + 0 +POLYLINE + 5 +1997 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21A9 + 8 +TRENNWAND + 10 +16189.774018 + 20 +6945.0 + 30 +0.0 + 0 +VERTEX + 5 +21AA + 8 +TRENNWAND + 10 +16189.774018 + 20 +8295.0 + 30 +0.0 + 0 +SEQEND + 5 +21AB + 8 +TRENNWAND + 0 +POLYLINE + 5 +199B + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21AC + 8 +TRENNWAND + 10 +16257.274018 + 20 +6960.0 + 30 +0.0 + 0 +VERTEX + 5 +21AD + 8 +TRENNWAND + 10 +16257.274018 + 20 +8295.0 + 30 +0.0 + 0 +SEQEND + 5 +21AE + 8 +TRENNWAND + 0 +POLYLINE + 5 +199F + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21AF + 8 +TRENNWAND + 10 +16289.774018 + 20 +6930.0 + 30 +0.0 + 0 +VERTEX + 5 +21B0 + 8 +TRENNWAND + 10 +16289.774018 + 20 +8295.0 + 30 +0.0 + 0 +SEQEND + 5 +21B1 + 8 +TRENNWAND + 0 +POLYLINE + 5 +19A3 + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21B2 + 8 +TRENNWAND + 10 +16352.274018 + 20 +8295.0 + 30 +0.0 + 0 +VERTEX + 5 +21B3 + 8 +TRENNWAND + 10 +16352.274018 + 20 +6930.0 + 30 +0.0 + 0 +VERTEX + 5 +21B4 + 8 +TRENNWAND + 10 +16289.774018 + 20 +6930.0 + 30 +0.0 + 0 +SEQEND + 5 +21B5 + 8 +TRENNWAND + 0 +POLYLINE + 5 +19A8 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +21B6 + 8 +SCHNITTKANTEN + 10 +15527.274018 + 20 +8295.0 + 30 +0.0 + 0 +VERTEX + 5 +21B7 + 8 +SCHNITTKANTEN + 10 +16562.274018 + 20 +8295.0 + 30 +0.0 + 0 +SEQEND + 5 +21B8 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +19AC + 8 +TRENNWAND + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21B9 + 8 +TRENNWAND + 10 +15812.274018 + 20 +7055.0 + 30 +0.0 + 0 +VERTEX + 5 +21BA + 8 +TRENNWAND + 10 +15812.274018 + 20 +6945.0 + 30 +0.0 + 0 +VERTEX + 5 +21BB + 8 +TRENNWAND + 10 +16267.274018 + 20 +6945.0 + 30 +0.0 + 0 +VERTEX + 5 +21BC + 8 +TRENNWAND + 10 +16267.274018 + 20 +7050.0 + 30 +0.0 + 0 +SEQEND + 5 +21BD + 8 +TRENNWAND + 0 +POLYLINE + 5 +19B2 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21BE + 8 +DAEMMUNG + 10 +16352.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +21BF + 8 +DAEMMUNG + 10 +16452.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +21C0 + 8 +DAEMMUNG + 10 +16452.274018 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +21C1 + 8 +DAEMMUNG + 10 +16352.274018 + 20 +7330.0 + 30 +0.0 + 0 +SEQEND + 5 +21C2 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +19B8 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21C3 + 8 +DAEMMUNG + 10 +15627.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +21C4 + 8 +DAEMMUNG + 10 +15727.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +21C5 + 8 +DAEMMUNG + 10 +15727.274018 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +21C6 + 8 +DAEMMUNG + 10 +15627.274018 + 20 +7330.0 + 30 +0.0 + 0 +SEQEND + 5 +21C7 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +19BE + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21C8 + 8 +DRAHTANKER + 10 +15727.274018 + 20 +9630.0 + 30 +0.0 + 0 +VERTEX + 5 +21C9 + 8 +DRAHTANKER + 10 +15802.274018 + 20 +9630.0 + 30 +0.0 + 0 +SEQEND + 5 +21CA + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19C2 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21CB + 8 +DRAHTANKER + 10 +15827.274018 + 20 +9630.0 + 30 +0.0 + 0 +VERTEX + 5 +21CC + 8 +DRAHTANKER + 10 +15862.274018 + 20 +9630.0 + 30 +0.0 + 0 +SEQEND + 5 +21CD + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19C6 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21CE + 8 +DRAHTANKER + 10 +15827.274018 + 20 +9375.0 + 30 +0.0 + 0 +VERTEX + 5 +21CF + 8 +DRAHTANKER + 10 +15862.274018 + 20 +9375.0 + 30 +0.0 + 0 +SEQEND + 5 +21D0 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19CA + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21D1 + 8 +DRAHTANKER + 10 +15727.274018 + 20 +9375.0 + 30 +0.0 + 0 +VERTEX + 5 +21D2 + 8 +DRAHTANKER + 10 +15802.274018 + 20 +9375.0 + 30 +0.0 + 0 +SEQEND + 5 +21D3 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19CE + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21D4 + 8 +DRAHTANKER + 10 +15827.274018 + 20 +9120.0 + 30 +0.0 + 0 +VERTEX + 5 +21D5 + 8 +DRAHTANKER + 10 +15862.274018 + 20 +9120.0 + 30 +0.0 + 0 +SEQEND + 5 +21D6 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19D2 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21D7 + 8 +DRAHTANKER + 10 +15727.274018 + 20 +9120.0 + 30 +0.0 + 0 +VERTEX + 5 +21D8 + 8 +DRAHTANKER + 10 +15802.274018 + 20 +9120.0 + 30 +0.0 + 0 +SEQEND + 5 +21D9 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19D6 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21DA + 8 +DRAHTANKER + 10 +16502.274018 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +21DB + 8 +DRAHTANKER + 10 +16502.274018 + 20 +7755.0 + 30 +0.0 + 0 +VERTEX + 5 +21DC + 8 +DRAHTANKER + 10 +16352.274018 + 20 +7855.0 + 30 +0.0 + 0 +VERTEX + 5 +21DD + 8 +DRAHTANKER + 10 +16352.274018 + 20 +7555.0 + 30 +0.0 + 0 +SEQEND + 5 +21DE + 8 +DRAHTANKER + 0 +POLYLINE + 5 +19DC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21DF + 8 +DRAHTANKER + 10 +15577.274018 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +21E0 + 8 +DRAHTANKER + 10 +15577.274018 + 20 +7755.0 + 30 +0.0 + 0 +VERTEX + 5 +21E1 + 8 +DRAHTANKER + 10 +15727.274018 + 20 +7855.0 + 30 +0.0 + 0 +VERTEX + 5 +21E2 + 8 +DRAHTANKER + 10 +15727.274018 + 20 +7555.0 + 30 +0.0 + 0 +SEQEND + 5 +21E3 + 8 +DRAHTANKER + 0 +INSERT + 5 +19E2 + 8 +SCHRAFFUR + 2 +*X51 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI33,I +1040 +2100.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +19E3 + 8 +SCHRAFFUR + 2 +*X54 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +150.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +19E4 + 8 +SCHRAFFUR + 2 +*X57 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +200.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +19E5 + 8 +SCHRAFFUR + 2 +*X67 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +DASH,I +1040 +600.0 +1040 +0.785398 +1002 +} + 0 +POLYLINE + 5 +19E6 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +19E7 + 8 +SCHRAFFUR + 10 +16462.274018 + 20 +7485.0 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +19E8 + 8 +SCHRAFFUR + 10 +16462.274018 + 20 +7485.0 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19E9 + 8 +SCHRAFFUR + 10 +16462.277126 + 20 +7488.961798 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19EA + 8 +SCHRAFFUR + 10 +16462.298881 + 20 +7493.256886 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19EB + 8 +SCHRAFFUR + 10 +16462.357931 + 20 +7497.749801 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19EC + 8 +SCHRAFFUR + 10 +16462.472923 + 20 +7502.305084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19ED + 8 +SCHRAFFUR + 10 +16462.662505 + 20 +7506.787274 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19EE + 8 +SCHRAFFUR + 10 +16462.945324 + 20 +7511.060909 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19EF + 8 +SCHRAFFUR + 10 +16463.340027 + 20 +7514.990529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F0 + 8 +SCHRAFFUR + 10 +16463.865262 + 20 +7518.440674 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F1 + 8 +SCHRAFFUR + 10 +16464.539325 + 20 +7521.311501 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F2 + 8 +SCHRAFFUR + 10 +16465.379105 + 20 +7523.645652 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F3 + 8 +SCHRAFFUR + 10 +16466.401141 + 20 +7525.521386 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F4 + 8 +SCHRAFFUR + 10 +16467.621973 + 20 +7527.016964 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F5 + 8 +SCHRAFFUR + 10 +16469.058137 + 20 +7528.210645 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F6 + 8 +SCHRAFFUR + 10 +16470.726174 + 20 +7529.18069 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F7 + 8 +SCHRAFFUR + 10 +16472.642621 + 20 +7530.005359 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F8 + 8 +SCHRAFFUR + 10 +16474.824016 + 20 +7530.762911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19F9 + 8 +SCHRAFFUR + 10 +16477.28242 + 20 +7531.562481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19FA + 8 +SCHRAFFUR + 10 +16480.011972 + 20 +7532.636691 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19FB + 8 +SCHRAFFUR + 10 +16483.002335 + 20 +7534.249039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19FC + 8 +SCHRAFFUR + 10 +16486.243169 + 20 +7536.663021 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19FD + 8 +SCHRAFFUR + 10 +16489.724136 + 20 +7540.142135 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19FE + 8 +SCHRAFFUR + 10 +16493.434897 + 20 +7544.949876 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +19FF + 8 +SCHRAFFUR + 10 +16497.365113 + 20 +7551.349741 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A00 + 8 +SCHRAFFUR + 10 +16501.504446 + 20 +7559.605228 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A01 + 8 +SCHRAFFUR + 10 +16462.274018 + 20 +7495.0 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A02 + 8 +SCHRAFFUR + 10 +16462.274018 + 20 +7525.0 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A03 + 8 +SCHRAFFUR + 10 +16471.821483 + 20 +7530.644041 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A04 + 8 +SCHRAFFUR + 10 +16490.196592 + 20 +7534.882215 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A05 + 8 +SCHRAFFUR + 10 +16501.504446 + 20 +7559.605228 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A06 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1A07 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1A08 + 8 +SCHRAFFUR + 10 +16418.816237 + 20 +7511.571982 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A09 + 8 +SCHRAFFUR + 10 +16418.816237 + 20 +7511.571982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A0A + 8 +SCHRAFFUR + 10 +16426.410206 + 20 +7528.650092 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A0B + 8 +SCHRAFFUR + 10 +16433.7847 + 20 +7543.49941 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A0C + 8 +SCHRAFFUR + 10 +16440.885887 + 20 +7556.374477 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A0D + 8 +SCHRAFFUR + 10 +16447.659932 + 20 +7567.529834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A0E + 8 +SCHRAFFUR + 10 +16454.053002 + 20 +7577.220024 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A0F + 8 +SCHRAFFUR + 10 +16460.011262 + 20 +7585.699586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A10 + 8 +SCHRAFFUR + 10 +16465.480881 + 20 +7593.223064 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A11 + 8 +SCHRAFFUR + 10 +16470.408024 + 20 +7600.044997 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A12 + 8 +SCHRAFFUR + 10 +16474.776126 + 20 +7606.425446 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A13 + 8 +SCHRAFFUR + 10 +16478.717701 + 20 +7612.646547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A14 + 8 +SCHRAFFUR + 10 +16482.40253 + 20 +7618.995953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A15 + 8 +SCHRAFFUR + 10 +16486.000396 + 20 +7625.761318 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A16 + 8 +SCHRAFFUR + 10 +16489.68108 + 20 +7633.230297 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A17 + 8 +SCHRAFFUR + 10 +16493.614364 + 20 +7641.690543 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A18 + 8 +SCHRAFFUR + 10 +16497.970031 + 20 +7651.429711 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A19 + 8 +SCHRAFFUR + 10 +16502.917862 + 20 +7662.735455 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A1A + 8 +SCHRAFFUR + 10 +16439.311601 + 20 +7560.311591 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A1B + 8 +SCHRAFFUR + 10 +16476.768659 + 20 +7604.813025 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A1C + 8 +SCHRAFFUR + 10 +16488.783176 + 20 +7630.242346 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A1D + 8 +SCHRAFFUR + 10 +16502.917862 + 20 +7662.735455 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A1E + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1A1F + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1A20 + 8 +SCHRAFFUR + 10 +16383.479347 + 20 +7540.533224 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A21 + 8 +SCHRAFFUR + 10 +16383.479347 + 20 +7540.533224 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A22 + 8 +SCHRAFFUR + 10 +16390.766645 + 20 +7563.954186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A23 + 8 +SCHRAFFUR + 10 +16397.783397 + 20 +7581.35099 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A24 + 8 +SCHRAFFUR + 10 +16404.524082 + 20 +7593.685928 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A25 + 8 +SCHRAFFUR + 10 +16410.983179 + 20 +7601.921293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A26 + 8 +SCHRAFFUR + 10 +16417.155165 + 20 +7607.019377 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A27 + 8 +SCHRAFFUR + 10 +16423.034519 + 20 +7609.942473 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A28 + 8 +SCHRAFFUR + 10 +16428.615719 + 20 +7611.652874 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A29 + 8 +SCHRAFFUR + 10 +16433.893244 + 20 +7613.11287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2A + 8 +SCHRAFFUR + 10 +16438.868473 + 20 +7615.112992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2B + 8 +SCHRAFFUR + 10 +16443.570394 + 20 +7617.756711 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2C + 8 +SCHRAFFUR + 10 +16448.034896 + 20 +7620.975736 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2D + 8 +SCHRAFFUR + 10 +16452.297867 + 20 +7624.701775 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2E + 8 +SCHRAFFUR + 10 +16456.395196 + 20 +7628.866536 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A2F + 8 +SCHRAFFUR + 10 +16460.362773 + 20 +7633.401728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A30 + 8 +SCHRAFFUR + 10 +16464.236484 + 20 +7638.239059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A31 + 8 +SCHRAFFUR + 10 +16468.052221 + 20 +7643.310237 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A32 + 8 +SCHRAFFUR + 10 +16471.850011 + 20 +7648.557664 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A33 + 8 +SCHRAFFUR + 10 +16475.686451 + 20 +7653.966508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A34 + 8 +SCHRAFFUR + 10 +16479.622273 + 20 +7659.532629 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A35 + 8 +SCHRAFFUR + 10 +16483.718214 + 20 +7665.251891 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A36 + 8 +SCHRAFFUR + 10 +16488.035008 + 20 +7671.120153 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A37 + 8 +SCHRAFFUR + 10 +16492.633391 + 20 +7677.133277 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A38 + 8 +SCHRAFFUR + 10 +16497.574097 + 20 +7683.287124 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A39 + 8 +SCHRAFFUR + 10 +16502.917862 + 20 +7689.577555 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A3A + 8 +SCHRAFFUR + 10 +16403.26796 + 20 +7611.876704 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A3B + 8 +SCHRAFFUR + 10 +16437.191346 + 20 +7605.519388 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A3C + 8 +SCHRAFFUR + 10 +16468.287812 + 20 +7641.544309 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A3D + 8 +SCHRAFFUR + 10 +16488.076424 + 20 +7672.624638 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A3E + 8 +SCHRAFFUR + 10 +16502.917862 + 20 +7689.577555 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A3F + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1A40 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1A41 + 8 +SCHRAFFUR + 10 +16353.796385 + 20 +7611.876704 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A42 + 8 +SCHRAFFUR + 10 +16353.796385 + 20 +7611.876704 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A43 + 8 +SCHRAFFUR + 10 +16364.119068 + 20 +7623.149898 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A44 + 8 +SCHRAFFUR + 10 +16373.4341 + 20 +7633.191084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A45 + 8 +SCHRAFFUR + 10 +16381.860191 + 20 +7642.092697 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A46 + 8 +SCHRAFFUR + 10 +16389.516049 + 20 +7649.947172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A47 + 8 +SCHRAFFUR + 10 +16396.520385 + 20 +7656.846943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A48 + 8 +SCHRAFFUR + 10 +16402.991908 + 20 +7662.884445 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A49 + 8 +SCHRAFFUR + 10 +16409.049327 + 20 +7668.152112 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4A + 8 +SCHRAFFUR + 10 +16414.811354 + 20 +7672.742379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4B + 8 +SCHRAFFUR + 10 +16420.378062 + 20 +7676.748371 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4C + 8 +SCHRAFFUR + 10 +16425.774987 + 20 +7680.265971 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4D + 8 +SCHRAFFUR + 10 +16431.009031 + 20 +7683.391755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4E + 8 +SCHRAFFUR + 10 +16436.087095 + 20 +7686.222298 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A4F + 8 +SCHRAFFUR + 10 +16441.016081 + 20 +7688.854172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A50 + 8 +SCHRAFFUR + 10 +16445.80289 + 20 +7691.383953 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A51 + 8 +SCHRAFFUR + 10 +16450.454424 + 20 +7693.908216 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A52 + 8 +SCHRAFFUR + 10 +16454.977582 + 20 +7696.523534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A53 + 8 +SCHRAFFUR + 10 +16459.409636 + 20 +7699.310617 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A54 + 8 +SCHRAFFUR + 10 +16463.909325 + 20 +7702.286709 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A55 + 8 +SCHRAFFUR + 10 +16468.665758 + 20 +7705.453192 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A56 + 8 +SCHRAFFUR + 10 +16473.868042 + 20 +7708.811444 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A57 + 8 +SCHRAFFUR + 10 +16479.705286 + 20 +7712.362846 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A58 + 8 +SCHRAFFUR + 10 +16486.366599 + 20 +7716.108778 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A59 + 8 +SCHRAFFUR + 10 +16494.041088 + 20 +7720.05062 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5A + 8 +SCHRAFFUR + 10 +16502.917862 + 20 +7724.189751 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A5B + 8 +SCHRAFFUR + 10 +16382.772596 + 20 +7643.663396 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A5C + 8 +SCHRAFFUR + 10 +16416.695981 + 20 +7678.982009 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A5D + 8 +SCHRAFFUR + 10 +16456.273294 + 20 +7694.522147 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A5E + 8 +SCHRAFFUR + 10 +16477.475322 + 20 +7712.887788 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A5F + 8 +SCHRAFFUR + 10 +16502.917862 + 20 +7724.189751 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A60 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1A61 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1A62 + 8 +SCHRAFFUR + 10 +16355.209889 + 20 +7680.394734 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A63 + 8 +SCHRAFFUR + 10 +16355.209889 + 20 +7680.394734 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A64 + 8 +SCHRAFFUR + 10 +16370.368495 + 20 +7686.158137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A65 + 8 +SCHRAFFUR + 10 +16382.328152 + 20 +7692.198847 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A66 + 8 +SCHRAFFUR + 10 +16391.699663 + 20 +7698.330615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A67 + 8 +SCHRAFFUR + 10 +16399.09383 + 20 +7704.367189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A68 + 8 +SCHRAFFUR + 10 +16405.121456 + 20 +7710.122319 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A69 + 8 +SCHRAFFUR + 10 +16410.393344 + 20 +7715.409755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6A + 8 +SCHRAFFUR + 10 +16415.520296 + 20 +7720.043246 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6B + 8 +SCHRAFFUR + 10 +16421.113115 + 20 +7723.836542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6C + 8 +SCHRAFFUR + 10 +16427.643188 + 20 +7726.713763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6D + 8 +SCHRAFFUR + 10 +16435.024244 + 20 +7729.040512 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6E + 8 +SCHRAFFUR + 10 +16443.030596 + 20 +7731.292761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A6F + 8 +SCHRAFFUR + 10 +16451.436557 + 20 +7733.946485 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A70 + 8 +SCHRAFFUR + 10 +16460.01644 + 20 +7737.477655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A71 + 8 +SCHRAFFUR + 10 +16468.544559 + 20 +7742.362247 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A72 + 8 +SCHRAFFUR + 10 +16476.795225 + 20 +7749.076232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A73 + 8 +SCHRAFFUR + 10 +16484.542753 + 20 +7758.095585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A74 + 8 +SCHRAFFUR + 10 +16400.44104 + 20 +7695.228509 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A75 + 8 +SCHRAFFUR + 10 +16409.628639 + 20 +7734.785297 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A76 + 8 +SCHRAFFUR + 10 +16464.754141 + 20 +7730.547067 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A77 + 8 +SCHRAFFUR + 10 +16484.542753 + 20 +7758.095585 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A78 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1A79 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1A7A + 8 +SCHRAFFUR + 10 +16349.555962 + 20 +7746.793622 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A7B + 8 +SCHRAFFUR + 10 +16349.555962 + 20 +7746.793622 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7C + 8 +SCHRAFFUR + 10 +16362.461508 + 20 +7750.373419 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7D + 8 +SCHRAFFUR + 10 +16372.828598 + 20 +7754.174648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7E + 8 +SCHRAFFUR + 10 +16381.067195 + 20 +7758.120739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A7F + 8 +SCHRAFFUR + 10 +16387.58726 + 20 +7762.135122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A80 + 8 +SCHRAFFUR + 10 +16392.798757 + 20 +7766.141228 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A81 + 8 +SCHRAFFUR + 10 +16397.111649 + 20 +7770.062486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A82 + 8 +SCHRAFFUR + 10 +16400.935897 + 20 +7773.822326 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A83 + 8 +SCHRAFFUR + 10 +16404.681464 + 20 +7777.34418 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A84 + 8 +SCHRAFFUR + 10 +16408.664449 + 20 +7780.568031 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A85 + 8 +SCHRAFFUR + 10 +16412.825498 + 20 +7783.50009 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A86 + 8 +SCHRAFFUR + 10 +16417.011393 + 20 +7786.163121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A87 + 8 +SCHRAFFUR + 10 +16421.068915 + 20 +7788.579887 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A88 + 8 +SCHRAFFUR + 10 +16424.844847 + 20 +7790.773153 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A89 + 8 +SCHRAFFUR + 10 +16428.185971 + 20 +7792.765683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8A + 8 +SCHRAFFUR + 10 +16430.939069 + 20 +7794.580242 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8B + 8 +SCHRAFFUR + 10 +16432.950922 + 20 +7796.239593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A8C + 8 +SCHRAFFUR + 10 +16387.719771 + 20 +7755.976443 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A8D + 8 +SCHRAFFUR + 10 +16401.147792 + 20 +7780.699456 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A8E + 8 +SCHRAFFUR + 10 +16428.710499 + 20 +7792.001364 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A8F + 8 +SCHRAFFUR + 10 +16432.950922 + 20 +7796.239593 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A90 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1A91 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1A92 + 8 +SCHRAFFUR + 10 +15622.997236 + 20 +7490.467393 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A93 + 8 +SCHRAFFUR + 10 +15622.997236 + 20 +7490.467393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A94 + 8 +SCHRAFFUR + 10 +15615.341593 + 20 +7504.354359 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A95 + 8 +SCHRAFFUR + 10 +15609.54127 + 20 +7517.742398 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A96 + 8 +SCHRAFFUR + 10 +15604.98892 + 20 +7530.531721 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A97 + 8 +SCHRAFFUR + 10 +15601.077194 + 20 +7542.622542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A98 + 8 +SCHRAFFUR + 10 +15597.198746 + 20 +7553.915072 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A99 + 8 +SCHRAFFUR + 10 +15592.746228 + 20 +7564.309522 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A9A + 8 +SCHRAFFUR + 10 +15587.112294 + 20 +7573.706106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A9B + 8 +SCHRAFFUR + 10 +15579.689594 + 20 +7582.005035 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1A9C + 8 +SCHRAFFUR + 10 +15599.568565 + 20 +7528.075837 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A9D + 8 +SCHRAFFUR + 10 +15602.408343 + 20 +7561.426798 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1A9E + 8 +SCHRAFFUR + 10 +15579.689594 + 20 +7582.005035 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1A9F + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1AA0 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +21E4 + 8 +SCHRAFFUR + 10 +15598.858555 + 20 +7476.27549 + 30 +0.0 + 0 +VERTEX + 5 +21E5 + 8 +SCHRAFFUR + 10 +15578.269661 + 20 +7482.661825 + 30 +0.0 + 0 +SEQEND + 5 +21E6 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1AA4 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1AA5 + 8 +SCHRAFFUR + 10 +15674.824474 + 20 +7523.818299 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AA6 + 8 +SCHRAFFUR + 10 +15674.824474 + 20 +7523.818299 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA7 + 8 +SCHRAFFUR + 10 +15660.19296 + 20 +7537.328999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA8 + 8 +SCHRAFFUR + 10 +15648.492114 + 20 +7548.748336 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AA9 + 8 +SCHRAFFUR + 10 +15639.291385 + 20 +7558.313303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAA + 8 +SCHRAFFUR + 10 +15632.160219 + 20 +7566.260895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAB + 8 +SCHRAFFUR + 10 +15626.668066 + 20 +7572.828103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAC + 8 +SCHRAFFUR + 10 +15622.384372 + 20 +7578.251923 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAD + 8 +SCHRAFFUR + 10 +15618.878587 + 20 +7582.769347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAE + 8 +SCHRAFFUR + 10 +15615.720157 + 20 +7586.617368 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AAF + 8 +SCHRAFFUR + 10 +15612.532611 + 20 +7589.973386 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB0 + 8 +SCHRAFFUR + 10 +15609.155789 + 20 +7592.77642 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB1 + 8 +SCHRAFFUR + 10 +15605.483614 + 20 +7594.905894 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB2 + 8 +SCHRAFFUR + 10 +15601.410006 + 20 +7596.241233 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB3 + 8 +SCHRAFFUR + 10 +15596.828887 + 20 +7596.661861 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB4 + 8 +SCHRAFFUR + 10 +15591.634177 + 20 +7596.047203 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB5 + 8 +SCHRAFFUR + 10 +15585.719798 + 20 +7594.276684 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB6 + 8 +SCHRAFFUR + 10 +15578.979672 + 20 +7591.229728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AB7 + 8 +SCHRAFFUR + 10 +15631.516833 + 20 +7562.845977 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AB8 + 8 +SCHRAFFUR + 10 +15616.607582 + 20 +7591.229728 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AB9 + 8 +SCHRAFFUR + 10 +15598.148632 + 20 +7601.164038 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ABA + 8 +SCHRAFFUR + 10 +15578.979672 + 20 +7591.229728 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1ABB + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1ABC + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1ABD + 8 +SCHRAFFUR + 10 +15706.062731 + 20 +7545.815716 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ABE + 8 +SCHRAFFUR + 10 +15706.062731 + 20 +7545.815716 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ABF + 8 +SCHRAFFUR + 10 +15693.916784 + 20 +7557.954466 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC0 + 8 +SCHRAFFUR + 10 +15682.975136 + 20 +7568.883995 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC1 + 8 +SCHRAFFUR + 10 +15673.144187 + 20 +7578.692309 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC2 + 8 +SCHRAFFUR + 10 +15664.330341 + 20 +7587.467415 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC3 + 8 +SCHRAFFUR + 10 +15656.439998 + 20 +7595.29732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC4 + 8 +SCHRAFFUR + 10 +15649.379561 + 20 +7602.270029 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC5 + 8 +SCHRAFFUR + 10 +15643.05543 + 20 +7608.473549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC6 + 8 +SCHRAFFUR + 10 +15637.374008 + 20 +7613.995888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC7 + 8 +SCHRAFFUR + 10 +15632.244122 + 20 +7618.907379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC8 + 8 +SCHRAFFUR + 10 +15627.584308 + 20 +7623.207678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AC9 + 8 +SCHRAFFUR + 10 +15623.315527 + 20 +7626.878766 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACA + 8 +SCHRAFFUR + 10 +15619.358741 + 20 +7629.902627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACB + 8 +SCHRAFFUR + 10 +15615.63491 + 20 +7632.261243 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACC + 8 +SCHRAFFUR + 10 +15612.064996 + 20 +7633.936597 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACD + 8 +SCHRAFFUR + 10 +15608.56996 + 20 +7634.910671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACE + 8 +SCHRAFFUR + 10 +15605.070764 + 20 +7635.16545 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1ACF + 8 +SCHRAFFUR + 10 +15601.515062 + 20 +7634.711672 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD0 + 8 +SCHRAFFUR + 10 +15597.95728 + 20 +7633.675112 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD1 + 8 +SCHRAFFUR + 10 +15594.478536 + 20 +7632.2103 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD2 + 8 +SCHRAFFUR + 10 +15591.159948 + 20 +7630.471769 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD3 + 8 +SCHRAFFUR + 10 +15588.082635 + 20 +7628.61405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD4 + 8 +SCHRAFFUR + 10 +15585.327714 + 20 +7626.791673 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD5 + 8 +SCHRAFFUR + 10 +15582.976306 + 20 +7625.15917 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD6 + 8 +SCHRAFFUR + 10 +15581.109527 + 20 +7623.871072 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AD7 + 8 +SCHRAFFUR + 10 +15671.984609 + 20 +7579.876239 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AD8 + 8 +SCHRAFFUR + 10 +15631.516833 + 20 +7620.323096 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AD9 + 8 +SCHRAFFUR + 10 +15605.958219 + 20 +7643.03013 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ADA + 8 +SCHRAFFUR + 10 +15585.369325 + 20 +7626.709431 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ADB + 8 +SCHRAFFUR + 10 +15581.109527 + 20 +7623.871072 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1ADC + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1ADD + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1ADE + 8 +SCHRAFFUR + 10 +15725.941702 + 20 +7604.002452 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1ADF + 8 +SCHRAFFUR + 10 +15725.941702 + 20 +7604.002452 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE0 + 8 +SCHRAFFUR + 10 +15700.682263 + 20 +7617.99683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE1 + 8 +SCHRAFFUR + 10 +15679.880187 + 20 +7630.207523 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE2 + 8 +SCHRAFFUR + 10 +15662.934365 + 20 +7640.680267 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE3 + 8 +SCHRAFFUR + 10 +15649.243686 + 20 +7649.460796 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE4 + 8 +SCHRAFFUR + 10 +15638.207042 + 20 +7656.594848 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE5 + 8 +SCHRAFFUR + 10 +15629.223321 + 20 +7662.128155 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE6 + 8 +SCHRAFFUR + 10 +15621.691415 + 20 +7666.106455 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE7 + 8 +SCHRAFFUR + 10 +15615.010213 + 20 +7668.575481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE8 + 8 +SCHRAFFUR + 10 +15608.690924 + 20 +7669.625319 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AE9 + 8 +SCHRAFFUR + 10 +15602.694029 + 20 +7669.523454 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEA + 8 +SCHRAFFUR + 10 +15597.092329 + 20 +7668.581717 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEB + 8 +SCHRAFFUR + 10 +15591.958622 + 20 +7667.111942 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEC + 8 +SCHRAFFUR + 10 +15587.36571 + 20 +7665.425963 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AED + 8 +SCHRAFFUR + 10 +15583.386393 + 20 +7663.835613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEE + 8 +SCHRAFFUR + 10 +15580.093469 + 20 +7662.652725 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AEF + 8 +SCHRAFFUR + 10 +15577.559739 + 20 +7662.189133 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF0 + 8 +SCHRAFFUR + 10 +15652.105726 + 20 +7643.739692 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AF1 + 8 +SCHRAFFUR + 10 +15612.347872 + 20 +7684.186549 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AF2 + 8 +SCHRAFFUR + 10 +15583.239382 + 20 +7662.189133 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AF3 + 8 +SCHRAFFUR + 10 +15577.559739 + 20 +7662.189133 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1AF4 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1AF5 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1AF6 + 8 +SCHRAFFUR + 10 +15727.361635 + 20 +7665.027547 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1AF7 + 8 +SCHRAFFUR + 10 +15727.361635 + 20 +7665.027547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF8 + 8 +SCHRAFFUR + 10 +15710.775638 + 20 +7675.986743 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AF9 + 8 +SCHRAFFUR + 10 +15696.508804 + 20 +7684.580167 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFA + 8 +SCHRAFFUR + 10 +15684.284496 + 20 +7691.103021 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFB + 8 +SCHRAFFUR + 10 +15673.82608 + 20 +7695.850507 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFC + 8 +SCHRAFFUR + 10 +15664.856919 + 20 +7699.117825 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFD + 8 +SCHRAFFUR + 10 +15657.100379 + 20 +7701.200179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFE + 8 +SCHRAFFUR + 10 +15650.279822 + 20 +7702.392769 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1AFF + 8 +SCHRAFFUR + 10 +15644.118615 + 20 +7702.990799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B00 + 8 +SCHRAFFUR + 10 +15638.329028 + 20 +7703.227102 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B01 + 8 +SCHRAFFUR + 10 +15632.57896 + 20 +7703.085048 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B02 + 8 +SCHRAFFUR + 10 +15626.525217 + 20 +7702.485638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B03 + 8 +SCHRAFFUR + 10 +15619.824605 + 20 +7701.349875 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B04 + 8 +SCHRAFFUR + 10 +15612.133931 + 20 +7699.598759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B05 + 8 +SCHRAFFUR + 10 +15603.110001 + 20 +7697.153294 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B06 + 8 +SCHRAFFUR + 10 +15592.40962 + 20 +7693.934481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B07 + 8 +SCHRAFFUR + 10 +15579.689594 + 20 +7689.863322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B08 + 8 +SCHRAFFUR + 10 +15679.794195 + 20 +7697.668835 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B09 + 8 +SCHRAFFUR + 10 +15640.036341 + 20 +7706.183966 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B0A + 8 +SCHRAFFUR + 10 +15616.607582 + 20 +7701.926428 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B0B + 8 +SCHRAFFUR + 10 +15579.689594 + 20 +7689.863322 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B0C + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1B0D + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1B0E + 8 +SCHRAFFUR + 10 +15725.941702 + 20 +7707.6032 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B0F + 8 +SCHRAFFUR + 10 +15725.941702 + 20 +7707.6032 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B10 + 8 +SCHRAFFUR + 10 +15703.36193 + 20 +7712.899503 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B11 + 8 +SCHRAFFUR + 10 +15683.879232 + 20 +7717.177156 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B12 + 8 +SCHRAFFUR + 10 +15667.196172 + 20 +7720.581679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B13 + 8 +SCHRAFFUR + 10 +15653.015314 + 20 +7723.258594 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B14 + 8 +SCHRAFFUR + 10 +15641.039221 + 20 +7725.353423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B15 + 8 +SCHRAFFUR + 10 +15630.970458 + 20 +7727.011686 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B16 + 8 +SCHRAFFUR + 10 +15622.511588 + 20 +7728.378906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B17 + 8 +SCHRAFFUR + 10 +15615.365174 + 20 +7729.600603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B18 + 8 +SCHRAFFUR + 10 +15609.254582 + 20 +7730.804282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B19 + 8 +SCHRAFFUR + 10 +15603.986374 + 20 +7732.04538 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1A + 8 +SCHRAFFUR + 10 +15599.387916 + 20 +7733.361316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1B + 8 +SCHRAFFUR + 10 +15595.286571 + 20 +7734.789512 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1C + 8 +SCHRAFFUR + 10 +15591.509703 + 20 +7736.367386 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1D + 8 +SCHRAFFUR + 10 +15587.884676 + 20 +7738.13236 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1E + 8 +SCHRAFFUR + 10 +15584.238856 + 20 +7740.121853 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B1F + 8 +SCHRAFFUR + 10 +15580.399605 + 20 +7742.373286 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B20 + 8 +SCHRAFFUR + 10 +15661.335157 + 20 +7723.214228 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B21 + 8 +SCHRAFFUR + 10 +15604.538286 + 20 +7729.600617 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B22 + 8 +SCHRAFFUR + 10 +15591.048968 + 20 +7735.986951 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B23 + 8 +SCHRAFFUR + 10 +15580.399605 + 20 +7742.373286 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B24 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1B25 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1B26 + 8 +SCHRAFFUR + 10 +15727.361635 + 20 +7735.277334 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B27 + 8 +SCHRAFFUR + 10 +15727.361635 + 20 +7735.277334 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B28 + 8 +SCHRAFFUR + 10 +15712.586592 + 20 +7738.939295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B29 + 8 +SCHRAFFUR + 10 +15700.014234 + 20 +7742.486917 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2A + 8 +SCHRAFFUR + 10 +15689.351287 + 20 +7745.938911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2B + 8 +SCHRAFFUR + 10 +15680.304474 + 20 +7749.313988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2C + 8 +SCHRAFFUR + 10 +15672.58052 + 20 +7752.630856 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2D + 8 +SCHRAFFUR + 10 +15665.886151 + 20 +7755.908225 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2E + 8 +SCHRAFFUR + 10 +15659.92809 + 20 +7759.164807 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B2F + 8 +SCHRAFFUR + 10 +15654.413062 + 20 +7762.41931 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B30 + 8 +SCHRAFFUR + 10 +15649.11019 + 20 +7765.672428 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B31 + 8 +SCHRAFFUR + 10 +15644.038194 + 20 +7768.852784 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B32 + 8 +SCHRAFFUR + 10 +15639.278192 + 20 +7771.870988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B33 + 8 +SCHRAFFUR + 10 +15634.911303 + 20 +7774.637645 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B34 + 8 +SCHRAFFUR + 10 +15631.018644 + 20 +7777.063364 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B35 + 8 +SCHRAFFUR + 10 +15627.681335 + 20 +7779.058752 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B36 + 8 +SCHRAFFUR + 10 +15624.980493 + 20 +7780.534416 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B37 + 8 +SCHRAFFUR + 10 +15622.997236 + 20 +7781.400964 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B38 + 8 +SCHRAFFUR + 10 +15684.763916 + 20 +7745.211644 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B39 + 8 +SCHRAFFUR + 10 +15652.815648 + 20 +7762.241906 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B3A + 8 +SCHRAFFUR + 10 +15627.257034 + 20 +7779.981784 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B3B + 8 +SCHRAFFUR + 10 +15622.997236 + 20 +7781.400964 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B3C + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1B3D + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1B3E + 8 +SCHRAFFUR + 10 +15729.49149 + 20 +7773.59545 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B3F + 8 +SCHRAFFUR + 10 +15729.49149 + 20 +7773.59545 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B40 + 8 +SCHRAFFUR + 10 +15721.385872 + 20 +7775.409972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B41 + 8 +SCHRAFFUR + 10 +15714.033198 + 20 +7777.135101 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B42 + 8 +SCHRAFFUR + 10 +15707.321153 + 20 +7778.781232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B43 + 8 +SCHRAFFUR + 10 +15701.137417 + 20 +7780.35876 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B44 + 8 +SCHRAFFUR + 10 +15695.369672 + 20 +7781.878079 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B45 + 8 +SCHRAFFUR + 10 +15689.905602 + 20 +7783.349583 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B46 + 8 +SCHRAFFUR + 10 +15684.632888 + 20 +7784.783668 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B47 + 8 +SCHRAFFUR + 10 +15679.439212 + 20 +7786.190728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B48 + 8 +SCHRAFFUR + 10 +15674.251082 + 20 +7787.582544 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B49 + 8 +SCHRAFFUR + 10 +15669.150311 + 20 +7788.976439 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4A + 8 +SCHRAFFUR + 10 +15664.257535 + 20 +7790.391123 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4B + 8 +SCHRAFFUR + 10 +15659.693393 + 20 +7791.845306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4C + 8 +SCHRAFFUR + 10 +15655.578522 + 20 +7793.357698 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4D + 8 +SCHRAFFUR + 10 +15652.033561 + 20 +7794.947009 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4E + 8 +SCHRAFFUR + 10 +15649.179147 + 20 +7796.631948 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B4F + 8 +SCHRAFFUR + 10 +15647.135917 + 20 +7798.431225 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B50 + 8 +SCHRAFFUR + 10 +15706.772742 + 20 +7778.562605 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B51 + 8 +SCHRAFFUR + 10 +15679.794195 + 20 +7786.368119 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B52 + 8 +SCHRAFFUR + 10 +15651.395716 + 20 +7793.46407 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B53 + 8 +SCHRAFFUR + 10 +15647.135917 + 20 +7798.431225 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B54 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1B55 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1B56 + 8 +SCHRAFFUR + 10 +15725.941702 + 20 +7806.236739 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B57 + 8 +SCHRAFFUR + 10 +15725.941702 + 20 +7806.236739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B58 + 8 +SCHRAFFUR + 10 +15717.492883 + 20 +7810.466595 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B59 + 8 +SCHRAFFUR + 10 +15711.06579 + 20 +7813.731844 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B5A + 8 +SCHRAFFUR + 10 +15706.28603 + 20 +7816.265322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B5B + 8 +SCHRAFFUR + 10 +15702.779208 + 20 +7818.299866 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B5C + 8 +SCHRAFFUR + 10 +15700.170932 + 20 +7820.068311 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B5D + 8 +SCHRAFFUR + 10 +15698.086807 + 20 +7821.803493 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B5E + 8 +SCHRAFFUR + 10 +15696.152439 + 20 +7823.738249 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B5F + 8 +SCHRAFFUR + 10 +15693.993435 + 20 +7826.105414 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1B60 + 8 +SCHRAFFUR + 10 +15700.383088 + 20 +7819.009462 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1B61 + 8 +SCHRAFFUR + 10 +15693.993435 + 20 +7826.105414 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1B62 + 8 +SCHRAFFUR + 0 +INSERT + 5 +1B63 + 8 +SCHRAFFUR + 2 +*X69 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI33,I +1040 +2100.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1B64 + 8 +SCHRAFFUR + 2 +*X71 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +40.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1B65 + 8 +SCHRAFFUR + 2 +*X72 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +40.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1B66 + 8 +SCHRAFFUR + 2 +*X73 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +40.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1B67 + 8 +SCHRAFFUR + 2 +*X74 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +40.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +1B68 + 8 +SCHRAFFUR + 2 +*X77 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +500.0 +1040 +0.0 +1002 +} + 0 +LINE + 5 +1B69 + 8 +0 + 62 + 0 + 10 +15651.059073 + 20 +10235.245158 + 30 +0.0 + 11 +15651.059073 + 21 +10235.245158 + 31 +0.0 + 0 +LINE + 5 +1B6A + 8 +0 + 62 + 0 + 10 +15608.708252 + 20 +10262.003038 + 30 +0.0 + 11 +15608.708252 + 21 +10262.003038 + 31 +0.0 + 0 +LINE + 5 +1B6B + 8 +0 + 62 + 0 + 10 +15649.169272 + 20 +10293.049871 + 30 +0.0 + 11 +15649.169272 + 21 +10293.049871 + 31 +0.0 + 0 +LINE + 5 +1B6C + 8 +0 + 62 + 0 + 10 +15531.965563 + 20 +10262.371111 + 30 +0.0 + 11 +15531.965563 + 21 +10262.371111 + 31 +0.0 + 0 +LINE + 5 +1B6D + 8 +0 + 62 + 0 + 10 +15570.641538 + 20 +10292.04823 + 30 +0.0 + 11 +15570.641538 + 21 +10292.04823 + 31 +0.0 + 0 +LINE + 5 +1B6E + 8 +0 + 62 + 0 + 10 +15453.43783 + 20 +10261.36947 + 30 +0.0 + 11 +15453.43783 + 21 +10261.36947 + 31 +0.0 + 0 +LINE + 5 +1B6F + 8 +0 + 62 + 0 + 10 +15489.614742 + 20 +10289.128991 + 30 +0.0 + 11 +15489.614742 + 21 +10289.128991 + 31 +0.0 + 0 +LINE + 5 +1B70 + 8 +0 + 62 + 0 + 10 +15372.411033 + 20 +10258.45023 + 30 +0.0 + 11 +15372.411033 + 21 +10258.45023 + 31 +0.0 + 0 +LINE + 5 +1B71 + 8 +0 + 62 + 0 + 10 +15412.872054 + 20 +10289.497063 + 30 +0.0 + 11 +15412.872054 + 21 +10289.497063 + 31 +0.0 + 0 +LINE + 5 +1B72 + 8 +0 + 62 + 0 + 10 +15295.668345 + 20 +10258.818302 + 30 +0.0 + 11 +15295.668345 + 21 +10258.818302 + 31 +0.0 + 0 +LINE + 5 +1B73 + 8 +0 + 62 + 0 + 10 +15334.34432 + 20 +10288.495422 + 30 +0.0 + 11 +15334.34432 + 21 +10288.495422 + 31 +0.0 + 0 +LINE + 5 +1B74 + 8 +0 + 62 + 0 + 10 +15217.140611 + 20 +10257.816661 + 30 +0.0 + 11 +15217.140611 + 21 +10257.816661 + 31 +0.0 + 0 +LINE + 5 +1B75 + 8 +0 + 62 + 0 + 10 +15253.317524 + 20 +10285.576183 + 30 +0.0 + 11 +15253.317524 + 21 +10285.576183 + 31 +0.0 + 0 +LINE + 5 +1B76 + 8 +0 + 62 + 0 + 10 +15136.113815 + 20 +10254.897422 + 30 +0.0 + 11 +15136.113815 + 21 +10254.897422 + 31 +0.0 + 0 +LINE + 5 +1B77 + 8 +0 + 62 + 0 + 10 +15176.574835 + 20 +10285.944255 + 30 +0.0 + 11 +15176.574835 + 21 +10285.944255 + 31 +0.0 + 0 +LINE + 5 +1B78 + 8 +0 + 62 + 0 + 10 +15059.371127 + 20 +10255.265494 + 30 +0.0 + 11 +15059.371127 + 21 +10255.265494 + 31 +0.0 + 0 +LINE + 5 +1B79 + 8 +0 + 62 + 0 + 10 +15098.047102 + 20 +10284.942614 + 30 +0.0 + 11 +15098.047102 + 21 +10284.942614 + 31 +0.0 + 0 +LINE + 5 +1B7A + 8 +0 + 62 + 0 + 10 +14980.843393 + 20 +10254.263853 + 30 +0.0 + 11 +14980.843393 + 21 +10254.263853 + 31 +0.0 + 0 +LINE + 5 +1B7B + 8 +0 + 62 + 0 + 10 +15017.020306 + 20 +10282.023374 + 30 +0.0 + 11 +15017.020306 + 21 +10282.023374 + 31 +0.0 + 0 +LINE + 5 +1B7C + 8 +0 + 62 + 0 + 10 +14899.816597 + 20 +10251.344614 + 30 +0.0 + 11 +14899.816597 + 21 +10251.344614 + 31 +0.0 + 0 +LINE + 5 +1B7D + 8 +0 + 62 + 0 + 10 +14940.277617 + 20 +10282.391447 + 30 +0.0 + 11 +14940.277617 + 21 +10282.391447 + 31 +0.0 + 0 +LINE + 5 +1B7E + 8 +0 + 62 + 0 + 10 +14823.073908 + 20 +10251.712686 + 30 +0.0 + 11 +14823.073908 + 21 +10251.712686 + 31 +0.0 + 0 +LINE + 5 +1B7F + 8 +0 + 62 + 0 + 10 +14861.749884 + 20 +10281.389806 + 30 +0.0 + 11 +14861.749884 + 21 +10281.389806 + 31 +0.0 + 0 +LINE + 5 +1B80 + 8 +0 + 62 + 0 + 10 +14897.926796 + 20 +10309.149327 + 30 +0.0 + 11 +14897.926796 + 21 +10309.149327 + 31 +0.0 + 0 +LINE + 5 +1B81 + 8 +0 + 62 + 0 + 10 +14744.546175 + 20 +10250.711045 + 30 +0.0 + 11 +14744.546175 + 21 +10250.711045 + 31 +0.0 + 0 +LINE + 5 +1B82 + 8 +0 + 62 + 0 + 10 +14780.723087 + 20 +10278.470566 + 30 +0.0 + 11 +14780.723087 + 21 +10278.470566 + 31 +0.0 + 0 +LINE + 5 +1B83 + 8 +0 + 62 + 0 + 10 +14821.184108 + 20 +10309.517399 + 30 +0.0 + 11 +14821.184108 + 21 +10309.517399 + 31 +0.0 + 0 +LINE + 5 +1B84 + 8 +0 + 62 + 0 + 10 +14703.980399 + 20 +10278.838638 + 30 +0.0 + 11 +14703.980399 + 21 +10278.838638 + 31 +0.0 + 0 +LINE + 5 +1B85 + 8 +0 + 62 + 0 + 10 +14742.656374 + 20 +10308.515758 + 30 +0.0 + 11 +14742.656374 + 21 +10308.515758 + 31 +0.0 + 0 +LINE + 5 +1B86 + 8 +0 + 62 + 0 + 10 +16434.803615 + 20 +10303.340224 + 30 +0.0 + 11 +16434.803615 + 21 +10303.340224 + 31 +0.0 + 0 +LINE + 5 +1B87 + 8 +0 + 62 + 0 + 10 +16436.693416 + 20 +10245.535511 + 30 +0.0 + 11 +16436.693416 + 21 +10245.535511 + 31 +0.0 + 0 +LINE + 5 +1B88 + 8 +0 + 62 + 0 + 10 +16477.154436 + 20 +10276.582343 + 30 +0.0 + 11 +16477.154436 + 21 +10276.582343 + 31 +0.0 + 0 +LINE + 5 +1B89 + 8 +0 + 62 + 0 + 10 +16515.830411 + 20 +10306.259463 + 30 +0.0 + 11 +16515.830411 + 21 +10306.259463 + 31 +0.0 + 0 +LINE + 5 +1B8A + 8 +0 + 62 + 0 + 10 +16517.720212 + 20 +10248.45475 + 30 +0.0 + 11 +16517.720212 + 21 +10248.45475 + 31 +0.0 + 0 +LINE + 5 +1B8B + 8 +0 + 62 + 0 + 10 +16553.897125 + 20 +10276.214271 + 30 +0.0 + 11 +16553.897125 + 21 +10276.214271 + 31 +0.0 + 0 +LINE + 5 +1B8C + 8 +0 + 62 + 0 + 10 +16594.358145 + 20 +10307.261104 + 30 +0.0 + 11 +16594.358145 + 21 +10307.261104 + 31 +0.0 + 0 +LINE + 5 +1B8D + 8 +0 + 62 + 0 + 10 +16596.247946 + 20 +10249.456391 + 30 +0.0 + 11 +16596.247946 + 21 +10249.456391 + 31 +0.0 + 0 +LINE + 5 +1B8E + 8 +0 + 62 + 0 + 10 +16634.923921 + 20 +10279.133511 + 30 +0.0 + 11 +16634.923921 + 21 +10279.133511 + 31 +0.0 + 0 +LINE + 5 +1B8F + 8 +0 + 62 + 0 + 10 +16671.100833 + 20 +10306.893032 + 30 +0.0 + 11 +16671.100833 + 21 +10306.893032 + 31 +0.0 + 0 +LINE + 5 +1B90 + 8 +0 + 62 + 0 + 10 +16672.990634 + 20 +10249.088319 + 30 +0.0 + 11 +16672.990634 + 21 +10249.088319 + 31 +0.0 + 0 +LINE + 5 +1B91 + 8 +0 + 62 + 0 + 10 +16713.451654 + 20 +10280.135152 + 30 +0.0 + 11 +16713.451654 + 21 +10280.135152 + 31 +0.0 + 0 +LINE + 5 +1B92 + 8 +0 + 62 + 0 + 10 +16752.12763 + 20 +10309.812271 + 30 +0.0 + 11 +16752.12763 + 21 +10309.812271 + 31 +0.0 + 0 +LINE + 5 +1B93 + 8 +0 + 62 + 0 + 10 +16754.01743 + 20 +10252.007558 + 30 +0.0 + 11 +16754.01743 + 21 +10252.007558 + 31 +0.0 + 0 +LINE + 5 +1B94 + 8 +0 + 62 + 0 + 10 +16790.194343 + 20 +10279.767079 + 30 +0.0 + 11 +16790.194343 + 21 +10279.767079 + 31 +0.0 + 0 +LINE + 5 +1B95 + 8 +0 + 62 + 0 + 10 +16832.545164 + 20 +10253.009199 + 30 +0.0 + 11 +16832.545164 + 21 +10253.009199 + 31 +0.0 + 0 +LINE + 5 +1B96 + 8 +0 + 62 + 0 + 10 +16871.221139 + 20 +10282.686319 + 30 +0.0 + 11 +16871.221139 + 21 +10282.686319 + 31 +0.0 + 0 +LINE + 5 +1B97 + 8 +0 + 62 + 0 + 10 +16909.287852 + 20 +10252.641127 + 30 +0.0 + 11 +16909.287852 + 21 +10252.641127 + 31 +0.0 + 0 +LINE + 5 +1B98 + 8 +0 + 62 + 0 + 10 +16949.748873 + 20 +10283.68796 + 30 +0.0 + 11 +16949.748873 + 21 +10283.68796 + 31 +0.0 + 0 +LINE + 5 +1B99 + 8 +0 + 62 + 0 + 10 +16990.314649 + 20 +10255.560366 + 30 +0.0 + 11 +16990.314649 + 21 +10255.560366 + 31 +0.0 + 0 +LINE + 5 +1B9A + 8 +0 + 62 + 0 + 10 +17026.491561 + 20 +10283.319888 + 30 +0.0 + 11 +17026.491561 + 21 +10283.319888 + 31 +0.0 + 0 +LINE + 5 +1B9B + 8 +0 + 62 + 0 + 10 +17068.842382 + 20 +10256.562007 + 30 +0.0 + 11 +17068.842382 + 21 +10256.562007 + 31 +0.0 + 0 +LINE + 5 +1B9C + 8 +0 + 62 + 0 + 10 +17107.518357 + 20 +10286.239127 + 30 +0.0 + 11 +17107.518357 + 21 +10286.239127 + 31 +0.0 + 0 +LINE + 5 +1B9D + 8 +0 + 62 + 0 + 10 +17145.585071 + 20 +10256.193935 + 30 +0.0 + 11 +17145.585071 + 21 +10256.193935 + 31 +0.0 + 0 +LINE + 5 +1B9E + 8 +0 + 62 + 0 + 10 +17186.046091 + 20 +10287.240768 + 30 +0.0 + 11 +17186.046091 + 21 +10287.240768 + 31 +0.0 + 0 +LINE + 5 +1B9F + 8 +0 + 62 + 0 + 10 +17226.611867 + 20 +10259.113175 + 30 +0.0 + 11 +17226.611867 + 21 +10259.113175 + 31 +0.0 + 0 +LINE + 5 +1BA0 + 8 +0 + 62 + 0 + 10 +17262.788779 + 20 +10286.872696 + 30 +0.0 + 11 +17262.788779 + 21 +10286.872696 + 31 +0.0 + 0 +LINE + 5 +1BA1 + 8 +0 + 62 + 0 + 10 +16429.273755 + 20 +10292.918144 + 30 +0.0 + 11 +16429.273755 + 21 +10292.918144 + 31 +0.0 + 0 +LINE + 5 +1BA2 + 8 +0 + 62 + 0 + 10 +16453.663299 + 20 +10296.129089 + 30 +0.0 + 11 +16453.663299 + 21 +10296.129089 + 31 +0.0 + 0 +LINE + 5 +1BA3 + 8 +0 + 62 + 0 + 10 +16494.411683 + 20 +10301.493715 + 30 +0.0 + 11 +16494.411683 + 21 +10301.493715 + 31 +0.0 + 0 +LINE + 5 +1BA4 + 8 +0 + 62 + 0 + 10 +16510.026939 + 20 +10303.549503 + 30 +0.0 + 11 +16510.026939 + 21 +10303.549503 + 31 +0.0 + 0 +LINE + 5 +1BA5 + 8 +0 + 62 + 0 + 10 +16534.416483 + 20 +10306.760447 + 30 +0.0 + 11 +16534.416483 + 21 +10306.760447 + 31 +0.0 + 0 +LINE + 5 +1BA6 + 8 +0 + 62 + 0 + 10 +15416.960408 + 20 +10237.31908 + 30 +0.0 + 11 +15416.960408 + 21 +10237.31908 + 31 +0.0 + 0 +LINE + 5 +1BA7 + 8 +0 + 62 + 0 + 10 +15432.575665 + 20 +10239.374868 + 30 +0.0 + 11 +15432.575665 + 21 +10239.374868 + 31 +0.0 + 0 +LINE + 5 +1BA8 + 8 +0 + 62 + 0 + 10 +15456.965209 + 20 +10242.585812 + 30 +0.0 + 11 +15456.965209 + 21 +10242.585812 + 31 +0.0 + 0 +LINE + 5 +1BA9 + 8 +0 + 62 + 0 + 10 +15497.713592 + 20 +10247.950439 + 30 +0.0 + 11 +15497.713592 + 21 +10247.950439 + 31 +0.0 + 0 +LINE + 5 +1BAA + 8 +0 + 62 + 0 + 10 +15513.328849 + 20 +10250.006226 + 30 +0.0 + 11 +15513.328849 + 21 +10250.006226 + 31 +0.0 + 0 +LINE + 5 +1BAB + 8 +0 + 62 + 0 + 10 +15537.718392 + 20 +10253.21717 + 30 +0.0 + 11 +15537.718392 + 21 +10253.21717 + 31 +0.0 + 0 +LINE + 5 +1BAC + 8 +0 + 62 + 0 + 10 +15578.466776 + 20 +10258.581797 + 30 +0.0 + 11 +15578.466776 + 21 +10258.581797 + 31 +0.0 + 0 +LINE + 5 +1BAD + 8 +0 + 62 + 0 + 10 +15594.082033 + 20 +10260.637584 + 30 +0.0 + 11 +15594.082033 + 21 +10260.637584 + 31 +0.0 + 0 +LINE + 5 +1BAE + 8 +0 + 62 + 0 + 10 +15618.471576 + 20 +10263.848529 + 30 +0.0 + 11 +15618.471576 + 21 +10263.848529 + 31 +0.0 + 0 +LINE + 5 +1BAF + 8 +0 + 62 + 0 + 10 +14824.028238 + 20 +10236.932595 + 30 +0.0 + 11 +14824.028238 + 21 +10236.932595 + 31 +0.0 + 0 +LINE + 5 +1BB0 + 8 +0 + 62 + 0 + 10 +14839.643494 + 20 +10238.988383 + 30 +0.0 + 11 +14839.643494 + 21 +10238.988383 + 31 +0.0 + 0 +LINE + 5 +1BB1 + 8 +0 + 62 + 0 + 10 +14864.033038 + 20 +10242.199327 + 30 +0.0 + 11 +14864.033038 + 21 +10242.199327 + 31 +0.0 + 0 +LINE + 5 +1BB2 + 8 +0 + 62 + 0 + 10 +14904.781422 + 20 +10247.563954 + 30 +0.0 + 11 +14904.781422 + 21 +10247.563954 + 31 +0.0 + 0 +LINE + 5 +1BB3 + 8 +0 + 62 + 0 + 10 +14920.396678 + 20 +10249.619741 + 30 +0.0 + 11 +14920.396678 + 21 +10249.619741 + 31 +0.0 + 0 +LINE + 5 +1BB4 + 8 +0 + 62 + 0 + 10 +14944.786222 + 20 +10252.830686 + 30 +0.0 + 11 +14944.786222 + 21 +10252.830686 + 31 +0.0 + 0 +LINE + 5 +1BB5 + 8 +0 + 62 + 0 + 10 +14985.534606 + 20 +10258.195312 + 30 +0.0 + 11 +14985.534606 + 21 +10258.195312 + 31 +0.0 + 0 +LINE + 5 +1BB6 + 8 +0 + 62 + 0 + 10 +15001.149862 + 20 +10260.2511 + 30 +0.0 + 11 +15001.149862 + 21 +10260.2511 + 31 +0.0 + 0 +LINE + 5 +1BB7 + 8 +0 + 62 + 0 + 10 +15025.539406 + 20 +10263.462044 + 30 +0.0 + 11 +15025.539406 + 21 +10263.462044 + 31 +0.0 + 0 +LINE + 5 +1BB8 + 8 +0 + 62 + 0 + 10 +15066.28779 + 20 +10268.82667 + 30 +0.0 + 11 +15066.28779 + 21 +10268.82667 + 31 +0.0 + 0 +LINE + 5 +1BB9 + 8 +0 + 62 + 0 + 10 +15081.903046 + 20 +10270.882458 + 30 +0.0 + 11 +15081.903046 + 21 +10270.882458 + 31 +0.0 + 0 +LINE + 5 +1BBA + 8 +0 + 62 + 0 + 10 +15106.29259 + 20 +10274.093402 + 30 +0.0 + 11 +15106.29259 + 21 +10274.093402 + 31 +0.0 + 0 +LINE + 5 +1BBB + 8 +0 + 62 + 0 + 10 +15147.040974 + 20 +10279.458029 + 30 +0.0 + 11 +15147.040974 + 21 +10279.458029 + 31 +0.0 + 0 +LINE + 5 +1BBC + 8 +0 + 62 + 0 + 10 +15162.65623 + 20 +10281.513816 + 30 +0.0 + 11 +15162.65623 + 21 +10281.513816 + 31 +0.0 + 0 +LINE + 5 +1BBD + 8 +0 + 62 + 0 + 10 +15187.045774 + 20 +10284.724761 + 30 +0.0 + 11 +15187.045774 + 21 +10284.724761 + 31 +0.0 + 0 +LINE + 5 +1BBE + 8 +0 + 62 + 0 + 10 +15227.794158 + 20 +10290.089387 + 30 +0.0 + 11 +15227.794158 + 21 +10290.089387 + 31 +0.0 + 0 +LINE + 5 +1BBF + 8 +0 + 62 + 0 + 10 +15243.409414 + 20 +10292.145175 + 30 +0.0 + 11 +15243.409414 + 21 +10292.145175 + 31 +0.0 + 0 +LINE + 5 +1BC0 + 8 +0 + 62 + 0 + 10 +15267.798958 + 20 +10295.356119 + 30 +0.0 + 11 +15267.798958 + 21 +10295.356119 + 31 +0.0 + 0 +LINE + 5 +1BC1 + 8 +0 + 62 + 0 + 10 +15308.547342 + 20 +10300.720745 + 30 +0.0 + 11 +15308.547342 + 21 +10300.720745 + 31 +0.0 + 0 +LINE + 5 +1BC2 + 8 +0 + 62 + 0 + 10 +15324.162598 + 20 +10302.776533 + 30 +0.0 + 11 +15324.162598 + 21 +10302.776533 + 31 +0.0 + 0 +LINE + 5 +1BC3 + 8 +0 + 62 + 0 + 10 +15348.552142 + 20 +10305.987477 + 30 +0.0 + 11 +15348.552142 + 21 +10305.987477 + 31 +0.0 + 0 +LINE + 5 +1BC4 + 8 +0 + 62 + 0 + 10 +14715.615171 + 20 +10300.334261 + 30 +0.0 + 11 +14715.615171 + 21 +10300.334261 + 31 +0.0 + 0 +LINE + 5 +1BC5 + 8 +0 + 62 + 0 + 10 +14731.230428 + 20 +10302.390048 + 30 +0.0 + 11 +14731.230428 + 21 +10302.390048 + 31 +0.0 + 0 +LINE + 5 +1BC6 + 8 +0 + 62 + 0 + 10 +14755.619971 + 20 +10305.600992 + 30 +0.0 + 11 +14755.619971 + 21 +10305.600992 + 31 +0.0 + 0 +LINE + 5 +1BC7 + 8 +0 + 62 + 0 + 10 +16602.824749 + 20 +10238.09205 + 30 +0.0 + 11 +16602.824749 + 21 +10238.09205 + 31 +0.0 + 0 +LINE + 5 +1BC8 + 8 +0 + 62 + 0 + 10 +16618.440006 + 20 +10240.147838 + 30 +0.0 + 11 +16618.440006 + 21 +10240.147838 + 31 +0.0 + 0 +LINE + 5 +1BC9 + 8 +0 + 62 + 0 + 10 +16642.82955 + 20 +10243.358782 + 30 +0.0 + 11 +16642.82955 + 21 +10243.358782 + 31 +0.0 + 0 +LINE + 5 +1BCA + 8 +0 + 62 + 0 + 10 +16683.577933 + 20 +10248.723408 + 30 +0.0 + 11 +16683.577933 + 21 +10248.723408 + 31 +0.0 + 0 +LINE + 5 +1BCB + 8 +0 + 62 + 0 + 10 +16699.19319 + 20 +10250.779196 + 30 +0.0 + 11 +16699.19319 + 21 +10250.779196 + 31 +0.0 + 0 +LINE + 5 +1BCC + 8 +0 + 62 + 0 + 10 +16723.582734 + 20 +10253.99014 + 30 +0.0 + 11 +16723.582734 + 21 +10253.99014 + 31 +0.0 + 0 +LINE + 5 +1BCD + 8 +0 + 62 + 0 + 10 +16764.331117 + 20 +10259.354767 + 30 +0.0 + 11 +16764.331117 + 21 +10259.354767 + 31 +0.0 + 0 +LINE + 5 +1BCE + 8 +0 + 62 + 0 + 10 +16779.946374 + 20 +10261.410554 + 30 +0.0 + 11 +16779.946374 + 21 +10261.410554 + 31 +0.0 + 0 +LINE + 5 +1BCF + 8 +0 + 62 + 0 + 10 +16804.335917 + 20 +10264.621499 + 30 +0.0 + 11 +16804.335917 + 21 +10264.621499 + 31 +0.0 + 0 +LINE + 5 +1BD0 + 8 +0 + 62 + 0 + 10 +16845.084301 + 20 +10269.986125 + 30 +0.0 + 11 +16845.084301 + 21 +10269.986125 + 31 +0.0 + 0 +LINE + 5 +1BD1 + 8 +0 + 62 + 0 + 10 +16860.699558 + 20 +10272.041913 + 30 +0.0 + 11 +16860.699558 + 21 +10272.041913 + 31 +0.0 + 0 +LINE + 5 +1BD2 + 8 +0 + 62 + 0 + 10 +16885.089101 + 20 +10275.252857 + 30 +0.0 + 11 +16885.089101 + 21 +10275.252857 + 31 +0.0 + 0 +LINE + 5 +1BD3 + 8 +0 + 62 + 0 + 10 +16925.837485 + 20 +10280.617483 + 30 +0.0 + 11 +16925.837485 + 21 +10280.617483 + 31 +0.0 + 0 +LINE + 5 +1BD4 + 8 +0 + 62 + 0 + 10 +16941.452742 + 20 +10282.673271 + 30 +0.0 + 11 +16941.452742 + 21 +10282.673271 + 31 +0.0 + 0 +LINE + 5 +1BD5 + 8 +0 + 62 + 0 + 10 +16965.842285 + 20 +10285.884215 + 30 +0.0 + 11 +16965.842285 + 21 +10285.884215 + 31 +0.0 + 0 +LINE + 5 +1BD6 + 8 +0 + 62 + 0 + 10 +17006.590669 + 20 +10291.248842 + 30 +0.0 + 11 +17006.590669 + 21 +10291.248842 + 31 +0.0 + 0 +LINE + 5 +1BD7 + 8 +0 + 62 + 0 + 10 +17022.205926 + 20 +10293.304629 + 30 +0.0 + 11 +17022.205926 + 21 +10293.304629 + 31 +0.0 + 0 +LINE + 5 +1BD8 + 8 +0 + 62 + 0 + 10 +17046.595469 + 20 +10296.515574 + 30 +0.0 + 11 +17046.595469 + 21 +10296.515574 + 31 +0.0 + 0 +LINE + 5 +1BD9 + 8 +0 + 62 + 0 + 10 +17087.343853 + 20 +10301.8802 + 30 +0.0 + 11 +17087.343853 + 21 +10301.8802 + 31 +0.0 + 0 +LINE + 5 +1BDA + 8 +0 + 62 + 0 + 10 +17102.95911 + 20 +10303.935988 + 30 +0.0 + 11 +17102.95911 + 21 +10303.935988 + 31 +0.0 + 0 +LINE + 5 +1BDB + 8 +0 + 62 + 0 + 10 +17127.348653 + 20 +10307.146932 + 30 +0.0 + 11 +17127.348653 + 21 +10307.146932 + 31 +0.0 + 0 +LINE + 5 +1BDC + 8 +0 + 62 + 0 + 10 +17195.75692 + 20 +10238.478535 + 30 +0.0 + 11 +17195.75692 + 21 +10238.478535 + 31 +0.0 + 0 +LINE + 5 +1BDD + 8 +0 + 62 + 0 + 10 +17211.372176 + 20 +10240.534322 + 30 +0.0 + 11 +17211.372176 + 21 +10240.534322 + 31 +0.0 + 0 +LINE + 5 +1BDE + 8 +0 + 62 + 0 + 10 +17235.76172 + 20 +10243.745267 + 30 +0.0 + 11 +17235.76172 + 21 +10243.745267 + 31 +0.0 + 0 +LINE + 5 +1BDF + 8 +0 + 62 + 0 + 10 +17276.510104 + 20 +10249.109893 + 30 +0.0 + 11 +17276.510104 + 21 +10249.109893 + 31 +0.0 + 0 +LINE + 5 +1BE0 + 8 +0 + 62 + 0 + 10 +16429.360465 + 20 +10251.004792 + 30 +0.0 + 11 +16429.360465 + 21 +10251.004792 + 31 +0.0 + 0 +LINE + 5 +1BE1 + 8 +0 + 62 + 0 + 10 +16442.011337 + 20 +10242.945298 + 30 +0.0 + 11 +16442.011337 + 21 +10242.945298 + 31 +0.0 + 0 +LINE + 5 +1BE2 + 8 +0 + 62 + 0 + 10 +16463.325624 + 20 +10289.054186 + 30 +0.0 + 11 +16463.325624 + 21 +10289.054186 + 31 +0.0 + 0 +LINE + 5 +1BE3 + 8 +0 + 62 + 0 + 10 +16522.784721 + 20 +10251.174564 + 30 +0.0 + 11 +16522.784721 + 21 +10251.174564 + 31 +0.0 + 0 +LINE + 5 +1BE4 + 8 +0 + 62 + 0 + 10 +16535.435593 + 20 +10243.11507 + 30 +0.0 + 11 +16535.435593 + 21 +10243.11507 + 31 +0.0 + 0 +LINE + 5 +1BE5 + 8 +0 + 62 + 0 + 10 +16556.74988 + 20 +10289.223958 + 30 +0.0 + 11 +16556.74988 + 21 +10289.223958 + 31 +0.0 + 0 +LINE + 5 +1BE6 + 8 +0 + 62 + 0 + 10 +16616.208977 + 20 +10251.344335 + 30 +0.0 + 11 +16616.208977 + 21 +10251.344335 + 31 +0.0 + 0 +LINE + 5 +1BE7 + 8 +0 + 62 + 0 + 10 +16628.859848 + 20 +10243.284841 + 30 +0.0 + 11 +16628.859848 + 21 +10243.284841 + 31 +0.0 + 0 +LINE + 5 +1BE8 + 8 +0 + 62 + 0 + 10 +16650.174136 + 20 +10289.393729 + 30 +0.0 + 11 +16650.174136 + 21 +10289.393729 + 31 +0.0 + 0 +LINE + 5 +1BE9 + 8 +0 + 62 + 0 + 10 +16709.633233 + 20 +10251.514107 + 30 +0.0 + 11 +16709.633233 + 21 +10251.514107 + 31 +0.0 + 0 +LINE + 5 +1BEA + 8 +0 + 62 + 0 + 10 +16722.284104 + 20 +10243.454613 + 30 +0.0 + 11 +16722.284104 + 21 +10243.454613 + 31 +0.0 + 0 +LINE + 5 +1BEB + 8 +0 + 62 + 0 + 10 +16743.598392 + 20 +10289.563501 + 30 +0.0 + 11 +16743.598392 + 21 +10289.563501 + 31 +0.0 + 0 +LINE + 5 +1BEC + 8 +0 + 62 + 0 + 10 +16803.057488 + 20 +10251.683878 + 30 +0.0 + 11 +16803.057488 + 21 +10251.683878 + 31 +0.0 + 0 +LINE + 5 +1BED + 8 +0 + 62 + 0 + 10 +16815.70836 + 20 +10243.624384 + 30 +0.0 + 11 +16815.70836 + 21 +10243.624384 + 31 +0.0 + 0 +LINE + 5 +1BEE + 8 +0 + 62 + 0 + 10 +16837.022647 + 20 +10289.733272 + 30 +0.0 + 11 +16837.022647 + 21 +10289.733272 + 31 +0.0 + 0 +LINE + 5 +1BEF + 8 +0 + 62 + 0 + 10 +16896.481744 + 20 +10251.85365 + 30 +0.0 + 11 +16896.481744 + 21 +10251.85365 + 31 +0.0 + 0 +LINE + 5 +1BF0 + 8 +0 + 62 + 0 + 10 +16909.132616 + 20 +10243.794156 + 30 +0.0 + 11 +16909.132616 + 21 +10243.794156 + 31 +0.0 + 0 +LINE + 5 +1BF1 + 8 +0 + 62 + 0 + 10 +16930.446903 + 20 +10289.903044 + 30 +0.0 + 11 +16930.446903 + 21 +10289.903044 + 31 +0.0 + 0 +LINE + 5 +1BF2 + 8 +0 + 62 + 0 + 10 +16989.906 + 20 +10252.023422 + 30 +0.0 + 11 +16989.906 + 21 +10252.023422 + 31 +0.0 + 0 +LINE + 5 +1BF3 + 8 +0 + 62 + 0 + 10 +17002.556872 + 20 +10243.963928 + 30 +0.0 + 11 +17002.556872 + 21 +10243.963928 + 31 +0.0 + 0 +LINE + 5 +1BF4 + 8 +0 + 62 + 0 + 10 +17023.871159 + 20 +10290.072816 + 30 +0.0 + 11 +17023.871159 + 21 +10290.072816 + 31 +0.0 + 0 +LINE + 5 +1BF5 + 8 +0 + 62 + 0 + 10 +17083.330256 + 20 +10252.193193 + 30 +0.0 + 11 +17083.330256 + 21 +10252.193193 + 31 +0.0 + 0 +LINE + 5 +1BF6 + 8 +0 + 62 + 0 + 10 +17095.981128 + 20 +10244.133699 + 30 +0.0 + 11 +17095.981128 + 21 +10244.133699 + 31 +0.0 + 0 +LINE + 5 +1BF7 + 8 +0 + 62 + 0 + 10 +17117.295415 + 20 +10290.242587 + 30 +0.0 + 11 +17117.295415 + 21 +10290.242587 + 31 +0.0 + 0 +LINE + 5 +1BF8 + 8 +0 + 62 + 0 + 10 +17176.754512 + 20 +10252.362965 + 30 +0.0 + 11 +17176.754512 + 21 +10252.362965 + 31 +0.0 + 0 +LINE + 5 +1BF9 + 8 +0 + 62 + 0 + 10 +17189.405384 + 20 +10244.303471 + 30 +0.0 + 11 +17189.405384 + 21 +10244.303471 + 31 +0.0 + 0 +LINE + 5 +1BFA + 8 +0 + 62 + 0 + 10 +17210.719671 + 20 +10290.412359 + 30 +0.0 + 11 +17210.719671 + 21 +10290.412359 + 31 +0.0 + 0 +LINE + 5 +1BFB + 8 +0 + 62 + 0 + 10 +17270.178768 + 20 +10252.532737 + 30 +0.0 + 11 +17270.178768 + 21 +10252.532737 + 31 +0.0 + 0 +LINE + 5 +1BFC + 8 +0 + 62 + 0 + 10 +15622.507321 + 20 +10287.526242 + 30 +0.0 + 11 +15622.507321 + 21 +10287.526242 + 31 +0.0 + 0 +LINE + 5 +1BFD + 8 +0 + 62 + 0 + 10 +15529.083065 + 20 +10287.35647 + 30 +0.0 + 11 +15529.083065 + 21 +10287.35647 + 31 +0.0 + 0 +LINE + 5 +1BFE + 8 +0 + 62 + 0 + 10 +15588.542162 + 20 +10249.476848 + 30 +0.0 + 11 +15588.542162 + 21 +10249.476848 + 31 +0.0 + 0 +LINE + 5 +1BFF + 8 +0 + 62 + 0 + 10 +15601.193034 + 20 +10241.417353 + 30 +0.0 + 11 +15601.193034 + 21 +10241.417353 + 31 +0.0 + 0 +LINE + 5 +1C00 + 8 +0 + 62 + 0 + 10 +15435.65881 + 20 +10287.186698 + 30 +0.0 + 11 +15435.65881 + 21 +10287.186698 + 31 +0.0 + 0 +LINE + 5 +1C01 + 8 +0 + 62 + 0 + 10 +15495.117906 + 20 +10249.307076 + 30 +0.0 + 11 +15495.117906 + 21 +10249.307076 + 31 +0.0 + 0 +LINE + 5 +1C02 + 8 +0 + 62 + 0 + 10 +15507.768778 + 20 +10241.247582 + 30 +0.0 + 11 +15507.768778 + 21 +10241.247582 + 31 +0.0 + 0 +LINE + 5 +1C03 + 8 +0 + 62 + 0 + 10 +15342.234554 + 20 +10287.016927 + 30 +0.0 + 11 +15342.234554 + 21 +10287.016927 + 31 +0.0 + 0 +LINE + 5 +1C04 + 8 +0 + 62 + 0 + 10 +15401.693651 + 20 +10249.137304 + 30 +0.0 + 11 +15401.693651 + 21 +10249.137304 + 31 +0.0 + 0 +LINE + 5 +1C05 + 8 +0 + 62 + 0 + 10 +15414.344522 + 20 +10241.07781 + 30 +0.0 + 11 +15414.344522 + 21 +10241.07781 + 31 +0.0 + 0 +LINE + 5 +1C06 + 8 +0 + 62 + 0 + 10 +15248.810298 + 20 +10286.847155 + 30 +0.0 + 11 +15248.810298 + 21 +10286.847155 + 31 +0.0 + 0 +LINE + 5 +1C07 + 8 +0 + 62 + 0 + 10 +15308.269395 + 20 +10248.967533 + 30 +0.0 + 11 +15308.269395 + 21 +10248.967533 + 31 +0.0 + 0 +LINE + 5 +1C08 + 8 +0 + 62 + 0 + 10 +15320.920266 + 20 +10240.908039 + 30 +0.0 + 11 +15320.920266 + 21 +10240.908039 + 31 +0.0 + 0 +LINE + 5 +1C09 + 8 +0 + 62 + 0 + 10 +15155.386042 + 20 +10286.677384 + 30 +0.0 + 11 +15155.386042 + 21 +10286.677384 + 31 +0.0 + 0 +LINE + 5 +1C0A + 8 +0 + 62 + 0 + 10 +15214.845139 + 20 +10248.797761 + 30 +0.0 + 11 +15214.845139 + 21 +10248.797761 + 31 +0.0 + 0 +LINE + 5 +1C0B + 8 +0 + 62 + 0 + 10 +15227.496011 + 20 +10240.738267 + 30 +0.0 + 11 +15227.496011 + 21 +10240.738267 + 31 +0.0 + 0 +LINE + 5 +1C0C + 8 +0 + 62 + 0 + 10 +15061.961786 + 20 +10286.507612 + 30 +0.0 + 11 +15061.961786 + 21 +10286.507612 + 31 +0.0 + 0 +LINE + 5 +1C0D + 8 +0 + 62 + 0 + 10 +15121.420883 + 20 +10248.62799 + 30 +0.0 + 11 +15121.420883 + 21 +10248.62799 + 31 +0.0 + 0 +LINE + 5 +1C0E + 8 +0 + 62 + 0 + 10 +15134.071755 + 20 +10240.568495 + 30 +0.0 + 11 +15134.071755 + 21 +10240.568495 + 31 +0.0 + 0 +LINE + 5 +1C0F + 8 +0 + 62 + 0 + 10 +14968.53753 + 20 +10286.33784 + 30 +0.0 + 11 +14968.53753 + 21 +10286.33784 + 31 +0.0 + 0 +LINE + 5 +1C10 + 8 +0 + 62 + 0 + 10 +15027.996627 + 20 +10248.458218 + 30 +0.0 + 11 +15027.996627 + 21 +10248.458218 + 31 +0.0 + 0 +LINE + 5 +1C11 + 8 +0 + 62 + 0 + 10 +15040.647499 + 20 +10240.398724 + 30 +0.0 + 11 +15040.647499 + 21 +10240.398724 + 31 +0.0 + 0 +LINE + 5 +1C12 + 8 +0 + 62 + 0 + 10 +14875.113274 + 20 +10286.168069 + 30 +0.0 + 11 +14875.113274 + 21 +10286.168069 + 31 +0.0 + 0 +LINE + 5 +1C13 + 8 +0 + 62 + 0 + 10 +14934.572371 + 20 +10248.288446 + 30 +0.0 + 11 +14934.572371 + 21 +10248.288446 + 31 +0.0 + 0 +LINE + 5 +1C14 + 8 +0 + 62 + 0 + 10 +14947.223243 + 20 +10240.228952 + 30 +0.0 + 11 +14947.223243 + 21 +10240.228952 + 31 +0.0 + 0 +LINE + 5 +1C15 + 8 +0 + 62 + 0 + 10 +14781.689019 + 20 +10285.998297 + 30 +0.0 + 11 +14781.689019 + 21 +10285.998297 + 31 +0.0 + 0 +LINE + 5 +1C16 + 8 +0 + 62 + 0 + 10 +14841.148116 + 20 +10248.118675 + 30 +0.0 + 11 +14841.148116 + 21 +10248.118675 + 31 +0.0 + 0 +LINE + 5 +1C17 + 8 +0 + 62 + 0 + 10 +14853.798987 + 20 +10240.059181 + 30 +0.0 + 11 +14853.798987 + 21 +10240.059181 + 31 +0.0 + 0 +LINE + 5 +1C18 + 8 +0 + 62 + 0 + 10 +14747.72386 + 20 +10247.948903 + 30 +0.0 + 11 +14747.72386 + 21 +10247.948903 + 31 +0.0 + 0 +LINE + 5 +1C19 + 8 +0 + 62 + 0 + 10 +14760.374731 + 20 +10239.889409 + 30 +0.0 + 11 +14760.374731 + 21 +10239.889409 + 31 +0.0 + 0 +LINE + 5 +1C1A + 8 +0 + 62 + 0 + 10 +16450.879919 + 20 +10259.406297 + 30 +0.0 + 11 +16450.879919 + 21 +10259.406297 + 31 +0.0 + 0 +LINE + 5 +1C1B + 8 +0 + 62 + 0 + 10 +16514.964099 + 20 +10309.652458 + 30 +0.0 + 11 +16514.964099 + 21 +10309.652458 + 31 +0.0 + 0 +LINE + 5 +1C1C + 8 +0 + 62 + 0 + 10 +16541.063717 + 20 +10285.736564 + 30 +0.0 + 11 +16541.063717 + 21 +10285.736564 + 31 +0.0 + 0 +LINE + 5 +1C1D + 8 +0 + 62 + 0 + 10 +16570.923449 + 20 +10258.375161 + 30 +0.0 + 11 +16570.923449 + 21 +10258.375161 + 31 +0.0 + 0 +LINE + 5 +1C1E + 8 +0 + 62 + 0 + 10 +16576.453029 + 20 +10253.308234 + 30 +0.0 + 11 +16576.453029 + 21 +10253.308234 + 31 +0.0 + 0 +LINE + 5 +1C1F + 8 +0 + 62 + 0 + 10 +16661.107247 + 20 +10284.705428 + 30 +0.0 + 11 +16661.107247 + 21 +10284.705428 + 31 +0.0 + 0 +LINE + 5 +1C20 + 8 +0 + 62 + 0 + 10 +16666.636827 + 20 +10279.638501 + 30 +0.0 + 11 +16666.636827 + 21 +10279.638501 + 31 +0.0 + 0 +LINE + 5 +1C21 + 8 +0 + 62 + 0 + 10 +16692.736445 + 20 +10255.722608 + 30 +0.0 + 11 +16692.736445 + 21 +10255.722608 + 31 +0.0 + 0 +LINE + 5 +1C22 + 8 +0 + 62 + 0 + 10 +16756.820625 + 20 +10305.968768 + 30 +0.0 + 11 +16756.820625 + 21 +10305.968768 + 31 +0.0 + 0 +LINE + 5 +1C23 + 8 +0 + 62 + 0 + 10 +16782.920243 + 20 +10282.052875 + 30 +0.0 + 11 +16782.920243 + 21 +10282.052875 + 31 +0.0 + 0 +LINE + 5 +1C24 + 8 +0 + 62 + 0 + 10 +16812.779975 + 20 +10254.691472 + 30 +0.0 + 11 +16812.779975 + 21 +10254.691472 + 31 +0.0 + 0 +LINE + 5 +1C25 + 8 +0 + 62 + 0 + 10 +16818.309555 + 20 +10249.624545 + 30 +0.0 + 11 +16818.309555 + 21 +10249.624545 + 31 +0.0 + 0 +LINE + 5 +1C26 + 8 +0 + 62 + 0 + 10 +16873.104041 + 20 +10308.383142 + 30 +0.0 + 11 +16873.104041 + 21 +10308.383142 + 31 +0.0 + 0 +LINE + 5 +1C27 + 8 +0 + 62 + 0 + 10 +16902.963773 + 20 +10281.021738 + 30 +0.0 + 11 +16902.963773 + 21 +10281.021738 + 31 +0.0 + 0 +LINE + 5 +1C28 + 8 +0 + 62 + 0 + 10 +16908.493353 + 20 +10275.954812 + 30 +0.0 + 11 +16908.493353 + 21 +10275.954812 + 31 +0.0 + 0 +LINE + 5 +1C29 + 8 +0 + 62 + 0 + 10 +16934.592971 + 20 +10252.038919 + 30 +0.0 + 11 +16934.592971 + 21 +10252.038919 + 31 +0.0 + 0 +LINE + 5 +1C2A + 8 +0 + 62 + 0 + 10 +16993.147571 + 20 +10307.352005 + 30 +0.0 + 11 +16993.147571 + 21 +10307.352005 + 31 +0.0 + 0 +LINE + 5 +1C2B + 8 +0 + 62 + 0 + 10 +16998.677151 + 20 +10302.285079 + 30 +0.0 + 11 +16998.677151 + 21 +10302.285079 + 31 +0.0 + 0 +LINE + 5 +1C2C + 8 +0 + 62 + 0 + 10 +17024.776769 + 20 +10278.369186 + 30 +0.0 + 11 +17024.776769 + 21 +10278.369186 + 31 +0.0 + 0 +LINE + 5 +1C2D + 8 +0 + 62 + 0 + 10 +17054.636501 + 20 +10251.007782 + 30 +0.0 + 11 +17054.636501 + 21 +10251.007782 + 31 +0.0 + 0 +LINE + 5 +1C2E + 8 +0 + 62 + 0 + 10 +17060.166081 + 20 +10245.940856 + 30 +0.0 + 11 +17060.166081 + 21 +10245.940856 + 31 +0.0 + 0 +LINE + 5 +1C2F + 8 +0 + 62 + 0 + 10 +17114.960567 + 20 +10304.699452 + 30 +0.0 + 11 +17114.960567 + 21 +10304.699452 + 31 +0.0 + 0 +LINE + 5 +1C30 + 8 +0 + 62 + 0 + 10 +17144.820299 + 20 +10277.338049 + 30 +0.0 + 11 +17144.820299 + 21 +10277.338049 + 31 +0.0 + 0 +LINE + 5 +1C31 + 8 +0 + 62 + 0 + 10 +17150.349879 + 20 +10272.271122 + 30 +0.0 + 11 +17150.349879 + 21 +10272.271122 + 31 +0.0 + 0 +LINE + 5 +1C32 + 8 +0 + 62 + 0 + 10 +17176.449497 + 20 +10248.355229 + 30 +0.0 + 11 +17176.449497 + 21 +10248.355229 + 31 +0.0 + 0 +LINE + 5 +1C33 + 8 +0 + 62 + 0 + 10 +17235.004098 + 20 +10303.668316 + 30 +0.0 + 11 +17235.004098 + 21 +10303.668316 + 31 +0.0 + 0 +LINE + 5 +1C34 + 8 +0 + 62 + 0 + 10 +17240.533678 + 20 +10298.601389 + 30 +0.0 + 11 +17240.533678 + 21 +10298.601389 + 31 +0.0 + 0 +LINE + 5 +1C35 + 8 +0 + 62 + 0 + 10 +17266.633295 + 20 +10274.685496 + 30 +0.0 + 11 +17266.633295 + 21 +10274.685496 + 31 +0.0 + 0 +LINE + 5 +1C36 + 8 +0 + 62 + 0 + 10 +15573.637612 + 20 +10300.471322 + 30 +0.0 + 11 +15573.637612 + 21 +10300.471322 + 31 +0.0 + 0 +LINE + 5 +1C37 + 8 +0 + 62 + 0 + 10 +15603.497344 + 20 +10273.109919 + 30 +0.0 + 11 +15603.497344 + 21 +10273.109919 + 31 +0.0 + 0 +LINE + 5 +1C38 + 8 +0 + 62 + 0 + 10 +15609.026924 + 20 +10268.042992 + 30 +0.0 + 11 +15609.026924 + 21 +10268.042992 + 31 +0.0 + 0 +LINE + 5 +1C39 + 8 +0 + 62 + 0 + 10 +15635.126542 + 20 +10244.127099 + 30 +0.0 + 11 +15635.126542 + 21 +10244.127099 + 31 +0.0 + 0 +LINE + 5 +1C3A + 8 +0 + 62 + 0 + 10 +15451.824616 + 20 +10303.123875 + 30 +0.0 + 11 +15451.824616 + 21 +10303.123875 + 31 +0.0 + 0 +LINE + 5 +1C3B + 8 +0 + 62 + 0 + 10 +15457.354196 + 20 +10298.056948 + 30 +0.0 + 11 +15457.354196 + 21 +10298.056948 + 31 +0.0 + 0 +LINE + 5 +1C3C + 8 +0 + 62 + 0 + 10 +15483.453814 + 20 +10274.141055 + 30 +0.0 + 11 +15483.453814 + 21 +10274.141055 + 31 +0.0 + 0 +LINE + 5 +1C3D + 8 +0 + 62 + 0 + 10 +15513.313546 + 20 +10246.779652 + 30 +0.0 + 11 +15513.313546 + 21 +10246.779652 + 31 +0.0 + 0 +LINE + 5 +1C3E + 8 +0 + 62 + 0 + 10 +15518.843126 + 20 +10241.712725 + 30 +0.0 + 11 +15518.843126 + 21 +10241.712725 + 31 +0.0 + 0 +LINE + 5 +1C3F + 8 +0 + 62 + 0 + 10 +15331.781086 + 20 +10304.155011 + 30 +0.0 + 11 +15331.781086 + 21 +10304.155011 + 31 +0.0 + 0 +LINE + 5 +1C40 + 8 +0 + 62 + 0 + 10 +15361.640818 + 20 +10276.793608 + 30 +0.0 + 11 +15361.640818 + 21 +10276.793608 + 31 +0.0 + 0 +LINE + 5 +1C41 + 8 +0 + 62 + 0 + 10 +15367.170398 + 20 +10271.726681 + 30 +0.0 + 11 +15367.170398 + 21 +10271.726681 + 31 +0.0 + 0 +LINE + 5 +1C42 + 8 +0 + 62 + 0 + 10 +15393.270016 + 20 +10247.810788 + 30 +0.0 + 11 +15393.270016 + 21 +10247.810788 + 31 +0.0 + 0 +LINE + 5 +1C43 + 8 +0 + 62 + 0 + 10 +15209.96809 + 20 +10306.807564 + 30 +0.0 + 11 +15209.96809 + 21 +10306.807564 + 31 +0.0 + 0 +LINE + 5 +1C44 + 8 +0 + 62 + 0 + 10 +15215.49767 + 20 +10301.740638 + 30 +0.0 + 11 +15215.49767 + 21 +10301.740638 + 31 +0.0 + 0 +LINE + 5 +1C45 + 8 +0 + 62 + 0 + 10 +15241.597288 + 20 +10277.824744 + 30 +0.0 + 11 +15241.597288 + 21 +10277.824744 + 31 +0.0 + 0 +LINE + 5 +1C46 + 8 +0 + 62 + 0 + 10 +15271.45702 + 20 +10250.463341 + 30 +0.0 + 11 +15271.45702 + 21 +10250.463341 + 31 +0.0 + 0 +LINE + 5 +1C47 + 8 +0 + 62 + 0 + 10 +15276.9866 + 20 +10245.396415 + 30 +0.0 + 11 +15276.9866 + 21 +10245.396415 + 31 +0.0 + 0 +LINE + 5 +1C48 + 8 +0 + 62 + 0 + 10 +15089.92456 + 20 +10307.838701 + 30 +0.0 + 11 +15089.92456 + 21 +10307.838701 + 31 +0.0 + 0 +LINE + 5 +1C49 + 8 +0 + 62 + 0 + 10 +15119.784292 + 20 +10280.477297 + 30 +0.0 + 11 +15119.784292 + 21 +10280.477297 + 31 +0.0 + 0 +LINE + 5 +1C4A + 8 +0 + 62 + 0 + 10 +15125.313872 + 20 +10275.410371 + 30 +0.0 + 11 +15125.313872 + 21 +10275.410371 + 31 +0.0 + 0 +LINE + 5 +1C4B + 8 +0 + 62 + 0 + 10 +15151.41349 + 20 +10251.494478 + 30 +0.0 + 11 +15151.41349 + 21 +10251.494478 + 31 +0.0 + 0 +LINE + 5 +1C4C + 8 +0 + 62 + 0 + 10 +14973.641144 + 20 +10305.424327 + 30 +0.0 + 11 +14973.641144 + 21 +10305.424327 + 31 +0.0 + 0 +LINE + 5 +1C4D + 8 +0 + 62 + 0 + 10 +14999.740762 + 20 +10281.508434 + 30 +0.0 + 11 +14999.740762 + 21 +10281.508434 + 31 +0.0 + 0 +LINE + 5 +1C4E + 8 +0 + 62 + 0 + 10 +15029.600494 + 20 +10254.147031 + 30 +0.0 + 11 +15029.600494 + 21 +10254.147031 + 31 +0.0 + 0 +LINE + 5 +1C4F + 8 +0 + 62 + 0 + 10 +15035.130074 + 20 +10249.080104 + 30 +0.0 + 11 +15035.130074 + 21 +10249.080104 + 31 +0.0 + 0 +LINE + 5 +1C50 + 8 +0 + 62 + 0 + 10 +14877.927766 + 20 +10284.160987 + 30 +0.0 + 11 +14877.927766 + 21 +10284.160987 + 31 +0.0 + 0 +LINE + 5 +1C51 + 8 +0 + 62 + 0 + 10 +14883.457346 + 20 +10279.09406 + 30 +0.0 + 11 +14883.457346 + 21 +10279.09406 + 31 +0.0 + 0 +LINE + 5 +1C52 + 8 +0 + 62 + 0 + 10 +14909.556964 + 20 +10255.178167 + 30 +0.0 + 11 +14909.556964 + 21 +10255.178167 + 31 +0.0 + 0 +LINE + 5 +1C53 + 8 +0 + 62 + 0 + 10 +14731.784618 + 20 +10309.108017 + 30 +0.0 + 11 +14731.784618 + 21 +10309.108017 + 31 +0.0 + 0 +LINE + 5 +1C54 + 8 +0 + 62 + 0 + 10 +14757.884236 + 20 +10285.192123 + 30 +0.0 + 11 +14757.884236 + 21 +10285.192123 + 31 +0.0 + 0 +LINE + 5 +1C55 + 8 +0 + 62 + 0 + 10 +14787.743968 + 20 +10257.83072 + 30 +0.0 + 11 +14787.743968 + 21 +10257.83072 + 31 +0.0 + 0 +LINE + 5 +1C56 + 8 +0 + 62 + 0 + 10 +14793.273548 + 20 +10252.763793 + 30 +0.0 + 11 +14793.273548 + 21 +10252.763793 + 31 +0.0 + 0 +INSERT + 5 +1C57 + 8 +SCHRAFFUR + 2 +*X78 + 10 +727.274018 + 20 +-2105.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +500.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +1C58 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21E7 + 8 +ESTRICH + 10 +16452.274018 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +21E8 + 8 +ESTRICH + 10 +16452.274018 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +21E9 + 8 +ESTRICH + 10 +17292.266155 + 20 +7455.0 + 30 +0.0 + 0 +SEQEND + 5 +21EA + 8 +ESTRICH + 0 +POLYLINE + 5 +1C5D + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21EB + 8 +ESTRICH + 10 +17292.266155 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +21EC + 8 +ESTRICH + 10 +16452.274018 + 20 +7330.0 + 30 +0.0 + 0 +SEQEND + 5 +21ED + 8 +ESTRICH + 0 +POLYLINE + 5 +1C61 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21EE + 8 +ESTRICH + 10 +16452.274018 + 20 +7130.0 + 30 +0.0 + 0 +VERTEX + 5 +21EF + 8 +ESTRICH + 10 +16452.274018 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +21F0 + 8 +ESTRICH + 10 +17292.266155 + 20 +7330.0 + 30 +0.0 + 0 +SEQEND + 5 +21F1 + 8 +ESTRICH + 0 +POLYLINE + 5 +1C66 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21F2 + 8 +ESTRICH + 10 +17292.266155 + 20 +7130.0 + 30 +0.0 + 0 +VERTEX + 5 +21F3 + 8 +ESTRICH + 10 +16452.274018 + 20 +7130.0 + 30 +0.0 + 0 +SEQEND + 5 +21F4 + 8 +ESTRICH + 0 +POLYLINE + 5 +1C6A + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21F5 + 8 +ESTRICH + 10 +16452.274018 + 20 +7080.0 + 30 +0.0 + 0 +VERTEX + 5 +21F6 + 8 +ESTRICH + 10 +16452.274018 + 20 +7130.0 + 30 +0.0 + 0 +VERTEX + 5 +21F7 + 8 +ESTRICH + 10 +17292.266155 + 20 +7130.0 + 30 +0.0 + 0 +SEQEND + 5 +21F8 + 8 +ESTRICH + 0 +POLYLINE + 5 +1C6F + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21F9 + 8 +ESTRICH + 10 +17292.266155 + 20 +7080.0 + 30 +0.0 + 0 +VERTEX + 5 +21FA + 8 +ESTRICH + 10 +16452.274018 + 20 +7080.0 + 30 +0.0 + 0 +SEQEND + 5 +21FB + 8 +ESTRICH + 0 +POLYLINE + 5 +1C73 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +21FC + 8 +ESTRICH + 10 +16452.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +21FD + 8 +ESTRICH + 10 +16452.274018 + 20 +7080.0 + 30 +0.0 + 0 +VERTEX + 5 +21FE + 8 +ESTRICH + 10 +17292.266155 + 20 +7080.0 + 30 +0.0 + 0 +SEQEND + 5 +21FF + 8 +ESTRICH + 0 +POLYLINE + 5 +1C78 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2200 + 8 +ESTRICH + 10 +17292.266155 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +2201 + 8 +ESTRICH + 10 +16452.274018 + 20 +6880.0 + 30 +0.0 + 0 +SEQEND + 5 +2202 + 8 +ESTRICH + 0 +POLYLINE + 5 +1C7C + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +2203 + 8 +PE-FOLIE + 10 +16637.274018 + 20 +7115.0 + 30 +0.0 + 0 +VERTEX + 5 +2204 + 8 +PE-FOLIE + 10 +17292.266155 + 20 +7115.0 + 30 +0.0 + 0 +SEQEND + 5 +2205 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +1C80 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +2206 + 8 +PE-FOLIE + 10 +16457.274018 + 20 +7095.0 + 30 +0.0 + 0 +VERTEX + 5 +2207 + 8 +PE-FOLIE + 10 +17292.266155 + 20 +7095.0 + 30 +0.0 + 0 +SEQEND + 5 +2208 + 8 +PE-FOLIE + 0 +LINE + 5 +1C84 + 8 +0 + 62 + 0 + 10 +16526.235048 + 20 +7330.0 + 30 +0.0 + 11 +16651.235048 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C85 + 8 +0 + 62 + 0 + 10 +16950.499117 + 20 +7330.0 + 30 +0.0 + 11 +17075.499117 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C86 + 8 +0 + 62 + 0 + 10 +16596.945726 + 20 +7330.0 + 30 +0.0 + 11 +16721.945726 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C87 + 8 +0 + 62 + 0 + 10 +17021.209795 + 20 +7330.0 + 30 +0.0 + 11 +17146.209795 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C88 + 8 +0 + 62 + 0 + 10 +16667.656405 + 20 +7330.0 + 30 +0.0 + 11 +16792.656405 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C89 + 8 +0 + 62 + 0 + 10 +17091.920473 + 20 +7330.0 + 30 +0.0 + 11 +17216.920473 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C8A + 8 +0 + 62 + 0 + 10 +16738.367083 + 20 +7330.0 + 30 +0.0 + 11 +16863.367083 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C8B + 8 +0 + 62 + 0 + 10 +17162.631151 + 20 +7330.0 + 30 +0.0 + 11 +17287.631151 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1C8C + 8 +0 + 62 + 0 + 10 +16452.274018 + 20 +6955.790748 + 30 +0.0 + 11 +16458.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C8D + 8 +0 + 62 + 0 + 10 +16533.524018 + 20 +6955.790748 + 30 +0.0 + 11 +16571.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C8E + 8 +0 + 62 + 0 + 10 +16646.024018 + 20 +6955.790748 + 30 +0.0 + 11 +16683.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C8F + 8 +0 + 62 + 0 + 10 +16758.524018 + 20 +6955.790748 + 30 +0.0 + 11 +16796.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C90 + 8 +0 + 62 + 0 + 10 +16871.024018 + 20 +6955.790748 + 30 +0.0 + 11 +16908.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C91 + 8 +0 + 62 + 0 + 10 +16983.524018 + 20 +6955.790748 + 30 +0.0 + 11 +17021.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C92 + 8 +0 + 62 + 0 + 10 +17096.024018 + 20 +6955.790748 + 30 +0.0 + 11 +17133.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C93 + 8 +0 + 62 + 0 + 10 +17208.524018 + 20 +6955.790748 + 30 +0.0 + 11 +17246.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1C94 + 8 +0 + 62 + 0 + 10 +16477.274018 + 20 +6988.2667 + 30 +0.0 + 11 +16514.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C95 + 8 +0 + 62 + 0 + 10 +16589.774018 + 20 +6988.2667 + 30 +0.0 + 11 +16627.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C96 + 8 +0 + 62 + 0 + 10 +16702.274018 + 20 +6988.2667 + 30 +0.0 + 11 +16739.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C97 + 8 +0 + 62 + 0 + 10 +16814.774018 + 20 +6988.2667 + 30 +0.0 + 11 +16852.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C98 + 8 +0 + 62 + 0 + 10 +16927.274018 + 20 +6988.2667 + 30 +0.0 + 11 +16964.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C99 + 8 +0 + 62 + 0 + 10 +17039.774018 + 20 +6988.2667 + 30 +0.0 + 11 +17077.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C9A + 8 +0 + 62 + 0 + 10 +17152.274018 + 20 +6988.2667 + 30 +0.0 + 11 +17189.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C9B + 8 +0 + 62 + 0 + 10 +17264.774018 + 20 +6988.2667 + 30 +0.0 + 11 +17302.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1C9C + 8 +0 + 62 + 0 + 10 +16452.274018 + 20 +7020.742653 + 30 +0.0 + 11 +16458.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1C9D + 8 +0 + 62 + 0 + 10 +16533.524018 + 20 +7020.742653 + 30 +0.0 + 11 +16571.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1C9E + 8 +0 + 62 + 0 + 10 +16646.024018 + 20 +7020.742653 + 30 +0.0 + 11 +16683.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1C9F + 8 +0 + 62 + 0 + 10 +16758.524018 + 20 +7020.742653 + 30 +0.0 + 11 +16796.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1CA0 + 8 +0 + 62 + 0 + 10 +16871.024018 + 20 +7020.742653 + 30 +0.0 + 11 +16908.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1CA1 + 8 +0 + 62 + 0 + 10 +16983.524018 + 20 +7020.742653 + 30 +0.0 + 11 +17021.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1CA2 + 8 +0 + 62 + 0 + 10 +17096.024018 + 20 +7020.742653 + 30 +0.0 + 11 +17133.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1CA3 + 8 +0 + 62 + 0 + 10 +17208.524018 + 20 +7020.742653 + 30 +0.0 + 11 +17246.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1CA4 + 8 +0 + 62 + 0 + 10 +16477.274018 + 20 +7053.218605 + 30 +0.0 + 11 +16514.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CA5 + 8 +0 + 62 + 0 + 10 +16589.774018 + 20 +7053.218605 + 30 +0.0 + 11 +16627.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CA6 + 8 +0 + 62 + 0 + 10 +16702.274018 + 20 +7053.218605 + 30 +0.0 + 11 +16739.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CA7 + 8 +0 + 62 + 0 + 10 +16814.774018 + 20 +7053.218605 + 30 +0.0 + 11 +16852.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CA8 + 8 +0 + 62 + 0 + 10 +16927.274018 + 20 +7053.218605 + 30 +0.0 + 11 +16964.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CA9 + 8 +0 + 62 + 0 + 10 +17039.774018 + 20 +7053.218605 + 30 +0.0 + 11 +17077.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CAA + 8 +0 + 62 + 0 + 10 +17152.274018 + 20 +7053.218605 + 30 +0.0 + 11 +17189.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CAB + 8 +0 + 62 + 0 + 10 +17264.774018 + 20 +7053.218605 + 30 +0.0 + 11 +17302.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CAC + 8 +0 + 62 + 0 + 10 +16477.274018 + 20 +6923.314795 + 30 +0.0 + 11 +16514.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CAD + 8 +0 + 62 + 0 + 10 +16589.774018 + 20 +6923.314795 + 30 +0.0 + 11 +16627.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CAE + 8 +0 + 62 + 0 + 10 +16702.274018 + 20 +6923.314795 + 30 +0.0 + 11 +16739.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CAF + 8 +0 + 62 + 0 + 10 +16814.774018 + 20 +6923.314795 + 30 +0.0 + 11 +16852.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CB0 + 8 +0 + 62 + 0 + 10 +16927.274018 + 20 +6923.314795 + 30 +0.0 + 11 +16964.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CB1 + 8 +0 + 62 + 0 + 10 +17039.774018 + 20 +6923.314795 + 30 +0.0 + 11 +17077.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CB2 + 8 +0 + 62 + 0 + 10 +17152.274018 + 20 +6923.314795 + 30 +0.0 + 11 +17189.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CB3 + 8 +0 + 62 + 0 + 10 +17264.774018 + 20 +6923.314795 + 30 +0.0 + 11 +17302.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CB4 + 8 +0 + 62 + 0 + 10 +16452.274018 + 20 +6890.838843 + 30 +0.0 + 11 +16458.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CB5 + 8 +0 + 62 + 0 + 10 +16533.524018 + 20 +6890.838843 + 30 +0.0 + 11 +16571.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CB6 + 8 +0 + 62 + 0 + 10 +16646.024018 + 20 +6890.838843 + 30 +0.0 + 11 +16683.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CB7 + 8 +0 + 62 + 0 + 10 +16758.524018 + 20 +6890.838843 + 30 +0.0 + 11 +16796.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CB8 + 8 +0 + 62 + 0 + 10 +16871.024018 + 20 +6890.838843 + 30 +0.0 + 11 +16908.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CB9 + 8 +0 + 62 + 0 + 10 +16983.524018 + 20 +6890.838843 + 30 +0.0 + 11 +17021.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CBA + 8 +0 + 62 + 0 + 10 +17096.024018 + 20 +6890.838843 + 30 +0.0 + 11 +17133.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CBB + 8 +0 + 62 + 0 + 10 +17208.524018 + 20 +6890.838843 + 30 +0.0 + 11 +17246.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1CBC + 8 +0 + 62 + 0 + 10 +16983.523947 + 20 +6890.838841 + 30 +0.0 + 11 +16964.773947 + 21 +6923.314794 + 31 +0.0 + 0 +LINE + 5 +1CBD + 8 +0 + 62 + 0 + 10 +16927.273947 + 20 +6988.266699 + 30 +0.0 + 11 +16908.523947 + 21 +7020.742652 + 31 +0.0 + 0 +LINE + 5 +1CBE + 8 +0 + 62 + 0 + 10 +16927.273947 + 20 +6923.314794 + 30 +0.0 + 11 +16908.523947 + 21 +6955.790747 + 31 +0.0 + 0 +LINE + 5 +1CBF + 8 +0 + 62 + 0 + 10 +16871.023947 + 20 +7020.742652 + 30 +0.0 + 11 +16852.273947 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CC0 + 8 +0 + 62 + 0 + 10 +16914.781756 + 20 +6880.0 + 30 +0.0 + 11 +16908.523948 + 21 +6890.838841 + 31 +0.0 + 0 +LINE + 5 +1CC1 + 8 +0 + 62 + 0 + 10 +16871.023948 + 20 +6955.790747 + 30 +0.0 + 11 +16852.273948 + 21 +6988.266699 + 31 +0.0 + 0 +LINE + 5 +1CC2 + 8 +0 + 62 + 0 + 10 +16814.773948 + 20 +7053.218605 + 30 +0.0 + 11 +16799.311702 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CC3 + 8 +0 + 62 + 0 + 10 +16871.023948 + 20 +6890.838841 + 30 +0.0 + 11 +16852.273948 + 21 +6923.314794 + 31 +0.0 + 0 +LINE + 5 +1CC4 + 8 +0 + 62 + 0 + 10 +16814.773948 + 20 +6988.266699 + 30 +0.0 + 11 +16796.023948 + 21 +7020.742652 + 31 +0.0 + 0 +LINE + 5 +1CC5 + 8 +0 + 62 + 0 + 10 +16814.773948 + 20 +6923.314794 + 30 +0.0 + 11 +16796.023948 + 21 +6955.790747 + 31 +0.0 + 0 +LINE + 5 +1CC6 + 8 +0 + 62 + 0 + 10 +16758.523948 + 20 +7020.742652 + 30 +0.0 + 11 +16739.773948 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CC7 + 8 +0 + 62 + 0 + 10 +16802.281756 + 20 +6880.0 + 30 +0.0 + 11 +16796.023948 + 21 +6890.838842 + 31 +0.0 + 0 +LINE + 5 +1CC8 + 8 +0 + 62 + 0 + 10 +16758.523948 + 20 +6955.790747 + 30 +0.0 + 11 +16739.773948 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1CC9 + 8 +0 + 62 + 0 + 10 +16702.273948 + 20 +7053.218605 + 30 +0.0 + 11 +16686.811702 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CCA + 8 +0 + 62 + 0 + 10 +16758.523948 + 20 +6890.838842 + 30 +0.0 + 11 +16739.773948 + 21 +6923.314794 + 31 +0.0 + 0 +LINE + 5 +1CCB + 8 +0 + 62 + 0 + 10 +16702.273948 + 20 +6988.2667 + 30 +0.0 + 11 +16683.523948 + 21 +7020.742652 + 31 +0.0 + 0 +LINE + 5 +1CCC + 8 +0 + 62 + 0 + 10 +16702.273948 + 20 +6923.314794 + 30 +0.0 + 11 +16683.523948 + 21 +6955.790747 + 31 +0.0 + 0 +LINE + 5 +1CCD + 8 +0 + 62 + 0 + 10 +16646.023948 + 20 +7020.742652 + 30 +0.0 + 11 +16627.273948 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CCE + 8 +0 + 62 + 0 + 10 +16689.781757 + 20 +6880.0 + 30 +0.0 + 11 +16683.523948 + 21 +6890.838842 + 31 +0.0 + 0 +LINE + 5 +1CCF + 8 +0 + 62 + 0 + 10 +16646.023948 + 20 +6955.790747 + 30 +0.0 + 11 +16627.273948 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1CD0 + 8 +0 + 62 + 0 + 10 +16589.773948 + 20 +7053.218605 + 30 +0.0 + 11 +16574.311703 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CD1 + 8 +0 + 62 + 0 + 10 +16646.023948 + 20 +6890.838842 + 30 +0.0 + 11 +16627.273948 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CD2 + 8 +0 + 62 + 0 + 10 +16589.773948 + 20 +6988.2667 + 30 +0.0 + 11 +16571.023948 + 21 +7020.742652 + 31 +0.0 + 0 +LINE + 5 +1CD3 + 8 +0 + 62 + 0 + 10 +16589.773949 + 20 +6923.314795 + 30 +0.0 + 11 +16571.023949 + 21 +6955.790747 + 31 +0.0 + 0 +LINE + 5 +1CD4 + 8 +0 + 62 + 0 + 10 +16533.523949 + 20 +7020.742652 + 30 +0.0 + 11 +16514.773949 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1CD5 + 8 +0 + 62 + 0 + 10 +16577.281757 + 20 +6880.0 + 30 +0.0 + 11 +16571.023949 + 21 +6890.838842 + 31 +0.0 + 0 +LINE + 5 +1CD6 + 8 +0 + 62 + 0 + 10 +16533.523949 + 20 +6955.790747 + 30 +0.0 + 11 +16514.773949 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1CD7 + 8 +0 + 62 + 0 + 10 +16477.273949 + 20 +7053.218605 + 30 +0.0 + 11 +16461.811703 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CD8 + 8 +0 + 62 + 0 + 10 +16533.523949 + 20 +6890.838842 + 30 +0.0 + 11 +16514.773949 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1CD9 + 8 +0 + 62 + 0 + 10 +16477.273949 + 20 +6988.2667 + 30 +0.0 + 11 +16458.523949 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1CDA + 8 +0 + 62 + 0 + 10 +16477.273949 + 20 +6923.314795 + 30 +0.0 + 11 +16458.523949 + 21 +6955.790747 + 31 +0.0 + 0 +LINE + 5 +1CDB + 8 +0 + 62 + 0 + 10 +16464.781758 + 20 +6880.0 + 30 +0.0 + 11 +16458.523949 + 21 +6890.838842 + 31 +0.0 + 0 +LINE + 5 +1CDC + 8 +0 + 62 + 0 + 10 +17027.281755 + 20 +6880.0 + 30 +0.0 + 11 +17021.023947 + 21 +6890.838841 + 31 +0.0 + 0 +LINE + 5 +1CDD + 8 +0 + 62 + 0 + 10 +16983.523947 + 20 +6955.790746 + 30 +0.0 + 11 +16964.773947 + 21 +6988.266699 + 31 +0.0 + 0 +LINE + 5 +1CDE + 8 +0 + 62 + 0 + 10 +16927.273947 + 20 +7053.218604 + 30 +0.0 + 11 +16911.811701 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CDF + 8 +0 + 62 + 0 + 10 +17039.773947 + 20 +6923.314794 + 30 +0.0 + 11 +17021.023947 + 21 +6955.790746 + 31 +0.0 + 0 +LINE + 5 +1CE0 + 8 +0 + 62 + 0 + 10 +16983.523947 + 20 +7020.742652 + 30 +0.0 + 11 +16964.773947 + 21 +7053.218604 + 31 +0.0 + 0 +LINE + 5 +1CE1 + 8 +0 + 62 + 0 + 10 +17096.023947 + 20 +6890.838841 + 30 +0.0 + 11 +17077.273947 + 21 +6923.314794 + 31 +0.0 + 0 +LINE + 5 +1CE2 + 8 +0 + 62 + 0 + 10 +17039.773947 + 20 +6988.266699 + 30 +0.0 + 11 +17021.023947 + 21 +7020.742652 + 31 +0.0 + 0 +LINE + 5 +1CE3 + 8 +0 + 62 + 0 + 10 +17139.781755 + 20 +6880.0 + 30 +0.0 + 11 +17133.523947 + 21 +6890.838841 + 31 +0.0 + 0 +LINE + 5 +1CE4 + 8 +0 + 62 + 0 + 10 +17096.023947 + 20 +6955.790746 + 30 +0.0 + 11 +17077.273947 + 21 +6988.266699 + 31 +0.0 + 0 +LINE + 5 +1CE5 + 8 +0 + 62 + 0 + 10 +17039.773947 + 20 +7053.218604 + 30 +0.0 + 11 +17024.311701 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CE6 + 8 +0 + 62 + 0 + 10 +17152.273947 + 20 +6923.314794 + 30 +0.0 + 11 +17133.523947 + 21 +6955.790746 + 31 +0.0 + 0 +LINE + 5 +1CE7 + 8 +0 + 62 + 0 + 10 +17096.023947 + 20 +7020.742651 + 30 +0.0 + 11 +17077.273947 + 21 +7053.218604 + 31 +0.0 + 0 +LINE + 5 +1CE8 + 8 +0 + 62 + 0 + 10 +17208.523947 + 20 +6890.838841 + 30 +0.0 + 11 +17189.773947 + 21 +6923.314793 + 31 +0.0 + 0 +LINE + 5 +1CE9 + 8 +0 + 62 + 0 + 10 +17152.273947 + 20 +6988.266699 + 30 +0.0 + 11 +17133.523947 + 21 +7020.742651 + 31 +0.0 + 0 +LINE + 5 +1CEA + 8 +0 + 62 + 0 + 10 +17252.281754 + 20 +6880.0 + 30 +0.0 + 11 +17246.023946 + 21 +6890.838841 + 31 +0.0 + 0 +LINE + 5 +1CEB + 8 +0 + 62 + 0 + 10 +17208.523946 + 20 +6955.790746 + 30 +0.0 + 11 +17189.773946 + 21 +6988.266699 + 31 +0.0 + 0 +LINE + 5 +1CEC + 8 +0 + 62 + 0 + 10 +17152.273946 + 20 +7053.218604 + 30 +0.0 + 11 +17136.8117 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CED + 8 +0 + 62 + 0 + 10 +17264.773946 + 20 +6923.314793 + 30 +0.0 + 11 +17246.023946 + 21 +6955.790746 + 31 +0.0 + 0 +LINE + 5 +1CEE + 8 +0 + 62 + 0 + 10 +17208.523946 + 20 +7020.742651 + 30 +0.0 + 11 +17189.773946 + 21 +7053.218604 + 31 +0.0 + 0 +LINE + 5 +1CEF + 8 +0 + 62 + 0 + 10 +17264.773946 + 20 +6988.266699 + 30 +0.0 + 11 +17246.023946 + 21 +7020.742651 + 31 +0.0 + 0 +LINE + 5 +1CF0 + 8 +0 + 62 + 0 + 10 +17264.773946 + 20 +7053.218604 + 30 +0.0 + 11 +17249.3117 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CF1 + 8 +0 + 62 + 0 + 10 +16864.766138 + 20 +6880.0 + 30 +0.0 + 11 +16871.023982 + 21 +6890.838903 + 31 +0.0 + 0 +LINE + 5 +1CF2 + 8 +0 + 62 + 0 + 10 +16908.523982 + 20 +6955.790808 + 30 +0.0 + 11 +16927.273982 + 21 +6988.26676 + 31 +0.0 + 0 +LINE + 5 +1CF3 + 8 +0 + 62 + 0 + 10 +16964.773982 + 20 +7053.218666 + 30 +0.0 + 11 +16980.236192 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CF4 + 8 +0 + 62 + 0 + 10 +16852.273982 + 20 +6923.314855 + 30 +0.0 + 11 +16871.023982 + 21 +6955.790808 + 31 +0.0 + 0 +LINE + 5 +1CF5 + 8 +0 + 62 + 0 + 10 +16908.523982 + 20 +7020.742713 + 30 +0.0 + 11 +16927.273982 + 21 +7053.218666 + 31 +0.0 + 0 +LINE + 5 +1CF6 + 8 +0 + 62 + 0 + 10 +16796.023982 + 20 +6890.838902 + 30 +0.0 + 11 +16814.773982 + 21 +6923.314855 + 31 +0.0 + 0 +LINE + 5 +1CF7 + 8 +0 + 62 + 0 + 10 +16852.273982 + 20 +6988.26676 + 30 +0.0 + 11 +16871.023982 + 21 +7020.742713 + 31 +0.0 + 0 +LINE + 5 +1CF8 + 8 +0 + 62 + 0 + 10 +16752.266139 + 20 +6880.0 + 30 +0.0 + 11 +16758.523982 + 21 +6890.838902 + 31 +0.0 + 0 +LINE + 5 +1CF9 + 8 +0 + 62 + 0 + 10 +16796.023982 + 20 +6955.790808 + 30 +0.0 + 11 +16814.773982 + 21 +6988.26676 + 31 +0.0 + 0 +LINE + 5 +1CFA + 8 +0 + 62 + 0 + 10 +16852.273982 + 20 +7053.218666 + 30 +0.0 + 11 +16867.736193 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1CFB + 8 +0 + 62 + 0 + 10 +16739.773982 + 20 +6923.314855 + 30 +0.0 + 11 +16758.523982 + 21 +6955.790808 + 31 +0.0 + 0 +LINE + 5 +1CFC + 8 +0 + 62 + 0 + 10 +16796.023982 + 20 +7020.742713 + 30 +0.0 + 11 +16814.773982 + 21 +7053.218665 + 31 +0.0 + 0 +LINE + 5 +1CFD + 8 +0 + 62 + 0 + 10 +16683.523982 + 20 +6890.838902 + 30 +0.0 + 11 +16702.273982 + 21 +6923.314855 + 31 +0.0 + 0 +LINE + 5 +1CFE + 8 +0 + 62 + 0 + 10 +16739.773982 + 20 +6988.26676 + 30 +0.0 + 11 +16758.523982 + 21 +7020.742713 + 31 +0.0 + 0 +LINE + 5 +1CFF + 8 +0 + 62 + 0 + 10 +16639.766139 + 20 +6880.0 + 30 +0.0 + 11 +16646.023982 + 21 +6890.838902 + 31 +0.0 + 0 +LINE + 5 +1D00 + 8 +0 + 62 + 0 + 10 +16683.523982 + 20 +6955.790807 + 30 +0.0 + 11 +16702.273982 + 21 +6988.26676 + 31 +0.0 + 0 +LINE + 5 +1D01 + 8 +0 + 62 + 0 + 10 +16739.773982 + 20 +7053.218665 + 30 +0.0 + 11 +16755.236193 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D02 + 8 +0 + 62 + 0 + 10 +16627.273983 + 20 +6923.314855 + 30 +0.0 + 11 +16646.023983 + 21 +6955.790807 + 31 +0.0 + 0 +LINE + 5 +1D03 + 8 +0 + 62 + 0 + 10 +16683.523983 + 20 +7020.742713 + 30 +0.0 + 11 +16702.273983 + 21 +7053.218665 + 31 +0.0 + 0 +LINE + 5 +1D04 + 8 +0 + 62 + 0 + 10 +16571.023983 + 20 +6890.838902 + 30 +0.0 + 11 +16589.773983 + 21 +6923.314855 + 31 +0.0 + 0 +LINE + 5 +1D05 + 8 +0 + 62 + 0 + 10 +16627.273983 + 20 +6988.26676 + 30 +0.0 + 11 +16646.023983 + 21 +7020.742713 + 31 +0.0 + 0 +LINE + 5 +1D06 + 8 +0 + 62 + 0 + 10 +16527.26614 + 20 +6880.0 + 30 +0.0 + 11 +16533.523983 + 21 +6890.838902 + 31 +0.0 + 0 +LINE + 5 +1D07 + 8 +0 + 62 + 0 + 10 +16571.023983 + 20 +6955.790807 + 30 +0.0 + 11 +16589.773983 + 21 +6988.26676 + 31 +0.0 + 0 +LINE + 5 +1D08 + 8 +0 + 62 + 0 + 10 +16627.273983 + 20 +7053.218665 + 30 +0.0 + 11 +16642.736194 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D09 + 8 +0 + 62 + 0 + 10 +16514.773983 + 20 +6923.314854 + 30 +0.0 + 11 +16533.523983 + 21 +6955.790807 + 31 +0.0 + 0 +LINE + 5 +1D0A + 8 +0 + 62 + 0 + 10 +16571.023983 + 20 +7020.742712 + 30 +0.0 + 11 +16589.773983 + 21 +7053.218665 + 31 +0.0 + 0 +LINE + 5 +1D0B + 8 +0 + 62 + 0 + 10 +16458.523983 + 20 +6890.838902 + 30 +0.0 + 11 +16477.273983 + 21 +6923.314854 + 31 +0.0 + 0 +LINE + 5 +1D0C + 8 +0 + 62 + 0 + 10 +16514.773983 + 20 +6988.26676 + 30 +0.0 + 11 +16533.523983 + 21 +7020.742712 + 31 +0.0 + 0 +LINE + 5 +1D0D + 8 +0 + 62 + 0 + 10 +16458.523983 + 20 +6955.790807 + 30 +0.0 + 11 +16477.273983 + 21 +6988.26676 + 31 +0.0 + 0 +LINE + 5 +1D0E + 8 +0 + 62 + 0 + 10 +16514.773983 + 20 +7053.218665 + 30 +0.0 + 11 +16530.236194 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D0F + 8 +0 + 62 + 0 + 10 +16458.523983 + 20 +7020.742712 + 30 +0.0 + 11 +16477.273983 + 21 +7053.218665 + 31 +0.0 + 0 +LINE + 5 +1D10 + 8 +0 + 62 + 0 + 10 +16908.523982 + 20 +6890.838903 + 30 +0.0 + 11 +16927.273982 + 21 +6923.314855 + 31 +0.0 + 0 +LINE + 5 +1D11 + 8 +0 + 62 + 0 + 10 +16964.773982 + 20 +6988.266761 + 30 +0.0 + 11 +16983.523982 + 21 +7020.742713 + 31 +0.0 + 0 +LINE + 5 +1D12 + 8 +0 + 62 + 0 + 10 +16964.773981 + 20 +6923.314855 + 30 +0.0 + 11 +16983.523981 + 21 +6955.790808 + 31 +0.0 + 0 +LINE + 5 +1D13 + 8 +0 + 62 + 0 + 10 +17021.023981 + 20 +7020.742713 + 30 +0.0 + 11 +17039.773981 + 21 +7053.218666 + 31 +0.0 + 0 +LINE + 5 +1D14 + 8 +0 + 62 + 0 + 10 +16977.266138 + 20 +6880.0 + 30 +0.0 + 11 +16983.523981 + 21 +6890.838903 + 31 +0.0 + 0 +LINE + 5 +1D15 + 8 +0 + 62 + 0 + 10 +17021.023981 + 20 +6955.790808 + 30 +0.0 + 11 +17039.773981 + 21 +6988.266761 + 31 +0.0 + 0 +LINE + 5 +1D16 + 8 +0 + 62 + 0 + 10 +17077.273981 + 20 +7053.218666 + 30 +0.0 + 11 +17092.736192 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D17 + 8 +0 + 62 + 0 + 10 +17021.023981 + 20 +6890.838903 + 30 +0.0 + 11 +17039.773981 + 21 +6923.314855 + 31 +0.0 + 0 +LINE + 5 +1D18 + 8 +0 + 62 + 0 + 10 +17077.273981 + 20 +6988.266761 + 30 +0.0 + 11 +17096.023981 + 21 +7020.742713 + 31 +0.0 + 0 +LINE + 5 +1D19 + 8 +0 + 62 + 0 + 10 +17077.273981 + 20 +6923.314856 + 30 +0.0 + 11 +17096.023981 + 21 +6955.790808 + 31 +0.0 + 0 +LINE + 5 +1D1A + 8 +0 + 62 + 0 + 10 +17133.523981 + 20 +7020.742713 + 30 +0.0 + 11 +17152.273981 + 21 +7053.218666 + 31 +0.0 + 0 +LINE + 5 +1D1B + 8 +0 + 62 + 0 + 10 +17089.766137 + 20 +6880.0 + 30 +0.0 + 11 +17096.023981 + 21 +6890.838903 + 31 +0.0 + 0 +LINE + 5 +1D1C + 8 +0 + 62 + 0 + 10 +17133.523981 + 20 +6955.790808 + 30 +0.0 + 11 +17152.273981 + 21 +6988.266761 + 31 +0.0 + 0 +LINE + 5 +1D1D + 8 +0 + 62 + 0 + 10 +17189.773981 + 20 +7053.218666 + 30 +0.0 + 11 +17205.236191 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D1E + 8 +0 + 62 + 0 + 10 +17133.523981 + 20 +6890.838903 + 30 +0.0 + 11 +17152.273981 + 21 +6923.314856 + 31 +0.0 + 0 +LINE + 5 +1D1F + 8 +0 + 62 + 0 + 10 +17189.773981 + 20 +6988.266761 + 30 +0.0 + 11 +17208.523981 + 21 +7020.742714 + 31 +0.0 + 0 +LINE + 5 +1D20 + 8 +0 + 62 + 0 + 10 +17189.773981 + 20 +6923.314856 + 30 +0.0 + 11 +17208.523981 + 21 +6955.790808 + 31 +0.0 + 0 +LINE + 5 +1D21 + 8 +0 + 62 + 0 + 10 +17246.023981 + 20 +7020.742714 + 30 +0.0 + 11 +17264.773981 + 21 +7053.218666 + 31 +0.0 + 0 +LINE + 5 +1D22 + 8 +0 + 62 + 0 + 10 +17202.266137 + 20 +6880.0 + 30 +0.0 + 11 +17208.523981 + 21 +6890.838903 + 31 +0.0 + 0 +LINE + 5 +1D23 + 8 +0 + 62 + 0 + 10 +17246.023981 + 20 +6955.790808 + 30 +0.0 + 11 +17264.773981 + 21 +6988.266761 + 31 +0.0 + 0 +LINE + 5 +1D24 + 8 +0 + 62 + 0 + 10 +17246.023981 + 20 +6890.838903 + 30 +0.0 + 11 +17264.773981 + 21 +6923.314856 + 31 +0.0 + 0 +LINE + 5 +1D25 + 8 +0 + 62 + 0 + 10 +14829.178773 + 20 +7330.0 + 30 +0.0 + 11 +14954.178773 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D26 + 8 +0 + 62 + 0 + 10 +15253.442842 + 20 +7330.0 + 30 +0.0 + 11 +15378.442842 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D27 + 8 +0 + 62 + 0 + 10 +14899.889451 + 20 +7330.0 + 30 +0.0 + 11 +15024.889451 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D28 + 8 +0 + 62 + 0 + 10 +15324.15352 + 20 +7330.0 + 30 +0.0 + 11 +15449.15352 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D29 + 8 +0 + 62 + 0 + 10 +14970.60013 + 20 +7330.0 + 30 +0.0 + 11 +15095.60013 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D2A + 8 +0 + 62 + 0 + 10 +15394.864199 + 20 +7330.0 + 30 +0.0 + 11 +15519.864199 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D2B + 8 +0 + 62 + 0 + 10 +15041.310808 + 20 +7330.0 + 30 +0.0 + 11 +15166.310808 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D2C + 8 +0 + 62 + 0 + 10 +14679.649752 + 20 +7392.603013 + 30 +0.0 + 11 +14742.046739 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D2D + 8 +0 + 62 + 0 + 10 +15465.574877 + 20 +7330.0 + 30 +0.0 + 11 +15590.574877 + 21 +7455.0 + 31 +0.0 + 0 +LINE + 5 +1D2E + 8 +0 + 62 + 0 + 10 +14947.376825 + 20 +7130.0 + 30 +0.0 + 11 +14993.153328 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D2F + 8 +0 + 62 + 0 + 10 +15046.186337 + 20 +7228.809512 + 30 +0.0 + 11 +15099.219345 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D30 + 8 +0 + 62 + 0 + 10 +14841.310808 + 20 +7130.0 + 30 +0.0 + 11 +14887.087311 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D31 + 8 +0 + 62 + 0 + 10 +14940.120319 + 20 +7228.809512 + 30 +0.0 + 11 +14993.153328 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D32 + 8 +0 + 62 + 0 + 10 +14735.244791 + 20 +7130.0 + 30 +0.0 + 11 +14781.021294 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D33 + 8 +0 + 62 + 0 + 10 +14834.054302 + 20 +7228.809512 + 30 +0.0 + 11 +14887.087311 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D34 + 8 +0 + 62 + 0 + 10 +14727.988285 + 20 +7228.809512 + 30 +0.0 + 11 +14781.021294 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D35 + 8 +0 + 62 + 0 + 10 +15053.442842 + 20 +7130.0 + 30 +0.0 + 11 +15099.219345 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D36 + 8 +0 + 62 + 0 + 10 +15152.252354 + 20 +7228.809512 + 30 +0.0 + 11 +15205.285362 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D37 + 8 +0 + 62 + 0 + 10 +15159.508859 + 20 +7130.0 + 30 +0.0 + 11 +15205.285362 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D38 + 8 +0 + 62 + 0 + 10 +15258.318371 + 20 +7228.809512 + 30 +0.0 + 11 +15311.35138 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D39 + 8 +0 + 62 + 0 + 10 +15265.574877 + 20 +7130.0 + 30 +0.0 + 11 +15311.35138 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D3A + 8 +0 + 62 + 0 + 10 +15364.384388 + 20 +7228.809512 + 30 +0.0 + 11 +15417.417397 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D3B + 8 +0 + 62 + 0 + 10 +15371.640894 + 20 +7130.0 + 30 +0.0 + 11 +15417.417397 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D3C + 8 +0 + 62 + 0 + 10 +15470.450405 + 20 +7228.809512 + 30 +0.0 + 11 +15523.483414 + 21 +7281.84252 + 31 +0.0 + 0 +LINE + 5 +1D3D + 8 +0 + 62 + 0 + 10 +15477.706911 + 20 +7130.0 + 30 +0.0 + 11 +15523.483414 + 21 +7175.776503 + 31 +0.0 + 0 +LINE + 5 +1D3E + 8 +0 + 62 + 0 + 10 +15576.516423 + 20 +7228.809512 + 30 +0.0 + 11 +15627.274018 + 21 +7279.567107 + 31 +0.0 + 0 +LINE + 5 +1D3F + 8 +0 + 62 + 0 + 10 +15583.772928 + 20 +7130.0 + 30 +0.0 + 11 +15627.274018 + 21 +7173.50109 + 31 +0.0 + 0 +LINE + 5 +1D40 + 8 +0 + 62 + 0 + 10 +14733.524018 + 20 +6955.790748 + 30 +0.0 + 11 +14771.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D41 + 8 +0 + 62 + 0 + 10 +14846.024018 + 20 +6955.790748 + 30 +0.0 + 11 +14883.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D42 + 8 +0 + 62 + 0 + 10 +14958.524018 + 20 +6955.790748 + 30 +0.0 + 11 +14996.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D43 + 8 +0 + 62 + 0 + 10 +15071.024018 + 20 +6955.790748 + 30 +0.0 + 11 +15108.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D44 + 8 +0 + 62 + 0 + 10 +15183.524018 + 20 +6955.790748 + 30 +0.0 + 11 +15221.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D45 + 8 +0 + 62 + 0 + 10 +15296.024018 + 20 +6955.790748 + 30 +0.0 + 11 +15333.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D46 + 8 +0 + 62 + 0 + 10 +15408.524018 + 20 +6955.790748 + 30 +0.0 + 11 +15446.024018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D47 + 8 +0 + 62 + 0 + 10 +15521.024018 + 20 +6955.790748 + 30 +0.0 + 11 +15558.524018 + 21 +6955.790748 + 31 +0.0 + 0 +LINE + 5 +1D48 + 8 +0 + 62 + 0 + 10 +14677.274018 + 20 +6988.2667 + 30 +0.0 + 11 +14714.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D49 + 8 +0 + 62 + 0 + 10 +14789.774018 + 20 +6988.2667 + 30 +0.0 + 11 +14827.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D4A + 8 +0 + 62 + 0 + 10 +14902.274018 + 20 +6988.2667 + 30 +0.0 + 11 +14939.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D4B + 8 +0 + 62 + 0 + 10 +15014.774018 + 20 +6988.2667 + 30 +0.0 + 11 +15052.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D4C + 8 +0 + 62 + 0 + 10 +15127.274018 + 20 +6988.2667 + 30 +0.0 + 11 +15164.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D4D + 8 +0 + 62 + 0 + 10 +15239.774018 + 20 +6988.2667 + 30 +0.0 + 11 +15277.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D4E + 8 +0 + 62 + 0 + 10 +15352.274018 + 20 +6988.2667 + 30 +0.0 + 11 +15389.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D4F + 8 +0 + 62 + 0 + 10 +15464.774018 + 20 +6988.2667 + 30 +0.0 + 11 +15502.274018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D50 + 8 +0 + 62 + 0 + 10 +15577.274018 + 20 +6988.2667 + 30 +0.0 + 11 +15614.774018 + 21 +6988.2667 + 31 +0.0 + 0 +LINE + 5 +1D51 + 8 +0 + 62 + 0 + 10 +14733.524018 + 20 +7020.742653 + 30 +0.0 + 11 +14771.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D52 + 8 +0 + 62 + 0 + 10 +14846.024018 + 20 +7020.742653 + 30 +0.0 + 11 +14883.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D53 + 8 +0 + 62 + 0 + 10 +14958.524018 + 20 +7020.742653 + 30 +0.0 + 11 +14996.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D54 + 8 +0 + 62 + 0 + 10 +15071.024018 + 20 +7020.742653 + 30 +0.0 + 11 +15108.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D55 + 8 +0 + 62 + 0 + 10 +15183.524018 + 20 +7020.742653 + 30 +0.0 + 11 +15221.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D56 + 8 +0 + 62 + 0 + 10 +15296.024018 + 20 +7020.742653 + 30 +0.0 + 11 +15333.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D57 + 8 +0 + 62 + 0 + 10 +15408.524018 + 20 +7020.742653 + 30 +0.0 + 11 +15446.024018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D58 + 8 +0 + 62 + 0 + 10 +15521.024018 + 20 +7020.742653 + 30 +0.0 + 11 +15558.524018 + 21 +7020.742653 + 31 +0.0 + 0 +LINE + 5 +1D59 + 8 +0 + 62 + 0 + 10 +14677.274018 + 20 +7053.218605 + 30 +0.0 + 11 +14714.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D5A + 8 +0 + 62 + 0 + 10 +14789.774018 + 20 +7053.218605 + 30 +0.0 + 11 +14827.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D5B + 8 +0 + 62 + 0 + 10 +14902.274018 + 20 +7053.218605 + 30 +0.0 + 11 +14939.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D5C + 8 +0 + 62 + 0 + 10 +15014.774018 + 20 +7053.218605 + 30 +0.0 + 11 +15052.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D5D + 8 +0 + 62 + 0 + 10 +15127.274018 + 20 +7053.218605 + 30 +0.0 + 11 +15164.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D5E + 8 +0 + 62 + 0 + 10 +15239.774018 + 20 +7053.218605 + 30 +0.0 + 11 +15277.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D5F + 8 +0 + 62 + 0 + 10 +15352.274018 + 20 +7053.218605 + 30 +0.0 + 11 +15389.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D60 + 8 +0 + 62 + 0 + 10 +15464.774018 + 20 +7053.218605 + 30 +0.0 + 11 +15502.274018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D61 + 8 +0 + 62 + 0 + 10 +15577.274018 + 20 +7053.218605 + 30 +0.0 + 11 +15614.774018 + 21 +7053.218605 + 31 +0.0 + 0 +LINE + 5 +1D62 + 8 +0 + 62 + 0 + 10 +14677.274018 + 20 +6923.314795 + 30 +0.0 + 11 +14714.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D63 + 8 +0 + 62 + 0 + 10 +14789.774018 + 20 +6923.314795 + 30 +0.0 + 11 +14827.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D64 + 8 +0 + 62 + 0 + 10 +14902.274018 + 20 +6923.314795 + 30 +0.0 + 11 +14939.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D65 + 8 +0 + 62 + 0 + 10 +15014.774018 + 20 +6923.314795 + 30 +0.0 + 11 +15052.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D66 + 8 +0 + 62 + 0 + 10 +15127.274018 + 20 +6923.314795 + 30 +0.0 + 11 +15164.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D67 + 8 +0 + 62 + 0 + 10 +15239.774018 + 20 +6923.314795 + 30 +0.0 + 11 +15277.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D68 + 8 +0 + 62 + 0 + 10 +15352.274018 + 20 +6923.314795 + 30 +0.0 + 11 +15389.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D69 + 8 +0 + 62 + 0 + 10 +15464.774018 + 20 +6923.314795 + 30 +0.0 + 11 +15502.274018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D6A + 8 +0 + 62 + 0 + 10 +15577.274018 + 20 +6923.314795 + 30 +0.0 + 11 +15614.774018 + 21 +6923.314795 + 31 +0.0 + 0 +LINE + 5 +1D6B + 8 +0 + 62 + 0 + 10 +14733.524018 + 20 +6890.838843 + 30 +0.0 + 11 +14771.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D6C + 8 +0 + 62 + 0 + 10 +14846.024018 + 20 +6890.838843 + 30 +0.0 + 11 +14883.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D6D + 8 +0 + 62 + 0 + 10 +14958.524018 + 20 +6890.838843 + 30 +0.0 + 11 +14996.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D6E + 8 +0 + 62 + 0 + 10 +15071.024018 + 20 +6890.838843 + 30 +0.0 + 11 +15108.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D6F + 8 +0 + 62 + 0 + 10 +15183.524018 + 20 +6890.838843 + 30 +0.0 + 11 +15221.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D70 + 8 +0 + 62 + 0 + 10 +15296.024018 + 20 +6890.838843 + 30 +0.0 + 11 +15333.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D71 + 8 +0 + 62 + 0 + 10 +15408.524018 + 20 +6890.838843 + 30 +0.0 + 11 +15446.024018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D72 + 8 +0 + 62 + 0 + 10 +15521.024018 + 20 +6890.838843 + 30 +0.0 + 11 +15558.524018 + 21 +6890.838843 + 31 +0.0 + 0 +LINE + 5 +1D73 + 8 +0 + 62 + 0 + 10 +15127.273953 + 20 +6923.314797 + 30 +0.0 + 11 +15108.523953 + 21 +6955.79075 + 31 +0.0 + 0 +LINE + 5 +1D74 + 8 +0 + 62 + 0 + 10 +15071.023953 + 20 +7020.742655 + 30 +0.0 + 11 +15052.273953 + 21 +7053.218608 + 31 +0.0 + 0 +LINE + 5 +1D75 + 8 +0 + 62 + 0 + 10 +15114.781763 + 20 +6880.0 + 30 +0.0 + 11 +15108.523953 + 21 +6890.838845 + 31 +0.0 + 0 +LINE + 5 +1D76 + 8 +0 + 62 + 0 + 10 +15071.023953 + 20 +6955.79075 + 30 +0.0 + 11 +15052.273953 + 21 +6988.266703 + 31 +0.0 + 0 +LINE + 5 +1D77 + 8 +0 + 62 + 0 + 10 +15014.773953 + 20 +7053.218608 + 30 +0.0 + 11 +14999.31171 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D78 + 8 +0 + 62 + 0 + 10 +15071.023954 + 20 +6890.838845 + 30 +0.0 + 11 +15052.273954 + 21 +6923.314797 + 31 +0.0 + 0 +LINE + 5 +1D79 + 8 +0 + 62 + 0 + 10 +15014.773954 + 20 +6988.266703 + 30 +0.0 + 11 +14996.023954 + 21 +7020.742655 + 31 +0.0 + 0 +LINE + 5 +1D7A + 8 +0 + 62 + 0 + 10 +15014.773954 + 20 +6923.314798 + 30 +0.0 + 11 +14996.023954 + 21 +6955.79075 + 31 +0.0 + 0 +LINE + 5 +1D7B + 8 +0 + 62 + 0 + 10 +14958.523954 + 20 +7020.742655 + 30 +0.0 + 11 +14939.773954 + 21 +7053.218608 + 31 +0.0 + 0 +LINE + 5 +1D7C + 8 +0 + 62 + 0 + 10 +15002.281764 + 20 +6880.0 + 30 +0.0 + 11 +14996.023954 + 21 +6890.838845 + 31 +0.0 + 0 +LINE + 5 +1D7D + 8 +0 + 62 + 0 + 10 +14958.523954 + 20 +6955.79075 + 30 +0.0 + 11 +14939.773954 + 21 +6988.266703 + 31 +0.0 + 0 +LINE + 5 +1D7E + 8 +0 + 62 + 0 + 10 +14902.273954 + 20 +7053.218608 + 30 +0.0 + 11 +14886.81171 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D7F + 8 +0 + 62 + 0 + 10 +14958.523954 + 20 +6890.838845 + 30 +0.0 + 11 +14939.773954 + 21 +6923.314798 + 31 +0.0 + 0 +LINE + 5 +1D80 + 8 +0 + 62 + 0 + 10 +14902.273954 + 20 +6988.266703 + 30 +0.0 + 11 +14883.523954 + 21 +7020.742656 + 31 +0.0 + 0 +LINE + 5 +1D81 + 8 +0 + 62 + 0 + 10 +14902.273954 + 20 +6923.314798 + 30 +0.0 + 11 +14883.523954 + 21 +6955.79075 + 31 +0.0 + 0 +LINE + 5 +1D82 + 8 +0 + 62 + 0 + 10 +14846.023954 + 20 +7020.742656 + 30 +0.0 + 11 +14827.273954 + 21 +7053.218608 + 31 +0.0 + 0 +LINE + 5 +1D83 + 8 +0 + 62 + 0 + 10 +14889.781764 + 20 +6880.0 + 30 +0.0 + 11 +14883.523954 + 21 +6890.838845 + 31 +0.0 + 0 +LINE + 5 +1D84 + 8 +0 + 62 + 0 + 10 +14846.023954 + 20 +6955.79075 + 30 +0.0 + 11 +14827.273954 + 21 +6988.266703 + 31 +0.0 + 0 +LINE + 5 +1D85 + 8 +0 + 62 + 0 + 10 +14789.773954 + 20 +7053.218608 + 30 +0.0 + 11 +14774.311711 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D86 + 8 +0 + 62 + 0 + 10 +14846.023954 + 20 +6890.838845 + 30 +0.0 + 11 +14827.273954 + 21 +6923.314798 + 31 +0.0 + 0 +LINE + 5 +1D87 + 8 +0 + 62 + 0 + 10 +14789.773954 + 20 +6988.266703 + 30 +0.0 + 11 +14771.023954 + 21 +7020.742656 + 31 +0.0 + 0 +LINE + 5 +1D88 + 8 +0 + 62 + 0 + 10 +14789.773954 + 20 +6923.314798 + 30 +0.0 + 11 +14771.023954 + 21 +6955.790751 + 31 +0.0 + 0 +LINE + 5 +1D89 + 8 +0 + 62 + 0 + 10 +14733.523954 + 20 +7020.742656 + 30 +0.0 + 11 +14714.773954 + 21 +7053.218609 + 31 +0.0 + 0 +LINE + 5 +1D8A + 8 +0 + 62 + 0 + 10 +14777.281765 + 20 +6880.0 + 30 +0.0 + 11 +14771.023955 + 21 +6890.838845 + 31 +0.0 + 0 +LINE + 5 +1D8B + 8 +0 + 62 + 0 + 10 +14733.523955 + 20 +6955.790751 + 30 +0.0 + 11 +14714.773955 + 21 +6988.266703 + 31 +0.0 + 0 +LINE + 5 +1D8C + 8 +0 + 62 + 0 + 10 +14733.523955 + 20 +6890.838845 + 30 +0.0 + 11 +14714.773955 + 21 +6923.314798 + 31 +0.0 + 0 +LINE + 5 +1D8D + 8 +0 + 62 + 0 + 10 +15183.523953 + 20 +6890.838845 + 30 +0.0 + 11 +15164.773953 + 21 +6923.314797 + 31 +0.0 + 0 +LINE + 5 +1D8E + 8 +0 + 62 + 0 + 10 +15127.273953 + 20 +6988.266703 + 30 +0.0 + 11 +15108.523953 + 21 +7020.742655 + 31 +0.0 + 0 +LINE + 5 +1D8F + 8 +0 + 62 + 0 + 10 +15227.281763 + 20 +6880.0 + 30 +0.0 + 11 +15221.023953 + 21 +6890.838845 + 31 +0.0 + 0 +LINE + 5 +1D90 + 8 +0 + 62 + 0 + 10 +15183.523953 + 20 +6955.79075 + 30 +0.0 + 11 +15164.773953 + 21 +6988.266702 + 31 +0.0 + 0 +LINE + 5 +1D91 + 8 +0 + 62 + 0 + 10 +15127.273953 + 20 +7053.218608 + 30 +0.0 + 11 +15111.811709 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D92 + 8 +0 + 62 + 0 + 10 +15239.773953 + 20 +6923.314797 + 30 +0.0 + 11 +15221.023953 + 21 +6955.79075 + 31 +0.0 + 0 +LINE + 5 +1D93 + 8 +0 + 62 + 0 + 10 +15183.523953 + 20 +7020.742655 + 30 +0.0 + 11 +15164.773953 + 21 +7053.218608 + 31 +0.0 + 0 +LINE + 5 +1D94 + 8 +0 + 62 + 0 + 10 +15296.023953 + 20 +6890.838844 + 30 +0.0 + 11 +15277.273953 + 21 +6923.314797 + 31 +0.0 + 0 +LINE + 5 +1D95 + 8 +0 + 62 + 0 + 10 +15239.773953 + 20 +6988.266702 + 30 +0.0 + 11 +15221.023953 + 21 +7020.742655 + 31 +0.0 + 0 +LINE + 5 +1D96 + 8 +0 + 62 + 0 + 10 +15339.781762 + 20 +6880.0 + 30 +0.0 + 11 +15333.523953 + 21 +6890.838844 + 31 +0.0 + 0 +LINE + 5 +1D97 + 8 +0 + 62 + 0 + 10 +15296.023953 + 20 +6955.79075 + 30 +0.0 + 11 +15277.273953 + 21 +6988.266702 + 31 +0.0 + 0 +LINE + 5 +1D98 + 8 +0 + 62 + 0 + 10 +15239.773953 + 20 +7053.218608 + 30 +0.0 + 11 +15224.311709 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1D99 + 8 +0 + 62 + 0 + 10 +15352.273953 + 20 +6923.314797 + 30 +0.0 + 11 +15333.523953 + 21 +6955.79075 + 31 +0.0 + 0 +LINE + 5 +1D9A + 8 +0 + 62 + 0 + 10 +15296.023953 + 20 +7020.742655 + 30 +0.0 + 11 +15277.273953 + 21 +7053.218607 + 31 +0.0 + 0 +LINE + 5 +1D9B + 8 +0 + 62 + 0 + 10 +15408.523952 + 20 +6890.838844 + 30 +0.0 + 11 +15389.773952 + 21 +6923.314797 + 31 +0.0 + 0 +LINE + 5 +1D9C + 8 +0 + 62 + 0 + 10 +15352.273952 + 20 +6988.266702 + 30 +0.0 + 11 +15333.523952 + 21 +7020.742655 + 31 +0.0 + 0 +LINE + 5 +1D9D + 8 +0 + 62 + 0 + 10 +15452.281762 + 20 +6880.0 + 30 +0.0 + 11 +15446.023952 + 21 +6890.838844 + 31 +0.0 + 0 +LINE + 5 +1D9E + 8 +0 + 62 + 0 + 10 +15408.523952 + 20 +6955.790749 + 30 +0.0 + 11 +15389.773952 + 21 +6988.266702 + 31 +0.0 + 0 +LINE + 5 +1D9F + 8 +0 + 62 + 0 + 10 +15352.273952 + 20 +7053.218607 + 30 +0.0 + 11 +15336.811708 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DA0 + 8 +0 + 62 + 0 + 10 +15464.773952 + 20 +6923.314797 + 30 +0.0 + 11 +15446.023952 + 21 +6955.790749 + 31 +0.0 + 0 +LINE + 5 +1DA1 + 8 +0 + 62 + 0 + 10 +15408.523952 + 20 +7020.742655 + 30 +0.0 + 11 +15389.773952 + 21 +7053.218607 + 31 +0.0 + 0 +LINE + 5 +1DA2 + 8 +0 + 62 + 0 + 10 +15521.023952 + 20 +6890.838844 + 30 +0.0 + 11 +15502.273952 + 21 +6923.314797 + 31 +0.0 + 0 +LINE + 5 +1DA3 + 8 +0 + 62 + 0 + 10 +15464.773952 + 20 +6988.266702 + 30 +0.0 + 11 +15446.023952 + 21 +7020.742655 + 31 +0.0 + 0 +LINE + 5 +1DA4 + 8 +0 + 62 + 0 + 10 +15564.781761 + 20 +6880.0 + 30 +0.0 + 11 +15558.523952 + 21 +6890.838844 + 31 +0.0 + 0 +LINE + 5 +1DA5 + 8 +0 + 62 + 0 + 10 +15521.023952 + 20 +6955.790749 + 30 +0.0 + 11 +15502.273952 + 21 +6988.266702 + 31 +0.0 + 0 +LINE + 5 +1DA6 + 8 +0 + 62 + 0 + 10 +15464.773952 + 20 +7053.218607 + 30 +0.0 + 11 +15449.311708 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DA7 + 8 +0 + 62 + 0 + 10 +15577.273952 + 20 +6923.314796 + 30 +0.0 + 11 +15558.523952 + 21 +6955.790749 + 31 +0.0 + 0 +LINE + 5 +1DA8 + 8 +0 + 62 + 0 + 10 +15521.023952 + 20 +7020.742654 + 30 +0.0 + 11 +15502.273952 + 21 +7053.218607 + 31 +0.0 + 0 +LINE + 5 +1DA9 + 8 +0 + 62 + 0 + 10 +15627.274018 + 20 +6901.664047 + 30 +0.0 + 11 +15614.773952 + 21 +6923.314796 + 31 +0.0 + 0 +LINE + 5 +1DAA + 8 +0 + 62 + 0 + 10 +15577.273952 + 20 +6988.266702 + 30 +0.0 + 11 +15558.523952 + 21 +7020.742654 + 31 +0.0 + 0 +LINE + 5 +1DAB + 8 +0 + 62 + 0 + 10 +15627.274018 + 20 +6966.615952 + 30 +0.0 + 11 +15614.773952 + 21 +6988.266702 + 31 +0.0 + 0 +LINE + 5 +1DAC + 8 +0 + 62 + 0 + 10 +15577.273952 + 20 +7053.218607 + 30 +0.0 + 11 +15561.811707 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DAD + 8 +0 + 62 + 0 + 10 +15627.274018 + 20 +7031.567857 + 30 +0.0 + 11 +15614.773952 + 21 +7053.218607 + 31 +0.0 + 0 +LINE + 5 +1DAE + 8 +0 + 62 + 0 + 10 +15064.766146 + 20 +6880.0 + 30 +0.0 + 11 +15071.023988 + 21 +6890.838899 + 31 +0.0 + 0 +LINE + 5 +1DAF + 8 +0 + 62 + 0 + 10 +15108.523988 + 20 +6955.790804 + 30 +0.0 + 11 +15127.273988 + 21 +6988.266757 + 31 +0.0 + 0 +LINE + 5 +1DB0 + 8 +0 + 62 + 0 + 10 +15164.773988 + 20 +7053.218662 + 30 +0.0 + 11 +15180.2362 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DB1 + 8 +0 + 62 + 0 + 10 +15052.273988 + 20 +6923.314852 + 30 +0.0 + 11 +15071.023988 + 21 +6955.790804 + 31 +0.0 + 0 +LINE + 5 +1DB2 + 8 +0 + 62 + 0 + 10 +15108.523988 + 20 +7020.74271 + 30 +0.0 + 11 +15127.273988 + 21 +7053.218662 + 31 +0.0 + 0 +LINE + 5 +1DB3 + 8 +0 + 62 + 0 + 10 +14996.023988 + 20 +6890.838899 + 30 +0.0 + 11 +15014.773988 + 21 +6923.314852 + 31 +0.0 + 0 +LINE + 5 +1DB4 + 8 +0 + 62 + 0 + 10 +15052.273988 + 20 +6988.266757 + 30 +0.0 + 11 +15071.023988 + 21 +7020.74271 + 31 +0.0 + 0 +LINE + 5 +1DB5 + 8 +0 + 62 + 0 + 10 +14952.266147 + 20 +6880.0 + 30 +0.0 + 11 +14958.523988 + 21 +6890.838899 + 31 +0.0 + 0 +LINE + 5 +1DB6 + 8 +0 + 62 + 0 + 10 +14996.023988 + 20 +6955.790804 + 30 +0.0 + 11 +15014.773988 + 21 +6988.266757 + 31 +0.0 + 0 +LINE + 5 +1DB7 + 8 +0 + 62 + 0 + 10 +15052.273988 + 20 +7053.218662 + 30 +0.0 + 11 +15067.736201 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DB8 + 8 +0 + 62 + 0 + 10 +14939.773988 + 20 +6923.314851 + 30 +0.0 + 11 +14958.523988 + 21 +6955.790804 + 31 +0.0 + 0 +LINE + 5 +1DB9 + 8 +0 + 62 + 0 + 10 +14996.023988 + 20 +7020.742709 + 30 +0.0 + 11 +15014.773988 + 21 +7053.218662 + 31 +0.0 + 0 +LINE + 5 +1DBA + 8 +0 + 62 + 0 + 10 +14883.523988 + 20 +6890.838899 + 30 +0.0 + 11 +14902.273988 + 21 +6923.314851 + 31 +0.0 + 0 +LINE + 5 +1DBB + 8 +0 + 62 + 0 + 10 +14939.773988 + 20 +6988.266757 + 30 +0.0 + 11 +14958.523988 + 21 +7020.742709 + 31 +0.0 + 0 +LINE + 5 +1DBC + 8 +0 + 62 + 0 + 10 +14839.766147 + 20 +6880.0 + 30 +0.0 + 11 +14846.023988 + 21 +6890.838899 + 31 +0.0 + 0 +LINE + 5 +1DBD + 8 +0 + 62 + 0 + 10 +14883.523988 + 20 +6955.790804 + 30 +0.0 + 11 +14902.273988 + 21 +6988.266757 + 31 +0.0 + 0 +LINE + 5 +1DBE + 8 +0 + 62 + 0 + 10 +14939.773988 + 20 +7053.218662 + 30 +0.0 + 11 +14955.236201 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DBF + 8 +0 + 62 + 0 + 10 +14827.273988 + 20 +6923.314851 + 30 +0.0 + 11 +14846.023988 + 21 +6955.790804 + 31 +0.0 + 0 +LINE + 5 +1DC0 + 8 +0 + 62 + 0 + 10 +14883.523988 + 20 +7020.742709 + 30 +0.0 + 11 +14902.273988 + 21 +7053.218662 + 31 +0.0 + 0 +LINE + 5 +1DC1 + 8 +0 + 62 + 0 + 10 +14771.023989 + 20 +6890.838899 + 30 +0.0 + 11 +14789.773989 + 21 +6923.314851 + 31 +0.0 + 0 +LINE + 5 +1DC2 + 8 +0 + 62 + 0 + 10 +14827.273989 + 20 +6988.266756 + 30 +0.0 + 11 +14846.023989 + 21 +7020.742709 + 31 +0.0 + 0 +LINE + 5 +1DC3 + 8 +0 + 62 + 0 + 10 +14727.266148 + 20 +6880.0 + 30 +0.0 + 11 +14733.523989 + 21 +6890.838898 + 31 +0.0 + 0 +LINE + 5 +1DC4 + 8 +0 + 62 + 0 + 10 +14771.023989 + 20 +6955.790804 + 30 +0.0 + 11 +14789.773989 + 21 +6988.266756 + 31 +0.0 + 0 +LINE + 5 +1DC5 + 8 +0 + 62 + 0 + 10 +14827.273989 + 20 +7053.218662 + 30 +0.0 + 11 +14842.736202 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DC6 + 8 +0 + 62 + 0 + 10 +14714.773989 + 20 +6923.314851 + 30 +0.0 + 11 +14733.523989 + 21 +6955.790804 + 31 +0.0 + 0 +LINE + 5 +1DC7 + 8 +0 + 62 + 0 + 10 +14771.023989 + 20 +7020.742709 + 30 +0.0 + 11 +14789.773989 + 21 +7053.218662 + 31 +0.0 + 0 +LINE + 5 +1DC8 + 8 +0 + 62 + 0 + 10 +14714.773989 + 20 +6988.266756 + 30 +0.0 + 11 +14733.523989 + 21 +7020.742709 + 31 +0.0 + 0 +LINE + 5 +1DC9 + 8 +0 + 62 + 0 + 10 +14714.773989 + 20 +7053.218661 + 30 +0.0 + 11 +14730.236202 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DCA + 8 +0 + 62 + 0 + 10 +15108.523988 + 20 +6890.838899 + 30 +0.0 + 11 +15127.273988 + 21 +6923.314852 + 31 +0.0 + 0 +LINE + 5 +1DCB + 8 +0 + 62 + 0 + 10 +15164.773988 + 20 +6988.266757 + 30 +0.0 + 11 +15183.523988 + 21 +7020.74271 + 31 +0.0 + 0 +LINE + 5 +1DCC + 8 +0 + 62 + 0 + 10 +15164.773987 + 20 +6923.314852 + 30 +0.0 + 11 +15183.523987 + 21 +6955.790805 + 31 +0.0 + 0 +LINE + 5 +1DCD + 8 +0 + 62 + 0 + 10 +15221.023987 + 20 +7020.74271 + 30 +0.0 + 11 +15239.773987 + 21 +7053.218662 + 31 +0.0 + 0 +LINE + 5 +1DCE + 8 +0 + 62 + 0 + 10 +15177.266146 + 20 +6880.0 + 30 +0.0 + 11 +15183.523987 + 21 +6890.838899 + 31 +0.0 + 0 +LINE + 5 +1DCF + 8 +0 + 62 + 0 + 10 +15221.023987 + 20 +6955.790805 + 30 +0.0 + 11 +15239.773987 + 21 +6988.266757 + 31 +0.0 + 0 +LINE + 5 +1DD0 + 8 +0 + 62 + 0 + 10 +15277.273987 + 20 +7053.218663 + 30 +0.0 + 11 +15292.7362 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DD1 + 8 +0 + 62 + 0 + 10 +15221.023987 + 20 +6890.838899 + 30 +0.0 + 11 +15239.773987 + 21 +6923.314852 + 31 +0.0 + 0 +LINE + 5 +1DD2 + 8 +0 + 62 + 0 + 10 +15277.273987 + 20 +6988.266757 + 30 +0.0 + 11 +15296.023987 + 21 +7020.74271 + 31 +0.0 + 0 +LINE + 5 +1DD3 + 8 +0 + 62 + 0 + 10 +15277.273987 + 20 +6923.314852 + 30 +0.0 + 11 +15296.023987 + 21 +6955.790805 + 31 +0.0 + 0 +LINE + 5 +1DD4 + 8 +0 + 62 + 0 + 10 +15333.523987 + 20 +7020.74271 + 30 +0.0 + 11 +15352.273987 + 21 +7053.218663 + 31 +0.0 + 0 +LINE + 5 +1DD5 + 8 +0 + 62 + 0 + 10 +15289.766145 + 20 +6880.0 + 30 +0.0 + 11 +15296.023987 + 21 +6890.8389 + 31 +0.0 + 0 +LINE + 5 +1DD6 + 8 +0 + 62 + 0 + 10 +15333.523987 + 20 +6955.790805 + 30 +0.0 + 11 +15352.273987 + 21 +6988.266757 + 31 +0.0 + 0 +LINE + 5 +1DD7 + 8 +0 + 62 + 0 + 10 +15389.773987 + 20 +7053.218663 + 30 +0.0 + 11 +15405.236199 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DD8 + 8 +0 + 62 + 0 + 10 +15333.523987 + 20 +6890.8389 + 30 +0.0 + 11 +15352.273987 + 21 +6923.314852 + 31 +0.0 + 0 +LINE + 5 +1DD9 + 8 +0 + 62 + 0 + 10 +15389.773987 + 20 +6988.266758 + 30 +0.0 + 11 +15408.523987 + 21 +7020.74271 + 31 +0.0 + 0 +LINE + 5 +1DDA + 8 +0 + 62 + 0 + 10 +15389.773987 + 20 +6923.314852 + 30 +0.0 + 11 +15408.523987 + 21 +6955.790805 + 31 +0.0 + 0 +LINE + 5 +1DDB + 8 +0 + 62 + 0 + 10 +15446.023987 + 20 +7020.74271 + 30 +0.0 + 11 +15464.773987 + 21 +7053.218663 + 31 +0.0 + 0 +LINE + 5 +1DDC + 8 +0 + 62 + 0 + 10 +15402.266145 + 20 +6880.0 + 30 +0.0 + 11 +15408.523987 + 21 +6890.8389 + 31 +0.0 + 0 +LINE + 5 +1DDD + 8 +0 + 62 + 0 + 10 +15446.023987 + 20 +6955.790805 + 30 +0.0 + 11 +15464.773987 + 21 +6988.266758 + 31 +0.0 + 0 +LINE + 5 +1DDE + 8 +0 + 62 + 0 + 10 +15502.273987 + 20 +7053.218663 + 30 +0.0 + 11 +15517.736199 + 21 +7080.0 + 31 +0.0 + 0 +LINE + 5 +1DDF + 8 +0 + 62 + 0 + 10 +15446.023986 + 20 +6890.8389 + 30 +0.0 + 11 +15464.773986 + 21 +6923.314852 + 31 +0.0 + 0 +LINE + 5 +1DE0 + 8 +0 + 62 + 0 + 10 +15502.273986 + 20 +6988.266758 + 30 +0.0 + 11 +15521.023986 + 21 +7020.74271 + 31 +0.0 + 0 +LINE + 5 +1DE1 + 8 +0 + 62 + 0 + 10 +15502.273986 + 20 +6923.314853 + 30 +0.0 + 11 +15521.023986 + 21 +6955.790805 + 31 +0.0 + 0 +LINE + 5 +1DE2 + 8 +0 + 62 + 0 + 10 +15558.523986 + 20 +7020.74271 + 30 +0.0 + 11 +15577.273986 + 21 +7053.218663 + 31 +0.0 + 0 +LINE + 5 +1DE3 + 8 +0 + 62 + 0 + 10 +15514.766144 + 20 +6880.0 + 30 +0.0 + 11 +15521.023986 + 21 +6890.8389 + 31 +0.0 + 0 +LINE + 5 +1DE4 + 8 +0 + 62 + 0 + 10 +15558.523986 + 20 +6955.790805 + 30 +0.0 + 11 +15577.273986 + 21 +6988.266758 + 31 +0.0 + 0 +LINE + 5 +1DE5 + 8 +0 + 62 + 0 + 10 +15614.773986 + 20 +7053.218663 + 30 +0.0 + 11 +15627.274018 + 21 +7074.869353 + 31 +0.0 + 0 +LINE + 5 +1DE6 + 8 +0 + 62 + 0 + 10 +15558.523986 + 20 +6890.8389 + 30 +0.0 + 11 +15577.273986 + 21 +6923.314853 + 31 +0.0 + 0 +LINE + 5 +1DE7 + 8 +0 + 62 + 0 + 10 +15614.773986 + 20 +6988.266758 + 30 +0.0 + 11 +15627.274018 + 21 +7009.917448 + 31 +0.0 + 0 +LINE + 5 +1DE8 + 8 +0 + 62 + 0 + 10 +15614.773986 + 20 +6923.314853 + 30 +0.0 + 11 +15627.274018 + 21 +6944.965543 + 31 +0.0 + 0 +LINE + 5 +1DE9 + 8 +0 + 62 + 0 + 10 +15627.266144 + 20 +6880.0 + 30 +0.0 + 11 +15627.274018 + 21 +6880.013638 + 31 +0.0 + 0 +POLYLINE + 5 +1DEA + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2209 + 8 +ESTRICH + 10 +14679.649752 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +220A + 8 +ESTRICH + 10 +15627.274018 + 20 +7455.0 + 30 +0.0 + 0 +VERTEX + 5 +220B + 8 +ESTRICH + 10 +15627.274018 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +220C + 8 +ESTRICH + 10 +14679.649752 + 20 +7330.0 + 30 +0.0 + 0 +SEQEND + 5 +220D + 8 +ESTRICH + 0 +POLYLINE + 5 +1DF0 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +220E + 8 +ESTRICH + 10 +14679.649752 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +220F + 8 +ESTRICH + 10 +15627.274018 + 20 +7330.0 + 30 +0.0 + 0 +VERTEX + 5 +2210 + 8 +ESTRICH + 10 +15627.274018 + 20 +7130.0 + 30 +0.0 + 0 +VERTEX + 5 +2211 + 8 +ESTRICH + 10 +14679.649752 + 20 +7130.0 + 30 +0.0 + 0 +SEQEND + 5 +2212 + 8 +ESTRICH + 0 +POLYLINE + 5 +1DF6 + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2213 + 8 +ESTRICH + 10 +14679.649752 + 20 +7130.0 + 30 +0.0 + 0 +VERTEX + 5 +2214 + 8 +ESTRICH + 10 +15627.274018 + 20 +7130.0 + 30 +0.0 + 0 +VERTEX + 5 +2215 + 8 +ESTRICH + 10 +15627.274018 + 20 +7080.0 + 30 +0.0 + 0 +VERTEX + 5 +2216 + 8 +ESTRICH + 10 +14679.649752 + 20 +7080.0 + 30 +0.0 + 0 +SEQEND + 5 +2217 + 8 +ESTRICH + 0 +POLYLINE + 5 +1DFC + 8 +ESTRICH + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +2218 + 8 +ESTRICH + 10 +14679.649752 + 20 +7080.0 + 30 +0.0 + 0 +VERTEX + 5 +2219 + 8 +ESTRICH + 10 +15627.274018 + 20 +7080.0 + 30 +0.0 + 0 +VERTEX + 5 +221A + 8 +ESTRICH + 10 +15627.274018 + 20 +6880.0 + 30 +0.0 + 0 +VERTEX + 5 +221B + 8 +ESTRICH + 10 +14679.649752 + 20 +6880.0 + 30 +0.0 + 0 +SEQEND + 5 +221C + 8 +ESTRICH + 0 +POLYLINE + 5 +1E02 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +221D + 8 +PE-FOLIE + 10 +15447.274018 + 20 +7115.0 + 30 +0.0 + 0 +VERTEX + 5 +221E + 8 +PE-FOLIE + 10 +14679.649752 + 20 +7115.0 + 30 +0.0 + 0 +SEQEND + 5 +221F + 8 +PE-FOLIE + 0 +POLYLINE + 5 +1E06 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +2220 + 8 +PE-FOLIE + 10 +15622.274018 + 20 +7095.0 + 30 +0.0 + 0 +VERTEX + 5 +2221 + 8 +PE-FOLIE + 10 +14679.649752 + 20 +7095.0 + 30 +0.0 + 0 +SEQEND + 5 +2222 + 8 +PE-FOLIE + 0 +DIMENSION + 5 +1E0A + 8 +BEMASSUNG + 2 +*D79 + 10 +15725.0 + 20 +5180.0 + 30 +0.0 + 11 +15675.0 + 21 +5267.5 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +2 + 13 +15625.0 + 23 +6885.0 + 33 +0.0 + 14 +15725.0 + 24 +6885.0 + 34 +0.0 + 0 +DIMENSION + 5 +1E0B + 8 +BEMASSUNG + 2 +*D93 + 10 +15785.0 + 20 +5180.0 + 30 +0.0 + 11 +15815.0 + 21 +5420.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 70 + 128 + 1 +1.25 + 13 +15725.0 + 23 +6885.0 + 33 +0.0 + 14 +15785.0 + 24 +6945.0 + 34 +0.0 + 0 +DIMENSION + 5 +1E0C + 8 +BEMASSUNG + 2 +*D81 + 10 +16290.0 + 20 +5180.0 + 30 +0.0 + 11 +16037.5 + 21 +5267.5 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +8 + 13 +15785.0 + 23 +6945.0 + 33 +0.0 + 14 +16290.0 + 24 +6960.0 + 34 +0.0 + 0 +DIMENSION + 5 +1E0D + 8 +BEMASSUNG + 2 +*D95 + 10 +16355.0 + 20 +5180.0 + 30 +0.0 + 11 +16405.0 + 21 +5435.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 70 + 128 + 1 +1.25 + 13 +16290.0 + 23 +6960.0 + 33 +0.0 + 14 +16355.0 + 24 +7355.0 + 34 +0.0 + 0 +DIMENSION + 5 +1E0E + 8 +BEMASSUNG + 2 +*D83 + 10 +16455.0 + 20 +5180.0 + 30 +0.0 + 11 +16405.0 + 21 +5267.5 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +2 + 13 +16355.0 + 23 +7355.0 + 33 +0.0 + 14 +16455.0 + 24 +6895.0 + 34 +0.0 + 0 +DIMENSION + 5 +1E0F + 8 +BEMASSUNG + 2 +*D84 + 10 +18335.0 + 20 +6880.0 + 30 +0.0 + 11 +18247.5 + 21 +6480.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +16 + 13 +17275.0 + 23 +6080.0 + 33 +0.0 + 14 +17275.0 + 24 +6880.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1E10 + 8 +BEMASSUNG + 2 +*D85 + 10 +18335.0 + 20 +7075.0 + 30 +0.0 + 11 +18247.5 + 21 +6977.5 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +4 + 13 +17275.0 + 23 +6880.0 + 33 +0.0 + 14 +17285.0 + 24 +7075.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1E11 + 8 +BEMASSUNG + 2 +*D86 + 10 +18335.0 + 20 +7135.0 + 30 +0.0 + 11 +18247.5 + 21 +7105.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +1 + 13 +17285.0 + 23 +7075.0 + 33 +0.0 + 14 +17280.0 + 24 +7135.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1E12 + 8 +BEMASSUNG + 2 +*D87 + 10 +18335.0 + 20 +7330.0 + 30 +0.0 + 11 +18247.5 + 21 +7232.5 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +4 + 13 +17280.0 + 23 +7135.0 + 33 +0.0 + 14 +17290.0 + 24 +7330.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1E13 + 8 +BEMASSUNG + 2 +*D96 + 10 +18335.0 + 20 +7455.0 + 30 +0.0 + 11 +18247.5 + 21 +7515.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 70 + 128 + 1 +2 + 13 +17290.0 + 23 +7330.0 + 33 +0.0 + 14 +17290.0 + 24 +7455.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1E14 + 8 +BEMASSUNG + 10 +18235.0 + 20 +7550.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +DIMENSION + 5 +1E15 + 8 +BEMASSUNG + 2 +*D97 + 10 +15325.0 + 20 +7755.0 + 30 +0.0 + 11 +15237.5 + 21 +7605.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +6 + 13 +15575.0 + 23 +7455.0 + 33 +0.0 + 14 +15575.0 + 24 +7755.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1E16 + 8 +BEMASSUNG + 2 +*D98 + 10 +15576.582352 + 20 +8016.000702 + 30 +0.0 + 11 +15652.185913 + 21 +8103.500702 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +3 + 13 +15727.789473 + 23 +7855.24584 + 33 +0.0 + 14 +15576.582352 + 24 +7855.24584 + 34 +0.0 + 0 +DIMENSION + 5 +1E17 + 8 +BEMASSUNG + 2 +*D99 + 10 +16355.0 + 20 +11445.0 + 30 +0.0 + 11 +16040.0 + 21 +11532.5 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +12 + 13 +15725.0 + 23 +10215.0 + 33 +0.0 + 14 +16355.0 + 24 +10215.0 + 34 +0.0 + 0 +TEXT + 5 +1E18 + 8 +BEMASSUNG + 10 +16100.0 + 20 +11560.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +DIMENSION + 5 +1E19 + 8 +BEMASSUNG + 2 +*D103 + 10 +15651.609987 + 20 +9915.090071 + 30 +0.0 + 11 +15556.327063 + 21 +10002.590071 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 70 + 128 + 1 +1 + 13 +15726.357827 + 23 +10104.009781 + 33 +0.0 + 14 +15651.609987 + 24 +10104.009781 + 34 +0.0 + 0 +TEXT + 5 +1E1A + 8 +BEMASSUNG + 10 +15578.007216 + 20 +10019.89264 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +DIMENSION + 5 +1E1B + 8 +BEMASSUNG + 2 +*D106 + 10 +18329.167458 + 20 +10310.10418 + 30 +0.0 + 11 +18241.667458 + 21 +10110.0 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 70 + 128 + 1 +1 + 13 +17283.177313 + 23 +10235.808311 + 33 +0.0 + 14 +17283.177313 + 24 +10310.10418 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +1E1C + 8 +BEMASSUNG + 2 +*D105 + 10 +18329.167458 + 20 +11110.0 + 30 +0.0 + 11 +18241.667458 + 21 +10710.05209 + 31 +0.0 + 12 +-295.0 + 22 +-2105.0 + 32 +0.0 + 1 +16 + 13 +17283.177313 + 23 +10310.10418 + 33 +0.0 + 14 +17275.0 + 24 +11110.0 + 34 +0.0 + 50 +90.0 + 0 +TEXT + 5 +1E1D + 8 +BEMASSUNG + 10 +18230.0 + 20 +10126.343497 + 30 +0.0 + 40 +62.5 + 1 +5 + 50 +90.0 + 41 +0.75 + 0 +TEXT + 5 +1E1E + 8 +LEGENDE-35 + 10 +17615.0 + 20 +9680.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 41 +0.75 + 0 +TEXT + 5 +1E1F + 8 +LEGENDE-35 + 10 +17615.0 + 20 +9430.0 + 30 +0.0 + 40 +87.5 + 1 +PVC-LEISTE + 41 +0.75 + 0 +TEXT + 5 +1E20 + 8 +LEGENDE-35 + 10 +17615.0 + 20 +9180.0 + 30 +0.0 + 40 +87.5 + 1 +U-PROFIL + 41 +0.75 + 0 +TEXT + 5 +1E21 + 8 +LEGENDE-35 + 10 +17615.0 + 20 +8930.0 + 30 +0.0 + 40 +87.5 + 1 +C-PROFIL + 41 +0.75 + 0 +TEXT + 5 +1E22 + 8 +LEGENDE-35 + 10 +17615.0 + 20 +8680.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSKARTON + 41 +0.75 + 0 +TEXT + 5 +1E23 + 8 +LEGENDE-35 + 10 +17615.0 + 20 +8430.0 + 30 +0.0 + 40 +87.5 + 1 +MINERALFASER-WD + 41 +0.75 + 0 +TEXT + 5 +1E24 + 8 +LEGENDE-35 + 10 +17615.0 + 20 +8180.0 + 30 +0.0 + 40 +87.5 + 1 +ABSCHLUSSLEISTE + 41 +0.75 + 0 +TEXT + 5 +1E25 + 8 +LEGENDE-35 + 10 +17615.0 + 20 +7930.0 + 30 +0.0 + 40 +87.5 + 1 +NATURSTEIN + 41 +0.75 + 0 +POLYLINE + 5 +1E26 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2223 + 8 +LEGENDE-35 + 10 +17480.0 + 20 +9725.0 + 30 +0.0 + 0 +VERTEX + 5 +2224 + 8 +LEGENDE-35 + 10 +17040.0 + 20 +9725.0 + 30 +0.0 + 0 +VERTEX + 5 +2225 + 8 +LEGENDE-35 + 10 +17040.0 + 20 +10265.0 + 30 +0.0 + 0 +SEQEND + 5 +2226 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E2B + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2227 + 8 +LEGENDE-35 + 10 +17480.0 + 20 +9475.0 + 30 +0.0 + 0 +VERTEX + 5 +2228 + 8 +LEGENDE-35 + 10 +16400.0 + 20 +9475.0 + 30 +0.0 + 0 +VERTEX + 5 +2229 + 8 +LEGENDE-35 + 10 +16400.0 + 20 +10265.0 + 30 +0.0 + 0 +SEQEND + 5 +222A + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E30 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +222B + 8 +LEGENDE-35 + 10 +17485.0 + 20 +9215.0 + 30 +0.0 + 0 +VERTEX + 5 +222C + 8 +LEGENDE-35 + 10 +16215.0 + 20 +9215.0 + 30 +0.0 + 0 +VERTEX + 5 +222D + 8 +LEGENDE-35 + 10 +16215.0 + 20 +10240.0 + 30 +0.0 + 0 +SEQEND + 5 +222E + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E35 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +222F + 8 +LEGENDE-35 + 10 +17480.0 + 20 +8965.0 + 30 +0.0 + 0 +VERTEX + 5 +2230 + 8 +LEGENDE-35 + 10 +16230.0 + 20 +8965.0 + 30 +0.0 + 0 +SEQEND + 5 +2231 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E39 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2232 + 8 +LEGENDE-35 + 10 +17480.0 + 20 +8720.0 + 30 +0.0 + 0 +VERTEX + 5 +2233 + 8 +LEGENDE-35 + 10 +16635.0 + 20 +8720.0 + 30 +0.0 + 0 +VERTEX + 5 +2234 + 8 +LEGENDE-35 + 10 +16310.0 + 20 +8320.0 + 30 +0.0 + 0 +SEQEND + 5 +2235 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E3E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2236 + 8 +LEGENDE-35 + 10 +17475.0 + 20 +8475.0 + 30 +0.0 + 0 +VERTEX + 5 +2237 + 8 +LEGENDE-35 + 10 +16775.0 + 20 +8475.0 + 30 +0.0 + 0 +VERTEX + 5 +2238 + 8 +LEGENDE-35 + 10 +16105.0 + 20 +7755.0 + 30 +0.0 + 0 +SEQEND + 5 +2239 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E43 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +223A + 8 +LEGENDE-35 + 10 +17475.0 + 20 +8240.0 + 30 +0.0 + 0 +VERTEX + 5 +223B + 8 +LEGENDE-35 + 10 +16855.0 + 20 +8240.0 + 30 +0.0 + 0 +VERTEX + 5 +223C + 8 +LEGENDE-35 + 10 +16450.0 + 20 +7775.0 + 30 +0.0 + 0 +SEQEND + 5 +223D + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E48 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +223E + 8 +LEGENDE-35 + 10 +17480.0 + 20 +7975.0 + 30 +0.0 + 0 +VERTEX + 5 +223F + 8 +LEGENDE-35 + 10 +17015.0 + 20 +7975.0 + 30 +0.0 + 0 +VERTEX + 5 +2240 + 8 +LEGENDE-35 + 10 +16790.0 + 20 +7415.0 + 30 +0.0 + 0 +SEQEND + 5 +2241 + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E4D + 8 +LEGENDE-35 + 10 +18250.0 + 20 +5620.0 + 30 +0.0 + 40 +87.5 + 1 +ZEMENTESTRICH + 41 +0.75 + 0 +TEXT + 5 +1E4E + 8 +LEGENDE-35 + 10 +18250.0 + 20 +5370.0 + 30 +0.0 + 40 +87.5 + 1 +DICHTUNGSBAHN (BITUMEN/ PE-FOLIE) + 41 +0.75 + 0 +TEXT + 5 +1E4F + 8 +LEGENDE-35 + 10 +18250.0 + 20 +5120.0 + 30 +0.0 + 40 +87.5 + 1 +PS-HARTSCHAUM WD + 41 +0.75 + 0 +TEXT + 5 +1E50 + 8 +LEGENDE-35 + 10 +18250.0 + 20 +4870.0 + 30 +0.0 + 40 +87.5 + 1 +STAHLBETONDECKE B25 + 41 +0.75 + 0 +TEXT + 5 +1E51 + 8 +LEGENDE-35 + 10 +18250.0 + 20 +4724.166667 + 30 +0.0 + 40 +87.5 + 1 +ZWEIACHSIG GESPANNT + 41 +0.75 + 0 +POLYLINE + 5 +1E52 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2242 + 8 +LEGENDE-35 + 10 +18160.0 + 20 +5675.0 + 30 +0.0 + 0 +VERTEX + 5 +2243 + 8 +LEGENDE-35 + 10 +17880.0 + 20 +5675.0 + 30 +0.0 + 0 +VERTEX + 5 +2244 + 8 +LEGENDE-35 + 10 +17880.0 + 20 +7245.0 + 30 +0.0 + 0 +VERTEX + 5 +2245 + 8 +LEGENDE-35 + 10 +17260.0 + 20 +7245.0 + 30 +0.0 + 0 +SEQEND + 5 +2246 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E58 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2247 + 8 +LEGENDE-35 + 10 +18160.0 + 20 +5420.0 + 30 +0.0 + 0 +VERTEX + 5 +2248 + 8 +LEGENDE-35 + 10 +17740.0 + 20 +5420.0 + 30 +0.0 + 0 +VERTEX + 5 +2249 + 8 +LEGENDE-35 + 10 +17740.0 + 20 +7105.0 + 30 +0.0 + 0 +VERTEX + 5 +224A + 8 +LEGENDE-35 + 10 +17240.0 + 20 +7105.0 + 30 +0.0 + 0 +SEQEND + 5 +224B + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E5E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +224C + 8 +LEGENDE-35 + 10 +18160.0 + 20 +5185.0 + 30 +0.0 + 0 +VERTEX + 5 +224D + 8 +LEGENDE-35 + 10 +17580.0 + 20 +5185.0 + 30 +0.0 + 0 +VERTEX + 5 +224E + 8 +LEGENDE-35 + 10 +17580.0 + 20 +6950.0 + 30 +0.0 + 0 +VERTEX + 5 +224F + 8 +LEGENDE-35 + 10 +17200.0 + 20 +6950.0 + 30 +0.0 + 0 +SEQEND + 5 +2250 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E64 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2251 + 8 +LEGENDE-35 + 10 +18160.0 + 20 +4815.0 + 30 +0.0 + 0 +VERTEX + 5 +2252 + 8 +LEGENDE-35 + 10 +17165.0 + 20 +4815.0 + 30 +0.0 + 0 +VERTEX + 5 +2253 + 8 +LEGENDE-35 + 10 +17165.0 + 20 +6250.0 + 30 +0.0 + 0 +SEQEND + 5 +2254 + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E69 + 8 +LEGENDE-35 + 10 +12520.0 + 20 +9760.0 + 30 +0.0 + 40 +87.5 + 1 +STAHLBETONDECKE B25 + 41 +0.75 + 0 +TEXT + 5 +1E6A + 8 +LEGENDE-35 + 10 +12520.0 + 20 +9614.166667 + 30 +0.0 + 40 +87.5 + 1 +ZWEIACHSIG GESPANNT + 41 +0.75 + 0 +TEXT + 5 +1E6B + 8 +LEGENDE-35 + 10 +13175.0 + 20 +9105.0 + 30 +0.0 + 40 +87.5 + 1 +SCHNELLBAUSCHRAUBEN xn + 41 +0.75 + 0 +TEXT + 5 +1E6C + 8 +LEGENDE-35 + 10 +13000.0 + 20 +10655.0 + 30 +0.0 + 40 +87.5 + 1 +ELASTOMER-BAND + 41 +0.75 + 0 +TEXT + 5 +1E6D + 8 +LEGENDE-35 + 10 +13305.0 + 20 +6280.0 + 30 +0.0 + 40 +87.5 + 1 +ELASTOMER-BAND + 41 +0.75 + 0 +POLYLINE + 5 +1E6E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2255 + 8 +LEGENDE-35 + 10 +14335.0 + 20 +6330.0 + 30 +0.0 + 0 +VERTEX + 5 +2256 + 8 +LEGENDE-35 + 10 +15635.0 + 20 +6330.0 + 30 +0.0 + 0 +VERTEX + 5 +2257 + 8 +LEGENDE-35 + 10 +15850.0 + 20 +6900.0 + 30 +0.0 + 0 +SEQEND + 5 +2258 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E73 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2259 + 8 +LEGENDE-35 + 10 +14030.0 + 20 +10685.0 + 30 +0.0 + 0 +VERTEX + 5 +225A + 8 +LEGENDE-35 + 10 +15530.0 + 20 +10685.0 + 30 +0.0 + 0 +VERTEX + 5 +225B + 8 +LEGENDE-35 + 10 +15890.0 + 20 +10295.0 + 30 +0.0 + 0 +SEQEND + 5 +225C + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E78 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +225D + 8 +LEGENDE-35 + 10 +13820.0 + 20 +9725.0 + 30 +0.0 + 0 +VERTEX + 5 +225E + 8 +LEGENDE-35 + 10 +14470.0 + 20 +9725.0 + 30 +0.0 + 0 +VERTEX + 5 +225F + 8 +LEGENDE-35 + 10 +14470.0 + 20 +10490.0 + 30 +0.0 + 0 +VERTEX + 5 +2260 + 8 +LEGENDE-35 + 10 +14915.0 + 20 +10490.0 + 30 +0.0 + 0 +SEQEND + 5 +2261 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1E7E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2262 + 8 +LEGENDE-35 + 10 +14760.0 + 20 +9130.0 + 30 +0.0 + 0 +VERTEX + 5 +2263 + 8 +LEGENDE-35 + 10 +15345.0 + 20 +9130.0 + 30 +0.0 + 0 +VERTEX + 5 +2264 + 8 +LEGENDE-35 + 10 +15345.0 + 20 +9375.0 + 30 +0.0 + 0 +VERTEX + 5 +2265 + 8 +LEGENDE-35 + 10 +15675.0 + 20 +9375.0 + 30 +0.0 + 0 +SEQEND + 5 +2266 + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E84 + 8 +LEGENDE-35 + 10 +13305.0 + 20 +6030.0 + 30 +0.0 + 40 +87.5 + 1 +SCHLAGSCHRAUBEN + 41 +0.75 + 0 +POLYLINE + 5 +1E85 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +2267 + 8 +LEGENDE-35 + 10 +14370.0 + 20 +6065.0 + 30 +0.0 + 0 +VERTEX + 5 +2268 + 8 +LEGENDE-35 + 10 +15925.0 + 20 +6240.0 + 30 +0.0 + 0 +VERTEX + 5 +2269 + 8 +LEGENDE-35 + 10 +16000.0 + 20 +6690.0 + 30 +0.0 + 0 +SEQEND + 5 +226A + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E8A + 8 +LEGENDE-35 + 10 +12600.0 + 20 +10980.0 + 30 +0.0 + 40 +87.5 + 1 +SCHLAGSCHRAUBEN + 41 +0.75 + 0 +POLYLINE + 5 +1E8B + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +226B + 8 +LEGENDE-35 + 10 +13625.0 + 20 +11015.0 + 30 +0.0 + 0 +VERTEX + 5 +226C + 8 +LEGENDE-35 + 10 +15805.0 + 20 +10850.0 + 30 +0.0 + 0 +VERTEX + 5 +226D + 8 +LEGENDE-35 + 10 +16005.0 + 20 +10515.0 + 30 +0.0 + 0 +SEQEND + 5 +226E + 8 +LEGENDE-35 + 0 +TEXT + 5 +1E90 + 8 +LEGENDE-35 + 10 +14280.0 + 20 +4165.0 + 30 +0.0 + 40 +87.5 + 1 +METALSTNDERABSTAND: 62 + 41 +0.75 + 0 +TEXT + 5 +1E91 + 8 +LEGENDE-35 + 10 +15830.0 + 20 +4215.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 41 +0.75 + 0 +TEXT + 5 +1E92 + 8 +LEGENDE-35 + 10 +19475.0 + 20 +11935.0 + 30 +0.0 + 40 +87.5 + 1 +M 1:5 + 41 +0.75 + 0 +TEXT + 5 +1E93 + 8 +LEGENDE-70 + 10 +2045.0 + 20 +13695.0 + 30 +0.0 + 40 +175.0 + 1 +D2 + 41 +0.75 + 0 +TEXT + 5 +1E94 + 8 +LEGENDE-70 + 10 +2070.0 + 20 +6635.0 + 30 +0.0 + 40 +175.0 + 1 +D1 + 41 +0.75 + 0 +TEXT + 5 +1E95 + 8 +LEGENDE-70 + 10 +12515.0 + 20 +11540.0 + 30 +0.0 + 40 +175.0 + 1 +D3 + 41 +0.75 + 0 +ENDSEC + 0 +EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft4.dxf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft4.dxf new file mode 100644 index 0000000..5256540 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/draft4.dxf @@ -0,0 +1,77318 @@ + 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 +21025.0 + 20 +14850.0 + 30 +0.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +21025.0 + 20 +14850.0 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$DRAGMODE + 70 + 2 + 9 +$LTSCALE + 40 +175.0 + 9 +$OSMODE + 70 + 0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +175.0 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +LEGENDE-70 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +1.0 + 9 +$DIMEXO + 40 +1.0 + 9 +$DIMDLI + 40 +3.0 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +0.0 + 9 +$DIMEXE + 40 +0.5 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +87.5 + 9 +$DIMCEN + 40 +-0.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 1 + 9 +$DIMSE2 + 70 + 1 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 +MASSHILFSLINIE + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 0 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 2 + 9 +$DIMALTF + 40 +25.4 + 9 +$DIMLFAC + 40 +1.0 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 1 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +BEMASSUNG + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 2 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +0.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 0 + 9 +$MENU + 1 +acad + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$BLIPMODE + 70 + 1 + 9 +$CHAMFERA + 40 +0.0 + 9 +$CHAMFERB + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2450818.858134 + 9 +$TDUPDATE + 40 +2450820.494744 + 9 +$TDINDWG + 40 +0.466052 + 9 +$TDUSRTIMER + 40 +0.466052 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +0.0 + 9 +$COORDS + 70 + 2 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$ATTDIA + 70 + 0 + 9 +$ATTREQ + 70 + 1 + 9 +$HANDLING + 70 + 1 + 9 +$HANDSEED + 5 +1751 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSNAME + 2 +PAPIERURSPRUNG + 9 +$UCSORG + 10 +4005.0 + 20 +5370.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 16 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+020 + 20 +1.000000E+020 + 30 +1.000000E+020 + 9 +$PEXTMAX + 10 +-1.000000E+020 + 20 +-1.000000E+020 + 30 +-1.000000E+020 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +12.0 + 20 +9.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 0 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 70 + 3 + 0 +VPORT + 2 +*ACTIVE + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +11853.224688 + 22 +7639.042096 + 13 +0.0 + 23 +0.0 + 14 +5.0 + 24 +5.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +15278.084191 + 41 +1.551664 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 1 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 70 + 25 + 0 +LTYPE + 2 +CONTINUOUS + 70 + 0 + 3 +Solid Line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 2 +RAND + 70 + 0 + 3 +__ __ . __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +1.75 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +RAND2 + 70 + 0 + 3 +__.__.__.__.__.__.__.__.__.__.__.__.__.__.__.__ + 72 + 65 + 73 + 6 + 40 +0.875 + 49 +0.25 + 49 +-0.125 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +RANDX2 + 70 + 0 + 3 +____ ____ . ____ ____ . ____ ____ . __ + 72 + 65 + 73 + 6 + 40 +3.5 + 49 +1.0 + 49 +-0.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +MITTE + 70 + 0 + 3 +____ _ ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +MITTE2 + 70 + 0 + 3 +___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ ___ _ + 72 + 65 + 73 + 4 + 40 +1.125 + 49 +0.75 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +MITTEX2 + 70 + 0 + 3 +________ __ ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +4.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +LTYPE + 2 +STRICHPUNKT + 70 + 0 + 3 +__ . __ . __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +1.0 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +STRICHPUNKT2 + 70 + 0 + 3 +_._._._._._._._._._._._._._._._._._._._._._._._ + 72 + 65 + 73 + 4 + 40 +0.5 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +STRICHPUNKTX2 + 70 + 0 + 3 +____ . ____ . ____ . ____ . ____ . __ + 72 + 65 + 73 + 4 + 40 +2.0 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +GESTRICHELT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +GESTRICHELT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +GESTRICHELTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ + 72 + 65 + 73 + 2 + 40 +1.5 + 49 +1.0 + 49 +-0.5 + 0 +LTYPE + 2 +GETRENNT + 70 + 0 + 3 +____ . . ____ . . ____ . . ____ . . ____ . . __ + 72 + 65 + 73 + 6 + 40 +1.25 + 49 +0.5 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +GETRENNT2 + 70 + 0 + 3 +__..__..__..__..__..__..__..__..__..__..__..__. + 72 + 65 + 73 + 6 + 40 +0.625 + 49 +0.25 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +GETRENNTX2 + 70 + 0 + 3 +________ . . ________ . . ________ . . + 72 + 65 + 73 + 6 + 40 +2.5 + 49 +1.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +PUNKT + 70 + 0 + 3 +. . . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.25 + 49 +0.0 + 49 +-0.25 + 0 +LTYPE + 2 +PUNKT2 + 70 + 0 + 3 +............................................... + 72 + 65 + 73 + 2 + 40 +0.125 + 49 +0.0 + 49 +-0.125 + 0 +LTYPE + 2 +PUNKTX2 + 70 + 0 + 3 +. . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +0.5 + 49 +0.0 + 49 +-0.5 + 0 +LTYPE + 2 +VERDECKT + 70 + 0 + 3 +__ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ + 72 + 65 + 73 + 2 + 40 +0.375 + 49 +0.25 + 49 +-0.125 + 0 +LTYPE + 2 +VERDECKT2 + 70 + 0 + 3 +_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +0.1875 + 49 +0.125 + 49 +-0.0625 + 0 +LTYPE + 2 +VERDECKTX2 + 70 + 0 + 3 +____ ____ ____ ____ ____ ____ ____ ____ ____ __ + 72 + 65 + 73 + 2 + 40 +0.75 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM + 70 + 0 + 3 +______ __ __ ______ __ __ ______ __ __ + 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 +PHANTOM2 + 70 + 0 + 3 +___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ _ _ + 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 +PHANTOMX2 + 70 + 0 + 3 +____________ ____ ____ ____________ + 72 + 65 + 73 + 6 + 40 +5.0 + 49 +2.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 49 +0.5 + 49 +-0.5 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 + 24 + 0 +LAYER + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +MAUERWERK + 70 + 0 + 62 + 6 + 6 +CONTINUOUS + 0 +LAYER + 2 +VORSATZSCHALE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +PE-FOLIE + 70 + 0 + 62 + 1 + 6 +GESTRICHELTX2 + 0 +LAYER + 2 +FUNDAMENT + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +BEMASSUNG + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +STUERTZE + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +ESTRICH + 70 + 0 + 62 + 4 + 6 +CONTINUOUS + 0 +LAYER + 2 +DECKEN + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DAEMMUNG + 70 + 0 + 62 + 4 + 6 +CONTINUOUS + 0 +LAYER + 2 +TUEREN + 70 + 0 + 62 + 3 + 6 +CONTINUOUS + 0 +LAYER + 2 +ERDBODEN + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHNITTKANTEN + 70 + 0 + 62 + 1 + 6 +GESTRICHELT + 0 +LAYER + 2 +TRENNWAND + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-70 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +LEGENDE-35 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +DETAILS + 70 + 0 + 62 + 7 + 6 +GESTRICHELTX2 + 0 +LAYER + 2 +DRAHTANKER + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHRAFFUR + 70 + 0 + 62 + 2 + 6 +CONTINUOUS + 0 +LAYER + 2 +DEFPOINTS + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +LAYER + 2 +HOLZ + 70 + 0 + 62 + 5 + 6 +CONTINUOUS + 0 +LAYER + 2 +SCHORNSTEIN + 70 + 0 + 62 + 1 + 6 +CONTINUOUS + 0 +LAYER + 2 +DACHZIEGEL + 70 + 0 + 62 + 8 + 6 +CONTINUOUS + 0 +LAYER + 2 +REGENRINNE + 70 + 0 + 62 + 3 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 + 1 + 0 +STYLE + 2 +STANDARD + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +175.0 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 + 3 + 0 +UCS + 2 +LOKAL + 70 + 0 + 10 +4125.0 + 20 +5250.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +UCS + 2 +PAPIERURSPRUNG + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +UCS + 2 +ZANGE_SPARREN + 70 + 0 + 10 +2640.0 + 20 +2615.0 + 30 +0.0 + 11 +1.0 + 21 +0.0 + 31 +0.0 + 12 +0.0 + 22 +1.0 + 32 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 + 1 + 0 +APPID + 2 +ACAD + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 70 + 1 + 0 +DIMSTYLE + 2 +BEMASSUNG + 70 + 0 + 3 + + 4 + + 5 +MASSHILFSLINIE + 6 + + 7 + + 40 +1.0 + 41 +1.0 + 42 +1.0 + 43 +3.0 + 44 +0.5 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 +140 +87.5 +141 +-0.5 +142 +0.0 +143 +25.4 +144 +1.0 +145 +0.0 +146 +1.0 +147 +0.0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 0 + 75 + 1 + 76 + 1 + 77 + 1 + 78 + 8 +170 + 0 +171 + 2 +172 + 1 +173 + 0 +174 + 1 +175 + 0 +176 + 0 +177 + 0 +178 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 8 +0 + 2 +$MODEL_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$MODEL_SPACE + 1 + + 0 +ENDBLK + 5 +7C + 8 +0 + 0 +BLOCK + 67 + 1 + 8 +0 + 2 +$PAPER_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +$PAPER_SPACE + 1 + + 0 +ENDBLK + 5 +7A + 67 + 1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +RAHMEN50 + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +RAHMEN50 + 1 + + 0 +POLYLINE + 5 +80 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1392 + 8 +0 + 10 +1000.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1393 + 8 +0 + 10 +41800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1394 + 8 +0 + 10 +41800.0 + 20 +29450.0 + 30 +0.0 + 0 +VERTEX + 5 +1395 + 8 +0 + 10 +1000.0 + 20 +29450.0 + 30 +0.0 + 0 +SEQEND + 5 +1396 + 8 +0 + 0 +POLYLINE + 5 +86 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1397 + 8 +0 + 10 +32800.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +1398 + 8 +0 + 10 +32800.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +1399 + 8 +0 + 10 +41800.0 + 20 +13250.0 + 30 +0.0 + 0 +SEQEND + 5 +139A + 8 +0 + 0 +POLYLINE + 5 +8B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +139B + 8 +0 + 10 +39550.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +139C + 8 +0 + 10 +39550.0 + 20 +11000.0 + 30 +0.0 + 0 +SEQEND + 5 +139D + 8 +0 + 0 +POLYLINE + 5 +8F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +139E + 8 +0 + 10 +41800.0 + 20 +12250.0 + 30 +0.0 + 0 +VERTEX + 5 +139F + 8 +0 + 10 +37300.0 + 20 +12250.0 + 30 +0.0 + 0 +SEQEND + 5 +13A0 + 8 +0 + 0 +POLYLINE + 5 +93 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13A1 + 8 +0 + 10 +41800.0 + 20 +11625.0 + 30 +0.0 + 0 +VERTEX + 5 +13A2 + 8 +0 + 10 +37300.0 + 20 +11625.0 + 30 +0.0 + 0 +SEQEND + 5 +13A3 + 8 +0 + 0 +POLYLINE + 5 +97 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13A4 + 8 +0 + 10 +32800.0 + 20 +11000.0 + 30 +0.0 + 0 +VERTEX + 5 +13A5 + 8 +0 + 10 +41800.0 + 20 +11000.0 + 30 +0.0 + 0 +SEQEND + 5 +13A6 + 8 +0 + 0 +POLYLINE + 5 +9B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13A7 + 8 +0 + 10 +37300.0 + 20 +13250.0 + 30 +0.0 + 0 +VERTEX + 5 +13A8 + 8 +0 + 10 +37300.0 + 20 +6500.0 + 30 +0.0 + 0 +SEQEND + 5 +13A9 + 8 +0 + 0 +POLYLINE + 5 +9F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13AA + 8 +0 + 10 +32800.0 + 20 +8750.0 + 30 +0.0 + 0 +VERTEX + 5 +13AB + 8 +0 + 10 +37300.0 + 20 +8750.0 + 30 +0.0 + 0 +SEQEND + 5 +13AC + 8 +0 + 0 +POLYLINE + 5 +A3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13AD + 8 +0 + 10 +32800.0 + 20 +6500.0 + 30 +0.0 + 0 +VERTEX + 5 +13AE + 8 +0 + 10 +41800.0 + 20 +6500.0 + 30 +0.0 + 0 +SEQEND + 5 +13AF + 8 +0 + 0 +POLYLINE + 5 +A7 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13B0 + 8 +0 + 10 +41800.0 + 20 +2000.0 + 30 +0.0 + 0 +VERTEX + 5 +13B1 + 8 +0 + 10 +32800.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +13B2 + 8 +0 + 0 +POLYLINE + 5 +AB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13B3 + 8 +0 + 10 +41800.0 + 20 +950.0 + 30 +0.0 + 0 +VERTEX + 5 +13B4 + 8 +0 + 10 +32800.0 + 20 +950.0 + 30 +0.0 + 0 +SEQEND + 5 +13B5 + 8 +0 + 0 +POLYLINE + 5 +AF + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13B6 + 8 +0 + 10 +41800.0 + 20 +1300.0 + 30 +0.0 + 0 +VERTEX + 5 +13B7 + 8 +0 + 10 +32800.0 + 20 +1300.0 + 30 +0.0 + 0 +SEQEND + 5 +13B8 + 8 +0 + 0 +POLYLINE + 5 +B3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13B9 + 8 +0 + 10 +41800.0 + 20 +1650.0 + 30 +0.0 + 0 +VERTEX + 5 +13BA + 8 +0 + 10 +32800.0 + 20 +1650.0 + 30 +0.0 + 0 +SEQEND + 5 +13BB + 8 +0 + 0 +POLYLINE + 5 +B7 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13BC + 8 +0 + 10 +41800.0 + 20 +600.0 + 30 +0.0 + 0 +VERTEX + 5 +13BD + 8 +0 + 10 +32800.0 + 20 +600.0 + 30 +0.0 + 0 +SEQEND + 5 +13BE + 8 +0 + 0 +POLYLINE + 5 +BB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13BF + 8 +0 + 10 +35100.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +13C0 + 8 +0 + 10 +35100.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +13C1 + 8 +0 + 0 +POLYLINE + 5 +BF + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13C2 + 8 +0 + 10 +33950.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +13C3 + 8 +0 + 10 +33950.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +13C4 + 8 +0 + 0 +POLYLINE + 5 +C3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +13C5 + 8 +0 + 10 +40650.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +13C6 + 8 +0 + 10 +40650.0 + 20 +2000.0 + 30 +0.0 + 0 +SEQEND + 5 +13C7 + 8 +0 + 0 +ENDBLK + 5 +C7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +STURZ + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +STURZ + 1 + + 0 +POLYLINE + 5 +C9 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13C8 + 8 +MAUERWERK + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13C9 + 8 +MAUERWERK + 10 +0.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +13CA + 8 +MAUERWERK + 10 +365.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +13CB + 8 +MAUERWERK + 10 +365.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +13CC + 8 +MAUERWERK + 0 +POLYLINE + 5 +CF + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13CD + 8 +MAUERWERK + 10 +40.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +13CE + 8 +MAUERWERK + 10 +40.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +13CF + 8 +MAUERWERK + 10 +80.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +13D0 + 8 +MAUERWERK + 10 +80.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +13D1 + 8 +MAUERWERK + 0 +POLYLINE + 5 +D5 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13D2 + 8 +MAUERWERK + 10 +160.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +13D3 + 8 +MAUERWERK + 10 +160.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +13D4 + 8 +MAUERWERK + 10 +200.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +13D5 + 8 +MAUERWERK + 10 +200.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +13D6 + 8 +MAUERWERK + 0 +POLYLINE + 5 +DB + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13D7 + 8 +MAUERWERK + 10 +285.0 + 20 +-1.0 + 30 +0.0 + 0 +VERTEX + 5 +13D8 + 8 +MAUERWERK + 10 +285.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +13D9 + 8 +MAUERWERK + 10 +325.0 + 20 +-36.0 + 30 +0.0 + 0 +VERTEX + 5 +13DA + 8 +MAUERWERK + 10 +325.0 + 20 +-6.0 + 30 +0.0 + 0 +SEQEND + 5 +13DB + 8 +MAUERWERK + 0 +POLYLINE + 5 +E1 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13DC + 8 +MAUERWERK + 10 +121.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +13DD + 8 +MAUERWERK + 10 +121.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +13DE + 8 +MAUERWERK + 0 +POLYLINE + 5 +E5 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13DF + 8 +MAUERWERK + 10 +243.0 + 20 +-71.0 + 30 +0.0 + 0 +VERTEX + 5 +13E0 + 8 +MAUERWERK + 10 +243.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +13E1 + 8 +MAUERWERK + 0 +ENDBLK + 5 +E9 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +MASSHILFSLINIE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +MASSHILFSLINIE + 1 + + 0 +POLYLINE + 5 +EB + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13E2 + 8 +0 + 10 +75.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13E3 + 8 +0 + 10 +-75.0 + 20 +0.0 + 30 +0.0 + 0 +SEQEND + 5 +13E4 + 8 +0 + 0 +POLYLINE + 5 +EF + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13E5 + 8 +0 + 10 +0.0 + 20 +-175.0 + 30 +0.0 + 0 +VERTEX + 5 +13E6 + 8 +0 + 10 +0.0 + 20 +175.0 + 30 +0.0 + 0 +SEQEND + 5 +13E7 + 8 +0 + 0 +POLYLINE + 5 +F3 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13E8 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13E9 + 8 +0 + 10 +26.516504 + 20 +26.516504 + 30 +0.0 + 0 +SEQEND + 5 +13EA + 8 +0 + 0 +POLYLINE + 5 +F7 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13EB + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13EC + 8 +0 + 10 +-26.516504 + 20 +-26.516504 + 30 +0.0 + 0 +SEQEND + 5 +13ED + 8 +0 + 0 +ENDBLK + 5 +FB + 8 +0 + 0 +BLOCK + 8 +0 + 2 +DREIECK + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +DREIECK + 1 + + 0 +POLYLINE + 5 +FD + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 41 +175.0 + 0 +VERTEX + 5 +13EE + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +13EF + 8 +0 + 10 +0.0 + 20 +87.5 + 30 +0.0 + 40 +175.0 + 0 +SEQEND + 5 +13F0 + 8 +0 + 0 +ENDBLK + 5 +101 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +HOEHE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +HOEHE + 1 + + 0 +POLYLINE + 5 +103 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +13F1 + 8 +0 + 10 +0.019553 + 20 +0.17035 + 30 +0.0 + 0 +VERTEX + 5 +13F2 + 8 +0 + 10 +87.539037 + 20 +87.845238 + 30 +0.0 + 0 +VERTEX + 5 +13F3 + 8 +0 + 10 +-87.890695 + 20 +87.845238 + 30 +0.0 + 0 +SEQEND + 5 +13F4 + 8 +0 + 0 +ENDBLK + 5 +108 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X5 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X5 + 1 + + 0 +LINE + 5 +10A + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8986.079541 + 30 +0.0 + 11 +5932.5 + 21 +9273.579541 + 31 +0.0 + 0 +LINE + 5 +10B + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9065.629054 + 30 +0.0 + 11 +5932.5 + 21 +9353.129054 + 31 +0.0 + 0 +LINE + 5 +10C + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9145.178567 + 30 +0.0 + 11 +5932.5 + 21 +9432.678567 + 31 +0.0 + 0 +LINE + 5 +10D + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9224.72808 + 30 +0.0 + 11 +5932.5 + 21 +9512.22808 + 31 +0.0 + 0 +LINE + 5 +10E + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9304.277593 + 30 +0.0 + 11 +5932.5 + 21 +9591.777593 + 31 +0.0 + 0 +LINE + 5 +10F + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9383.827106 + 30 +0.0 + 11 +5932.5 + 21 +9671.327106 + 31 +0.0 + 0 +LINE + 5 +110 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9463.376618 + 30 +0.0 + 11 +5932.5 + 21 +9750.876618 + 31 +0.0 + 0 +LINE + 5 +111 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9542.926131 + 30 +0.0 + 11 +5932.5 + 21 +9830.426131 + 31 +0.0 + 0 +LINE + 5 +112 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9622.475644 + 30 +0.0 + 11 +5932.5 + 21 +9909.975644 + 31 +0.0 + 0 +LINE + 5 +113 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9702.025157 + 30 +0.0 + 11 +5910.474843 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +114 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9781.57467 + 30 +0.0 + 11 +5830.92533 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +115 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9861.124183 + 30 +0.0 + 11 +5751.375817 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +116 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +9940.673696 + 30 +0.0 + 11 +5671.826304 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +117 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8906.530028 + 30 +0.0 + 11 +5932.5 + 21 +9194.030028 + 31 +0.0 + 0 +LINE + 5 +118 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8826.980515 + 30 +0.0 + 11 +5932.5 + 21 +9114.480515 + 31 +0.0 + 0 +LINE + 5 +119 + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8747.431002 + 30 +0.0 + 11 +5932.5 + 21 +9034.931002 + 31 +0.0 + 0 +LINE + 5 +11A + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8667.88149 + 30 +0.0 + 11 +5932.5 + 21 +8955.38149 + 31 +0.0 + 0 +LINE + 5 +11B + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8588.331977 + 30 +0.0 + 11 +5932.5 + 21 +8875.831977 + 31 +0.0 + 0 +LINE + 5 +11C + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8508.782464 + 30 +0.0 + 11 +5932.5 + 21 +8796.282464 + 31 +0.0 + 0 +LINE + 5 +11D + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8429.232951 + 30 +0.0 + 11 +5932.5 + 21 +8716.732951 + 31 +0.0 + 0 +LINE + 5 +11E + 8 +0 + 62 + 0 + 10 +5645.0 + 20 +8349.683438 + 30 +0.0 + 11 +5932.5 + 21 +8637.183438 + 31 +0.0 + 0 +LINE + 5 +11F + 8 +0 + 62 + 0 + 10 +5684.866075 + 20 +8310.0 + 30 +0.0 + 11 +5932.5 + 21 +8557.633925 + 31 +0.0 + 0 +LINE + 5 +120 + 8 +0 + 62 + 0 + 10 +5764.415588 + 20 +8310.0 + 30 +0.0 + 11 +5932.5 + 21 +8478.084412 + 31 +0.0 + 0 +LINE + 5 +121 + 8 +0 + 62 + 0 + 10 +5843.965101 + 20 +8310.0 + 30 +0.0 + 11 +5932.5 + 21 +8398.534899 + 31 +0.0 + 0 +LINE + 5 +122 + 8 +0 + 62 + 0 + 10 +5923.514613 + 20 +8310.0 + 30 +0.0 + 11 +5932.5 + 21 +8318.985387 + 31 +0.0 + 0 +ENDBLK + 5 +123 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X6 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X6 + 1 + + 0 +LINE + 5 +125 + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +8615.952378 + 30 +0.0 + 11 +7195.0 + 21 +9528.452378 + 31 +0.0 + 0 +LINE + 5 +126 + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +8828.084412 + 30 +0.0 + 11 +7195.0 + 21 +9740.584412 + 31 +0.0 + 0 +LINE + 5 +127 + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +9040.216447 + 30 +0.0 + 11 +7195.0 + 21 +9952.716447 + 31 +0.0 + 0 +LINE + 5 +128 + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +9252.348481 + 30 +0.0 + 11 +6997.651519 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +129 + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +9464.480515 + 30 +0.0 + 11 +6785.519485 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +12A + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +9676.61255 + 30 +0.0 + 11 +6573.38745 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +12B + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +9888.744584 + 30 +0.0 + 11 +6361.255416 + 21 +9967.5 + 31 +0.0 + 0 +LINE + 5 +12C + 8 +0 + 62 + 0 + 10 +6282.5 + 20 +8403.820344 + 30 +0.0 + 11 +7195.0 + 21 +9316.320344 + 31 +0.0 + 0 +LINE + 5 +12D + 8 +0 + 62 + 0 + 10 +6400.811691 + 20 +8310.0 + 30 +0.0 + 11 +7195.0 + 21 +9104.188309 + 31 +0.0 + 0 +LINE + 5 +12E + 8 +0 + 62 + 0 + 10 +6612.943725 + 20 +8310.0 + 30 +0.0 + 11 +7195.0 + 21 +8892.056275 + 31 +0.0 + 0 +LINE + 5 +12F + 8 +0 + 62 + 0 + 10 +6825.07576 + 20 +8310.0 + 30 +0.0 + 11 +7195.0 + 21 +8679.92424 + 31 +0.0 + 0 +LINE + 5 +130 + 8 +0 + 62 + 0 + 10 +7037.207794 + 20 +8310.0 + 30 +0.0 + 11 +7195.0 + 21 +8467.792206 + 31 +0.0 + 0 +ENDBLK + 5 +131 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D7 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D7 + 1 + + 0 +LINE + 5 +133 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5641.0 + 20 +7565.0 + 30 +0.0 + 11 +5934.0 + 21 +7565.0 + 31 +0.0 + 0 +INSERT + 5 +134 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5640.0 + 20 +7565.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +135 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5935.0 + 20 +7565.0 + 30 +0.0 + 0 +TEXT + 5 +136 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5743.75 + 20 +7608.75 + 30 +0.0 + 40 +87.5 + 1 +11 + 72 + 1 + 11 +5787.5 + 21 +7652.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +138 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5640.0 + 20 +8330.0 + 30 +0.0 + 0 +POINT + 5 +139 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5935.0 + 20 +8330.0 + 30 +0.0 + 0 +POINT + 5 +13A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5935.0 + 20 +7565.0 + 30 +0.0 + 0 +ENDBLK + 5 +13B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D8 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D8 + 1 + + 0 +LINE + 5 +13D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5936.0 + 20 +7565.0 + 30 +0.0 + 11 +6079.0 + 21 +7565.0 + 31 +0.0 + 0 +INSERT + 5 +13E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +5935.0 + 20 +7565.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +13F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6080.0 + 20 +7565.0 + 30 +0.0 + 0 +TEXT + 5 +140 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +5978.333333 + 20 +7608.75 + 30 +0.0 + 40 +87.5 + 1 +6 + 72 + 1 + 11 +6007.5 + 21 +7652.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +141 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +5935.0 + 20 +8330.0 + 30 +0.0 + 0 +POINT + 5 +142 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6080.0 + 20 +8315.0 + 30 +0.0 + 0 +POINT + 5 +143 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6080.0 + 20 +7565.0 + 30 +0.0 + 0 +ENDBLK + 5 +144 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D9 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D9 + 1 + + 0 +LINE + 5 +146 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6081.0 + 20 +7565.0 + 30 +0.0 + 11 +6279.0 + 21 +7565.0 + 31 +0.0 + 0 +INSERT + 5 +147 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6080.0 + 20 +7565.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +148 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6280.0 + 20 +7565.0 + 30 +0.0 + 0 +TEXT + 5 +149 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6150.833333 + 20 +7608.75 + 30 +0.0 + 40 +87.5 + 1 +8 + 72 + 1 + 11 +6180.0 + 21 +7652.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +14A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6080.0 + 20 +8315.0 + 30 +0.0 + 0 +POINT + 5 +14B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6280.0 + 20 +8345.0 + 30 +0.0 + 0 +POINT + 5 +14C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6280.0 + 20 +7565.0 + 30 +0.0 + 0 +ENDBLK + 5 +14D + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D10 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D10 + 1 + + 0 +LINE + 5 +14F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6281.0 + 20 +7565.0 + 30 +0.0 + 11 +7194.0 + 21 +7565.0 + 31 +0.0 + 0 +INSERT + 5 +150 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +6280.0 + 20 +7565.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +151 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7195.0 + 20 +7565.0 + 30 +0.0 + 0 +TEXT + 5 +152 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +6664.583333 + 20 +7608.75 + 30 +0.0 + 40 +87.5 + 1 +36 + 72 + 1 + 11 +6737.5 + 21 +7652.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +153 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +6280.0 + 20 +8345.0 + 30 +0.0 + 0 +POINT + 5 +154 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7195.0 + 20 +8330.0 + 30 +0.0 + 0 +POINT + 5 +155 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7195.0 + 20 +7565.0 + 30 +0.0 + 0 +ENDBLK + 5 +156 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X11 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X11 + 1 + + 0 +LINE + 5 +158 + 8 +0 + 62 + 0 + 10 +7219.973556 + 20 +9095.369053 + 30 +0.0 + 11 +7219.973556 + 21 +9095.369053 + 31 +0.0 + 0 +LINE + 5 +159 + 8 +0 + 62 + 0 + 10 +7218.398722 + 20 +9143.539647 + 30 +0.0 + 11 +7218.398722 + 21 +9143.539647 + 31 +0.0 + 0 +LINE + 5 +15A + 8 +0 + 62 + 0 + 10 +7216.823888 + 20 +9191.710242 + 30 +0.0 + 11 +7216.823888 + 21 +9191.710242 + 31 +0.0 + 0 +LINE + 5 +15B + 8 +0 + 62 + 0 + 10 +7215.249055 + 20 +9239.880836 + 30 +0.0 + 11 +7215.249055 + 21 +9239.880836 + 31 +0.0 + 0 +LINE + 5 +15C + 8 +0 + 62 + 0 + 10 +7213.674221 + 20 +9288.05143 + 30 +0.0 + 11 +7213.674221 + 21 +9288.05143 + 31 +0.0 + 0 +LINE + 5 +15D + 8 +0 + 62 + 0 + 10 +7212.099387 + 20 +9336.222024 + 30 +0.0 + 11 +7212.099387 + 21 +9336.222024 + 31 +0.0 + 0 +LINE + 5 +15E + 8 +0 + 62 + 0 + 10 +7210.524553 + 20 +9384.392619 + 30 +0.0 + 11 +7210.524553 + 21 +9384.392619 + 31 +0.0 + 0 +LINE + 5 +15F + 8 +0 + 62 + 0 + 10 +7208.949719 + 20 +9432.563213 + 30 +0.0 + 11 +7208.949719 + 21 +9432.563213 + 31 +0.0 + 0 +LINE + 5 +160 + 8 +0 + 62 + 0 + 10 +7207.374885 + 20 +9480.733807 + 30 +0.0 + 11 +7207.374885 + 21 +9480.733807 + 31 +0.0 + 0 +LINE + 5 +161 + 8 +0 + 62 + 0 + 10 +7205.800051 + 20 +9528.904401 + 30 +0.0 + 11 +7205.800051 + 21 +9528.904401 + 31 +0.0 + 0 +LINE + 5 +162 + 8 +0 + 62 + 0 + 10 +7204.225217 + 20 +9577.074996 + 30 +0.0 + 11 +7204.225217 + 21 +9577.074996 + 31 +0.0 + 0 +LINE + 5 +163 + 8 +0 + 62 + 0 + 10 +7202.650383 + 20 +9625.24559 + 30 +0.0 + 11 +7202.650383 + 21 +9625.24559 + 31 +0.0 + 0 +LINE + 5 +164 + 8 +0 + 62 + 0 + 10 +7201.075549 + 20 +9673.416184 + 30 +0.0 + 11 +7201.075549 + 21 +9673.416184 + 31 +0.0 + 0 +LINE + 5 +165 + 8 +0 + 62 + 0 + 10 +7199.500715 + 20 +9721.586778 + 30 +0.0 + 11 +7199.500715 + 21 +9721.586778 + 31 +0.0 + 0 +LINE + 5 +166 + 8 +0 + 62 + 0 + 10 +7197.925881 + 20 +9769.757372 + 30 +0.0 + 11 +7197.925881 + 21 +9769.757372 + 31 +0.0 + 0 +LINE + 5 +167 + 8 +0 + 62 + 0 + 10 +7231.643398 + 20 +9795.629733 + 30 +0.0 + 11 +7231.643398 + 21 +9795.629733 + 31 +0.0 + 0 +LINE + 5 +168 + 8 +0 + 62 + 0 + 10 +7196.351047 + 20 +9817.927967 + 30 +0.0 + 11 +7196.351047 + 21 +9817.927967 + 31 +0.0 + 0 +LINE + 5 +169 + 8 +0 + 62 + 0 + 10 +7230.068564 + 20 +9843.800327 + 30 +0.0 + 11 +7230.068564 + 21 +9843.800327 + 31 +0.0 + 0 +LINE + 5 +16A + 8 +0 + 62 + 0 + 10 +7228.49373 + 20 +9891.970922 + 30 +0.0 + 11 +7228.49373 + 21 +9891.970922 + 31 +0.0 + 0 +LINE + 5 +16B + 8 +0 + 62 + 0 + 10 +7226.918896 + 20 +9940.141516 + 30 +0.0 + 11 +7226.918896 + 21 +9940.141516 + 31 +0.0 + 0 +LINE + 5 +16C + 8 +0 + 62 + 0 + 10 +7221.54839 + 20 +9047.198459 + 30 +0.0 + 11 +7221.54839 + 21 +9047.198459 + 31 +0.0 + 0 +LINE + 5 +16D + 8 +0 + 62 + 0 + 10 +7223.123224 + 20 +8999.027865 + 30 +0.0 + 11 +7223.123224 + 21 +8999.027865 + 31 +0.0 + 0 +LINE + 5 +16E + 8 +0 + 62 + 0 + 10 +7224.698058 + 20 +8950.857271 + 30 +0.0 + 11 +7224.698058 + 21 +8950.857271 + 31 +0.0 + 0 +LINE + 5 +16F + 8 +0 + 62 + 0 + 10 +7196.125465 + 20 +8879.553742 + 30 +0.0 + 11 +7196.125465 + 21 +8879.553742 + 31 +0.0 + 0 +LINE + 5 +170 + 8 +0 + 62 + 0 + 10 +7226.272892 + 20 +8902.686676 + 30 +0.0 + 11 +7226.272892 + 21 +8902.686676 + 31 +0.0 + 0 +LINE + 5 +171 + 8 +0 + 62 + 0 + 10 +7197.700299 + 20 +8831.383148 + 30 +0.0 + 11 +7197.700299 + 21 +8831.383148 + 31 +0.0 + 0 +LINE + 5 +172 + 8 +0 + 62 + 0 + 10 +7227.847726 + 20 +8854.516082 + 30 +0.0 + 11 +7227.847726 + 21 +8854.516082 + 31 +0.0 + 0 +LINE + 5 +173 + 8 +0 + 62 + 0 + 10 +7199.275133 + 20 +8783.212554 + 30 +0.0 + 11 +7199.275133 + 21 +8783.212554 + 31 +0.0 + 0 +LINE + 5 +174 + 8 +0 + 62 + 0 + 10 +7229.42256 + 20 +8806.345488 + 30 +0.0 + 11 +7229.42256 + 21 +8806.345488 + 31 +0.0 + 0 +LINE + 5 +175 + 8 +0 + 62 + 0 + 10 +7200.849967 + 20 +8735.041959 + 30 +0.0 + 11 +7200.849967 + 21 +8735.041959 + 31 +0.0 + 0 +LINE + 5 +176 + 8 +0 + 62 + 0 + 10 +7230.997394 + 20 +8758.174894 + 30 +0.0 + 11 +7230.997394 + 21 +8758.174894 + 31 +0.0 + 0 +LINE + 5 +177 + 8 +0 + 62 + 0 + 10 +7202.424801 + 20 +8686.871365 + 30 +0.0 + 11 +7202.424801 + 21 +8686.871365 + 31 +0.0 + 0 +LINE + 5 +178 + 8 +0 + 62 + 0 + 10 +7203.999635 + 20 +8638.700771 + 30 +0.0 + 11 +7203.999635 + 21 +8638.700771 + 31 +0.0 + 0 +LINE + 5 +179 + 8 +0 + 62 + 0 + 10 +7205.574469 + 20 +8590.530177 + 30 +0.0 + 11 +7205.574469 + 21 +8590.530177 + 31 +0.0 + 0 +LINE + 5 +17A + 8 +0 + 62 + 0 + 10 +7207.149303 + 20 +8542.359582 + 30 +0.0 + 11 +7207.149303 + 21 +8542.359582 + 31 +0.0 + 0 +LINE + 5 +17B + 8 +0 + 62 + 0 + 10 +7208.724137 + 20 +8494.188988 + 30 +0.0 + 11 +7208.724137 + 21 +8494.188988 + 31 +0.0 + 0 +LINE + 5 +17C + 8 +0 + 62 + 0 + 10 +7210.298971 + 20 +8446.018394 + 30 +0.0 + 11 +7210.298971 + 21 +8446.018394 + 31 +0.0 + 0 +LINE + 5 +17D + 8 +0 + 62 + 0 + 10 +7211.873805 + 20 +8397.8478 + 30 +0.0 + 11 +7211.873805 + 21 +8397.8478 + 31 +0.0 + 0 +LINE + 5 +17E + 8 +0 + 62 + 0 + 10 +7213.448639 + 20 +8349.677206 + 30 +0.0 + 11 +7213.448639 + 21 +8349.677206 + 31 +0.0 + 0 +LINE + 5 +17F + 8 +0 + 62 + 0 + 10 +7210.18492 + 20 +9105.06306 + 30 +0.0 + 11 +7210.18492 + 21 +9105.06306 + 31 +0.0 + 0 +LINE + 5 +180 + 8 +0 + 62 + 0 + 10 +7221.092005 + 20 +9171.227768 + 30 +0.0 + 11 +7221.092005 + 21 +9171.227768 + 31 +0.0 + 0 +LINE + 5 +181 + 8 +0 + 62 + 0 + 10 +7198.042102 + 20 +9232.921954 + 30 +0.0 + 11 +7198.042102 + 21 +9232.921954 + 31 +0.0 + 0 +LINE + 5 +182 + 8 +0 + 62 + 0 + 10 +7211.054816 + 20 +9234.635111 + 30 +0.0 + 11 +7211.054816 + 21 +9234.635111 + 31 +0.0 + 0 +LINE + 5 +183 + 8 +0 + 62 + 0 + 10 +7231.379436 + 20 +9237.310898 + 30 +0.0 + 11 +7231.379436 + 21 +9237.310898 + 31 +0.0 + 0 +LINE + 5 +184 + 8 +0 + 62 + 0 + 10 +7208.329533 + 20 +9299.005084 + 30 +0.0 + 11 +7208.329533 + 21 +9299.005084 + 31 +0.0 + 0 +LINE + 5 +185 + 8 +0 + 62 + 0 + 10 +7219.236618 + 20 +9365.169792 + 30 +0.0 + 11 +7219.236618 + 21 +9365.169792 + 31 +0.0 + 0 +LINE + 5 +186 + 8 +0 + 62 + 0 + 10 +7232.249331 + 20 +9366.882949 + 30 +0.0 + 11 +7232.249331 + 21 +9366.882949 + 31 +0.0 + 0 +LINE + 5 +187 + 8 +0 + 62 + 0 + 10 +7196.186715 + 20 +9426.863979 + 30 +0.0 + 11 +7196.186715 + 21 +9426.863979 + 31 +0.0 + 0 +LINE + 5 +188 + 8 +0 + 62 + 0 + 10 +7209.199429 + 20 +9428.577135 + 30 +0.0 + 11 +7209.199429 + 21 +9428.577135 + 31 +0.0 + 0 +LINE + 5 +189 + 8 +0 + 62 + 0 + 10 +7229.524049 + 20 +9431.252922 + 30 +0.0 + 11 +7229.524049 + 21 +9431.252922 + 31 +0.0 + 0 +LINE + 5 +18A + 8 +0 + 62 + 0 + 10 +7206.474146 + 20 +9492.947108 + 30 +0.0 + 11 +7206.474146 + 21 +9492.947108 + 31 +0.0 + 0 +LINE + 5 +18B + 8 +0 + 62 + 0 + 10 +7217.381231 + 20 +9559.111817 + 30 +0.0 + 11 +7217.381231 + 21 +9559.111817 + 31 +0.0 + 0 +LINE + 5 +18C + 8 +0 + 62 + 0 + 10 +7230.393944 + 20 +9560.824973 + 30 +0.0 + 11 +7230.393944 + 21 +9560.824973 + 31 +0.0 + 0 +LINE + 5 +18D + 8 +0 + 62 + 0 + 10 +7207.344042 + 20 +9622.519159 + 30 +0.0 + 11 +7207.344042 + 21 +9622.519159 + 31 +0.0 + 0 +LINE + 5 +18E + 8 +0 + 62 + 0 + 10 +7227.668662 + 20 +9625.194946 + 30 +0.0 + 11 +7227.668662 + 21 +9625.194946 + 31 +0.0 + 0 +LINE + 5 +18F + 8 +0 + 62 + 0 + 10 +7204.618759 + 20 +9686.889132 + 30 +0.0 + 11 +7204.618759 + 21 +9686.889132 + 31 +0.0 + 0 +LINE + 5 +190 + 8 +0 + 62 + 0 + 10 +7215.525843 + 20 +9753.053841 + 30 +0.0 + 11 +7215.525843 + 21 +9753.053841 + 31 +0.0 + 0 +LINE + 5 +191 + 8 +0 + 62 + 0 + 10 +7228.538557 + 20 +9754.766997 + 30 +0.0 + 11 +7228.538557 + 21 +9754.766997 + 31 +0.0 + 0 +LINE + 5 +192 + 8 +0 + 62 + 0 + 10 +7205.488655 + 20 +9816.461183 + 30 +0.0 + 11 +7205.488655 + 21 +9816.461183 + 31 +0.0 + 0 +LINE + 5 +193 + 8 +0 + 62 + 0 + 10 +7225.813275 + 20 +9819.13697 + 30 +0.0 + 11 +7225.813275 + 21 +9819.13697 + 31 +0.0 + 0 +LINE + 5 +194 + 8 +0 + 62 + 0 + 10 +7202.763372 + 20 +9880.831157 + 30 +0.0 + 11 +7202.763372 + 21 +9880.831157 + 31 +0.0 + 0 +LINE + 5 +195 + 8 +0 + 62 + 0 + 10 +7213.670456 + 20 +9946.995865 + 30 +0.0 + 11 +7213.670456 + 21 +9946.995865 + 31 +0.0 + 0 +LINE + 5 +196 + 8 +0 + 62 + 0 + 10 +7226.68317 + 20 +9948.709021 + 30 +0.0 + 11 +7226.68317 + 21 +9948.709021 + 31 +0.0 + 0 +LINE + 5 +197 + 8 +0 + 62 + 0 + 10 +7199.897489 + 20 +9038.97993 + 30 +0.0 + 11 +7199.897489 + 21 +9038.97993 + 31 +0.0 + 0 +LINE + 5 +198 + 8 +0 + 62 + 0 + 10 +7212.910203 + 20 +9040.693086 + 30 +0.0 + 11 +7212.910203 + 21 +9040.693086 + 31 +0.0 + 0 +LINE + 5 +199 + 8 +0 + 62 + 0 + 10 +7222.947392 + 20 +8977.285744 + 30 +0.0 + 11 +7222.947392 + 21 +8977.285744 + 31 +0.0 + 0 +LINE + 5 +19A + 8 +0 + 62 + 0 + 10 +7212.040307 + 20 +8911.121035 + 30 +0.0 + 11 +7212.040307 + 21 +8911.121035 + 31 +0.0 + 0 +LINE + 5 +19B + 8 +0 + 62 + 0 + 10 +7201.752876 + 20 +8845.037906 + 30 +0.0 + 11 +7201.752876 + 21 +8845.037906 + 31 +0.0 + 0 +LINE + 5 +19C + 8 +0 + 62 + 0 + 10 +7214.76559 + 20 +8846.751062 + 30 +0.0 + 11 +7214.76559 + 21 +8846.751062 + 31 +0.0 + 0 +LINE + 5 +19D + 8 +0 + 62 + 0 + 10 +7224.802779 + 20 +8783.343719 + 30 +0.0 + 11 +7224.802779 + 21 +8783.343719 + 31 +0.0 + 0 +LINE + 5 +19E + 8 +0 + 62 + 0 + 10 +7213.895695 + 20 +8717.179011 + 30 +0.0 + 11 +7213.895695 + 21 +8717.179011 + 31 +0.0 + 0 +LINE + 5 +19F + 8 +0 + 62 + 0 + 10 +7203.608263 + 20 +8651.095881 + 30 +0.0 + 11 +7203.608263 + 21 +8651.095881 + 31 +0.0 + 0 +LINE + 5 +1A0 + 8 +0 + 62 + 0 + 10 +7216.620977 + 20 +8652.809038 + 30 +0.0 + 11 +7216.620977 + 21 +8652.809038 + 31 +0.0 + 0 +LINE + 5 +1A1 + 8 +0 + 62 + 0 + 10 +7226.658166 + 20 +8589.401695 + 30 +0.0 + 11 +7226.658166 + 21 +8589.401695 + 31 +0.0 + 0 +LINE + 5 +1A2 + 8 +0 + 62 + 0 + 10 +7195.426462 + 20 +8520.5612 + 30 +0.0 + 11 +7195.426462 + 21 +8520.5612 + 31 +0.0 + 0 +LINE + 5 +1A3 + 8 +0 + 62 + 0 + 10 +7215.751082 + 20 +8523.236987 + 30 +0.0 + 11 +7215.751082 + 21 +8523.236987 + 31 +0.0 + 0 +LINE + 5 +1A4 + 8 +0 + 62 + 0 + 10 +7205.46365 + 20 +8457.153857 + 30 +0.0 + 11 +7205.46365 + 21 +8457.153857 + 31 +0.0 + 0 +LINE + 5 +1A5 + 8 +0 + 62 + 0 + 10 +7218.476364 + 20 +8458.867013 + 30 +0.0 + 11 +7218.476364 + 21 +8458.867013 + 31 +0.0 + 0 +LINE + 5 +1A6 + 8 +0 + 62 + 0 + 10 +7228.513553 + 20 +8395.459671 + 30 +0.0 + 11 +7228.513553 + 21 +8395.459671 + 31 +0.0 + 0 +LINE + 5 +1A7 + 8 +0 + 62 + 0 + 10 +7197.281849 + 20 +8326.619175 + 30 +0.0 + 11 +7197.281849 + 21 +8326.619175 + 31 +0.0 + 0 +LINE + 5 +1A8 + 8 +0 + 62 + 0 + 10 +7217.606469 + 20 +8329.294962 + 30 +0.0 + 11 +7217.606469 + 21 +8329.294962 + 31 +0.0 + 0 +LINE + 5 +1A9 + 8 +0 + 62 + 0 + 10 +7220.221079 + 20 +9158.506548 + 30 +0.0 + 11 +7220.221079 + 21 +9158.506548 + 31 +0.0 + 0 +LINE + 5 +1AA + 8 +0 + 62 + 0 + 10 +7230.763472 + 20 +9151.790303 + 30 +0.0 + 11 +7230.763472 + 21 +9151.790303 + 31 +0.0 + 0 +LINE + 5 +1AB + 8 +0 + 62 + 0 + 10 +7200.03037 + 20 +9221.109104 + 30 +0.0 + 11 +7200.03037 + 21 +9221.109104 + 31 +0.0 + 0 +LINE + 5 +1AC + 8 +0 + 62 + 0 + 10 +7210.572763 + 20 +9214.392859 + 30 +0.0 + 11 +7210.572763 + 21 +9214.392859 + 31 +0.0 + 0 +LINE + 5 +1AD + 8 +0 + 62 + 0 + 10 +7228.334669 + 20 +9252.816933 + 30 +0.0 + 11 +7228.334669 + 21 +9252.816933 + 31 +0.0 + 0 +LINE + 5 +1AE + 8 +0 + 62 + 0 + 10 +7208.14396 + 20 +9315.419488 + 30 +0.0 + 11 +7208.14396 + 21 +9315.419488 + 31 +0.0 + 0 +LINE + 5 +1AF + 8 +0 + 62 + 0 + 10 +7217.311789 + 20 +9409.058248 + 30 +0.0 + 11 +7217.311789 + 21 +9409.058248 + 31 +0.0 + 0 +LINE + 5 +1B0 + 8 +0 + 62 + 0 + 10 +7227.854182 + 20 +9402.342003 + 30 +0.0 + 11 +7227.854182 + 21 +9402.342003 + 31 +0.0 + 0 +LINE + 5 +1B1 + 8 +0 + 62 + 0 + 10 +7197.12108 + 20 +9471.660804 + 30 +0.0 + 11 +7197.12108 + 21 +9471.660804 + 31 +0.0 + 0 +LINE + 5 +1B2 + 8 +0 + 62 + 0 + 10 +7207.663473 + 20 +9464.944559 + 30 +0.0 + 11 +7207.663473 + 21 +9464.944559 + 31 +0.0 + 0 +LINE + 5 +1B3 + 8 +0 + 62 + 0 + 10 +7225.425379 + 20 +9503.368632 + 30 +0.0 + 11 +7225.425379 + 21 +9503.368632 + 31 +0.0 + 0 +LINE + 5 +1B4 + 8 +0 + 62 + 0 + 10 +7205.23467 + 20 +9565.971188 + 30 +0.0 + 11 +7205.23467 + 21 +9565.971188 + 31 +0.0 + 0 +LINE + 5 +1B5 + 8 +0 + 62 + 0 + 10 +7214.402499 + 20 +9659.609948 + 30 +0.0 + 11 +7214.402499 + 21 +9659.609948 + 31 +0.0 + 0 +LINE + 5 +1B6 + 8 +0 + 62 + 0 + 10 +7224.944892 + 20 +9652.893702 + 30 +0.0 + 11 +7224.944892 + 21 +9652.893702 + 31 +0.0 + 0 +LINE + 5 +1B7 + 8 +0 + 62 + 0 + 10 +7204.754183 + 20 +9715.496258 + 30 +0.0 + 11 +7204.754183 + 21 +9715.496258 + 31 +0.0 + 0 +LINE + 5 +1B8 + 8 +0 + 62 + 0 + 10 +7222.516089 + 20 +9753.920332 + 30 +0.0 + 11 +7222.516089 + 21 +9753.920332 + 31 +0.0 + 0 +LINE + 5 +1B9 + 8 +0 + 62 + 0 + 10 +7202.32538 + 20 +9816.522888 + 30 +0.0 + 11 +7202.32538 + 21 +9816.522888 + 31 +0.0 + 0 +LINE + 5 +1BA + 8 +0 + 62 + 0 + 10 +7231.683919 + 20 +9847.559091 + 30 +0.0 + 11 +7231.683919 + 21 +9847.559091 + 31 +0.0 + 0 +LINE + 5 +1BB + 8 +0 + 62 + 0 + 10 +7211.49321 + 20 +9910.161647 + 30 +0.0 + 11 +7211.49321 + 21 +9910.161647 + 31 +0.0 + 0 +LINE + 5 +1BC + 8 +0 + 62 + 0 + 10 +7222.035603 + 20 +9903.445402 + 30 +0.0 + 11 +7222.035603 + 21 +9903.445402 + 31 +0.0 + 0 +LINE + 5 +1BD + 8 +0 + 62 + 0 + 10 +7201.844894 + 20 +9966.047958 + 30 +0.0 + 11 +7201.844894 + 21 +9966.047958 + 31 +0.0 + 0 +LINE + 5 +1BE + 8 +0 + 62 + 0 + 10 +7211.053249 + 20 +9064.867789 + 30 +0.0 + 11 +7211.053249 + 21 +9064.867789 + 31 +0.0 + 0 +LINE + 5 +1BF + 8 +0 + 62 + 0 + 10 +7231.243958 + 20 +9002.265233 + 30 +0.0 + 11 +7231.243958 + 21 +9002.265233 + 31 +0.0 + 0 +LINE + 5 +1C0 + 8 +0 + 62 + 0 + 10 +7202.939659 + 20 +8970.557405 + 30 +0.0 + 11 +7202.939659 + 21 +8970.557405 + 31 +0.0 + 0 +LINE + 5 +1C1 + 8 +0 + 62 + 0 + 10 +7213.482052 + 20 +8963.84116 + 30 +0.0 + 11 +7213.482052 + 21 +8963.84116 + 31 +0.0 + 0 +LINE + 5 +1C2 + 8 +0 + 62 + 0 + 10 +7223.130368 + 20 +8907.954849 + 30 +0.0 + 11 +7223.130368 + 21 +8907.954849 + 31 +0.0 + 0 +LINE + 5 +1C3 + 8 +0 + 62 + 0 + 10 +7213.962539 + 20 +8814.316089 + 30 +0.0 + 11 +7213.962539 + 21 +8814.316089 + 31 +0.0 + 0 +LINE + 5 +1C4 + 8 +0 + 62 + 0 + 10 +7196.200633 + 20 +8775.892016 + 30 +0.0 + 11 +7196.200633 + 21 +8775.892016 + 31 +0.0 + 0 +LINE + 5 +1C5 + 8 +0 + 62 + 0 + 10 +7205.848949 + 20 +8720.005705 + 30 +0.0 + 11 +7205.848949 + 21 +8720.005705 + 31 +0.0 + 0 +LINE + 5 +1C6 + 8 +0 + 62 + 0 + 10 +7216.391342 + 20 +8713.28946 + 30 +0.0 + 11 +7216.391342 + 21 +8713.28946 + 31 +0.0 + 0 +LINE + 5 +1C7 + 8 +0 + 62 + 0 + 10 +7226.039658 + 20 +8657.403149 + 30 +0.0 + 11 +7226.039658 + 21 +8657.403149 + 31 +0.0 + 0 +LINE + 5 +1C8 + 8 +0 + 62 + 0 + 10 +7196.681119 + 20 +8626.366945 + 30 +0.0 + 11 +7196.681119 + 21 +8626.366945 + 31 +0.0 + 0 +LINE + 5 +1C9 + 8 +0 + 62 + 0 + 10 +7216.871828 + 20 +8563.76439 + 30 +0.0 + 11 +7216.871828 + 21 +8563.76439 + 31 +0.0 + 0 +LINE + 5 +1CA + 8 +0 + 62 + 0 + 10 +7199.109922 + 20 +8525.340316 + 30 +0.0 + 11 +7199.109922 + 21 +8525.340316 + 31 +0.0 + 0 +LINE + 5 +1CB + 8 +0 + 62 + 0 + 10 +7208.758238 + 20 +8469.454005 + 30 +0.0 + 11 +7208.758238 + 21 +8469.454005 + 31 +0.0 + 0 +LINE + 5 +1CC + 8 +0 + 62 + 0 + 10 +7219.300631 + 20 +8462.73776 + 30 +0.0 + 11 +7219.300631 + 21 +8462.73776 + 31 +0.0 + 0 +LINE + 5 +1CD + 8 +0 + 62 + 0 + 10 +7228.948947 + 20 +8406.85145 + 30 +0.0 + 11 +7228.948947 + 21 +8406.85145 + 31 +0.0 + 0 +LINE + 5 +1CE + 8 +0 + 62 + 0 + 10 +7199.590409 + 20 +8375.815246 + 30 +0.0 + 11 +7199.590409 + 21 +8375.815246 + 31 +0.0 + 0 +LINE + 5 +1CF + 8 +0 + 62 + 0 + 10 +7219.781118 + 20 +8313.21269 + 30 +0.0 + 11 +7219.781118 + 21 +8313.21269 + 31 +0.0 + 0 +LINE + 5 +1D0 + 8 +0 + 62 + 0 + 10 +7206.897665 + 20 +9077.542164 + 30 +0.0 + 11 +7206.897665 + 21 +9077.542164 + 31 +0.0 + 0 +LINE + 5 +1D1 + 8 +0 + 62 + 0 + 10 +7231.780775 + 20 +9054.740994 + 30 +0.0 + 11 +7231.780775 + 21 +9054.740994 + 31 +0.0 + 0 +LINE + 5 +1D2 + 8 +0 + 62 + 0 + 10 +7204.45239 + 20 +9170.589922 + 30 +0.0 + 11 +7204.45239 + 21 +9170.589922 + 31 +0.0 + 0 +LINE + 5 +1D3 + 8 +0 + 62 + 0 + 10 +7209.060374 + 20 +9166.367484 + 30 +0.0 + 11 +7209.060374 + 21 +9166.367484 + 31 +0.0 + 0 +LINE + 5 +1D4 + 8 +0 + 62 + 0 + 10 +7230.810055 + 20 +9146.437572 + 30 +0.0 + 11 +7230.810055 + 21 +9146.437572 + 31 +0.0 + 0 +LINE + 5 +1D5 + 8 +0 + 62 + 0 + 10 +7203.48167 + 20 +9262.2865 + 30 +0.0 + 11 +7203.48167 + 21 +9262.2865 + 31 +0.0 + 0 +LINE + 5 +1D6 + 8 +0 + 62 + 0 + 10 +7228.364781 + 20 +9239.485331 + 30 +0.0 + 11 +7228.364781 + 21 +9239.485331 + 31 +0.0 + 0 +LINE + 5 +1D7 + 8 +0 + 62 + 0 + 10 +7201.036396 + 20 +9355.334259 + 30 +0.0 + 11 +7201.036396 + 21 +9355.334259 + 31 +0.0 + 0 +LINE + 5 +1D8 + 8 +0 + 62 + 0 + 10 +7205.644379 + 20 +9351.11182 + 30 +0.0 + 11 +7205.644379 + 21 +9351.11182 + 31 +0.0 + 0 +LINE + 5 +1D9 + 8 +0 + 62 + 0 + 10 +7227.394061 + 20 +9331.181909 + 30 +0.0 + 11 +7227.394061 + 21 +9331.181909 + 31 +0.0 + 0 +LINE + 5 +1DA + 8 +0 + 62 + 0 + 10 +7200.065676 + 20 +9447.030837 + 30 +0.0 + 11 +7200.065676 + 21 +9447.030837 + 31 +0.0 + 0 +LINE + 5 +1DB + 8 +0 + 62 + 0 + 10 +7224.948786 + 20 +9424.229667 + 30 +0.0 + 11 +7224.948786 + 21 +9424.229667 + 31 +0.0 + 0 +LINE + 5 +1DC + 8 +0 + 62 + 0 + 10 +7229.556769 + 20 +9420.007229 + 30 +0.0 + 11 +7229.556769 + 21 +9420.007229 + 31 +0.0 + 0 +LINE + 5 +1DD + 8 +0 + 62 + 0 + 10 +7197.620401 + 20 +9540.078595 + 30 +0.0 + 11 +7197.620401 + 21 +9540.078595 + 31 +0.0 + 0 +LINE + 5 +1DE + 8 +0 + 62 + 0 + 10 +7202.228385 + 20 +9535.856157 + 30 +0.0 + 11 +7202.228385 + 21 +9535.856157 + 31 +0.0 + 0 +LINE + 5 +1DF + 8 +0 + 62 + 0 + 10 +7223.978066 + 20 +9515.926246 + 30 +0.0 + 11 +7223.978066 + 21 +9515.926246 + 31 +0.0 + 0 +LINE + 5 +1E0 + 8 +0 + 62 + 0 + 10 +7196.649681 + 20 +9631.775174 + 30 +0.0 + 11 +7196.649681 + 21 +9631.775174 + 31 +0.0 + 0 +LINE + 5 +1E1 + 8 +0 + 62 + 0 + 10 +7221.532792 + 20 +9608.974004 + 30 +0.0 + 11 +7221.532792 + 21 +9608.974004 + 31 +0.0 + 0 +LINE + 5 +1E2 + 8 +0 + 62 + 0 + 10 +7226.140775 + 20 +9604.751565 + 30 +0.0 + 11 +7226.140775 + 21 +9604.751565 + 31 +0.0 + 0 +LINE + 5 +1E3 + 8 +0 + 62 + 0 + 10 +7198.81239 + 20 +9720.600493 + 30 +0.0 + 11 +7198.81239 + 21 +9720.600493 + 31 +0.0 + 0 +LINE + 5 +1E4 + 8 +0 + 62 + 0 + 10 +7220.562072 + 20 +9700.670582 + 30 +0.0 + 11 +7220.562072 + 21 +9700.670582 + 31 +0.0 + 0 +LINE + 5 +1E5 + 8 +0 + 62 + 0 + 10 +7218.116797 + 20 +9793.718341 + 30 +0.0 + 11 +7218.116797 + 21 +9793.718341 + 31 +0.0 + 0 +LINE + 5 +1E6 + 8 +0 + 62 + 0 + 10 +7222.72478 + 20 +9789.495902 + 30 +0.0 + 11 +7222.72478 + 21 +9789.495902 + 31 +0.0 + 0 +LINE + 5 +1E7 + 8 +0 + 62 + 0 + 10 +7195.396396 + 20 +9905.34483 + 30 +0.0 + 11 +7195.396396 + 21 +9905.34483 + 31 +0.0 + 0 +LINE + 5 +1E8 + 8 +0 + 62 + 0 + 10 +7217.146077 + 20 +9885.414919 + 30 +0.0 + 11 +7217.146077 + 21 +9885.414919 + 31 +0.0 + 0 +LINE + 5 +1E9 + 8 +0 + 62 + 0 + 10 +7207.868385 + 20 +8985.845586 + 30 +0.0 + 11 +7207.868385 + 21 +8985.845586 + 31 +0.0 + 0 +LINE + 5 +1EA + 8 +0 + 62 + 0 + 10 +7212.476368 + 20 +8981.623147 + 30 +0.0 + 11 +7212.476368 + 21 +8981.623147 + 31 +0.0 + 0 +LINE + 5 +1EB + 8 +0 + 62 + 0 + 10 +7210.313659 + 20 +8892.797827 + 30 +0.0 + 11 +7210.313659 + 21 +8892.797827 + 31 +0.0 + 0 +LINE + 5 +1EC + 8 +0 + 62 + 0 + 10 +7211.284379 + 20 +8801.101249 + 30 +0.0 + 11 +7211.284379 + 21 +8801.101249 + 31 +0.0 + 0 +LINE + 5 +1ED + 8 +0 + 62 + 0 + 10 +7215.892363 + 20 +8796.878811 + 30 +0.0 + 11 +7215.892363 + 21 +8796.878811 + 31 +0.0 + 0 +LINE + 5 +1EE + 8 +0 + 62 + 0 + 10 +7213.729654 + 20 +8708.053491 + 30 +0.0 + 11 +7213.729654 + 21 +8708.053491 + 31 +0.0 + 0 +LINE + 5 +1EF + 8 +0 + 62 + 0 + 10 +7214.700374 + 20 +8616.356913 + 30 +0.0 + 11 +7214.700374 + 21 +8616.356913 + 31 +0.0 + 0 +LINE + 5 +1F0 + 8 +0 + 62 + 0 + 10 +7219.308357 + 20 +8612.134474 + 30 +0.0 + 11 +7219.308357 + 21 +8612.134474 + 31 +0.0 + 0 +LINE + 5 +1F1 + 8 +0 + 62 + 0 + 10 +7195.395967 + 20 +8543.239065 + 30 +0.0 + 11 +7195.395967 + 21 +8543.239065 + 31 +0.0 + 0 +LINE + 5 +1F2 + 8 +0 + 62 + 0 + 10 +7217.145648 + 20 +8523.309154 + 30 +0.0 + 11 +7217.145648 + 21 +8523.309154 + 31 +0.0 + 0 +LINE + 5 +1F3 + 8 +0 + 62 + 0 + 10 +7218.116368 + 20 +8431.612576 + 30 +0.0 + 11 +7218.116368 + 21 +8431.612576 + 31 +0.0 + 0 +LINE + 5 +1F4 + 8 +0 + 62 + 0 + 10 +7222.724352 + 20 +8427.390137 + 30 +0.0 + 11 +7222.724352 + 21 +8427.390137 + 31 +0.0 + 0 +LINE + 5 +1F5 + 8 +0 + 62 + 0 + 10 +7198.811961 + 20 +8358.494729 + 30 +0.0 + 11 +7198.811961 + 21 +8358.494729 + 31 +0.0 + 0 +LINE + 5 +1F6 + 8 +0 + 62 + 0 + 10 +7220.561643 + 20 +8338.564818 + 30 +0.0 + 11 +7220.561643 + 21 +8338.564818 + 31 +0.0 + 0 +ENDBLK + 5 +1F7 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D14 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D14 + 1 + + 0 +LINE + 5 +1F9 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7196.0 + 20 +7565.0 + 30 +0.0 + 11 +7229.0 + 21 +7565.0 + 31 +0.0 + 0 +INSERT + 5 +1FA + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7195.0 + 20 +7565.0 + 30 +0.0 + 50 +180.0 + 0 +INSERT + 5 +1FB + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +7230.0 + 20 +7565.0 + 30 +0.0 + 0 +TEXT + 5 +1FC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +7265.416667 + 20 +7608.75 + 30 +0.0 + 40 +87.5 + 1 +1 + 72 + 1 + 11 +7280.0 + 21 +7652.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +1FD + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7195.0 + 20 +8330.0 + 30 +0.0 + 0 +POINT + 5 +1FE + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7230.0 + 20 +8320.0 + 30 +0.0 + 0 +POINT + 5 +1FF + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +7230.0 + 20 +7565.0 + 30 +0.0 + 0 +ENDBLK + 5 +200 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D16 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D16 + 1 + + 0 +LINE + 5 +202 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9678.828818 + 20 +12690.02817 + 30 +0.0 + 11 +9837.780624 + 21 +12431.731487 + 31 +0.0 + 0 +INSERT + 5 +203 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9678.304721 + 20 +12690.879828 + 30 +0.0 + 50 +121.607502 + 0 +INSERT + 5 +204 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9838.304721 + 20 +12430.879828 + 30 +0.0 + 50 +301.607502 + 0 +TEXT + 5 +205 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9764.992423 + 20 +12633.489159 + 30 +0.0 + 40 +87.5 + 1 +16 + 50 +301.607502 + 72 + 1 + 11 +9832.824824 + 21 +12606.738353 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +206 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8905.0 + 20 +12215.0 + 30 +0.0 + 0 +POINT + 5 +207 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9065.0 + 20 +11955.0 + 30 +0.0 + 0 +POINT + 5 +208 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9838.304721 + 20 +12430.879828 + 30 +0.0 + 0 +ENDBLK + 5 +209 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D23 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D23 + 1 + + 0 +LINE + 5 +20B + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9578.676069 + 20 +12216.985896 + 30 +0.0 + 11 +9549.785469 + 21 +12260.321796 + 31 +0.0 + 0 +INSERT + 5 +20C + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9579.230769 + 20 +12216.153846 + 30 +0.0 + 50 +303.690068 + 0 +INSERT + 5 +20D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9549.230769 + 20 +12261.153846 + 30 +0.0 + 50 +123.690068 + 0 +TEXT + 5 +20E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9632.419044 + 20 +12225.0 + 30 +0.0 + 40 +87.5 + 1 +2 + 50 +303.690068 + 72 + 1 + 11 +9685.0 + 21 +12225.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +20F + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9105.0 + 20 +11900.0 + 30 +0.0 + 0 +POINT + 5 +210 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9075.0 + 20 +11945.0 + 30 +0.0 + 0 +POINT + 5 +211 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9549.230769 + 20 +12261.153846 + 30 +0.0 + 0 +ENDBLK + 5 +212 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D24 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D24 + 1 + + 0 +LINE + 5 +214 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9548.676069 + 20 +12261.985896 + 30 +0.0 + 11 +9282.093162 + 21 +12661.860257 + 31 +0.0 + 0 +INSERT + 5 +215 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9549.230769 + 20 +12261.153846 + 30 +0.0 + 50 +303.690068 + 0 +INSERT + 5 +216 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9281.538462 + 20 +12662.692308 + 30 +0.0 + 50 +123.690068 + 0 +TEXT + 5 +217 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9419.429304 + 20 +12534.727478 + 30 +0.0 + 40 +87.5 + 1 +18 + 50 +303.690068 + 72 + 1 + 11 +9488.189016 + 21 +12510.459344 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +218 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9075.0 + 20 +11945.0 + 30 +0.0 + 0 +POINT + 5 +219 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8820.0 + 20 +12355.0 + 30 +0.0 + 0 +POINT + 5 +21A + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9281.538462 + 20 +12662.692308 + 30 +0.0 + 0 +ENDBLK + 5 +21B + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D25 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D25 + 1 + + 0 +LINE + 5 +21D + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9280.983761 + 20 +12663.524358 + 30 +0.0 + 11 +9233.631623 + 21 +12734.552565 + 31 +0.0 + 0 +INSERT + 5 +21E + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9281.538462 + 20 +12662.692308 + 30 +0.0 + 50 +303.690068 + 0 +INSERT + 5 +21F + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9233.076923 + 20 +12735.384615 + 30 +0.0 + 50 +123.690068 + 0 +TEXT + 5 +220 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9277.531137 + 20 +12747.574729 + 30 +0.0 + 40 +87.5 + 1 +3 + 50 +303.690068 + 72 + 1 + 11 +9330.112093 + 21 +12747.574729 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +221 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8820.0 + 20 +12355.0 + 30 +0.0 + 0 +POINT + 5 +222 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8775.0 + 20 +12430.0 + 30 +0.0 + 0 +POINT + 5 +223 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9233.076923 + 20 +12735.384615 + 30 +0.0 + 0 +ENDBLK + 5 +224 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*X26 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*X26 + 1 + + 0 +LINE + 5 +226 + 8 +0 + 62 + 0 + 10 +5126.85938 + 20 +4347.007496 + 30 +0.0 + 11 +5158.125 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +227 + 8 +0 + 62 + 0 + 10 +5270.625 + 20 +4347.007496 + 30 +0.0 + 11 +5326.875 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +228 + 8 +0 + 62 + 0 + 10 +5439.375 + 20 +4347.007496 + 30 +0.0 + 11 +5495.625 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +229 + 8 +0 + 62 + 0 + 10 +5608.125 + 20 +4347.007496 + 30 +0.0 + 11 +5664.375 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +22A + 8 +0 + 62 + 0 + 10 +5776.875 + 20 +4347.007496 + 30 +0.0 + 11 +5833.125 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +22B + 8 +0 + 62 + 0 + 10 +5945.625 + 20 +4347.007496 + 30 +0.0 + 11 +6001.875 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +22C + 8 +0 + 62 + 0 + 10 +6114.375 + 20 +4347.007496 + 30 +0.0 + 11 +6170.625 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +22D + 8 +0 + 62 + 0 + 10 +6283.125 + 20 +4347.007496 + 30 +0.0 + 11 +6339.375 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +22E + 8 +0 + 62 + 0 + 10 +6451.875 + 20 +4347.007496 + 30 +0.0 + 11 +6508.125 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +22F + 8 +0 + 62 + 0 + 10 +6620.625 + 20 +4347.007496 + 30 +0.0 + 11 +6676.875 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +230 + 8 +0 + 62 + 0 + 10 +6789.375 + 20 +4347.007496 + 30 +0.0 + 11 +6845.625 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +231 + 8 +0 + 62 + 0 + 10 +6958.125 + 20 +4347.007496 + 30 +0.0 + 11 +7014.375 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +232 + 8 +0 + 62 + 0 + 10 +7126.875 + 20 +4347.007496 + 30 +0.0 + 11 +7183.125 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +233 + 8 +0 + 62 + 0 + 10 +7295.625 + 20 +4347.007496 + 30 +0.0 + 11 +7351.875 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +234 + 8 +0 + 62 + 0 + 10 +7464.375 + 20 +4347.007496 + 30 +0.0 + 11 +7520.625 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +235 + 8 +0 + 62 + 0 + 10 +7633.125 + 20 +4347.007496 + 30 +0.0 + 11 +7689.375 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +236 + 8 +0 + 62 + 0 + 10 +7801.875 + 20 +4347.007496 + 30 +0.0 + 11 +7858.125 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +237 + 8 +0 + 62 + 0 + 10 +7970.625 + 20 +4347.007496 + 30 +0.0 + 11 +8026.875 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +238 + 8 +0 + 62 + 0 + 10 +8139.375 + 20 +4347.007496 + 30 +0.0 + 11 +8195.625 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +239 + 8 +0 + 62 + 0 + 10 +8308.125 + 20 +4347.007496 + 30 +0.0 + 11 +8364.375 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +23A + 8 +0 + 62 + 0 + 10 +8476.875 + 20 +4347.007496 + 30 +0.0 + 11 +8533.125 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +23B + 8 +0 + 62 + 0 + 10 +8645.625 + 20 +4347.007496 + 30 +0.0 + 11 +8701.875 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +23C + 8 +0 + 62 + 0 + 10 +8814.375 + 20 +4347.007496 + 30 +0.0 + 11 +8845.0 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +23D + 8 +0 + 62 + 0 + 10 +5186.25 + 20 +4395.721425 + 30 +0.0 + 11 +5242.5 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +23E + 8 +0 + 62 + 0 + 10 +5355.0 + 20 +4395.721425 + 30 +0.0 + 11 +5411.25 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +23F + 8 +0 + 62 + 0 + 10 +5523.75 + 20 +4395.721425 + 30 +0.0 + 11 +5580.0 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +240 + 8 +0 + 62 + 0 + 10 +5692.5 + 20 +4395.721425 + 30 +0.0 + 11 +5748.75 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +241 + 8 +0 + 62 + 0 + 10 +5861.25 + 20 +4395.721425 + 30 +0.0 + 11 +5917.5 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +242 + 8 +0 + 62 + 0 + 10 +6030.0 + 20 +4395.721425 + 30 +0.0 + 11 +6086.25 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +243 + 8 +0 + 62 + 0 + 10 +6198.75 + 20 +4395.721425 + 30 +0.0 + 11 +6255.0 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +244 + 8 +0 + 62 + 0 + 10 +6367.5 + 20 +4395.721425 + 30 +0.0 + 11 +6423.75 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +245 + 8 +0 + 62 + 0 + 10 +6536.25 + 20 +4395.721425 + 30 +0.0 + 11 +6592.5 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +246 + 8 +0 + 62 + 0 + 10 +6705.0 + 20 +4395.721425 + 30 +0.0 + 11 +6761.25 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +247 + 8 +0 + 62 + 0 + 10 +6873.75 + 20 +4395.721425 + 30 +0.0 + 11 +6930.0 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +248 + 8 +0 + 62 + 0 + 10 +7042.5 + 20 +4395.721425 + 30 +0.0 + 11 +7098.75 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +249 + 8 +0 + 62 + 0 + 10 +7211.25 + 20 +4395.721425 + 30 +0.0 + 11 +7267.5 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +24A + 8 +0 + 62 + 0 + 10 +7380.0 + 20 +4395.721425 + 30 +0.0 + 11 +7436.25 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +24B + 8 +0 + 62 + 0 + 10 +7548.75 + 20 +4395.721425 + 30 +0.0 + 11 +7605.0 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +24C + 8 +0 + 62 + 0 + 10 +7717.5 + 20 +4395.721425 + 30 +0.0 + 11 +7773.75 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +24D + 8 +0 + 62 + 0 + 10 +7886.25 + 20 +4395.721425 + 30 +0.0 + 11 +7942.5 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +24E + 8 +0 + 62 + 0 + 10 +8055.0 + 20 +4395.721425 + 30 +0.0 + 11 +8111.25 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +24F + 8 +0 + 62 + 0 + 10 +8223.75 + 20 +4395.721425 + 30 +0.0 + 11 +8280.0 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +250 + 8 +0 + 62 + 0 + 10 +8392.5 + 20 +4395.721425 + 30 +0.0 + 11 +8448.75 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +251 + 8 +0 + 62 + 0 + 10 +8561.25 + 20 +4395.721425 + 30 +0.0 + 11 +8617.5 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +252 + 8 +0 + 62 + 0 + 10 +8730.0 + 20 +4395.721425 + 30 +0.0 + 11 +8786.25 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +253 + 8 +0 + 62 + 0 + 10 +5126.85938 + 20 +4444.435354 + 30 +0.0 + 11 +5158.125 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +254 + 8 +0 + 62 + 0 + 10 +5270.625 + 20 +4444.435354 + 30 +0.0 + 11 +5326.875 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +255 + 8 +0 + 62 + 0 + 10 +5439.375 + 20 +4444.435354 + 30 +0.0 + 11 +5495.625 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +256 + 8 +0 + 62 + 0 + 10 +5608.125 + 20 +4444.435354 + 30 +0.0 + 11 +5664.375 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +257 + 8 +0 + 62 + 0 + 10 +5776.875 + 20 +4444.435354 + 30 +0.0 + 11 +5833.125 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +258 + 8 +0 + 62 + 0 + 10 +5945.625 + 20 +4444.435354 + 30 +0.0 + 11 +6001.875 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +259 + 8 +0 + 62 + 0 + 10 +6114.375 + 20 +4444.435354 + 30 +0.0 + 11 +6170.625 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +25A + 8 +0 + 62 + 0 + 10 +6283.125 + 20 +4444.435354 + 30 +0.0 + 11 +6339.375 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +25B + 8 +0 + 62 + 0 + 10 +6451.875 + 20 +4444.435354 + 30 +0.0 + 11 +6508.125 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +25C + 8 +0 + 62 + 0 + 10 +6620.625 + 20 +4444.435354 + 30 +0.0 + 11 +6676.875 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +25D + 8 +0 + 62 + 0 + 10 +6789.375 + 20 +4444.435354 + 30 +0.0 + 11 +6845.625 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +25E + 8 +0 + 62 + 0 + 10 +6958.125 + 20 +4444.435354 + 30 +0.0 + 11 +7014.375 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +25F + 8 +0 + 62 + 0 + 10 +7126.875 + 20 +4444.435354 + 30 +0.0 + 11 +7183.125 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +260 + 8 +0 + 62 + 0 + 10 +7295.625 + 20 +4444.435354 + 30 +0.0 + 11 +7351.875 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +261 + 8 +0 + 62 + 0 + 10 +7464.375 + 20 +4444.435354 + 30 +0.0 + 11 +7520.625 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +262 + 8 +0 + 62 + 0 + 10 +7633.125 + 20 +4444.435354 + 30 +0.0 + 11 +7689.375 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +263 + 8 +0 + 62 + 0 + 10 +7801.875 + 20 +4444.435354 + 30 +0.0 + 11 +7858.125 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +264 + 8 +0 + 62 + 0 + 10 +7970.625 + 20 +4444.435354 + 30 +0.0 + 11 +8026.875 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +265 + 8 +0 + 62 + 0 + 10 +8139.375 + 20 +4444.435354 + 30 +0.0 + 11 +8195.625 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +266 + 8 +0 + 62 + 0 + 10 +8308.125 + 20 +4444.435354 + 30 +0.0 + 11 +8364.375 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +267 + 8 +0 + 62 + 0 + 10 +8476.875 + 20 +4444.435354 + 30 +0.0 + 11 +8533.125 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +268 + 8 +0 + 62 + 0 + 10 +8645.625 + 20 +4444.435354 + 30 +0.0 + 11 +8701.875 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +269 + 8 +0 + 62 + 0 + 10 +8814.375 + 20 +4444.435354 + 30 +0.0 + 11 +8845.0 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +26A + 8 +0 + 62 + 0 + 10 +5186.25 + 20 +4298.293568 + 30 +0.0 + 11 +5242.5 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +26B + 8 +0 + 62 + 0 + 10 +5355.0 + 20 +4298.293568 + 30 +0.0 + 11 +5411.25 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +26C + 8 +0 + 62 + 0 + 10 +5523.75 + 20 +4298.293568 + 30 +0.0 + 11 +5580.0 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +26D + 8 +0 + 62 + 0 + 10 +5692.5 + 20 +4298.293568 + 30 +0.0 + 11 +5748.75 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +26E + 8 +0 + 62 + 0 + 10 +5861.25 + 20 +4298.293568 + 30 +0.0 + 11 +5917.5 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +26F + 8 +0 + 62 + 0 + 10 +6030.0 + 20 +4298.293568 + 30 +0.0 + 11 +6086.25 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +270 + 8 +0 + 62 + 0 + 10 +6198.75 + 20 +4298.293568 + 30 +0.0 + 11 +6255.0 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +271 + 8 +0 + 62 + 0 + 10 +6367.5 + 20 +4298.293568 + 30 +0.0 + 11 +6423.75 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +272 + 8 +0 + 62 + 0 + 10 +6536.25 + 20 +4298.293568 + 30 +0.0 + 11 +6592.5 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +273 + 8 +0 + 62 + 0 + 10 +6705.0 + 20 +4298.293568 + 30 +0.0 + 11 +6761.25 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +274 + 8 +0 + 62 + 0 + 10 +6873.75 + 20 +4298.293568 + 30 +0.0 + 11 +6930.0 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +275 + 8 +0 + 62 + 0 + 10 +7042.5 + 20 +4298.293568 + 30 +0.0 + 11 +7098.75 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +276 + 8 +0 + 62 + 0 + 10 +7211.25 + 20 +4298.293568 + 30 +0.0 + 11 +7267.5 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +277 + 8 +0 + 62 + 0 + 10 +7380.0 + 20 +4298.293568 + 30 +0.0 + 11 +7436.25 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +278 + 8 +0 + 62 + 0 + 10 +7548.75 + 20 +4298.293568 + 30 +0.0 + 11 +7605.0 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +279 + 8 +0 + 62 + 0 + 10 +7717.5 + 20 +4298.293568 + 30 +0.0 + 11 +7773.75 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +27A + 8 +0 + 62 + 0 + 10 +7886.25 + 20 +4298.293568 + 30 +0.0 + 11 +7942.5 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +27B + 8 +0 + 62 + 0 + 10 +8055.0 + 20 +4298.293568 + 30 +0.0 + 11 +8111.25 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +27C + 8 +0 + 62 + 0 + 10 +8223.75 + 20 +4298.293568 + 30 +0.0 + 11 +8280.0 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +27D + 8 +0 + 62 + 0 + 10 +8392.5 + 20 +4298.293568 + 30 +0.0 + 11 +8448.75 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +27E + 8 +0 + 62 + 0 + 10 +8561.25 + 20 +4298.293568 + 30 +0.0 + 11 +8617.5 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +27F + 8 +0 + 62 + 0 + 10 +8730.0 + 20 +4298.293568 + 30 +0.0 + 11 +8786.25 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +280 + 8 +0 + 62 + 0 + 10 +5126.85938 + 20 +4249.579639 + 30 +0.0 + 11 +5158.125 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +281 + 8 +0 + 62 + 0 + 10 +5270.625 + 20 +4249.579639 + 30 +0.0 + 11 +5326.875 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +282 + 8 +0 + 62 + 0 + 10 +5439.375 + 20 +4249.579639 + 30 +0.0 + 11 +5495.625 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +283 + 8 +0 + 62 + 0 + 10 +5608.125 + 20 +4249.579639 + 30 +0.0 + 11 +5664.375 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +284 + 8 +0 + 62 + 0 + 10 +5776.875 + 20 +4249.579639 + 30 +0.0 + 11 +5833.125 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +285 + 8 +0 + 62 + 0 + 10 +5945.625 + 20 +4249.579639 + 30 +0.0 + 11 +6001.875 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +286 + 8 +0 + 62 + 0 + 10 +6114.375 + 20 +4249.579639 + 30 +0.0 + 11 +6170.625 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +287 + 8 +0 + 62 + 0 + 10 +6283.125 + 20 +4249.579639 + 30 +0.0 + 11 +6339.375 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +288 + 8 +0 + 62 + 0 + 10 +6451.875 + 20 +4249.579639 + 30 +0.0 + 11 +6508.125 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +289 + 8 +0 + 62 + 0 + 10 +6620.625 + 20 +4249.579639 + 30 +0.0 + 11 +6676.875 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +28A + 8 +0 + 62 + 0 + 10 +6789.375 + 20 +4249.579639 + 30 +0.0 + 11 +6845.625 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +28B + 8 +0 + 62 + 0 + 10 +6958.125 + 20 +4249.579639 + 30 +0.0 + 11 +7014.375 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +28C + 8 +0 + 62 + 0 + 10 +7126.875 + 20 +4249.579639 + 30 +0.0 + 11 +7183.125 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +28D + 8 +0 + 62 + 0 + 10 +7295.625 + 20 +4249.579639 + 30 +0.0 + 11 +7351.875 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +28E + 8 +0 + 62 + 0 + 10 +7464.375 + 20 +4249.579639 + 30 +0.0 + 11 +7520.625 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +28F + 8 +0 + 62 + 0 + 10 +7633.125 + 20 +4249.579639 + 30 +0.0 + 11 +7689.375 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +290 + 8 +0 + 62 + 0 + 10 +7801.875 + 20 +4249.579639 + 30 +0.0 + 11 +7858.125 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +291 + 8 +0 + 62 + 0 + 10 +7970.625 + 20 +4249.579639 + 30 +0.0 + 11 +8026.875 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +292 + 8 +0 + 62 + 0 + 10 +8139.375 + 20 +4249.579639 + 30 +0.0 + 11 +8195.625 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +293 + 8 +0 + 62 + 0 + 10 +8308.125 + 20 +4249.579639 + 30 +0.0 + 11 +8364.375 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +294 + 8 +0 + 62 + 0 + 10 +8476.875 + 20 +4249.579639 + 30 +0.0 + 11 +8533.125 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +295 + 8 +0 + 62 + 0 + 10 +8645.625 + 20 +4249.579639 + 30 +0.0 + 11 +8701.875 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +296 + 8 +0 + 62 + 0 + 10 +8814.375 + 20 +4249.579639 + 30 +0.0 + 11 +8845.0 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +297 + 8 +0 + 62 + 0 + 10 +5186.25 + 20 +4200.86571 + 30 +0.0 + 11 +5242.5 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +298 + 8 +0 + 62 + 0 + 10 +5355.0 + 20 +4200.86571 + 30 +0.0 + 11 +5411.25 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +299 + 8 +0 + 62 + 0 + 10 +5523.75 + 20 +4200.86571 + 30 +0.0 + 11 +5580.0 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +29A + 8 +0 + 62 + 0 + 10 +5692.5 + 20 +4200.86571 + 30 +0.0 + 11 +5748.75 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +29B + 8 +0 + 62 + 0 + 10 +5861.25 + 20 +4200.86571 + 30 +0.0 + 11 +5917.5 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +29C + 8 +0 + 62 + 0 + 10 +6030.0 + 20 +4200.86571 + 30 +0.0 + 11 +6086.25 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +29D + 8 +0 + 62 + 0 + 10 +6198.75 + 20 +4200.86571 + 30 +0.0 + 11 +6255.0 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +29E + 8 +0 + 62 + 0 + 10 +6367.5 + 20 +4200.86571 + 30 +0.0 + 11 +6423.75 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +29F + 8 +0 + 62 + 0 + 10 +6536.25 + 20 +4200.86571 + 30 +0.0 + 11 +6592.5 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A0 + 8 +0 + 62 + 0 + 10 +6705.0 + 20 +4200.86571 + 30 +0.0 + 11 +6761.25 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A1 + 8 +0 + 62 + 0 + 10 +6873.75 + 20 +4200.86571 + 30 +0.0 + 11 +6930.0 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A2 + 8 +0 + 62 + 0 + 10 +7042.5 + 20 +4200.86571 + 30 +0.0 + 11 +7098.75 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A3 + 8 +0 + 62 + 0 + 10 +7211.25 + 20 +4200.86571 + 30 +0.0 + 11 +7267.5 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A4 + 8 +0 + 62 + 0 + 10 +7380.0 + 20 +4200.86571 + 30 +0.0 + 11 +7436.25 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A5 + 8 +0 + 62 + 0 + 10 +7548.75 + 20 +4200.86571 + 30 +0.0 + 11 +7605.0 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A6 + 8 +0 + 62 + 0 + 10 +7717.5 + 20 +4200.86571 + 30 +0.0 + 11 +7773.75 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A7 + 8 +0 + 62 + 0 + 10 +7886.25 + 20 +4200.86571 + 30 +0.0 + 11 +7942.5 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A8 + 8 +0 + 62 + 0 + 10 +8055.0 + 20 +4200.86571 + 30 +0.0 + 11 +8111.25 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2A9 + 8 +0 + 62 + 0 + 10 +8223.75 + 20 +4200.86571 + 30 +0.0 + 11 +8280.0 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2AA + 8 +0 + 62 + 0 + 10 +8392.5 + 20 +4200.86571 + 30 +0.0 + 11 +8448.75 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2AB + 8 +0 + 62 + 0 + 10 +8561.25 + 20 +4200.86571 + 30 +0.0 + 11 +8617.5 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2AC + 8 +0 + 62 + 0 + 10 +8730.0 + 20 +4200.86571 + 30 +0.0 + 11 +8786.25 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +2AD + 8 +0 + 62 + 0 + 10 +7042.499992 + 20 +4200.8657 + 30 +0.0 + 11 +7014.374992 + 21 +4249.579629 + 31 +0.0 + 0 +LINE + 5 +2AE + 8 +0 + 62 + 0 + 10 +6958.124992 + 20 +4347.007487 + 30 +0.0 + 11 +6929.999992 + 21 +4395.721416 + 31 +0.0 + 0 +LINE + 5 +2AF + 8 +0 + 62 + 0 + 10 +6958.124992 + 20 +4249.579629 + 30 +0.0 + 11 +6929.999992 + 21 +4298.293558 + 31 +0.0 + 0 +LINE + 5 +2B0 + 8 +0 + 62 + 0 + 10 +6873.749992 + 20 +4395.721416 + 30 +0.0 + 11 +6845.624992 + 21 +4444.435345 + 31 +0.0 + 0 +LINE + 5 +2B1 + 8 +0 + 62 + 0 + 10 +6934.62201 + 20 +4192.860132 + 30 +0.0 + 11 +6929.999993 + 21 +4200.865701 + 31 +0.0 + 0 +LINE + 5 +2B2 + 8 +0 + 62 + 0 + 10 +6873.749993 + 20 +4298.293559 + 30 +0.0 + 11 +6845.624993 + 21 +4347.007488 + 31 +0.0 + 0 +LINE + 5 +2B3 + 8 +0 + 62 + 0 + 10 +6789.374993 + 20 +4444.435345 + 30 +0.0 + 11 +6761.416929 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2B4 + 8 +0 + 62 + 0 + 10 +6873.749993 + 20 +4200.865701 + 30 +0.0 + 11 +6845.624993 + 21 +4249.57963 + 31 +0.0 + 0 +LINE + 5 +2B5 + 8 +0 + 62 + 0 + 10 +6789.374993 + 20 +4347.007488 + 30 +0.0 + 11 +6761.249993 + 21 +4395.721417 + 31 +0.0 + 0 +LINE + 5 +2B6 + 8 +0 + 62 + 0 + 10 +6789.374993 + 20 +4249.57963 + 30 +0.0 + 11 +6761.249993 + 21 +4298.293559 + 31 +0.0 + 0 +LINE + 5 +2B7 + 8 +0 + 62 + 0 + 10 +6704.999993 + 20 +4395.721417 + 30 +0.0 + 11 +6676.874993 + 21 +4444.435346 + 31 +0.0 + 0 +LINE + 5 +2B8 + 8 +0 + 62 + 0 + 10 +6765.87201 + 20 +4192.860132 + 30 +0.0 + 11 +6761.249993 + 21 +4200.865701 + 31 +0.0 + 0 +LINE + 5 +2B9 + 8 +0 + 62 + 0 + 10 +6704.999993 + 20 +4298.293559 + 30 +0.0 + 11 +6676.874993 + 21 +4347.007488 + 31 +0.0 + 0 +LINE + 5 +2BA + 8 +0 + 62 + 0 + 10 +6620.624993 + 20 +4444.435346 + 30 +0.0 + 11 +6592.66693 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2BB + 8 +0 + 62 + 0 + 10 +6704.999993 + 20 +4200.865701 + 30 +0.0 + 11 +6676.874993 + 21 +4249.57963 + 31 +0.0 + 0 +LINE + 5 +2BC + 8 +0 + 62 + 0 + 10 +6620.624993 + 20 +4347.007488 + 30 +0.0 + 11 +6592.499993 + 21 +4395.721417 + 31 +0.0 + 0 +LINE + 5 +2BD + 8 +0 + 62 + 0 + 10 +6620.624994 + 20 +4249.57963 + 30 +0.0 + 11 +6592.499994 + 21 +4298.293559 + 31 +0.0 + 0 +LINE + 5 +2BE + 8 +0 + 62 + 0 + 10 +6536.249994 + 20 +4395.721417 + 30 +0.0 + 11 +6508.124994 + 21 +4444.435346 + 31 +0.0 + 0 +LINE + 5 +2BF + 8 +0 + 62 + 0 + 10 +6597.122011 + 20 +4192.860132 + 30 +0.0 + 11 +6592.499994 + 21 +4200.865701 + 31 +0.0 + 0 +LINE + 5 +2C0 + 8 +0 + 62 + 0 + 10 +6536.249994 + 20 +4298.293559 + 30 +0.0 + 11 +6508.124994 + 21 +4347.007488 + 31 +0.0 + 0 +LINE + 5 +2C1 + 8 +0 + 62 + 0 + 10 +6451.874994 + 20 +4444.435346 + 30 +0.0 + 11 +6423.91693 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2C2 + 8 +0 + 62 + 0 + 10 +6536.249994 + 20 +4200.865701 + 30 +0.0 + 11 +6508.124994 + 21 +4249.57963 + 31 +0.0 + 0 +LINE + 5 +2C3 + 8 +0 + 62 + 0 + 10 +6451.874994 + 20 +4347.007488 + 30 +0.0 + 11 +6423.749994 + 21 +4395.721417 + 31 +0.0 + 0 +LINE + 5 +2C4 + 8 +0 + 62 + 0 + 10 +6451.874994 + 20 +4249.57963 + 30 +0.0 + 11 +6423.749994 + 21 +4298.293559 + 31 +0.0 + 0 +LINE + 5 +2C5 + 8 +0 + 62 + 0 + 10 +6367.499994 + 20 +4395.721417 + 30 +0.0 + 11 +6339.374994 + 21 +4444.435346 + 31 +0.0 + 0 +LINE + 5 +2C6 + 8 +0 + 62 + 0 + 10 +6428.372012 + 20 +4192.860132 + 30 +0.0 + 11 +6423.749994 + 21 +4200.865702 + 31 +0.0 + 0 +LINE + 5 +2C7 + 8 +0 + 62 + 0 + 10 +6367.499994 + 20 +4298.29356 + 30 +0.0 + 11 +6339.374994 + 21 +4347.007488 + 31 +0.0 + 0 +LINE + 5 +2C8 + 8 +0 + 62 + 0 + 10 +6283.124994 + 20 +4444.435346 + 30 +0.0 + 11 +6255.166931 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2C9 + 8 +0 + 62 + 0 + 10 +6367.499994 + 20 +4200.865702 + 30 +0.0 + 11 +6339.374994 + 21 +4249.579631 + 31 +0.0 + 0 +LINE + 5 +2CA + 8 +0 + 62 + 0 + 10 +6283.124994 + 20 +4347.007489 + 30 +0.0 + 11 +6254.999994 + 21 +4395.721418 + 31 +0.0 + 0 +LINE + 5 +2CB + 8 +0 + 62 + 0 + 10 +6283.124995 + 20 +4249.579631 + 30 +0.0 + 11 +6254.999995 + 21 +4298.29356 + 31 +0.0 + 0 +LINE + 5 +2CC + 8 +0 + 62 + 0 + 10 +6198.749995 + 20 +4395.721418 + 30 +0.0 + 11 +6170.624995 + 21 +4444.435347 + 31 +0.0 + 0 +LINE + 5 +2CD + 8 +0 + 62 + 0 + 10 +6259.622013 + 20 +4192.860132 + 30 +0.0 + 11 +6254.999995 + 21 +4200.865702 + 31 +0.0 + 0 +LINE + 5 +2CE + 8 +0 + 62 + 0 + 10 +6198.749995 + 20 +4298.29356 + 30 +0.0 + 11 +6170.624995 + 21 +4347.007489 + 31 +0.0 + 0 +LINE + 5 +2CF + 8 +0 + 62 + 0 + 10 +6114.374995 + 20 +4444.435347 + 30 +0.0 + 11 +6086.416932 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2D0 + 8 +0 + 62 + 0 + 10 +6198.749995 + 20 +4200.865702 + 30 +0.0 + 11 +6170.624995 + 21 +4249.579631 + 31 +0.0 + 0 +LINE + 5 +2D1 + 8 +0 + 62 + 0 + 10 +6114.374995 + 20 +4347.007489 + 30 +0.0 + 11 +6086.249995 + 21 +4395.721418 + 31 +0.0 + 0 +LINE + 5 +2D2 + 8 +0 + 62 + 0 + 10 +6114.374995 + 20 +4249.579631 + 30 +0.0 + 11 +6086.249995 + 21 +4298.29356 + 31 +0.0 + 0 +LINE + 5 +2D3 + 8 +0 + 62 + 0 + 10 +6029.999995 + 20 +4395.721418 + 30 +0.0 + 11 +6001.874995 + 21 +4444.435347 + 31 +0.0 + 0 +LINE + 5 +2D4 + 8 +0 + 62 + 0 + 10 +6090.872013 + 20 +4192.860132 + 30 +0.0 + 11 +6086.249995 + 21 +4200.865702 + 31 +0.0 + 0 +LINE + 5 +2D5 + 8 +0 + 62 + 0 + 10 +6029.999995 + 20 +4298.29356 + 30 +0.0 + 11 +6001.874995 + 21 +4347.007489 + 31 +0.0 + 0 +LINE + 5 +2D6 + 8 +0 + 62 + 0 + 10 +5945.624995 + 20 +4444.435347 + 30 +0.0 + 11 +5917.666933 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2D7 + 8 +0 + 62 + 0 + 10 +6029.999996 + 20 +4200.865702 + 30 +0.0 + 11 +6001.874996 + 21 +4249.579631 + 31 +0.0 + 0 +LINE + 5 +2D8 + 8 +0 + 62 + 0 + 10 +5945.624996 + 20 +4347.007489 + 30 +0.0 + 11 +5917.499996 + 21 +4395.721418 + 31 +0.0 + 0 +LINE + 5 +2D9 + 8 +0 + 62 + 0 + 10 +5945.624996 + 20 +4249.579631 + 30 +0.0 + 11 +5917.499996 + 21 +4298.29356 + 31 +0.0 + 0 +LINE + 5 +2DA + 8 +0 + 62 + 0 + 10 +5861.249996 + 20 +4395.721418 + 30 +0.0 + 11 +5833.124996 + 21 +4444.435347 + 31 +0.0 + 0 +LINE + 5 +2DB + 8 +0 + 62 + 0 + 10 +5922.122014 + 20 +4192.860132 + 30 +0.0 + 11 +5917.499996 + 21 +4200.865703 + 31 +0.0 + 0 +LINE + 5 +2DC + 8 +0 + 62 + 0 + 10 +5861.249996 + 20 +4298.29356 + 30 +0.0 + 11 +5833.124996 + 21 +4347.007489 + 31 +0.0 + 0 +LINE + 5 +2DD + 8 +0 + 62 + 0 + 10 +5776.874996 + 20 +4444.435347 + 30 +0.0 + 11 +5748.916933 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2DE + 8 +0 + 62 + 0 + 10 +5861.249996 + 20 +4200.865703 + 30 +0.0 + 11 +5833.124996 + 21 +4249.579632 + 31 +0.0 + 0 +LINE + 5 +2DF + 8 +0 + 62 + 0 + 10 +5776.874996 + 20 +4347.00749 + 30 +0.0 + 11 +5748.749996 + 21 +4395.721419 + 31 +0.0 + 0 +LINE + 5 +2E0 + 8 +0 + 62 + 0 + 10 +5776.874996 + 20 +4249.579632 + 30 +0.0 + 11 +5748.749996 + 21 +4298.293561 + 31 +0.0 + 0 +LINE + 5 +2E1 + 8 +0 + 62 + 0 + 10 +5692.499996 + 20 +4395.721419 + 30 +0.0 + 11 +5664.374996 + 21 +4444.435348 + 31 +0.0 + 0 +LINE + 5 +2E2 + 8 +0 + 62 + 0 + 10 +5753.372015 + 20 +4192.860132 + 30 +0.0 + 11 +5748.749996 + 21 +4200.865703 + 31 +0.0 + 0 +LINE + 5 +2E3 + 8 +0 + 62 + 0 + 10 +5692.499996 + 20 +4298.293561 + 30 +0.0 + 11 +5664.374996 + 21 +4347.00749 + 31 +0.0 + 0 +LINE + 5 +2E4 + 8 +0 + 62 + 0 + 10 +5608.124996 + 20 +4444.435348 + 30 +0.0 + 11 +5580.166934 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2E5 + 8 +0 + 62 + 0 + 10 +5692.499997 + 20 +4200.865703 + 30 +0.0 + 11 +5664.374997 + 21 +4249.579632 + 31 +0.0 + 0 +LINE + 5 +2E6 + 8 +0 + 62 + 0 + 10 +5608.124997 + 20 +4347.00749 + 30 +0.0 + 11 +5579.999997 + 21 +4395.721419 + 31 +0.0 + 0 +LINE + 5 +2E7 + 8 +0 + 62 + 0 + 10 +5608.124997 + 20 +4249.579632 + 30 +0.0 + 11 +5579.999997 + 21 +4298.293561 + 31 +0.0 + 0 +LINE + 5 +2E8 + 8 +0 + 62 + 0 + 10 +5523.749997 + 20 +4395.721419 + 30 +0.0 + 11 +5495.624997 + 21 +4444.435348 + 31 +0.0 + 0 +LINE + 5 +2E9 + 8 +0 + 62 + 0 + 10 +5584.622016 + 20 +4192.860132 + 30 +0.0 + 11 +5579.999997 + 21 +4200.865703 + 31 +0.0 + 0 +LINE + 5 +2EA + 8 +0 + 62 + 0 + 10 +5523.749997 + 20 +4298.293561 + 30 +0.0 + 11 +5495.624997 + 21 +4347.00749 + 31 +0.0 + 0 +LINE + 5 +2EB + 8 +0 + 62 + 0 + 10 +5439.374997 + 20 +4444.435348 + 30 +0.0 + 11 +5411.416935 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2EC + 8 +0 + 62 + 0 + 10 +5523.749997 + 20 +4200.865703 + 30 +0.0 + 11 +5495.624997 + 21 +4249.579632 + 31 +0.0 + 0 +LINE + 5 +2ED + 8 +0 + 62 + 0 + 10 +5439.374997 + 20 +4347.00749 + 30 +0.0 + 11 +5411.249997 + 21 +4395.721419 + 31 +0.0 + 0 +LINE + 5 +2EE + 8 +0 + 62 + 0 + 10 +5439.374997 + 20 +4249.579632 + 30 +0.0 + 11 +5411.249997 + 21 +4298.293561 + 31 +0.0 + 0 +LINE + 5 +2EF + 8 +0 + 62 + 0 + 10 +5354.999997 + 20 +4395.721419 + 30 +0.0 + 11 +5326.874997 + 21 +4444.435348 + 31 +0.0 + 0 +LINE + 5 +2F0 + 8 +0 + 62 + 0 + 10 +5415.872016 + 20 +4192.860132 + 30 +0.0 + 11 +5411.249998 + 21 +4200.865704 + 31 +0.0 + 0 +LINE + 5 +2F1 + 8 +0 + 62 + 0 + 10 +5354.999998 + 20 +4298.293561 + 30 +0.0 + 11 +5326.874998 + 21 +4347.00749 + 31 +0.0 + 0 +LINE + 5 +2F2 + 8 +0 + 62 + 0 + 10 +5270.624998 + 20 +4444.435348 + 30 +0.0 + 11 +5242.666935 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2F3 + 8 +0 + 62 + 0 + 10 +5354.999998 + 20 +4200.865704 + 30 +0.0 + 11 +5326.874998 + 21 +4249.579633 + 31 +0.0 + 0 +LINE + 5 +2F4 + 8 +0 + 62 + 0 + 10 +5270.624998 + 20 +4347.007491 + 30 +0.0 + 11 +5242.499998 + 21 +4395.721419 + 31 +0.0 + 0 +LINE + 5 +2F5 + 8 +0 + 62 + 0 + 10 +5270.624998 + 20 +4249.579633 + 30 +0.0 + 11 +5242.499998 + 21 +4298.293562 + 31 +0.0 + 0 +LINE + 5 +2F6 + 8 +0 + 62 + 0 + 10 +5186.249998 + 20 +4395.72142 + 30 +0.0 + 11 +5158.124998 + 21 +4444.435349 + 31 +0.0 + 0 +LINE + 5 +2F7 + 8 +0 + 62 + 0 + 10 +5247.122017 + 20 +4192.860132 + 30 +0.0 + 11 +5242.499998 + 21 +4200.865704 + 31 +0.0 + 0 +LINE + 5 +2F8 + 8 +0 + 62 + 0 + 10 +5186.249998 + 20 +4298.293562 + 30 +0.0 + 11 +5158.124998 + 21 +4347.007491 + 31 +0.0 + 0 +LINE + 5 +2F9 + 8 +0 + 62 + 0 + 10 +5186.249998 + 20 +4200.865704 + 30 +0.0 + 11 +5158.124998 + 21 +4249.579633 + 31 +0.0 + 0 +LINE + 5 +2FA + 8 +0 + 62 + 0 + 10 +7103.372009 + 20 +4192.860132 + 30 +0.0 + 11 +7098.749992 + 21 +4200.8657 + 31 +0.0 + 0 +LINE + 5 +2FB + 8 +0 + 62 + 0 + 10 +7042.499992 + 20 +4298.293558 + 30 +0.0 + 11 +7014.374992 + 21 +4347.007487 + 31 +0.0 + 0 +LINE + 5 +2FC + 8 +0 + 62 + 0 + 10 +6958.124992 + 20 +4444.435345 + 30 +0.0 + 11 +6930.166928 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +2FD + 8 +0 + 62 + 0 + 10 +7126.874992 + 20 +4249.579629 + 30 +0.0 + 11 +7098.749992 + 21 +4298.293558 + 31 +0.0 + 0 +LINE + 5 +2FE + 8 +0 + 62 + 0 + 10 +7042.499992 + 20 +4395.721416 + 30 +0.0 + 11 +7014.374992 + 21 +4444.435345 + 31 +0.0 + 0 +LINE + 5 +2FF + 8 +0 + 62 + 0 + 10 +7211.249992 + 20 +4200.8657 + 30 +0.0 + 11 +7183.124992 + 21 +4249.579629 + 31 +0.0 + 0 +LINE + 5 +300 + 8 +0 + 62 + 0 + 10 +7126.874992 + 20 +4347.007487 + 30 +0.0 + 11 +7098.749992 + 21 +4395.721416 + 31 +0.0 + 0 +LINE + 5 +301 + 8 +0 + 62 + 0 + 10 +7272.122008 + 20 +4192.860132 + 30 +0.0 + 11 +7267.499992 + 21 +4200.8657 + 31 +0.0 + 0 +LINE + 5 +302 + 8 +0 + 62 + 0 + 10 +7211.249992 + 20 +4298.293558 + 30 +0.0 + 11 +7183.124992 + 21 +4347.007487 + 31 +0.0 + 0 +LINE + 5 +303 + 8 +0 + 62 + 0 + 10 +7126.874992 + 20 +4444.435345 + 30 +0.0 + 11 +7098.916927 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +304 + 8 +0 + 62 + 0 + 10 +7295.624991 + 20 +4249.579629 + 30 +0.0 + 11 +7267.499991 + 21 +4298.293558 + 31 +0.0 + 0 +LINE + 5 +305 + 8 +0 + 62 + 0 + 10 +7211.249991 + 20 +4395.721416 + 30 +0.0 + 11 +7183.124991 + 21 +4444.435345 + 31 +0.0 + 0 +LINE + 5 +306 + 8 +0 + 62 + 0 + 10 +7379.999991 + 20 +4200.8657 + 30 +0.0 + 11 +7351.874991 + 21 +4249.579629 + 31 +0.0 + 0 +LINE + 5 +307 + 8 +0 + 62 + 0 + 10 +7295.624991 + 20 +4347.007487 + 30 +0.0 + 11 +7267.499991 + 21 +4395.721416 + 31 +0.0 + 0 +LINE + 5 +308 + 8 +0 + 62 + 0 + 10 +7440.872007 + 20 +4192.860132 + 30 +0.0 + 11 +7436.249991 + 21 +4200.8657 + 31 +0.0 + 0 +LINE + 5 +309 + 8 +0 + 62 + 0 + 10 +7379.999991 + 20 +4298.293558 + 30 +0.0 + 11 +7351.874991 + 21 +4347.007487 + 31 +0.0 + 0 +LINE + 5 +30A + 8 +0 + 62 + 0 + 10 +7295.624991 + 20 +4444.435344 + 30 +0.0 + 11 +7267.666927 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +30B + 8 +0 + 62 + 0 + 10 +7464.374991 + 20 +4249.579629 + 30 +0.0 + 11 +7436.249991 + 21 +4298.293557 + 31 +0.0 + 0 +LINE + 5 +30C + 8 +0 + 62 + 0 + 10 +7379.999991 + 20 +4395.721415 + 30 +0.0 + 11 +7351.874991 + 21 +4444.435344 + 31 +0.0 + 0 +LINE + 5 +30D + 8 +0 + 62 + 0 + 10 +7548.749991 + 20 +4200.865699 + 30 +0.0 + 11 +7520.624991 + 21 +4249.579628 + 31 +0.0 + 0 +LINE + 5 +30E + 8 +0 + 62 + 0 + 10 +7464.374991 + 20 +4347.007486 + 30 +0.0 + 11 +7436.249991 + 21 +4395.721415 + 31 +0.0 + 0 +LINE + 5 +30F + 8 +0 + 62 + 0 + 10 +7609.622007 + 20 +4192.860132 + 30 +0.0 + 11 +7604.99999 + 21 +4200.865699 + 31 +0.0 + 0 +LINE + 5 +310 + 8 +0 + 62 + 0 + 10 +7548.74999 + 20 +4298.293557 + 30 +0.0 + 11 +7520.62499 + 21 +4347.007486 + 31 +0.0 + 0 +LINE + 5 +311 + 8 +0 + 62 + 0 + 10 +7464.37499 + 20 +4444.435344 + 30 +0.0 + 11 +7436.416926 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +312 + 8 +0 + 62 + 0 + 10 +7633.12499 + 20 +4249.579628 + 30 +0.0 + 11 +7604.99999 + 21 +4298.293557 + 31 +0.0 + 0 +LINE + 5 +313 + 8 +0 + 62 + 0 + 10 +7548.74999 + 20 +4395.721415 + 30 +0.0 + 11 +7520.62499 + 21 +4444.435344 + 31 +0.0 + 0 +LINE + 5 +314 + 8 +0 + 62 + 0 + 10 +7717.49999 + 20 +4200.865699 + 30 +0.0 + 11 +7689.37499 + 21 +4249.579628 + 31 +0.0 + 0 +LINE + 5 +315 + 8 +0 + 62 + 0 + 10 +7633.12499 + 20 +4347.007486 + 30 +0.0 + 11 +7604.99999 + 21 +4395.721415 + 31 +0.0 + 0 +LINE + 5 +316 + 8 +0 + 62 + 0 + 10 +7778.372006 + 20 +4192.860132 + 30 +0.0 + 11 +7773.74999 + 21 +4200.865699 + 31 +0.0 + 0 +LINE + 5 +317 + 8 +0 + 62 + 0 + 10 +7717.49999 + 20 +4298.293557 + 30 +0.0 + 11 +7689.37499 + 21 +4347.007486 + 31 +0.0 + 0 +LINE + 5 +318 + 8 +0 + 62 + 0 + 10 +7633.12499 + 20 +4444.435344 + 30 +0.0 + 11 +7605.166925 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +319 + 8 +0 + 62 + 0 + 10 +7801.87499 + 20 +4249.579628 + 30 +0.0 + 11 +7773.74999 + 21 +4298.293557 + 31 +0.0 + 0 +LINE + 5 +31A + 8 +0 + 62 + 0 + 10 +7717.49999 + 20 +4395.721415 + 30 +0.0 + 11 +7689.37499 + 21 +4444.435344 + 31 +0.0 + 0 +LINE + 5 +31B + 8 +0 + 62 + 0 + 10 +7886.249989 + 20 +4200.865699 + 30 +0.0 + 11 +7858.124989 + 21 +4249.579628 + 31 +0.0 + 0 +LINE + 5 +31C + 8 +0 + 62 + 0 + 10 +7801.874989 + 20 +4347.007486 + 30 +0.0 + 11 +7773.749989 + 21 +4395.721415 + 31 +0.0 + 0 +LINE + 5 +31D + 8 +0 + 62 + 0 + 10 +7947.122005 + 20 +4192.860132 + 30 +0.0 + 11 +7942.499989 + 21 +4200.865699 + 31 +0.0 + 0 +LINE + 5 +31E + 8 +0 + 62 + 0 + 10 +7886.249989 + 20 +4298.293557 + 30 +0.0 + 11 +7858.124989 + 21 +4347.007486 + 31 +0.0 + 0 +LINE + 5 +31F + 8 +0 + 62 + 0 + 10 +7801.874989 + 20 +4444.435344 + 30 +0.0 + 11 +7773.916924 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +320 + 8 +0 + 62 + 0 + 10 +7970.624989 + 20 +4249.579628 + 30 +0.0 + 11 +7942.499989 + 21 +4298.293557 + 31 +0.0 + 0 +LINE + 5 +321 + 8 +0 + 62 + 0 + 10 +7886.249989 + 20 +4395.721414 + 30 +0.0 + 11 +7858.124989 + 21 +4444.435343 + 31 +0.0 + 0 +LINE + 5 +322 + 8 +0 + 62 + 0 + 10 +8054.999989 + 20 +4200.865699 + 30 +0.0 + 11 +8026.874989 + 21 +4249.579627 + 31 +0.0 + 0 +LINE + 5 +323 + 8 +0 + 62 + 0 + 10 +7970.624989 + 20 +4347.007485 + 30 +0.0 + 11 +7942.499989 + 21 +4395.721414 + 31 +0.0 + 0 +LINE + 5 +324 + 8 +0 + 62 + 0 + 10 +8115.872004 + 20 +4192.860132 + 30 +0.0 + 11 +8111.249989 + 21 +4200.865698 + 31 +0.0 + 0 +LINE + 5 +325 + 8 +0 + 62 + 0 + 10 +8054.999989 + 20 +4298.293556 + 30 +0.0 + 11 +8026.874989 + 21 +4347.007485 + 31 +0.0 + 0 +LINE + 5 +326 + 8 +0 + 62 + 0 + 10 +7970.624989 + 20 +4444.435343 + 30 +0.0 + 11 +7942.666924 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +327 + 8 +0 + 62 + 0 + 10 +8139.374989 + 20 +4249.579627 + 30 +0.0 + 11 +8111.249989 + 21 +4298.293556 + 31 +0.0 + 0 +LINE + 5 +328 + 8 +0 + 62 + 0 + 10 +8054.999989 + 20 +4395.721414 + 30 +0.0 + 11 +8026.874989 + 21 +4444.435343 + 31 +0.0 + 0 +LINE + 5 +329 + 8 +0 + 62 + 0 + 10 +8223.749988 + 20 +4200.865698 + 30 +0.0 + 11 +8195.624988 + 21 +4249.579627 + 31 +0.0 + 0 +LINE + 5 +32A + 8 +0 + 62 + 0 + 10 +8139.374988 + 20 +4347.007485 + 30 +0.0 + 11 +8111.249988 + 21 +4395.721414 + 31 +0.0 + 0 +LINE + 5 +32B + 8 +0 + 62 + 0 + 10 +8284.622004 + 20 +4192.860132 + 30 +0.0 + 11 +8279.999988 + 21 +4200.865698 + 31 +0.0 + 0 +LINE + 5 +32C + 8 +0 + 62 + 0 + 10 +8223.749988 + 20 +4298.293556 + 30 +0.0 + 11 +8195.624988 + 21 +4347.007485 + 31 +0.0 + 0 +LINE + 5 +32D + 8 +0 + 62 + 0 + 10 +8139.374988 + 20 +4444.435343 + 30 +0.0 + 11 +8111.416923 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +32E + 8 +0 + 62 + 0 + 10 +8308.124988 + 20 +4249.579627 + 30 +0.0 + 11 +8279.999988 + 21 +4298.293556 + 31 +0.0 + 0 +LINE + 5 +32F + 8 +0 + 62 + 0 + 10 +8223.749988 + 20 +4395.721414 + 30 +0.0 + 11 +8195.624988 + 21 +4444.435343 + 31 +0.0 + 0 +LINE + 5 +330 + 8 +0 + 62 + 0 + 10 +8392.499988 + 20 +4200.865698 + 30 +0.0 + 11 +8364.374988 + 21 +4249.579627 + 31 +0.0 + 0 +LINE + 5 +331 + 8 +0 + 62 + 0 + 10 +8308.124988 + 20 +4347.007485 + 30 +0.0 + 11 +8279.999988 + 21 +4395.721414 + 31 +0.0 + 0 +LINE + 5 +332 + 8 +0 + 62 + 0 + 10 +8453.372003 + 20 +4192.860132 + 30 +0.0 + 11 +8448.749988 + 21 +4200.865698 + 31 +0.0 + 0 +LINE + 5 +333 + 8 +0 + 62 + 0 + 10 +8392.499988 + 20 +4298.293556 + 30 +0.0 + 11 +8364.374988 + 21 +4347.007485 + 31 +0.0 + 0 +LINE + 5 +334 + 8 +0 + 62 + 0 + 10 +8308.124988 + 20 +4444.435343 + 30 +0.0 + 11 +8280.166922 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +335 + 8 +0 + 62 + 0 + 10 +8476.874987 + 20 +4249.579627 + 30 +0.0 + 11 +8448.749987 + 21 +4298.293556 + 31 +0.0 + 0 +LINE + 5 +336 + 8 +0 + 62 + 0 + 10 +8392.499987 + 20 +4395.721414 + 30 +0.0 + 11 +8364.374987 + 21 +4444.435342 + 31 +0.0 + 0 +LINE + 5 +337 + 8 +0 + 62 + 0 + 10 +8561.249987 + 20 +4200.865698 + 30 +0.0 + 11 +8533.124987 + 21 +4249.579627 + 31 +0.0 + 0 +LINE + 5 +338 + 8 +0 + 62 + 0 + 10 +8476.874987 + 20 +4347.007484 + 30 +0.0 + 11 +8448.749987 + 21 +4395.721413 + 31 +0.0 + 0 +LINE + 5 +339 + 8 +0 + 62 + 0 + 10 +8622.122002 + 20 +4192.860132 + 30 +0.0 + 11 +8617.499987 + 21 +4200.865697 + 31 +0.0 + 0 +LINE + 5 +33A + 8 +0 + 62 + 0 + 10 +8561.249987 + 20 +4298.293555 + 30 +0.0 + 11 +8533.124987 + 21 +4347.007484 + 31 +0.0 + 0 +LINE + 5 +33B + 8 +0 + 62 + 0 + 10 +8476.874987 + 20 +4444.435342 + 30 +0.0 + 11 +8448.916921 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +33C + 8 +0 + 62 + 0 + 10 +8645.624987 + 20 +4249.579626 + 30 +0.0 + 11 +8617.499987 + 21 +4298.293555 + 31 +0.0 + 0 +LINE + 5 +33D + 8 +0 + 62 + 0 + 10 +8561.249987 + 20 +4395.721413 + 30 +0.0 + 11 +8533.124987 + 21 +4444.435342 + 31 +0.0 + 0 +LINE + 5 +33E + 8 +0 + 62 + 0 + 10 +8729.999987 + 20 +4200.865697 + 30 +0.0 + 11 +8701.874987 + 21 +4249.579626 + 31 +0.0 + 0 +LINE + 5 +33F + 8 +0 + 62 + 0 + 10 +8645.624987 + 20 +4347.007484 + 30 +0.0 + 11 +8617.499987 + 21 +4395.721413 + 31 +0.0 + 0 +LINE + 5 +340 + 8 +0 + 62 + 0 + 10 +8790.872001 + 20 +4192.860132 + 30 +0.0 + 11 +8786.249987 + 21 +4200.865697 + 31 +0.0 + 0 +LINE + 5 +341 + 8 +0 + 62 + 0 + 10 +8729.999987 + 20 +4298.293555 + 30 +0.0 + 11 +8701.874987 + 21 +4347.007484 + 31 +0.0 + 0 +LINE + 5 +342 + 8 +0 + 62 + 0 + 10 +8645.624987 + 20 +4444.435342 + 30 +0.0 + 11 +8617.666921 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +343 + 8 +0 + 62 + 0 + 10 +8814.374986 + 20 +4249.579626 + 30 +0.0 + 11 +8786.249986 + 21 +4298.293555 + 31 +0.0 + 0 +LINE + 5 +344 + 8 +0 + 62 + 0 + 10 +8729.999986 + 20 +4395.721413 + 30 +0.0 + 11 +8701.874986 + 21 +4444.435342 + 31 +0.0 + 0 +LINE + 5 +345 + 8 +0 + 62 + 0 + 10 +8814.374986 + 20 +4347.007484 + 30 +0.0 + 11 +8786.249986 + 21 +4395.721413 + 31 +0.0 + 0 +LINE + 5 +346 + 8 +0 + 62 + 0 + 10 +8814.374986 + 20 +4444.435342 + 30 +0.0 + 11 +8786.41692 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +347 + 8 +0 + 62 + 0 + 10 +6869.127965 + 20 +4192.860132 + 30 +0.0 + 11 +6873.749988 + 21 +4200.865712 + 31 +0.0 + 0 +LINE + 5 +348 + 8 +0 + 62 + 0 + 10 +6929.999988 + 20 +4298.29357 + 30 +0.0 + 11 +6958.124988 + 21 +4347.007498 + 31 +0.0 + 0 +LINE + 5 +349 + 8 +0 + 62 + 0 + 10 +7014.374988 + 20 +4444.435356 + 30 +0.0 + 11 +7042.333046 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +34A + 8 +0 + 62 + 0 + 10 +6845.624989 + 20 +4249.57964 + 30 +0.0 + 11 +6873.749989 + 21 +4298.293569 + 31 +0.0 + 0 +LINE + 5 +34B + 8 +0 + 62 + 0 + 10 +6929.999989 + 20 +4395.721427 + 30 +0.0 + 11 +6958.124989 + 21 +4444.435356 + 31 +0.0 + 0 +LINE + 5 +34C + 8 +0 + 62 + 0 + 10 +6761.249989 + 20 +4200.865711 + 30 +0.0 + 11 +6789.374989 + 21 +4249.57964 + 31 +0.0 + 0 +LINE + 5 +34D + 8 +0 + 62 + 0 + 10 +6845.624989 + 20 +4347.007498 + 30 +0.0 + 11 +6873.749989 + 21 +4395.721427 + 31 +0.0 + 0 +LINE + 5 +34E + 8 +0 + 62 + 0 + 10 +6700.377966 + 20 +4192.860132 + 30 +0.0 + 11 +6704.999989 + 21 +4200.865711 + 31 +0.0 + 0 +LINE + 5 +34F + 8 +0 + 62 + 0 + 10 +6761.249989 + 20 +4298.293569 + 30 +0.0 + 11 +6789.374989 + 21 +4347.007498 + 31 +0.0 + 0 +LINE + 5 +350 + 8 +0 + 62 + 0 + 10 +6845.624989 + 20 +4444.435356 + 30 +0.0 + 11 +6873.583047 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +351 + 8 +0 + 62 + 0 + 10 +6676.874989 + 20 +4249.57964 + 30 +0.0 + 11 +6704.999989 + 21 +4298.293569 + 31 +0.0 + 0 +LINE + 5 +352 + 8 +0 + 62 + 0 + 10 +6761.249989 + 20 +4395.721427 + 30 +0.0 + 11 +6789.374989 + 21 +4444.435356 + 31 +0.0 + 0 +LINE + 5 +353 + 8 +0 + 62 + 0 + 10 +6592.499989 + 20 +4200.865711 + 30 +0.0 + 11 +6620.624989 + 21 +4249.57964 + 31 +0.0 + 0 +LINE + 5 +354 + 8 +0 + 62 + 0 + 10 +6676.874989 + 20 +4347.007498 + 30 +0.0 + 11 +6704.999989 + 21 +4395.721427 + 31 +0.0 + 0 +LINE + 5 +355 + 8 +0 + 62 + 0 + 10 +6531.627967 + 20 +4192.860132 + 30 +0.0 + 11 +6536.249989 + 21 +4200.865711 + 31 +0.0 + 0 +LINE + 5 +356 + 8 +0 + 62 + 0 + 10 +6592.499989 + 20 +4298.293569 + 30 +0.0 + 11 +6620.624989 + 21 +4347.007498 + 31 +0.0 + 0 +LINE + 5 +357 + 8 +0 + 62 + 0 + 10 +6676.874989 + 20 +4444.435356 + 30 +0.0 + 11 +6704.833047 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +358 + 8 +0 + 62 + 0 + 10 +6508.12499 + 20 +4249.57964 + 30 +0.0 + 11 +6536.24999 + 21 +4298.293569 + 31 +0.0 + 0 +LINE + 5 +359 + 8 +0 + 62 + 0 + 10 +6592.49999 + 20 +4395.721427 + 30 +0.0 + 11 +6620.62499 + 21 +4444.435356 + 31 +0.0 + 0 +LINE + 5 +35A + 8 +0 + 62 + 0 + 10 +6423.74999 + 20 +4200.865711 + 30 +0.0 + 11 +6451.87499 + 21 +4249.57964 + 31 +0.0 + 0 +LINE + 5 +35B + 8 +0 + 62 + 0 + 10 +6508.12499 + 20 +4347.007498 + 30 +0.0 + 11 +6536.24999 + 21 +4395.721427 + 31 +0.0 + 0 +LINE + 5 +35C + 8 +0 + 62 + 0 + 10 +6362.877967 + 20 +4192.860132 + 30 +0.0 + 11 +6367.49999 + 21 +4200.865711 + 31 +0.0 + 0 +LINE + 5 +35D + 8 +0 + 62 + 0 + 10 +6423.74999 + 20 +4298.293569 + 30 +0.0 + 11 +6451.87499 + 21 +4347.007498 + 31 +0.0 + 0 +LINE + 5 +35E + 8 +0 + 62 + 0 + 10 +6508.12499 + 20 +4444.435355 + 30 +0.0 + 11 +6536.083048 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +35F + 8 +0 + 62 + 0 + 10 +6339.37499 + 20 +4249.579639 + 30 +0.0 + 11 +6367.49999 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +360 + 8 +0 + 62 + 0 + 10 +6423.74999 + 20 +4395.721426 + 30 +0.0 + 11 +6451.87499 + 21 +4444.435355 + 31 +0.0 + 0 +LINE + 5 +361 + 8 +0 + 62 + 0 + 10 +6254.99999 + 20 +4200.86571 + 30 +0.0 + 11 +6283.12499 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +362 + 8 +0 + 62 + 0 + 10 +6339.37499 + 20 +4347.007497 + 30 +0.0 + 11 +6367.49999 + 21 +4395.721426 + 31 +0.0 + 0 +LINE + 5 +363 + 8 +0 + 62 + 0 + 10 +6194.127968 + 20 +4192.860132 + 30 +0.0 + 11 +6198.749991 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +364 + 8 +0 + 62 + 0 + 10 +6254.999991 + 20 +4298.293568 + 30 +0.0 + 11 +6283.124991 + 21 +4347.007497 + 31 +0.0 + 0 +LINE + 5 +365 + 8 +0 + 62 + 0 + 10 +6339.374991 + 20 +4444.435355 + 30 +0.0 + 11 +6367.333049 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +366 + 8 +0 + 62 + 0 + 10 +6170.624991 + 20 +4249.579639 + 30 +0.0 + 11 +6198.749991 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +367 + 8 +0 + 62 + 0 + 10 +6254.999991 + 20 +4395.721426 + 30 +0.0 + 11 +6283.124991 + 21 +4444.435355 + 31 +0.0 + 0 +LINE + 5 +368 + 8 +0 + 62 + 0 + 10 +6086.249991 + 20 +4200.86571 + 30 +0.0 + 11 +6114.374991 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +369 + 8 +0 + 62 + 0 + 10 +6170.624991 + 20 +4347.007497 + 30 +0.0 + 11 +6198.749991 + 21 +4395.721426 + 31 +0.0 + 0 +LINE + 5 +36A + 8 +0 + 62 + 0 + 10 +6025.377969 + 20 +4192.860132 + 30 +0.0 + 11 +6029.999991 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +36B + 8 +0 + 62 + 0 + 10 +6086.249991 + 20 +4298.293568 + 30 +0.0 + 11 +6114.374991 + 21 +4347.007497 + 31 +0.0 + 0 +LINE + 5 +36C + 8 +0 + 62 + 0 + 10 +6170.624991 + 20 +4444.435355 + 30 +0.0 + 11 +6198.58305 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +36D + 8 +0 + 62 + 0 + 10 +6001.874991 + 20 +4249.579639 + 30 +0.0 + 11 +6029.999991 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +36E + 8 +0 + 62 + 0 + 10 +6086.249991 + 20 +4395.721426 + 30 +0.0 + 11 +6114.374991 + 21 +4444.435355 + 31 +0.0 + 0 +LINE + 5 +36F + 8 +0 + 62 + 0 + 10 +5917.499992 + 20 +4200.86571 + 30 +0.0 + 11 +5945.624992 + 21 +4249.579639 + 31 +0.0 + 0 +LINE + 5 +370 + 8 +0 + 62 + 0 + 10 +6001.874992 + 20 +4347.007497 + 30 +0.0 + 11 +6029.999992 + 21 +4395.721426 + 31 +0.0 + 0 +LINE + 5 +371 + 8 +0 + 62 + 0 + 10 +5856.627969 + 20 +4192.860132 + 30 +0.0 + 11 +5861.249992 + 21 +4200.86571 + 31 +0.0 + 0 +LINE + 5 +372 + 8 +0 + 62 + 0 + 10 +5917.499992 + 20 +4298.293568 + 30 +0.0 + 11 +5945.624992 + 21 +4347.007497 + 31 +0.0 + 0 +LINE + 5 +373 + 8 +0 + 62 + 0 + 10 +6001.874992 + 20 +4444.435354 + 30 +0.0 + 11 +6029.83305 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +374 + 8 +0 + 62 + 0 + 10 +5833.124992 + 20 +4249.579639 + 30 +0.0 + 11 +5861.249992 + 21 +4298.293568 + 31 +0.0 + 0 +LINE + 5 +375 + 8 +0 + 62 + 0 + 10 +5917.499992 + 20 +4395.721425 + 30 +0.0 + 11 +5945.624992 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +376 + 8 +0 + 62 + 0 + 10 +5748.749992 + 20 +4200.865709 + 30 +0.0 + 11 +5776.874992 + 21 +4249.579638 + 31 +0.0 + 0 +LINE + 5 +377 + 8 +0 + 62 + 0 + 10 +5833.124992 + 20 +4347.007496 + 30 +0.0 + 11 +5861.249992 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +378 + 8 +0 + 62 + 0 + 10 +5687.87797 + 20 +4192.860132 + 30 +0.0 + 11 +5692.499992 + 21 +4200.865709 + 31 +0.0 + 0 +LINE + 5 +379 + 8 +0 + 62 + 0 + 10 +5748.749992 + 20 +4298.293567 + 30 +0.0 + 11 +5776.874992 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +37A + 8 +0 + 62 + 0 + 10 +5833.124992 + 20 +4444.435354 + 30 +0.0 + 11 +5861.083051 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +37B + 8 +0 + 62 + 0 + 10 +5664.374992 + 20 +4249.579638 + 30 +0.0 + 11 +5692.499992 + 21 +4298.293567 + 31 +0.0 + 0 +LINE + 5 +37C + 8 +0 + 62 + 0 + 10 +5748.749992 + 20 +4395.721425 + 30 +0.0 + 11 +5776.874992 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +37D + 8 +0 + 62 + 0 + 10 +5579.999993 + 20 +4200.865709 + 30 +0.0 + 11 +5608.124993 + 21 +4249.579638 + 31 +0.0 + 0 +LINE + 5 +37E + 8 +0 + 62 + 0 + 10 +5664.374993 + 20 +4347.007496 + 30 +0.0 + 11 +5692.499993 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +37F + 8 +0 + 62 + 0 + 10 +5519.127971 + 20 +4192.860132 + 30 +0.0 + 11 +5523.749993 + 21 +4200.865709 + 31 +0.0 + 0 +LINE + 5 +380 + 8 +0 + 62 + 0 + 10 +5579.999993 + 20 +4298.293567 + 30 +0.0 + 11 +5608.124993 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +381 + 8 +0 + 62 + 0 + 10 +5664.374993 + 20 +4444.435354 + 30 +0.0 + 11 +5692.333052 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +382 + 8 +0 + 62 + 0 + 10 +5495.624993 + 20 +4249.579638 + 30 +0.0 + 11 +5523.749993 + 21 +4298.293567 + 31 +0.0 + 0 +LINE + 5 +383 + 8 +0 + 62 + 0 + 10 +5579.999993 + 20 +4395.721425 + 30 +0.0 + 11 +5608.124993 + 21 +4444.435354 + 31 +0.0 + 0 +LINE + 5 +384 + 8 +0 + 62 + 0 + 10 +5411.249993 + 20 +4200.865709 + 30 +0.0 + 11 +5439.374993 + 21 +4249.579638 + 31 +0.0 + 0 +LINE + 5 +385 + 8 +0 + 62 + 0 + 10 +5495.624993 + 20 +4347.007496 + 30 +0.0 + 11 +5523.749993 + 21 +4395.721425 + 31 +0.0 + 0 +LINE + 5 +386 + 8 +0 + 62 + 0 + 10 +5350.377972 + 20 +4192.860132 + 30 +0.0 + 11 +5354.999993 + 21 +4200.865709 + 31 +0.0 + 0 +LINE + 5 +387 + 8 +0 + 62 + 0 + 10 +5411.249993 + 20 +4298.293567 + 30 +0.0 + 11 +5439.374993 + 21 +4347.007496 + 31 +0.0 + 0 +LINE + 5 +388 + 8 +0 + 62 + 0 + 10 +5495.624993 + 20 +4444.435354 + 30 +0.0 + 11 +5523.583052 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +389 + 8 +0 + 62 + 0 + 10 +5326.874994 + 20 +4249.579638 + 30 +0.0 + 11 +5354.999994 + 21 +4298.293567 + 31 +0.0 + 0 +LINE + 5 +38A + 8 +0 + 62 + 0 + 10 +5411.249994 + 20 +4395.721424 + 30 +0.0 + 11 +5439.374994 + 21 +4444.435353 + 31 +0.0 + 0 +LINE + 5 +38B + 8 +0 + 62 + 0 + 10 +5242.499994 + 20 +4200.865709 + 30 +0.0 + 11 +5270.624994 + 21 +4249.579637 + 31 +0.0 + 0 +LINE + 5 +38C + 8 +0 + 62 + 0 + 10 +5326.874994 + 20 +4347.007495 + 30 +0.0 + 11 +5354.999994 + 21 +4395.721424 + 31 +0.0 + 0 +LINE + 5 +38D + 8 +0 + 62 + 0 + 10 +5181.627972 + 20 +4192.860132 + 30 +0.0 + 11 +5186.249994 + 21 +4200.865708 + 31 +0.0 + 0 +LINE + 5 +38E + 8 +0 + 62 + 0 + 10 +5242.499994 + 20 +4298.293566 + 30 +0.0 + 11 +5270.624994 + 21 +4347.007495 + 31 +0.0 + 0 +LINE + 5 +38F + 8 +0 + 62 + 0 + 10 +5326.874994 + 20 +4444.435353 + 30 +0.0 + 11 +5354.833053 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +390 + 8 +0 + 62 + 0 + 10 +5158.124994 + 20 +4249.579637 + 30 +0.0 + 11 +5186.249994 + 21 +4298.293566 + 31 +0.0 + 0 +LINE + 5 +391 + 8 +0 + 62 + 0 + 10 +5242.499994 + 20 +4395.721424 + 30 +0.0 + 11 +5270.624994 + 21 +4444.435353 + 31 +0.0 + 0 +LINE + 5 +392 + 8 +0 + 62 + 0 + 10 +5158.124994 + 20 +4347.007495 + 30 +0.0 + 11 +5186.249994 + 21 +4395.721424 + 31 +0.0 + 0 +LINE + 5 +393 + 8 +0 + 62 + 0 + 10 +5158.124994 + 20 +4444.435353 + 30 +0.0 + 11 +5186.083054 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +394 + 8 +0 + 62 + 0 + 10 +6929.999988 + 20 +4200.865712 + 30 +0.0 + 11 +6958.124988 + 21 +4249.579641 + 31 +0.0 + 0 +LINE + 5 +395 + 8 +0 + 62 + 0 + 10 +7014.374988 + 20 +4347.007499 + 30 +0.0 + 11 +7042.499988 + 21 +4395.721428 + 31 +0.0 + 0 +LINE + 5 +396 + 8 +0 + 62 + 0 + 10 +7014.374988 + 20 +4249.579641 + 30 +0.0 + 11 +7042.499988 + 21 +4298.29357 + 31 +0.0 + 0 +LINE + 5 +397 + 8 +0 + 62 + 0 + 10 +7098.749988 + 20 +4395.721428 + 30 +0.0 + 11 +7126.874988 + 21 +4444.435357 + 31 +0.0 + 0 +LINE + 5 +398 + 8 +0 + 62 + 0 + 10 +7037.877964 + 20 +4192.860132 + 30 +0.0 + 11 +7042.499988 + 21 +4200.865712 + 31 +0.0 + 0 +LINE + 5 +399 + 8 +0 + 62 + 0 + 10 +7098.749988 + 20 +4298.29357 + 30 +0.0 + 11 +7126.874988 + 21 +4347.007499 + 31 +0.0 + 0 +LINE + 5 +39A + 8 +0 + 62 + 0 + 10 +7183.124988 + 20 +4444.435357 + 30 +0.0 + 11 +7211.083045 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +39B + 8 +0 + 62 + 0 + 10 +7098.749988 + 20 +4200.865712 + 30 +0.0 + 11 +7126.874988 + 21 +4249.579641 + 31 +0.0 + 0 +LINE + 5 +39C + 8 +0 + 62 + 0 + 10 +7183.124988 + 20 +4347.007499 + 30 +0.0 + 11 +7211.249988 + 21 +4395.721428 + 31 +0.0 + 0 +LINE + 5 +39D + 8 +0 + 62 + 0 + 10 +7183.124987 + 20 +4249.579641 + 30 +0.0 + 11 +7211.249987 + 21 +4298.29357 + 31 +0.0 + 0 +LINE + 5 +39E + 8 +0 + 62 + 0 + 10 +7267.499987 + 20 +4395.721428 + 30 +0.0 + 11 +7295.624987 + 21 +4444.435357 + 31 +0.0 + 0 +LINE + 5 +39F + 8 +0 + 62 + 0 + 10 +7206.627964 + 20 +4192.860132 + 30 +0.0 + 11 +7211.249987 + 21 +4200.865712 + 31 +0.0 + 0 +LINE + 5 +3A0 + 8 +0 + 62 + 0 + 10 +7267.499987 + 20 +4298.29357 + 30 +0.0 + 11 +7295.624987 + 21 +4347.007499 + 31 +0.0 + 0 +LINE + 5 +3A1 + 8 +0 + 62 + 0 + 10 +7351.874987 + 20 +4444.435357 + 30 +0.0 + 11 +7379.833044 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3A2 + 8 +0 + 62 + 0 + 10 +7267.499987 + 20 +4200.865712 + 30 +0.0 + 11 +7295.624987 + 21 +4249.579641 + 31 +0.0 + 0 +LINE + 5 +3A3 + 8 +0 + 62 + 0 + 10 +7351.874987 + 20 +4347.007499 + 30 +0.0 + 11 +7379.999987 + 21 +4395.721428 + 31 +0.0 + 0 +LINE + 5 +3A4 + 8 +0 + 62 + 0 + 10 +7351.874987 + 20 +4249.579641 + 30 +0.0 + 11 +7379.999987 + 21 +4298.29357 + 31 +0.0 + 0 +LINE + 5 +3A5 + 8 +0 + 62 + 0 + 10 +7436.249987 + 20 +4395.721428 + 30 +0.0 + 11 +7464.374987 + 21 +4444.435357 + 31 +0.0 + 0 +LINE + 5 +3A6 + 8 +0 + 62 + 0 + 10 +7375.377963 + 20 +4192.860132 + 30 +0.0 + 11 +7379.999987 + 21 +4200.865713 + 31 +0.0 + 0 +LINE + 5 +3A7 + 8 +0 + 62 + 0 + 10 +7436.249987 + 20 +4298.29357 + 30 +0.0 + 11 +7464.374987 + 21 +4347.007499 + 31 +0.0 + 0 +LINE + 5 +3A8 + 8 +0 + 62 + 0 + 10 +7520.624987 + 20 +4444.435357 + 30 +0.0 + 11 +7548.583044 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3A9 + 8 +0 + 62 + 0 + 10 +7436.249987 + 20 +4200.865713 + 30 +0.0 + 11 +7464.374987 + 21 +4249.579642 + 31 +0.0 + 0 +LINE + 5 +3AA + 8 +0 + 62 + 0 + 10 +7520.624987 + 20 +4347.0075 + 30 +0.0 + 11 +7548.749987 + 21 +4395.721429 + 31 +0.0 + 0 +LINE + 5 +3AB + 8 +0 + 62 + 0 + 10 +7520.624986 + 20 +4249.579642 + 30 +0.0 + 11 +7548.749986 + 21 +4298.293571 + 31 +0.0 + 0 +LINE + 5 +3AC + 8 +0 + 62 + 0 + 10 +7604.999986 + 20 +4395.721429 + 30 +0.0 + 11 +7633.124986 + 21 +4444.435358 + 31 +0.0 + 0 +LINE + 5 +3AD + 8 +0 + 62 + 0 + 10 +7544.127962 + 20 +4192.860132 + 30 +0.0 + 11 +7548.749986 + 21 +4200.865713 + 31 +0.0 + 0 +LINE + 5 +3AE + 8 +0 + 62 + 0 + 10 +7604.999986 + 20 +4298.293571 + 30 +0.0 + 11 +7633.124986 + 21 +4347.0075 + 31 +0.0 + 0 +LINE + 5 +3AF + 8 +0 + 62 + 0 + 10 +7689.374986 + 20 +4444.435358 + 30 +0.0 + 11 +7717.333043 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3B0 + 8 +0 + 62 + 0 + 10 +7604.999986 + 20 +4200.865713 + 30 +0.0 + 11 +7633.124986 + 21 +4249.579642 + 31 +0.0 + 0 +LINE + 5 +3B1 + 8 +0 + 62 + 0 + 10 +7689.374986 + 20 +4347.0075 + 30 +0.0 + 11 +7717.499986 + 21 +4395.721429 + 31 +0.0 + 0 +LINE + 5 +3B2 + 8 +0 + 62 + 0 + 10 +7689.374986 + 20 +4249.579642 + 30 +0.0 + 11 +7717.499986 + 21 +4298.293571 + 31 +0.0 + 0 +LINE + 5 +3B3 + 8 +0 + 62 + 0 + 10 +7773.749986 + 20 +4395.721429 + 30 +0.0 + 11 +7801.874986 + 21 +4444.435358 + 31 +0.0 + 0 +LINE + 5 +3B4 + 8 +0 + 62 + 0 + 10 +7712.877961 + 20 +4192.860132 + 30 +0.0 + 11 +7717.499986 + 21 +4200.865713 + 31 +0.0 + 0 +LINE + 5 +3B5 + 8 +0 + 62 + 0 + 10 +7773.749986 + 20 +4298.293571 + 30 +0.0 + 11 +7801.874986 + 21 +4347.0075 + 31 +0.0 + 0 +LINE + 5 +3B6 + 8 +0 + 62 + 0 + 10 +7858.124986 + 20 +4444.435358 + 30 +0.0 + 11 +7886.083042 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3B7 + 8 +0 + 62 + 0 + 10 +7773.749985 + 20 +4200.865713 + 30 +0.0 + 11 +7801.874985 + 21 +4249.579642 + 31 +0.0 + 0 +LINE + 5 +3B8 + 8 +0 + 62 + 0 + 10 +7858.124985 + 20 +4347.0075 + 30 +0.0 + 11 +7886.249985 + 21 +4395.721429 + 31 +0.0 + 0 +LINE + 5 +3B9 + 8 +0 + 62 + 0 + 10 +7858.124985 + 20 +4249.579642 + 30 +0.0 + 11 +7886.249985 + 21 +4298.293571 + 31 +0.0 + 0 +LINE + 5 +3BA + 8 +0 + 62 + 0 + 10 +7942.499985 + 20 +4395.721429 + 30 +0.0 + 11 +7970.624985 + 21 +4444.435358 + 31 +0.0 + 0 +LINE + 5 +3BB + 8 +0 + 62 + 0 + 10 +7881.627961 + 20 +4192.860132 + 30 +0.0 + 11 +7886.249985 + 21 +4200.865714 + 31 +0.0 + 0 +LINE + 5 +3BC + 8 +0 + 62 + 0 + 10 +7942.499985 + 20 +4298.293571 + 30 +0.0 + 11 +7970.624985 + 21 +4347.0075 + 31 +0.0 + 0 +LINE + 5 +3BD + 8 +0 + 62 + 0 + 10 +8026.874985 + 20 +4444.435358 + 30 +0.0 + 11 +8054.833041 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3BE + 8 +0 + 62 + 0 + 10 +7942.499985 + 20 +4200.865714 + 30 +0.0 + 11 +7970.624985 + 21 +4249.579643 + 31 +0.0 + 0 +LINE + 5 +3BF + 8 +0 + 62 + 0 + 10 +8026.874985 + 20 +4347.007501 + 30 +0.0 + 11 +8054.999985 + 21 +4395.721429 + 31 +0.0 + 0 +LINE + 5 +3C0 + 8 +0 + 62 + 0 + 10 +8026.874985 + 20 +4249.579643 + 30 +0.0 + 11 +8054.999985 + 21 +4298.293572 + 31 +0.0 + 0 +LINE + 5 +3C1 + 8 +0 + 62 + 0 + 10 +8111.249985 + 20 +4395.72143 + 30 +0.0 + 11 +8139.374985 + 21 +4444.435359 + 31 +0.0 + 0 +LINE + 5 +3C2 + 8 +0 + 62 + 0 + 10 +8050.37796 + 20 +4192.860132 + 30 +0.0 + 11 +8054.999985 + 21 +4200.865714 + 31 +0.0 + 0 +LINE + 5 +3C3 + 8 +0 + 62 + 0 + 10 +8111.249985 + 20 +4298.293572 + 30 +0.0 + 11 +8139.374985 + 21 +4347.007501 + 31 +0.0 + 0 +LINE + 5 +3C4 + 8 +0 + 62 + 0 + 10 +8195.624985 + 20 +4444.435359 + 30 +0.0 + 11 +8223.583041 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3C5 + 8 +0 + 62 + 0 + 10 +8111.249984 + 20 +4200.865714 + 30 +0.0 + 11 +8139.374984 + 21 +4249.579643 + 31 +0.0 + 0 +LINE + 5 +3C6 + 8 +0 + 62 + 0 + 10 +8195.624984 + 20 +4347.007501 + 30 +0.0 + 11 +8223.749984 + 21 +4395.72143 + 31 +0.0 + 0 +LINE + 5 +3C7 + 8 +0 + 62 + 0 + 10 +8195.624984 + 20 +4249.579643 + 30 +0.0 + 11 +8223.749984 + 21 +4298.293572 + 31 +0.0 + 0 +LINE + 5 +3C8 + 8 +0 + 62 + 0 + 10 +8279.999984 + 20 +4395.72143 + 30 +0.0 + 11 +8308.124984 + 21 +4444.435359 + 31 +0.0 + 0 +LINE + 5 +3C9 + 8 +0 + 62 + 0 + 10 +8219.127959 + 20 +4192.860132 + 30 +0.0 + 11 +8223.749984 + 21 +4200.865714 + 31 +0.0 + 0 +LINE + 5 +3CA + 8 +0 + 62 + 0 + 10 +8279.999984 + 20 +4298.293572 + 30 +0.0 + 11 +8308.124984 + 21 +4347.007501 + 31 +0.0 + 0 +LINE + 5 +3CB + 8 +0 + 62 + 0 + 10 +8364.374984 + 20 +4444.435359 + 30 +0.0 + 11 +8392.33304 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3CC + 8 +0 + 62 + 0 + 10 +8279.999984 + 20 +4200.865714 + 30 +0.0 + 11 +8308.124984 + 21 +4249.579643 + 31 +0.0 + 0 +LINE + 5 +3CD + 8 +0 + 62 + 0 + 10 +8364.374984 + 20 +4347.007501 + 30 +0.0 + 11 +8392.499984 + 21 +4395.72143 + 31 +0.0 + 0 +LINE + 5 +3CE + 8 +0 + 62 + 0 + 10 +8364.374984 + 20 +4249.579643 + 30 +0.0 + 11 +8392.499984 + 21 +4298.293572 + 31 +0.0 + 0 +LINE + 5 +3CF + 8 +0 + 62 + 0 + 10 +8448.749984 + 20 +4395.72143 + 30 +0.0 + 11 +8476.874984 + 21 +4444.435359 + 31 +0.0 + 0 +LINE + 5 +3D0 + 8 +0 + 62 + 0 + 10 +8387.877958 + 20 +4192.860132 + 30 +0.0 + 11 +8392.499983 + 21 +4200.865714 + 31 +0.0 + 0 +LINE + 5 +3D1 + 8 +0 + 62 + 0 + 10 +8448.749983 + 20 +4298.293572 + 30 +0.0 + 11 +8476.874983 + 21 +4347.007501 + 31 +0.0 + 0 +LINE + 5 +3D2 + 8 +0 + 62 + 0 + 10 +8533.124983 + 20 +4444.435359 + 30 +0.0 + 11 +8561.083039 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3D3 + 8 +0 + 62 + 0 + 10 +8448.749983 + 20 +4200.865715 + 30 +0.0 + 11 +8476.874983 + 21 +4249.579644 + 31 +0.0 + 0 +LINE + 5 +3D4 + 8 +0 + 62 + 0 + 10 +8533.124983 + 20 +4347.007501 + 30 +0.0 + 11 +8561.249983 + 21 +4395.72143 + 31 +0.0 + 0 +LINE + 5 +3D5 + 8 +0 + 62 + 0 + 10 +8533.124983 + 20 +4249.579644 + 30 +0.0 + 11 +8561.249983 + 21 +4298.293573 + 31 +0.0 + 0 +LINE + 5 +3D6 + 8 +0 + 62 + 0 + 10 +8617.499983 + 20 +4395.721431 + 30 +0.0 + 11 +8645.624983 + 21 +4444.435359 + 31 +0.0 + 0 +LINE + 5 +3D7 + 8 +0 + 62 + 0 + 10 +8556.627958 + 20 +4192.860132 + 30 +0.0 + 11 +8561.249983 + 21 +4200.865715 + 31 +0.0 + 0 +LINE + 5 +3D8 + 8 +0 + 62 + 0 + 10 +8617.499983 + 20 +4298.293573 + 30 +0.0 + 11 +8645.624983 + 21 +4347.007502 + 31 +0.0 + 0 +LINE + 5 +3D9 + 8 +0 + 62 + 0 + 10 +8701.874983 + 20 +4444.43536 + 30 +0.0 + 11 +8729.833038 + 21 +4492.860132 + 31 +0.0 + 0 +LINE + 5 +3DA + 8 +0 + 62 + 0 + 10 +8617.499983 + 20 +4200.865715 + 30 +0.0 + 11 +8645.624983 + 21 +4249.579644 + 31 +0.0 + 0 +LINE + 5 +3DB + 8 +0 + 62 + 0 + 10 +8701.874983 + 20 +4347.007502 + 30 +0.0 + 11 +8729.999983 + 21 +4395.721431 + 31 +0.0 + 0 +LINE + 5 +3DC + 8 +0 + 62 + 0 + 10 +8701.874982 + 20 +4249.579644 + 30 +0.0 + 11 +8729.999982 + 21 +4298.293573 + 31 +0.0 + 0 +LINE + 5 +3DD + 8 +0 + 62 + 0 + 10 +8786.249982 + 20 +4395.721431 + 30 +0.0 + 11 +8814.374982 + 21 +4444.43536 + 31 +0.0 + 0 +LINE + 5 +3DE + 8 +0 + 62 + 0 + 10 +8725.377957 + 20 +4192.860132 + 30 +0.0 + 11 +8729.999982 + 21 +4200.865715 + 31 +0.0 + 0 +LINE + 5 +3DF + 8 +0 + 62 + 0 + 10 +8786.249982 + 20 +4298.293573 + 30 +0.0 + 11 +8814.374982 + 21 +4347.007502 + 31 +0.0 + 0 +LINE + 5 +3E0 + 8 +0 + 62 + 0 + 10 +8786.249982 + 20 +4200.865715 + 30 +0.0 + 11 +8814.374982 + 21 +4249.579644 + 31 +0.0 + 0 +ENDBLK + 5 +3E1 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D30 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D30 + 1 + + 0 +LINE + 5 +3E3 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9400.0 + 20 +4191.0 + 30 +0.0 + 11 +9400.0 + 21 +4489.0 + 31 +0.0 + 0 +INSERT + 5 +3E4 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9400.0 + 20 +4190.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +3E5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +9400.0 + 20 +4490.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3E6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9356.25 + 20 +4281.666667 + 30 +0.0 + 40 +87.5 + 1 +12 + 50 +90.0 + 72 + 1 + 11 +9312.5 + 21 +4340.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +3E7 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8840.0 + 20 +4190.0 + 30 +0.0 + 0 +POINT + 5 +3E8 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8840.0 + 20 +4490.0 + 30 +0.0 + 0 +POINT + 5 +3E9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +9400.0 + 20 +4490.0 + 30 +0.0 + 0 +ENDBLK + 5 +3EA + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D33 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D33 + 1 + + 0 +LINE + 5 +3EC + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10003.0 + 20 +4661.0 + 30 +0.0 + 11 +10003.0 + 21 +4749.0 + 31 +0.0 + 0 +INSERT + 5 +3ED + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.0 + 20 +4660.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +3EE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.0 + 20 +4750.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3EF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9959.25 + 20 +4675.833333 + 30 +0.0 + 40 +87.5 + 1 +3 + 50 +90.0 + 72 + 1 + 11 +9915.5 + 21 +4705.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +3F0 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8835.0 + 20 +4660.0 + 30 +0.0 + 0 +POINT + 5 +3F1 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8830.0 + 20 +4750.0 + 30 +0.0 + 0 +POINT + 5 +3F2 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10003.0 + 20 +4750.0 + 30 +0.0 + 0 +ENDBLK + 5 +3F3 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D34 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D34 + 1 + + 0 +LINE + 5 +3F5 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10003.0 + 20 +4751.0 + 30 +0.0 + 11 +10003.0 + 21 +4824.0 + 31 +0.0 + 0 +INSERT + 5 +3F6 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.0 + 20 +4750.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +3F7 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.0 + 20 +4825.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +3F8 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9959.25 + 20 +4758.333333 + 30 +0.0 + 40 +87.5 + 1 +3 + 50 +90.0 + 72 + 1 + 11 +9915.5 + 21 +4787.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +3F9 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8830.0 + 20 +4750.0 + 30 +0.0 + 0 +POINT + 5 +3FA + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8820.0 + 20 +4825.0 + 30 +0.0 + 0 +POINT + 5 +3FB + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10003.0 + 20 +4825.0 + 30 +0.0 + 0 +ENDBLK + 5 +3FC + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D35 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D35 + 1 + + 0 +LINE + 5 +3FE + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10003.017251 + 20 +4116.0 + 30 +0.0 + 11 +10003.017251 + 21 +4174.0 + 31 +0.0 + 0 +INSERT + 5 +3FF + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.017251 + 20 +4115.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +400 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.017251 + 20 +4175.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +401 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9959.267251 + 20 +4035.833333 + 30 +0.0 + 40 +87.5 + 1 +2 + 50 +90.0 + 72 + 1 + 11 +9915.517251 + 21 +4065.0 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +402 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8828.017251 + 20 +4115.0 + 30 +0.0 + 0 +POINT + 5 +403 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8828.017251 + 20 +4175.0 + 30 +0.0 + 0 +POINT + 5 +404 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10003.017251 + 20 +4175.0 + 30 +0.0 + 0 +ENDBLK + 5 +405 + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D37 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D37 + 1 + + 0 +LINE + 5 +407 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +10003.0 + 20 +4176.0 + 30 +0.0 + 11 +10003.0 + 21 +4659.0 + 31 +0.0 + 0 +INSERT + 5 +408 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.0 + 20 +4175.0 + 30 +0.0 + 50 +270.0 + 0 +INSERT + 5 +409 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +10003.0 + 20 +4660.0 + 30 +0.0 + 50 +90.0 + 0 +TEXT + 5 +40A + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +9959.25 + 20 +4359.166667 + 30 +0.0 + 40 +87.5 + 1 +18 + 50 +90.0 + 72 + 1 + 11 +9915.5 + 21 +4417.5 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +40B + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8825.0 + 20 +4175.0 + 30 +0.0 + 0 +POINT + 5 +40C + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +8835.0 + 20 +4660.0 + 30 +0.0 + 0 +POINT + 5 +40D + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +10003.0 + 20 +4660.0 + 30 +0.0 + 0 +ENDBLK + 5 +40E + 8 +0 + 0 +BLOCK + 8 +0 + 2 +*D39 + 70 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*D39 + 1 + + 0 +LINE + 5 +410 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3356.72129 + 20 +4461.423158 + 30 +0.0 + 11 +3309.180412 + 21 +4461.423158 + 31 +0.0 + 0 +INSERT + 5 +411 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3357.72129 + 20 +4461.423158 + 30 +0.0 + 0 +INSERT + 5 +412 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 2 +MASSHILFSLINIE + 10 +3308.180412 + 20 +4461.423158 + 30 +0.0 + 50 +180.0 + 0 +TEXT + 5 +413 + 8 +0 + 6 +BYBLOCK + 62 + 0 + 10 +3225.416667 + 20 +4505.173158 + 30 +0.0 + 40 +87.5 + 1 +1 + 72 + 1 + 11 +3240.0 + 21 +4548.923158 + 31 +0.0 + 73 + 2 + 0 +POINT + 5 +414 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3357.72129 + 20 +4496.083823 + 30 +0.0 + 0 +POINT + 5 +415 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3308.180412 + 20 +4496.083823 + 30 +0.0 + 0 +POINT + 5 +416 + 8 +DEFPOINTS + 6 +BYBLOCK + 62 + 0 + 10 +3308.180412 + 20 +4461.423158 + 30 +0.0 + 0 +ENDBLK + 5 +417 + 8 +0 + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +POLYLINE + 5 +418 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13F5 + 8 +0 + 10 +500.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +13F6 + 8 +0 + 10 +20900.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +13F7 + 8 +0 + 10 +20900.0 + 20 +14725.0 + 30 +0.0 + 0 +VERTEX + 5 +13F8 + 8 +0 + 10 +500.0 + 20 +14725.0 + 30 +0.0 + 0 +SEQEND + 5 +13F9 + 8 +0 + 0 +POLYLINE + 5 +41E + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13FA + 8 +0 + 10 +20900.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +13FB + 8 +0 + 10 +16275.0 + 20 +1500.0 + 30 +0.0 + 0 +VERTEX + 5 +13FC + 8 +0 + 10 +16275.0 + 20 +125.0 + 30 +0.0 + 0 +SEQEND + 5 +13FD + 8 +0 + 0 +POLYLINE + 5 +423 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +13FE + 8 +0 + 10 +18650.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +13FF + 8 +0 + 10 +18650.0 + 20 +1495.0 + 30 +0.0 + 0 +SEQEND + 5 +1400 + 8 +0 + 0 +POLYLINE + 5 +427 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1401 + 8 +0 + 10 +17525.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1402 + 8 +0 + 10 +17525.0 + 20 +1500.0 + 30 +0.0 + 0 +SEQEND + 5 +1403 + 8 +0 + 0 +POLYLINE + 5 +42B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1404 + 8 +0 + 10 +17525.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +1405 + 8 +0 + 10 +20900.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +1406 + 8 +0 + 0 +POLYLINE + 5 +42F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1407 + 8 +0 + 10 +17525.0 + 20 +1125.0 + 30 +0.0 + 0 +VERTEX + 5 +1408 + 8 +0 + 10 +20900.0 + 20 +1125.0 + 30 +0.0 + 0 +SEQEND + 5 +1409 + 8 +0 + 0 +POLYLINE + 5 +433 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +140A + 8 +0 + 10 +17525.0 + 20 +250.0 + 30 +0.0 + 0 +VERTEX + 5 +140B + 8 +0 + 10 +16275.0 + 20 +250.0 + 30 +0.0 + 0 +SEQEND + 5 +140C + 8 +0 + 0 +POLYLINE + 5 +437 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +140D + 8 +0 + 10 +17525.0 + 20 +375.0 + 30 +0.0 + 0 +VERTEX + 5 +140E + 8 +0 + 10 +16275.0 + 20 +375.0 + 30 +0.0 + 0 +SEQEND + 5 +140F + 8 +0 + 0 +POLYLINE + 5 +43B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1410 + 8 +0 + 10 +17525.0 + 20 +500.0 + 30 +0.0 + 0 +VERTEX + 5 +1411 + 8 +0 + 10 +16275.0 + 20 +500.0 + 30 +0.0 + 0 +SEQEND + 5 +1412 + 8 +0 + 0 +POLYLINE + 5 +43F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1413 + 8 +0 + 10 +17525.0 + 20 +625.0 + 30 +0.0 + 0 +VERTEX + 5 +1414 + 8 +0 + 10 +16275.0 + 20 +625.0 + 30 +0.0 + 0 +SEQEND + 5 +1415 + 8 +0 + 0 +POLYLINE + 5 +443 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1416 + 8 +0 + 10 +17525.0 + 20 +750.0 + 30 +0.0 + 0 +VERTEX + 5 +1417 + 8 +0 + 10 +16275.0 + 20 +750.0 + 30 +0.0 + 0 +SEQEND + 5 +1418 + 8 +0 + 0 +POLYLINE + 5 +447 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1419 + 8 +0 + 10 +17525.0 + 20 +875.0 + 30 +0.0 + 0 +VERTEX + 5 +141A + 8 +0 + 10 +16275.0 + 20 +875.0 + 30 +0.0 + 0 +SEQEND + 5 +141B + 8 +0 + 0 +POLYLINE + 5 +44B + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +141C + 8 +0 + 10 +17525.0 + 20 +1000.0 + 30 +0.0 + 0 +VERTEX + 5 +141D + 8 +0 + 10 +16275.0 + 20 +1000.0 + 30 +0.0 + 0 +SEQEND + 5 +141E + 8 +0 + 0 +POLYLINE + 5 +44F + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +141F + 8 +0 + 10 +17525.0 + 20 +1125.0 + 30 +0.0 + 0 +VERTEX + 5 +1420 + 8 +0 + 10 +16275.0 + 20 +1125.0 + 30 +0.0 + 0 +SEQEND + 5 +1421 + 8 +0 + 0 +POLYLINE + 5 +453 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1422 + 8 +0 + 10 +18650.0 + 20 +1375.0 + 30 +0.0 + 0 +VERTEX + 5 +1423 + 8 +0 + 10 +20901.604101 + 20 +1375.0 + 30 +0.0 + 0 +SEQEND + 5 +1424 + 8 +0 + 0 +TEXT + 5 +457 + 8 +LEGENDE-35 + 10 +18745.266644 + 20 +1210.264338 + 30 +0.0 + 40 +87.5 + 1 +MASSTAB 1:10 + 0 +TEXT + 5 +458 + 8 +LEGENDE-35 + 10 +18730.0 + 20 +260.0 + 30 +0.0 + 40 +87.5 + 1 +Name + 0 +TEXT + 5 +459 + 8 +LEGENDE-35 + 10 +17705.0 + 20 +225.0 + 30 +0.0 + 40 +87.5 + 1 +001 + 0 +POLYLINE + 5 +45A + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +17.5 + 41 +17.5 + 0 +VERTEX + 5 +1425 + 8 +0 + 10 +20525.0 + 20 +125.0 + 30 +0.0 + 0 +VERTEX + 5 +1426 + 8 +0 + 10 +20525.0 + 20 +495.0 + 30 +0.0 + 0 +SEQEND + 5 +1427 + 8 +0 + 0 +TEXT + 5 +45E + 8 +LEGENDE-35 + 10 +20580.0 + 20 +365.0 + 30 +0.0 + 40 +87.5 + 1 +Blatt + 41 +0.75 + 0 +POLYLINE + 5 +45F + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1428 + 8 +PE-FOLIE + 10 +5741.85938 + 20 +9370.360132 + 30 +0.0 + 0 +VERTEX + 5 +1429 + 8 +PE-FOLIE + 10 +6451.85938 + 20 +9370.360132 + 30 +0.0 + 0 +SEQEND + 5 +142A + 8 +PE-FOLIE + 0 +POLYLINE + 5 +463 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +142B + 8 +HOLZ + 10 +5770.60938 + 20 +9390.360132 + 30 +0.0 + 0 +VERTEX + 5 +142C + 8 +HOLZ + 10 +6220.60938 + 20 +9390.360132 + 30 +0.0 + 0 +VERTEX + 5 +142D + 8 +HOLZ + 10 +6220.60938 + 20 +9840.360132 + 30 +0.0 + 0 +VERTEX + 5 +142E + 8 +HOLZ + 10 +5770.60938 + 20 +9840.360132 + 30 +0.0 + 0 +SEQEND + 5 +142F + 8 +HOLZ + 0 +POLYLINE + 5 +469 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +46A + 8 +HOLZ + 10 +6121.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +46B + 8 +HOLZ + 10 +6121.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +46C + 8 +HOLZ + 10 +6119.470475 + 20 +9414.504988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +46D + 8 +HOLZ + 10 +6118.561831 + 20 +9434.501562 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +46E + 8 +HOLZ + 10 +6118.921982 + 20 +9450.868185 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +46F + 8 +HOLZ + 10 +6120.339462 + 20 +9464.123187 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +470 + 8 +HOLZ + 10 +6122.602805 + 20 +9474.784896 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +471 + 8 +HOLZ + 10 +6125.500544 + 20 +9483.371642 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +472 + 8 +HOLZ + 10 +6128.821214 + 20 +9490.401756 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +473 + 8 +HOLZ + 10 +6132.353349 + 20 +9496.393566 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +474 + 8 +HOLZ + 10 +6135.928468 + 20 +9501.788299 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +475 + 8 +HOLZ + 10 +6139.550036 + 20 +9506.71877 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +476 + 8 +HOLZ + 10 +6143.264505 + 20 +9511.24069 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +477 + 8 +HOLZ + 10 +6147.118326 + 20 +9515.409771 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +478 + 8 +HOLZ + 10 +6151.157949 + 20 +9519.281725 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +479 + 8 +HOLZ + 10 +6155.429825 + 20 +9522.912262 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +47A + 8 +HOLZ + 10 +6159.980407 + 20 +9526.357096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +47B + 8 +HOLZ + 10 +6164.856144 + 20 +9529.671936 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +47C + 8 +HOLZ + 10 +6170.095123 + 20 +9532.897189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +47D + 8 +HOLZ + 10 +6175.701977 + 20 +9536.012043 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +47E + 8 +HOLZ + 10 +6181.672971 + 20 +9538.980379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +47F + 8 +HOLZ + 10 +6188.004371 + 20 +9541.766077 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +480 + 8 +HOLZ + 10 +6194.692446 + 20 +9544.33302 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +481 + 8 +HOLZ + 10 +6201.733461 + 20 +9546.64509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +482 + 8 +HOLZ + 10 +6209.123684 + 20 +9548.666166 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +483 + 8 +HOLZ + 10 +6216.85938 + 20 +9550.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +484 + 8 +HOLZ + 10 +6113.327314 + 20 +9460.738192 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +485 + 8 +HOLZ + 10 +6132.353367 + 20 +9501.939953 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +486 + 8 +HOLZ + 10 +6160.892338 + 20 +9530.46427 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +487 + 8 +HOLZ + 10 +6195.773542 + 20 +9546.311143 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +488 + 8 +HOLZ + 10 +6216.85938 + 20 +9550.360132 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +489 + 8 +HOLZ + 0 +POLYLINE + 5 +48A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +48B + 8 +HOLZ + 10 +6026.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +48C + 8 +HOLZ + 10 +6026.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +48D + 8 +HOLZ + 10 +6028.683878 + 20 +9415.766253 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +48E + 8 +HOLZ + 10 +6031.079611 + 20 +9437.163364 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +48F + 8 +HOLZ + 10 +6033.954356 + 20 +9455.060511 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +490 + 8 +HOLZ + 10 +6037.215889 + 20 +9469.966739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +491 + 8 +HOLZ + 10 +6040.771989 + 20 +9482.391095 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +492 + 8 +HOLZ + 10 +6044.530432 + 20 +9492.842625 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +493 + 8 +HOLZ + 10 +6048.398997 + 20 +9501.830374 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +494 + 8 +HOLZ + 10 +6052.285459 + 20 +9509.86339 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +495 + 8 +HOLZ + 10 +6056.117612 + 20 +9517.371034 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +496 + 8 +HOLZ + 10 +6059.903311 + 20 +9524.46394 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +497 + 8 +HOLZ + 10 +6063.670428 + 20 +9531.173059 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +498 + 8 +HOLZ + 10 +6067.446832 + 20 +9537.529339 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +499 + 8 +HOLZ + 10 +6071.260396 + 20 +9543.563732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +49A + 8 +HOLZ + 10 +6075.138989 + 20 +9549.307188 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +49B + 8 +HOLZ + 10 +6079.110483 + 20 +9554.790656 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +49C + 8 +HOLZ + 10 +6083.202749 + 20 +9560.045086 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +49D + 8 +HOLZ + 10 +6087.440561 + 20 +9565.10143 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +49E + 8 +HOLZ + 10 +6091.836305 + 20 +9569.990637 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +49F + 8 +HOLZ + 10 +6096.399271 + 20 +9574.743659 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A0 + 8 +HOLZ + 10 +6101.138748 + 20 +9579.391446 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A1 + 8 +HOLZ + 10 +6106.064026 + 20 +9583.96495 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A2 + 8 +HOLZ + 10 +6111.184395 + 20 +9588.495122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A3 + 8 +HOLZ + 10 +6116.509143 + 20 +9593.012912 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A4 + 8 +HOLZ + 10 +6122.047561 + 20 +9597.549271 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A5 + 8 +HOLZ + 10 +6127.900145 + 20 +9602.129559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A6 + 8 +HOLZ + 10 +6134.532214 + 20 +9606.756772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A7 + 8 +HOLZ + 10 +6142.500298 + 20 +9611.428315 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A8 + 8 +HOLZ + 10 +6152.360922 + 20 +9616.141591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4A9 + 8 +HOLZ + 10 +6164.670616 + 20 +9620.894007 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4AA + 8 +HOLZ + 10 +6179.985905 + 20 +9625.682966 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4AB + 8 +HOLZ + 10 +6198.863317 + 20 +9630.505873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4AC + 8 +HOLZ + 10 +6221.85938 + 20 +9635.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4AD + 8 +HOLZ + 10 +6030.881087 + 20 +9463.907621 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4AE + 8 +HOLZ + 10 +6053.078256 + 20 +9514.617397 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4AF + 8 +HOLZ + 10 +6081.617227 + 20 +9562.158016 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4B0 + 8 +HOLZ + 10 +6119.669332 + 20 +9597.021055 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4B1 + 8 +HOLZ + 10 +6154.55032 + 20 +9622.375943 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4B2 + 8 +HOLZ + 10 +6221.85938 + 20 +9635.360132 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +4B3 + 8 +HOLZ + 0 +POLYLINE + 5 +4B4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +4B5 + 8 +HOLZ + 10 +5921.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4B6 + 8 +HOLZ + 10 +5921.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4B7 + 8 +HOLZ + 10 +5930.304183 + 20 +9432.854706 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4B8 + 8 +HOLZ + 10 +5938.173042 + 20 +9467.79641 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4B9 + 8 +HOLZ + 10 +5945.597782 + 20 +9496.161648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4BA + 8 +HOLZ + 10 +5952.710227 + 20 +9518.926818 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4BB + 8 +HOLZ + 10 +5959.642202 + 20 +9537.068323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4BC + 8 +HOLZ + 10 +5966.525532 + 20 +9551.562564 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4BD + 8 +HOLZ + 10 +5973.492042 + 20 +9563.38594 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4BE + 8 +HOLZ + 10 +5980.673556 + 20 +9573.514854 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4BF + 8 +HOLZ + 10 +5988.157219 + 20 +9582.775868 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C0 + 8 +HOLZ + 10 +5995.851457 + 20 +9591.396197 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C1 + 8 +HOLZ + 10 +6003.620015 + 20 +9599.453219 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C2 + 8 +HOLZ + 10 +6011.326639 + 20 +9607.024312 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C3 + 8 +HOLZ + 10 +6018.835073 + 20 +9614.186852 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C4 + 8 +HOLZ + 10 +6026.009064 + 20 +9621.018218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C5 + 8 +HOLZ + 10 +6032.712358 + 20 +9627.595786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C6 + 8 +HOLZ + 10 +6038.808699 + 20 +9633.996934 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C7 + 8 +HOLZ + 10 +6044.206219 + 20 +9640.276858 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C8 + 8 +HOLZ + 10 +6048.990594 + 20 +9646.402028 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4C9 + 8 +HOLZ + 10 +6053.291885 + 20 +9652.316733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4CA + 8 +HOLZ + 10 +6057.240153 + 20 +9657.965262 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4CB + 8 +HOLZ + 10 +6060.965461 + 20 +9663.291903 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4CC + 8 +HOLZ + 10 +6064.59787 + 20 +9668.240945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4CD + 8 +HOLZ + 10 +6068.267441 + 20 +9672.756676 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4CE + 8 +HOLZ + 10 +6072.104237 + 20 +9676.783387 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4CF + 8 +HOLZ + 10 +6076.215608 + 20 +9680.29322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D0 + 8 +HOLZ + 10 +6080.61807 + 20 +9683.369742 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D1 + 8 +HOLZ + 10 +6085.305429 + 20 +9686.124377 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D2 + 8 +HOLZ + 10 +6090.27149 + 20 +9688.668547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D3 + 8 +HOLZ + 10 +6095.510059 + 20 +9691.113674 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D4 + 8 +HOLZ + 10 +6101.014941 + 20 +9693.571182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D5 + 8 +HOLZ + 10 +6106.779942 + 20 +9696.152492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D6 + 8 +HOLZ + 10 +6112.798867 + 20 +9698.969027 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D7 + 8 +HOLZ + 10 +6119.056749 + 20 +9702.112092 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D8 + 8 +HOLZ + 10 +6125.503525 + 20 +9705.59252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4D9 + 8 +HOLZ + 10 +6132.08036 + 20 +9709.401025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4DA + 8 +HOLZ + 10 +6138.728417 + 20 +9713.528324 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4DB + 8 +HOLZ + 10 +6145.388862 + 20 +9717.965129 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4DC + 8 +HOLZ + 10 +6152.002858 + 20 +9722.702158 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4DD + 8 +HOLZ + 10 +6158.51157 + 20 +9727.730124 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4DE + 8 +HOLZ + 10 +6164.856162 + 20 +9733.039743 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4DF + 8 +HOLZ + 10 +6171.00756 + 20 +9738.642817 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E0 + 8 +HOLZ + 10 +6177.055739 + 20 +9744.635506 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E1 + 8 +HOLZ + 10 +6183.120436 + 20 +9751.135056 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E2 + 8 +HOLZ + 10 +6189.321387 + 20 +9758.258713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E3 + 8 +HOLZ + 10 +6195.778329 + 20 +9766.123724 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E4 + 8 +HOLZ + 10 +6202.610998 + 20 +9774.847335 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E5 + 8 +HOLZ + 10 +6209.939131 + 20 +9784.546794 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E6 + 8 +HOLZ + 10 +6217.882464 + 20 +9795.339347 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4E7 + 8 +HOLZ + 10 +5945.263958 + 20 +9514.617397 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4E8 + 8 +HOLZ + 10 +5976.974046 + 20 +9581.174182 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4E9 + 8 +HOLZ + 10 +6046.736239 + 20 +9635.053387 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4EA + 8 +HOLZ + 10 +6068.933192 + 20 +9682.59387 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4EB + 8 +HOLZ + 10 +6110.156414 + 20 +9695.27145 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4EC + 8 +HOLZ + 10 +6167.234355 + 20 +9730.134489 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4ED + 8 +HOLZ + 10 +6195.773542 + 20 +9764.997528 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4EE + 8 +HOLZ + 10 +6217.882464 + 20 +9795.339347 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +4EF + 8 +HOLZ + 0 +POLYLINE + 5 +4F0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +4F1 + 8 +HOLZ + 10 +5876.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +4F2 + 8 +HOLZ + 10 +5876.85938 + 20 +9390.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F3 + 8 +HOLZ + 10 +5881.449573 + 20 +9440.601711 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F4 + 8 +HOLZ + 10 +5886.652796 + 20 +9482.231899 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F5 + 8 +HOLZ + 10 +5892.360239 + 20 +9516.357091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F6 + 8 +HOLZ + 10 +5898.463091 + 20 +9544.083684 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F7 + 8 +HOLZ + 10 +5904.852541 + 20 +9566.518071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F8 + 8 +HOLZ + 10 +5911.419781 + 20 +9584.766649 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4F9 + 8 +HOLZ + 10 +5918.055998 + 20 +9599.935812 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4FA + 8 +HOLZ + 10 +5924.652383 + 20 +9613.131957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4FB + 8 +HOLZ + 10 +5931.117229 + 20 +9625.288943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4FC + 8 +HOLZ + 10 +5937.427238 + 20 +9636.650492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4FD + 8 +HOLZ + 10 +5943.57622 + 20 +9647.28779 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4FE + 8 +HOLZ + 10 +5949.557981 + 20 +9657.272026 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +4FF + 8 +HOLZ + 10 +5955.366328 + 20 +9666.674384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +500 + 8 +HOLZ + 10 +5960.995068 + 20 +9675.566053 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +501 + 8 +HOLZ + 10 +5966.43801 + 20 +9684.018218 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +502 + 8 +HOLZ + 10 +5971.688959 + 20 +9692.102067 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +503 + 8 +HOLZ + 10 +5976.758755 + 20 +9699.887238 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +504 + 8 +HOLZ + 10 +5981.726363 + 20 +9707.437182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +505 + 8 +HOLZ + 10 +5986.68778 + 20 +9714.813801 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +506 + 8 +HOLZ + 10 +5991.739 + 20 +9722.078996 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +507 + 8 +HOLZ + 10 +5996.976022 + 20 +9729.29467 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +508 + 8 +HOLZ + 10 +6002.49484 + 20 +9736.522725 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +509 + 8 +HOLZ + 10 +6008.391453 + 20 +9743.825063 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +50A + 8 +HOLZ + 10 +6014.761855 + 20 +9751.263585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +50B + 8 +HOLZ + 10 +6021.711326 + 20 +9758.929289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +50C + 8 +HOLZ + 10 +6029.382274 + 20 +9767.029544 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +50D + 8 +HOLZ + 10 +6037.92639 + 20 +9775.800814 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +50E + 8 +HOLZ + 10 +6047.495364 + 20 +9785.479562 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +50F + 8 +HOLZ + 10 +6058.240886 + 20 +9796.302254 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +510 + 8 +HOLZ + 10 +6070.314647 + 20 +9808.505353 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +511 + 8 +HOLZ + 10 +6083.868337 + 20 +9822.325322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +512 + 8 +HOLZ + 10 +6099.053648 + 20 +9837.998627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +513 + 8 +HOLZ + 10 +5888.1858 + 20 +9536.802992 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +514 + 8 +HOLZ + 10 +5926.237906 + 20 +9622.375943 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +515 + 8 +HOLZ + 10 +5973.802929 + 20 +9695.27145 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +516 + 8 +HOLZ + 10 +6008.684134 + 20 +9749.150655 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +517 + 8 +HOLZ + 10 +6056.249157 + 20 +9793.521845 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +518 + 8 +HOLZ + 10 +6099.053648 + 20 +9837.998627 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +519 + 8 +HOLZ + 0 +POLYLINE + 5 +51A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +51B + 8 +HOLZ + 10 +5771.85938 + 20 +9450.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +51C + 8 +HOLZ + 10 +5771.85938 + 20 +9450.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +51D + 8 +HOLZ + 10 +5793.44836 + 20 +9495.445046 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +51E + 8 +HOLZ + 10 +5811.669743 + 20 +9533.213 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +51F + 8 +HOLZ + 10 +5826.926755 + 20 +9564.599619 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +520 + 8 +HOLZ + 10 +5839.622622 + 20 +9590.540529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +521 + 8 +HOLZ + 10 +5850.160569 + 20 +9611.971354 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +522 + 8 +HOLZ + 10 +5858.943822 + 20 +9629.827721 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +523 + 8 +HOLZ + 10 +5866.375607 + 20 +9645.045254 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +524 + 8 +HOLZ + 10 +5872.85915 + 20 +9658.559578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +525 + 8 +HOLZ + 10 +5878.757825 + 20 +9671.166888 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +526 + 8 +HOLZ + 10 +5884.275608 + 20 +9683.105659 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +527 + 8 +HOLZ + 10 +5889.576623 + 20 +9694.474933 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +528 + 8 +HOLZ + 10 +5894.824995 + 20 +9705.373755 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +529 + 8 +HOLZ + 10 +5900.18485 + 20 +9715.901166 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +52A + 8 +HOLZ + 10 +5905.820311 + 20 +9726.156212 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +52B + 8 +HOLZ + 10 +5911.895504 + 20 +9736.237935 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +52C + 8 +HOLZ + 10 +5918.574553 + 20 +9746.24538 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +52D + 8 +HOLZ + 10 +5926.023967 + 20 +9756.280543 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +52E + 8 +HOLZ + 10 +5934.419785 + 20 +9766.457245 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +52F + 8 +HOLZ + 10 +5943.940432 + 20 +9776.89226 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +530 + 8 +HOLZ + 10 +5954.76433 + 20 +9787.702361 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +531 + 8 +HOLZ + 10 +5967.069903 + 20 +9799.004323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +532 + 8 +HOLZ + 10 +5981.035575 + 20 +9810.91492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +533 + 8 +HOLZ + 10 +5996.839768 + 20 +9823.550926 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +534 + 8 +HOLZ + 10 +6014.660907 + 20 +9837.029115 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +535 + 8 +HOLZ + 10 +5834.278543 + 20 +9581.174182 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +536 + 8 +HOLZ + 10 +5878.672666 + 20 +9666.747133 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +537 + 8 +HOLZ + 10 +5910.382753 + 20 +9745.981227 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +538 + 8 +HOLZ + 10 +5964.290011 + 20 +9799.860567 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +539 + 8 +HOLZ + 10 +6014.660907 + 20 +9837.029115 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +53A + 8 +HOLZ + 0 +POLYLINE + 5 +53B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +53C + 8 +HOLZ + 10 +5770.836181 + 20 +9684.213 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +53D + 8 +HOLZ + 10 +5770.836181 + 20 +9684.213 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +53E + 8 +HOLZ + 10 +5794.334578 + 20 +9711.937864 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +53F + 8 +HOLZ + 10 +5817.271329 + 20 +9737.016925 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +540 + 8 +HOLZ + 10 +5839.681434 + 20 +9759.623879 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +541 + 8 +HOLZ + 10 +5861.59989 + 20 +9779.932417 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +542 + 8 +HOLZ + 10 +5883.061696 + 20 +9798.116234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +543 + 8 +HOLZ + 10 +5904.101852 + 20 +9814.349022 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +544 + 8 +HOLZ + 10 +5924.755356 + 20 +9828.804476 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +545 + 8 +HOLZ + 10 +5945.057205 + 20 +9841.656289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +546 + 8 +HOLZ + 10 +5834.278543 + 20 +9761.8281 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +547 + 8 +HOLZ + 10 +5891.356701 + 20 +9809.368583 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +548 + 8 +HOLZ + 10 +5945.057205 + 20 +9841.656289 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +549 + 8 +HOLZ + 0 +LINE + 5 +54A + 8 +0 + 62 + 0 + 10 +5539.35938 + 20 +9346.4523 + 30 +0.0 + 11 +5545.767212 + 21 +9352.860132 + 31 +0.0 + 0 +POLYLINE + 5 +54B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1430 + 8 +DETAILS + 10 +5014.35938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +1431 + 8 +DETAILS + 10 +5089.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +1432 + 8 +DETAILS + 0 +POLYLINE + 5 +54F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1433 + 8 +DETAILS + 10 +5126.85938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +1434 + 8 +DETAILS + 10 +5189.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +1435 + 8 +DETAILS + 0 +POLYLINE + 5 +553 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1436 + 8 +DETAILS + 10 +5239.35938 + 20 +9248.787465 + 30 +0.0 + 0 +VERTEX + 5 +1437 + 8 +DETAILS + 10 +5239.35938 + 20 +9098.787465 + 30 +0.0 + 0 +SEQEND + 5 +1438 + 8 +DETAILS + 0 +POLYLINE + 5 +557 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1439 + 8 +DETAILS + 10 +5201.85938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +143A + 8 +DETAILS + 10 +5339.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +143B + 8 +DETAILS + 0 +POLYLINE + 5 +55B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +143C + 8 +DETAILS + 10 +5315.976103 + 20 +9211.227005 + 30 +0.0 + 0 +VERTEX + 5 +143D + 8 +DETAILS + 10 +5315.976103 + 20 +9136.227005 + 30 +0.0 + 0 +SEQEND + 5 +143E + 8 +DETAILS + 0 +POLYLINE + 5 +55F + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +143F + 8 +DETAILS + 10 +5376.85938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +1440 + 8 +DETAILS + 10 +5439.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +1441 + 8 +DETAILS + 0 +POLYLINE + 5 +563 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1442 + 8 +DETAILS + 10 +5476.85938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +1443 + 8 +DETAILS + 10 +5539.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +1444 + 8 +DETAILS + 0 +POLYLINE + 5 +567 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1445 + 8 +DETAILS + 10 +5589.35938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +1446 + 8 +DETAILS + 10 +5639.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +1447 + 8 +DETAILS + 0 +POLYLINE + 5 +56B + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1448 + 8 +DETAILS + 10 +5689.35938 + 20 +9173.787465 + 30 +0.0 + 0 +VERTEX + 5 +1449 + 8 +DETAILS + 10 +5764.35938 + 20 +9173.787465 + 30 +0.0 + 0 +SEQEND + 5 +144A + 8 +DETAILS + 0 +TEXT + 5 +56F + 8 +DETAILS + 10 +19314.561908 + 20 +739.032659 + 30 +0.0 + 40 +175.0 + 1 +D5, D6 + 0 +TEXT + 5 +570 + 8 +DETAILS + 10 +20650.0 + 20 +190.0 + 30 +0.0 + 40 +87.5 + 1 +7 + 0 +POLYLINE + 5 +571 + 8 +0 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 0 +VERTEX + 5 +144B + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +144C + 8 +0 + 10 +21025.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +144D + 8 +0 + 10 +21025.0 + 20 +14850.0 + 30 +0.0 + 0 +VERTEX + 5 +144E + 8 +0 + 10 +0.0 + 20 +14850.0 + 30 +0.0 + 0 +SEQEND + 5 +144F + 8 +0 + 0 +POLYLINE + 5 +577 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1450 + 8 +HOLZ + 10 +8170.220909 + 20 +11219.211493 + 30 +0.0 + 0 +VERTEX + 5 +1451 + 8 +HOLZ + 10 +8196.954253 + 20 +11181.512755 + 30 +0.0 + 0 +SEQEND + 5 +1452 + 8 +HOLZ + 0 +POLYLINE + 5 +57B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +57C + 8 +HOLZ + 10 +8338.266005 + 20 +11319.10669 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +57D + 8 +HOLZ + 10 +8338.266005 + 20 +11319.10669 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +57E + 8 +HOLZ + 10 +8342.035779 + 20 +11311.900175 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +57F + 8 +HOLZ + 10 +8344.511624 + 20 +11305.08464 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +580 + 8 +HOLZ + 10 +8345.92424 + 20 +11298.730265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +581 + 8 +HOLZ + 10 +8346.504328 + 20 +11292.907229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +582 + 8 +HOLZ + 10 +8346.482586 + 20 +11287.685712 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +583 + 8 +HOLZ + 10 +8346.089716 + 20 +11283.135893 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +584 + 8 +HOLZ + 10 +8345.556418 + 20 +11279.32795 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +585 + 8 +HOLZ + 10 +8345.11339 + 20 +11276.332064 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +586 + 8 +HOLZ + 10 +8350.24904 + 20 +11299.430389 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +587 + 8 +HOLZ + 10 +8345.969369 + 20 +11283.175971 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +588 + 8 +HOLZ + 10 +8345.11339 + 20 +11276.332064 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +589 + 8 +HOLZ + 0 +POLYLINE + 5 +58A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +58B + 8 +HOLZ + 10 +8305.74037 + 20 +11299.430389 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +58C + 8 +HOLZ + 10 +8305.74037 + 20 +11299.430389 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +58D + 8 +HOLZ + 10 +8309.073828 + 20 +11292.913922 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +58E + 8 +HOLZ + 10 +8311.384183 + 20 +11286.277152 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +58F + 8 +HOLZ + 10 +8312.691492 + 20 +11279.640384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +590 + 8 +HOLZ + 10 +8313.015814 + 20 +11273.123922 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +591 + 8 +HOLZ + 10 +8312.377207 + 20 +11266.848069 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +592 + 8 +HOLZ + 10 +8310.795729 + 20 +11260.933129 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +593 + 8 +HOLZ + 10 +8308.291438 + 20 +11255.499407 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +594 + 8 +HOLZ + 10 +8304.884392 + 20 +11250.667205 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +595 + 8 +HOLZ + 10 +8316.011559 + 20 +11282.320483 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +596 + 8 +HOLZ + 10 +8315.155692 + 20 +11262.644112 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +597 + 8 +HOLZ + 10 +8304.884392 + 20 +11250.667205 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +598 + 8 +HOLZ + 0 +POLYLINE + 5 +599 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +59A + 8 +HOLZ + 10 +8267.223218 + 20 +11277.187553 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +59B + 8 +HOLZ + 10 +8267.223218 + 20 +11277.187553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +59C + 8 +HOLZ + 10 +8268.597397 + 20 +11270.221623 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +59D + 8 +HOLZ + 10 +8269.550299 + 20 +11263.967492 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +59E + 8 +HOLZ + 10 +8270.142107 + 20 +11258.254729 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +59F + 8 +HOLZ + 10 +8270.433 + 20 +11252.912906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5A0 + 8 +HOLZ + 10 +8270.483159 + 20 +11247.77159 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5A1 + 8 +HOLZ + 10 +8270.352765 + 20 +11242.660353 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5A2 + 8 +HOLZ + 10 +8270.102 + 20 +11237.408763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5A3 + 8 +HOLZ + 10 +8269.791043 + 20 +11231.846392 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5A4 + 8 +HOLZ + 10 +8271.50289 + 20 +11257.511182 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5A5 + 8 +HOLZ + 10 +8270.647022 + 20 +11247.245252 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5A6 + 8 +HOLZ + 10 +8269.791043 + 20 +11231.846392 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +5A7 + 8 +HOLZ + 0 +POLYLINE + 5 +5A8 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +5A9 + 8 +HOLZ + 10 +8239.833234 + 20 +11260.933135 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5AA + 8 +HOLZ + 10 +8239.833234 + 20 +11260.933135 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5AB + 8 +HOLZ + 10 +8239.544043 + 20 +11251.841854 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5AC + 8 +HOLZ + 10 +8239.284938 + 20 +11244.665406 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5AD + 8 +HOLZ + 10 +8239.005766 + 20 +11238.752144 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5AE + 8 +HOLZ + 10 +8238.656374 + 20 +11233.450424 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5AF + 8 +HOLZ + 10 +8238.18661 + 20 +11228.108599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5B0 + 8 +HOLZ + 10 +8237.546322 + 20 +11222.075025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5B1 + 8 +HOLZ + 10 +8236.685357 + 20 +11214.698055 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5B2 + 8 +HOLZ + 10 +8235.553563 + 20 +11205.326044 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5B3 + 8 +HOLZ + 10 +8238.977366 + 20 +11233.557369 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5B4 + 8 +HOLZ + 10 +8235.553563 + 20 +11205.326044 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +5B5 + 8 +HOLZ + 0 +POLYLINE + 5 +5B6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +5B7 + 8 +HOLZ + 10 +8200.460214 + 20 +11235.268345 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5B8 + 8 +HOLZ + 10 +8200.460214 + 20 +11235.268345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5B9 + 8 +HOLZ + 10 +8199.977065 + 20 +11229.233113 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5BA + 8 +HOLZ + 10 +8199.162913 + 20 +11223.398383 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5BB + 8 +HOLZ + 10 +8198.007728 + 20 +11217.884458 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5BC + 8 +HOLZ + 10 +8196.501479 + 20 +11212.811646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5BD + 8 +HOLZ + 10 +8194.634135 + 20 +11208.300251 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5BE + 8 +HOLZ + 10 +8192.395665 + 20 +11204.470579 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5BF + 8 +HOLZ + 10 +8189.776037 + 20 +11201.442936 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5C0 + 8 +HOLZ + 10 +8186.765222 + 20 +11199.337626 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5C1 + 8 +HOLZ + 10 +8199.604235 + 20 +11219.013997 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5C2 + 8 +HOLZ + 10 +8195.324564 + 20 +11203.615068 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5C3 + 8 +HOLZ + 10 +8186.765222 + 20 +11199.337626 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +5C4 + 8 +HOLZ + 0 +POLYLINE + 5 +5C5 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +5C6 + 8 +HOLZ + 10 +7934.784334 + 20 +11066.123965 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5C7 + 8 +HOLZ + 10 +7934.784334 + 20 +11066.123965 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5C8 + 8 +HOLZ + 10 +7936.370836 + 20 +11060.068685 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5C9 + 8 +HOLZ + 10 +7937.365534 + 20 +11054.093606 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5CA + 8 +HOLZ + 10 +7937.898827 + 20 +11048.198728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5CB + 8 +HOLZ + 10 +7938.101113 + 20 +11042.38405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5CC + 8 +HOLZ + 10 +7938.102789 + 20 +11036.64957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5CD + 8 +HOLZ + 10 +7938.034253 + 20 +11030.995289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5CE + 8 +HOLZ + 10 +7938.025904 + 20 +11025.421204 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5CF + 8 +HOLZ + 10 +7938.208138 + 20 +11019.927316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5D0 + 8 +HOLZ + 10 +7939.919984 + 20 +11049.869616 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5D1 + 8 +HOLZ + 10 +7937.352159 + 20 +11034.470757 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5D2 + 8 +HOLZ + 10 +7938.208138 + 20 +11019.927316 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +5D3 + 8 +HOLZ + 0 +POLYLINE + 5 +5D4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +5D5 + 8 +HOLZ + 10 +7964.742144 + 20 +11073.823429 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5D6 + 8 +HOLZ + 10 +7964.742144 + 20 +11073.823429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5D7 + 8 +HOLZ + 10 +7965.310531 + 20 +11068.69883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5D8 + 8 +HOLZ + 10 +7965.758554 + 20 +11064.586786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5D9 + 8 +HOLZ + 10 +7966.126338 + 20 +11061.056208 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5DA + 8 +HOLZ + 10 +7966.454004 + 20 +11057.676009 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5DB + 8 +HOLZ + 10 +7966.781675 + 20 +11054.015098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5DC + 8 +HOLZ + 10 +7967.149475 + 20 +11049.642389 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5DD + 8 +HOLZ + 10 +7967.597524 + 20 +11044.126793 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5DE + 8 +HOLZ + 10 +7968.165948 + 20 +11037.037222 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5DF + 8 +HOLZ + 10 +7966.45399 + 20 +11058.42457 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5E0 + 8 +HOLZ + 10 +7968.165948 + 20 +11037.037222 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +5E1 + 8 +HOLZ + 0 +POLYLINE + 5 +5E2 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1453 + 8 +HOLZ + 10 +7958.208885 + 20 +11086.731677 + 30 +0.0 + 0 +VERTEX + 5 +1454 + 8 +HOLZ + 10 +7984.942229 + 20 +11049.032938 + 30 +0.0 + 0 +SEQEND + 5 +1455 + 8 +HOLZ + 0 +POLYLINE + 5 +5E6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +5E7 + 8 +HOLZ + 10 +7776.436166 + 20 +10970.308713 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5E8 + 8 +HOLZ + 10 +7776.436166 + 20 +10970.308713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5E9 + 8 +HOLZ + 10 +7775.953017 + 20 +10964.273481 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5EA + 8 +HOLZ + 10 +7775.138865 + 20 +10958.43875 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5EB + 8 +HOLZ + 10 +7773.98368 + 20 +10952.924826 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5EC + 8 +HOLZ + 10 +7772.477431 + 20 +10947.852014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5ED + 8 +HOLZ + 10 +7770.610087 + 20 +10943.340619 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5EE + 8 +HOLZ + 10 +7768.371617 + 20 +10939.510947 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5EF + 8 +HOLZ + 10 +7765.751989 + 20 +10936.483303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5F0 + 8 +HOLZ + 10 +7762.741174 + 20 +10934.377994 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5F1 + 8 +HOLZ + 10 +7775.580187 + 20 +10954.054365 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5F2 + 8 +HOLZ + 10 +7771.300516 + 20 +10938.655436 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5F3 + 8 +HOLZ + 10 +7762.741174 + 20 +10934.377994 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +5F4 + 8 +HOLZ + 0 +POLYLINE + 5 +5F5 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +5F6 + 8 +HOLZ + 10 +7815.809186 + 20 +10995.973503 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +5F7 + 8 +HOLZ + 10 +7815.809186 + 20 +10995.973503 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5F8 + 8 +HOLZ + 10 +7815.519995 + 20 +10986.882222 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5F9 + 8 +HOLZ + 10 +7815.26089 + 20 +10979.705773 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5FA + 8 +HOLZ + 10 +7814.981718 + 20 +10973.792512 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5FB + 8 +HOLZ + 10 +7814.632326 + 20 +10968.490792 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5FC + 8 +HOLZ + 10 +7814.162562 + 20 +10963.148967 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5FD + 8 +HOLZ + 10 +7813.522274 + 20 +10957.115393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5FE + 8 +HOLZ + 10 +7812.661309 + 20 +10949.738423 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +5FF + 8 +HOLZ + 10 +7811.529514 + 20 +10940.366412 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +600 + 8 +HOLZ + 10 +7814.953318 + 20 +10968.597737 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +601 + 8 +HOLZ + 10 +7811.529514 + 20 +10940.366412 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +602 + 8 +HOLZ + 0 +POLYLINE + 5 +603 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +604 + 8 +HOLZ + 10 +7843.19917 + 20 +11012.227921 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +605 + 8 +HOLZ + 10 +7843.19917 + 20 +11012.227921 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +606 + 8 +HOLZ + 10 +7844.573349 + 20 +11005.261991 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +607 + 8 +HOLZ + 10 +7845.526251 + 20 +10999.00786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +608 + 8 +HOLZ + 10 +7846.118059 + 20 +10993.295097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +609 + 8 +HOLZ + 10 +7846.408952 + 20 +10987.953273 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +60A + 8 +HOLZ + 10 +7846.459111 + 20 +10982.811958 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +60B + 8 +HOLZ + 10 +7846.328717 + 20 +10977.700721 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +60C + 8 +HOLZ + 10 +7846.077952 + 20 +10972.449131 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +60D + 8 +HOLZ + 10 +7845.766995 + 20 +10966.88676 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +60E + 8 +HOLZ + 10 +7847.478842 + 20 +10992.551549 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +60F + 8 +HOLZ + 10 +7846.622974 + 20 +10982.28562 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +610 + 8 +HOLZ + 10 +7845.766995 + 20 +10966.88676 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +611 + 8 +HOLZ + 0 +POLYLINE + 5 +612 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +613 + 8 +HOLZ + 10 +7865.453505 + 20 +11025.915804 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +614 + 8 +HOLZ + 10 +7865.453505 + 20 +11025.915804 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +615 + 8 +HOLZ + 10 +7866.147298 + 20 +11017.917273 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +616 + 8 +HOLZ + 10 +7865.868123 + 20 +11010.530287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +617 + 8 +HOLZ + 10 +7864.926928 + 20 +11003.644567 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +618 + 8 +HOLZ + 10 +7863.634661 + 20 +10997.149834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +619 + 8 +HOLZ + 10 +7862.302271 + 20 +10990.935808 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +61A + 8 +HOLZ + 10 +7861.240704 + 20 +10984.89221 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +61B + 8 +HOLZ + 10 +7860.760909 + 20 +10978.90876 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +61C + 8 +HOLZ + 10 +7861.173834 + 20 +10972.875178 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +61D + 8 +HOLZ + 10 +7868.877309 + 20 +11003.672967 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +61E + 8 +HOLZ + 10 +7858.606009 + 20 +10989.129596 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +61F + 8 +HOLZ + 10 +7861.173834 + 20 +10972.875178 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +620 + 8 +HOLZ + 0 +POLYLINE + 5 +621 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +622 + 8 +HOLZ + 10 +7898.835007 + 20 +11045.592175 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +623 + 8 +HOLZ + 10 +7898.835007 + 20 +11045.592175 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +624 + 8 +HOLZ + 10 +7902.991002 + 20 +11039.465025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +625 + 8 +HOLZ + 10 +7905.923263 + 20 +11033.307804 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +626 + 8 +HOLZ + 10 +7907.77222 + 20 +11027.17064 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +627 + 8 +HOLZ + 10 +7908.678304 + 20 +11021.103656 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +628 + 8 +HOLZ + 10 +7908.781944 + 20 +11015.156978 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +629 + 8 +HOLZ + 10 +7908.22357 + 20 +11009.380732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +62A + 8 +HOLZ + 10 +7907.143613 + 20 +11003.825043 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +62B + 8 +HOLZ + 10 +7905.682503 + 20 +10998.540037 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +62C + 8 +HOLZ + 10 +7911.674132 + 20 +11029.337757 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +62D + 8 +HOLZ + 10 +7909.962175 + 20 +11012.227921 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +62E + 8 +HOLZ + 10 +7905.682503 + 20 +10998.540037 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +62F + 8 +HOLZ + 0 +POLYLINE + 5 +630 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1456 + 8 +HOLZ + 10 +7746.196861 + 20 +10954.251861 + 30 +0.0 + 0 +VERTEX + 5 +1457 + 8 +HOLZ + 10 +7772.930205 + 20 +10916.553122 + 30 +0.0 + 0 +SEQEND + 5 +1458 + 8 +HOLZ + 0 +POLYLINE + 5 +634 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +635 + 8 +HOLZ + 10 +8162.203308 + 20 +11212.291733 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +636 + 8 +HOLZ + 10 +8162.203308 + 20 +11212.291733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +637 + 8 +HOLZ + 10 +8163.363487 + 20 +11203.070098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +638 + 8 +HOLZ + 10 +8164.26288 + 20 +11194.660521 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +639 + 8 +HOLZ + 10 +8164.881423 + 20 +11187.073023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +63A + 8 +HOLZ + 10 +8165.199053 + 20 +11180.31763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +63B + 8 +HOLZ + 10 +8165.195706 + 20 +11174.404365 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +63C + 8 +HOLZ + 10 +8164.85132 + 20 +11169.343251 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +63D + 8 +HOLZ + 10 +8164.145831 + 20 +11165.144313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +63E + 8 +HOLZ + 10 +8163.059176 + 20 +11161.817573 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +63F + 8 +HOLZ + 10 +8165.627001 + 20 +11186.626874 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +640 + 8 +HOLZ + 10 +8166.482979 + 20 +11169.517038 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +641 + 8 +HOLZ + 10 +8163.059176 + 20 +11161.817573 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +642 + 8 +HOLZ + 0 +POLYLINE + 5 +643 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +644 + 8 +HOLZ + 10 +8126.253981 + 20 +11186.626874 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +645 + 8 +HOLZ + 10 +8126.253981 + 20 +11186.626874 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +646 + 8 +HOLZ + 10 +8130.023755 + 20 +11179.420359 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +647 + 8 +HOLZ + 10 +8132.4996 + 20 +11172.604824 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +648 + 8 +HOLZ + 10 +8133.912216 + 20 +11166.250449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +649 + 8 +HOLZ + 10 +8134.492304 + 20 +11160.427413 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +64A + 8 +HOLZ + 10 +8134.470562 + 20 +11155.205896 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +64B + 8 +HOLZ + 10 +8134.077692 + 20 +11150.656077 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +64C + 8 +HOLZ + 10 +8133.544394 + 20 +11146.848134 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +64D + 8 +HOLZ + 10 +8133.101366 + 20 +11143.852248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +64E + 8 +HOLZ + 10 +8138.237016 + 20 +11166.950573 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +64F + 8 +HOLZ + 10 +8133.957345 + 20 +11150.696155 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +650 + 8 +HOLZ + 10 +8133.101366 + 20 +11143.852248 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +651 + 8 +HOLZ + 0 +POLYLINE + 5 +652 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +653 + 8 +HOLZ + 10 +8093.728346 + 20 +11166.950573 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +654 + 8 +HOLZ + 10 +8093.728346 + 20 +11166.950573 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +655 + 8 +HOLZ + 10 +8097.061804 + 20 +11160.434106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +656 + 8 +HOLZ + 10 +8099.372159 + 20 +11153.797336 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +657 + 8 +HOLZ + 10 +8100.679468 + 20 +11147.160568 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +658 + 8 +HOLZ + 10 +8101.00379 + 20 +11140.644106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +659 + 8 +HOLZ + 10 +8100.365183 + 20 +11134.368253 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +65A + 8 +HOLZ + 10 +8098.783705 + 20 +11128.453313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +65B + 8 +HOLZ + 10 +8096.279414 + 20 +11123.019591 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +65C + 8 +HOLZ + 10 +8092.872368 + 20 +11118.187389 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +65D + 8 +HOLZ + 10 +8103.999535 + 20 +11149.840667 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +65E + 8 +HOLZ + 10 +8103.143668 + 20 +11130.164295 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +65F + 8 +HOLZ + 10 +8092.872368 + 20 +11118.187389 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +660 + 8 +HOLZ + 0 +POLYLINE + 5 +661 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +662 + 8 +HOLZ + 10 +8055.211194 + 20 +11144.707737 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +663 + 8 +HOLZ + 10 +8055.211194 + 20 +11144.707737 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +664 + 8 +HOLZ + 10 +8056.585373 + 20 +11137.741807 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +665 + 8 +HOLZ + 10 +8057.538275 + 20 +11131.487676 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +666 + 8 +HOLZ + 10 +8058.130083 + 20 +11125.774913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +667 + 8 +HOLZ + 10 +8058.420976 + 20 +11120.433089 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +668 + 8 +HOLZ + 10 +8058.471135 + 20 +11115.291774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +669 + 8 +HOLZ + 10 +8058.340741 + 20 +11110.180537 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +66A + 8 +HOLZ + 10 +8058.089976 + 20 +11104.928947 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +66B + 8 +HOLZ + 10 +8057.779019 + 20 +11099.366576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +66C + 8 +HOLZ + 10 +8059.490866 + 20 +11125.031365 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +66D + 8 +HOLZ + 10 +8058.634998 + 20 +11114.765436 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +66E + 8 +HOLZ + 10 +8057.779019 + 20 +11099.366576 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +66F + 8 +HOLZ + 0 +POLYLINE + 5 +670 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +671 + 8 +HOLZ + 10 +8027.82121 + 20 +11128.453319 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +672 + 8 +HOLZ + 10 +8027.82121 + 20 +11128.453319 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +673 + 8 +HOLZ + 10 +8027.532019 + 20 +11119.362038 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +674 + 8 +HOLZ + 10 +8027.272914 + 20 +11112.18559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +675 + 8 +HOLZ + 10 +8026.993742 + 20 +11106.272328 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +676 + 8 +HOLZ + 10 +8026.64435 + 20 +11100.970608 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +677 + 8 +HOLZ + 10 +8026.174586 + 20 +11095.628783 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +678 + 8 +HOLZ + 10 +8025.534298 + 20 +11089.595209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +679 + 8 +HOLZ + 10 +8024.673333 + 20 +11082.218239 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +67A + 8 +HOLZ + 10 +8023.541538 + 20 +11072.846228 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +67B + 8 +HOLZ + 10 +8026.965342 + 20 +11101.077553 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +67C + 8 +HOLZ + 10 +8023.541538 + 20 +11072.846228 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +67D + 8 +HOLZ + 0 +POLYLINE + 5 +67E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +67F + 8 +HOLZ + 10 +7988.44819 + 20 +11102.788529 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +680 + 8 +HOLZ + 10 +7988.44819 + 20 +11102.788529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +681 + 8 +HOLZ + 10 +7987.965041 + 20 +11096.753297 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +682 + 8 +HOLZ + 10 +7987.150889 + 20 +11090.918567 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +683 + 8 +HOLZ + 10 +7985.995704 + 20 +11085.404642 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +684 + 8 +HOLZ + 10 +7984.489455 + 20 +11080.33183 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +685 + 8 +HOLZ + 10 +7982.622111 + 20 +11075.820435 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +686 + 8 +HOLZ + 10 +7980.383641 + 20 +11071.990763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +687 + 8 +HOLZ + 10 +7977.764013 + 20 +11068.963119 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +688 + 8 +HOLZ + 10 +7974.753198 + 20 +11066.85781 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +689 + 8 +HOLZ + 10 +7987.592211 + 20 +11086.534181 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +68A + 8 +HOLZ + 10 +7983.31254 + 20 +11071.135252 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +68B + 8 +HOLZ + 10 +7974.753198 + 20 +11066.85781 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +68C + 8 +HOLZ + 0 +POLYLINE + 5 +68D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +68E + 8 +HOLZ + 10 +7510.760286 + 20 +10801.164332 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +68F + 8 +HOLZ + 10 +7510.760286 + 20 +10801.164332 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +690 + 8 +HOLZ + 10 +7512.346787 + 20 +10795.109053 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +691 + 8 +HOLZ + 10 +7513.341486 + 20 +10789.133974 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +692 + 8 +HOLZ + 10 +7513.874779 + 20 +10783.239096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +693 + 8 +HOLZ + 10 +7514.077065 + 20 +10777.424418 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +694 + 8 +HOLZ + 10 +7514.078741 + 20 +10771.689938 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +695 + 8 +HOLZ + 10 +7514.010205 + 20 +10766.035656 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +696 + 8 +HOLZ + 10 +7514.001856 + 20 +10760.461572 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +697 + 8 +HOLZ + 10 +7514.18409 + 20 +10754.967683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +698 + 8 +HOLZ + 10 +7515.895936 + 20 +10784.909984 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +699 + 8 +HOLZ + 10 +7513.328111 + 20 +10769.511125 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +69A + 8 +HOLZ + 10 +7514.18409 + 20 +10754.967683 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +69B + 8 +HOLZ + 0 +POLYLINE + 5 +69C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +69D + 8 +HOLZ + 10 +7540.718096 + 20 +10808.863797 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +69E + 8 +HOLZ + 10 +7540.718096 + 20 +10808.863797 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +69F + 8 +HOLZ + 10 +7541.286482 + 20 +10803.739198 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A0 + 8 +HOLZ + 10 +7541.734506 + 20 +10799.627154 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A1 + 8 +HOLZ + 10 +7542.10229 + 20 +10796.096576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A2 + 8 +HOLZ + 10 +7542.429956 + 20 +10792.716376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A3 + 8 +HOLZ + 10 +7542.757627 + 20 +10789.055466 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A4 + 8 +HOLZ + 10 +7543.125426 + 20 +10784.682757 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A5 + 8 +HOLZ + 10 +7543.573476 + 20 +10779.167161 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A6 + 8 +HOLZ + 10 +7544.141899 + 20 +10772.07759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6A7 + 8 +HOLZ + 10 +7542.429942 + 20 +10793.464937 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6A8 + 8 +HOLZ + 10 +7544.141899 + 20 +10772.07759 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +6A9 + 8 +HOLZ + 0 +POLYLINE + 5 +6AA + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1459 + 8 +HOLZ + 10 +7534.184837 + 20 +10821.772045 + 30 +0.0 + 0 +VERTEX + 5 +145A + 8 +HOLZ + 10 +7560.918181 + 20 +10784.073306 + 30 +0.0 + 0 +SEQEND + 5 +145B + 8 +HOLZ + 0 +POLYLINE + 5 +6AE + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +6AF + 8 +HOLZ + 10 +6948.930558 + 20 +10452.366355 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6B0 + 8 +HOLZ + 10 +6948.930558 + 20 +10452.366355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B1 + 8 +HOLZ + 10 +6948.84028 + 20 +10444.610101 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B2 + 8 +HOLZ + 10 +6948.529325 + 20 +10437.315014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B3 + 8 +HOLZ + 10 +6947.937513 + 20 +10430.380839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B4 + 8 +HOLZ + 10 +6947.004662 + 20 +10423.707322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B5 + 8 +HOLZ + 10 +6945.670592 + 20 +10417.194209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B6 + 8 +HOLZ + 10 +6943.875122 + 20 +10410.741246 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B7 + 8 +HOLZ + 10 +6941.558071 + 20 +10404.248179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B8 + 8 +HOLZ + 10 +6938.659259 + 20 +10397.614753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6B9 + 8 +HOLZ + 10 +6948.930558 + 20 +10430.979008 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6BA + 8 +HOLZ + 10 +6947.218601 + 20 +10415.580148 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6BB + 8 +HOLZ + 10 +6938.659259 + 20 +10397.614753 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +6BC + 8 +HOLZ + 0 +POLYLINE + 5 +6BD + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +145C + 8 +HOLZ + 10 +6898.148764 + 20 +10424.332597 + 30 +0.0 + 0 +VERTEX + 5 +145D + 8 +HOLZ + 10 +6924.882109 + 20 +10386.633858 + 30 +0.0 + 0 +SEQEND + 5 +145E + 8 +HOLZ + 0 +POLYLINE + 5 +6C1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +6C2 + 8 +HOLZ + 10 +6980.600214 + 20 +10472.898215 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6C3 + 8 +HOLZ + 10 +6980.600214 + 20 +10472.898215 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6C4 + 8 +HOLZ + 10 +6984.256331 + 20 +10462.699121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6C5 + 8 +HOLZ + 10 +6986.899366 + 20 +10454.825902 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6C6 + 8 +HOLZ + 10 +6988.559411 + 20 +10448.717141 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6C7 + 8 +HOLZ + 10 +6989.266554 + 20 +10443.81142 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6C8 + 8 +HOLZ + 10 +6989.050887 + 20 +10439.547322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6C9 + 8 +HOLZ + 10 +6987.9425 + 20 +10435.363429 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6CA + 8 +HOLZ + 10 +6985.971484 + 20 +10430.698324 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6CB + 8 +HOLZ + 10 +6983.167928 + 20 +10424.990589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6CC + 8 +HOLZ + 10 +6991.727382 + 20 +10442.100426 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6CD + 8 +HOLZ + 10 +6983.167928 + 20 +10424.990589 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +6CE + 8 +HOLZ + 0 +POLYLINE + 5 +6CF + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +6D0 + 8 +HOLZ + 10 +7140.400094 + 20 +10572.869265 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6D1 + 8 +HOLZ + 10 +7140.400094 + 20 +10572.869265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D2 + 8 +HOLZ + 10 +7139.916945 + 20 +10566.834033 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D3 + 8 +HOLZ + 10 +7139.102793 + 20 +10560.999302 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D4 + 8 +HOLZ + 10 +7137.947608 + 20 +10555.485378 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D5 + 8 +HOLZ + 10 +7136.441359 + 20 +10550.412566 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D6 + 8 +HOLZ + 10 +7134.574015 + 20 +10545.901171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D7 + 8 +HOLZ + 10 +7132.335545 + 20 +10542.071499 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D8 + 8 +HOLZ + 10 +7129.715917 + 20 +10539.043855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6D9 + 8 +HOLZ + 10 +7126.705102 + 20 +10536.938546 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6DA + 8 +HOLZ + 10 +7139.544115 + 20 +10556.614917 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6DB + 8 +HOLZ + 10 +7135.264444 + 20 +10541.215988 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6DC + 8 +HOLZ + 10 +7126.705102 + 20 +10536.938546 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +6DD + 8 +HOLZ + 0 +POLYLINE + 5 +6DE + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +6DF + 8 +HOLZ + 10 +7160.942582 + 20 +10584.846171 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6E0 + 8 +HOLZ + 10 +7160.942582 + 20 +10584.846171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E1 + 8 +HOLZ + 10 +7160.852304 + 20 +10577.089917 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E2 + 8 +HOLZ + 10 +7160.541349 + 20 +10569.79483 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E3 + 8 +HOLZ + 10 +7159.949537 + 20 +10562.860655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E4 + 8 +HOLZ + 10 +7159.016686 + 20 +10556.187138 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E5 + 8 +HOLZ + 10 +7157.682616 + 20 +10549.674025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E6 + 8 +HOLZ + 10 +7155.887146 + 20 +10543.221062 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E7 + 8 +HOLZ + 10 +7153.570095 + 20 +10536.727995 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E8 + 8 +HOLZ + 10 +7150.671283 + 20 +10530.094569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6E9 + 8 +HOLZ + 10 +7160.942582 + 20 +10563.458824 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6EA + 8 +HOLZ + 10 +7159.230625 + 20 +10548.059964 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6EB + 8 +HOLZ + 10 +7150.671283 + 20 +10530.094569 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +6EC + 8 +HOLZ + 0 +POLYLINE + 5 +6ED + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +6EE + 8 +HOLZ + 10 +7192.612238 + 20 +10605.378031 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6EF + 8 +HOLZ + 10 +7192.612238 + 20 +10605.378031 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F0 + 8 +HOLZ + 10 +7196.268355 + 20 +10595.178937 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F1 + 8 +HOLZ + 10 +7198.911391 + 20 +10587.305718 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F2 + 8 +HOLZ + 10 +7200.571435 + 20 +10581.196957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F3 + 8 +HOLZ + 10 +7201.278578 + 20 +10576.291236 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F4 + 8 +HOLZ + 10 +7201.062911 + 20 +10572.027138 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F5 + 8 +HOLZ + 10 +7199.954524 + 20 +10567.843245 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F6 + 8 +HOLZ + 10 +7197.983508 + 20 +10563.17814 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F7 + 8 +HOLZ + 10 +7195.179952 + 20 +10557.470405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6F8 + 8 +HOLZ + 10 +7203.739406 + 20 +10574.580242 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6F9 + 8 +HOLZ + 10 +7195.179952 + 20 +10557.470405 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +6FA + 8 +HOLZ + 0 +POLYLINE + 5 +6FB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +6FC + 8 +HOLZ + 10 +7229.417433 + 20 +10628.476355 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +6FD + 8 +HOLZ + 10 +7229.417433 + 20 +10628.476355 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6FE + 8 +HOLZ + 10 +7230.111226 + 20 +10620.477824 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +6FF + 8 +HOLZ + 10 +7229.832051 + 20 +10613.090839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +700 + 8 +HOLZ + 10 +7228.890856 + 20 +10606.205119 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +701 + 8 +HOLZ + 10 +7227.598589 + 20 +10599.710386 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +702 + 8 +HOLZ + 10 +7226.266198 + 20 +10593.49636 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +703 + 8 +HOLZ + 10 +7225.204632 + 20 +10587.452761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +704 + 8 +HOLZ + 10 +7224.724837 + 20 +10581.469311 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +705 + 8 +HOLZ + 10 +7225.137762 + 20 +10575.43573 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +706 + 8 +HOLZ + 10 +7232.841237 + 20 +10606.233519 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +707 + 8 +HOLZ + 10 +7222.569937 + 20 +10591.690148 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +708 + 8 +HOLZ + 10 +7225.137762 + 20 +10575.43573 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +709 + 8 +HOLZ + 0 +POLYLINE + 5 +70A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +70B + 8 +HOLZ + 10 +7050.786911 + 20 +10515.672911 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +70C + 8 +HOLZ + 10 +7050.786911 + 20 +10515.672911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +70D + 8 +HOLZ + 10 +7054.942906 + 20 +10509.54576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +70E + 8 +HOLZ + 10 +7057.875167 + 20 +10503.38854 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +70F + 8 +HOLZ + 10 +7059.724124 + 20 +10497.251375 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +710 + 8 +HOLZ + 10 +7060.630208 + 20 +10491.184391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +711 + 8 +HOLZ + 10 +7060.733848 + 20 +10485.237714 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +712 + 8 +HOLZ + 10 +7060.175474 + 20 +10479.461468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +713 + 8 +HOLZ + 10 +7059.095517 + 20 +10473.905779 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +714 + 8 +HOLZ + 10 +7057.634407 + 20 +10468.620773 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +715 + 8 +HOLZ + 10 +7063.626036 + 20 +10499.418493 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +716 + 8 +HOLZ + 10 +7061.914078 + 20 +10482.308656 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +717 + 8 +HOLZ + 10 +7057.634407 + 20 +10468.620773 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +718 + 8 +HOLZ + 0 +POLYLINE + 5 +719 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +71A + 8 +HOLZ + 10 +7017.405409 + 20 +10495.996539 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +71B + 8 +HOLZ + 10 +7017.405409 + 20 +10495.996539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +71C + 8 +HOLZ + 10 +7018.099202 + 20 +10487.998008 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +71D + 8 +HOLZ + 10 +7017.820027 + 20 +10480.611023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +71E + 8 +HOLZ + 10 +7016.878832 + 20 +10473.725303 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +71F + 8 +HOLZ + 10 +7015.586565 + 20 +10467.23057 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +720 + 8 +HOLZ + 10 +7014.254174 + 20 +10461.016544 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +721 + 8 +HOLZ + 10 +7013.192608 + 20 +10454.972945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +722 + 8 +HOLZ + 10 +7012.712813 + 20 +10448.989495 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +723 + 8 +HOLZ + 10 +7013.125738 + 20 +10442.955914 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +724 + 8 +HOLZ + 10 +7020.829213 + 20 +10473.753703 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +725 + 8 +HOLZ + 10 +7010.557913 + 20 +10459.210332 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +726 + 8 +HOLZ + 10 +7013.125738 + 20 +10442.955914 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +727 + 8 +HOLZ + 0 +POLYLINE + 5 +728 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +145F + 8 +HOLZ + 10 +7110.160788 + 20 +10556.812413 + 30 +0.0 + 0 +VERTEX + 5 +1460 + 8 +HOLZ + 10 +7136.894133 + 20 +10519.113674 + 30 +0.0 + 0 +SEQEND + 5 +1461 + 8 +HOLZ + 0 +POLYLINE + 5 +72C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +72D + 8 +HOLZ + 10 +7116.694048 + 20 +10543.904165 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +72E + 8 +HOLZ + 10 +7116.694048 + 20 +10543.904165 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +72F + 8 +HOLZ + 10 +7117.262434 + 20 +10538.779566 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +730 + 8 +HOLZ + 10 +7117.710458 + 20 +10534.667522 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +731 + 8 +HOLZ + 10 +7118.078242 + 20 +10531.136944 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +732 + 8 +HOLZ + 10 +7118.405908 + 20 +10527.756744 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +733 + 8 +HOLZ + 10 +7118.733579 + 20 +10524.095834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +734 + 8 +HOLZ + 10 +7119.101378 + 20 +10519.723125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +735 + 8 +HOLZ + 10 +7119.549428 + 20 +10514.207529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +736 + 8 +HOLZ + 10 +7120.117851 + 20 +10507.117957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +737 + 8 +HOLZ + 10 +7118.405894 + 20 +10528.505305 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +738 + 8 +HOLZ + 10 +7120.117851 + 20 +10507.117957 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +739 + 8 +HOLZ + 0 +POLYLINE + 5 +73A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +73B + 8 +HOLZ + 10 +7086.736238 + 20 +10536.2047 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +73C + 8 +HOLZ + 10 +7086.736238 + 20 +10536.2047 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +73D + 8 +HOLZ + 10 +7088.322739 + 20 +10530.149421 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +73E + 8 +HOLZ + 10 +7089.317438 + 20 +10524.174342 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +73F + 8 +HOLZ + 10 +7089.850731 + 20 +10518.279464 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +740 + 8 +HOLZ + 10 +7090.053017 + 20 +10512.464786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +741 + 8 +HOLZ + 10 +7090.054693 + 20 +10506.730306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +742 + 8 +HOLZ + 10 +7089.986157 + 20 +10501.076024 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +743 + 8 +HOLZ + 10 +7089.977808 + 20 +10495.50194 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +744 + 8 +HOLZ + 10 +7090.160042 + 20 +10490.008051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +745 + 8 +HOLZ + 10 +7091.871888 + 20 +10519.950352 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +746 + 8 +HOLZ + 10 +7089.304063 + 20 +10504.551492 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +747 + 8 +HOLZ + 10 +7090.160042 + 20 +10490.008051 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +748 + 8 +HOLZ + 0 +POLYLINE + 5 +749 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +74A + 8 +HOLZ + 10 +7262.798935 + 20 +10648.152727 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +74B + 8 +HOLZ + 10 +7262.798935 + 20 +10648.152727 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +74C + 8 +HOLZ + 10 +7266.95493 + 20 +10642.025576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +74D + 8 +HOLZ + 10 +7269.887191 + 20 +10635.868356 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +74E + 8 +HOLZ + 10 +7271.736148 + 20 +10629.731191 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +74F + 8 +HOLZ + 10 +7272.642232 + 20 +10623.664207 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +750 + 8 +HOLZ + 10 +7272.745872 + 20 +10617.71753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +751 + 8 +HOLZ + 10 +7272.187498 + 20 +10611.941284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +752 + 8 +HOLZ + 10 +7271.107541 + 20 +10606.385595 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +753 + 8 +HOLZ + 10 +7269.646431 + 20 +10601.100589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +754 + 8 +HOLZ + 10 +7275.63806 + 20 +10631.898309 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +755 + 8 +HOLZ + 10 +7273.926102 + 20 +10614.788472 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +756 + 8 +HOLZ + 10 +7269.646431 + 20 +10601.100589 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +757 + 8 +HOLZ + 0 +POLYLINE + 5 +758 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +759 + 8 +HOLZ + 10 +7298.748262 + 20 +10668.684516 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +75A + 8 +HOLZ + 10 +7298.748262 + 20 +10668.684516 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +75B + 8 +HOLZ + 10 +7300.334763 + 20 +10662.629237 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +75C + 8 +HOLZ + 10 +7301.329462 + 20 +10656.654158 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +75D + 8 +HOLZ + 10 +7301.862755 + 20 +10650.75928 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +75E + 8 +HOLZ + 10 +7302.065041 + 20 +10644.944602 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +75F + 8 +HOLZ + 10 +7302.066717 + 20 +10639.210122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +760 + 8 +HOLZ + 10 +7301.998181 + 20 +10633.55584 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +761 + 8 +HOLZ + 10 +7301.989832 + 20 +10627.981756 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +762 + 8 +HOLZ + 10 +7302.172066 + 20 +10622.487867 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +763 + 8 +HOLZ + 10 +7303.883912 + 20 +10652.430168 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +764 + 8 +HOLZ + 10 +7301.316087 + 20 +10637.031309 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +765 + 8 +HOLZ + 10 +7302.172066 + 20 +10622.487867 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +766 + 8 +HOLZ + 0 +POLYLINE + 5 +767 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +768 + 8 +HOLZ + 10 +7328.706072 + 20 +10676.383981 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +769 + 8 +HOLZ + 10 +7328.706072 + 20 +10676.383981 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +76A + 8 +HOLZ + 10 +7329.274458 + 20 +10671.259382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +76B + 8 +HOLZ + 10 +7329.722482 + 20 +10667.147338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +76C + 8 +HOLZ + 10 +7330.090266 + 20 +10663.61676 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +76D + 8 +HOLZ + 10 +7330.417932 + 20 +10660.23656 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +76E + 8 +HOLZ + 10 +7330.745603 + 20 +10656.57565 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +76F + 8 +HOLZ + 10 +7331.113402 + 20 +10652.202941 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +770 + 8 +HOLZ + 10 +7331.561452 + 20 +10646.687345 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +771 + 8 +HOLZ + 10 +7332.129875 + 20 +10639.597774 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +772 + 8 +HOLZ + 10 +7330.417918 + 20 +10660.985121 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +773 + 8 +HOLZ + 10 +7332.129875 + 20 +10639.597774 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +774 + 8 +HOLZ + 0 +POLYLINE + 5 +775 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +776 + 8 +HOLZ + 10 +7372.954607 + 20 +10717.325988 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +777 + 8 +HOLZ + 10 +7372.954607 + 20 +10717.325988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +778 + 8 +HOLZ + 10 +7372.864328 + 20 +10709.569733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +779 + 8 +HOLZ + 10 +7372.553373 + 20 +10702.274646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +77A + 8 +HOLZ + 10 +7371.961561 + 20 +10695.340471 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +77B + 8 +HOLZ + 10 +7371.02871 + 20 +10688.666954 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +77C + 8 +HOLZ + 10 +7369.69464 + 20 +10682.153841 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +77D + 8 +HOLZ + 10 +7367.89917 + 20 +10675.700878 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +77E + 8 +HOLZ + 10 +7365.582119 + 20 +10669.207811 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +77F + 8 +HOLZ + 10 +7362.683307 + 20 +10662.574385 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +780 + 8 +HOLZ + 10 +7372.954607 + 20 +10695.93864 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +781 + 8 +HOLZ + 10 +7371.242649 + 20 +10680.53978 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +782 + 8 +HOLZ + 10 +7362.683307 + 20 +10662.574385 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +783 + 8 +HOLZ + 0 +POLYLINE + 5 +784 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +785 + 8 +HOLZ + 10 +7404.624262 + 20 +10737.857847 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +786 + 8 +HOLZ + 10 +7404.624262 + 20 +10737.857847 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +787 + 8 +HOLZ + 10 +7408.280379 + 20 +10727.658753 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +788 + 8 +HOLZ + 10 +7410.923415 + 20 +10719.785534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +789 + 8 +HOLZ + 10 +7412.583459 + 20 +10713.676773 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +78A + 8 +HOLZ + 10 +7413.290602 + 20 +10708.771052 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +78B + 8 +HOLZ + 10 +7413.074935 + 20 +10704.506954 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +78C + 8 +HOLZ + 10 +7411.966548 + 20 +10700.323061 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +78D + 8 +HOLZ + 10 +7409.995532 + 20 +10695.657956 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +78E + 8 +HOLZ + 10 +7407.191976 + 20 +10689.950221 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +78F + 8 +HOLZ + 10 +7415.75143 + 20 +10707.060058 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +790 + 8 +HOLZ + 10 +7407.191976 + 20 +10689.950221 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +791 + 8 +HOLZ + 0 +POLYLINE + 5 +792 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +793 + 8 +HOLZ + 10 +7441.429457 + 20 +10760.956172 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +794 + 8 +HOLZ + 10 +7441.429457 + 20 +10760.956172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +795 + 8 +HOLZ + 10 +7442.12325 + 20 +10752.95764 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +796 + 8 +HOLZ + 10 +7441.844075 + 20 +10745.570655 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +797 + 8 +HOLZ + 10 +7440.90288 + 20 +10738.684935 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +798 + 8 +HOLZ + 10 +7439.610613 + 20 +10732.190202 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +799 + 8 +HOLZ + 10 +7438.278223 + 20 +10725.976176 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +79A + 8 +HOLZ + 10 +7437.216656 + 20 +10719.932578 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +79B + 8 +HOLZ + 10 +7436.736861 + 20 +10713.949127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +79C + 8 +HOLZ + 10 +7437.149786 + 20 +10707.915546 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +79D + 8 +HOLZ + 10 +7444.853261 + 20 +10738.713335 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +79E + 8 +HOLZ + 10 +7434.581961 + 20 +10724.169964 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +79F + 8 +HOLZ + 10 +7437.149786 + 20 +10707.915546 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7A0 + 8 +HOLZ + 0 +POLYLINE + 5 +7A1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7A2 + 8 +HOLZ + 10 +7474.810959 + 20 +10780.632543 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7A3 + 8 +HOLZ + 10 +7474.810959 + 20 +10780.632543 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7A4 + 8 +HOLZ + 10 +7478.966954 + 20 +10774.505392 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7A5 + 8 +HOLZ + 10 +7481.899215 + 20 +10768.348172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7A6 + 8 +HOLZ + 10 +7483.748172 + 20 +10762.211007 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7A7 + 8 +HOLZ + 10 +7484.654256 + 20 +10756.144023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7A8 + 8 +HOLZ + 10 +7484.757896 + 20 +10750.197346 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7A9 + 8 +HOLZ + 10 +7484.199522 + 20 +10744.4211 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7AA + 8 +HOLZ + 10 +7483.119565 + 20 +10738.865411 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7AB + 8 +HOLZ + 10 +7481.658455 + 20 +10733.580405 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7AC + 8 +HOLZ + 10 +7487.650084 + 20 +10764.378125 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7AD + 8 +HOLZ + 10 +7485.938126 + 20 +10747.268288 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7AE + 8 +HOLZ + 10 +7481.658455 + 20 +10733.580405 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7AF + 8 +HOLZ + 0 +POLYLINE + 5 +7B0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1462 + 8 +HOLZ + 10 +7322.172813 + 20 +10689.292229 + 30 +0.0 + 0 +VERTEX + 5 +1463 + 8 +HOLZ + 10 +7348.906157 + 20 +10651.59349 + 30 +0.0 + 0 +SEQEND + 5 +1464 + 8 +HOLZ + 0 +POLYLINE + 5 +7B4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7B5 + 8 +HOLZ + 10 +7752.73012 + 20 +10941.343613 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7B6 + 8 +HOLZ + 10 +7752.73012 + 20 +10941.343613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7B7 + 8 +HOLZ + 10 +7753.298506 + 20 +10936.219014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7B8 + 8 +HOLZ + 10 +7753.74653 + 20 +10932.10697 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7B9 + 8 +HOLZ + 10 +7754.114314 + 20 +10928.576392 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7BA + 8 +HOLZ + 10 +7754.44198 + 20 +10925.196192 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7BB + 8 +HOLZ + 10 +7754.769651 + 20 +10921.535282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7BC + 8 +HOLZ + 10 +7755.137451 + 20 +10917.162573 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7BD + 8 +HOLZ + 10 +7755.5855 + 20 +10911.646977 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7BE + 8 +HOLZ + 10 +7756.153924 + 20 +10904.557406 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7BF + 8 +HOLZ + 10 +7754.441966 + 20 +10925.944753 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7C0 + 8 +HOLZ + 10 +7756.153924 + 20 +10904.557406 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7C1 + 8 +HOLZ + 0 +POLYLINE + 5 +7C2 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7C3 + 8 +HOLZ + 10 +7722.77231 + 20 +10933.644149 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7C4 + 8 +HOLZ + 10 +7722.77231 + 20 +10933.644149 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7C5 + 8 +HOLZ + 10 +7724.358811 + 20 +10927.588869 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7C6 + 8 +HOLZ + 10 +7725.35351 + 20 +10921.61379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7C7 + 8 +HOLZ + 10 +7725.886803 + 20 +10915.718912 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7C8 + 8 +HOLZ + 10 +7726.089089 + 20 +10909.904234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7C9 + 8 +HOLZ + 10 +7726.090765 + 20 +10904.169754 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7CA + 8 +HOLZ + 10 +7726.022229 + 20 +10898.515472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7CB + 8 +HOLZ + 10 +7726.01388 + 20 +10892.941388 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7CC + 8 +HOLZ + 10 +7726.196114 + 20 +10887.4475 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7CD + 8 +HOLZ + 10 +7727.90796 + 20 +10917.3898 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7CE + 8 +HOLZ + 10 +7725.340135 + 20 +10901.990941 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7CF + 8 +HOLZ + 10 +7726.196114 + 20 +10887.4475 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7D0 + 8 +HOLZ + 0 +POLYLINE + 5 +7D1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7D2 + 8 +HOLZ + 10 +7686.822983 + 20 +10913.112359 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7D3 + 8 +HOLZ + 10 +7686.822983 + 20 +10913.112359 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7D4 + 8 +HOLZ + 10 +7690.978978 + 20 +10906.985209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7D5 + 8 +HOLZ + 10 +7693.911239 + 20 +10900.827988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7D6 + 8 +HOLZ + 10 +7695.760196 + 20 +10894.690823 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7D7 + 8 +HOLZ + 10 +7696.66628 + 20 +10888.62384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7D8 + 8 +HOLZ + 10 +7696.76992 + 20 +10882.677162 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7D9 + 8 +HOLZ + 10 +7696.211546 + 20 +10876.900916 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7DA + 8 +HOLZ + 10 +7695.131589 + 20 +10871.345227 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7DB + 8 +HOLZ + 10 +7693.670479 + 20 +10866.060221 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7DC + 8 +HOLZ + 10 +7699.662108 + 20 +10896.857941 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7DD + 8 +HOLZ + 10 +7697.95015 + 20 +10879.748104 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7DE + 8 +HOLZ + 10 +7693.670479 + 20 +10866.060221 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7DF + 8 +HOLZ + 0 +POLYLINE + 5 +7E0 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7E1 + 8 +HOLZ + 10 +7653.441481 + 20 +10893.435988 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7E2 + 8 +HOLZ + 10 +7653.441481 + 20 +10893.435988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E3 + 8 +HOLZ + 10 +7654.135274 + 20 +10885.437457 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E4 + 8 +HOLZ + 10 +7653.856099 + 20 +10878.050471 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E5 + 8 +HOLZ + 10 +7652.914904 + 20 +10871.164751 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E6 + 8 +HOLZ + 10 +7651.622637 + 20 +10864.670018 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E7 + 8 +HOLZ + 10 +7650.290247 + 20 +10858.455992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E8 + 8 +HOLZ + 10 +7649.22868 + 20 +10852.412394 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7E9 + 8 +HOLZ + 10 +7648.748885 + 20 +10846.428943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7EA + 8 +HOLZ + 10 +7649.16181 + 20 +10840.395362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7EB + 8 +HOLZ + 10 +7656.865285 + 20 +10871.193151 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7EC + 8 +HOLZ + 10 +7646.593985 + 20 +10856.64978 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7ED + 8 +HOLZ + 10 +7649.16181 + 20 +10840.395362 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7EE + 8 +HOLZ + 0 +POLYLINE + 5 +7EF + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7F0 + 8 +HOLZ + 10 +7616.636286 + 20 +10870.337663 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7F1 + 8 +HOLZ + 10 +7616.636286 + 20 +10870.337663 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F2 + 8 +HOLZ + 10 +7620.292403 + 20 +10860.138569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F3 + 8 +HOLZ + 10 +7622.935439 + 20 +10852.26535 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F4 + 8 +HOLZ + 10 +7624.595483 + 20 +10846.156589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F5 + 8 +HOLZ + 10 +7625.302626 + 20 +10841.250868 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F6 + 8 +HOLZ + 10 +7625.086959 + 20 +10836.98677 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F7 + 8 +HOLZ + 10 +7623.978572 + 20 +10832.802877 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F8 + 8 +HOLZ + 10 +7622.007556 + 20 +10828.137772 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7F9 + 8 +HOLZ + 10 +7619.204 + 20 +10822.430037 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +7FA + 8 +HOLZ + 10 +7627.763454 + 20 +10839.539874 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7FB + 8 +HOLZ + 10 +7619.204 + 20 +10822.430037 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +7FC + 8 +HOLZ + 0 +POLYLINE + 5 +7FD + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +7FE + 8 +HOLZ + 10 +7584.966631 + 20 +10849.805804 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +7FF + 8 +HOLZ + 10 +7584.966631 + 20 +10849.805804 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +800 + 8 +HOLZ + 10 +7584.876352 + 20 +10842.04955 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +801 + 8 +HOLZ + 10 +7584.565397 + 20 +10834.754462 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +802 + 8 +HOLZ + 10 +7583.973585 + 20 +10827.820287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +803 + 8 +HOLZ + 10 +7583.040734 + 20 +10821.14677 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +804 + 8 +HOLZ + 10 +7581.706664 + 20 +10814.633657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +805 + 8 +HOLZ + 10 +7579.911194 + 20 +10808.180694 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +806 + 8 +HOLZ + 10 +7577.594143 + 20 +10801.687627 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +807 + 8 +HOLZ + 10 +7574.695331 + 20 +10795.054202 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +808 + 8 +HOLZ + 10 +7584.966631 + 20 +10828.418456 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +809 + 8 +HOLZ + 10 +7583.254673 + 20 +10813.019596 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +80A + 8 +HOLZ + 10 +7574.695331 + 20 +10795.054202 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +80B + 8 +HOLZ + 0 +POLYLINE + 5 +80C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1465 + 8 +HOLZ + 10 +6474.124716 + 20 +10159.372965 + 30 +0.0 + 0 +VERTEX + 5 +1466 + 8 +HOLZ + 10 +6500.858061 + 20 +10121.674226 + 30 +0.0 + 0 +SEQEND + 5 +1467 + 8 +HOLZ + 0 +POLYLINE + 5 +810 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +811 + 8 +HOLZ + 10 +6504.364022 + 20 +10175.429817 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +812 + 8 +HOLZ + 10 +6504.364022 + 20 +10175.429817 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +813 + 8 +HOLZ + 10 +6503.880872 + 20 +10169.394585 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +814 + 8 +HOLZ + 10 +6503.066721 + 20 +10163.559854 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +815 + 8 +HOLZ + 10 +6501.911536 + 20 +10158.04593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +816 + 8 +HOLZ + 10 +6500.405287 + 20 +10152.973117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +817 + 8 +HOLZ + 10 +6498.537943 + 20 +10148.461722 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +818 + 8 +HOLZ + 10 +6496.299473 + 20 +10144.632051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +819 + 8 +HOLZ + 10 +6493.679845 + 20 +10141.604407 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +81A + 8 +HOLZ + 10 +6490.66903 + 20 +10139.499098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +81B + 8 +HOLZ + 10 +6503.508043 + 20 +10159.175469 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +81C + 8 +HOLZ + 10 +6499.228372 + 20 +10143.776539 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +81D + 8 +HOLZ + 10 +6490.66903 + 20 +10139.499098 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +81E + 8 +HOLZ + 0 +POLYLINE + 5 +81F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +820 + 8 +HOLZ + 10 +6662.71219 + 20 +10271.245068 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +821 + 8 +HOLZ + 10 +6662.71219 + 20 +10271.245068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +822 + 8 +HOLZ + 10 +6664.298691 + 20 +10265.189789 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +823 + 8 +HOLZ + 10 +6665.29339 + 20 +10259.21471 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +824 + 8 +HOLZ + 10 +6665.826683 + 20 +10253.319832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +825 + 8 +HOLZ + 10 +6666.028969 + 20 +10247.505154 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +826 + 8 +HOLZ + 10 +6666.030645 + 20 +10241.770674 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +827 + 8 +HOLZ + 10 +6665.962109 + 20 +10236.116392 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +828 + 8 +HOLZ + 10 +6665.953759 + 20 +10230.542308 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +829 + 8 +HOLZ + 10 +6666.135994 + 20 +10225.048419 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +82A + 8 +HOLZ + 10 +6667.84784 + 20 +10254.99072 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +82B + 8 +HOLZ + 10 +6665.280015 + 20 +10239.59186 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +82C + 8 +HOLZ + 10 +6666.135994 + 20 +10225.048419 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +82D + 8 +HOLZ + 0 +POLYLINE + 5 +82E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +82F + 8 +HOLZ + 10 +6692.67 + 20 +10278.944533 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +830 + 8 +HOLZ + 10 +6692.67 + 20 +10278.944533 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +831 + 8 +HOLZ + 10 +6693.238386 + 20 +10273.819934 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +832 + 8 +HOLZ + 10 +6693.68641 + 20 +10269.70789 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +833 + 8 +HOLZ + 10 +6694.054194 + 20 +10266.177312 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +834 + 8 +HOLZ + 10 +6694.38186 + 20 +10262.797112 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +835 + 8 +HOLZ + 10 +6694.709531 + 20 +10259.136202 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +836 + 8 +HOLZ + 10 +6695.07733 + 20 +10254.763493 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +837 + 8 +HOLZ + 10 +6695.52538 + 20 +10249.247897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +838 + 8 +HOLZ + 10 +6696.093803 + 20 +10242.158325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +839 + 8 +HOLZ + 10 +6694.381846 + 20 +10263.545673 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +83A + 8 +HOLZ + 10 +6696.093803 + 20 +10242.158325 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +83B + 8 +HOLZ + 0 +POLYLINE + 5 +83C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1468 + 8 +HOLZ + 10 +6686.13674 + 20 +10291.852781 + 30 +0.0 + 0 +VERTEX + 5 +1469 + 8 +HOLZ + 10 +6712.870085 + 20 +10254.154042 + 30 +0.0 + 0 +SEQEND + 5 +146A + 8 +HOLZ + 0 +POLYLINE + 5 +840 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +841 + 8 +HOLZ + 10 +6593.381361 + 20 +10231.036907 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +842 + 8 +HOLZ + 10 +6593.381361 + 20 +10231.036907 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +843 + 8 +HOLZ + 10 +6594.075154 + 20 +10223.038376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +844 + 8 +HOLZ + 10 +6593.795979 + 20 +10215.651391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +845 + 8 +HOLZ + 10 +6592.854784 + 20 +10208.765671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +846 + 8 +HOLZ + 10 +6591.562517 + 20 +10202.270938 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +847 + 8 +HOLZ + 10 +6590.230126 + 20 +10196.056912 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +848 + 8 +HOLZ + 10 +6589.168559 + 20 +10190.013313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +849 + 8 +HOLZ + 10 +6588.688765 + 20 +10184.029863 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +84A + 8 +HOLZ + 10 +6589.10169 + 20 +10177.996282 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +84B + 8 +HOLZ + 10 +6596.805165 + 20 +10208.794071 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +84C + 8 +HOLZ + 10 +6586.533865 + 20 +10194.2507 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +84D + 8 +HOLZ + 10 +6589.10169 + 20 +10177.996282 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +84E + 8 +HOLZ + 0 +POLYLINE + 5 +84F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +850 + 8 +HOLZ + 10 +6626.762863 + 20 +10250.713278 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +851 + 8 +HOLZ + 10 +6626.762863 + 20 +10250.713278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +852 + 8 +HOLZ + 10 +6630.918858 + 20 +10244.586128 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +853 + 8 +HOLZ + 10 +6633.851119 + 20 +10238.428908 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +854 + 8 +HOLZ + 10 +6635.700076 + 20 +10232.291743 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +855 + 8 +HOLZ + 10 +6636.60616 + 20 +10226.224759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +856 + 8 +HOLZ + 10 +6636.7098 + 20 +10220.278082 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +857 + 8 +HOLZ + 10 +6636.151426 + 20 +10214.501836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +858 + 8 +HOLZ + 10 +6635.071469 + 20 +10208.946147 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +859 + 8 +HOLZ + 10 +6633.610359 + 20 +10203.661141 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +85A + 8 +HOLZ + 10 +6639.601988 + 20 +10234.458861 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +85B + 8 +HOLZ + 10 +6637.89003 + 20 +10217.349024 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +85C + 8 +HOLZ + 10 +6633.610359 + 20 +10203.661141 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +85D + 8 +HOLZ + 0 +POLYLINE + 5 +85E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +85F + 8 +HOLZ + 10 +6768.58819 + 20 +10340.418399 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +860 + 8 +HOLZ + 10 +6768.58819 + 20 +10340.418399 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +861 + 8 +HOLZ + 10 +6772.244307 + 20 +10330.219305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +862 + 8 +HOLZ + 10 +6774.887342 + 20 +10322.346086 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +863 + 8 +HOLZ + 10 +6776.547387 + 20 +10316.237325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +864 + 8 +HOLZ + 10 +6777.25453 + 20 +10311.331604 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +865 + 8 +HOLZ + 10 +6777.038863 + 20 +10307.067506 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +866 + 8 +HOLZ + 10 +6775.930476 + 20 +10302.883613 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +867 + 8 +HOLZ + 10 +6773.95946 + 20 +10298.218508 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +868 + 8 +HOLZ + 10 +6771.155904 + 20 +10292.510773 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +869 + 8 +HOLZ + 10 +6779.715358 + 20 +10309.62061 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +86A + 8 +HOLZ + 10 +6771.155904 + 20 +10292.510773 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +86B + 8 +HOLZ + 0 +POLYLINE + 5 +86C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +86D + 8 +HOLZ + 10 +6736.918534 + 20 +10319.886539 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +86E + 8 +HOLZ + 10 +6736.918534 + 20 +10319.886539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +86F + 8 +HOLZ + 10 +6736.828256 + 20 +10312.130285 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +870 + 8 +HOLZ + 10 +6736.517301 + 20 +10304.835198 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +871 + 8 +HOLZ + 10 +6735.925489 + 20 +10297.901023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +872 + 8 +HOLZ + 10 +6734.992638 + 20 +10291.227506 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +873 + 8 +HOLZ + 10 +6733.658568 + 20 +10284.714393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +874 + 8 +HOLZ + 10 +6731.863098 + 20 +10278.26143 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +875 + 8 +HOLZ + 10 +6729.546047 + 20 +10271.768363 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +876 + 8 +HOLZ + 10 +6726.647235 + 20 +10265.134937 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +877 + 8 +HOLZ + 10 +6736.918534 + 20 +10298.499192 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +878 + 8 +HOLZ + 10 +6735.206577 + 20 +10283.100332 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +879 + 8 +HOLZ + 10 +6726.647235 + 20 +10265.134937 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +87A + 8 +HOLZ + 0 +POLYLINE + 5 +87B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +87C + 8 +HOLZ + 10 +6543.737041 + 20 +10201.094606 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +87D + 8 +HOLZ + 10 +6543.737041 + 20 +10201.094606 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +87E + 8 +HOLZ + 10 +6543.447851 + 20 +10192.003326 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +87F + 8 +HOLZ + 10 +6543.188746 + 20 +10184.826877 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +880 + 8 +HOLZ + 10 +6542.909574 + 20 +10178.913616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +881 + 8 +HOLZ + 10 +6542.560182 + 20 +10173.611895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +882 + 8 +HOLZ + 10 +6542.090418 + 20 +10168.270071 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +883 + 8 +HOLZ + 10 +6541.45013 + 20 +10162.236497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +884 + 8 +HOLZ + 10 +6540.589165 + 20 +10154.859527 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +885 + 8 +HOLZ + 10 +6539.45737 + 20 +10145.487516 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +886 + 8 +HOLZ + 10 +6542.881174 + 20 +10173.71884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +887 + 8 +HOLZ + 10 +6539.45737 + 20 +10145.487516 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +888 + 8 +HOLZ + 0 +POLYLINE + 5 +889 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +88A + 8 +HOLZ + 10 +6838.774887 + 20 +10383.193094 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +88B + 8 +HOLZ + 10 +6838.774887 + 20 +10383.193094 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +88C + 8 +HOLZ + 10 +6842.930882 + 20 +10377.065944 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +88D + 8 +HOLZ + 10 +6845.863143 + 20 +10370.908724 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +88E + 8 +HOLZ + 10 +6847.7121 + 20 +10364.771559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +88F + 8 +HOLZ + 10 +6848.618184 + 20 +10358.704575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +890 + 8 +HOLZ + 10 +6848.721824 + 20 +10352.757898 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +891 + 8 +HOLZ + 10 +6848.16345 + 20 +10346.981652 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +892 + 8 +HOLZ + 10 +6847.083493 + 20 +10341.425963 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +893 + 8 +HOLZ + 10 +6845.622383 + 20 +10336.140957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +894 + 8 +HOLZ + 10 +6851.614012 + 20 +10366.938677 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +895 + 8 +HOLZ + 10 +6849.902054 + 20 +10349.82884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +896 + 8 +HOLZ + 10 +6845.622383 + 20 +10336.140957 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +897 + 8 +HOLZ + 0 +POLYLINE + 5 +898 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +899 + 8 +HOLZ + 10 +6805.393385 + 20 +10363.516723 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +89A + 8 +HOLZ + 10 +6805.393385 + 20 +10363.516723 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +89B + 8 +HOLZ + 10 +6806.087178 + 20 +10355.518192 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +89C + 8 +HOLZ + 10 +6805.808003 + 20 +10348.131207 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +89D + 8 +HOLZ + 10 +6804.866808 + 20 +10341.245487 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +89E + 8 +HOLZ + 10 +6803.574541 + 20 +10334.750754 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +89F + 8 +HOLZ + 10 +6802.24215 + 20 +10328.536728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8A0 + 8 +HOLZ + 10 +6801.180584 + 20 +10322.493129 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8A1 + 8 +HOLZ + 10 +6800.700789 + 20 +10316.509679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8A2 + 8 +HOLZ + 10 +6801.113714 + 20 +10310.476098 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8A3 + 8 +HOLZ + 10 +6808.817189 + 20 +10341.273887 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8A4 + 8 +HOLZ + 10 +6798.545889 + 20 +10326.730516 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8A5 + 8 +HOLZ + 10 +6801.113714 + 20 +10310.476098 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +8A6 + 8 +HOLZ + 0 +POLYLINE + 5 +8A7 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +146B + 8 +HOLZ + 10 +6898.148764 + 20 +10424.332597 + 30 +0.0 + 0 +VERTEX + 5 +146C + 8 +HOLZ + 10 +6924.882109 + 20 +10386.633858 + 30 +0.0 + 0 +SEQEND + 5 +146D + 8 +HOLZ + 0 +POLYLINE + 5 +8AB + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +8AC + 8 +HOLZ + 10 +6904.682024 + 20 +10411.424349 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8AD + 8 +HOLZ + 10 +6904.682024 + 20 +10411.424349 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8AE + 8 +HOLZ + 10 +6905.25041 + 20 +10406.29975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8AF + 8 +HOLZ + 10 +6905.698434 + 20 +10402.187706 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B0 + 8 +HOLZ + 10 +6906.066218 + 20 +10398.657128 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B1 + 8 +HOLZ + 10 +6906.393884 + 20 +10395.276928 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B2 + 8 +HOLZ + 10 +6906.721555 + 20 +10391.616018 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B3 + 8 +HOLZ + 10 +6907.089354 + 20 +10387.243309 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B4 + 8 +HOLZ + 10 +6907.537404 + 20 +10381.727713 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B5 + 8 +HOLZ + 10 +6908.105827 + 20 +10374.638141 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8B6 + 8 +HOLZ + 10 +6906.39387 + 20 +10396.025489 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8B7 + 8 +HOLZ + 10 +6908.105827 + 20 +10374.638141 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +8B8 + 8 +HOLZ + 0 +POLYLINE + 5 +8B9 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +8BA + 8 +HOLZ + 10 +6874.724214 + 20 +10403.724884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8BB + 8 +HOLZ + 10 +6874.724214 + 20 +10403.724884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8BC + 8 +HOLZ + 10 +6876.310715 + 20 +10397.669605 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8BD + 8 +HOLZ + 10 +6877.305414 + 20 +10391.694526 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8BE + 8 +HOLZ + 10 +6877.838707 + 20 +10385.799648 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8BF + 8 +HOLZ + 10 +6878.040993 + 20 +10379.98497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8C0 + 8 +HOLZ + 10 +6878.042669 + 20 +10374.25049 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8C1 + 8 +HOLZ + 10 +6877.974133 + 20 +10368.596208 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8C2 + 8 +HOLZ + 10 +6877.965784 + 20 +10363.022124 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8C3 + 8 +HOLZ + 10 +6878.148018 + 20 +10357.528235 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8C4 + 8 +HOLZ + 10 +6879.859864 + 20 +10387.470536 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8C5 + 8 +HOLZ + 10 +6877.292039 + 20 +10372.071676 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8C6 + 8 +HOLZ + 10 +6878.148018 + 20 +10357.528235 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +8C7 + 8 +HOLZ + 0 +POLYLINE + 5 +8C8 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +8C9 + 8 +HOLZ + 10 +6100.882462 + 20 +9922.447091 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8CA + 8 +HOLZ + 10 +6100.882462 + 20 +9922.447091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8CB + 8 +HOLZ + 10 +6100.792184 + 20 +9914.690837 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8CC + 8 +HOLZ + 10 +6100.481229 + 20 +9907.39575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8CD + 8 +HOLZ + 10 +6099.889417 + 20 +9900.461575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8CE + 8 +HOLZ + 10 +6098.956566 + 20 +9893.788058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8CF + 8 +HOLZ + 10 +6097.622496 + 20 +9887.274945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8D0 + 8 +HOLZ + 10 +6095.827026 + 20 +9880.821982 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8D1 + 8 +HOLZ + 10 +6093.509975 + 20 +9874.328915 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8D2 + 8 +HOLZ + 10 +6090.611162 + 20 +9867.695489 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8D3 + 8 +HOLZ + 10 +6100.882462 + 20 +9901.059743 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8D4 + 8 +HOLZ + 10 +6099.170505 + 20 +9885.660884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8D5 + 8 +HOLZ + 10 +6090.611162 + 20 +9867.695489 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +8D6 + 8 +HOLZ + 0 +POLYLINE + 5 +8D7 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +8D8 + 8 +HOLZ + 10 +6132.552118 + 20 +9942.978951 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8D9 + 8 +HOLZ + 10 +6132.552118 + 20 +9942.978951 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8DA + 8 +HOLZ + 10 +6136.208235 + 20 +9932.779856 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8DB + 8 +HOLZ + 10 +6138.85127 + 20 +9924.906638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8DC + 8 +HOLZ + 10 +6140.511314 + 20 +9918.797876 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8DD + 8 +HOLZ + 10 +6141.218458 + 20 +9913.892156 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8DE + 8 +HOLZ + 10 +6141.002791 + 20 +9909.628057 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8DF + 8 +HOLZ + 10 +6139.894404 + 20 +9905.444165 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8E0 + 8 +HOLZ + 10 +6137.923388 + 20 +9900.77906 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8E1 + 8 +HOLZ + 10 +6135.119832 + 20 +9895.071325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8E2 + 8 +HOLZ + 10 +6143.679286 + 20 +9912.181161 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8E3 + 8 +HOLZ + 10 +6135.119832 + 20 +9895.071325 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +8E4 + 8 +HOLZ + 0 +POLYLINE + 5 +8E5 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +8E6 + 8 +HOLZ + 10 +6169.357313 + 20 +9966.077275 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8E7 + 8 +HOLZ + 10 +6169.357313 + 20 +9966.077275 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8E8 + 8 +HOLZ + 10 +6170.051106 + 20 +9958.078744 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8E9 + 8 +HOLZ + 10 +6169.771931 + 20 +9950.691758 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8EA + 8 +HOLZ + 10 +6168.830736 + 20 +9943.806039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8EB + 8 +HOLZ + 10 +6167.538469 + 20 +9937.311306 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8EC + 8 +HOLZ + 10 +6166.206078 + 20 +9931.09728 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8ED + 8 +HOLZ + 10 +6165.144511 + 20 +9925.053681 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8EE + 8 +HOLZ + 10 +6164.664716 + 20 +9919.070231 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8EF + 8 +HOLZ + 10 +6165.077642 + 20 +9913.03665 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8F0 + 8 +HOLZ + 10 +6172.781116 + 20 +9943.834439 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8F1 + 8 +HOLZ + 10 +6162.509817 + 20 +9929.291068 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8F2 + 8 +HOLZ + 10 +6165.077642 + 20 +9913.03665 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +8F3 + 8 +HOLZ + 0 +POLYLINE + 5 +8F4 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +146E + 8 +HOLZ + 10 +6262.112692 + 20 +10026.893149 + 30 +0.0 + 0 +VERTEX + 5 +146F + 8 +HOLZ + 10 +6288.846037 + 20 +9989.19441 + 30 +0.0 + 0 +SEQEND + 5 +1470 + 8 +HOLZ + 0 +POLYLINE + 5 +8F8 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +8F9 + 8 +HOLZ + 10 +6268.645952 + 20 +10013.984901 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +8FA + 8 +HOLZ + 10 +6268.645952 + 20 +10013.984901 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8FB + 8 +HOLZ + 10 +6269.214338 + 20 +10008.860302 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8FC + 8 +HOLZ + 10 +6269.662362 + 20 +10004.748258 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8FD + 8 +HOLZ + 10 +6270.030146 + 20 +10001.21768 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8FE + 8 +HOLZ + 10 +6270.357812 + 20 +9997.83748 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +8FF + 8 +HOLZ + 10 +6270.685483 + 20 +9994.17657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +900 + 8 +HOLZ + 10 +6271.053282 + 20 +9989.803861 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +901 + 8 +HOLZ + 10 +6271.501332 + 20 +9984.288265 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +902 + 8 +HOLZ + 10 +6272.069755 + 20 +9977.198693 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +903 + 8 +HOLZ + 10 +6270.357798 + 20 +9998.586041 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +904 + 8 +HOLZ + 10 +6272.069755 + 20 +9977.198693 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +905 + 8 +HOLZ + 0 +POLYLINE + 5 +906 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +907 + 8 +HOLZ + 10 +6234.370229 + 20 +10008.81155 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +908 + 8 +HOLZ + 10 +6234.370229 + 20 +10008.81155 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +909 + 8 +HOLZ + 10 +6237.381979 + 20 +10001.922455 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +90A + 8 +HOLZ + 10 +6239.447722 + 20 +9995.320782 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +90B + 8 +HOLZ + 10 +6240.748457 + 20 +9988.976927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +90C + 8 +HOLZ + 10 +6241.465181 + 20 +9982.861286 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +90D + 8 +HOLZ + 10 +6241.778894 + 20 +9976.944255 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +90E + 8 +HOLZ + 10 +6241.870594 + 20 +9971.196231 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +90F + 8 +HOLZ + 10 +6241.921278 + 20 +9965.587609 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +910 + 8 +HOLZ + 10 +6242.111946 + 20 +9960.088787 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +911 + 8 +HOLZ + 10 +6243.823792 + 20 +9990.031088 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +912 + 8 +HOLZ + 10 +6241.255967 + 20 +9974.632228 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +913 + 8 +HOLZ + 10 +6242.111946 + 20 +9960.088787 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +914 + 8 +HOLZ + 0 +POLYLINE + 5 +915 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +916 + 8 +HOLZ + 10 +6202.738815 + 20 +9985.753646 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +917 + 8 +HOLZ + 10 +6202.738815 + 20 +9985.753646 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +918 + 8 +HOLZ + 10 +6206.89481 + 20 +9979.626496 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +919 + 8 +HOLZ + 10 +6209.827071 + 20 +9973.469276 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +91A + 8 +HOLZ + 10 +6211.676028 + 20 +9967.332111 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +91B + 8 +HOLZ + 10 +6212.582111 + 20 +9961.265127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +91C + 8 +HOLZ + 10 +6212.685751 + 20 +9955.318449 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +91D + 8 +HOLZ + 10 +6212.127378 + 20 +9949.542204 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +91E + 8 +HOLZ + 10 +6211.047421 + 20 +9943.986515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +91F + 8 +HOLZ + 10 +6209.586311 + 20 +9938.701509 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +920 + 8 +HOLZ + 10 +6215.57794 + 20 +9969.499229 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +921 + 8 +HOLZ + 10 +6213.865982 + 20 +9952.389392 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +922 + 8 +HOLZ + 10 +6209.586311 + 20 +9938.701509 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +923 + 8 +HOLZ + 0 +POLYLINE + 5 +924 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +925 + 8 +HOLZ + 10 +6450.700166 + 20 +10138.765252 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +926 + 8 +HOLZ + 10 +6450.700166 + 20 +10138.765252 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +927 + 8 +HOLZ + 10 +6452.286667 + 20 +10132.709973 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +928 + 8 +HOLZ + 10 +6453.281366 + 20 +10126.734894 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +929 + 8 +HOLZ + 10 +6453.814659 + 20 +10120.840016 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +92A + 8 +HOLZ + 10 +6454.016945 + 20 +10115.025338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +92B + 8 +HOLZ + 10 +6454.018621 + 20 +10109.290858 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +92C + 8 +HOLZ + 10 +6453.950085 + 20 +10103.636576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +92D + 8 +HOLZ + 10 +6453.941735 + 20 +10098.062491 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +92E + 8 +HOLZ + 10 +6454.12397 + 20 +10092.568603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +92F + 8 +HOLZ + 10 +6455.835816 + 20 +10122.510904 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +930 + 8 +HOLZ + 10 +6453.267991 + 20 +10107.112044 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +931 + 8 +HOLZ + 10 +6454.12397 + 20 +10092.568603 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +932 + 8 +HOLZ + 0 +POLYLINE + 5 +933 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +934 + 8 +HOLZ + 10 +6381.369337 + 20 +10098.557091 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +935 + 8 +HOLZ + 10 +6381.369337 + 20 +10098.557091 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +936 + 8 +HOLZ + 10 +6382.06313 + 20 +10090.55856 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +937 + 8 +HOLZ + 10 +6381.783955 + 20 +10083.171574 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +938 + 8 +HOLZ + 10 +6380.84276 + 20 +10076.285855 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +939 + 8 +HOLZ + 10 +6379.550493 + 20 +10069.791122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +93A + 8 +HOLZ + 10 +6378.218102 + 20 +10063.577096 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +93B + 8 +HOLZ + 10 +6377.156535 + 20 +10057.533497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +93C + 8 +HOLZ + 10 +6376.676741 + 20 +10051.550047 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +93D + 8 +HOLZ + 10 +6377.089666 + 20 +10045.516466 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +93E + 8 +HOLZ + 10 +6384.79314 + 20 +10076.314255 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +93F + 8 +HOLZ + 10 +6374.521841 + 20 +10061.770884 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +940 + 8 +HOLZ + 10 +6377.089666 + 20 +10045.516466 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +941 + 8 +HOLZ + 0 +POLYLINE + 5 +942 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +943 + 8 +HOLZ + 10 +6414.750839 + 20 +10118.233462 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +944 + 8 +HOLZ + 10 +6414.750839 + 20 +10118.233462 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +945 + 8 +HOLZ + 10 +6418.906834 + 20 +10112.106312 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +946 + 8 +HOLZ + 10 +6421.839095 + 20 +10105.949092 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +947 + 8 +HOLZ + 10 +6423.688052 + 20 +10099.811927 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +948 + 8 +HOLZ + 10 +6424.594135 + 20 +10093.744943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +949 + 8 +HOLZ + 10 +6424.697775 + 20 +10087.798266 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +94A + 8 +HOLZ + 10 +6424.139402 + 20 +10082.02202 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +94B + 8 +HOLZ + 10 +6423.059445 + 20 +10076.466331 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +94C + 8 +HOLZ + 10 +6421.598335 + 20 +10071.181325 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +94D + 8 +HOLZ + 10 +6427.589964 + 20 +10101.979045 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +94E + 8 +HOLZ + 10 +6425.878006 + 20 +10084.869208 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +94F + 8 +HOLZ + 10 +6421.598335 + 20 +10071.181325 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +950 + 8 +HOLZ + 0 +POLYLINE + 5 +951 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +952 + 8 +HOLZ + 10 +6312.894486 + 20 +10054.926907 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +953 + 8 +HOLZ + 10 +6312.894486 + 20 +10054.926907 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +954 + 8 +HOLZ + 10 +6312.804208 + 20 +10047.170653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +955 + 8 +HOLZ + 10 +6312.493253 + 20 +10039.875566 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +956 + 8 +HOLZ + 10 +6311.901441 + 20 +10032.941391 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +957 + 8 +HOLZ + 10 +6310.96859 + 20 +10026.267874 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +958 + 8 +HOLZ + 10 +6309.63452 + 20 +10019.754761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +959 + 8 +HOLZ + 10 +6307.83905 + 20 +10013.301798 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +95A + 8 +HOLZ + 10 +6305.521999 + 20 +10006.808731 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +95B + 8 +HOLZ + 10 +6302.623186 + 20 +10000.175305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +95C + 8 +HOLZ + 10 +6312.894486 + 20 +10033.539559 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +95D + 8 +HOLZ + 10 +6311.182529 + 20 +10018.1407 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +95E + 8 +HOLZ + 10 +6302.623186 + 20 +10000.175305 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +95F + 8 +HOLZ + 0 +POLYLINE + 5 +960 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +961 + 8 +HOLZ + 10 +6344.564142 + 20 +10075.458767 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +962 + 8 +HOLZ + 10 +6344.564142 + 20 +10075.458767 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +963 + 8 +HOLZ + 10 +6348.220259 + 20 +10065.259673 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +964 + 8 +HOLZ + 10 +6350.863294 + 20 +10057.386454 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +965 + 8 +HOLZ + 10 +6352.523339 + 20 +10051.277692 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +966 + 8 +HOLZ + 10 +6353.230482 + 20 +10046.371972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +967 + 8 +HOLZ + 10 +6353.014815 + 20 +10042.107874 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +968 + 8 +HOLZ + 10 +6351.906428 + 20 +10037.923981 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +969 + 8 +HOLZ + 10 +6349.935412 + 20 +10033.258876 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +96A + 8 +HOLZ + 10 +6347.131856 + 20 +10027.551141 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +96B + 8 +HOLZ + 10 +6355.69131 + 20 +10044.660978 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +96C + 8 +HOLZ + 10 +6347.131856 + 20 +10027.551141 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +96D + 8 +HOLZ + 0 +POLYLINE + 5 +96E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1471 + 8 +HOLZ + 10 +6474.124716 + 20 +10159.372965 + 30 +0.0 + 0 +VERTEX + 5 +1472 + 8 +HOLZ + 10 +6500.858061 + 20 +10121.674226 + 30 +0.0 + 0 +SEQEND + 5 +1473 + 8 +HOLZ + 0 +POLYLINE + 5 +972 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1474 + 8 +HOLZ + 10 +6050.100668 + 20 +9894.413333 + 30 +0.0 + 0 +VERTEX + 5 +1475 + 8 +HOLZ + 10 +6076.834013 + 20 +9856.714594 + 30 +0.0 + 0 +SEQEND + 5 +1476 + 8 +HOLZ + 0 +POLYLINE + 5 +976 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +977 + 8 +HOLZ + 10 +6042.825133 + 20 +9892.292137 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +978 + 8 +HOLZ + 10 +6042.825133 + 20 +9892.292137 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +979 + 8 +HOLZ + 10 +6042.535943 + 20 +9883.200856 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +97A + 8 +HOLZ + 10 +6042.276838 + 20 +9876.024408 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +97B + 8 +HOLZ + 10 +6041.997665 + 20 +9870.111146 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +97C + 8 +HOLZ + 10 +6041.648273 + 20 +9864.809426 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +97D + 8 +HOLZ + 10 +6041.17851 + 20 +9859.467602 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +97E + 8 +HOLZ + 10 +6040.538221 + 20 +9853.434027 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +97F + 8 +HOLZ + 10 +6039.677256 + 20 +9846.057058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +980 + 8 +HOLZ + 10 +6038.545462 + 20 +9836.685047 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +981 + 8 +HOLZ + 10 +6041.969266 + 20 +9864.916371 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +982 + 8 +HOLZ + 10 +6038.545462 + 20 +9836.685047 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +983 + 8 +HOLZ + 0 +POLYLINE + 5 +984 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1477 + 8 +HOLZ + 10 +6005.4236 + 20 +9868.597785 + 30 +0.0 + 0 +VERTEX + 5 +1478 + 8 +HOLZ + 10 +6004.94045 + 20 +9862.562553 + 30 +0.0 + 0 +VERTEX + 5 +1479 + 8 +HOLZ + 10 +6004.126299 + 20 +9856.727822 + 30 +0.0 + 0 +VERTEX + 5 +147A + 8 +HOLZ + 10 +6002.971114 + 20 +9851.213898 + 30 +0.0 + 0 +VERTEX + 5 +147B + 8 +HOLZ + 10 +6001.464865 + 20 +9846.141085 + 30 +0.0 + 0 +VERTEX + 5 +147C + 8 +HOLZ + 10 +5999.597521 + 20 +9841.62969 + 30 +0.0 + 0 +VERTEX + 5 +147D + 8 +HOLZ + 10 +5998.855455 + 20 +9840.360132 + 30 +0.0 + 0 +SEQEND + 5 +147E + 8 +HOLZ + 0 +POLYLINE + 5 +98D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +147F + 8 +HOLZ + 10 +4446.342791 + 20 +9574.389715 + 30 +0.0 + 0 +VERTEX + 5 +1480 + 8 +HOLZ + 10 +4361.85938 + 20 +9710.360132 + 30 +0.0 + 0 +VERTEX + 5 +1481 + 8 +HOLZ + 10 +4471.85938 + 20 +9770.360132 + 30 +0.0 + 0 +VERTEX + 5 +1482 + 8 +HOLZ + 10 +4552.348803 + 20 +9640.629623 + 30 +0.0 + 0 +SEQEND + 5 +1483 + 8 +HOLZ + 0 +POLYLINE + 5 +993 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +994 + 8 +HOLZ + 10 +4419.014832 + 20 +9699.411535 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +995 + 8 +HOLZ + 10 +4419.014832 + 20 +9699.411535 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +996 + 8 +HOLZ + 10 +4420.597374 + 20 +9686.947504 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +997 + 8 +HOLZ + 10 +4421.639538 + 20 +9675.93016 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +998 + 8 +HOLZ + 10 +4422.141324 + 20 +9666.108742 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +999 + 8 +HOLZ + 10 +4422.10273 + 20 +9657.232493 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99A + 8 +HOLZ + 10 +4421.523754 + 20 +9649.050653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99B + 8 +HOLZ + 10 +4420.404395 + 20 +9641.312461 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99C + 8 +HOLZ + 10 +4418.744653 + 20 +9633.767158 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99D + 8 +HOLZ + 10 +4416.544525 + 20 +9626.163986 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +99E + 8 +HOLZ + 10 +4423.955446 + 20 +9664.022305 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +99F + 8 +HOLZ + 10 +4423.132047 + 20 +9646.73917 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9A0 + 8 +HOLZ + 10 +4416.544525 + 20 +9626.163986 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9A1 + 8 +HOLZ + 0 +POLYLINE + 5 +9A2 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +9A3 + 8 +HOLZ + 10 +4444.5413 + 20 +9717.5177 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9A4 + 8 +HOLZ + 10 +4444.5413 + 20 +9717.5177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A5 + 8 +HOLZ + 10 +4448.560337 + 20 +9702.188804 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A6 + 8 +HOLZ + 10 +4451.450376 + 20 +9689.326515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A7 + 8 +HOLZ + 10 +4453.356159 + 20 +9678.619796 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A8 + 8 +HOLZ + 10 +4454.422431 + 20 +9669.757608 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9A9 + 8 +HOLZ + 10 +4454.793934 + 20 +9662.428912 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AA + 8 +HOLZ + 10 +4454.615412 + 20 +9656.322671 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AB + 8 +HOLZ + 10 +4454.031607 + 20 +9651.127845 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AC + 8 +HOLZ + 10 +4453.187264 + 20 +9646.533395 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AD + 8 +HOLZ + 10 +4452.191743 + 20 +9642.233106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AE + 8 +HOLZ + 10 +4451.012879 + 20 +9637.940051 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9AF + 8 +HOLZ + 10 +4449.583126 + 20 +9633.372124 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B0 + 8 +HOLZ + 10 +4447.834936 + 20 +9628.247221 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B1 + 8 +HOLZ + 10 +4445.700763 + 20 +9622.283237 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B2 + 8 +HOLZ + 10 +4443.113059 + 20 +9615.198068 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B3 + 8 +HOLZ + 10 +4440.004277 + 20 +9606.709608 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B4 + 8 +HOLZ + 10 +4436.30687 + 20 +9596.535754 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9B5 + 8 +HOLZ + 10 +4456.892724 + 20 +9673.075353 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9B6 + 8 +HOLZ + 10 +4454.422417 + 20 +9643.447121 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9B7 + 8 +HOLZ + 10 +4447.011496 + 20 +9626.163986 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9B8 + 8 +HOLZ + 10 +4436.30687 + 20 +9596.535754 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9B9 + 8 +HOLZ + 0 +POLYLINE + 5 +9BA + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +9BB + 8 +HOLZ + 10 +4467.597351 + 20 +9734.800836 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9BC + 8 +HOLZ + 10 +4467.597351 + 20 +9734.800836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BD + 8 +HOLZ + 10 +4471.688771 + 20 +9717.675229 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BE + 8 +HOLZ + 10 +4475.317014 + 20 +9703.115088 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9BF + 8 +HOLZ + 10 +4478.482079 + 20 +9690.792495 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C0 + 8 +HOLZ + 10 +4481.183966 + 20 +9680.379534 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C1 + 8 +HOLZ + 10 +4483.422674 + 20 +9671.548289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C2 + 8 +HOLZ + 10 +4485.198203 + 20 +9663.970842 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C3 + 8 +HOLZ + 10 +4486.510553 + 20 +9657.319276 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C4 + 8 +HOLZ + 10 +4487.359723 + 20 +9651.265676 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C5 + 8 +HOLZ + 10 +4487.729631 + 20 +9645.490162 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C6 + 8 +HOLZ + 10 +4487.539862 + 20 +9639.705003 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C7 + 8 +HOLZ + 10 +4486.693921 + 20 +9633.630506 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C8 + 8 +HOLZ + 10 +4485.095311 + 20 +9626.986978 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9C9 + 8 +HOLZ + 10 +4482.647536 + 20 +9619.494727 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CA + 8 +HOLZ + 10 +4479.2541 + 20 +9610.874058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CB + 8 +HOLZ + 10 +4474.818506 + 20 +9600.845279 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CC + 8 +HOLZ + 10 +4469.244259 + 20 +9589.128696 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9CD + 8 +HOLZ + 10 +4479.125376 + 20 +9685.420449 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9CE + 8 +HOLZ + 10 +4492.300309 + 20 +9648.38516 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9CF + 8 +HOLZ + 10 +4485.712898 + 20 +9622.871937 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D0 + 8 +HOLZ + 10 +4469.244259 + 20 +9589.128696 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9D1 + 8 +HOLZ + 0 +POLYLINE + 5 +9D2 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +9D3 + 8 +HOLZ + 10 +4508.768949 + 20 +9705.995564 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9D4 + 8 +HOLZ + 10 +4508.768949 + 20 +9705.995564 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D5 + 8 +HOLZ + 10 +4510.327368 + 20 +9689.92285 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D6 + 8 +HOLZ + 10 +4511.355062 + 20 +9675.094284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D7 + 8 +HOLZ + 10 +4511.938874 + 20 +9661.596669 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D8 + 8 +HOLZ + 10 +4512.165648 + 20 +9649.516808 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9D9 + 8 +HOLZ + 10 +4512.12223 + 20 +9638.941502 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9DA + 8 +HOLZ + 10 +4511.895462 + 20 +9629.957553 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9DB + 8 +HOLZ + 10 +4511.572189 + 20 +9622.651765 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9DC + 8 +HOLZ + 10 +4511.239256 + 20 +9617.110938 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9DD + 8 +HOLZ + 10 +4513.709563 + 20 +9661.553286 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9DE + 8 +HOLZ + 10 +4512.062765 + 20 +9629.456035 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9DF + 8 +HOLZ + 10 +4511.239256 + 20 +9617.110938 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9E0 + 8 +HOLZ + 0 +POLYLINE + 5 +9E1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1484 + 8 +HOLZ + 10 +4955.171649 + 20 +9892.341274 + 30 +0.0 + 0 +VERTEX + 5 +1485 + 8 +HOLZ + 10 +4915.427704 + 20 +9955.944881 + 30 +0.0 + 0 +VERTEX + 5 +1486 + 8 +HOLZ + 10 +5021.433716 + 20 +10022.184789 + 30 +0.0 + 0 +VERTEX + 5 +1487 + 8 +HOLZ + 10 +5061.177661 + 20 +9958.581182 + 30 +0.0 + 0 +SEQEND + 5 +1488 + 8 +HOLZ + 0 +POLYLINE + 5 +9E7 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +9E8 + 8 +HOLZ + 10 +4942.18729 + 20 +9971.599966 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9E9 + 8 +HOLZ + 10 +4942.18729 + 20 +9971.599966 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EA + 8 +HOLZ + 10 +4942.867744 + 20 +9964.308362 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EB + 8 +HOLZ + 10 +4942.150914 + 20 +9959.979998 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EC + 8 +HOLZ + 10 +4940.337987 + 20 +9957.68412 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9ED + 8 +HOLZ + 10 +4937.730148 + 20 +9956.489972 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EE + 8 +HOLZ + 10 +4934.628582 + 20 +9955.466796 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9EF + 8 +HOLZ + 10 +4931.334476 + 20 +9953.683837 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F0 + 8 +HOLZ + 10 +4928.149014 + 20 +9950.210338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F1 + 8 +HOLZ + 10 +4925.373383 + 20 +9944.115544 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F2 + 8 +HOLZ + 10 +4946.132598 + 20 +9947.377359 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9F3 + 8 +HOLZ + 10 +4931.960905 + 20 +9964.690728 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9F4 + 8 +HOLZ + 10 +4925.373383 + 20 +9944.115544 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +9F5 + 8 +HOLZ + 0 +POLYLINE + 5 +9F6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +9F7 + 8 +HOLZ + 10 +5020.528802 + 20 +10019.48189 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +9F8 + 8 +HOLZ + 10 +5020.528802 + 20 +10019.48189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9F9 + 8 +HOLZ + 10 +5024.42641 + 20 +10004.069081 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FA + 8 +HOLZ + 10 +5026.279178 + 20 +9989.966034 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FB + 8 +HOLZ + 10 +5026.544499 + 20 +9977.21221 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FC + 8 +HOLZ + 10 +5025.679765 + 20 +9965.847067 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FD + 8 +HOLZ + 10 +5024.142367 + 20 +9955.910065 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FE + 8 +HOLZ + 10 +5022.389698 + 20 +9947.440663 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +9FF + 8 +HOLZ + 10 +5020.87915 + 20 +9940.47832 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A00 + 8 +HOLZ + 10 +5020.068113 + 20 +9935.062497 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A01 + 8 +HOLZ + 10 +5034.055445 + 20 +9976.66979 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A02 + 8 +HOLZ + 10 +5020.891623 + 20 +9947.407593 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A03 + 8 +HOLZ + 10 +5020.068113 + 20 +9935.062497 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A04 + 8 +HOLZ + 0 +POLYLINE + 5 +A05 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A06 + 8 +HOLZ + 10 +4968.113282 + 20 +9989.062739 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A07 + 8 +HOLZ + 10 +4968.113282 + 20 +9989.062739 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A08 + 8 +HOLZ + 10 +4968.355733 + 20 +9988.319535 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A09 + 8 +HOLZ + 10 +4968.996122 + 20 +9986.232954 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0A + 8 +HOLZ + 10 +4969.904005 + 20 +9983.017539 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0B + 8 +HOLZ + 10 +4970.948938 + 20 +9978.887836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0C + 8 +HOLZ + 10 +4972.000475 + 20 +9974.058388 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0D + 8 +HOLZ + 10 +4972.928174 + 20 +9968.743741 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0E + 8 +HOLZ + 10 +4973.601589 + 20 +9963.158438 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A0F + 8 +HOLZ + 10 +4973.890277 + 20 +9957.517024 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A10 + 8 +HOLZ + 10 +4973.660744 + 20 +9951.99181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A11 + 8 +HOLZ + 10 +4972.767307 + 20 +9946.586171 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A12 + 8 +HOLZ + 10 +4971.061235 + 20 +9941.261248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A13 + 8 +HOLZ + 10 +4968.393795 + 20 +9935.978182 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A14 + 8 +HOLZ + 10 +4964.616256 + 20 +9930.698114 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A15 + 8 +HOLZ + 10 +4959.579886 + 20 +9925.382186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A16 + 8 +HOLZ + 10 +4953.135954 + 20 +9919.991538 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A17 + 8 +HOLZ + 10 +4945.135727 + 20 +9914.487313 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A18 + 8 +HOLZ + 10 +4968.113282 + 20 +9989.062739 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A19 + 8 +HOLZ + 10 +4979.385448 + 20 +9955.827065 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A1A + 8 +HOLZ + 10 +4968.676929 + 20 +9929.351227 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A1B + 8 +HOLZ + 10 +4945.135727 + 20 +9914.487313 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A1C + 8 +HOLZ + 0 +POLYLINE + 5 +A1D + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A1E + 8 +HOLZ + 10 +4996.857288 + 20 +10003.708989 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A1F + 8 +HOLZ + 10 +4996.857288 + 20 +10003.708989 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A20 + 8 +HOLZ + 10 +4994.48105 + 20 +10002.665294 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A21 + 8 +HOLZ + 10 +4993.79012 + 20 +9999.983679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A22 + 8 +HOLZ + 10 +4994.425238 + 20 +9995.959246 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A23 + 8 +HOLZ + 10 +4996.027143 + 20 +9990.887097 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A24 + 8 +HOLZ + 10 +4998.236574 + 20 +9985.062334 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A25 + 8 +HOLZ + 10 +5000.694271 + 20 +9978.780058 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A26 + 8 +HOLZ + 10 +5003.040972 + 20 +9972.335372 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A27 + 8 +HOLZ + 10 +5004.917418 + 20 +9966.023377 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A28 + 8 +HOLZ + 10 +5005.999865 + 20 +9960.044183 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A29 + 8 +HOLZ + 10 +5006.106635 + 20 +9954.217928 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2A + 8 +HOLZ + 10 +5005.09157 + 20 +9948.269756 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2B + 8 +HOLZ + 10 +5002.80851 + 20 +9941.924815 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2C + 8 +HOLZ + 10 +4999.111294 + 20 +9934.908248 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2D + 8 +HOLZ + 10 +4993.853763 + 20 +9926.945202 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2E + 8 +HOLZ + 10 +4986.889757 + 20 +9917.760823 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A2F + 8 +HOLZ + 10 +4978.073117 + 20 +9907.080255 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A30 + 8 +HOLZ + 10 +4987.954234 + 20 +10003.372008 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A31 + 8 +HOLZ + 10 +5013.765592 + 20 +9961.460249 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A32 + 8 +HOLZ + 10 +5004.184256 + 20 +9937.801003 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A33 + 8 +HOLZ + 10 +4978.073117 + 20 +9907.080255 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A34 + 8 +HOLZ + 0 +POLYLINE + 5 +A35 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1489 + 8 +HOLZ + 10 +5591.207721 + 20 +10289.780722 + 30 +0.0 + 0 +VERTEX + 5 +148A + 8 +HOLZ + 10 +5551.463776 + 20 +10353.384329 + 30 +0.0 + 0 +VERTEX + 5 +148B + 8 +HOLZ + 10 +5657.469788 + 20 +10419.624237 + 30 +0.0 + 0 +VERTEX + 5 +148C + 8 +HOLZ + 10 +5697.213733 + 20 +10356.02063 + 30 +0.0 + 0 +SEQEND + 5 +148D + 8 +HOLZ + 0 +POLYLINE + 5 +A3B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A3C + 8 +HOLZ + 10 +5656.564874 + 20 +10416.921338 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A3D + 8 +HOLZ + 10 +5656.564874 + 20 +10416.921338 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A3E + 8 +HOLZ + 10 +5660.462482 + 20 +10401.508529 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A3F + 8 +HOLZ + 10 +5662.31525 + 20 +10387.405482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A40 + 8 +HOLZ + 10 +5662.580571 + 20 +10374.651658 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A41 + 8 +HOLZ + 10 +5661.715837 + 20 +10363.286515 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A42 + 8 +HOLZ + 10 +5660.17844 + 20 +10353.349513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A43 + 8 +HOLZ + 10 +5658.42577 + 20 +10344.880111 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A44 + 8 +HOLZ + 10 +5656.915222 + 20 +10337.917769 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A45 + 8 +HOLZ + 10 +5656.104185 + 20 +10332.501945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A46 + 8 +HOLZ + 10 +5670.091517 + 20 +10374.109238 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A47 + 8 +HOLZ + 10 +5656.927695 + 20 +10344.847041 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A48 + 8 +HOLZ + 10 +5656.104185 + 20 +10332.501945 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A49 + 8 +HOLZ + 0 +POLYLINE + 5 +A4A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A4B + 8 +HOLZ + 10 +5632.89336 + 20 +10401.148437 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A4C + 8 +HOLZ + 10 +5632.89336 + 20 +10401.148437 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4D + 8 +HOLZ + 10 +5630.517122 + 20 +10400.104742 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4E + 8 +HOLZ + 10 +5629.826193 + 20 +10397.423127 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A4F + 8 +HOLZ + 10 +5630.46131 + 20 +10393.398694 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A50 + 8 +HOLZ + 10 +5632.063215 + 20 +10388.326545 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A51 + 8 +HOLZ + 10 +5634.272646 + 20 +10382.501782 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A52 + 8 +HOLZ + 10 +5636.730343 + 20 +10376.219506 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A53 + 8 +HOLZ + 10 +5639.077044 + 20 +10369.77482 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A54 + 8 +HOLZ + 10 +5640.95349 + 20 +10363.462825 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A55 + 8 +HOLZ + 10 +5642.035937 + 20 +10357.483631 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A56 + 8 +HOLZ + 10 +5642.142708 + 20 +10351.657376 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A57 + 8 +HOLZ + 10 +5641.127642 + 20 +10345.709204 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A58 + 8 +HOLZ + 10 +5638.844582 + 20 +10339.364263 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A59 + 8 +HOLZ + 10 +5635.147366 + 20 +10332.347696 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5A + 8 +HOLZ + 10 +5629.889835 + 20 +10324.384651 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5B + 8 +HOLZ + 10 +5622.925829 + 20 +10315.200271 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5C + 8 +HOLZ + 10 +5614.109189 + 20 +10304.519703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A5D + 8 +HOLZ + 10 +5623.990306 + 20 +10400.811456 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A5E + 8 +HOLZ + 10 +5649.801664 + 20 +10358.899697 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A5F + 8 +HOLZ + 10 +5640.220329 + 20 +10335.240451 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A60 + 8 +HOLZ + 10 +5614.109189 + 20 +10304.519703 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A61 + 8 +HOLZ + 0 +POLYLINE + 5 +A62 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A63 + 8 +HOLZ + 10 +5604.149354 + 20 +10386.502187 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A64 + 8 +HOLZ + 10 +5604.149354 + 20 +10386.502187 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A65 + 8 +HOLZ + 10 +5604.391805 + 20 +10385.758983 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A66 + 8 +HOLZ + 10 +5605.032194 + 20 +10383.672402 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A67 + 8 +HOLZ + 10 +5605.940077 + 20 +10380.456987 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A68 + 8 +HOLZ + 10 +5606.98501 + 20 +10376.327284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A69 + 8 +HOLZ + 10 +5608.036548 + 20 +10371.497836 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6A + 8 +HOLZ + 10 +5608.964246 + 20 +10366.183189 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6B + 8 +HOLZ + 10 +5609.637662 + 20 +10360.597886 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6C + 8 +HOLZ + 10 +5609.926349 + 20 +10354.956472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6D + 8 +HOLZ + 10 +5609.696816 + 20 +10349.431258 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6E + 8 +HOLZ + 10 +5608.803379 + 20 +10344.025619 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A6F + 8 +HOLZ + 10 +5607.097307 + 20 +10338.700696 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A70 + 8 +HOLZ + 10 +5604.429867 + 20 +10333.41763 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A71 + 8 +HOLZ + 10 +5600.652328 + 20 +10328.137562 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A72 + 8 +HOLZ + 10 +5595.615958 + 20 +10322.821634 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A73 + 8 +HOLZ + 10 +5589.172026 + 20 +10317.430986 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A74 + 8 +HOLZ + 10 +5581.171799 + 20 +10311.926761 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A75 + 8 +HOLZ + 10 +5604.149354 + 20 +10386.502187 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A76 + 8 +HOLZ + 10 +5615.42152 + 20 +10353.266514 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A77 + 8 +HOLZ + 10 +5604.713001 + 20 +10326.790675 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A78 + 8 +HOLZ + 10 +5581.171799 + 20 +10311.926761 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A79 + 8 +HOLZ + 0 +POLYLINE + 5 +A7A + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A7B + 8 +HOLZ + 10 +5578.223362 + 20 +10369.039414 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A7C + 8 +HOLZ + 10 +5578.223362 + 20 +10369.039414 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A7D + 8 +HOLZ + 10 +5578.903816 + 20 +10361.74781 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A7E + 8 +HOLZ + 10 +5578.186986 + 20 +10357.419447 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A7F + 8 +HOLZ + 10 +5576.374059 + 20 +10355.123569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A80 + 8 +HOLZ + 10 +5573.76622 + 20 +10353.92942 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A81 + 8 +HOLZ + 10 +5570.664654 + 20 +10352.906244 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A82 + 8 +HOLZ + 10 +5567.370548 + 20 +10351.123285 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A83 + 8 +HOLZ + 10 +5564.185086 + 20 +10347.649787 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A84 + 8 +HOLZ + 10 +5561.409455 + 20 +10341.554992 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A85 + 8 +HOLZ + 10 +5582.16867 + 20 +10344.816808 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A86 + 8 +HOLZ + 10 +5567.996977 + 20 +10362.130177 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A87 + 8 +HOLZ + 10 +5561.409455 + 20 +10341.554992 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A88 + 8 +HOLZ + 0 +POLYLINE + 5 +A89 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +148E + 8 +HOLZ + 10 +6227.243793 + 20 +10687.22017 + 30 +0.0 + 0 +VERTEX + 5 +148F + 8 +HOLZ + 10 +6187.499848 + 20 +10750.823777 + 30 +0.0 + 0 +VERTEX + 5 +1490 + 8 +HOLZ + 10 +6293.50586 + 20 +10817.063685 + 30 +0.0 + 0 +VERTEX + 5 +1491 + 8 +HOLZ + 10 +6333.249805 + 20 +10753.460078 + 30 +0.0 + 0 +SEQEND + 5 +1492 + 8 +HOLZ + 0 +POLYLINE + 5 +A8F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A90 + 8 +HOLZ + 10 +6292.600946 + 20 +10814.360786 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A91 + 8 +HOLZ + 10 +6292.600946 + 20 +10814.360786 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A92 + 8 +HOLZ + 10 +6296.498554 + 20 +10798.947977 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A93 + 8 +HOLZ + 10 +6298.351322 + 20 +10784.844931 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A94 + 8 +HOLZ + 10 +6298.616643 + 20 +10772.091106 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A95 + 8 +HOLZ + 10 +6297.751909 + 20 +10760.725963 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A96 + 8 +HOLZ + 10 +6296.214512 + 20 +10750.788961 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A97 + 8 +HOLZ + 10 +6294.461843 + 20 +10742.319559 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A98 + 8 +HOLZ + 10 +6292.951294 + 20 +10735.357217 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A99 + 8 +HOLZ + 10 +6292.140257 + 20 +10729.941393 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +A9A + 8 +HOLZ + 10 +6306.127589 + 20 +10771.548686 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A9B + 8 +HOLZ + 10 +6292.963767 + 20 +10742.28649 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +A9C + 8 +HOLZ + 10 +6292.140257 + 20 +10729.941393 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +A9D + 8 +HOLZ + 0 +POLYLINE + 5 +A9E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +A9F + 8 +HOLZ + 10 +6268.929432 + 20 +10798.587885 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AA0 + 8 +HOLZ + 10 +6268.929432 + 20 +10798.587885 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA1 + 8 +HOLZ + 10 +6266.553194 + 20 +10797.54419 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA2 + 8 +HOLZ + 10 +6265.862265 + 20 +10794.862575 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA3 + 8 +HOLZ + 10 +6266.497383 + 20 +10790.838142 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA4 + 8 +HOLZ + 10 +6268.099287 + 20 +10785.765993 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA5 + 8 +HOLZ + 10 +6270.308718 + 20 +10779.94123 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA6 + 8 +HOLZ + 10 +6272.766415 + 20 +10773.658954 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA7 + 8 +HOLZ + 10 +6275.113117 + 20 +10767.214268 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA8 + 8 +HOLZ + 10 +6276.989563 + 20 +10760.902274 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AA9 + 8 +HOLZ + 10 +6278.072009 + 20 +10754.923079 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAA + 8 +HOLZ + 10 +6278.17878 + 20 +10749.096824 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAB + 8 +HOLZ + 10 +6277.163715 + 20 +10743.148653 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAC + 8 +HOLZ + 10 +6274.880654 + 20 +10736.803711 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAD + 8 +HOLZ + 10 +6271.183438 + 20 +10729.787145 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAE + 8 +HOLZ + 10 +6265.925907 + 20 +10721.824099 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AAF + 8 +HOLZ + 10 +6258.961901 + 20 +10712.639719 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB0 + 8 +HOLZ + 10 +6250.145261 + 20 +10701.959151 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB1 + 8 +HOLZ + 10 +6260.026378 + 20 +10798.250904 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AB2 + 8 +HOLZ + 10 +6285.837736 + 20 +10756.339146 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AB3 + 8 +HOLZ + 10 +6276.256401 + 20 +10732.679899 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AB4 + 8 +HOLZ + 10 +6250.145261 + 20 +10701.959151 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +AB5 + 8 +HOLZ + 0 +POLYLINE + 5 +AB6 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +AB7 + 8 +HOLZ + 10 +6240.185426 + 20 +10783.941635 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AB8 + 8 +HOLZ + 10 +6240.185426 + 20 +10783.941635 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AB9 + 8 +HOLZ + 10 +6240.427877 + 20 +10783.198431 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABA + 8 +HOLZ + 10 +6241.068266 + 20 +10781.11185 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABB + 8 +HOLZ + 10 +6241.976149 + 20 +10777.896435 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABC + 8 +HOLZ + 10 +6243.021082 + 20 +10773.766732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABD + 8 +HOLZ + 10 +6244.07262 + 20 +10768.937284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABE + 8 +HOLZ + 10 +6245.000318 + 20 +10763.622637 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +ABF + 8 +HOLZ + 10 +6245.673734 + 20 +10758.037334 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC0 + 8 +HOLZ + 10 +6245.962421 + 20 +10752.39592 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC1 + 8 +HOLZ + 10 +6245.732888 + 20 +10746.870707 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC2 + 8 +HOLZ + 10 +6244.839451 + 20 +10741.465067 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC3 + 8 +HOLZ + 10 +6243.133379 + 20 +10736.140144 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC4 + 8 +HOLZ + 10 +6240.465939 + 20 +10730.857078 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC5 + 8 +HOLZ + 10 +6236.6884 + 20 +10725.577011 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC6 + 8 +HOLZ + 10 +6231.65203 + 20 +10720.261082 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC7 + 8 +HOLZ + 10 +6225.208098 + 20 +10714.870435 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC8 + 8 +HOLZ + 10 +6217.207872 + 20 +10709.366209 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AC9 + 8 +HOLZ + 10 +6240.185426 + 20 +10783.941635 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ACA + 8 +HOLZ + 10 +6251.457592 + 20 +10750.705962 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ACB + 8 +HOLZ + 10 +6240.749074 + 20 +10724.230123 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ACC + 8 +HOLZ + 10 +6217.207872 + 20 +10709.366209 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +ACD + 8 +HOLZ + 0 +POLYLINE + 5 +ACE + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +ACF + 8 +HOLZ + 10 +6214.259434 + 20 +10766.478863 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AD0 + 8 +HOLZ + 10 +6214.259434 + 20 +10766.478863 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD1 + 8 +HOLZ + 10 +6214.939888 + 20 +10759.187258 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD2 + 8 +HOLZ + 10 +6214.223058 + 20 +10754.858895 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD3 + 8 +HOLZ + 10 +6212.410131 + 20 +10752.563017 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD4 + 8 +HOLZ + 10 +6209.802292 + 20 +10751.368868 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD5 + 8 +HOLZ + 10 +6206.700726 + 20 +10750.345692 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD6 + 8 +HOLZ + 10 +6203.40662 + 20 +10748.562733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD7 + 8 +HOLZ + 10 +6200.221158 + 20 +10745.089235 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD8 + 8 +HOLZ + 10 +6197.445527 + 20 +10738.994441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AD9 + 8 +HOLZ + 10 +6218.204742 + 20 +10742.256256 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ADA + 8 +HOLZ + 10 +6204.033049 + 20 +10759.569625 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ADB + 8 +HOLZ + 10 +6197.445527 + 20 +10738.994441 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +ADC + 8 +HOLZ + 0 +POLYLINE + 5 +ADD + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +ADE + 8 +HOLZ + 10 +6850.295507 + 20 +11163.918311 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +ADF + 8 +HOLZ + 10 +6850.295507 + 20 +11163.918311 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE0 + 8 +HOLZ + 10 +6850.97596 + 20 +11156.626706 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE1 + 8 +HOLZ + 10 +6850.259131 + 20 +11152.298343 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE2 + 8 +HOLZ + 10 +6848.446203 + 20 +11150.002465 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE3 + 8 +HOLZ + 10 +6845.838364 + 20 +11148.808316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE4 + 8 +HOLZ + 10 +6842.736798 + 20 +11147.78514 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE5 + 8 +HOLZ + 10 +6839.442692 + 20 +11146.002181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE6 + 8 +HOLZ + 10 +6836.25723 + 20 +11142.528683 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE7 + 8 +HOLZ + 10 +6833.481599 + 20 +11136.433889 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AE8 + 8 +HOLZ + 10 +6854.240815 + 20 +11139.695704 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AE9 + 8 +HOLZ + 10 +6840.069121 + 20 +11157.009073 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AEA + 8 +HOLZ + 10 +6833.481599 + 20 +11136.433889 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +AEB + 8 +HOLZ + 0 +POLYLINE + 5 +AEC + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +AED + 8 +HOLZ + 10 +6876.221498 + 20 +11181.381083 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +AEE + 8 +HOLZ + 10 +6876.221498 + 20 +11181.381083 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AEF + 8 +HOLZ + 10 +6876.463949 + 20 +11180.63788 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF0 + 8 +HOLZ + 10 +6877.104338 + 20 +11178.551298 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF1 + 8 +HOLZ + 10 +6878.012221 + 20 +11175.335884 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF2 + 8 +HOLZ + 10 +6879.057154 + 20 +11171.20618 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF3 + 8 +HOLZ + 10 +6880.108692 + 20 +11166.376733 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF4 + 8 +HOLZ + 10 +6881.036391 + 20 +11161.062085 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF5 + 8 +HOLZ + 10 +6881.709806 + 20 +11155.476782 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF6 + 8 +HOLZ + 10 +6881.998493 + 20 +11149.835369 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF7 + 8 +HOLZ + 10 +6881.76896 + 20 +11144.310155 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF8 + 8 +HOLZ + 10 +6880.875523 + 20 +11138.904516 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AF9 + 8 +HOLZ + 10 +6879.169451 + 20 +11133.579592 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFA + 8 +HOLZ + 10 +6876.502011 + 20 +11128.296526 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFB + 8 +HOLZ + 10 +6872.724472 + 20 +11123.016459 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFC + 8 +HOLZ + 10 +6867.688102 + 20 +11117.70053 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFD + 8 +HOLZ + 10 +6861.24417 + 20 +11112.309883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFE + 8 +HOLZ + 10 +6853.243944 + 20 +11106.805657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +AFF + 8 +HOLZ + 10 +6876.221498 + 20 +11181.381083 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B00 + 8 +HOLZ + 10 +6887.493664 + 20 +11148.14541 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B01 + 8 +HOLZ + 10 +6876.785146 + 20 +11121.669571 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B02 + 8 +HOLZ + 10 +6853.243944 + 20 +11106.805657 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B03 + 8 +HOLZ + 0 +POLYLINE + 5 +B04 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +B05 + 8 +HOLZ + 10 +6904.965504 + 20 +11196.027333 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B06 + 8 +HOLZ + 10 +6904.965504 + 20 +11196.027333 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B07 + 8 +HOLZ + 10 +6902.589266 + 20 +11194.983638 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B08 + 8 +HOLZ + 10 +6901.898337 + 20 +11192.302023 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B09 + 8 +HOLZ + 10 +6902.533455 + 20 +11188.27759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0A + 8 +HOLZ + 10 +6904.135359 + 20 +11183.205441 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0B + 8 +HOLZ + 10 +6906.34479 + 20 +11177.380678 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0C + 8 +HOLZ + 10 +6908.802487 + 20 +11171.098403 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0D + 8 +HOLZ + 10 +6911.149189 + 20 +11164.653716 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0E + 8 +HOLZ + 10 +6913.025635 + 20 +11158.341722 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B0F + 8 +HOLZ + 10 +6914.108081 + 20 +11152.362528 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B10 + 8 +HOLZ + 10 +6914.214852 + 20 +11146.536272 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B11 + 8 +HOLZ + 10 +6913.199787 + 20 +11140.588101 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B12 + 8 +HOLZ + 10 +6910.916726 + 20 +11134.243159 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B13 + 8 +HOLZ + 10 +6907.21951 + 20 +11127.226593 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B14 + 8 +HOLZ + 10 +6901.961979 + 20 +11119.263547 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B15 + 8 +HOLZ + 10 +6894.997973 + 20 +11110.079167 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B16 + 8 +HOLZ + 10 +6886.181333 + 20 +11099.398599 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B17 + 8 +HOLZ + 10 +6896.06245 + 20 +11195.690352 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B18 + 8 +HOLZ + 10 +6921.873808 + 20 +11153.778594 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B19 + 8 +HOLZ + 10 +6912.292473 + 20 +11130.119347 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B1A + 8 +HOLZ + 10 +6886.181333 + 20 +11099.398599 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B1B + 8 +HOLZ + 0 +POLYLINE + 5 +B1C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +B1D + 8 +HOLZ + 10 +6928.637018 + 20 +11211.800234 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B1E + 8 +HOLZ + 10 +6928.637018 + 20 +11211.800234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B1F + 8 +HOLZ + 10 +6932.534626 + 20 +11196.387425 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B20 + 8 +HOLZ + 10 +6934.387394 + 20 +11182.284379 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B21 + 8 +HOLZ + 10 +6934.652716 + 20 +11169.530554 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B22 + 8 +HOLZ + 10 +6933.787981 + 20 +11158.165412 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B23 + 8 +HOLZ + 10 +6932.250584 + 20 +11148.228409 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B24 + 8 +HOLZ + 10 +6930.497915 + 20 +11139.759007 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B25 + 8 +HOLZ + 10 +6928.987366 + 20 +11132.796665 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B26 + 8 +HOLZ + 10 +6928.17633 + 20 +11127.380841 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B27 + 8 +HOLZ + 10 +6942.163662 + 20 +11168.988135 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B28 + 8 +HOLZ + 10 +6928.999839 + 20 +11139.725938 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B29 + 8 +HOLZ + 10 +6928.17633 + 20 +11127.380841 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B2A + 8 +HOLZ + 0 +POLYLINE + 5 +B2B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1493 + 8 +HOLZ + 10 +6863.279865 + 20 +11084.659618 + 30 +0.0 + 0 +VERTEX + 5 +1494 + 8 +HOLZ + 10 +6823.53592 + 20 +11148.263225 + 30 +0.0 + 0 +VERTEX + 5 +1495 + 8 +HOLZ + 10 +6929.541932 + 20 +11214.503133 + 30 +0.0 + 0 +VERTEX + 5 +1496 + 8 +HOLZ + 10 +6969.285877 + 20 +11150.899526 + 30 +0.0 + 0 +SEQEND + 5 +1497 + 8 +HOLZ + 0 +POLYLINE + 5 +B31 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1498 + 8 +HOLZ + 10 +7499.315937 + 20 +11482.099066 + 30 +0.0 + 0 +VERTEX + 5 +1499 + 8 +HOLZ + 10 +7459.571992 + 20 +11545.702674 + 30 +0.0 + 0 +VERTEX + 5 +149A + 8 +HOLZ + 10 +7565.578004 + 20 +11611.942582 + 30 +0.0 + 0 +VERTEX + 5 +149B + 8 +HOLZ + 10 +7605.321949 + 20 +11548.338974 + 30 +0.0 + 0 +SEQEND + 5 +149C + 8 +HOLZ + 0 +POLYLINE + 5 +B37 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +B38 + 8 +HOLZ + 10 +7486.331579 + 20 +11561.357759 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B39 + 8 +HOLZ + 10 +7486.331579 + 20 +11561.357759 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3A + 8 +HOLZ + 10 +7487.012032 + 20 +11554.066154 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3B + 8 +HOLZ + 10 +7486.295203 + 20 +11549.737791 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3C + 8 +HOLZ + 10 +7484.482275 + 20 +11547.441913 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3D + 8 +HOLZ + 10 +7481.874436 + 20 +11546.247764 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3E + 8 +HOLZ + 10 +7478.772871 + 20 +11545.224589 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B3F + 8 +HOLZ + 10 +7475.478764 + 20 +11543.44163 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B40 + 8 +HOLZ + 10 +7472.293302 + 20 +11539.968131 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B41 + 8 +HOLZ + 10 +7469.517671 + 20 +11533.873337 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B42 + 8 +HOLZ + 10 +7490.276887 + 20 +11537.135152 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B43 + 8 +HOLZ + 10 +7476.105193 + 20 +11554.448521 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B44 + 8 +HOLZ + 10 +7469.517671 + 20 +11533.873337 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B45 + 8 +HOLZ + 0 +POLYLINE + 5 +B46 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +B47 + 8 +HOLZ + 10 +7512.257571 + 20 +11578.820531 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B48 + 8 +HOLZ + 10 +7512.257571 + 20 +11578.820531 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B49 + 8 +HOLZ + 10 +7512.500021 + 20 +11578.077328 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4A + 8 +HOLZ + 10 +7513.14041 + 20 +11575.990746 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4B + 8 +HOLZ + 10 +7514.048293 + 20 +11572.775332 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4C + 8 +HOLZ + 10 +7515.093226 + 20 +11568.645628 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4D + 8 +HOLZ + 10 +7516.144764 + 20 +11563.816181 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4E + 8 +HOLZ + 10 +7517.072463 + 20 +11558.501533 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B4F + 8 +HOLZ + 10 +7517.745878 + 20 +11552.91623 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B50 + 8 +HOLZ + 10 +7518.034565 + 20 +11547.274817 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B51 + 8 +HOLZ + 10 +7517.805032 + 20 +11541.749603 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B52 + 8 +HOLZ + 10 +7516.911596 + 20 +11536.343964 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B53 + 8 +HOLZ + 10 +7515.205523 + 20 +11531.019041 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B54 + 8 +HOLZ + 10 +7512.538083 + 20 +11525.735975 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B55 + 8 +HOLZ + 10 +7508.760544 + 20 +11520.455907 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B56 + 8 +HOLZ + 10 +7503.724174 + 20 +11515.139979 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B57 + 8 +HOLZ + 10 +7497.280242 + 20 +11509.749331 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B58 + 8 +HOLZ + 10 +7489.280016 + 20 +11504.245105 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B59 + 8 +HOLZ + 10 +7512.257571 + 20 +11578.820531 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B5A + 8 +HOLZ + 10 +7523.529736 + 20 +11545.584858 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B5B + 8 +HOLZ + 10 +7512.821218 + 20 +11519.109019 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B5C + 8 +HOLZ + 10 +7489.280016 + 20 +11504.245105 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B5D + 8 +HOLZ + 0 +POLYLINE + 5 +B5E + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +B5F + 8 +HOLZ + 10 +7541.001576 + 20 +11593.466782 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B60 + 8 +HOLZ + 10 +7541.001576 + 20 +11593.466782 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B61 + 8 +HOLZ + 10 +7538.625338 + 20 +11592.423086 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B62 + 8 +HOLZ + 10 +7537.934409 + 20 +11589.741472 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B63 + 8 +HOLZ + 10 +7538.569527 + 20 +11585.717039 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B64 + 8 +HOLZ + 10 +7540.171432 + 20 +11580.64489 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B65 + 8 +HOLZ + 10 +7542.380863 + 20 +11574.820126 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B66 + 8 +HOLZ + 10 +7544.838559 + 20 +11568.537851 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B67 + 8 +HOLZ + 10 +7547.185261 + 20 +11562.093165 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B68 + 8 +HOLZ + 10 +7549.061707 + 20 +11555.78117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B69 + 8 +HOLZ + 10 +7550.144153 + 20 +11549.801976 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6A + 8 +HOLZ + 10 +7550.250924 + 20 +11543.97572 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6B + 8 +HOLZ + 10 +7549.235859 + 20 +11538.027549 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6C + 8 +HOLZ + 10 +7546.952798 + 20 +11531.682607 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6D + 8 +HOLZ + 10 +7543.255582 + 20 +11524.666041 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6E + 8 +HOLZ + 10 +7537.998051 + 20 +11516.702995 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B6F + 8 +HOLZ + 10 +7531.034045 + 20 +11507.518615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B70 + 8 +HOLZ + 10 +7522.217405 + 20 +11496.838047 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B71 + 8 +HOLZ + 10 +7532.098522 + 20 +11593.1298 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B72 + 8 +HOLZ + 10 +7557.90988 + 20 +11551.218042 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B73 + 8 +HOLZ + 10 +7548.328545 + 20 +11527.558795 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B74 + 8 +HOLZ + 10 +7522.217405 + 20 +11496.838047 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B75 + 8 +HOLZ + 0 +POLYLINE + 5 +B76 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +B77 + 8 +HOLZ + 10 +7564.673091 + 20 +11609.239682 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B78 + 8 +HOLZ + 10 +7564.673091 + 20 +11609.239682 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B79 + 8 +HOLZ + 10 +7568.570698 + 20 +11593.826873 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7A + 8 +HOLZ + 10 +7570.423467 + 20 +11579.723827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7B + 8 +HOLZ + 10 +7570.688788 + 20 +11566.970003 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7C + 8 +HOLZ + 10 +7569.824053 + 20 +11555.60486 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7D + 8 +HOLZ + 10 +7568.286656 + 20 +11545.667858 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7E + 8 +HOLZ + 10 +7566.533987 + 20 +11537.198456 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B7F + 8 +HOLZ + 10 +7565.023438 + 20 +11530.236113 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B80 + 8 +HOLZ + 10 +7564.212402 + 20 +11524.820289 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +B81 + 8 +HOLZ + 10 +7578.199734 + 20 +11566.427583 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B82 + 8 +HOLZ + 10 +7565.035912 + 20 +11537.165386 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +B83 + 8 +HOLZ + 10 +7564.212402 + 20 +11524.820289 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +B84 + 8 +HOLZ + 0 +POLYLINE + 5 +B85 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +149D + 8 +DACHZIEGEL + 10 +7569.799701 + 20 +11626.488957 + 30 +0.0 + 0 +VERTEX + 5 +149E + 8 +DACHZIEGEL + 10 +7603.921761 + 20 +11571.715136 + 30 +0.0 + 0 +VERTEX + 5 +149F + 8 +DACHZIEGEL + 10 +7653.553961 + 20 +11602.71917 + 30 +0.0 + 0 +VERTEX + 5 +14A0 + 8 +DACHZIEGEL + 10 +7632.873924 + 20 +11684.363141 + 30 +0.0 + 0 +VERTEX + 5 +14A1 + 8 +DACHZIEGEL + 10 +7570.833703 + 20 +11714.333651 + 30 +0.0 + 0 +VERTEX + 5 +14A2 + 8 +DACHZIEGEL + 10 +7539.813648 + 20 +11694.697819 + 30 +0.0 + 0 +VERTEX + 5 +14A3 + 8 +DACHZIEGEL + 10 +7538.779646 + 20 +11663.693785 + 30 +0.0 + 0 +VERTEX + 5 +14A4 + 8 +DACHZIEGEL + 10 +7512.9296 + 20 +11649.225221 + 30 +0.0 + 0 +VERTEX + 5 +14A5 + 8 +DACHZIEGEL + 10 +7489.147558 + 20 +11659.559899 + 30 +0.0 + 0 +VERTEX + 5 +14A6 + 8 +DACHZIEGEL + 10 +7461.229397 + 20 +11641.990975 + 30 +0.0 + 0 +VERTEX + 5 +14A7 + 8 +DACHZIEGEL + 10 +7459.161394 + 20 +11616.154279 + 30 +0.0 + 0 +VERTEX + 5 +14A8 + 8 +DACHZIEGEL + 10 +6736.224318 + 20 +11283.235231 + 30 +0.0 + 0 +VERTEX + 5 +14A9 + 8 +DACHZIEGEL + 10 +6781.259162 + 20 +11210.253272 + 30 +0.0 + 0 +VERTEX + 5 +14AA + 8 +DACHZIEGEL + 10 +6811.396774 + 20 +11224.597085 + 30 +0.0 + 0 +VERTEX + 5 +14AB + 8 +DACHZIEGEL + 10 +6812.114315 + 20 +11258.305081 + 30 +0.0 + 0 +VERTEX + 5 +14AC + 8 +DACHZIEGEL + 10 +6849.427559 + 20 +11279.103575 + 30 +0.0 + 0 +VERTEX + 5 +14AD + 8 +DACHZIEGEL + 10 +6873.824621 + 20 +11266.911369 + 30 +0.0 + 0 +VERTEX + 5 +14AE + 8 +DACHZIEGEL + 10 +6892.481243 + 20 +11274.083275 + 30 +0.0 + 0 +VERTEX + 5 +14AF + 8 +DACHZIEGEL + 10 +6894.633977 + 20 +11310.659964 + 30 +0.0 + 0 +VERTEX + 5 +14B0 + 8 +DACHZIEGEL + 10 +7572.874908 + 20 +11627.370984 + 30 +0.0 + 0 +SEQEND + 5 +14B1 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +B9B + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +14B2 + 8 +DACHZIEGEL + 10 +6297.727557 + 20 +10831.610061 + 30 +0.0 + 0 +VERTEX + 5 +14B3 + 8 +DACHZIEGEL + 10 +6331.849617 + 20 +10776.83624 + 30 +0.0 + 0 +VERTEX + 5 +14B4 + 8 +DACHZIEGEL + 10 +6381.481816 + 20 +10807.840274 + 30 +0.0 + 0 +VERTEX + 5 +14B5 + 8 +DACHZIEGEL + 10 +6360.80178 + 20 +10889.484244 + 30 +0.0 + 0 +VERTEX + 5 +14B6 + 8 +DACHZIEGEL + 10 +6298.761559 + 20 +10919.454755 + 30 +0.0 + 0 +VERTEX + 5 +14B7 + 8 +DACHZIEGEL + 10 +6267.741504 + 20 +10899.818922 + 30 +0.0 + 0 +VERTEX + 5 +14B8 + 8 +DACHZIEGEL + 10 +6266.707502 + 20 +10868.814888 + 30 +0.0 + 0 +VERTEX + 5 +14B9 + 8 +DACHZIEGEL + 10 +6240.857456 + 20 +10854.346325 + 30 +0.0 + 0 +VERTEX + 5 +14BA + 8 +DACHZIEGEL + 10 +6217.075414 + 20 +10864.681003 + 30 +0.0 + 0 +VERTEX + 5 +14BB + 8 +DACHZIEGEL + 10 +6189.157253 + 20 +10847.112078 + 30 +0.0 + 0 +VERTEX + 5 +14BC + 8 +DACHZIEGEL + 10 +6187.089249 + 20 +10821.275383 + 30 +0.0 + 0 +VERTEX + 5 +14BD + 8 +DACHZIEGEL + 10 +5464.152174 + 20 +10488.356335 + 30 +0.0 + 0 +VERTEX + 5 +14BE + 8 +DACHZIEGEL + 10 +5509.187018 + 20 +10415.374375 + 30 +0.0 + 0 +VERTEX + 5 +14BF + 8 +DACHZIEGEL + 10 +5539.32463 + 20 +10429.718189 + 30 +0.0 + 0 +VERTEX + 5 +14C0 + 8 +DACHZIEGEL + 10 +5540.042171 + 20 +10463.426184 + 30 +0.0 + 0 +VERTEX + 5 +14C1 + 8 +DACHZIEGEL + 10 +5577.355415 + 20 +10484.224679 + 30 +0.0 + 0 +VERTEX + 5 +14C2 + 8 +DACHZIEGEL + 10 +5601.752476 + 20 +10472.032472 + 30 +0.0 + 0 +VERTEX + 5 +14C3 + 8 +DACHZIEGEL + 10 +5620.409099 + 20 +10479.204379 + 30 +0.0 + 0 +VERTEX + 5 +14C4 + 8 +DACHZIEGEL + 10 +5622.561833 + 20 +10515.781068 + 30 +0.0 + 0 +VERTEX + 5 +14C5 + 8 +DACHZIEGEL + 10 +6300.802764 + 20 +10832.492088 + 30 +0.0 + 0 +SEQEND + 5 +14C6 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +BB1 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +14C7 + 8 +DACHZIEGEL + 10 +6933.763629 + 20 +11229.049509 + 30 +0.0 + 0 +VERTEX + 5 +14C8 + 8 +DACHZIEGEL + 10 +6967.885689 + 20 +11174.275688 + 30 +0.0 + 0 +VERTEX + 5 +14C9 + 8 +DACHZIEGEL + 10 +7017.517888 + 20 +11205.279722 + 30 +0.0 + 0 +VERTEX + 5 +14CA + 8 +DACHZIEGEL + 10 +6996.837852 + 20 +11286.923693 + 30 +0.0 + 0 +VERTEX + 5 +14CB + 8 +DACHZIEGEL + 10 +6934.797631 + 20 +11316.894203 + 30 +0.0 + 0 +VERTEX + 5 +14CC + 8 +DACHZIEGEL + 10 +6903.777576 + 20 +11297.258371 + 30 +0.0 + 0 +VERTEX + 5 +14CD + 8 +DACHZIEGEL + 10 +6902.743574 + 20 +11266.254336 + 30 +0.0 + 0 +VERTEX + 5 +14CE + 8 +DACHZIEGEL + 10 +6876.893528 + 20 +11251.785773 + 30 +0.0 + 0 +VERTEX + 5 +14CF + 8 +DACHZIEGEL + 10 +6853.111486 + 20 +11262.120451 + 30 +0.0 + 0 +VERTEX + 5 +14D0 + 8 +DACHZIEGEL + 10 +6825.193325 + 20 +11244.551526 + 30 +0.0 + 0 +VERTEX + 5 +14D1 + 8 +DACHZIEGEL + 10 +6823.125322 + 20 +11218.714831 + 30 +0.0 + 0 +VERTEX + 5 +14D2 + 8 +DACHZIEGEL + 10 +6100.188246 + 20 +10885.795783 + 30 +0.0 + 0 +VERTEX + 5 +14D3 + 8 +DACHZIEGEL + 10 +6145.22309 + 20 +10812.813824 + 30 +0.0 + 0 +VERTEX + 5 +14D4 + 8 +DACHZIEGEL + 10 +6175.360702 + 20 +10827.157637 + 30 +0.0 + 0 +VERTEX + 5 +14D5 + 8 +DACHZIEGEL + 10 +6176.078243 + 20 +10860.865633 + 30 +0.0 + 0 +VERTEX + 5 +14D6 + 8 +DACHZIEGEL + 10 +6213.391487 + 20 +10881.664127 + 30 +0.0 + 0 +VERTEX + 5 +14D7 + 8 +DACHZIEGEL + 10 +6237.788549 + 20 +10869.471921 + 30 +0.0 + 0 +VERTEX + 5 +14D8 + 8 +DACHZIEGEL + 10 +6256.445171 + 20 +10876.643827 + 30 +0.0 + 0 +VERTEX + 5 +14D9 + 8 +DACHZIEGEL + 10 +6258.597905 + 20 +10913.220516 + 30 +0.0 + 0 +VERTEX + 5 +14DA + 8 +DACHZIEGEL + 10 +6936.838836 + 20 +11229.931536 + 30 +0.0 + 0 +SEQEND + 5 +14DB + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +BC7 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +14DC + 8 +DACHZIEGEL + 10 +5025.655413 + 20 +10036.731165 + 30 +0.0 + 0 +VERTEX + 5 +14DD + 8 +DACHZIEGEL + 10 +5059.777473 + 20 +9981.957343 + 30 +0.0 + 0 +VERTEX + 5 +14DE + 8 +DACHZIEGEL + 10 +5109.409672 + 20 +10012.961377 + 30 +0.0 + 0 +VERTEX + 5 +14DF + 8 +DACHZIEGEL + 10 +5088.729635 + 20 +10094.605348 + 30 +0.0 + 0 +VERTEX + 5 +14E0 + 8 +DACHZIEGEL + 10 +5026.689414 + 20 +10124.575859 + 30 +0.0 + 0 +VERTEX + 5 +14E1 + 8 +DACHZIEGEL + 10 +4995.669359 + 20 +10104.940026 + 30 +0.0 + 0 +VERTEX + 5 +14E2 + 8 +DACHZIEGEL + 10 +4994.635358 + 20 +10073.935992 + 30 +0.0 + 0 +VERTEX + 5 +14E3 + 8 +DACHZIEGEL + 10 +4968.785312 + 20 +10059.467429 + 30 +0.0 + 0 +VERTEX + 5 +14E4 + 8 +DACHZIEGEL + 10 +4945.00327 + 20 +10069.802107 + 30 +0.0 + 0 +VERTEX + 5 +14E5 + 8 +DACHZIEGEL + 10 +4917.085109 + 20 +10052.233182 + 30 +0.0 + 0 +VERTEX + 5 +14E6 + 8 +DACHZIEGEL + 10 +4915.017105 + 20 +10026.396487 + 30 +0.0 + 0 +VERTEX + 5 +14E7 + 8 +DACHZIEGEL + 10 +4192.08003 + 20 +9693.477439 + 30 +0.0 + 0 +VERTEX + 5 +14E8 + 8 +DACHZIEGEL + 10 +4237.114874 + 20 +9620.495479 + 30 +0.0 + 0 +VERTEX + 5 +14E9 + 8 +DACHZIEGEL + 10 +4267.252486 + 20 +9634.839292 + 30 +0.0 + 0 +VERTEX + 5 +14EA + 8 +DACHZIEGEL + 10 +4267.970027 + 20 +9668.547288 + 30 +0.0 + 0 +VERTEX + 5 +14EB + 8 +DACHZIEGEL + 10 +4305.283271 + 20 +9689.345782 + 30 +0.0 + 0 +VERTEX + 5 +14EC + 8 +DACHZIEGEL + 10 +4329.680332 + 20 +9677.153576 + 30 +0.0 + 0 +VERTEX + 5 +14ED + 8 +DACHZIEGEL + 10 +4348.336954 + 20 +9684.325483 + 30 +0.0 + 0 +VERTEX + 5 +14EE + 8 +DACHZIEGEL + 10 +4350.489689 + 20 +9720.902172 + 30 +0.0 + 0 +VERTEX + 5 +14EF + 8 +DACHZIEGEL + 10 +5028.73062 + 20 +10037.613191 + 30 +0.0 + 0 +SEQEND + 5 +14F0 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +BDD + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +14F1 + 8 +DACHZIEGEL + 10 +5661.691485 + 20 +10434.170613 + 30 +0.0 + 0 +VERTEX + 5 +14F2 + 8 +DACHZIEGEL + 10 +5695.813545 + 20 +10379.396791 + 30 +0.0 + 0 +VERTEX + 5 +14F3 + 8 +DACHZIEGEL + 10 +5745.445744 + 20 +10410.400826 + 30 +0.0 + 0 +VERTEX + 5 +14F4 + 8 +DACHZIEGEL + 10 +5724.765708 + 20 +10492.044796 + 30 +0.0 + 0 +VERTEX + 5 +14F5 + 8 +DACHZIEGEL + 10 +5662.725486 + 20 +10522.015307 + 30 +0.0 + 0 +VERTEX + 5 +14F6 + 8 +DACHZIEGEL + 10 +5631.705431 + 20 +10502.379474 + 30 +0.0 + 0 +VERTEX + 5 +14F7 + 8 +DACHZIEGEL + 10 +5630.67143 + 20 +10471.37544 + 30 +0.0 + 0 +VERTEX + 5 +14F8 + 8 +DACHZIEGEL + 10 +5604.821384 + 20 +10456.906877 + 30 +0.0 + 0 +VERTEX + 5 +14F9 + 8 +DACHZIEGEL + 10 +5581.039342 + 20 +10467.241555 + 30 +0.0 + 0 +VERTEX + 5 +14FA + 8 +DACHZIEGEL + 10 +5553.121181 + 20 +10449.67263 + 30 +0.0 + 0 +VERTEX + 5 +14FB + 8 +DACHZIEGEL + 10 +5551.053177 + 20 +10423.835935 + 30 +0.0 + 0 +VERTEX + 5 +14FC + 8 +DACHZIEGEL + 10 +4828.116102 + 20 +10090.916887 + 30 +0.0 + 0 +VERTEX + 5 +14FD + 8 +DACHZIEGEL + 10 +4873.150946 + 20 +10017.934927 + 30 +0.0 + 0 +VERTEX + 5 +14FE + 8 +DACHZIEGEL + 10 +4903.288558 + 20 +10032.27874 + 30 +0.0 + 0 +VERTEX + 5 +14FF + 8 +DACHZIEGEL + 10 +4904.006099 + 20 +10065.986736 + 30 +0.0 + 0 +VERTEX + 5 +1500 + 8 +DACHZIEGEL + 10 +4941.319343 + 20 +10086.785231 + 30 +0.0 + 0 +VERTEX + 5 +1501 + 8 +DACHZIEGEL + 10 +4965.716404 + 20 +10074.593024 + 30 +0.0 + 0 +VERTEX + 5 +1502 + 8 +DACHZIEGEL + 10 +4984.373027 + 20 +10081.764931 + 30 +0.0 + 0 +VERTEX + 5 +1503 + 8 +DACHZIEGEL + 10 +4986.525761 + 20 +10118.34162 + 30 +0.0 + 0 +VERTEX + 5 +1504 + 8 +DACHZIEGEL + 10 +5664.766692 + 20 +10435.052639 + 30 +0.0 + 0 +SEQEND + 5 +1505 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +BF3 + 8 +REGENRINNE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1506 + 8 +REGENRINNE + 10 +4751.85938 + 20 +9780.360132 + 30 +0.0 + 0 +VERTEX + 5 +1507 + 8 +REGENRINNE + 10 +4370.237737 + 20 +9541.896463 + 30 +0.0 + 0 +SEQEND + 5 +1508 + 8 +REGENRINNE + 0 +POLYLINE + 5 +BF7 + 8 +REGENRINNE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1509 + 8 +REGENRINNE + 10 +4370.237737 + 20 +9541.896463 + 30 +0.0 + 0 +VERTEX + 5 +150A + 8 +REGENRINNE + 10 +4370.237737 + 20 +9435.360132 + 30 +0.0 + 0 +SEQEND + 5 +150B + 8 +REGENRINNE + 0 +ARC + 5 +BFB + 8 +REGENRINNE + 10 +4178.34201 + 20 +9422.824462 + 30 +0.0 + 40 +188.933697 + 50 +163.855305 + 51 +3.804345 + 0 +ARC + 5 +BFC + 8 +REGENRINNE + 10 +3985.192714 + 20 +9473.693466 + 30 +0.0 + 40 +11.785113 + 50 +8.130102 + 51 +225.0 + 0 +ARC + 5 +BFD + 8 +REGENRINNE + 10 +3974.716523 + 20 +9464.645847 + 30 +0.0 + 40 +12.876969 + 50 +176.82017 + 51 +56.309932 + 0 +POLYLINE + 5 +BFE + 8 +REGENRINNE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +BFF + 8 +REGENRINNE + 10 +3961.85938 + 20 +9465.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C00 + 8 +REGENRINNE + 10 +3961.85938 + 20 +9465.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C01 + 8 +REGENRINNE + 10 +3963.73438 + 20 +9472.181421 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C02 + 8 +REGENRINNE + 10 +3965.60938 + 20 +9477.742945 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C03 + 8 +REGENRINNE + 10 +3967.48438 + 20 +9482.191187 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C04 + 8 +REGENRINNE + 10 +3969.35938 + 20 +9485.672632 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C05 + 8 +REGENRINNE + 10 +3971.23438 + 20 +9488.333765 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C06 + 8 +REGENRINNE + 10 +3973.10938 + 20 +9490.32107 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C07 + 8 +REGENRINNE + 10 +3974.98438 + 20 +9491.781031 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C08 + 8 +REGENRINNE + 10 +3976.85938 + 20 +9492.860132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C09 + 8 +REGENRINNE + 10 +3978.736822 + 20 +9493.682886 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0A + 8 +REGENRINNE + 10 +3980.628911 + 20 +9494.285914 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0B + 8 +REGENRINNE + 10 +3982.550298 + 20 +9494.683863 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0C + 8 +REGENRINNE + 10 +3984.51563 + 20 +9494.891382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0D + 8 +REGENRINNE + 10 +3986.539556 + 20 +9494.923121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0E + 8 +REGENRINNE + 10 +3988.636724 + 20 +9494.793726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C0F + 8 +REGENRINNE + 10 +3990.821783 + 20 +9494.517847 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C10 + 8 +REGENRINNE + 10 +3993.10938 + 20 +9494.110132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C11 + 8 +REGENRINNE + 10 +3995.494634 + 20 +9493.560816 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C12 + 8 +REGENRINNE + 10 +3997.894536 + 20 +9492.762476 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C13 + 8 +REGENRINNE + 10 +4000.206548 + 20 +9491.583277 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C14 + 8 +REGENRINNE + 10 +4002.32813 + 20 +9489.891382 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C15 + 8 +REGENRINNE + 10 +4004.156743 + 20 +9487.554957 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C16 + 8 +REGENRINNE + 10 +4005.589849 + 20 +9484.442164 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C17 + 8 +REGENRINNE + 10 +4006.524908 + 20 +9480.421168 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C18 + 8 +REGENRINNE + 10 +4006.85938 + 20 +9475.360132 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +C19 + 8 +REGENRINNE + 10 +3966.85938 + 20 +9485.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1A + 8 +REGENRINNE + 10 +3976.85938 + 20 +9495.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1B + 8 +REGENRINNE + 10 +3991.85938 + 20 +9495.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1C + 8 +REGENRINNE + 10 +4006.85938 + 20 +9490.360132 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +C1D + 8 +REGENRINNE + 10 +4006.85938 + 20 +9475.360132 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +C1E + 8 +REGENRINNE + 0 +ARC + 5 +C1F + 8 +REGENRINNE + 10 +4177.065242 + 20 +9431.201026 + 30 +0.0 + 40 +175.841014 + 50 +165.455559 + 51 +6.255194 + 0 +ARC + 5 +C20 + 8 +REGENRINNE + 10 +4339.35938 + 20 +9450.360132 + 30 +0.0 + 40 +12.5 + 50 +0.0 + 51 +180.0 + 0 +LINE + 5 +C21 + 8 +REGENRINNE + 10 +4326.85938 + 20 +9450.360132 + 30 +0.0 + 11 +4326.85938 + 21 +9435.360132 + 31 +0.0 + 0 +POLYLINE + 5 +C22 + 8 +REGENRINNE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +150C + 8 +REGENRINNE + 10 +4356.85938 + 20 +9535.360132 + 30 +0.0 + 0 +VERTEX + 5 +150D + 8 +REGENRINNE + 10 +4356.85938 + 20 +9500.360132 + 30 +0.0 + 0 +VERTEX + 5 +150E + 8 +REGENRINNE + 10 +4316.85938 + 20 +9460.360132 + 30 +0.0 + 0 +VERTEX + 5 +150F + 8 +REGENRINNE + 10 +4316.85938 + 20 +9435.360132 + 30 +0.0 + 0 +SEQEND + 5 +1510 + 8 +REGENRINNE + 0 +ARC + 5 +C28 + 8 +REGENRINNE + 10 +4326.85938 + 20 +9431.193466 + 30 +0.0 + 40 +10.833333 + 50 +157.380135 + 51 +22.619865 + 0 +POLYLINE + 5 +C29 + 8 +REGENRINNE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1511 + 8 +REGENRINNE + 10 +4351.85938 + 20 +9525.360132 + 30 +0.0 + 0 +VERTEX + 5 +1512 + 8 +REGENRINNE + 10 +4366.85938 + 20 +9525.360132 + 30 +0.0 + 0 +SEQEND + 5 +1513 + 8 +REGENRINNE + 0 +POLYLINE + 5 +C2D + 8 +REGENRINNE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1514 + 8 +REGENRINNE + 10 +4351.85938 + 20 +9510.360132 + 30 +0.0 + 0 +VERTEX + 5 +1515 + 8 +REGENRINNE + 10 +4371.85938 + 20 +9510.360132 + 30 +0.0 + 0 +SEQEND + 5 +1516 + 8 +REGENRINNE + 0 +POLYLINE + 5 +C31 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1517 + 8 +SCHNITTKANTEN + 10 +4736.85938 + 20 +7695.360132 + 30 +0.0 + 0 +VERTEX + 5 +1518 + 8 +SCHNITTKANTEN + 10 +6636.85938 + 20 +7695.360132 + 30 +0.0 + 0 +SEQEND + 5 +1519 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +C35 + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +151A + 8 +SCHNITTKANTEN + 10 +8531.85938 + 20 +11010.360132 + 30 +0.0 + 0 +VERTEX + 5 +151B + 8 +SCHNITTKANTEN + 10 +7842.964337 + 20 +12112.822657 + 30 +0.0 + 0 +SEQEND + 5 +151C + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +C39 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +151D + 8 +HOLZ + 10 +5339.505129 + 20 +9482.537918 + 30 +0.0 + 0 +VERTEX + 5 +151E + 8 +HOLZ + 10 +5131.977291 + 20 +9352.860132 + 30 +0.0 + 0 +SEQEND + 5 +151F + 8 +HOLZ + 0 +POLYLINE + 5 +C3D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1520 + 8 +DETAILS + 10 +5315.976103 + 20 +8261.227005 + 30 +0.0 + 0 +VERTEX + 5 +1521 + 8 +DETAILS + 10 +5315.976103 + 20 +8186.227005 + 30 +0.0 + 0 +SEQEND + 5 +1522 + 8 +DETAILS + 0 +POLYLINE + 5 +C41 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1523 + 8 +DETAILS + 10 +5239.35938 + 20 +8298.787465 + 30 +0.0 + 0 +VERTEX + 5 +1524 + 8 +DETAILS + 10 +5239.35938 + 20 +8148.787465 + 30 +0.0 + 0 +SEQEND + 5 +1525 + 8 +DETAILS + 0 +POLYLINE + 5 +C45 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1526 + 8 +DETAILS + 10 +5126.85938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +1527 + 8 +DETAILS + 10 +5189.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +1528 + 8 +DETAILS + 0 +POLYLINE + 5 +C49 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1529 + 8 +DETAILS + 10 +5014.35938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +152A + 8 +DETAILS + 10 +5089.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +152B + 8 +DETAILS + 0 +POLYLINE + 5 +C4D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +152C + 8 +DETAILS + 10 +5376.85938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +152D + 8 +DETAILS + 10 +5439.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +152E + 8 +DETAILS + 0 +POLYLINE + 5 +C51 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +152F + 8 +DETAILS + 10 +5201.85938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +1530 + 8 +DETAILS + 10 +5339.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +1531 + 8 +DETAILS + 0 +POLYLINE + 5 +C55 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1532 + 8 +DETAILS + 10 +5689.35938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +1533 + 8 +DETAILS + 10 +5764.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +1534 + 8 +DETAILS + 0 +POLYLINE + 5 +C59 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1535 + 8 +DETAILS + 10 +5589.35938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +1536 + 8 +DETAILS + 10 +5639.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +1537 + 8 +DETAILS + 0 +POLYLINE + 5 +C5D + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1538 + 8 +DETAILS + 10 +5476.85938 + 20 +8223.787465 + 30 +0.0 + 0 +VERTEX + 5 +1539 + 8 +DETAILS + 10 +5539.35938 + 20 +8223.787465 + 30 +0.0 + 0 +SEQEND + 5 +153A + 8 +DETAILS + 0 +INSERT + 5 +C61 + 8 +SCHRAFFUR + 2 +*X5 + 10 +-743.14062 + 20 +-614.639868 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +450.0 +1040 +0.0 +1002 +} + 0 +INSERT + 5 +C62 + 8 +SCHRAFFUR + 2 +*X6 + 10 +-743.14062 + 20 +-614.639868 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1200.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +C63 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +153B + 8 +DACHZIEGEL + 10 +7947.477152 + 20 +11945.56719 + 30 +0.0 + 0 +VERTEX + 5 +153C + 8 +DACHZIEGEL + 10 +7372.26039 + 20 +11680.67468 + 30 +0.0 + 0 +VERTEX + 5 +153D + 8 +DACHZIEGEL + 10 +7417.295234 + 20 +11607.69272 + 30 +0.0 + 0 +VERTEX + 5 +153E + 8 +DACHZIEGEL + 10 +7447.432846 + 20 +11622.036533 + 30 +0.0 + 0 +VERTEX + 5 +153F + 8 +DACHZIEGEL + 10 +7448.150387 + 20 +11655.744529 + 30 +0.0 + 0 +VERTEX + 5 +1540 + 8 +DACHZIEGEL + 10 +7485.463631 + 20 +11676.543023 + 30 +0.0 + 0 +VERTEX + 5 +1541 + 8 +DACHZIEGEL + 10 +7509.860693 + 20 +11664.350817 + 30 +0.0 + 0 +VERTEX + 5 +1542 + 8 +DACHZIEGEL + 10 +7528.517315 + 20 +11671.522724 + 30 +0.0 + 0 +VERTEX + 5 +1543 + 8 +DACHZIEGEL + 10 +7530.670049 + 20 +11708.099412 + 30 +0.0 + 0 +VERTEX + 5 +1544 + 8 +DACHZIEGEL + 10 +7968.197842 + 20 +11912.407155 + 30 +0.0 + 0 +SEQEND + 5 +1545 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +C6F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1546 + 8 +HOLZ + 10 +4486.086736 + 20 +9510.786108 + 30 +0.0 + 0 +VERTEX + 5 +1547 + 8 +HOLZ + 10 +8069.652157 + 20 +11750.046311 + 30 +0.0 + 0 +SEQEND + 5 +1548 + 8 +HOLZ + 0 +POLYLINE + 5 +C73 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1549 + 8 +HOLZ + 10 +8029.908213 + 20 +11813.649918 + 30 +0.0 + 0 +VERTEX + 5 +154A + 8 +HOLZ + 10 +4446.342791 + 20 +9574.389715 + 30 +0.0 + 0 +VERTEX + 5 +154B + 8 +HOLZ + 10 +4486.086736 + 20 +9510.786108 + 30 +0.0 + 0 +SEQEND + 5 +154C + 8 +HOLZ + 0 +POLYLINE + 5 +C78 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +154D + 8 +HOLZ + 10 +4901.85938 + 20 +9209.066503 + 30 +0.0 + 0 +VERTEX + 5 +154E + 8 +HOLZ + 10 +4739.353384 + 20 +9107.521486 + 30 +0.0 + 0 +VERTEX + 5 +154F + 8 +HOLZ + 10 +4505.134848 + 20 +9481.314131 + 30 +0.0 + 0 +VERTEX + 5 +1550 + 8 +HOLZ + 10 +4702.640358 + 20 +9615.210923 + 30 +0.0 + 0 +VERTEX + 5 +1551 + 8 +HOLZ + 10 +8083.535338 + 20 +11727.828578 + 30 +0.0 + 0 +SEQEND + 5 +1552 + 8 +HOLZ + 0 +POLYLINE + 5 +C7F + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1553 + 8 +PE-FOLIE + 10 +4488.893741 + 20 +9491.569591 + 30 +0.0 + 0 +VERTEX + 5 +1554 + 8 +PE-FOLIE + 10 +8075.530951 + 20 +11740.638274 + 30 +0.0 + 0 +SEQEND + 5 +1555 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +C83 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1556 + 8 +DAEMMUNG + 10 +8162.82995 + 20 +11600.930672 + 30 +0.0 + 0 +VERTEX + 5 +1557 + 8 +DAEMMUNG + 10 +5333.043986 + 20 +9831.572016 + 30 +0.0 + 0 +VERTEX + 5 +1558 + 8 +DAEMMUNG + 10 +5341.298947 + 20 +9352.860132 + 30 +0.0 + 0 +SEQEND + 5 +1559 + 8 +DAEMMUNG + 0 +POLYLINE + 5 +C88 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +155A + 8 +HOLZ + 10 +8321.999007 + 20 +11346.206934 + 30 +0.0 + 0 +VERTEX + 5 +155B + 8 +HOLZ + 10 +5912.140374 + 20 +9840.360132 + 30 +0.0 + 0 +SEQEND + 5 +155C + 8 +HOLZ + 0 +POLYLINE + 5 +C8C + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +155D + 8 +HOLZ + 10 +8360.89771 + 20 +11283.955996 + 30 +0.0 + 0 +VERTEX + 5 +155E + 8 +HOLZ + 10 +6050.661403 + 20 +9840.360132 + 30 +0.0 + 0 +SEQEND + 5 +155F + 8 +HOLZ + 0 +POLYLINE + 5 +C90 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1560 + 8 +HOLZ + 10 +5956.34925 + 20 +9840.360132 + 30 +0.0 + 0 +VERTEX + 5 +1561 + 8 +HOLZ + 10 +8336.428273 + 20 +11323.115282 + 30 +0.0 + 0 +SEQEND + 5 +1562 + 8 +HOLZ + 0 +POLYLINE + 5 +C94 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1563 + 8 +PE-FOLIE + 10 +8327.649049 + 20 +11337.164977 + 30 +0.0 + 0 +VERTEX + 5 +1564 + 8 +PE-FOLIE + 10 +5932.260573 + 20 +9840.360132 + 30 +0.0 + 0 +SEQEND + 5 +1565 + 8 +PE-FOLIE + 0 +LINE + 5 +C98 + 8 +0 + 62 + 0 + 10 +5339.626437 + 20 +9712.713027 + 30 +0.0 + 11 +5388.10938 + 21 +9712.713027 + 31 +0.0 + 0 +LINE + 5 +C99 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9712.713027 + 30 +0.0 + 11 +5556.85938 + 21 +9712.713027 + 31 +0.0 + 0 +LINE + 5 +C9A + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +9712.713027 + 30 +0.0 + 11 +5725.60938 + 21 +9712.713027 + 31 +0.0 + 0 +LINE + 5 +C9B + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9761.426956 + 30 +0.0 + 11 +5472.48438 + 21 +9761.426956 + 31 +0.0 + 0 +LINE + 5 +C9C + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9761.426956 + 30 +0.0 + 11 +5641.23438 + 21 +9761.426956 + 31 +0.0 + 0 +LINE + 5 +C9D + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9761.426956 + 30 +0.0 + 11 +5770.340609 + 21 +9761.426956 + 31 +0.0 + 0 +LINE + 5 +C9E + 8 +0 + 62 + 0 + 10 +5339.979617 + 20 +9810.140885 + 30 +0.0 + 11 +5388.10938 + 21 +9810.140885 + 31 +0.0 + 0 +LINE + 5 +C9F + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9810.140885 + 30 +0.0 + 11 +5556.85938 + 21 +9810.140885 + 31 +0.0 + 0 +LINE + 5 +CA0 + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +9810.140885 + 30 +0.0 + 11 +5725.60938 + 21 +9810.140885 + 31 +0.0 + 0 +LINE + 5 +CA1 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9858.854814 + 30 +0.0 + 11 +5472.48438 + 21 +9858.854814 + 31 +0.0 + 0 +LINE + 5 +CA2 + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9858.854814 + 30 +0.0 + 11 +5641.23438 + 21 +9858.854814 + 31 +0.0 + 0 +LINE + 5 +CA3 + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9858.854814 + 30 +0.0 + 11 +5809.98438 + 21 +9858.854814 + 31 +0.0 + 0 +LINE + 5 +CA4 + 8 +0 + 62 + 0 + 10 +5922.48438 + 20 +9858.854814 + 30 +0.0 + 11 +5951.087016 + 21 +9858.854814 + 31 +0.0 + 0 +LINE + 5 +CA5 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9907.568742 + 30 +0.0 + 11 +5556.85938 + 21 +9907.568742 + 31 +0.0 + 0 +LINE + 5 +CA6 + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +9907.568742 + 30 +0.0 + 11 +5725.60938 + 21 +9907.568742 + 31 +0.0 + 0 +LINE + 5 +CA7 + 8 +0 + 62 + 0 + 10 +5838.10938 + 20 +9907.568742 + 30 +0.0 + 11 +5894.35938 + 21 +9907.568742 + 31 +0.0 + 0 +LINE + 5 +CA8 + 8 +0 + 62 + 0 + 10 +6006.85938 + 20 +9907.568742 + 30 +0.0 + 11 +6028.067539 + 21 +9907.568742 + 31 +0.0 + 0 +LINE + 5 +CA9 + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9956.282671 + 30 +0.0 + 11 +5641.23438 + 21 +9956.282671 + 31 +0.0 + 0 +LINE + 5 +CAA + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9956.282671 + 30 +0.0 + 11 +5809.98438 + 21 +9956.282671 + 31 +0.0 + 0 +LINE + 5 +CAB + 8 +0 + 62 + 0 + 10 +5922.48438 + 20 +9956.282671 + 30 +0.0 + 11 +5978.73438 + 21 +9956.282671 + 31 +0.0 + 0 +LINE + 5 +CAC + 8 +0 + 62 + 0 + 10 +6091.23438 + 20 +9956.282671 + 30 +0.0 + 11 +6105.048062 + 21 +9956.282671 + 31 +0.0 + 0 +LINE + 5 +CAD + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +10004.9966 + 30 +0.0 + 11 +5725.60938 + 21 +10004.9966 + 31 +0.0 + 0 +LINE + 5 +CAE + 8 +0 + 62 + 0 + 10 +5838.10938 + 20 +10004.9966 + 30 +0.0 + 11 +5894.35938 + 21 +10004.9966 + 31 +0.0 + 0 +LINE + 5 +CAF + 8 +0 + 62 + 0 + 10 +6006.85938 + 20 +10004.9966 + 30 +0.0 + 11 +6063.10938 + 21 +10004.9966 + 31 +0.0 + 0 +LINE + 5 +CB0 + 8 +0 + 62 + 0 + 10 +6175.60938 + 20 +10004.9966 + 30 +0.0 + 11 +6182.028585 + 21 +10004.9966 + 31 +0.0 + 0 +LINE + 5 +CB1 + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +10053.710529 + 30 +0.0 + 11 +5809.98438 + 21 +10053.710529 + 31 +0.0 + 0 +LINE + 5 +CB2 + 8 +0 + 62 + 0 + 10 +5922.48438 + 20 +10053.710529 + 30 +0.0 + 11 +5978.73438 + 21 +10053.710529 + 31 +0.0 + 0 +LINE + 5 +CB3 + 8 +0 + 62 + 0 + 10 +6091.23438 + 20 +10053.710529 + 30 +0.0 + 11 +6147.48438 + 21 +10053.710529 + 31 +0.0 + 0 +LINE + 5 +CB4 + 8 +0 + 62 + 0 + 10 +5838.10938 + 20 +10102.424457 + 30 +0.0 + 11 +5894.35938 + 21 +10102.424457 + 31 +0.0 + 0 +LINE + 5 +CB5 + 8 +0 + 62 + 0 + 10 +6006.85938 + 20 +10102.424457 + 30 +0.0 + 11 +6063.10938 + 21 +10102.424457 + 31 +0.0 + 0 +LINE + 5 +CB6 + 8 +0 + 62 + 0 + 10 +6175.60938 + 20 +10102.424457 + 30 +0.0 + 11 +6231.85938 + 21 +10102.424457 + 31 +0.0 + 0 +LINE + 5 +CB7 + 8 +0 + 62 + 0 + 10 +5922.48438 + 20 +10151.138386 + 30 +0.0 + 11 +5978.73438 + 21 +10151.138386 + 31 +0.0 + 0 +LINE + 5 +CB8 + 8 +0 + 62 + 0 + 10 +6091.23438 + 20 +10151.138386 + 30 +0.0 + 11 +6147.48438 + 21 +10151.138386 + 31 +0.0 + 0 +LINE + 5 +CB9 + 8 +0 + 62 + 0 + 10 +6259.98438 + 20 +10151.138386 + 30 +0.0 + 11 +6316.23438 + 21 +10151.138386 + 31 +0.0 + 0 +LINE + 5 +CBA + 8 +0 + 62 + 0 + 10 +6006.85938 + 20 +10199.852315 + 30 +0.0 + 11 +6063.10938 + 21 +10199.852315 + 31 +0.0 + 0 +LINE + 5 +CBB + 8 +0 + 62 + 0 + 10 +6175.60938 + 20 +10199.852315 + 30 +0.0 + 11 +6231.85938 + 21 +10199.852315 + 31 +0.0 + 0 +LINE + 5 +CBC + 8 +0 + 62 + 0 + 10 +6344.35938 + 20 +10199.852315 + 30 +0.0 + 11 +6400.60938 + 21 +10199.852315 + 31 +0.0 + 0 +LINE + 5 +CBD + 8 +0 + 62 + 0 + 10 +6091.23438 + 20 +10248.566244 + 30 +0.0 + 11 +6147.48438 + 21 +10248.566244 + 31 +0.0 + 0 +LINE + 5 +CBE + 8 +0 + 62 + 0 + 10 +6259.98438 + 20 +10248.566244 + 30 +0.0 + 11 +6316.23438 + 21 +10248.566244 + 31 +0.0 + 0 +LINE + 5 +CBF + 8 +0 + 62 + 0 + 10 +6428.73438 + 20 +10248.566244 + 30 +0.0 + 11 +6484.98438 + 21 +10248.566244 + 31 +0.0 + 0 +LINE + 5 +CC0 + 8 +0 + 62 + 0 + 10 +6175.60938 + 20 +10297.280172 + 30 +0.0 + 11 +6231.85938 + 21 +10297.280172 + 31 +0.0 + 0 +LINE + 5 +CC1 + 8 +0 + 62 + 0 + 10 +6344.35938 + 20 +10297.280172 + 30 +0.0 + 11 +6400.60938 + 21 +10297.280172 + 31 +0.0 + 0 +LINE + 5 +CC2 + 8 +0 + 62 + 0 + 10 +6513.10938 + 20 +10297.280172 + 30 +0.0 + 11 +6569.35938 + 21 +10297.280172 + 31 +0.0 + 0 +LINE + 5 +CC3 + 8 +0 + 62 + 0 + 10 +6259.98438 + 20 +10345.994101 + 30 +0.0 + 11 +6316.23438 + 21 +10345.994101 + 31 +0.0 + 0 +LINE + 5 +CC4 + 8 +0 + 62 + 0 + 10 +6428.73438 + 20 +10345.994101 + 30 +0.0 + 11 +6484.98438 + 21 +10345.994101 + 31 +0.0 + 0 +LINE + 5 +CC5 + 8 +0 + 62 + 0 + 10 +6597.48438 + 20 +10345.994101 + 30 +0.0 + 11 +6653.73438 + 21 +10345.994101 + 31 +0.0 + 0 +LINE + 5 +CC6 + 8 +0 + 62 + 0 + 10 +6344.35938 + 20 +10394.70803 + 30 +0.0 + 11 +6400.60938 + 21 +10394.70803 + 31 +0.0 + 0 +LINE + 5 +CC7 + 8 +0 + 62 + 0 + 10 +6513.10938 + 20 +10394.70803 + 30 +0.0 + 11 +6569.35938 + 21 +10394.70803 + 31 +0.0 + 0 +LINE + 5 +CC8 + 8 +0 + 62 + 0 + 10 +6681.85938 + 20 +10394.70803 + 30 +0.0 + 11 +6738.10938 + 21 +10394.70803 + 31 +0.0 + 0 +LINE + 5 +CC9 + 8 +0 + 62 + 0 + 10 +6315.424265 + 20 +10443.421959 + 30 +0.0 + 11 +6316.23438 + 21 +10443.421959 + 31 +0.0 + 0 +LINE + 5 +CCA + 8 +0 + 62 + 0 + 10 +6428.73438 + 20 +10443.421959 + 30 +0.0 + 11 +6484.98438 + 21 +10443.421959 + 31 +0.0 + 0 +LINE + 5 +CCB + 8 +0 + 62 + 0 + 10 +6597.48438 + 20 +10443.421959 + 30 +0.0 + 11 +6653.73438 + 21 +10443.421959 + 31 +0.0 + 0 +LINE + 5 +CCC + 8 +0 + 62 + 0 + 10 +6766.23438 + 20 +10443.421959 + 30 +0.0 + 11 +6822.48438 + 21 +10443.421959 + 31 +0.0 + 0 +LINE + 5 +CCD + 8 +0 + 62 + 0 + 10 +6393.446207 + 20 +10492.135887 + 30 +0.0 + 11 +6400.60938 + 21 +10492.135887 + 31 +0.0 + 0 +LINE + 5 +CCE + 8 +0 + 62 + 0 + 10 +6513.10938 + 20 +10492.135887 + 30 +0.0 + 11 +6569.35938 + 21 +10492.135887 + 31 +0.0 + 0 +LINE + 5 +CCF + 8 +0 + 62 + 0 + 10 +6681.85938 + 20 +10492.135887 + 30 +0.0 + 11 +6738.10938 + 21 +10492.135887 + 31 +0.0 + 0 +LINE + 5 +CD0 + 8 +0 + 62 + 0 + 10 +6850.60938 + 20 +10492.135887 + 30 +0.0 + 11 +6906.85938 + 21 +10492.135887 + 31 +0.0 + 0 +LINE + 5 +CD1 + 8 +0 + 62 + 0 + 10 +6471.46815 + 20 +10540.849816 + 30 +0.0 + 11 +6484.98438 + 21 +10540.849816 + 31 +0.0 + 0 +LINE + 5 +CD2 + 8 +0 + 62 + 0 + 10 +6597.48438 + 20 +10540.849816 + 30 +0.0 + 11 +6653.73438 + 21 +10540.849816 + 31 +0.0 + 0 +LINE + 5 +CD3 + 8 +0 + 62 + 0 + 10 +6766.23438 + 20 +10540.849816 + 30 +0.0 + 11 +6822.48438 + 21 +10540.849816 + 31 +0.0 + 0 +LINE + 5 +CD4 + 8 +0 + 62 + 0 + 10 +6934.98438 + 20 +10540.849816 + 30 +0.0 + 11 +6991.23438 + 21 +10540.849816 + 31 +0.0 + 0 +LINE + 5 +CD5 + 8 +0 + 62 + 0 + 10 +6549.490092 + 20 +10589.563745 + 30 +0.0 + 11 +6569.35938 + 21 +10589.563745 + 31 +0.0 + 0 +LINE + 5 +CD6 + 8 +0 + 62 + 0 + 10 +6681.85938 + 20 +10589.563745 + 30 +0.0 + 11 +6738.10938 + 21 +10589.563745 + 31 +0.0 + 0 +LINE + 5 +CD7 + 8 +0 + 62 + 0 + 10 +6850.60938 + 20 +10589.563745 + 30 +0.0 + 11 +6906.85938 + 21 +10589.563745 + 31 +0.0 + 0 +LINE + 5 +CD8 + 8 +0 + 62 + 0 + 10 +7019.35938 + 20 +10589.563745 + 30 +0.0 + 11 +7075.60938 + 21 +10589.563745 + 31 +0.0 + 0 +LINE + 5 +CD9 + 8 +0 + 62 + 0 + 10 +6627.512035 + 20 +10638.277674 + 30 +0.0 + 11 +6653.73438 + 21 +10638.277674 + 31 +0.0 + 0 +LINE + 5 +CDA + 8 +0 + 62 + 0 + 10 +6766.23438 + 20 +10638.277674 + 30 +0.0 + 11 +6822.48438 + 21 +10638.277674 + 31 +0.0 + 0 +LINE + 5 +CDB + 8 +0 + 62 + 0 + 10 +6934.98438 + 20 +10638.277674 + 30 +0.0 + 11 +6991.23438 + 21 +10638.277674 + 31 +0.0 + 0 +LINE + 5 +CDC + 8 +0 + 62 + 0 + 10 +7103.73438 + 20 +10638.277674 + 30 +0.0 + 11 +7159.98438 + 21 +10638.277674 + 31 +0.0 + 0 +LINE + 5 +CDD + 8 +0 + 62 + 0 + 10 +6705.533977 + 20 +10686.991602 + 30 +0.0 + 11 +6738.10938 + 21 +10686.991602 + 31 +0.0 + 0 +LINE + 5 +CDE + 8 +0 + 62 + 0 + 10 +6850.60938 + 20 +10686.991602 + 30 +0.0 + 11 +6906.85938 + 21 +10686.991602 + 31 +0.0 + 0 +LINE + 5 +CDF + 8 +0 + 62 + 0 + 10 +7019.35938 + 20 +10686.991602 + 30 +0.0 + 11 +7075.60938 + 21 +10686.991602 + 31 +0.0 + 0 +LINE + 5 +CE0 + 8 +0 + 62 + 0 + 10 +7188.10938 + 20 +10686.991602 + 30 +0.0 + 11 +7244.35938 + 21 +10686.991602 + 31 +0.0 + 0 +LINE + 5 +CE1 + 8 +0 + 62 + 0 + 10 +6783.55592 + 20 +10735.705531 + 30 +0.0 + 11 +6822.48438 + 21 +10735.705531 + 31 +0.0 + 0 +LINE + 5 +CE2 + 8 +0 + 62 + 0 + 10 +6934.98438 + 20 +10735.705531 + 30 +0.0 + 11 +6991.23438 + 21 +10735.705531 + 31 +0.0 + 0 +LINE + 5 +CE3 + 8 +0 + 62 + 0 + 10 +7103.73438 + 20 +10735.705531 + 30 +0.0 + 11 +7159.98438 + 21 +10735.705531 + 31 +0.0 + 0 +LINE + 5 +CE4 + 8 +0 + 62 + 0 + 10 +7272.48438 + 20 +10735.705531 + 30 +0.0 + 11 +7328.73438 + 21 +10735.705531 + 31 +0.0 + 0 +LINE + 5 +CE5 + 8 +0 + 62 + 0 + 10 +6861.577862 + 20 +10784.41946 + 30 +0.0 + 11 +6906.85938 + 21 +10784.41946 + 31 +0.0 + 0 +LINE + 5 +CE6 + 8 +0 + 62 + 0 + 10 +7019.35938 + 20 +10784.41946 + 30 +0.0 + 11 +7075.60938 + 21 +10784.41946 + 31 +0.0 + 0 +LINE + 5 +CE7 + 8 +0 + 62 + 0 + 10 +7188.10938 + 20 +10784.41946 + 30 +0.0 + 11 +7244.35938 + 21 +10784.41946 + 31 +0.0 + 0 +LINE + 5 +CE8 + 8 +0 + 62 + 0 + 10 +7356.85938 + 20 +10784.41946 + 30 +0.0 + 11 +7413.10938 + 21 +10784.41946 + 31 +0.0 + 0 +LINE + 5 +CE9 + 8 +0 + 62 + 0 + 10 +6939.599804 + 20 +10833.133389 + 30 +0.0 + 11 +6991.23438 + 21 +10833.133389 + 31 +0.0 + 0 +LINE + 5 +CEA + 8 +0 + 62 + 0 + 10 +7103.73438 + 20 +10833.133389 + 30 +0.0 + 11 +7159.98438 + 21 +10833.133389 + 31 +0.0 + 0 +LINE + 5 +CEB + 8 +0 + 62 + 0 + 10 +7272.48438 + 20 +10833.133389 + 30 +0.0 + 11 +7328.73438 + 21 +10833.133389 + 31 +0.0 + 0 +LINE + 5 +CEC + 8 +0 + 62 + 0 + 10 +7441.23438 + 20 +10833.133389 + 30 +0.0 + 11 +7490.697474 + 21 +10833.133389 + 31 +0.0 + 0 +LINE + 5 +CED + 8 +0 + 62 + 0 + 10 +7019.35938 + 20 +10881.847317 + 30 +0.0 + 11 +7075.60938 + 21 +10881.847317 + 31 +0.0 + 0 +LINE + 5 +CEE + 8 +0 + 62 + 0 + 10 +7188.10938 + 20 +10881.847317 + 30 +0.0 + 11 +7244.35938 + 21 +10881.847317 + 31 +0.0 + 0 +LINE + 5 +CEF + 8 +0 + 62 + 0 + 10 +7356.85938 + 20 +10881.847317 + 30 +0.0 + 11 +7413.10938 + 21 +10881.847317 + 31 +0.0 + 0 +LINE + 5 +CF0 + 8 +0 + 62 + 0 + 10 +7525.60938 + 20 +10881.847317 + 30 +0.0 + 11 +7567.677996 + 21 +10881.847317 + 31 +0.0 + 0 +LINE + 5 +CF1 + 8 +0 + 62 + 0 + 10 +7103.73438 + 20 +10930.561246 + 30 +0.0 + 11 +7159.98438 + 21 +10930.561246 + 31 +0.0 + 0 +LINE + 5 +CF2 + 8 +0 + 62 + 0 + 10 +7272.48438 + 20 +10930.561246 + 30 +0.0 + 11 +7328.73438 + 21 +10930.561246 + 31 +0.0 + 0 +LINE + 5 +CF3 + 8 +0 + 62 + 0 + 10 +7441.23438 + 20 +10930.561246 + 30 +0.0 + 11 +7497.48438 + 21 +10930.561246 + 31 +0.0 + 0 +LINE + 5 +CF4 + 8 +0 + 62 + 0 + 10 +7609.98438 + 20 +10930.561246 + 30 +0.0 + 11 +7644.658519 + 21 +10930.561246 + 31 +0.0 + 0 +LINE + 5 +CF5 + 8 +0 + 62 + 0 + 10 +7188.10938 + 20 +10979.275175 + 30 +0.0 + 11 +7244.35938 + 21 +10979.275175 + 31 +0.0 + 0 +LINE + 5 +CF6 + 8 +0 + 62 + 0 + 10 +7356.85938 + 20 +10979.275175 + 30 +0.0 + 11 +7413.10938 + 21 +10979.275175 + 31 +0.0 + 0 +LINE + 5 +CF7 + 8 +0 + 62 + 0 + 10 +7525.60938 + 20 +10979.275175 + 30 +0.0 + 11 +7581.85938 + 21 +10979.275175 + 31 +0.0 + 0 +LINE + 5 +CF8 + 8 +0 + 62 + 0 + 10 +7694.35938 + 20 +10979.275175 + 30 +0.0 + 11 +7721.639042 + 21 +10979.275175 + 31 +0.0 + 0 +LINE + 5 +CF9 + 8 +0 + 62 + 0 + 10 +7272.48438 + 20 +11027.989104 + 30 +0.0 + 11 +7328.73438 + 21 +11027.989104 + 31 +0.0 + 0 +LINE + 5 +CFA + 8 +0 + 62 + 0 + 10 +7441.23438 + 20 +11027.989104 + 30 +0.0 + 11 +7497.48438 + 21 +11027.989104 + 31 +0.0 + 0 +LINE + 5 +CFB + 8 +0 + 62 + 0 + 10 +7609.98438 + 20 +11027.989104 + 30 +0.0 + 11 +7666.23438 + 21 +11027.989104 + 31 +0.0 + 0 +LINE + 5 +CFC + 8 +0 + 62 + 0 + 10 +7778.73438 + 20 +11027.989104 + 30 +0.0 + 11 +7798.619565 + 21 +11027.989104 + 31 +0.0 + 0 +LINE + 5 +CFD + 8 +0 + 62 + 0 + 10 +7356.85938 + 20 +11076.703032 + 30 +0.0 + 11 +7413.10938 + 21 +11076.703032 + 31 +0.0 + 0 +LINE + 5 +CFE + 8 +0 + 62 + 0 + 10 +7525.60938 + 20 +11076.703032 + 30 +0.0 + 11 +7581.85938 + 21 +11076.703032 + 31 +0.0 + 0 +LINE + 5 +CFF + 8 +0 + 62 + 0 + 10 +7694.35938 + 20 +11076.703032 + 30 +0.0 + 11 +7750.60938 + 21 +11076.703032 + 31 +0.0 + 0 +LINE + 5 +D00 + 8 +0 + 62 + 0 + 10 +7863.10938 + 20 +11076.703032 + 30 +0.0 + 11 +7875.600088 + 21 +11076.703032 + 31 +0.0 + 0 +LINE + 5 +D01 + 8 +0 + 62 + 0 + 10 +7441.23438 + 20 +11125.416961 + 30 +0.0 + 11 +7497.48438 + 21 +11125.416961 + 31 +0.0 + 0 +LINE + 5 +D02 + 8 +0 + 62 + 0 + 10 +7609.98438 + 20 +11125.416961 + 30 +0.0 + 11 +7666.23438 + 21 +11125.416961 + 31 +0.0 + 0 +LINE + 5 +D03 + 8 +0 + 62 + 0 + 10 +7778.73438 + 20 +11125.416961 + 30 +0.0 + 11 +7834.98438 + 21 +11125.416961 + 31 +0.0 + 0 +LINE + 5 +D04 + 8 +0 + 62 + 0 + 10 +7947.48438 + 20 +11125.416961 + 30 +0.0 + 11 +7952.580611 + 21 +11125.416961 + 31 +0.0 + 0 +LINE + 5 +D05 + 8 +0 + 62 + 0 + 10 +7525.60938 + 20 +11174.13089 + 30 +0.0 + 11 +7581.85938 + 21 +11174.13089 + 31 +0.0 + 0 +LINE + 5 +D06 + 8 +0 + 62 + 0 + 10 +7694.35938 + 20 +11174.13089 + 30 +0.0 + 11 +7750.60938 + 21 +11174.13089 + 31 +0.0 + 0 +LINE + 5 +D07 + 8 +0 + 62 + 0 + 10 +7863.10938 + 20 +11174.13089 + 30 +0.0 + 11 +7919.35938 + 21 +11174.13089 + 31 +0.0 + 0 +LINE + 5 +D08 + 8 +0 + 62 + 0 + 10 +7609.98438 + 20 +11222.844819 + 30 +0.0 + 11 +7666.23438 + 21 +11222.844819 + 31 +0.0 + 0 +LINE + 5 +D09 + 8 +0 + 62 + 0 + 10 +7778.73438 + 20 +11222.844819 + 30 +0.0 + 11 +7834.98438 + 21 +11222.844819 + 31 +0.0 + 0 +LINE + 5 +D0A + 8 +0 + 62 + 0 + 10 +7947.48438 + 20 +11222.844819 + 30 +0.0 + 11 +8003.73438 + 21 +11222.844819 + 31 +0.0 + 0 +LINE + 5 +D0B + 8 +0 + 62 + 0 + 10 +7694.35938 + 20 +11271.558747 + 30 +0.0 + 11 +7750.60938 + 21 +11271.558747 + 31 +0.0 + 0 +LINE + 5 +D0C + 8 +0 + 62 + 0 + 10 +7863.10938 + 20 +11271.558747 + 30 +0.0 + 11 +7919.35938 + 21 +11271.558747 + 31 +0.0 + 0 +LINE + 5 +D0D + 8 +0 + 62 + 0 + 10 +8031.85938 + 20 +11271.558747 + 30 +0.0 + 11 +8088.10938 + 21 +11271.558747 + 31 +0.0 + 0 +LINE + 5 +D0E + 8 +0 + 62 + 0 + 10 +7778.73438 + 20 +11320.272676 + 30 +0.0 + 11 +7834.98438 + 21 +11320.272676 + 31 +0.0 + 0 +LINE + 5 +D0F + 8 +0 + 62 + 0 + 10 +7947.48438 + 20 +11320.272676 + 30 +0.0 + 11 +8003.73438 + 21 +11320.272676 + 31 +0.0 + 0 +LINE + 5 +D10 + 8 +0 + 62 + 0 + 10 +8116.23438 + 20 +11320.272676 + 30 +0.0 + 11 +8172.48438 + 21 +11320.272676 + 31 +0.0 + 0 +LINE + 5 +D11 + 8 +0 + 62 + 0 + 10 +7863.10938 + 20 +11368.986605 + 30 +0.0 + 11 +7919.35938 + 21 +11368.986605 + 31 +0.0 + 0 +LINE + 5 +D12 + 8 +0 + 62 + 0 + 10 +8031.85938 + 20 +11368.986605 + 30 +0.0 + 11 +8088.10938 + 21 +11368.986605 + 31 +0.0 + 0 +LINE + 5 +D13 + 8 +0 + 62 + 0 + 10 +8200.60938 + 20 +11368.986605 + 30 +0.0 + 11 +8256.85938 + 21 +11368.986605 + 31 +0.0 + 0 +LINE + 5 +D14 + 8 +0 + 62 + 0 + 10 +7947.48438 + 20 +11417.700534 + 30 +0.0 + 11 +8003.73438 + 21 +11417.700534 + 31 +0.0 + 0 +LINE + 5 +D15 + 8 +0 + 62 + 0 + 10 +8116.23438 + 20 +11417.700534 + 30 +0.0 + 11 +8172.48438 + 21 +11417.700534 + 31 +0.0 + 0 +LINE + 5 +D16 + 8 +0 + 62 + 0 + 10 +8031.85938 + 20 +11466.414462 + 30 +0.0 + 11 +8088.10938 + 21 +11466.414462 + 31 +0.0 + 0 +LINE + 5 +D17 + 8 +0 + 62 + 0 + 10 +8200.60938 + 20 +11466.414462 + 30 +0.0 + 11 +8256.85938 + 21 +11466.414462 + 31 +0.0 + 0 +LINE + 5 +D18 + 8 +0 + 62 + 0 + 10 +8116.23438 + 20 +11515.128391 + 30 +0.0 + 11 +8172.48438 + 21 +11515.128391 + 31 +0.0 + 0 +LINE + 5 +D19 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9663.999099 + 30 +0.0 + 11 +5472.48438 + 21 +9663.999099 + 31 +0.0 + 0 +LINE + 5 +D1A + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9663.999099 + 30 +0.0 + 11 +5641.23438 + 21 +9663.999099 + 31 +0.0 + 0 +LINE + 5 +D1B + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9663.999099 + 30 +0.0 + 11 +5768.793321 + 21 +9663.999099 + 31 +0.0 + 0 +LINE + 5 +D1C + 8 +0 + 62 + 0 + 10 +5339.273257 + 20 +9615.28517 + 30 +0.0 + 11 +5388.10938 + 21 +9615.28517 + 31 +0.0 + 0 +LINE + 5 +D1D + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9615.28517 + 30 +0.0 + 11 +5556.85938 + 21 +9615.28517 + 31 +0.0 + 0 +LINE + 5 +D1E + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +9615.28517 + 30 +0.0 + 11 +5725.60938 + 21 +9615.28517 + 31 +0.0 + 0 +LINE + 5 +D1F + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9566.571241 + 30 +0.0 + 11 +5472.48438 + 21 +9566.571241 + 31 +0.0 + 0 +LINE + 5 +D20 + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9566.571241 + 30 +0.0 + 11 +5641.23438 + 21 +9566.571241 + 31 +0.0 + 0 +LINE + 5 +D21 + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9566.571241 + 30 +0.0 + 11 +5767.246033 + 21 +9566.571241 + 31 +0.0 + 0 +LINE + 5 +D22 + 8 +0 + 62 + 0 + 10 +5338.920076 + 20 +9517.857312 + 30 +0.0 + 11 +5388.10938 + 21 +9517.857312 + 31 +0.0 + 0 +LINE + 5 +D23 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9517.857312 + 30 +0.0 + 11 +5556.85938 + 21 +9517.857312 + 31 +0.0 + 0 +LINE + 5 +D24 + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +9517.857312 + 30 +0.0 + 11 +5725.60938 + 21 +9517.857312 + 31 +0.0 + 0 +LINE + 5 +D25 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9469.143384 + 30 +0.0 + 11 +5472.48438 + 21 +9469.143384 + 31 +0.0 + 0 +LINE + 5 +D26 + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9469.143384 + 30 +0.0 + 11 +5641.23438 + 21 +9469.143384 + 31 +0.0 + 0 +LINE + 5 +D27 + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9469.143384 + 30 +0.0 + 11 +5765.698745 + 21 +9469.143384 + 31 +0.0 + 0 +LINE + 5 +D28 + 8 +0 + 62 + 0 + 10 +5338.566896 + 20 +9420.429455 + 30 +0.0 + 11 +5388.10938 + 21 +9420.429455 + 31 +0.0 + 0 +LINE + 5 +D29 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9420.429455 + 30 +0.0 + 11 +5556.85938 + 21 +9420.429455 + 31 +0.0 + 0 +LINE + 5 +D2A + 8 +0 + 62 + 0 + 10 +5669.35938 + 20 +9420.429455 + 30 +0.0 + 11 +5725.60938 + 21 +9420.429455 + 31 +0.0 + 0 +LINE + 5 +D2B + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9371.715526 + 30 +0.0 + 11 +5472.48438 + 21 +9371.715526 + 31 +0.0 + 0 +LINE + 5 +D2C + 8 +0 + 62 + 0 + 10 +5584.98438 + 20 +9371.715526 + 30 +0.0 + 11 +5641.23438 + 21 +9371.715526 + 31 +0.0 + 0 +LINE + 5 +D2D + 8 +0 + 62 + 0 + 10 +5753.73438 + 20 +9371.715526 + 30 +0.0 + 11 +5764.151457 + 21 +9371.715526 + 31 +0.0 + 0 +LINE + 5 +D2E + 8 +0 + 62 + 0 + 10 +5338.213716 + 20 +9323.001597 + 30 +0.0 + 11 +5388.10938 + 21 +9323.001597 + 31 +0.0 + 0 +LINE + 5 +D2F + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9323.001597 + 30 +0.0 + 11 +5540.489283 + 21 +9323.001597 + 31 +0.0 + 0 +LINE + 5 +D30 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9274.287669 + 30 +0.0 + 11 +5472.48438 + 21 +9274.287669 + 31 +0.0 + 0 +LINE + 5 +D31 + 8 +0 + 62 + 0 + 10 +5337.860536 + 20 +9225.57374 + 30 +0.0 + 11 +5388.10938 + 21 +9225.57374 + 31 +0.0 + 0 +LINE + 5 +D32 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9225.57374 + 30 +0.0 + 11 +5540.489283 + 21 +9225.57374 + 31 +0.0 + 0 +LINE + 5 +D33 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9176.859811 + 30 +0.0 + 11 +5472.48438 + 21 +9176.859811 + 31 +0.0 + 0 +LINE + 5 +D34 + 8 +0 + 62 + 0 + 10 +5337.507355 + 20 +9128.145882 + 30 +0.0 + 11 +5388.10938 + 21 +9128.145882 + 31 +0.0 + 0 +LINE + 5 +D35 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9128.145882 + 30 +0.0 + 11 +5540.489283 + 21 +9128.145882 + 31 +0.0 + 0 +LINE + 5 +D36 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +9079.431954 + 30 +0.0 + 11 +5472.48438 + 21 +9079.431954 + 31 +0.0 + 0 +LINE + 5 +D37 + 8 +0 + 62 + 0 + 10 +5337.154175 + 20 +9030.718025 + 30 +0.0 + 11 +5388.10938 + 21 +9030.718025 + 31 +0.0 + 0 +LINE + 5 +D38 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +9030.718025 + 30 +0.0 + 11 +5540.489283 + 21 +9030.718025 + 31 +0.0 + 0 +LINE + 5 +D39 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8982.004096 + 30 +0.0 + 11 +5472.48438 + 21 +8982.004096 + 31 +0.0 + 0 +LINE + 5 +D3A + 8 +0 + 62 + 0 + 10 +5336.800995 + 20 +8933.290167 + 30 +0.0 + 11 +5388.10938 + 21 +8933.290167 + 31 +0.0 + 0 +LINE + 5 +D3B + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8933.290167 + 30 +0.0 + 11 +5540.489283 + 21 +8933.290167 + 31 +0.0 + 0 +LINE + 5 +D3C + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8884.576239 + 30 +0.0 + 11 +5472.48438 + 21 +8884.576239 + 31 +0.0 + 0 +LINE + 5 +D3D + 8 +0 + 62 + 0 + 10 +5336.447815 + 20 +8835.86231 + 30 +0.0 + 11 +5388.10938 + 21 +8835.86231 + 31 +0.0 + 0 +LINE + 5 +D3E + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8835.86231 + 30 +0.0 + 11 +5540.489283 + 21 +8835.86231 + 31 +0.0 + 0 +LINE + 5 +D3F + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8787.148381 + 30 +0.0 + 11 +5472.48438 + 21 +8787.148381 + 31 +0.0 + 0 +LINE + 5 +D40 + 8 +0 + 62 + 0 + 10 +5336.094635 + 20 +8738.434452 + 30 +0.0 + 11 +5388.10938 + 21 +8738.434452 + 31 +0.0 + 0 +LINE + 5 +D41 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8738.434452 + 30 +0.0 + 11 +5540.489283 + 21 +8738.434452 + 31 +0.0 + 0 +LINE + 5 +D42 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8689.720524 + 30 +0.0 + 11 +5472.48438 + 21 +8689.720524 + 31 +0.0 + 0 +LINE + 5 +D43 + 8 +0 + 62 + 0 + 10 +5335.741454 + 20 +8641.006595 + 30 +0.0 + 11 +5388.10938 + 21 +8641.006595 + 31 +0.0 + 0 +LINE + 5 +D44 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8641.006595 + 30 +0.0 + 11 +5540.489283 + 21 +8641.006595 + 31 +0.0 + 0 +LINE + 5 +D45 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8592.292666 + 30 +0.0 + 11 +5472.48438 + 21 +8592.292666 + 31 +0.0 + 0 +LINE + 5 +D46 + 8 +0 + 62 + 0 + 10 +5335.388274 + 20 +8543.578737 + 30 +0.0 + 11 +5388.10938 + 21 +8543.578737 + 31 +0.0 + 0 +LINE + 5 +D47 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8543.578737 + 30 +0.0 + 11 +5540.489283 + 21 +8543.578737 + 31 +0.0 + 0 +LINE + 5 +D48 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8494.864809 + 30 +0.0 + 11 +5472.48438 + 21 +8494.864809 + 31 +0.0 + 0 +LINE + 5 +D49 + 8 +0 + 62 + 0 + 10 +5335.035094 + 20 +8446.15088 + 30 +0.0 + 11 +5388.10938 + 21 +8446.15088 + 31 +0.0 + 0 +LINE + 5 +D4A + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8446.15088 + 30 +0.0 + 11 +5540.489283 + 21 +8446.15088 + 31 +0.0 + 0 +LINE + 5 +D4B + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8397.436951 + 30 +0.0 + 11 +5472.48438 + 21 +8397.436951 + 31 +0.0 + 0 +LINE + 5 +D4C + 8 +0 + 62 + 0 + 10 +5334.681914 + 20 +8348.723022 + 30 +0.0 + 11 +5388.10938 + 21 +8348.723022 + 31 +0.0 + 0 +LINE + 5 +D4D + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8348.723022 + 30 +0.0 + 11 +5540.489283 + 21 +8348.723022 + 31 +0.0 + 0 +LINE + 5 +D4E + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8300.009094 + 30 +0.0 + 11 +5472.48438 + 21 +8300.009094 + 31 +0.0 + 0 +LINE + 5 +D4F + 8 +0 + 62 + 0 + 10 +5334.328733 + 20 +8251.295165 + 30 +0.0 + 11 +5388.10938 + 21 +8251.295165 + 31 +0.0 + 0 +LINE + 5 +D50 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8251.295165 + 30 +0.0 + 11 +5540.489283 + 21 +8251.295165 + 31 +0.0 + 0 +LINE + 5 +D51 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8202.581236 + 30 +0.0 + 11 +5472.48438 + 21 +8202.581236 + 31 +0.0 + 0 +LINE + 5 +D52 + 8 +0 + 62 + 0 + 10 +5333.975553 + 20 +8153.867307 + 30 +0.0 + 11 +5388.10938 + 21 +8153.867307 + 31 +0.0 + 0 +LINE + 5 +D53 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8153.867307 + 30 +0.0 + 11 +5540.489283 + 21 +8153.867307 + 31 +0.0 + 0 +LINE + 5 +D54 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8105.153379 + 30 +0.0 + 11 +5472.48438 + 21 +8105.153379 + 31 +0.0 + 0 +LINE + 5 +D55 + 8 +0 + 62 + 0 + 10 +5333.622373 + 20 +8056.43945 + 30 +0.0 + 11 +5388.10938 + 21 +8056.43945 + 31 +0.0 + 0 +LINE + 5 +D56 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +8056.43945 + 30 +0.0 + 11 +5540.489283 + 21 +8056.43945 + 31 +0.0 + 0 +LINE + 5 +D57 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +8007.725521 + 30 +0.0 + 11 +5472.48438 + 21 +8007.725521 + 31 +0.0 + 0 +LINE + 5 +D58 + 8 +0 + 62 + 0 + 10 +5333.269193 + 20 +7959.011592 + 30 +0.0 + 11 +5388.10938 + 21 +7959.011592 + 31 +0.0 + 0 +LINE + 5 +D59 + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +7959.011592 + 30 +0.0 + 11 +5540.489283 + 21 +7959.011592 + 31 +0.0 + 0 +LINE + 5 +D5A + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +7910.297664 + 30 +0.0 + 11 +5472.48438 + 21 +7910.297664 + 31 +0.0 + 0 +LINE + 5 +D5B + 8 +0 + 62 + 0 + 10 +5332.916012 + 20 +7861.583735 + 30 +0.0 + 11 +5388.10938 + 21 +7861.583735 + 31 +0.0 + 0 +LINE + 5 +D5C + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +7861.583735 + 30 +0.0 + 11 +5540.489283 + 21 +7861.583735 + 31 +0.0 + 0 +LINE + 5 +D5D + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +7812.869806 + 30 +0.0 + 11 +5472.48438 + 21 +7812.869806 + 31 +0.0 + 0 +LINE + 5 +D5E + 8 +0 + 62 + 0 + 10 +5332.562832 + 20 +7764.155877 + 30 +0.0 + 11 +5388.10938 + 21 +7764.155877 + 31 +0.0 + 0 +LINE + 5 +D5F + 8 +0 + 62 + 0 + 10 +5500.60938 + 20 +7764.155877 + 30 +0.0 + 11 +5540.489283 + 21 +7764.155877 + 31 +0.0 + 0 +LINE + 5 +D60 + 8 +0 + 62 + 0 + 10 +5416.23438 + 20 +7715.441949 + 30 +0.0 + 11 +5472.48438 + 21 +7715.441949 + 31 +0.0 + 0 +LINE + 5 +D61 + 8 +0 + 62 + 0 + 10 +6589.308685 + 20 +10262.726907 + 30 +0.0 + 11 +6569.359336 + 21 +10297.280194 + 31 +0.0 + 0 +LINE + 5 +D62 + 8 +0 + 62 + 0 + 10 +6513.109336 + 20 +10394.708052 + 30 +0.0 + 11 +6484.984336 + 21 +10443.421981 + 31 +0.0 + 0 +LINE + 5 +D63 + 8 +0 + 62 + 0 + 10 +6513.109336 + 20 +10297.280194 + 30 +0.0 + 11 +6484.984336 + 21 +10345.994123 + 31 +0.0 + 0 +LINE + 5 +D64 + 8 +0 + 62 + 0 + 10 +6428.734336 + 20 +10443.421981 + 30 +0.0 + 11 +6400.609336 + 21 +10492.13591 + 31 +0.0 + 0 +LINE + 5 +D65 + 8 +0 + 62 + 0 + 10 +6506.912361 + 20 +10210.585813 + 30 +0.0 + 11 +6484.984336 + 21 +10248.566266 + 31 +0.0 + 0 +LINE + 5 +D66 + 8 +0 + 62 + 0 + 10 +6428.734336 + 20 +10345.994123 + 30 +0.0 + 11 +6400.609336 + 21 +10394.708052 + 31 +0.0 + 0 +LINE + 5 +D67 + 8 +0 + 62 + 0 + 10 +6428.734336 + 20 +10248.566266 + 30 +0.0 + 11 +6400.609336 + 21 +10297.280195 + 31 +0.0 + 0 +LINE + 5 +D68 + 8 +0 + 62 + 0 + 10 +6344.359336 + 20 +10394.708053 + 30 +0.0 + 11 +6316.234336 + 21 +10443.421982 + 31 +0.0 + 0 +LINE + 5 +D69 + 8 +0 + 62 + 0 + 10 +6424.516036 + 20 +10158.444719 + 30 +0.0 + 11 +6400.609336 + 21 +10199.852337 + 31 +0.0 + 0 +LINE + 5 +D6A + 8 +0 + 62 + 0 + 10 +6344.359336 + 20 +10297.280195 + 30 +0.0 + 11 +6316.234336 + 21 +10345.994124 + 31 +0.0 + 0 +LINE + 5 +D6B + 8 +0 + 62 + 0 + 10 +6344.359336 + 20 +10199.852337 + 30 +0.0 + 11 +6316.234336 + 21 +10248.566266 + 31 +0.0 + 0 +LINE + 5 +D6C + 8 +0 + 62 + 0 + 10 +6259.984336 + 20 +10345.994124 + 30 +0.0 + 11 +6233.328032 + 21 +10392.164198 + 31 +0.0 + 0 +LINE + 5 +D6D + 8 +0 + 62 + 0 + 10 +6342.119711 + 20 +10106.303624 + 30 +0.0 + 11 +6316.234337 + 21 +10151.138408 + 31 +0.0 + 0 +LINE + 5 +D6E + 8 +0 + 62 + 0 + 10 +6259.984337 + 20 +10248.566266 + 30 +0.0 + 11 +6231.859337 + 21 +10297.280195 + 31 +0.0 + 0 +LINE + 5 +D6F + 8 +0 + 62 + 0 + 10 +6259.984337 + 20 +10151.138408 + 30 +0.0 + 11 +6231.859337 + 21 +10199.852337 + 31 +0.0 + 0 +LINE + 5 +D70 + 8 +0 + 62 + 0 + 10 +6175.609337 + 20 +10297.280195 + 30 +0.0 + 11 +6150.636356 + 21 +10340.534666 + 31 +0.0 + 0 +LINE + 5 +D71 + 8 +0 + 62 + 0 + 10 +6259.723386 + 20 +10054.16253 + 30 +0.0 + 11 +6231.859337 + 21 +10102.424479 + 31 +0.0 + 0 +LINE + 5 +D72 + 8 +0 + 62 + 0 + 10 +6175.609337 + 20 +10199.852337 + 30 +0.0 + 11 +6147.484337 + 21 +10248.566266 + 31 +0.0 + 0 +LINE + 5 +D73 + 8 +0 + 62 + 0 + 10 +6175.609337 + 20 +10102.424479 + 30 +0.0 + 11 +6147.484337 + 21 +10151.138408 + 31 +0.0 + 0 +LINE + 5 +D74 + 8 +0 + 62 + 0 + 10 +6091.234337 + 20 +10248.566266 + 30 +0.0 + 11 +6067.944681 + 21 +10288.905134 + 31 +0.0 + 0 +LINE + 5 +D75 + 8 +0 + 62 + 0 + 10 +6175.609337 + 20 +10004.996622 + 30 +0.0 + 11 +6147.484337 + 21 +10053.710551 + 31 +0.0 + 0 +LINE + 5 +D76 + 8 +0 + 62 + 0 + 10 +6091.234337 + 20 +10151.138408 + 30 +0.0 + 11 +6063.109337 + 21 +10199.852337 + 31 +0.0 + 0 +LINE + 5 +D77 + 8 +0 + 62 + 0 + 10 +6091.234338 + 20 +10053.710551 + 30 +0.0 + 11 +6063.109338 + 21 +10102.42448 + 31 +0.0 + 0 +LINE + 5 +D78 + 8 +0 + 62 + 0 + 10 +6006.859338 + 20 +10199.852338 + 30 +0.0 + 11 +5985.253006 + 21 +10237.275602 + 31 +0.0 + 0 +LINE + 5 +D79 + 8 +0 + 62 + 0 + 10 +6091.234338 + 20 +9956.282693 + 30 +0.0 + 11 +6063.109338 + 21 +10004.996622 + 31 +0.0 + 0 +LINE + 5 +D7A + 8 +0 + 62 + 0 + 10 +6006.859338 + 20 +10102.42448 + 30 +0.0 + 11 +5978.734338 + 21 +10151.138409 + 31 +0.0 + 0 +LINE + 5 +D7B + 8 +0 + 62 + 0 + 10 +6006.859338 + 20 +10004.996622 + 30 +0.0 + 11 +5978.734338 + 21 +10053.710551 + 31 +0.0 + 0 +LINE + 5 +D7C + 8 +0 + 62 + 0 + 10 +5922.484338 + 20 +10151.138409 + 30 +0.0 + 11 +5902.561331 + 21 +10185.64607 + 31 +0.0 + 0 +LINE + 5 +D7D + 8 +0 + 62 + 0 + 10 +6006.859338 + 20 +9907.568764 + 30 +0.0 + 11 +5978.734338 + 21 +9956.282693 + 31 +0.0 + 0 +LINE + 5 +D7E + 8 +0 + 62 + 0 + 10 +5922.484338 + 20 +10053.710551 + 30 +0.0 + 11 +5894.359338 + 21 +10102.42448 + 31 +0.0 + 0 +LINE + 5 +D7F + 8 +0 + 62 + 0 + 10 +5922.484338 + 20 +9956.282693 + 30 +0.0 + 11 +5894.359338 + 21 +10004.996622 + 31 +0.0 + 0 +LINE + 5 +D80 + 8 +0 + 62 + 0 + 10 +5838.109338 + 20 +10102.42448 + 30 +0.0 + 11 +5819.869655 + 21 +10134.016538 + 31 +0.0 + 0 +LINE + 5 +D81 + 8 +0 + 62 + 0 + 10 +5922.484339 + 20 +9858.854835 + 30 +0.0 + 11 +5894.359339 + 21 +9907.568764 + 31 +0.0 + 0 +LINE + 5 +D82 + 8 +0 + 62 + 0 + 10 +5838.109339 + 20 +10004.996622 + 30 +0.0 + 11 +5809.984339 + 21 +10053.710551 + 31 +0.0 + 0 +LINE + 5 +D83 + 8 +0 + 62 + 0 + 10 +5838.109339 + 20 +9907.568764 + 30 +0.0 + 11 +5809.984339 + 21 +9956.282693 + 31 +0.0 + 0 +LINE + 5 +D84 + 8 +0 + 62 + 0 + 10 +5753.734339 + 20 +10053.710551 + 30 +0.0 + 11 +5737.17798 + 21 +10082.387006 + 31 +0.0 + 0 +LINE + 5 +D85 + 8 +0 + 62 + 0 + 10 +5814.116984 + 20 +9851.696884 + 30 +0.0 + 11 +5809.984339 + 21 +9858.854836 + 31 +0.0 + 0 +LINE + 5 +D86 + 8 +0 + 62 + 0 + 10 +5753.734339 + 20 +9956.282693 + 30 +0.0 + 11 +5725.609339 + 21 +10004.996622 + 31 +0.0 + 0 +LINE + 5 +D87 + 8 +0 + 62 + 0 + 10 +5753.734339 + 20 +9858.854836 + 30 +0.0 + 11 +5725.609339 + 21 +9907.568765 + 31 +0.0 + 0 +LINE + 5 +D88 + 8 +0 + 62 + 0 + 10 +5669.359339 + 20 +10004.996623 + 30 +0.0 + 11 +5654.486305 + 21 +10030.757474 + 31 +0.0 + 0 +LINE + 5 +D89 + 8 +0 + 62 + 0 + 10 +5753.734339 + 20 +9761.426978 + 30 +0.0 + 11 +5725.609339 + 21 +9810.140907 + 31 +0.0 + 0 +LINE + 5 +D8A + 8 +0 + 62 + 0 + 10 +5669.359339 + 20 +9907.568765 + 30 +0.0 + 11 +5641.234339 + 21 +9956.282694 + 31 +0.0 + 0 +LINE + 5 +D8B + 8 +0 + 62 + 0 + 10 +5753.734339 + 20 +9663.99912 + 30 +0.0 + 11 +5725.609339 + 21 +9712.713049 + 31 +0.0 + 0 +LINE + 5 +D8C + 8 +0 + 62 + 0 + 10 +5669.359339 + 20 +9810.140907 + 30 +0.0 + 11 +5641.234339 + 21 +9858.854836 + 31 +0.0 + 0 +LINE + 5 +D8D + 8 +0 + 62 + 0 + 10 +5584.984339 + 20 +9956.282694 + 30 +0.0 + 11 +5571.794629 + 21 +9979.127942 + 31 +0.0 + 0 +LINE + 5 +D8E + 8 +0 + 62 + 0 + 10 +5753.73434 + 20 +9566.571262 + 30 +0.0 + 11 +5725.60934 + 21 +9615.285191 + 31 +0.0 + 0 +LINE + 5 +D8F + 8 +0 + 62 + 0 + 10 +5669.35934 + 20 +9712.713049 + 30 +0.0 + 11 +5641.23434 + 21 +9761.426978 + 31 +0.0 + 0 +LINE + 5 +D90 + 8 +0 + 62 + 0 + 10 +5584.98434 + 20 +9858.854836 + 30 +0.0 + 11 +5556.85934 + 21 +9907.568765 + 31 +0.0 + 0 +LINE + 5 +D91 + 8 +0 + 62 + 0 + 10 +5753.73434 + 20 +9469.143404 + 30 +0.0 + 11 +5725.60934 + 21 +9517.857333 + 31 +0.0 + 0 +LINE + 5 +D92 + 8 +0 + 62 + 0 + 10 +5669.35934 + 20 +9615.285191 + 30 +0.0 + 11 +5641.23434 + 21 +9663.99912 + 31 +0.0 + 0 +LINE + 5 +D93 + 8 +0 + 62 + 0 + 10 +5584.98434 + 20 +9761.426978 + 30 +0.0 + 11 +5556.85934 + 21 +9810.140907 + 31 +0.0 + 0 +LINE + 5 +D94 + 8 +0 + 62 + 0 + 10 +5500.60934 + 20 +9907.568765 + 30 +0.0 + 11 +5489.102954 + 21 +9927.49841 + 31 +0.0 + 0 +LINE + 5 +D95 + 8 +0 + 62 + 0 + 10 +5753.73434 + 20 +9371.715547 + 30 +0.0 + 11 +5725.60934 + 21 +9420.429476 + 31 +0.0 + 0 +LINE + 5 +D96 + 8 +0 + 62 + 0 + 10 +5669.35934 + 20 +9517.857333 + 30 +0.0 + 11 +5641.23434 + 21 +9566.571262 + 31 +0.0 + 0 +LINE + 5 +D97 + 8 +0 + 62 + 0 + 10 +5584.98434 + 20 +9663.99912 + 30 +0.0 + 11 +5556.85934 + 21 +9712.713049 + 31 +0.0 + 0 +LINE + 5 +D98 + 8 +0 + 62 + 0 + 10 +5500.60934 + 20 +9810.140907 + 30 +0.0 + 11 +5472.48434 + 21 +9858.854836 + 31 +0.0 + 0 +LINE + 5 +D99 + 8 +0 + 62 + 0 + 10 +5669.35934 + 20 +9420.429476 + 30 +0.0 + 11 +5641.23434 + 21 +9469.143405 + 31 +0.0 + 0 +LINE + 5 +D9A + 8 +0 + 62 + 0 + 10 +5584.98434 + 20 +9566.571263 + 30 +0.0 + 11 +5556.85934 + 21 +9615.285191 + 31 +0.0 + 0 +LINE + 5 +D9B + 8 +0 + 62 + 0 + 10 +5500.60934 + 20 +9712.713049 + 30 +0.0 + 11 +5472.48434 + 21 +9761.426978 + 31 +0.0 + 0 +LINE + 5 +D9C + 8 +0 + 62 + 0 + 10 +5416.23434 + 20 +9858.854836 + 30 +0.0 + 11 +5406.411279 + 21 +9875.868877 + 31 +0.0 + 0 +LINE + 5 +D9D + 8 +0 + 62 + 0 + 10 +5649.957554 + 20 +9356.606497 + 30 +0.0 + 11 +5641.23434 + 21 +9371.715547 + 31 +0.0 + 0 +LINE + 5 +D9E + 8 +0 + 62 + 0 + 10 +5584.98434 + 20 +9469.143405 + 30 +0.0 + 11 +5556.85934 + 21 +9517.857334 + 31 +0.0 + 0 +LINE + 5 +D9F + 8 +0 + 62 + 0 + 10 +5500.60934 + 20 +9615.285192 + 30 +0.0 + 11 +5472.48434 + 21 +9663.999121 + 31 +0.0 + 0 +LINE + 5 +DA0 + 8 +0 + 62 + 0 + 10 +5416.23434 + 20 +9761.426978 + 30 +0.0 + 11 +5388.10934 + 21 +9810.140907 + 31 +0.0 + 0 +LINE + 5 +DA1 + 8 +0 + 62 + 0 + 10 +5584.984341 + 20 +9371.715547 + 30 +0.0 + 11 +5556.859341 + 21 +9420.429476 + 31 +0.0 + 0 +LINE + 5 +DA2 + 8 +0 + 62 + 0 + 10 +5500.609341 + 20 +9517.857334 + 30 +0.0 + 11 +5472.484341 + 21 +9566.571263 + 31 +0.0 + 0 +LINE + 5 +DA3 + 8 +0 + 62 + 0 + 10 +5416.234341 + 20 +9663.999121 + 30 +0.0 + 11 +5388.109341 + 21 +9712.71305 + 31 +0.0 + 0 +LINE + 5 +DA4 + 8 +0 + 62 + 0 + 10 +5500.609341 + 20 +9420.429476 + 30 +0.0 + 11 +5472.484341 + 21 +9469.143405 + 31 +0.0 + 0 +LINE + 5 +DA5 + 8 +0 + 62 + 0 + 10 +5416.234341 + 20 +9566.571263 + 30 +0.0 + 11 +5388.109341 + 21 +9615.285192 + 31 +0.0 + 0 +LINE + 5 +DA6 + 8 +0 + 62 + 0 + 10 +5500.609341 + 20 +9323.001618 + 30 +0.0 + 11 +5472.484341 + 21 +9371.715547 + 31 +0.0 + 0 +LINE + 5 +DA7 + 8 +0 + 62 + 0 + 10 +5416.234341 + 20 +9469.143405 + 30 +0.0 + 11 +5388.109341 + 21 +9517.857334 + 31 +0.0 + 0 +LINE + 5 +DA8 + 8 +0 + 62 + 0 + 10 +5500.609341 + 20 +9225.57376 + 30 +0.0 + 11 +5472.484341 + 21 +9274.287689 + 31 +0.0 + 0 +LINE + 5 +DA9 + 8 +0 + 62 + 0 + 10 +5416.234341 + 20 +9371.715547 + 30 +0.0 + 11 +5388.109341 + 21 +9420.429476 + 31 +0.0 + 0 +LINE + 5 +DAA + 8 +0 + 62 + 0 + 10 +5500.609341 + 20 +9128.145902 + 30 +0.0 + 11 +5472.484341 + 21 +9176.859831 + 31 +0.0 + 0 +LINE + 5 +DAB + 8 +0 + 62 + 0 + 10 +5416.234341 + 20 +9274.287689 + 30 +0.0 + 11 +5388.109341 + 21 +9323.001618 + 31 +0.0 + 0 +LINE + 5 +DAC + 8 +0 + 62 + 0 + 10 +5500.609341 + 20 +9030.718045 + 30 +0.0 + 11 +5472.484341 + 21 +9079.431974 + 31 +0.0 + 0 +LINE + 5 +DAD + 8 +0 + 62 + 0 + 10 +5416.234341 + 20 +9176.859832 + 30 +0.0 + 11 +5388.109341 + 21 +9225.573761 + 31 +0.0 + 0 +LINE + 5 +DAE + 8 +0 + 62 + 0 + 10 +5500.609342 + 20 +8933.290187 + 30 +0.0 + 11 +5472.484342 + 21 +8982.004116 + 31 +0.0 + 0 +LINE + 5 +DAF + 8 +0 + 62 + 0 + 10 +5416.234342 + 20 +9079.431974 + 30 +0.0 + 11 +5388.109342 + 21 +9128.145903 + 31 +0.0 + 0 +LINE + 5 +DB0 + 8 +0 + 62 + 0 + 10 +5500.609342 + 20 +8835.862329 + 30 +0.0 + 11 +5472.484342 + 21 +8884.576258 + 31 +0.0 + 0 +LINE + 5 +DB1 + 8 +0 + 62 + 0 + 10 +5416.234342 + 20 +8982.004116 + 30 +0.0 + 11 +5388.109342 + 21 +9030.718045 + 31 +0.0 + 0 +LINE + 5 +DB2 + 8 +0 + 62 + 0 + 10 +5500.609342 + 20 +8738.434471 + 30 +0.0 + 11 +5472.484342 + 21 +8787.1484 + 31 +0.0 + 0 +LINE + 5 +DB3 + 8 +0 + 62 + 0 + 10 +5416.234342 + 20 +8884.576258 + 30 +0.0 + 11 +5388.109342 + 21 +8933.290187 + 31 +0.0 + 0 +LINE + 5 +DB4 + 8 +0 + 62 + 0 + 10 +5500.609342 + 20 +8641.006613 + 30 +0.0 + 11 +5472.484342 + 21 +8689.720542 + 31 +0.0 + 0 +LINE + 5 +DB5 + 8 +0 + 62 + 0 + 10 +5416.234342 + 20 +8787.1484 + 30 +0.0 + 11 +5388.109342 + 21 +8835.862329 + 31 +0.0 + 0 +LINE + 5 +DB6 + 8 +0 + 62 + 0 + 10 +5500.609342 + 20 +8543.578756 + 30 +0.0 + 11 +5472.484342 + 21 +8592.292685 + 31 +0.0 + 0 +LINE + 5 +DB7 + 8 +0 + 62 + 0 + 10 +5416.234342 + 20 +8689.720542 + 30 +0.0 + 11 +5388.109342 + 21 +8738.434471 + 31 +0.0 + 0 +LINE + 5 +DB8 + 8 +0 + 62 + 0 + 10 +5500.609343 + 20 +8446.150898 + 30 +0.0 + 11 +5472.484343 + 21 +8494.864827 + 31 +0.0 + 0 +LINE + 5 +DB9 + 8 +0 + 62 + 0 + 10 +5416.234343 + 20 +8592.292685 + 30 +0.0 + 11 +5388.109343 + 21 +8641.006614 + 31 +0.0 + 0 +LINE + 5 +DBA + 8 +0 + 62 + 0 + 10 +5500.609343 + 20 +8348.72304 + 30 +0.0 + 11 +5472.484343 + 21 +8397.436969 + 31 +0.0 + 0 +LINE + 5 +DBB + 8 +0 + 62 + 0 + 10 +5416.234343 + 20 +8494.864827 + 30 +0.0 + 11 +5388.109343 + 21 +8543.578756 + 31 +0.0 + 0 +LINE + 5 +DBC + 8 +0 + 62 + 0 + 10 +5500.609343 + 20 +8251.295182 + 30 +0.0 + 11 +5472.484343 + 21 +8300.009111 + 31 +0.0 + 0 +LINE + 5 +DBD + 8 +0 + 62 + 0 + 10 +5416.234343 + 20 +8397.436969 + 30 +0.0 + 11 +5388.109343 + 21 +8446.150898 + 31 +0.0 + 0 +LINE + 5 +DBE + 8 +0 + 62 + 0 + 10 +5500.609343 + 20 +8153.867324 + 30 +0.0 + 11 +5472.484343 + 21 +8202.581253 + 31 +0.0 + 0 +LINE + 5 +DBF + 8 +0 + 62 + 0 + 10 +5416.234343 + 20 +8300.009111 + 30 +0.0 + 11 +5388.109343 + 21 +8348.72304 + 31 +0.0 + 0 +LINE + 5 +DC0 + 8 +0 + 62 + 0 + 10 +5500.609343 + 20 +8056.439466 + 30 +0.0 + 11 +5472.484343 + 21 +8105.153395 + 31 +0.0 + 0 +LINE + 5 +DC1 + 8 +0 + 62 + 0 + 10 +5416.234343 + 20 +8202.581253 + 30 +0.0 + 11 +5388.109343 + 21 +8251.295182 + 31 +0.0 + 0 +LINE + 5 +DC2 + 8 +0 + 62 + 0 + 10 +5500.609344 + 20 +7959.011609 + 30 +0.0 + 11 +5472.484344 + 21 +8007.725538 + 31 +0.0 + 0 +LINE + 5 +DC3 + 8 +0 + 62 + 0 + 10 +5416.234344 + 20 +8105.153396 + 30 +0.0 + 11 +5388.109344 + 21 +8153.867325 + 31 +0.0 + 0 +LINE + 5 +DC4 + 8 +0 + 62 + 0 + 10 +5500.609344 + 20 +7861.583751 + 30 +0.0 + 11 +5472.484344 + 21 +7910.29768 + 31 +0.0 + 0 +LINE + 5 +DC5 + 8 +0 + 62 + 0 + 10 +5416.234344 + 20 +8007.725538 + 30 +0.0 + 11 +5388.109344 + 21 +8056.439467 + 31 +0.0 + 0 +LINE + 5 +DC6 + 8 +0 + 62 + 0 + 10 +5500.609344 + 20 +7764.155893 + 30 +0.0 + 11 +5472.484344 + 21 +7812.869822 + 31 +0.0 + 0 +LINE + 5 +DC7 + 8 +0 + 62 + 0 + 10 +5416.234344 + 20 +7910.29768 + 30 +0.0 + 11 +5388.109344 + 21 +7959.011609 + 31 +0.0 + 0 +LINE + 5 +DC8 + 8 +0 + 62 + 0 + 10 +5476.783717 + 20 +7707.995231 + 30 +0.0 + 11 +5472.484344 + 21 +7715.441964 + 31 +0.0 + 0 +LINE + 5 +DC9 + 8 +0 + 62 + 0 + 10 +5416.234344 + 20 +7812.869822 + 30 +0.0 + 11 +5388.109344 + 21 +7861.583751 + 31 +0.0 + 0 +LINE + 5 +DCA + 8 +0 + 62 + 0 + 10 +5416.234344 + 20 +7715.441964 + 30 +0.0 + 11 +5388.109344 + 21 +7764.155893 + 31 +0.0 + 0 +LINE + 5 +DCB + 8 +0 + 62 + 0 + 10 +6597.484335 + 20 +10345.994123 + 30 +0.0 + 11 +6569.359335 + 21 +10394.708052 + 31 +0.0 + 0 +LINE + 5 +DCC + 8 +0 + 62 + 0 + 10 +6513.109335 + 20 +10492.13591 + 30 +0.0 + 11 +6484.984335 + 21 +10540.849839 + 31 +0.0 + 0 +LINE + 5 +DCD + 8 +0 + 62 + 0 + 10 +6671.70501 + 20 +10314.868001 + 30 +0.0 + 11 +6653.734335 + 21 +10345.994123 + 31 +0.0 + 0 +LINE + 5 +DCE + 8 +0 + 62 + 0 + 10 +6597.484335 + 20 +10443.421981 + 30 +0.0 + 11 +6569.359335 + 21 +10492.13591 + 31 +0.0 + 0 +LINE + 5 +DCF + 8 +0 + 62 + 0 + 10 +6681.859335 + 20 +10394.708052 + 30 +0.0 + 11 +6653.734335 + 21 +10443.421981 + 31 +0.0 + 0 +LINE + 5 +DD0 + 8 +0 + 62 + 0 + 10 +6597.484335 + 20 +10540.849839 + 30 +0.0 + 11 +6569.359335 + 21 +10589.563768 + 31 +0.0 + 0 +LINE + 5 +DD1 + 8 +0 + 62 + 0 + 10 +6754.101335 + 20 +10367.009095 + 30 +0.0 + 11 +6738.109335 + 21 +10394.708052 + 31 +0.0 + 0 +LINE + 5 +DD2 + 8 +0 + 62 + 0 + 10 +6681.859335 + 20 +10492.13591 + 30 +0.0 + 11 +6653.734335 + 21 +10540.849839 + 31 +0.0 + 0 +LINE + 5 +DD3 + 8 +0 + 62 + 0 + 10 +6766.234335 + 20 +10443.421981 + 30 +0.0 + 11 +6738.109335 + 21 +10492.13591 + 31 +0.0 + 0 +LINE + 5 +DD4 + 8 +0 + 62 + 0 + 10 +6681.859335 + 20 +10589.563768 + 30 +0.0 + 11 +6653.734335 + 21 +10638.277697 + 31 +0.0 + 0 +LINE + 5 +DD5 + 8 +0 + 62 + 0 + 10 +6836.49766 + 20 +10419.15019 + 30 +0.0 + 11 +6822.484334 + 21 +10443.421981 + 31 +0.0 + 0 +LINE + 5 +DD6 + 8 +0 + 62 + 0 + 10 +6766.234334 + 20 +10540.849838 + 30 +0.0 + 11 +6738.109334 + 21 +10589.563767 + 31 +0.0 + 0 +LINE + 5 +DD7 + 8 +0 + 62 + 0 + 10 +6850.609334 + 20 +10492.135909 + 30 +0.0 + 11 +6822.484334 + 21 +10540.849838 + 31 +0.0 + 0 +LINE + 5 +DD8 + 8 +0 + 62 + 0 + 10 +6766.234334 + 20 +10638.277696 + 30 +0.0 + 11 +6738.109334 + 21 +10686.991625 + 31 +0.0 + 0 +LINE + 5 +DD9 + 8 +0 + 62 + 0 + 10 +6918.893984 + 20 +10471.291284 + 30 +0.0 + 11 +6906.859334 + 21 +10492.135909 + 31 +0.0 + 0 +LINE + 5 +DDA + 8 +0 + 62 + 0 + 10 +6850.609334 + 20 +10589.563767 + 30 +0.0 + 11 +6822.484334 + 21 +10638.277696 + 31 +0.0 + 0 +LINE + 5 +DDB + 8 +0 + 62 + 0 + 10 +6934.984334 + 20 +10540.849838 + 30 +0.0 + 11 +6906.859334 + 21 +10589.563767 + 31 +0.0 + 0 +LINE + 5 +DDC + 8 +0 + 62 + 0 + 10 +6850.609334 + 20 +10686.991625 + 30 +0.0 + 11 +6822.484334 + 21 +10735.705554 + 31 +0.0 + 0 +LINE + 5 +DDD + 8 +0 + 62 + 0 + 10 +7001.290309 + 20 +10523.432378 + 30 +0.0 + 11 +6991.234334 + 21 +10540.849838 + 31 +0.0 + 0 +LINE + 5 +DDE + 8 +0 + 62 + 0 + 10 +6934.984334 + 20 +10638.277696 + 30 +0.0 + 11 +6906.859334 + 21 +10686.991625 + 31 +0.0 + 0 +LINE + 5 +DDF + 8 +0 + 62 + 0 + 10 +7019.359334 + 20 +10589.563767 + 30 +0.0 + 11 +6991.234334 + 21 +10638.277696 + 31 +0.0 + 0 +LINE + 5 +DE0 + 8 +0 + 62 + 0 + 10 +6934.984334 + 20 +10735.705554 + 30 +0.0 + 11 +6906.859334 + 21 +10784.419483 + 31 +0.0 + 0 +LINE + 5 +DE1 + 8 +0 + 62 + 0 + 10 +7083.686634 + 20 +10575.573472 + 30 +0.0 + 11 +7075.609333 + 21 +10589.563767 + 31 +0.0 + 0 +LINE + 5 +DE2 + 8 +0 + 62 + 0 + 10 +7019.359333 + 20 +10686.991625 + 30 +0.0 + 11 +6991.234333 + 21 +10735.705554 + 31 +0.0 + 0 +LINE + 5 +DE3 + 8 +0 + 62 + 0 + 10 +7103.734333 + 20 +10638.277696 + 30 +0.0 + 11 +7075.609333 + 21 +10686.991625 + 31 +0.0 + 0 +LINE + 5 +DE4 + 8 +0 + 62 + 0 + 10 +7019.359333 + 20 +10784.419483 + 30 +0.0 + 11 +6991.234333 + 21 +10833.133412 + 31 +0.0 + 0 +LINE + 5 +DE5 + 8 +0 + 62 + 0 + 10 +7166.082959 + 20 +10627.714566 + 30 +0.0 + 11 +7159.984333 + 21 +10638.277696 + 31 +0.0 + 0 +LINE + 5 +DE6 + 8 +0 + 62 + 0 + 10 +7103.734333 + 20 +10735.705553 + 30 +0.0 + 11 +7075.609333 + 21 +10784.419482 + 31 +0.0 + 0 +LINE + 5 +DE7 + 8 +0 + 62 + 0 + 10 +7019.359333 + 20 +10881.84734 + 30 +0.0 + 11 +7018.898947 + 21 +10882.644752 + 31 +0.0 + 0 +LINE + 5 +DE8 + 8 +0 + 62 + 0 + 10 +7188.109333 + 20 +10686.991624 + 30 +0.0 + 11 +7159.984333 + 21 +10735.705553 + 31 +0.0 + 0 +LINE + 5 +DE9 + 8 +0 + 62 + 0 + 10 +7103.734333 + 20 +10833.133411 + 30 +0.0 + 11 +7075.609333 + 21 +10881.84734 + 31 +0.0 + 0 +LINE + 5 +DEA + 8 +0 + 62 + 0 + 10 +7248.479283 + 20 +10679.85566 + 30 +0.0 + 11 +7244.359333 + 21 +10686.991624 + 31 +0.0 + 0 +LINE + 5 +DEB + 8 +0 + 62 + 0 + 10 +7188.109333 + 20 +10784.419482 + 30 +0.0 + 11 +7159.984333 + 21 +10833.133411 + 31 +0.0 + 0 +LINE + 5 +DEC + 8 +0 + 62 + 0 + 10 +7103.734333 + 20 +10930.561269 + 30 +0.0 + 11 +7101.590622 + 21 +10934.274284 + 31 +0.0 + 0 +LINE + 5 +DED + 8 +0 + 62 + 0 + 10 +7272.484332 + 20 +10735.705553 + 30 +0.0 + 11 +7244.359332 + 21 +10784.419482 + 31 +0.0 + 0 +LINE + 5 +DEE + 8 +0 + 62 + 0 + 10 +7188.109332 + 20 +10881.84734 + 30 +0.0 + 11 +7159.984332 + 21 +10930.561269 + 31 +0.0 + 0 +LINE + 5 +DEF + 8 +0 + 62 + 0 + 10 +7330.875608 + 20 +10731.996755 + 30 +0.0 + 11 +7328.734332 + 21 +10735.705553 + 31 +0.0 + 0 +LINE + 5 +DF0 + 8 +0 + 62 + 0 + 10 +7272.484332 + 20 +10833.133411 + 30 +0.0 + 11 +7244.359332 + 21 +10881.84734 + 31 +0.0 + 0 +LINE + 5 +DF1 + 8 +0 + 62 + 0 + 10 +7188.109332 + 20 +10979.275198 + 30 +0.0 + 11 +7184.282298 + 21 +10985.903817 + 31 +0.0 + 0 +LINE + 5 +DF2 + 8 +0 + 62 + 0 + 10 +7356.859332 + 20 +10784.419482 + 30 +0.0 + 11 +7328.734332 + 21 +10833.133411 + 31 +0.0 + 0 +LINE + 5 +DF3 + 8 +0 + 62 + 0 + 10 +7272.484332 + 20 +10930.561269 + 30 +0.0 + 11 +7244.359332 + 21 +10979.275198 + 31 +0.0 + 0 +LINE + 5 +DF4 + 8 +0 + 62 + 0 + 10 +7413.271933 + 20 +10784.137849 + 30 +0.0 + 11 +7413.109332 + 21 +10784.419482 + 31 +0.0 + 0 +LINE + 5 +DF5 + 8 +0 + 62 + 0 + 10 +7356.859332 + 20 +10881.84734 + 30 +0.0 + 11 +7328.734332 + 21 +10930.561269 + 31 +0.0 + 0 +LINE + 5 +DF6 + 8 +0 + 62 + 0 + 10 +7272.484332 + 20 +11027.989127 + 30 +0.0 + 11 +7266.973973 + 21 +11037.533349 + 31 +0.0 + 0 +LINE + 5 +DF7 + 8 +0 + 62 + 0 + 10 +7441.234332 + 20 +10833.133411 + 30 +0.0 + 11 +7413.109332 + 21 +10881.84734 + 31 +0.0 + 0 +LINE + 5 +DF8 + 8 +0 + 62 + 0 + 10 +7356.859332 + 20 +10979.275198 + 30 +0.0 + 11 +7328.734332 + 21 +11027.989127 + 31 +0.0 + 0 +LINE + 5 +DF9 + 8 +0 + 62 + 0 + 10 +7441.234332 + 20 +10930.561268 + 30 +0.0 + 11 +7413.109332 + 21 +10979.275197 + 31 +0.0 + 0 +LINE + 5 +DFA + 8 +0 + 62 + 0 + 10 +7356.859332 + 20 +11076.703055 + 30 +0.0 + 11 +7349.665648 + 21 +11089.162881 + 31 +0.0 + 0 +LINE + 5 +DFB + 8 +0 + 62 + 0 + 10 +7525.609331 + 20 +10881.847339 + 30 +0.0 + 11 +7497.484331 + 21 +10930.561268 + 31 +0.0 + 0 +LINE + 5 +DFC + 8 +0 + 62 + 0 + 10 +7441.234331 + 20 +11027.989126 + 30 +0.0 + 11 +7413.109331 + 21 +11076.703055 + 31 +0.0 + 0 +LINE + 5 +DFD + 8 +0 + 62 + 0 + 10 +7525.609331 + 20 +10979.275197 + 30 +0.0 + 11 +7497.484331 + 21 +11027.989126 + 31 +0.0 + 0 +LINE + 5 +DFE + 8 +0 + 62 + 0 + 10 +7441.234331 + 20 +11125.416984 + 30 +0.0 + 11 +7432.357323 + 21 +11140.792413 + 31 +0.0 + 0 +LINE + 5 +DFF + 8 +0 + 62 + 0 + 10 +7609.984331 + 20 +10930.561268 + 30 +0.0 + 11 +7581.859331 + 21 +10979.275197 + 31 +0.0 + 0 +LINE + 5 +E00 + 8 +0 + 62 + 0 + 10 +7525.609331 + 20 +11076.703055 + 30 +0.0 + 11 +7497.484331 + 21 +11125.416984 + 31 +0.0 + 0 +LINE + 5 +E01 + 8 +0 + 62 + 0 + 10 +7609.984331 + 20 +11027.989126 + 30 +0.0 + 11 +7581.859331 + 21 +11076.703055 + 31 +0.0 + 0 +LINE + 5 +E02 + 8 +0 + 62 + 0 + 10 +7525.609331 + 20 +11174.130913 + 30 +0.0 + 11 +7515.048999 + 21 +11192.421945 + 31 +0.0 + 0 +LINE + 5 +E03 + 8 +0 + 62 + 0 + 10 +7694.359331 + 20 +10979.275197 + 30 +0.0 + 11 +7666.234331 + 21 +11027.989126 + 31 +0.0 + 0 +LINE + 5 +E04 + 8 +0 + 62 + 0 + 10 +7609.984331 + 20 +11125.416984 + 30 +0.0 + 11 +7581.859331 + 21 +11174.130913 + 31 +0.0 + 0 +LINE + 5 +E05 + 8 +0 + 62 + 0 + 10 +7694.35933 + 20 +11076.703055 + 30 +0.0 + 11 +7666.23433 + 21 +11125.416984 + 31 +0.0 + 0 +LINE + 5 +E06 + 8 +0 + 62 + 0 + 10 +7609.98433 + 20 +11222.844842 + 30 +0.0 + 11 +7597.740674 + 21 +11244.051477 + 31 +0.0 + 0 +LINE + 5 +E07 + 8 +0 + 62 + 0 + 10 +7778.73433 + 20 +11027.989126 + 30 +0.0 + 11 +7750.60933 + 21 +11076.703055 + 31 +0.0 + 0 +LINE + 5 +E08 + 8 +0 + 62 + 0 + 10 +7694.35933 + 20 +11174.130913 + 30 +0.0 + 11 +7666.23433 + 21 +11222.844842 + 31 +0.0 + 0 +LINE + 5 +E09 + 8 +0 + 62 + 0 + 10 +7778.73433 + 20 +11125.416983 + 30 +0.0 + 11 +7750.60933 + 21 +11174.130912 + 31 +0.0 + 0 +LINE + 5 +E0A + 8 +0 + 62 + 0 + 10 +7694.35933 + 20 +11271.55877 + 30 +0.0 + 11 +7680.432349 + 21 +11295.681009 + 31 +0.0 + 0 +LINE + 5 +E0B + 8 +0 + 62 + 0 + 10 +7863.10933 + 20 +11076.703054 + 30 +0.0 + 11 +7834.98433 + 21 +11125.416983 + 31 +0.0 + 0 +LINE + 5 +E0C + 8 +0 + 62 + 0 + 10 +7778.73433 + 20 +11222.844841 + 30 +0.0 + 11 +7750.60933 + 21 +11271.55877 + 31 +0.0 + 0 +LINE + 5 +E0D + 8 +0 + 62 + 0 + 10 +7863.10933 + 20 +11174.130912 + 30 +0.0 + 11 +7834.98433 + 21 +11222.844841 + 31 +0.0 + 0 +LINE + 5 +E0E + 8 +0 + 62 + 0 + 10 +7778.73433 + 20 +11320.272699 + 30 +0.0 + 11 +7763.124024 + 21 +11347.310541 + 31 +0.0 + 0 +LINE + 5 +E0F + 8 +0 + 62 + 0 + 10 +7947.484329 + 20 +11125.416983 + 30 +0.0 + 11 +7919.359329 + 21 +11174.130912 + 31 +0.0 + 0 +LINE + 5 +E10 + 8 +0 + 62 + 0 + 10 +7863.109329 + 20 +11271.55877 + 30 +0.0 + 11 +7834.984329 + 21 +11320.272699 + 31 +0.0 + 0 +LINE + 5 +E11 + 8 +0 + 62 + 0 + 10 +7947.484329 + 20 +11222.844841 + 30 +0.0 + 11 +7919.359329 + 21 +11271.55877 + 31 +0.0 + 0 +LINE + 5 +E12 + 8 +0 + 62 + 0 + 10 +7863.109329 + 20 +11368.986628 + 30 +0.0 + 11 +7845.8157 + 21 +11398.940073 + 31 +0.0 + 0 +LINE + 5 +E13 + 8 +0 + 62 + 0 + 10 +8031.244368 + 20 +11175.196055 + 30 +0.0 + 11 +8003.734329 + 21 +11222.844841 + 31 +0.0 + 0 +LINE + 5 +E14 + 8 +0 + 62 + 0 + 10 +7947.484329 + 20 +11320.272699 + 30 +0.0 + 11 +7919.359329 + 21 +11368.986628 + 31 +0.0 + 0 +LINE + 5 +E15 + 8 +0 + 62 + 0 + 10 +8031.859329 + 20 +11271.55877 + 30 +0.0 + 11 +8003.734329 + 21 +11320.272699 + 31 +0.0 + 0 +LINE + 5 +E16 + 8 +0 + 62 + 0 + 10 +7947.484329 + 20 +11417.700557 + 30 +0.0 + 11 +7928.507375 + 21 +11450.569605 + 31 +0.0 + 0 +LINE + 5 +E17 + 8 +0 + 62 + 0 + 10 +8113.640693 + 20 +11227.337149 + 30 +0.0 + 11 +8088.109329 + 21 +11271.55877 + 31 +0.0 + 0 +LINE + 5 +E18 + 8 +0 + 62 + 0 + 10 +8031.859329 + 20 +11368.986628 + 30 +0.0 + 11 +8003.734329 + 21 +11417.700557 + 31 +0.0 + 0 +LINE + 5 +E19 + 8 +0 + 62 + 0 + 10 +8116.234329 + 20 +11320.272698 + 30 +0.0 + 11 +8088.109329 + 21 +11368.986627 + 31 +0.0 + 0 +LINE + 5 +E1A + 8 +0 + 62 + 0 + 10 +8031.859329 + 20 +11466.414485 + 30 +0.0 + 11 +8011.19905 + 21 +11502.199137 + 31 +0.0 + 0 +LINE + 5 +E1B + 8 +0 + 62 + 0 + 10 +8196.037018 + 20 +11279.478243 + 30 +0.0 + 11 +8172.484328 + 21 +11320.272698 + 31 +0.0 + 0 +LINE + 5 +E1C + 8 +0 + 62 + 0 + 10 +8116.234328 + 20 +11417.700556 + 30 +0.0 + 11 +8088.109328 + 21 +11466.414485 + 31 +0.0 + 0 +LINE + 5 +E1D + 8 +0 + 62 + 0 + 10 +8200.609328 + 20 +11368.986627 + 30 +0.0 + 11 +8172.484328 + 21 +11417.700556 + 31 +0.0 + 0 +LINE + 5 +E1E + 8 +0 + 62 + 0 + 10 +8116.234328 + 20 +11515.128414 + 30 +0.0 + 11 +8093.890726 + 21 +11553.828669 + 31 +0.0 + 0 +LINE + 5 +E1F + 8 +0 + 62 + 0 + 10 +8278.433343 + 20 +11331.619338 + 30 +0.0 + 11 +8256.859328 + 21 +11368.986627 + 31 +0.0 + 0 +LINE + 5 +E20 + 8 +0 + 62 + 0 + 10 +8200.609328 + 20 +11466.414485 + 30 +0.0 + 11 +8172.484328 + 21 +11515.128414 + 31 +0.0 + 0 +LINE + 5 +E21 + 8 +0 + 62 + 0 + 10 +7590.023219 + 20 +10895.987564 + 30 +0.0 + 11 +7609.984375 + 21 +10930.5613 + 31 +0.0 + 0 +LINE + 5 +E22 + 8 +0 + 62 + 0 + 10 +7666.234375 + 20 +11027.989158 + 30 +0.0 + 11 +7694.359375 + 21 +11076.703087 + 31 +0.0 + 0 +LINE + 5 +E23 + 8 +0 + 62 + 0 + 10 +7750.609375 + 20 +11174.130945 + 30 +0.0 + 11 +7778.734375 + 21 +11222.844874 + 31 +0.0 + 0 +LINE + 5 +E24 + 8 +0 + 62 + 0 + 10 +7834.984375 + 20 +11320.272731 + 30 +0.0 + 11 +7863.109375 + 21 +11368.98666 + 31 +0.0 + 0 +LINE + 5 +E25 + 8 +0 + 62 + 0 + 10 +7501.391389 + 20 +10839.900589 + 30 +0.0 + 11 +7525.609375 + 21 +10881.847371 + 31 +0.0 + 0 +LINE + 5 +E26 + 8 +0 + 62 + 0 + 10 +7581.859375 + 20 +10979.275229 + 30 +0.0 + 11 +7609.984375 + 21 +11027.989158 + 31 +0.0 + 0 +LINE + 5 +E27 + 8 +0 + 62 + 0 + 10 +7666.234375 + 20 +11125.417016 + 30 +0.0 + 11 +7694.359375 + 21 +11174.130944 + 31 +0.0 + 0 +LINE + 5 +E28 + 8 +0 + 62 + 0 + 10 +7750.609375 + 20 +11271.558802 + 30 +0.0 + 11 +7778.734375 + 21 +11320.272731 + 31 +0.0 + 0 +LINE + 5 +E29 + 8 +0 + 62 + 0 + 10 +7413.109375 + 20 +10784.419513 + 30 +0.0 + 11 +7441.234375 + 21 +10833.133442 + 31 +0.0 + 0 +LINE + 5 +E2A + 8 +0 + 62 + 0 + 10 +7497.484375 + 20 +10930.5613 + 30 +0.0 + 11 +7525.609375 + 21 +10979.275229 + 31 +0.0 + 0 +LINE + 5 +E2B + 8 +0 + 62 + 0 + 10 +7581.859375 + 20 +11076.703086 + 30 +0.0 + 11 +7609.984375 + 21 +11125.417015 + 31 +0.0 + 0 +LINE + 5 +E2C + 8 +0 + 62 + 0 + 10 +7666.234375 + 20 +11222.844873 + 30 +0.0 + 11 +7694.359375 + 21 +11271.558802 + 31 +0.0 + 0 +LINE + 5 +E2D + 8 +0 + 62 + 0 + 10 +7328.734375 + 20 +10735.705584 + 30 +0.0 + 11 +7356.859375 + 21 +10784.419513 + 31 +0.0 + 0 +LINE + 5 +E2E + 8 +0 + 62 + 0 + 10 +7413.109375 + 20 +10881.84737 + 30 +0.0 + 11 +7441.234375 + 21 +10930.561299 + 31 +0.0 + 0 +LINE + 5 +E2F + 8 +0 + 62 + 0 + 10 +7497.484375 + 20 +11027.989157 + 30 +0.0 + 11 +7525.609375 + 21 +11076.703086 + 31 +0.0 + 0 +LINE + 5 +E30 + 8 +0 + 62 + 0 + 10 +7581.859375 + 20 +11174.130944 + 30 +0.0 + 11 +7609.984375 + 21 +11222.844873 + 31 +0.0 + 0 +LINE + 5 +E31 + 8 +0 + 62 + 0 + 10 +7244.359375 + 20 +10686.991655 + 30 +0.0 + 11 +7272.484375 + 21 +10735.705583 + 31 +0.0 + 0 +LINE + 5 +E32 + 8 +0 + 62 + 0 + 10 +7328.734375 + 20 +10833.133441 + 30 +0.0 + 11 +7356.859375 + 21 +10881.84737 + 31 +0.0 + 0 +LINE + 5 +E33 + 8 +0 + 62 + 0 + 10 +7413.109375 + 20 +10979.275228 + 30 +0.0 + 11 +7441.234375 + 21 +11027.989157 + 31 +0.0 + 0 +LINE + 5 +E34 + 8 +0 + 62 + 0 + 10 +7497.484375 + 20 +11125.417015 + 30 +0.0 + 11 +7525.609375 + 21 +11174.130944 + 31 +0.0 + 0 +LINE + 5 +E35 + 8 +0 + 62 + 0 + 10 +5472.484376 + 20 +7715.441988 + 30 +0.0 + 11 +5500.609376 + 21 +7764.155917 + 31 +0.0 + 0 +LINE + 5 +E36 + 8 +0 + 62 + 0 + 10 +7159.984376 + 20 +10638.277725 + 30 +0.0 + 11 +7188.109376 + 21 +10686.991654 + 31 +0.0 + 0 +LINE + 5 +E37 + 8 +0 + 62 + 0 + 10 +7244.359376 + 20 +10784.419512 + 30 +0.0 + 11 +7272.484376 + 21 +10833.133441 + 31 +0.0 + 0 +LINE + 5 +E38 + 8 +0 + 62 + 0 + 10 +7328.734376 + 20 +10930.561299 + 30 +0.0 + 11 +7356.859376 + 21 +10979.275228 + 31 +0.0 + 0 +LINE + 5 +E39 + 8 +0 + 62 + 0 + 10 +7413.109376 + 20 +11076.703086 + 30 +0.0 + 11 +7441.234376 + 21 +11125.417015 + 31 +0.0 + 0 +LINE + 5 +E3A + 8 +0 + 62 + 0 + 10 +5411.934989 + 20 +7707.995231 + 30 +0.0 + 11 +5416.234376 + 21 +7715.441988 + 31 +0.0 + 0 +LINE + 5 +E3B + 8 +0 + 62 + 0 + 10 +5472.484376 + 20 +7812.869846 + 30 +0.0 + 11 +5500.609376 + 21 +7861.583774 + 31 +0.0 + 0 +LINE + 5 +E3C + 8 +0 + 62 + 0 + 10 +7075.609376 + 20 +10589.563796 + 30 +0.0 + 11 +7103.734376 + 21 +10638.277725 + 31 +0.0 + 0 +LINE + 5 +E3D + 8 +0 + 62 + 0 + 10 +7159.984376 + 20 +10735.705583 + 30 +0.0 + 11 +7188.109376 + 21 +10784.419512 + 31 +0.0 + 0 +LINE + 5 +E3E + 8 +0 + 62 + 0 + 10 +7244.359376 + 20 +10881.84737 + 30 +0.0 + 11 +7272.484376 + 21 +10930.561299 + 31 +0.0 + 0 +LINE + 5 +E3F + 8 +0 + 62 + 0 + 10 +7328.734376 + 20 +11027.989157 + 30 +0.0 + 11 +7356.859376 + 21 +11076.703086 + 31 +0.0 + 0 +LINE + 5 +E40 + 8 +0 + 62 + 0 + 10 +5388.109376 + 20 +7764.155916 + 30 +0.0 + 11 +5416.234376 + 21 +7812.869845 + 31 +0.0 + 0 +LINE + 5 +E41 + 8 +0 + 62 + 0 + 10 +5472.484376 + 20 +7910.297703 + 30 +0.0 + 11 +5500.609376 + 21 +7959.011632 + 31 +0.0 + 0 +LINE + 5 +E42 + 8 +0 + 62 + 0 + 10 +6991.234376 + 20 +10540.849867 + 30 +0.0 + 11 +7019.359376 + 21 +10589.563796 + 31 +0.0 + 0 +LINE + 5 +E43 + 8 +0 + 62 + 0 + 10 +7075.609376 + 20 +10686.991654 + 30 +0.0 + 11 +7103.734376 + 21 +10735.705583 + 31 +0.0 + 0 +LINE + 5 +E44 + 8 +0 + 62 + 0 + 10 +7159.984376 + 20 +10833.133441 + 30 +0.0 + 11 +7188.109376 + 21 +10881.84737 + 31 +0.0 + 0 +LINE + 5 +E45 + 8 +0 + 62 + 0 + 10 +7244.359376 + 20 +10979.275228 + 30 +0.0 + 11 +7272.484376 + 21 +11027.989157 + 31 +0.0 + 0 +LINE + 5 +E46 + 8 +0 + 62 + 0 + 10 +5388.109376 + 20 +7861.583774 + 30 +0.0 + 11 +5416.234376 + 21 +7910.297703 + 31 +0.0 + 0 +LINE + 5 +E47 + 8 +0 + 62 + 0 + 10 +5472.484376 + 20 +8007.725561 + 30 +0.0 + 11 +5500.609376 + 21 +8056.43949 + 31 +0.0 + 0 +LINE + 5 +E48 + 8 +0 + 62 + 0 + 10 +6906.859376 + 20 +10492.135938 + 30 +0.0 + 11 +6934.984376 + 21 +10540.849867 + 31 +0.0 + 0 +LINE + 5 +E49 + 8 +0 + 62 + 0 + 10 +6991.234376 + 20 +10638.277725 + 30 +0.0 + 11 +7019.359376 + 21 +10686.991654 + 31 +0.0 + 0 +LINE + 5 +E4A + 8 +0 + 62 + 0 + 10 +7075.609376 + 20 +10784.419512 + 30 +0.0 + 11 +7103.734376 + 21 +10833.133441 + 31 +0.0 + 0 +LINE + 5 +E4B + 8 +0 + 62 + 0 + 10 +7159.984376 + 20 +10930.561299 + 30 +0.0 + 11 +7188.109376 + 21 +10979.275228 + 31 +0.0 + 0 +LINE + 5 +E4C + 8 +0 + 62 + 0 + 10 +5388.109376 + 20 +7959.011632 + 30 +0.0 + 11 +5416.234376 + 21 +8007.725561 + 31 +0.0 + 0 +LINE + 5 +E4D + 8 +0 + 62 + 0 + 10 +5472.484376 + 20 +8105.153419 + 30 +0.0 + 11 +5500.609376 + 21 +8153.867348 + 31 +0.0 + 0 +LINE + 5 +E4E + 8 +0 + 62 + 0 + 10 +6822.484376 + 20 +10443.422009 + 30 +0.0 + 11 +6850.609376 + 21 +10492.135938 + 31 +0.0 + 0 +LINE + 5 +E4F + 8 +0 + 62 + 0 + 10 +6906.859376 + 20 +10589.563796 + 30 +0.0 + 11 +6934.984376 + 21 +10638.277725 + 31 +0.0 + 0 +LINE + 5 +E50 + 8 +0 + 62 + 0 + 10 +6991.234376 + 20 +10735.705583 + 30 +0.0 + 11 +7019.359376 + 21 +10784.419512 + 31 +0.0 + 0 +LINE + 5 +E51 + 8 +0 + 62 + 0 + 10 +7075.609376 + 20 +10881.84737 + 30 +0.0 + 11 +7103.734376 + 21 +10930.561299 + 31 +0.0 + 0 +LINE + 5 +E52 + 8 +0 + 62 + 0 + 10 +5388.109377 + 20 +8056.43949 + 30 +0.0 + 11 +5416.234377 + 21 +8105.153419 + 31 +0.0 + 0 +LINE + 5 +E53 + 8 +0 + 62 + 0 + 10 +5472.484377 + 20 +8202.581277 + 30 +0.0 + 11 +5500.609377 + 21 +8251.295206 + 31 +0.0 + 0 +LINE + 5 +E54 + 8 +0 + 62 + 0 + 10 +6738.109377 + 20 +10394.70808 + 30 +0.0 + 11 +6766.234377 + 21 +10443.422009 + 31 +0.0 + 0 +LINE + 5 +E55 + 8 +0 + 62 + 0 + 10 +6822.484377 + 20 +10540.849867 + 30 +0.0 + 11 +6850.609377 + 21 +10589.563796 + 31 +0.0 + 0 +LINE + 5 +E56 + 8 +0 + 62 + 0 + 10 +6906.859377 + 20 +10686.991654 + 30 +0.0 + 11 +6934.984377 + 21 +10735.705583 + 31 +0.0 + 0 +LINE + 5 +E57 + 8 +0 + 62 + 0 + 10 +6991.234377 + 20 +10833.133441 + 30 +0.0 + 11 +7019.359377 + 21 +10881.84737 + 31 +0.0 + 0 +LINE + 5 +E58 + 8 +0 + 62 + 0 + 10 +5388.109377 + 20 +8153.867348 + 30 +0.0 + 11 +5416.234377 + 21 +8202.581277 + 31 +0.0 + 0 +LINE + 5 +E59 + 8 +0 + 62 + 0 + 10 +5472.484377 + 20 +8300.009135 + 30 +0.0 + 11 +5500.609377 + 21 +8348.723064 + 31 +0.0 + 0 +LINE + 5 +E5A + 8 +0 + 62 + 0 + 10 +6653.734377 + 20 +10345.994151 + 30 +0.0 + 11 +6681.859377 + 21 +10394.70808 + 31 +0.0 + 0 +LINE + 5 +E5B + 8 +0 + 62 + 0 + 10 +6738.109377 + 20 +10492.135938 + 30 +0.0 + 11 +6766.234377 + 21 +10540.849867 + 31 +0.0 + 0 +LINE + 5 +E5C + 8 +0 + 62 + 0 + 10 +6822.484377 + 20 +10638.277725 + 30 +0.0 + 11 +6850.609377 + 21 +10686.991654 + 31 +0.0 + 0 +LINE + 5 +E5D + 8 +0 + 62 + 0 + 10 +6906.859377 + 20 +10784.419512 + 30 +0.0 + 11 +6932.382789 + 21 +10828.627359 + 31 +0.0 + 0 +LINE + 5 +E5E + 8 +0 + 62 + 0 + 10 +5388.109377 + 20 +8251.295206 + 30 +0.0 + 11 +5416.234377 + 21 +8300.009135 + 31 +0.0 + 0 +LINE + 5 +E5F + 8 +0 + 62 + 0 + 10 +5472.484377 + 20 +8397.436992 + 30 +0.0 + 11 +5500.609377 + 21 +8446.150921 + 31 +0.0 + 0 +LINE + 5 +E60 + 8 +0 + 62 + 0 + 10 +6569.359377 + 20 +10297.280222 + 30 +0.0 + 11 +6597.484377 + 21 +10345.994151 + 31 +0.0 + 0 +LINE + 5 +E61 + 8 +0 + 62 + 0 + 10 +6653.734377 + 20 +10443.422009 + 30 +0.0 + 11 +6681.859377 + 21 +10492.135938 + 31 +0.0 + 0 +LINE + 5 +E62 + 8 +0 + 62 + 0 + 10 +6738.109377 + 20 +10589.563796 + 30 +0.0 + 11 +6766.234377 + 21 +10638.277725 + 31 +0.0 + 0 +LINE + 5 +E63 + 8 +0 + 62 + 0 + 10 +6822.484377 + 20 +10735.705583 + 30 +0.0 + 11 +6844.426814 + 21 +10773.710999 + 31 +0.0 + 0 +LINE + 5 +E64 + 8 +0 + 62 + 0 + 10 +5388.109377 + 20 +8348.723063 + 30 +0.0 + 11 +5416.234377 + 21 +8397.436992 + 31 +0.0 + 0 +LINE + 5 +E65 + 8 +0 + 62 + 0 + 10 +5472.484377 + 20 +8494.86485 + 30 +0.0 + 11 +5500.609377 + 21 +8543.578779 + 31 +0.0 + 0 +LINE + 5 +E66 + 8 +0 + 62 + 0 + 10 +6484.984377 + 20 +10248.566293 + 30 +0.0 + 11 +6513.109377 + 21 +10297.280222 + 31 +0.0 + 0 +LINE + 5 +E67 + 8 +0 + 62 + 0 + 10 +6569.359377 + 20 +10394.70808 + 30 +0.0 + 11 +6597.484377 + 21 +10443.422009 + 31 +0.0 + 0 +LINE + 5 +E68 + 8 +0 + 62 + 0 + 10 +6653.734377 + 20 +10540.849867 + 30 +0.0 + 11 +6681.859377 + 21 +10589.563796 + 31 +0.0 + 0 +LINE + 5 +E69 + 8 +0 + 62 + 0 + 10 +6738.109377 + 20 +10686.991654 + 30 +0.0 + 11 +6756.470839 + 21 +10718.794639 + 31 +0.0 + 0 +LINE + 5 +E6A + 8 +0 + 62 + 0 + 10 +5388.109377 + 20 +8446.150921 + 30 +0.0 + 11 +5416.234377 + 21 +8494.86485 + 31 +0.0 + 0 +LINE + 5 +E6B + 8 +0 + 62 + 0 + 10 +5472.484377 + 20 +8592.292708 + 30 +0.0 + 11 +5500.609377 + 21 +8641.006637 + 31 +0.0 + 0 +LINE + 5 +E6C + 8 +0 + 62 + 0 + 10 +6400.609377 + 20 +10199.852364 + 30 +0.0 + 11 +6428.734377 + 21 +10248.566293 + 31 +0.0 + 0 +LINE + 5 +E6D + 8 +0 + 62 + 0 + 10 +6484.984377 + 20 +10345.994151 + 30 +0.0 + 11 +6513.109377 + 21 +10394.70808 + 31 +0.0 + 0 +LINE + 5 +E6E + 8 +0 + 62 + 0 + 10 +6569.359377 + 20 +10492.135938 + 30 +0.0 + 11 +6597.484377 + 21 +10540.849867 + 31 +0.0 + 0 +LINE + 5 +E6F + 8 +0 + 62 + 0 + 10 +6653.734377 + 20 +10638.277725 + 30 +0.0 + 11 +6668.514864 + 21 +10663.878278 + 31 +0.0 + 0 +LINE + 5 +E70 + 8 +0 + 62 + 0 + 10 +5388.109377 + 20 +8543.578779 + 30 +0.0 + 11 +5416.234377 + 21 +8592.292708 + 31 +0.0 + 0 +LINE + 5 +E71 + 8 +0 + 62 + 0 + 10 +5472.484377 + 20 +8689.720566 + 30 +0.0 + 11 +5500.609377 + 21 +8738.434495 + 31 +0.0 + 0 +LINE + 5 +E72 + 8 +0 + 62 + 0 + 10 +6316.234377 + 20 +10151.138435 + 30 +0.0 + 11 +6344.359377 + 21 +10199.852364 + 31 +0.0 + 0 +LINE + 5 +E73 + 8 +0 + 62 + 0 + 10 +6400.609377 + 20 +10297.280222 + 30 +0.0 + 11 +6428.734377 + 21 +10345.994151 + 31 +0.0 + 0 +LINE + 5 +E74 + 8 +0 + 62 + 0 + 10 +6484.984377 + 20 +10443.422009 + 30 +0.0 + 11 +6513.109377 + 21 +10492.135938 + 31 +0.0 + 0 +LINE + 5 +E75 + 8 +0 + 62 + 0 + 10 +6569.359377 + 20 +10589.563795 + 30 +0.0 + 11 +6580.558889 + 21 +10608.961918 + 31 +0.0 + 0 +LINE + 5 +E76 + 8 +0 + 62 + 0 + 10 +5388.109378 + 20 +8641.006637 + 30 +0.0 + 11 +5416.234378 + 21 +8689.720566 + 31 +0.0 + 0 +LINE + 5 +E77 + 8 +0 + 62 + 0 + 10 +5472.484378 + 20 +8787.148424 + 30 +0.0 + 11 +5500.609378 + 21 +8835.862353 + 31 +0.0 + 0 +LINE + 5 +E78 + 8 +0 + 62 + 0 + 10 +6171.913944 + 20 +9998.595969 + 30 +0.0 + 11 +6175.609378 + 21 +10004.996648 + 31 +0.0 + 0 +LINE + 5 +E79 + 8 +0 + 62 + 0 + 10 +6231.859378 + 20 +10102.424506 + 30 +0.0 + 11 +6259.984378 + 21 +10151.138435 + 31 +0.0 + 0 +LINE + 5 +E7A + 8 +0 + 62 + 0 + 10 +6316.234378 + 20 +10248.566293 + 30 +0.0 + 11 +6344.359378 + 21 +10297.280222 + 31 +0.0 + 0 +LINE + 5 +E7B + 8 +0 + 62 + 0 + 10 +6400.609378 + 20 +10394.708079 + 30 +0.0 + 11 +6428.734378 + 21 +10443.422008 + 31 +0.0 + 0 +LINE + 5 +E7C + 8 +0 + 62 + 0 + 10 +6484.984378 + 20 +10540.849866 + 30 +0.0 + 11 +6492.602913 + 21 +10554.045557 + 31 +0.0 + 0 +LINE + 5 +E7D + 8 +0 + 62 + 0 + 10 +5388.109378 + 20 +8738.434495 + 30 +0.0 + 11 +5416.234378 + 21 +8787.148424 + 31 +0.0 + 0 +LINE + 5 +E7E + 8 +0 + 62 + 0 + 10 +5472.484378 + 20 +8884.576282 + 30 +0.0 + 11 +5500.609378 + 21 +8933.29021 + 31 +0.0 + 0 +LINE + 5 +E7F + 8 +0 + 62 + 0 + 10 +6083.282115 + 20 +9942.508995 + 30 +0.0 + 11 +6091.234378 + 21 +9956.282719 + 31 +0.0 + 0 +LINE + 5 +E80 + 8 +0 + 62 + 0 + 10 +6147.484378 + 20 +10053.710577 + 30 +0.0 + 11 +6175.609378 + 21 +10102.424506 + 31 +0.0 + 0 +LINE + 5 +E81 + 8 +0 + 62 + 0 + 10 +6231.859378 + 20 +10199.852364 + 30 +0.0 + 11 +6259.984378 + 21 +10248.566292 + 31 +0.0 + 0 +LINE + 5 +E82 + 8 +0 + 62 + 0 + 10 +6316.234378 + 20 +10345.99415 + 30 +0.0 + 11 +6344.359378 + 21 +10394.708079 + 31 +0.0 + 0 +LINE + 5 +E83 + 8 +0 + 62 + 0 + 10 +6400.609378 + 20 +10492.135937 + 30 +0.0 + 11 +6404.646938 + 21 +10499.129197 + 31 +0.0 + 0 +LINE + 5 +E84 + 8 +0 + 62 + 0 + 10 +5748.950757 + 20 +9363.430097 + 30 +0.0 + 11 +5753.734378 + 21 +9371.715571 + 31 +0.0 + 0 +LINE + 5 +E85 + 8 +0 + 62 + 0 + 10 +5388.109378 + 20 +8835.862352 + 30 +0.0 + 11 +5416.234378 + 21 +8884.576281 + 31 +0.0 + 0 +LINE + 5 +E86 + 8 +0 + 62 + 0 + 10 +5472.484378 + 20 +8982.004139 + 30 +0.0 + 11 +5500.609378 + 21 +9030.718068 + 31 +0.0 + 0 +LINE + 5 +E87 + 8 +0 + 62 + 0 + 10 +5994.650285 + 20 +9886.42202 + 30 +0.0 + 11 +6006.859378 + 21 +9907.56879 + 31 +0.0 + 0 +LINE + 5 +E88 + 8 +0 + 62 + 0 + 10 +6063.109378 + 20 +10004.996648 + 30 +0.0 + 11 +6091.234378 + 21 +10053.710577 + 31 +0.0 + 0 +LINE + 5 +E89 + 8 +0 + 62 + 0 + 10 +6147.484378 + 20 +10151.138434 + 30 +0.0 + 11 +6175.609378 + 21 +10199.852363 + 31 +0.0 + 0 +LINE + 5 +E8A + 8 +0 + 62 + 0 + 10 +6231.859378 + 20 +10297.280221 + 30 +0.0 + 11 +6259.984378 + 21 +10345.99415 + 31 +0.0 + 0 +LINE + 5 +E8B + 8 +0 + 62 + 0 + 10 +6316.234378 + 20 +10443.422008 + 30 +0.0 + 11 +6316.690963 + 21 +10444.212837 + 31 +0.0 + 0 +LINE + 5 +E8C + 8 +0 + 62 + 0 + 10 +5725.609378 + 20 +9420.4295 + 30 +0.0 + 11 +5753.734378 + 21 +9469.143429 + 31 +0.0 + 0 +LINE + 5 +E8D + 8 +0 + 62 + 0 + 10 +5388.109378 + 20 +8933.29021 + 30 +0.0 + 11 +5416.234378 + 21 +8982.004139 + 31 +0.0 + 0 +LINE + 5 +E8E + 8 +0 + 62 + 0 + 10 +5472.484378 + 20 +9079.431997 + 30 +0.0 + 11 +5500.609378 + 21 +9128.145926 + 31 +0.0 + 0 +LINE + 5 +E8F + 8 +0 + 62 + 0 + 10 +5921.034166 + 20 +9856.34302 + 30 +0.0 + 11 +5922.484378 + 21 +9858.854861 + 31 +0.0 + 0 +LINE + 5 +E90 + 8 +0 + 62 + 0 + 10 +5978.734378 + 20 +9956.282718 + 30 +0.0 + 11 +6006.859378 + 21 +10004.996647 + 31 +0.0 + 0 +LINE + 5 +E91 + 8 +0 + 62 + 0 + 10 +6063.109378 + 20 +10102.424505 + 30 +0.0 + 11 +6091.234378 + 21 +10151.138434 + 31 +0.0 + 0 +LINE + 5 +E92 + 8 +0 + 62 + 0 + 10 +6147.484378 + 20 +10248.566292 + 30 +0.0 + 11 +6175.609378 + 21 +10297.280221 + 31 +0.0 + 0 +LINE + 5 +E93 + 8 +0 + 62 + 0 + 10 +5641.234378 + 20 +9371.715571 + 30 +0.0 + 11 +5669.359378 + 21 +9420.4295 + 31 +0.0 + 0 +LINE + 5 +E94 + 8 +0 + 62 + 0 + 10 +5725.609378 + 20 +9517.857358 + 30 +0.0 + 11 +5753.734378 + 21 +9566.571287 + 31 +0.0 + 0 +LINE + 5 +E95 + 8 +0 + 62 + 0 + 10 +5388.109378 + 20 +9030.718068 + 30 +0.0 + 11 +5416.234378 + 21 +9079.431997 + 31 +0.0 + 0 +LINE + 5 +E96 + 8 +0 + 62 + 0 + 10 +5472.484378 + 20 +9176.859855 + 30 +0.0 + 11 +5500.609378 + 21 +9225.573784 + 31 +0.0 + 0 +LINE + 5 +E97 + 8 +0 + 62 + 0 + 10 +5894.359378 + 20 +9907.568789 + 30 +0.0 + 11 +5922.484378 + 21 +9956.282718 + 31 +0.0 + 0 +LINE + 5 +E98 + 8 +0 + 62 + 0 + 10 +5978.734378 + 20 +10053.710576 + 30 +0.0 + 11 +6006.859378 + 21 +10102.424505 + 31 +0.0 + 0 +LINE + 5 +E99 + 8 +0 + 62 + 0 + 10 +6063.109378 + 20 +10199.852363 + 30 +0.0 + 11 +6091.234378 + 21 +10248.566292 + 31 +0.0 + 0 +LINE + 5 +E9A + 8 +0 + 62 + 0 + 10 +5573.206717 + 20 +9351.316063 + 30 +0.0 + 11 +5584.984378 + 21 +9371.715571 + 31 +0.0 + 0 +LINE + 5 +E9B + 8 +0 + 62 + 0 + 10 +5641.234378 + 20 +9469.143429 + 30 +0.0 + 11 +5669.359378 + 21 +9517.857358 + 31 +0.0 + 0 +LINE + 5 +E9C + 8 +0 + 62 + 0 + 10 +5725.609378 + 20 +9615.285216 + 30 +0.0 + 11 +5753.734378 + 21 +9663.999145 + 31 +0.0 + 0 +LINE + 5 +E9D + 8 +0 + 62 + 0 + 10 +5388.109379 + 20 +9128.145926 + 30 +0.0 + 11 +5416.234379 + 21 +9176.859855 + 31 +0.0 + 0 +LINE + 5 +E9E + 8 +0 + 62 + 0 + 10 +5472.484379 + 20 +9274.287713 + 30 +0.0 + 11 +5500.609379 + 21 +9323.001642 + 31 +0.0 + 0 +LINE + 5 +E9F + 8 +0 + 62 + 0 + 10 +5556.859379 + 20 +9420.4295 + 30 +0.0 + 11 +5584.984379 + 21 +9469.143429 + 31 +0.0 + 0 +LINE + 5 +EA0 + 8 +0 + 62 + 0 + 10 +5641.234379 + 20 +9566.571287 + 30 +0.0 + 11 +5669.359379 + 21 +9615.285216 + 31 +0.0 + 0 +LINE + 5 +EA1 + 8 +0 + 62 + 0 + 10 +5725.609379 + 20 +9712.713073 + 30 +0.0 + 11 +5753.734379 + 21 +9761.427002 + 31 +0.0 + 0 +LINE + 5 +EA2 + 8 +0 + 62 + 0 + 10 +5809.984379 + 20 +9858.85486 + 30 +0.0 + 11 +5838.109379 + 21 +9907.568789 + 31 +0.0 + 0 +LINE + 5 +EA3 + 8 +0 + 62 + 0 + 10 +5894.359379 + 20 +10004.996647 + 30 +0.0 + 11 +5922.484379 + 21 +10053.710576 + 31 +0.0 + 0 +LINE + 5 +EA4 + 8 +0 + 62 + 0 + 10 +5978.734379 + 20 +10151.138434 + 30 +0.0 + 11 +6006.859379 + 21 +10199.852363 + 31 +0.0 + 0 +LINE + 5 +EA5 + 8 +0 + 62 + 0 + 10 +5388.109379 + 20 +9225.573784 + 30 +0.0 + 11 +5416.234379 + 21 +9274.287713 + 31 +0.0 + 0 +LINE + 5 +EA6 + 8 +0 + 62 + 0 + 10 +5472.484379 + 20 +9371.715571 + 30 +0.0 + 11 +5500.609379 + 21 +9420.4295 + 31 +0.0 + 0 +LINE + 5 +EA7 + 8 +0 + 62 + 0 + 10 +5556.859379 + 20 +9517.857358 + 30 +0.0 + 11 +5584.984379 + 21 +9566.571286 + 31 +0.0 + 0 +LINE + 5 +EA8 + 8 +0 + 62 + 0 + 10 +5641.234379 + 20 +9663.999144 + 30 +0.0 + 11 +5669.359379 + 21 +9712.713073 + 31 +0.0 + 0 +LINE + 5 +EA9 + 8 +0 + 62 + 0 + 10 +5725.609379 + 20 +9810.140931 + 30 +0.0 + 11 +5753.734379 + 21 +9858.85486 + 31 +0.0 + 0 +LINE + 5 +EAA + 8 +0 + 62 + 0 + 10 +5809.984379 + 20 +9956.282718 + 30 +0.0 + 11 +5838.109379 + 21 +10004.996647 + 31 +0.0 + 0 +LINE + 5 +EAB + 8 +0 + 62 + 0 + 10 +5894.359379 + 20 +10102.424505 + 30 +0.0 + 11 +5922.484379 + 21 +10151.138434 + 31 +0.0 + 0 +LINE + 5 +EAC + 8 +0 + 62 + 0 + 10 +5388.109379 + 20 +9323.001642 + 30 +0.0 + 11 +5416.234379 + 21 +9371.715571 + 31 +0.0 + 0 +LINE + 5 +EAD + 8 +0 + 62 + 0 + 10 +5472.484379 + 20 +9469.143428 + 30 +0.0 + 11 +5500.609379 + 21 +9517.857357 + 31 +0.0 + 0 +LINE + 5 +EAE + 8 +0 + 62 + 0 + 10 +5556.859379 + 20 +9615.285215 + 30 +0.0 + 11 +5584.984379 + 21 +9663.999144 + 31 +0.0 + 0 +LINE + 5 +EAF + 8 +0 + 62 + 0 + 10 +5641.234379 + 20 +9761.427002 + 30 +0.0 + 11 +5669.359379 + 21 +9810.140931 + 31 +0.0 + 0 +LINE + 5 +EB0 + 8 +0 + 62 + 0 + 10 +5725.609379 + 20 +9907.568789 + 30 +0.0 + 11 +5753.734379 + 21 +9956.282718 + 31 +0.0 + 0 +LINE + 5 +EB1 + 8 +0 + 62 + 0 + 10 +5809.984379 + 20 +10053.710576 + 30 +0.0 + 11 +5838.109379 + 21 +10102.424505 + 31 +0.0 + 0 +LINE + 5 +EB2 + 8 +0 + 62 + 0 + 10 +5388.109379 + 20 +9420.429499 + 30 +0.0 + 11 +5416.234379 + 21 +9469.143428 + 31 +0.0 + 0 +LINE + 5 +EB3 + 8 +0 + 62 + 0 + 10 +5472.484379 + 20 +9566.571286 + 30 +0.0 + 11 +5500.609379 + 21 +9615.285215 + 31 +0.0 + 0 +LINE + 5 +EB4 + 8 +0 + 62 + 0 + 10 +5556.859379 + 20 +9712.713073 + 30 +0.0 + 11 +5584.984379 + 21 +9761.427002 + 31 +0.0 + 0 +LINE + 5 +EB5 + 8 +0 + 62 + 0 + 10 +5641.234379 + 20 +9858.85486 + 30 +0.0 + 11 +5669.359379 + 21 +9907.568789 + 31 +0.0 + 0 +LINE + 5 +EB6 + 8 +0 + 62 + 0 + 10 +5725.609379 + 20 +10004.996647 + 30 +0.0 + 11 +5753.734379 + 21 +10053.710576 + 31 +0.0 + 0 +LINE + 5 +EB7 + 8 +0 + 62 + 0 + 10 +5388.109379 + 20 +9517.857357 + 30 +0.0 + 11 +5416.234379 + 21 +9566.571286 + 31 +0.0 + 0 +LINE + 5 +EB8 + 8 +0 + 62 + 0 + 10 +5472.484379 + 20 +9663.999144 + 30 +0.0 + 11 +5500.609379 + 21 +9712.713073 + 31 +0.0 + 0 +LINE + 5 +EB9 + 8 +0 + 62 + 0 + 10 +5556.859379 + 20 +9810.140931 + 30 +0.0 + 11 +5584.984379 + 21 +9858.85486 + 31 +0.0 + 0 +LINE + 5 +EBA + 8 +0 + 62 + 0 + 10 +5641.234379 + 20 +9956.282718 + 30 +0.0 + 11 +5669.359379 + 21 +10004.996647 + 31 +0.0 + 0 +LINE + 5 +EBB + 8 +0 + 62 + 0 + 10 +5388.109379 + 20 +9615.285215 + 30 +0.0 + 11 +5416.234379 + 21 +9663.999144 + 31 +0.0 + 0 +LINE + 5 +EBC + 8 +0 + 62 + 0 + 10 +5472.484379 + 20 +9761.427002 + 30 +0.0 + 11 +5500.609379 + 21 +9810.140931 + 31 +0.0 + 0 +LINE + 5 +EBD + 8 +0 + 62 + 0 + 10 +5556.859379 + 20 +9907.568789 + 30 +0.0 + 11 +5584.984379 + 21 +9956.282718 + 31 +0.0 + 0 +LINE + 5 +EBE + 8 +0 + 62 + 0 + 10 +5388.10938 + 20 +9712.713073 + 30 +0.0 + 11 +5416.23438 + 21 +9761.427002 + 31 +0.0 + 0 +LINE + 5 +EBF + 8 +0 + 62 + 0 + 10 +5472.48438 + 20 +9858.85486 + 30 +0.0 + 11 +5500.60938 + 21 +9907.568789 + 31 +0.0 + 0 +LINE + 5 +EC0 + 8 +0 + 62 + 0 + 10 +5388.10938 + 20 +9810.140931 + 30 +0.0 + 11 +5416.23438 + 21 +9858.85486 + 31 +0.0 + 0 +LINE + 5 +EC1 + 8 +0 + 62 + 0 + 10 +7678.655049 + 20 +10952.074539 + 30 +0.0 + 11 +7694.359374 + 21 +10979.275229 + 31 +0.0 + 0 +LINE + 5 +EC2 + 8 +0 + 62 + 0 + 10 +7750.609374 + 20 +11076.703087 + 30 +0.0 + 11 +7778.734374 + 21 +11125.417016 + 31 +0.0 + 0 +LINE + 5 +EC3 + 8 +0 + 62 + 0 + 10 +7834.984374 + 20 +11222.844874 + 30 +0.0 + 11 +7863.109374 + 21 +11271.558803 + 31 +0.0 + 0 +LINE + 5 +EC4 + 8 +0 + 62 + 0 + 10 +7919.359374 + 20 +11368.986661 + 30 +0.0 + 11 +7947.484374 + 21 +11417.70059 + 31 +0.0 + 0 +LINE + 5 +EC5 + 8 +0 + 62 + 0 + 10 +7767.286878 + 20 +11008.161513 + 30 +0.0 + 11 +7778.734374 + 21 +11027.989158 + 31 +0.0 + 0 +LINE + 5 +EC6 + 8 +0 + 62 + 0 + 10 +7834.984374 + 20 +11125.417016 + 30 +0.0 + 11 +7863.109374 + 21 +11174.130945 + 31 +0.0 + 0 +LINE + 5 +EC7 + 8 +0 + 62 + 0 + 10 +7919.359374 + 20 +11271.558803 + 30 +0.0 + 11 +7947.484374 + 21 +11320.272732 + 31 +0.0 + 0 +LINE + 5 +EC8 + 8 +0 + 62 + 0 + 10 +8003.734374 + 20 +11417.70059 + 30 +0.0 + 11 +8031.859374 + 21 +11466.414519 + 31 +0.0 + 0 +LINE + 5 +EC9 + 8 +0 + 62 + 0 + 10 +7855.918708 + 20 +11064.248488 + 30 +0.0 + 11 +7863.109374 + 21 +11076.703087 + 31 +0.0 + 0 +LINE + 5 +ECA + 8 +0 + 62 + 0 + 10 +7919.359374 + 20 +11174.130945 + 30 +0.0 + 11 +7947.484374 + 21 +11222.844874 + 31 +0.0 + 0 +LINE + 5 +ECB + 8 +0 + 62 + 0 + 10 +8003.734374 + 20 +11320.272732 + 30 +0.0 + 11 +8031.859374 + 21 +11368.986661 + 31 +0.0 + 0 +LINE + 5 +ECC + 8 +0 + 62 + 0 + 10 +8088.109374 + 20 +11466.414519 + 30 +0.0 + 11 +8116.234374 + 21 +11515.128448 + 31 +0.0 + 0 +LINE + 5 +ECD + 8 +0 + 62 + 0 + 10 +7944.550538 + 20 +11120.335463 + 30 +0.0 + 11 +7947.484374 + 21 +11125.417016 + 31 +0.0 + 0 +LINE + 5 +ECE + 8 +0 + 62 + 0 + 10 +8003.734374 + 20 +11222.844874 + 30 +0.0 + 11 +8031.859374 + 21 +11271.558803 + 31 +0.0 + 0 +LINE + 5 +ECF + 8 +0 + 62 + 0 + 10 +8088.109374 + 20 +11368.986661 + 30 +0.0 + 11 +8116.234374 + 21 +11417.70059 + 31 +0.0 + 0 +LINE + 5 +ED0 + 8 +0 + 62 + 0 + 10 +8172.484374 + 20 +11515.128448 + 30 +0.0 + 11 +8200.609374 + 21 +11563.842377 + 31 +0.0 + 0 +LINE + 5 +ED1 + 8 +0 + 62 + 0 + 10 +8088.109374 + 20 +11271.558803 + 30 +0.0 + 11 +8116.234374 + 21 +11320.272732 + 31 +0.0 + 0 +LINE + 5 +ED2 + 8 +0 + 62 + 0 + 10 +8172.484374 + 20 +11417.70059 + 30 +0.0 + 11 +8200.609374 + 21 +11466.414519 + 31 +0.0 + 0 +LINE + 5 +ED3 + 8 +0 + 62 + 0 + 10 +8172.484374 + 20 +11320.272732 + 30 +0.0 + 11 +8200.609374 + 21 +11368.986661 + 31 +0.0 + 0 +LINE + 5 +ED4 + 8 +0 + 62 + 0 + 10 +8256.859373 + 20 +11368.986661 + 30 +0.0 + 11 +8284.984373 + 21 +11417.70059 + 31 +0.0 + 0 +POLYLINE + 5 +ED5 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1566 + 8 +MAUERWERK + 10 +6451.85938 + 20 +7695.360132 + 30 +0.0 + 0 +VERTEX + 5 +1567 + 8 +MAUERWERK + 10 +6451.85938 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +1568 + 8 +MAUERWERK + 10 +5539.35938 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +1569 + 8 +MAUERWERK + 10 +5539.35938 + 20 +7695.360132 + 30 +0.0 + 0 +SEQEND + 5 +156A + 8 +MAUERWERK + 0 +POLYLINE + 5 +EDB + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +156B + 8 +DAEMMUNG + 10 +5341.298947 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +156C + 8 +DAEMMUNG + 10 +5341.298947 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +156D + 8 +DAEMMUNG + 10 +5339.686394 + 20 +7695.360132 + 30 +0.0 + 0 +SEQEND + 5 +156E + 8 +DAEMMUNG + 0 +POLYLINE + 5 +EE0 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +156F + 8 +MAUERWERK + 10 +5189.35938 + 20 +7695.360132 + 30 +0.0 + 0 +VERTEX + 5 +1570 + 8 +MAUERWERK + 10 +5189.35938 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +1571 + 8 +MAUERWERK + 10 +4901.85938 + 20 +9352.860132 + 30 +0.0 + 0 +SEQEND + 5 +1572 + 8 +MAUERWERK + 0 +POLYLINE + 5 +EE5 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1573 + 8 +MAUERWERK + 10 +4901.85938 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +1574 + 8 +MAUERWERK + 10 +4901.85938 + 20 +7695.360132 + 30 +0.0 + 0 +SEQEND + 5 +1575 + 8 +MAUERWERK + 0 +POLYLINE + 5 +EE9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1576 + 8 +DETAILS + 10 +5944.428582 + 20 +9841.809571 + 30 +0.0 + 0 +VERTEX + 5 +1577 + 8 +DETAILS + 10 +5944.428582 + 20 +8900.360132 + 30 +0.0 + 0 +VERTEX + 5 +1578 + 8 +DETAILS + 10 +5866.85938 + 20 +8785.360132 + 30 +0.0 + 0 +VERTEX + 5 +1579 + 8 +DETAILS + 10 +5901.85938 + 20 +8750.360132 + 30 +0.0 + 0 +VERTEX + 5 +157A + 8 +DETAILS + 10 +5971.85938 + 20 +8860.922104 + 30 +0.0 + 0 +VERTEX + 5 +157B + 8 +DETAILS + 10 +6034.112202 + 20 +8750.360132 + 30 +0.0 + 0 +VERTEX + 5 +157C + 8 +DETAILS + 10 +6071.85938 + 20 +8785.360132 + 30 +0.0 + 0 +VERTEX + 5 +157D + 8 +DETAILS + 10 +5995.676335 + 20 +8901.899153 + 30 +0.0 + 0 +VERTEX + 5 +157E + 8 +DETAILS + 10 +5995.676335 + 20 +9834.126374 + 30 +0.0 + 0 +SEQEND + 5 +157F + 8 +DETAILS + 0 +POLYLINE + 5 +EF4 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1580 + 8 +DRAHTANKER + 10 +5926.85938 + 20 +9865.360132 + 30 +0.0 + 0 +VERTEX + 5 +1581 + 8 +DRAHTANKER + 10 +6016.85938 + 20 +9865.360132 + 30 +0.0 + 0 +SEQEND + 5 +1582 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +EF8 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +35.0 + 41 +35.0 + 0 +VERTEX + 5 +1583 + 8 +DRAHTANKER + 10 +5946.85938 + 20 +9895.360132 + 30 +0.0 + 0 +VERTEX + 5 +1584 + 8 +DRAHTANKER + 10 +5996.85938 + 20 +9895.360132 + 30 +0.0 + 0 +SEQEND + 5 +1585 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +EFC + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1586 + 8 +DRAHTANKER + 10 +4361.85938 + 20 +9690.360132 + 30 +0.0 + 0 +VERTEX + 5 +1587 + 8 +DRAHTANKER + 10 +4901.85938 + 20 +8826.179487 + 30 +0.0 + 0 +SEQEND + 5 +1588 + 8 +DRAHTANKER + 0 +DIMENSION + 5 +F00 + 8 +DRAHTANKER + 2 +*D7 + 10 +5191.85938 + 20 +6950.360132 + 30 +0.0 + 11 +5044.35938 + 21 +7037.860132 + 31 +0.0 + 12 +-743.14062 + 22 +-614.639868 + 32 +0.0 + 1 +11 + 13 +4896.85938 + 23 +7715.360132 + 33 +0.0 + 14 +5191.85938 + 24 +7715.360132 + 34 +0.0 + 0 +DIMENSION + 5 +F01 + 8 +DRAHTANKER + 2 +*D8 + 10 +5336.85938 + 20 +6950.360132 + 30 +0.0 + 11 +5264.35938 + 21 +7037.860132 + 31 +0.0 + 12 +-743.14062 + 22 +-614.639868 + 32 +0.0 + 1 +6 + 13 +5191.85938 + 23 +7715.360132 + 33 +0.0 + 14 +5336.85938 + 24 +7700.360132 + 34 +0.0 + 0 +DIMENSION + 5 +F02 + 8 +DRAHTANKER + 2 +*D9 + 10 +5536.85938 + 20 +6950.360132 + 30 +0.0 + 11 +5436.85938 + 21 +7037.860132 + 31 +0.0 + 12 +-743.14062 + 22 +-614.639868 + 32 +0.0 + 1 +8 + 13 +5336.85938 + 23 +7700.360132 + 33 +0.0 + 14 +5536.85938 + 24 +7730.360132 + 34 +0.0 + 0 +DIMENSION + 5 +F03 + 8 +DRAHTANKER + 2 +*D10 + 10 +6451.85938 + 20 +6950.360132 + 30 +0.0 + 11 +5994.35938 + 21 +7037.860132 + 31 +0.0 + 12 +-743.14062 + 22 +-614.639868 + 32 +0.0 + 1 +36 + 13 +5536.85938 + 23 +7730.360132 + 33 +0.0 + 14 +6451.85938 + 24 +7715.360132 + 34 +0.0 + 0 +TEXT + 5 +F04 + 8 +DRAHTANKER + 10 +5101.85938 + 20 +7055.360132 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +F05 + 8 +DRAHTANKER + 10 +6086.85938 + 20 +7055.360132 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +INSERT + 5 +F06 + 8 +SCHRAFFUR + 2 +*X11 + 10 +-743.14062 + 20 +-614.639868 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +AR-SAND,I +1040 +25.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +F07 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1589 + 8 +MAUERWERK + 10 +6451.85938 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +158A + 8 +MAUERWERK + 10 +6489.35938 + 20 +9352.860132 + 30 +0.0 + 0 +VERTEX + 5 +158B + 8 +MAUERWERK + 10 +6489.35938 + 20 +7695.360132 + 30 +0.0 + 0 +SEQEND + 5 +158C + 8 +MAUERWERK + 0 +DIMENSION + 5 +F0C + 8 +BEMASSUNG + 2 +*D14 + 10 +6486.85938 + 20 +6950.360132 + 30 +0.0 + 11 +6536.85938 + 21 +7037.860132 + 31 +0.0 + 12 +-743.14062 + 22 +-614.639868 + 32 +0.0 + 70 + 128 + 1 +1 + 13 +6451.85938 + 23 +7715.360132 + 33 +0.0 + 14 +6486.85938 + 24 +7705.360132 + 34 +0.0 + 0 +TEXT + 5 +F0D + 8 +DRAHTANKER + 10 +6561.85938 + 20 +7055.360132 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +DIMENSION + 5 +F0E + 8 +BEMASSUNG + 2 +*D16 + 10 +9095.164101 + 20 +11816.239961 + 30 +0.0 + 11 +9089.684204 + 21 +11992.098485 + 31 +0.0 + 12 +-743.14062 + 22 +-614.639868 + 32 +0.0 + 70 + 1 + 1 +16 + 13 +8161.85938 + 23 +11600.360132 + 33 +0.0 + 14 +8321.85938 + 24 +11340.360132 + 34 +0.0 + 0 +DIMENSION + 5 +F0F + 8 +BEMASSUNG + 2 +*D23 + 10 +9416.684779 + 20 +12028.055849 + 30 +0.0 + 11 +9552.454009 + 21 +11991.902003 + 31 +0.0 + 12 +-132.545991 + 22 +-233.097997 + 32 +0.0 + 70 + 129 + 1 +2 + 13 +8972.454009 + 23 +11666.902003 + 33 +0.0 + 14 +8942.454009 + 24 +11711.902003 + 34 +0.0 + 0 +DIMENSION + 5 +F10 + 8 +BEMASSUNG + 2 +*D24 + 10 +9148.992471 + 20 +12429.59431 + 30 +0.0 + 11 +9355.643026 + 21 +12277.361347 + 31 +0.0 + 12 +-132.545991 + 22 +-233.097997 + 32 +0.0 + 1 +18 + 13 +8942.454009 + 23 +11711.902003 + 33 +0.0 + 14 +8687.454009 + 24 +12121.902003 + 34 +0.0 + 50 +303.690068 + 0 +DIMENSION + 5 +F11 + 8 +BEMASSUNG + 2 +*D25 + 10 +9100.530932 + 20 +12502.286618 + 30 +0.0 + 11 +9197.566102 + 21 +12514.476731 + 31 +0.0 + 12 +-132.545991 + 22 +-233.097997 + 32 +0.0 + 1 +3 + 13 +8687.454009 + 23 +12121.902003 + 33 +0.0 + 14 +8642.454009 + 24 +12196.902003 + 34 +0.0 + 50 +303.690068 + 0 +DIMENSION + 5 +F12 + 8 +BEMASSUNG + 2 +*D25 + 10 +9052.228064 + 20 +12575.056944 + 30 +0.0 + 11 +9149.263234 + 21 +12587.247057 + 31 +0.0 + 12 +-180.848859 + 22 +-160.327671 + 32 +0.0 + 1 +3 + 13 +8639.151141 + 23 +12194.672329 + 33 +0.0 + 14 +8594.151141 + 24 +12269.672329 + 34 +0.0 + 50 +303.690068 + 0 +TEXT + 5 +F13 + 8 +BEMASSUNG + 10 +8609.794424 + 20 +10563.995813 + 30 +0.0 + 40 +87.5 + 1 +SCHALUNG + 0 +TEXT + 5 +F14 + 8 +LEGENDE-35 + 10 +8609.794424 + 20 +10313.995813 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 0 +TEXT + 5 +F15 + 8 +LEGENDE-35 + 10 +8609.794424 + 20 +10110.0 + 30 +0.0 + 40 +87.5 + 1 +MINERALFASER WD + 0 +TEXT + 5 +F16 + 8 +LEGENDE-35 + 10 +8609.794424 + 20 +9860.0 + 30 +0.0 + 40 +87.5 + 1 +FUSSPFETTE POS 10 NH S10 18/18 + 0 +TEXT + 5 +F17 + 8 +LEGENDE-35 + 10 +8609.794424 + 20 +9610.0 + 30 +0.0 + 40 +87.5 + 1 +SPARRENPFETTENANKER M15 + 0 +TEXT + 5 +F18 + 8 +LEGENDE-35 + 10 +8609.794424 + 20 +9360.0 + 30 +0.0 + 40 +87.5 + 1 +MW Mz-20-1.8-NF + 0 +TEXT + 5 +F19 + 8 +LEGENDE-35 + 10 +8609.794424 + 20 +9110.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 0 +POLYLINE + 5 +F1A + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +158D + 8 +LEGENDE-35 + 10 +8455.0 + 20 +10625.0 + 30 +0.0 + 0 +VERTEX + 5 +158E + 8 +LEGENDE-35 + 10 +7280.0 + 20 +10625.0 + 30 +0.0 + 0 +SEQEND + 5 +158F + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F1E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1590 + 8 +LEGENDE-35 + 10 +8455.0 + 20 +10360.0 + 30 +0.0 + 0 +VERTEX + 5 +1591 + 8 +LEGENDE-35 + 10 +6770.0 + 20 +10360.0 + 30 +0.0 + 0 +SEQEND + 5 +1592 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F22 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1593 + 8 +LEGENDE-35 + 10 +8455.0 + 20 +10165.0 + 30 +0.0 + 0 +VERTEX + 5 +1594 + 8 +LEGENDE-35 + 10 +6285.0 + 20 +10165.0 + 30 +0.0 + 0 +SEQEND + 5 +1595 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F26 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1596 + 8 +LEGENDE-35 + 10 +8445.0 + 20 +9905.0 + 30 +0.0 + 0 +VERTEX + 5 +1597 + 8 +LEGENDE-35 + 10 +6660.0 + 20 +9905.0 + 30 +0.0 + 0 +VERTEX + 5 +1598 + 8 +LEGENDE-35 + 10 +6660.0 + 20 +9690.0 + 30 +0.0 + 0 +VERTEX + 5 +1599 + 8 +LEGENDE-35 + 10 +6165.0 + 20 +9690.0 + 30 +0.0 + 0 +SEQEND + 5 +159A + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F2C + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +159B + 8 +LEGENDE-35 + 10 +8440.0 + 20 +9665.0 + 30 +0.0 + 0 +VERTEX + 5 +159C + 8 +LEGENDE-35 + 10 +6965.0 + 20 +9665.0 + 30 +0.0 + 0 +VERTEX + 5 +159D + 8 +LEGENDE-35 + 10 +6965.0 + 20 +9480.0 + 30 +0.0 + 0 +VERTEX + 5 +159E + 8 +LEGENDE-35 + 10 +5990.0 + 20 +9480.0 + 30 +0.0 + 0 +SEQEND + 5 +159F + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F32 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15A0 + 8 +LEGENDE-35 + 10 +8440.0 + 20 +9415.0 + 30 +0.0 + 0 +VERTEX + 5 +15A1 + 8 +LEGENDE-35 + 10 +7245.0 + 20 +9415.0 + 30 +0.0 + 0 +VERTEX + 5 +15A2 + 8 +LEGENDE-35 + 10 +7245.0 + 20 +9105.0 + 30 +0.0 + 0 +VERTEX + 5 +15A3 + 8 +LEGENDE-35 + 10 +6205.0 + 20 +9105.0 + 30 +0.0 + 0 +SEQEND + 5 +15A4 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F38 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15A5 + 8 +LEGENDE-35 + 10 +8440.0 + 20 +9160.0 + 30 +0.0 + 0 +VERTEX + 5 +15A6 + 8 +LEGENDE-35 + 10 +7650.0 + 20 +9160.0 + 30 +0.0 + 0 +VERTEX + 5 +15A7 + 8 +LEGENDE-35 + 10 +7650.0 + 20 +8735.0 + 30 +0.0 + 0 +VERTEX + 5 +15A8 + 8 +LEGENDE-35 + 10 +6460.0 + 20 +8735.0 + 30 +0.0 + 0 +SEQEND + 5 +15A9 + 8 +LEGENDE-35 + 0 +TEXT + 5 +F3E + 8 +LEGENDE-35 + 10 +1875.0 + 20 +11555.0 + 30 +0.0 + 40 +87.5 + 1 +FALZZIEGEL + 0 +TEXT + 5 +F3F + 8 +LEGENDE-35 + 10 +1875.0 + 20 +11305.0 + 30 +0.0 + 40 +87.5 + 1 +LATTUNG NH S10 3/5 + 0 +TEXT + 5 +F40 + 8 +LEGENDE-35 + 10 +1875.0 + 20 +11055.0 + 30 +0.0 + 40 +87.5 + 1 +KONTERLATTUNG NH S10 3/5 + 0 +TEXT + 5 +F41 + 8 +LEGENDE-35 + 10 +1875.0 + 20 +10805.0 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 0 +POLYLINE + 5 +F42 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15AA + 8 +LEGENDE-35 + 10 +3285.0 + 20 +11595.0 + 30 +0.0 + 0 +VERTEX + 5 +15AB + 8 +LEGENDE-35 + 10 +7415.0 + 20 +11595.0 + 30 +0.0 + 0 +SEQEND + 5 +15AC + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F46 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15AD + 8 +LEGENDE-35 + 10 +3530.0 + 20 +11350.0 + 30 +0.0 + 0 +VERTEX + 5 +15AE + 8 +LEGENDE-35 + 10 +6475.0 + 20 +11350.0 + 30 +0.0 + 0 +VERTEX + 5 +15AF + 8 +LEGENDE-35 + 10 +6900.0 + 20 +11145.0 + 30 +0.0 + 0 +SEQEND + 5 +15B0 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F4B + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15B1 + 8 +LEGENDE-35 + 10 +4045.0 + 20 +11090.0 + 30 +0.0 + 0 +VERTEX + 5 +15B2 + 8 +LEGENDE-35 + 10 +6245.0 + 20 +11090.0 + 30 +0.0 + 0 +VERTEX + 5 +15B3 + 8 +LEGENDE-35 + 10 +6685.0 + 20 +10930.0 + 30 +0.0 + 0 +SEQEND + 5 +15B4 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F50 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15B5 + 8 +LEGENDE-35 + 10 +2665.0 + 20 +10840.0 + 30 +0.0 + 0 +VERTEX + 5 +15B6 + 8 +LEGENDE-35 + 10 +5500.0 + 20 +10840.0 + 30 +0.0 + 0 +VERTEX + 5 +15B7 + 8 +LEGENDE-35 + 10 +6230.0 + 20 +10590.0 + 30 +0.0 + 0 +SEQEND + 5 +15B8 + 8 +LEGENDE-35 + 0 +TEXT + 5 +F55 + 8 +LEGENDE-35 + 10 +1340.0 + 20 +8350.0 + 30 +0.0 + 40 +87.5 + 1 +REGENRINNE %%c15cm KUPFER + 0 +TEXT + 5 +F56 + 8 +LEGENDE-35 + 10 +1340.0 + 20 +8100.0 + 30 +0.0 + 40 +87.5 + 1 +LOCHBLECH KUPFER + 0 +TEXT + 5 +F57 + 8 +LEGENDE-35 + 10 +1340.0 + 20 +7850.0 + 30 +0.0 + 40 +87.5 + 1 +SPARREN POS 1 NH S10 8/18 + 0 +TEXT + 5 +F58 + 8 +LEGENDE-35 + 10 +1340.0 + 20 +7600.0 + 30 +0.0 + 40 +87.5 + 1 +VMW KHLz-20-1.8-NF + 0 +POLYLINE + 5 +F59 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15B9 + 8 +LEGENDE-35 + 10 +3355.0 + 20 +8405.0 + 30 +0.0 + 0 +VERTEX + 5 +15BA + 8 +LEGENDE-35 + 10 +4090.0 + 20 +8405.0 + 30 +0.0 + 0 +VERTEX + 5 +15BB + 8 +LEGENDE-35 + 10 +4090.0 + 20 +9240.0 + 30 +0.0 + 0 +SEQEND + 5 +15BC + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F5E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15BD + 8 +LEGENDE-35 + 10 +2845.0 + 20 +8140.0 + 30 +0.0 + 0 +VERTEX + 5 +15BE + 8 +LEGENDE-35 + 10 +4495.0 + 20 +8140.0 + 30 +0.0 + 0 +VERTEX + 5 +15BF + 8 +LEGENDE-35 + 10 +4495.0 + 20 +9415.0 + 30 +0.0 + 0 +SEQEND + 5 +15C0 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F63 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15C1 + 8 +LEGENDE-35 + 10 +3590.0 + 20 +7885.0 + 30 +0.0 + 0 +VERTEX + 5 +15C2 + 8 +LEGENDE-35 + 10 +4755.0 + 20 +7885.0 + 30 +0.0 + 0 +VERTEX + 5 +15C3 + 8 +LEGENDE-35 + 10 +4755.0 + 20 +9400.0 + 30 +0.0 + 0 +SEQEND + 5 +15C4 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +F68 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15C5 + 8 +LEGENDE-35 + 10 +2935.0 + 20 +7650.0 + 30 +0.0 + 0 +VERTEX + 5 +15C6 + 8 +LEGENDE-35 + 10 +4540.0 + 20 +7650.0 + 30 +0.0 + 0 +VERTEX + 5 +15C7 + 8 +LEGENDE-35 + 10 +4975.0 + 20 +7885.0 + 30 +0.0 + 0 +SEQEND + 5 +15C8 + 8 +LEGENDE-35 + 0 +TEXT + 5 +F6D + 8 +LEGENDE-70 + 10 +4205.0 + 20 +13630.0 + 30 +0.0 + 40 +175.0 + 1 +D5 TRAUFPUNKT + DACHEINDECKUNG + 0 +POLYLINE + 5 +F6E + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +15C9 + 8 +MAUERWERK + 10 +10391.85938 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +15CA + 8 +MAUERWERK + 10 +10391.85938 + 20 +2555.360132 + 30 +0.0 + 0 +SEQEND + 5 +15CB + 8 +MAUERWERK + 0 +INSERT + 5 +F72 + 8 +SCHRAFFUR + 2 +*X5 + 10 +4746.85938 + 20 +-5754.639868 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +450.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +F73 + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +15CC + 8 +MAUERWERK + 10 +10679.35938 + 20 +2555.360132 + 30 +0.0 + 0 +VERTEX + 5 +15CD + 8 +MAUERWERK + 10 +10679.35938 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +15CE + 8 +MAUERWERK + 10 +10391.85938 + 20 +4212.860132 + 30 +0.0 + 0 +SEQEND + 5 +15CF + 8 +MAUERWERK + 0 +DIMENSION + 5 +F78 + 8 +DRAHTANKER + 2 +*D10 + 10 +11941.85938 + 20 +1810.360132 + 30 +0.0 + 11 +11484.35938 + 21 +1897.860132 + 31 +0.0 + 12 +4746.85938 + 22 +-5754.639868 + 32 +0.0 + 1 +36 + 13 +11026.85938 + 23 +2590.360132 + 33 +0.0 + 14 +11941.85938 + 24 +2575.360132 + 34 +0.0 + 0 +INSERT + 5 +F79 + 8 +SCHRAFFUR + 2 +*X6 + 10 +4746.85938 + 20 +-5754.639868 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +ANSI31,I +1040 +1200.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +F7A + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +15D0 + 8 +MAUERWERK + 10 +11941.85938 + 20 +2555.360132 + 30 +0.0 + 0 +VERTEX + 5 +15D1 + 8 +MAUERWERK + 10 +11941.85938 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +15D2 + 8 +MAUERWERK + 10 +11029.35938 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +15D3 + 8 +MAUERWERK + 10 +11029.35938 + 20 +2555.360132 + 30 +0.0 + 0 +SEQEND + 5 +15D4 + 8 +MAUERWERK + 0 +LINE + 5 +F80 + 8 +0 + 62 + 0 + 10 +10962.484376 + 20 +2867.725561 + 30 +0.0 + 11 +10990.609376 + 21 +2916.43949 + 31 +0.0 + 0 +LINE + 5 +F81 + 8 +0 + 62 + 0 + 10 +10906.234344 + 20 +2867.725538 + 30 +0.0 + 11 +10878.109344 + 21 +2916.439467 + 31 +0.0 + 0 +POLYLINE + 5 +F82 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +15D5 + 8 +DAEMMUNG + 10 +10831.298947 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +15D6 + 8 +DAEMMUNG + 10 +10831.298947 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +15D7 + 8 +DAEMMUNG + 10 +10829.686394 + 20 +2555.360132 + 30 +0.0 + 0 +SEQEND + 5 +15D8 + 8 +DAEMMUNG + 0 +DIMENSION + 5 +F87 + 8 +DRAHTANKER + 2 +*D8 + 10 +10826.85938 + 20 +1810.360132 + 30 +0.0 + 11 +10754.35938 + 21 +1897.860132 + 31 +0.0 + 12 +4746.85938 + 22 +-5754.639868 + 32 +0.0 + 1 +6 + 13 +10681.85938 + 23 +2575.360132 + 33 +0.0 + 14 +10826.85938 + 24 +2560.360132 + 34 +0.0 + 0 +DIMENSION + 5 +F88 + 8 +DRAHTANKER + 2 +*D9 + 10 +11026.85938 + 20 +1810.360132 + 30 +0.0 + 11 +10926.85938 + 21 +1897.860132 + 31 +0.0 + 12 +4746.85938 + 22 +-5754.639868 + 32 +0.0 + 1 +8 + 13 +10826.85938 + 23 +2560.360132 + 33 +0.0 + 14 +11026.85938 + 24 +2590.360132 + 34 +0.0 + 0 +TEXT + 5 +F89 + 8 +DRAHTANKER + 10 +10591.85938 + 20 +1915.360132 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +LINE + 5 +F8A + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +2867.725521 + 30 +0.0 + 11 +10962.48438 + 21 +2867.725521 + 31 +0.0 + 0 +LINE + 5 +F8B + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +2770.297664 + 30 +0.0 + 11 +10962.48438 + 21 +2770.297664 + 31 +0.0 + 0 +LINE + 5 +F8C + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +2672.869806 + 30 +0.0 + 11 +10962.48438 + 21 +2672.869806 + 31 +0.0 + 0 +LINE + 5 +F8D + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +2575.441949 + 30 +0.0 + 11 +10962.48438 + 21 +2575.441949 + 31 +0.0 + 0 +LINE + 5 +F8E + 8 +0 + 62 + 0 + 10 +10823.269193 + 20 +2819.011592 + 30 +0.0 + 11 +10878.10938 + 21 +2819.011592 + 31 +0.0 + 0 +LINE + 5 +F8F + 8 +0 + 62 + 0 + 10 +10822.916012 + 20 +2721.583735 + 30 +0.0 + 11 +10878.10938 + 21 +2721.583735 + 31 +0.0 + 0 +LINE + 5 +F90 + 8 +0 + 62 + 0 + 10 +10906.234344 + 20 +2770.29768 + 30 +0.0 + 11 +10878.109344 + 21 +2819.011609 + 31 +0.0 + 0 +LINE + 5 +F91 + 8 +0 + 62 + 0 + 10 +10906.234344 + 20 +2672.869822 + 30 +0.0 + 11 +10878.109344 + 21 +2721.583751 + 31 +0.0 + 0 +LINE + 5 +F92 + 8 +0 + 62 + 0 + 10 +10878.109376 + 20 +2721.583774 + 30 +0.0 + 11 +10906.234376 + 21 +2770.297703 + 31 +0.0 + 0 +LINE + 5 +F93 + 8 +0 + 62 + 0 + 10 +10878.109376 + 20 +2819.011632 + 30 +0.0 + 11 +10906.234376 + 21 +2867.725561 + 31 +0.0 + 0 +LINE + 5 +F94 + 8 +0 + 62 + 0 + 10 +10822.562832 + 20 +2624.155877 + 30 +0.0 + 11 +10878.10938 + 21 +2624.155877 + 31 +0.0 + 0 +LINE + 5 +F95 + 8 +0 + 62 + 0 + 10 +10906.234344 + 20 +2575.441964 + 30 +0.0 + 11 +10878.109344 + 21 +2624.155893 + 31 +0.0 + 0 +LINE + 5 +F96 + 8 +0 + 62 + 0 + 10 +10901.934989 + 20 +2567.995231 + 30 +0.0 + 11 +10906.234376 + 21 +2575.441988 + 31 +0.0 + 0 +LINE + 5 +F97 + 8 +0 + 62 + 0 + 10 +10878.109376 + 20 +2624.155916 + 30 +0.0 + 11 +10906.234376 + 21 +2672.869845 + 31 +0.0 + 0 +LINE + 5 +F98 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +2819.011592 + 30 +0.0 + 11 +11030.489283 + 21 +2819.011592 + 31 +0.0 + 0 +LINE + 5 +F99 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +2721.583735 + 30 +0.0 + 11 +11030.489283 + 21 +2721.583735 + 31 +0.0 + 0 +LINE + 5 +F9A + 8 +0 + 62 + 0 + 10 +10990.609344 + 20 +2819.011609 + 30 +0.0 + 11 +10962.484344 + 21 +2867.725538 + 31 +0.0 + 0 +LINE + 5 +F9B + 8 +0 + 62 + 0 + 10 +10990.609344 + 20 +2721.583751 + 30 +0.0 + 11 +10962.484344 + 21 +2770.29768 + 31 +0.0 + 0 +LINE + 5 +F9C + 8 +0 + 62 + 0 + 10 +10962.484376 + 20 +2672.869846 + 30 +0.0 + 11 +10990.609376 + 21 +2721.583774 + 31 +0.0 + 0 +LINE + 5 +F9D + 8 +0 + 62 + 0 + 10 +10962.484376 + 20 +2770.297703 + 30 +0.0 + 11 +10990.609376 + 21 +2819.011632 + 31 +0.0 + 0 +LINE + 5 +F9E + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +2624.155877 + 30 +0.0 + 11 +11030.489283 + 21 +2624.155877 + 31 +0.0 + 0 +LINE + 5 +F9F + 8 +0 + 62 + 0 + 10 +10966.783717 + 20 +2567.995231 + 30 +0.0 + 11 +10962.484344 + 21 +2575.441964 + 31 +0.0 + 0 +LINE + 5 +FA0 + 8 +0 + 62 + 0 + 10 +10962.484376 + 20 +2575.441988 + 30 +0.0 + 11 +10990.609376 + 21 +2624.155917 + 31 +0.0 + 0 +LINE + 5 +FA1 + 8 +0 + 62 + 0 + 10 +10990.609344 + 20 +2624.155893 + 30 +0.0 + 11 +10962.484344 + 21 +2672.869822 + 31 +0.0 + 0 +LINE + 5 +FA2 + 8 +0 + 62 + 0 + 10 +10962.484377 + 20 +3549.720566 + 30 +0.0 + 11 +10990.609377 + 21 +3598.434495 + 31 +0.0 + 0 +LINE + 5 +FA3 + 8 +0 + 62 + 0 + 10 +10906.234342 + 20 +3549.720542 + 30 +0.0 + 11 +10878.109342 + 21 +3598.434471 + 31 +0.0 + 0 +POLYLINE + 5 +FA4 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15D9 + 8 +DETAILS + 10 +10691.85938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +15DA + 8 +DETAILS + 10 +10829.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +15DB + 8 +DETAILS + 0 +POLYLINE + 5 +FA8 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15DC + 8 +DETAILS + 10 +10504.35938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +15DD + 8 +DETAILS + 10 +10579.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +15DE + 8 +DETAILS + 0 +POLYLINE + 5 +FAC + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15DF + 8 +DETAILS + 10 +10729.35938 + 20 +3158.787465 + 30 +0.0 + 0 +VERTEX + 5 +15E0 + 8 +DETAILS + 10 +10729.35938 + 20 +3008.787465 + 30 +0.0 + 0 +SEQEND + 5 +15E1 + 8 +DETAILS + 0 +POLYLINE + 5 +FB0 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15E2 + 8 +DETAILS + 10 +10616.85938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +15E3 + 8 +DETAILS + 10 +10679.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +15E4 + 8 +DETAILS + 0 +LINE + 5 +FB4 + 8 +0 + 62 + 0 + 10 +10990.609343 + 20 +3208.72304 + 30 +0.0 + 11 +10962.484343 + 21 +3257.436969 + 31 +0.0 + 0 +LINE + 5 +FB5 + 8 +0 + 62 + 0 + 10 +10878.109377 + 20 +3208.723063 + 30 +0.0 + 11 +10906.234377 + 21 +3257.436992 + 31 +0.0 + 0 +LINE + 5 +FB6 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3160.009094 + 30 +0.0 + 11 +10962.48438 + 21 +3160.009094 + 31 +0.0 + 0 +LINE + 5 +FB7 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3062.581236 + 30 +0.0 + 11 +10962.48438 + 21 +3062.581236 + 31 +0.0 + 0 +LINE + 5 +FB8 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +2965.153379 + 30 +0.0 + 11 +10962.48438 + 21 +2965.153379 + 31 +0.0 + 0 +POLYLINE + 5 +FB9 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15E5 + 8 +DETAILS + 10 +10805.976103 + 20 +3121.227005 + 30 +0.0 + 0 +VERTEX + 5 +15E6 + 8 +DETAILS + 10 +10805.976103 + 20 +3046.227005 + 30 +0.0 + 0 +SEQEND + 5 +15E7 + 8 +DETAILS + 0 +POLYLINE + 5 +FBD + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15E8 + 8 +DETAILS + 10 +10866.85938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +15E9 + 8 +DETAILS + 10 +10929.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +15EA + 8 +DETAILS + 0 +LINE + 5 +FC1 + 8 +0 + 62 + 0 + 10 +10824.681914 + 20 +3208.723022 + 30 +0.0 + 11 +10878.10938 + 21 +3208.723022 + 31 +0.0 + 0 +LINE + 5 +FC2 + 8 +0 + 62 + 0 + 10 +10824.328733 + 20 +3111.295165 + 30 +0.0 + 11 +10878.10938 + 21 +3111.295165 + 31 +0.0 + 0 +LINE + 5 +FC3 + 8 +0 + 62 + 0 + 10 +10823.975553 + 20 +3013.867307 + 30 +0.0 + 11 +10878.10938 + 21 +3013.867307 + 31 +0.0 + 0 +LINE + 5 +FC4 + 8 +0 + 62 + 0 + 10 +10906.234343 + 20 +3160.009111 + 30 +0.0 + 11 +10878.109343 + 21 +3208.72304 + 31 +0.0 + 0 +LINE + 5 +FC5 + 8 +0 + 62 + 0 + 10 +10906.234343 + 20 +3062.581253 + 30 +0.0 + 11 +10878.109343 + 21 +3111.295182 + 31 +0.0 + 0 +LINE + 5 +FC6 + 8 +0 + 62 + 0 + 10 +10878.109377 + 20 +3013.867348 + 30 +0.0 + 11 +10906.234377 + 21 +3062.581277 + 31 +0.0 + 0 +LINE + 5 +FC7 + 8 +0 + 62 + 0 + 10 +10878.109377 + 20 +3111.295206 + 30 +0.0 + 11 +10906.234377 + 21 +3160.009135 + 31 +0.0 + 0 +LINE + 5 +FC8 + 8 +0 + 62 + 0 + 10 +10823.622373 + 20 +2916.43945 + 30 +0.0 + 11 +10878.10938 + 21 +2916.43945 + 31 +0.0 + 0 +LINE + 5 +FC9 + 8 +0 + 62 + 0 + 10 +10878.109377 + 20 +2916.43949 + 30 +0.0 + 11 +10906.234377 + 21 +2965.153419 + 31 +0.0 + 0 +LINE + 5 +FCA + 8 +0 + 62 + 0 + 10 +10906.234344 + 20 +2965.153396 + 30 +0.0 + 11 +10878.109344 + 21 +3013.867325 + 31 +0.0 + 0 +POLYLINE + 5 +FCB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15EB + 8 +DETAILS + 10 +11079.35938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +15EC + 8 +DETAILS + 10 +11129.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +15ED + 8 +DETAILS + 0 +POLYLINE + 5 +FCF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15EE + 8 +DETAILS + 10 +10966.85938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +15EF + 8 +DETAILS + 10 +11029.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +15F0 + 8 +DETAILS + 0 +LINE + 5 +FD3 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3208.723022 + 30 +0.0 + 11 +11030.489283 + 21 +3208.723022 + 31 +0.0 + 0 +LINE + 5 +FD4 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3111.295165 + 30 +0.0 + 11 +11030.489283 + 21 +3111.295165 + 31 +0.0 + 0 +LINE + 5 +FD5 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3013.867307 + 30 +0.0 + 11 +11030.489283 + 21 +3013.867307 + 31 +0.0 + 0 +LINE + 5 +FD6 + 8 +0 + 62 + 0 + 10 +10990.609343 + 20 +3111.295182 + 30 +0.0 + 11 +10962.484343 + 21 +3160.009111 + 31 +0.0 + 0 +LINE + 5 +FD7 + 8 +0 + 62 + 0 + 10 +10990.609343 + 20 +3013.867324 + 30 +0.0 + 11 +10962.484343 + 21 +3062.581253 + 31 +0.0 + 0 +LINE + 5 +FD8 + 8 +0 + 62 + 0 + 10 +10962.484377 + 20 +3062.581277 + 30 +0.0 + 11 +10990.609377 + 21 +3111.295206 + 31 +0.0 + 0 +LINE + 5 +FD9 + 8 +0 + 62 + 0 + 10 +10962.484377 + 20 +3160.009135 + 30 +0.0 + 11 +10990.609377 + 21 +3208.723064 + 31 +0.0 + 0 +LINE + 5 +FDA + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +2916.43945 + 30 +0.0 + 11 +11030.489283 + 21 +2916.43945 + 31 +0.0 + 0 +LINE + 5 +FDB + 8 +0 + 62 + 0 + 10 +10990.609343 + 20 +2916.439466 + 30 +0.0 + 11 +10962.484343 + 21 +2965.153395 + 31 +0.0 + 0 +LINE + 5 +FDC + 8 +0 + 62 + 0 + 10 +10962.484376 + 20 +2965.153419 + 30 +0.0 + 11 +10990.609376 + 21 +3013.867348 + 31 +0.0 + 0 +LINE + 5 +FDD + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3549.720524 + 30 +0.0 + 11 +10962.48438 + 21 +3549.720524 + 31 +0.0 + 0 +LINE + 5 +FDE + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3452.292666 + 30 +0.0 + 11 +10962.48438 + 21 +3452.292666 + 31 +0.0 + 0 +LINE + 5 +FDF + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3354.864809 + 30 +0.0 + 11 +10962.48438 + 21 +3354.864809 + 31 +0.0 + 0 +LINE + 5 +FE0 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3257.436951 + 30 +0.0 + 11 +10962.48438 + 21 +3257.436951 + 31 +0.0 + 0 +LINE + 5 +FE1 + 8 +0 + 62 + 0 + 10 +10825.741454 + 20 +3501.006595 + 30 +0.0 + 11 +10878.10938 + 21 +3501.006595 + 31 +0.0 + 0 +LINE + 5 +FE2 + 8 +0 + 62 + 0 + 10 +10825.388274 + 20 +3403.578737 + 30 +0.0 + 11 +10878.10938 + 21 +3403.578737 + 31 +0.0 + 0 +LINE + 5 +FE3 + 8 +0 + 62 + 0 + 10 +10906.234343 + 20 +3452.292685 + 30 +0.0 + 11 +10878.109343 + 21 +3501.006614 + 31 +0.0 + 0 +LINE + 5 +FE4 + 8 +0 + 62 + 0 + 10 +10906.234343 + 20 +3354.864827 + 30 +0.0 + 11 +10878.109343 + 21 +3403.578756 + 31 +0.0 + 0 +LINE + 5 +FE5 + 8 +0 + 62 + 0 + 10 +10878.109377 + 20 +3403.578779 + 30 +0.0 + 11 +10906.234377 + 21 +3452.292708 + 31 +0.0 + 0 +LINE + 5 +FE6 + 8 +0 + 62 + 0 + 10 +10878.109378 + 20 +3501.006637 + 30 +0.0 + 11 +10906.234378 + 21 +3549.720566 + 31 +0.0 + 0 +LINE + 5 +FE7 + 8 +0 + 62 + 0 + 10 +10825.035094 + 20 +3306.15088 + 30 +0.0 + 11 +10878.10938 + 21 +3306.15088 + 31 +0.0 + 0 +LINE + 5 +FE8 + 8 +0 + 62 + 0 + 10 +10906.234343 + 20 +3257.436969 + 30 +0.0 + 11 +10878.109343 + 21 +3306.150898 + 31 +0.0 + 0 +LINE + 5 +FE9 + 8 +0 + 62 + 0 + 10 +10878.109377 + 20 +3306.150921 + 30 +0.0 + 11 +10906.234377 + 21 +3354.86485 + 31 +0.0 + 0 +LINE + 5 +FEA + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3501.006595 + 30 +0.0 + 11 +11030.489283 + 21 +3501.006595 + 31 +0.0 + 0 +LINE + 5 +FEB + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3403.578737 + 30 +0.0 + 11 +11030.489283 + 21 +3403.578737 + 31 +0.0 + 0 +LINE + 5 +FEC + 8 +0 + 62 + 0 + 10 +10990.609342 + 20 +3501.006613 + 30 +0.0 + 11 +10962.484342 + 21 +3549.720542 + 31 +0.0 + 0 +LINE + 5 +FED + 8 +0 + 62 + 0 + 10 +10990.609342 + 20 +3403.578756 + 30 +0.0 + 11 +10962.484342 + 21 +3452.292685 + 31 +0.0 + 0 +LINE + 5 +FEE + 8 +0 + 62 + 0 + 10 +10962.484377 + 20 +3354.86485 + 30 +0.0 + 11 +10990.609377 + 21 +3403.578779 + 31 +0.0 + 0 +LINE + 5 +FEF + 8 +0 + 62 + 0 + 10 +10962.484377 + 20 +3452.292708 + 30 +0.0 + 11 +10990.609377 + 21 +3501.006637 + 31 +0.0 + 0 +LINE + 5 +FF0 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3306.15088 + 30 +0.0 + 11 +11030.489283 + 21 +3306.15088 + 31 +0.0 + 0 +LINE + 5 +FF1 + 8 +0 + 62 + 0 + 10 +10962.484377 + 20 +3257.436992 + 30 +0.0 + 11 +10990.609377 + 21 +3306.150921 + 31 +0.0 + 0 +LINE + 5 +FF2 + 8 +0 + 62 + 0 + 10 +10990.609343 + 20 +3306.150898 + 30 +0.0 + 11 +10962.484343 + 21 +3354.864827 + 31 +0.0 + 0 +POLYLINE + 5 +FF3 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15F1 + 8 +DETAILS + 10 +10691.85938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +15F2 + 8 +DETAILS + 10 +10829.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +15F3 + 8 +DETAILS + 0 +POLYLINE + 5 +FF7 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15F4 + 8 +DETAILS + 10 +10504.35938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +15F5 + 8 +DETAILS + 10 +10579.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +15F6 + 8 +DETAILS + 0 +POLYLINE + 5 +FFB + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15F7 + 8 +DETAILS + 10 +10616.85938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +15F8 + 8 +DETAILS + 10 +10679.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +15F9 + 8 +DETAILS + 0 +POLYLINE + 5 +FFF + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15FA + 8 +DETAILS + 10 +10729.35938 + 20 +4108.787465 + 30 +0.0 + 0 +VERTEX + 5 +15FB + 8 +DETAILS + 10 +10729.35938 + 20 +3958.787465 + 30 +0.0 + 0 +SEQEND + 5 +15FC + 8 +DETAILS + 0 +LINE + 5 +1003 + 8 +0 + 62 + 0 + 10 +10990.609341 + 20 +3890.718045 + 30 +0.0 + 11 +10962.484341 + 21 +3939.431974 + 31 +0.0 + 0 +LINE + 5 +1004 + 8 +0 + 62 + 0 + 10 +10878.109378 + 20 +3890.718068 + 30 +0.0 + 11 +10906.234378 + 21 +3939.431997 + 31 +0.0 + 0 +LINE + 5 +1005 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3842.004096 + 30 +0.0 + 11 +10962.48438 + 21 +3842.004096 + 31 +0.0 + 0 +LINE + 5 +1006 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3744.576239 + 30 +0.0 + 11 +10962.48438 + 21 +3744.576239 + 31 +0.0 + 0 +LINE + 5 +1007 + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3647.148381 + 30 +0.0 + 11 +10962.48438 + 21 +3647.148381 + 31 +0.0 + 0 +LINE + 5 +1008 + 8 +0 + 62 + 0 + 10 +10827.154175 + 20 +3890.718025 + 30 +0.0 + 11 +10878.10938 + 21 +3890.718025 + 31 +0.0 + 0 +LINE + 5 +1009 + 8 +0 + 62 + 0 + 10 +10826.800995 + 20 +3793.290167 + 30 +0.0 + 11 +10878.10938 + 21 +3793.290167 + 31 +0.0 + 0 +LINE + 5 +100A + 8 +0 + 62 + 0 + 10 +10826.447815 + 20 +3695.86231 + 30 +0.0 + 11 +10878.10938 + 21 +3695.86231 + 31 +0.0 + 0 +LINE + 5 +100B + 8 +0 + 62 + 0 + 10 +10906.234342 + 20 +3842.004116 + 30 +0.0 + 11 +10878.109342 + 21 +3890.718045 + 31 +0.0 + 0 +LINE + 5 +100C + 8 +0 + 62 + 0 + 10 +10906.234342 + 20 +3744.576258 + 30 +0.0 + 11 +10878.109342 + 21 +3793.290187 + 31 +0.0 + 0 +LINE + 5 +100D + 8 +0 + 62 + 0 + 10 +10878.109378 + 20 +3695.862352 + 30 +0.0 + 11 +10906.234378 + 21 +3744.576281 + 31 +0.0 + 0 +LINE + 5 +100E + 8 +0 + 62 + 0 + 10 +10878.109378 + 20 +3793.29021 + 30 +0.0 + 11 +10906.234378 + 21 +3842.004139 + 31 +0.0 + 0 +LINE + 5 +100F + 8 +0 + 62 + 0 + 10 +10826.094635 + 20 +3598.434452 + 30 +0.0 + 11 +10878.10938 + 21 +3598.434452 + 31 +0.0 + 0 +LINE + 5 +1010 + 8 +0 + 62 + 0 + 10 +10878.109378 + 20 +3598.434495 + 30 +0.0 + 11 +10906.234378 + 21 +3647.148424 + 31 +0.0 + 0 +LINE + 5 +1011 + 8 +0 + 62 + 0 + 10 +10906.234342 + 20 +3647.1484 + 30 +0.0 + 11 +10878.109342 + 21 +3695.862329 + 31 +0.0 + 0 +LINE + 5 +1012 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3890.718025 + 30 +0.0 + 11 +11030.489283 + 21 +3890.718025 + 31 +0.0 + 0 +LINE + 5 +1013 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3793.290167 + 30 +0.0 + 11 +11030.489283 + 21 +3793.290167 + 31 +0.0 + 0 +LINE + 5 +1014 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3695.86231 + 30 +0.0 + 11 +11030.489283 + 21 +3695.86231 + 31 +0.0 + 0 +LINE + 5 +1015 + 8 +0 + 62 + 0 + 10 +10990.609342 + 20 +3793.290187 + 30 +0.0 + 11 +10962.484342 + 21 +3842.004116 + 31 +0.0 + 0 +LINE + 5 +1016 + 8 +0 + 62 + 0 + 10 +10990.609342 + 20 +3695.862329 + 30 +0.0 + 11 +10962.484342 + 21 +3744.576258 + 31 +0.0 + 0 +LINE + 5 +1017 + 8 +0 + 62 + 0 + 10 +10962.484378 + 20 +3744.576282 + 30 +0.0 + 11 +10990.609378 + 21 +3793.29021 + 31 +0.0 + 0 +LINE + 5 +1018 + 8 +0 + 62 + 0 + 10 +10962.484378 + 20 +3842.004139 + 30 +0.0 + 11 +10990.609378 + 21 +3890.718068 + 31 +0.0 + 0 +LINE + 5 +1019 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3598.434452 + 30 +0.0 + 11 +11030.489283 + 21 +3598.434452 + 31 +0.0 + 0 +LINE + 5 +101A + 8 +0 + 62 + 0 + 10 +10990.609342 + 20 +3598.434471 + 30 +0.0 + 11 +10962.484342 + 21 +3647.1484 + 31 +0.0 + 0 +LINE + 5 +101B + 8 +0 + 62 + 0 + 10 +10962.484378 + 20 +3647.148424 + 30 +0.0 + 11 +10990.609378 + 21 +3695.862353 + 31 +0.0 + 0 +LINE + 5 +101C + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +4231.715526 + 30 +0.0 + 11 +10962.48438 + 21 +4231.715526 + 31 +0.0 + 0 +LINE + 5 +101D + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +4134.287669 + 30 +0.0 + 11 +10962.48438 + 21 +4134.287669 + 31 +0.0 + 0 +LINE + 5 +101E + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +4036.859811 + 30 +0.0 + 11 +10962.48438 + 21 +4036.859811 + 31 +0.0 + 0 +LINE + 5 +101F + 8 +0 + 62 + 0 + 10 +10906.23438 + 20 +3939.431954 + 30 +0.0 + 11 +10962.48438 + 21 +3939.431954 + 31 +0.0 + 0 +POLYLINE + 5 +1020 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +15FD + 8 +DETAILS + 10 +10866.85938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +15FE + 8 +DETAILS + 10 +10929.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +15FF + 8 +DETAILS + 0 +LINE + 5 +1024 + 8 +0 + 62 + 0 + 10 +10828.213716 + 20 +4183.001597 + 30 +0.0 + 11 +10878.10938 + 21 +4183.001597 + 31 +0.0 + 0 +LINE + 5 +1025 + 8 +0 + 62 + 0 + 10 +10827.860536 + 20 +4085.57374 + 30 +0.0 + 11 +10878.10938 + 21 +4085.57374 + 31 +0.0 + 0 +LINE + 5 +1026 + 8 +0 + 62 + 0 + 10 +10906.234341 + 20 +4134.287689 + 30 +0.0 + 11 +10878.109341 + 21 +4183.001618 + 31 +0.0 + 0 +LINE + 5 +1027 + 8 +0 + 62 + 0 + 10 +10906.234341 + 20 +4036.859832 + 30 +0.0 + 11 +10878.109341 + 21 +4085.573761 + 31 +0.0 + 0 +LINE + 5 +1028 + 8 +0 + 62 + 0 + 10 +10878.109379 + 20 +4085.573784 + 30 +0.0 + 11 +10906.234379 + 21 +4134.287713 + 31 +0.0 + 0 +LINE + 5 +1029 + 8 +0 + 62 + 0 + 10 +10878.109379 + 20 +4183.001642 + 30 +0.0 + 11 +10906.234379 + 21 +4231.715571 + 31 +0.0 + 0 +LINE + 5 +102A + 8 +0 + 62 + 0 + 10 +10827.507355 + 20 +3988.145882 + 30 +0.0 + 11 +10878.10938 + 21 +3988.145882 + 31 +0.0 + 0 +LINE + 5 +102B + 8 +0 + 62 + 0 + 10 +10906.234342 + 20 +3939.431974 + 30 +0.0 + 11 +10878.109342 + 21 +3988.145903 + 31 +0.0 + 0 +POLYLINE + 5 +102C + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1600 + 8 +DETAILS + 10 +10805.976103 + 20 +4071.227005 + 30 +0.0 + 0 +VERTEX + 5 +1601 + 8 +DETAILS + 10 +10805.976103 + 20 +3996.227005 + 30 +0.0 + 0 +SEQEND + 5 +1602 + 8 +DETAILS + 0 +LINE + 5 +1030 + 8 +0 + 62 + 0 + 10 +10878.109379 + 20 +3988.145926 + 30 +0.0 + 11 +10906.234379 + 21 +4036.859855 + 31 +0.0 + 0 +LINE + 5 +1031 + 8 +0 + 62 + 0 + 10 +11029.35938 + 20 +4206.4523 + 30 +0.0 + 11 +11035.767212 + 21 +4212.860132 + 31 +0.0 + 0 +POLYLINE + 5 +1032 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1603 + 8 +DETAILS + 10 +10966.85938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +1604 + 8 +DETAILS + 10 +11029.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +1605 + 8 +DETAILS + 0 +POLYLINE + 5 +1036 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1606 + 8 +DETAILS + 10 +11079.35938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +1607 + 8 +DETAILS + 10 +11129.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +1608 + 8 +DETAILS + 0 +LINE + 5 +103A + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +4183.001597 + 30 +0.0 + 11 +11030.489283 + 21 +4183.001597 + 31 +0.0 + 0 +LINE + 5 +103B + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +4085.57374 + 30 +0.0 + 11 +11030.489283 + 21 +4085.57374 + 31 +0.0 + 0 +LINE + 5 +103C + 8 +0 + 62 + 0 + 10 +10990.609341 + 20 +4183.001618 + 30 +0.0 + 11 +10962.484341 + 21 +4231.715547 + 31 +0.0 + 0 +LINE + 5 +103D + 8 +0 + 62 + 0 + 10 +10990.609341 + 20 +4085.57376 + 30 +0.0 + 11 +10962.484341 + 21 +4134.287689 + 31 +0.0 + 0 +LINE + 5 +103E + 8 +0 + 62 + 0 + 10 +10962.484378 + 20 +4036.859855 + 30 +0.0 + 11 +10990.609378 + 21 +4085.573784 + 31 +0.0 + 0 +LINE + 5 +103F + 8 +0 + 62 + 0 + 10 +10962.484379 + 20 +4134.287713 + 30 +0.0 + 11 +10990.609379 + 21 +4183.001642 + 31 +0.0 + 0 +LINE + 5 +1040 + 8 +0 + 62 + 0 + 10 +10990.60938 + 20 +3988.145882 + 30 +0.0 + 11 +11030.489283 + 21 +3988.145882 + 31 +0.0 + 0 +LINE + 5 +1041 + 8 +0 + 62 + 0 + 10 +10962.484378 + 20 +3939.431997 + 30 +0.0 + 11 +10990.609378 + 21 +3988.145926 + 31 +0.0 + 0 +LINE + 5 +1042 + 8 +0 + 62 + 0 + 10 +10990.609341 + 20 +3988.145902 + 30 +0.0 + 11 +10962.484341 + 21 +4036.859831 + 31 +0.0 + 0 +DIMENSION + 5 +1043 + 8 +BEMASSUNG + 2 +*D14 + 10 +11976.85938 + 20 +1810.360132 + 30 +0.0 + 11 +12026.85938 + 21 +1897.860132 + 31 +0.0 + 12 +4746.85938 + 22 +-5754.639868 + 32 +0.0 + 70 + 128 + 1 +1 + 13 +11941.85938 + 23 +2575.360132 + 33 +0.0 + 14 +11976.85938 + 24 +2565.360132 + 34 +0.0 + 0 +TEXT + 5 +1044 + 8 +DRAHTANKER + 10 +11576.85938 + 20 +1915.360132 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +1045 + 8 +DRAHTANKER + 10 +12051.85938 + 20 +1915.360132 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +POLYLINE + 5 +1046 + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1609 + 8 +DETAILS + 10 +11179.35938 + 20 +3083.787465 + 30 +0.0 + 0 +VERTEX + 5 +160A + 8 +DETAILS + 10 +11254.35938 + 20 +3083.787465 + 30 +0.0 + 0 +SEQEND + 5 +160B + 8 +DETAILS + 0 +POLYLINE + 5 +104A + 8 +DETAILS + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +160C + 8 +DETAILS + 10 +11179.35938 + 20 +4033.787465 + 30 +0.0 + 0 +VERTEX + 5 +160D + 8 +DETAILS + 10 +11254.35938 + 20 +4033.787465 + 30 +0.0 + 0 +SEQEND + 5 +160E + 8 +DETAILS + 0 +DIMENSION + 5 +104E + 8 +DRAHTANKER + 2 +*D7 + 10 +10681.85938 + 20 +1810.360132 + 30 +0.0 + 11 +10534.35938 + 21 +1897.860132 + 31 +0.0 + 12 +4746.85938 + 22 +-5754.639868 + 32 +0.0 + 1 +11 + 13 +10386.85938 + 23 +2575.360132 + 33 +0.0 + 14 +10681.85938 + 24 +2575.360132 + 34 +0.0 + 0 +POLYLINE + 5 +104F + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +160F + 8 +SCHNITTKANTEN + 10 +10226.85938 + 20 +2555.360132 + 30 +0.0 + 0 +VERTEX + 5 +1610 + 8 +SCHNITTKANTEN + 10 +12126.85938 + 20 +2555.360132 + 30 +0.0 + 0 +SEQEND + 5 +1611 + 8 +SCHNITTKANTEN + 0 +POLYLINE + 5 +1053 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1612 + 8 +HOLZ + 10 +11961.85938 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +1613 + 8 +HOLZ + 10 +12161.85938 + 20 +4212.860132 + 30 +0.0 + 0 +VERTEX + 5 +1614 + 8 +HOLZ + 10 +12161.85938 + 20 +3762.860132 + 30 +0.0 + 0 +VERTEX + 5 +1615 + 8 +HOLZ + 10 +11961.85938 + 20 +3762.860132 + 30 +0.0 + 0 +SEQEND + 5 +1616 + 8 +HOLZ + 0 +LINE + 5 +1059 + 8 +0 + 62 + 0 + 10 +11966.832937 + 20 +3340.729186 + 30 +0.0 + 11 +11966.832937 + 21 +3340.729186 + 31 +0.0 + 0 +LINE + 5 +105A + 8 +0 + 62 + 0 + 10 +11965.258103 + 20 +3388.89978 + 30 +0.0 + 11 +11965.258103 + 21 +3388.89978 + 31 +0.0 + 0 +LINE + 5 +105B + 8 +0 + 62 + 0 + 10 +11963.683269 + 20 +3437.070374 + 30 +0.0 + 11 +11963.683269 + 21 +3437.070374 + 31 +0.0 + 0 +LINE + 5 +105C + 8 +0 + 62 + 0 + 10 +11962.108435 + 20 +3485.240968 + 30 +0.0 + 11 +11962.108435 + 21 +3485.240968 + 31 +0.0 + 0 +LINE + 5 +105D + 8 +0 + 62 + 0 + 10 +11960.533601 + 20 +3533.411563 + 30 +0.0 + 11 +11960.533601 + 21 +3533.411563 + 31 +0.0 + 0 +LINE + 5 +105E + 8 +0 + 62 + 0 + 10 +11958.958767 + 20 +3581.582157 + 30 +0.0 + 11 +11958.958767 + 21 +3581.582157 + 31 +0.0 + 0 +LINE + 5 +105F + 8 +0 + 62 + 0 + 10 +11957.383933 + 20 +3629.752751 + 30 +0.0 + 11 +11957.383933 + 21 +3629.752751 + 31 +0.0 + 0 +LINE + 5 +1060 + 8 +0 + 62 + 0 + 10 +11955.809099 + 20 +3677.923345 + 30 +0.0 + 11 +11955.809099 + 21 +3677.923345 + 31 +0.0 + 0 +LINE + 5 +1061 + 8 +0 + 62 + 0 + 10 +11954.234265 + 20 +3726.093939 + 30 +0.0 + 11 +11954.234265 + 21 +3726.093939 + 31 +0.0 + 0 +LINE + 5 +1062 + 8 +0 + 62 + 0 + 10 +11968.407771 + 20 +3292.558591 + 30 +0.0 + 11 +11968.407771 + 21 +3292.558591 + 31 +0.0 + 0 +LINE + 5 +1063 + 8 +0 + 62 + 0 + 10 +11969.982604 + 20 +3244.387997 + 30 +0.0 + 11 +11969.982604 + 21 +3244.387997 + 31 +0.0 + 0 +LINE + 5 +1064 + 8 +0 + 62 + 0 + 10 +11971.557438 + 20 +3196.217403 + 30 +0.0 + 11 +11971.557438 + 21 +3196.217403 + 31 +0.0 + 0 +LINE + 5 +1065 + 8 +0 + 62 + 0 + 10 +11942.984845 + 20 +3124.913874 + 30 +0.0 + 11 +11942.984845 + 21 +3124.913874 + 31 +0.0 + 0 +LINE + 5 +1066 + 8 +0 + 62 + 0 + 10 +11973.132272 + 20 +3148.046809 + 30 +0.0 + 11 +11973.132272 + 21 +3148.046809 + 31 +0.0 + 0 +LINE + 5 +1067 + 8 +0 + 62 + 0 + 10 +11944.559679 + 20 +3076.74328 + 30 +0.0 + 11 +11944.559679 + 21 +3076.74328 + 31 +0.0 + 0 +LINE + 5 +1068 + 8 +0 + 62 + 0 + 10 +11974.707106 + 20 +3099.876215 + 30 +0.0 + 11 +11974.707106 + 21 +3099.876215 + 31 +0.0 + 0 +LINE + 5 +1069 + 8 +0 + 62 + 0 + 10 +11946.134513 + 20 +3028.572686 + 30 +0.0 + 11 +11946.134513 + 21 +3028.572686 + 31 +0.0 + 0 +LINE + 5 +106A + 8 +0 + 62 + 0 + 10 +11976.28194 + 20 +3051.70562 + 30 +0.0 + 11 +11976.28194 + 21 +3051.70562 + 31 +0.0 + 0 +LINE + 5 +106B + 8 +0 + 62 + 0 + 10 +11947.709347 + 20 +2980.402092 + 30 +0.0 + 11 +11947.709347 + 21 +2980.402092 + 31 +0.0 + 0 +LINE + 5 +106C + 8 +0 + 62 + 0 + 10 +11977.856774 + 20 +3003.535026 + 30 +0.0 + 11 +11977.856774 + 21 +3003.535026 + 31 +0.0 + 0 +LINE + 5 +106D + 8 +0 + 62 + 0 + 10 +11949.284181 + 20 +2932.231498 + 30 +0.0 + 11 +11949.284181 + 21 +2932.231498 + 31 +0.0 + 0 +LINE + 5 +106E + 8 +0 + 62 + 0 + 10 +11950.859015 + 20 +2884.060903 + 30 +0.0 + 11 +11950.859015 + 21 +2884.060903 + 31 +0.0 + 0 +LINE + 5 +106F + 8 +0 + 62 + 0 + 10 +11952.433849 + 20 +2835.890309 + 30 +0.0 + 11 +11952.433849 + 21 +2835.890309 + 31 +0.0 + 0 +LINE + 5 +1070 + 8 +0 + 62 + 0 + 10 +11954.008683 + 20 +2787.719715 + 30 +0.0 + 11 +11954.008683 + 21 +2787.719715 + 31 +0.0 + 0 +LINE + 5 +1071 + 8 +0 + 62 + 0 + 10 +11955.583517 + 20 +2739.549121 + 30 +0.0 + 11 +11955.583517 + 21 +2739.549121 + 31 +0.0 + 0 +LINE + 5 +1072 + 8 +0 + 62 + 0 + 10 +11957.158351 + 20 +2691.378526 + 30 +0.0 + 11 +11957.158351 + 21 +2691.378526 + 31 +0.0 + 0 +LINE + 5 +1073 + 8 +0 + 62 + 0 + 10 +11958.733185 + 20 +2643.207932 + 30 +0.0 + 11 +11958.733185 + 21 +2643.207932 + 31 +0.0 + 0 +LINE + 5 +1074 + 8 +0 + 62 + 0 + 10 +11960.308019 + 20 +2595.037338 + 30 +0.0 + 11 +11960.308019 + 21 +2595.037338 + 31 +0.0 + 0 +LINE + 5 +1075 + 8 +0 + 62 + 0 + 10 +11957.044301 + 20 +3350.423192 + 30 +0.0 + 11 +11957.044301 + 21 +3350.423192 + 31 +0.0 + 0 +LINE + 5 +1076 + 8 +0 + 62 + 0 + 10 +11967.951385 + 20 +3416.5879 + 30 +0.0 + 11 +11967.951385 + 21 +3416.5879 + 31 +0.0 + 0 +LINE + 5 +1077 + 8 +0 + 62 + 0 + 10 +11944.901482 + 20 +3478.282087 + 30 +0.0 + 11 +11944.901482 + 21 +3478.282087 + 31 +0.0 + 0 +LINE + 5 +1078 + 8 +0 + 62 + 0 + 10 +11957.914196 + 20 +3479.995243 + 30 +0.0 + 11 +11957.914196 + 21 +3479.995243 + 31 +0.0 + 0 +LINE + 5 +1079 + 8 +0 + 62 + 0 + 10 +11978.238816 + 20 +3482.67103 + 30 +0.0 + 11 +11978.238816 + 21 +3482.67103 + 31 +0.0 + 0 +LINE + 5 +107A + 8 +0 + 62 + 0 + 10 +11955.188914 + 20 +3544.365216 + 30 +0.0 + 11 +11955.188914 + 21 +3544.365216 + 31 +0.0 + 0 +LINE + 5 +107B + 8 +0 + 62 + 0 + 10 +11966.095998 + 20 +3610.529925 + 30 +0.0 + 11 +11966.095998 + 21 +3610.529925 + 31 +0.0 + 0 +LINE + 5 +107C + 8 +0 + 62 + 0 + 10 +11979.108712 + 20 +3612.243081 + 30 +0.0 + 11 +11979.108712 + 21 +3612.243081 + 31 +0.0 + 0 +LINE + 5 +107D + 8 +0 + 62 + 0 + 10 +11943.046095 + 20 +3672.224111 + 30 +0.0 + 11 +11943.046095 + 21 +3672.224111 + 31 +0.0 + 0 +LINE + 5 +107E + 8 +0 + 62 + 0 + 10 +11956.058809 + 20 +3673.937267 + 30 +0.0 + 11 +11956.058809 + 21 +3673.937267 + 31 +0.0 + 0 +LINE + 5 +107F + 8 +0 + 62 + 0 + 10 +11976.383429 + 20 +3676.613054 + 30 +0.0 + 11 +11976.383429 + 21 +3676.613054 + 31 +0.0 + 0 +LINE + 5 +1080 + 8 +0 + 62 + 0 + 10 +11953.333527 + 20 +3738.307241 + 30 +0.0 + 11 +11953.333527 + 21 +3738.307241 + 31 +0.0 + 0 +LINE + 5 +1081 + 8 +0 + 62 + 0 + 10 +11946.756869 + 20 +3284.340062 + 30 +0.0 + 11 +11946.756869 + 21 +3284.340062 + 31 +0.0 + 0 +LINE + 5 +1082 + 8 +0 + 62 + 0 + 10 +11959.769583 + 20 +3286.053219 + 30 +0.0 + 11 +11959.769583 + 21 +3286.053219 + 31 +0.0 + 0 +LINE + 5 +1083 + 8 +0 + 62 + 0 + 10 +11969.806772 + 20 +3222.645876 + 30 +0.0 + 11 +11969.806772 + 21 +3222.645876 + 31 +0.0 + 0 +LINE + 5 +1084 + 8 +0 + 62 + 0 + 10 +11958.899688 + 20 +3156.481168 + 30 +0.0 + 11 +11958.899688 + 21 +3156.481168 + 31 +0.0 + 0 +LINE + 5 +1085 + 8 +0 + 62 + 0 + 10 +11948.612257 + 20 +3090.398038 + 30 +0.0 + 11 +11948.612257 + 21 +3090.398038 + 31 +0.0 + 0 +LINE + 5 +1086 + 8 +0 + 62 + 0 + 10 +11961.62497 + 20 +3092.111194 + 30 +0.0 + 11 +11961.62497 + 21 +3092.111194 + 31 +0.0 + 0 +LINE + 5 +1087 + 8 +0 + 62 + 0 + 10 +11971.662159 + 20 +3028.703852 + 30 +0.0 + 11 +11971.662159 + 21 +3028.703852 + 31 +0.0 + 0 +LINE + 5 +1088 + 8 +0 + 62 + 0 + 10 +11960.755075 + 20 +2962.539143 + 30 +0.0 + 11 +11960.755075 + 21 +2962.539143 + 31 +0.0 + 0 +LINE + 5 +1089 + 8 +0 + 62 + 0 + 10 +11950.467644 + 20 +2896.456014 + 30 +0.0 + 11 +11950.467644 + 21 +2896.456014 + 31 +0.0 + 0 +LINE + 5 +108A + 8 +0 + 62 + 0 + 10 +11963.480357 + 20 +2898.16917 + 30 +0.0 + 11 +11963.480357 + 21 +2898.16917 + 31 +0.0 + 0 +LINE + 5 +108B + 8 +0 + 62 + 0 + 10 +11973.517546 + 20 +2834.761827 + 30 +0.0 + 11 +11973.517546 + 21 +2834.761827 + 31 +0.0 + 0 +LINE + 5 +108C + 8 +0 + 62 + 0 + 10 +11942.285842 + 20 +2765.921332 + 30 +0.0 + 11 +11942.285842 + 21 +2765.921332 + 31 +0.0 + 0 +LINE + 5 +108D + 8 +0 + 62 + 0 + 10 +11962.610462 + 20 +2768.597119 + 30 +0.0 + 11 +11962.610462 + 21 +2768.597119 + 31 +0.0 + 0 +LINE + 5 +108E + 8 +0 + 62 + 0 + 10 +11952.323031 + 20 +2702.513989 + 30 +0.0 + 11 +11952.323031 + 21 +2702.513989 + 31 +0.0 + 0 +LINE + 5 +108F + 8 +0 + 62 + 0 + 10 +11965.335744 + 20 +2704.227146 + 30 +0.0 + 11 +11965.335744 + 21 +2704.227146 + 31 +0.0 + 0 +LINE + 5 +1090 + 8 +0 + 62 + 0 + 10 +11975.372933 + 20 +2640.819803 + 30 +0.0 + 11 +11975.372933 + 21 +2640.819803 + 31 +0.0 + 0 +LINE + 5 +1091 + 8 +0 + 62 + 0 + 10 +11944.141229 + 20 +2571.979308 + 30 +0.0 + 11 +11944.141229 + 21 +2571.979308 + 31 +0.0 + 0 +LINE + 5 +1092 + 8 +0 + 62 + 0 + 10 +11964.465849 + 20 +2574.655095 + 30 +0.0 + 11 +11964.465849 + 21 +2574.655095 + 31 +0.0 + 0 +LINE + 5 +1093 + 8 +0 + 62 + 0 + 10 +11967.080459 + 20 +3403.866681 + 30 +0.0 + 11 +11967.080459 + 21 +3403.866681 + 31 +0.0 + 0 +LINE + 5 +1094 + 8 +0 + 62 + 0 + 10 +11977.622852 + 20 +3397.150436 + 30 +0.0 + 11 +11977.622852 + 21 +3397.150436 + 31 +0.0 + 0 +LINE + 5 +1095 + 8 +0 + 62 + 0 + 10 +11946.88975 + 20 +3466.469237 + 30 +0.0 + 11 +11946.88975 + 21 +3466.469237 + 31 +0.0 + 0 +LINE + 5 +1096 + 8 +0 + 62 + 0 + 10 +11957.432143 + 20 +3459.752991 + 30 +0.0 + 11 +11957.432143 + 21 +3459.752991 + 31 +0.0 + 0 +LINE + 5 +1097 + 8 +0 + 62 + 0 + 10 +11975.194049 + 20 +3498.177065 + 30 +0.0 + 11 +11975.194049 + 21 +3498.177065 + 31 +0.0 + 0 +LINE + 5 +1098 + 8 +0 + 62 + 0 + 10 +11955.00334 + 20 +3560.779621 + 30 +0.0 + 11 +11955.00334 + 21 +3560.779621 + 31 +0.0 + 0 +LINE + 5 +1099 + 8 +0 + 62 + 0 + 10 +11964.171169 + 20 +3654.41838 + 30 +0.0 + 11 +11964.171169 + 21 +3654.41838 + 31 +0.0 + 0 +LINE + 5 +109A + 8 +0 + 62 + 0 + 10 +11974.713562 + 20 +3647.702135 + 30 +0.0 + 11 +11974.713562 + 21 +3647.702135 + 31 +0.0 + 0 +LINE + 5 +109B + 8 +0 + 62 + 0 + 10 +11943.98046 + 20 +3717.020936 + 30 +0.0 + 11 +11943.98046 + 21 +3717.020936 + 31 +0.0 + 0 +LINE + 5 +109C + 8 +0 + 62 + 0 + 10 +11954.522853 + 20 +3710.304691 + 30 +0.0 + 11 +11954.522853 + 21 +3710.304691 + 31 +0.0 + 0 +LINE + 5 +109D + 8 +0 + 62 + 0 + 10 +11972.284759 + 20 +3748.728765 + 30 +0.0 + 11 +11972.284759 + 21 +3748.728765 + 31 +0.0 + 0 +LINE + 5 +109E + 8 +0 + 62 + 0 + 10 +11957.912629 + 20 +3310.227921 + 30 +0.0 + 11 +11957.912629 + 21 +3310.227921 + 31 +0.0 + 0 +LINE + 5 +109F + 8 +0 + 62 + 0 + 10 +11978.103338 + 20 +3247.625365 + 30 +0.0 + 11 +11978.103338 + 21 +3247.625365 + 31 +0.0 + 0 +LINE + 5 +10A0 + 8 +0 + 62 + 0 + 10 +11949.799039 + 20 +3215.917537 + 30 +0.0 + 11 +11949.799039 + 21 +3215.917537 + 31 +0.0 + 0 +LINE + 5 +10A1 + 8 +0 + 62 + 0 + 10 +11960.341432 + 20 +3209.201292 + 30 +0.0 + 11 +11960.341432 + 21 +3209.201292 + 31 +0.0 + 0 +LINE + 5 +10A2 + 8 +0 + 62 + 0 + 10 +11969.989748 + 20 +3153.314981 + 30 +0.0 + 11 +11969.989748 + 21 +3153.314981 + 31 +0.0 + 0 +LINE + 5 +10A3 + 8 +0 + 62 + 0 + 10 +11960.821919 + 20 +3059.676222 + 30 +0.0 + 11 +11960.821919 + 21 +3059.676222 + 31 +0.0 + 0 +LINE + 5 +10A4 + 8 +0 + 62 + 0 + 10 +11943.060013 + 20 +3021.252148 + 30 +0.0 + 11 +11943.060013 + 21 +3021.252148 + 31 +0.0 + 0 +LINE + 5 +10A5 + 8 +0 + 62 + 0 + 10 +11952.708329 + 20 +2965.365837 + 30 +0.0 + 11 +11952.708329 + 21 +2965.365837 + 31 +0.0 + 0 +LINE + 5 +10A6 + 8 +0 + 62 + 0 + 10 +11963.250722 + 20 +2958.649592 + 30 +0.0 + 11 +11963.250722 + 21 +2958.649592 + 31 +0.0 + 0 +LINE + 5 +10A7 + 8 +0 + 62 + 0 + 10 +11972.899038 + 20 +2902.763282 + 30 +0.0 + 11 +11972.899038 + 21 +2902.763282 + 31 +0.0 + 0 +LINE + 5 +10A8 + 8 +0 + 62 + 0 + 10 +11943.5405 + 20 +2871.727078 + 30 +0.0 + 11 +11943.5405 + 21 +2871.727078 + 31 +0.0 + 0 +LINE + 5 +10A9 + 8 +0 + 62 + 0 + 10 +11963.731209 + 20 +2809.124522 + 30 +0.0 + 11 +11963.731209 + 21 +2809.124522 + 31 +0.0 + 0 +LINE + 5 +10AA + 8 +0 + 62 + 0 + 10 +11945.969303 + 20 +2770.700449 + 30 +0.0 + 11 +11945.969303 + 21 +2770.700449 + 31 +0.0 + 0 +LINE + 5 +10AB + 8 +0 + 62 + 0 + 10 +11955.617618 + 20 +2714.814138 + 30 +0.0 + 11 +11955.617618 + 21 +2714.814138 + 31 +0.0 + 0 +LINE + 5 +10AC + 8 +0 + 62 + 0 + 10 +11966.160012 + 20 +2708.097893 + 30 +0.0 + 11 +11966.160012 + 21 +2708.097893 + 31 +0.0 + 0 +LINE + 5 +10AD + 8 +0 + 62 + 0 + 10 +11975.808328 + 20 +2652.211582 + 30 +0.0 + 11 +11975.808328 + 21 +2652.211582 + 31 +0.0 + 0 +LINE + 5 +10AE + 8 +0 + 62 + 0 + 10 +11946.449789 + 20 +2621.175378 + 30 +0.0 + 11 +11946.449789 + 21 +2621.175378 + 31 +0.0 + 0 +LINE + 5 +10AF + 8 +0 + 62 + 0 + 10 +11966.640498 + 20 +2558.572822 + 30 +0.0 + 11 +11966.640498 + 21 +2558.572822 + 31 +0.0 + 0 +LINE + 5 +10B0 + 8 +0 + 62 + 0 + 10 +11953.757045 + 20 +3322.902296 + 30 +0.0 + 11 +11953.757045 + 21 +3322.902296 + 31 +0.0 + 0 +LINE + 5 +10B1 + 8 +0 + 62 + 0 + 10 +11978.640155 + 20 +3300.101127 + 30 +0.0 + 11 +11978.640155 + 21 +3300.101127 + 31 +0.0 + 0 +LINE + 5 +10B2 + 8 +0 + 62 + 0 + 10 +11951.311771 + 20 +3415.950055 + 30 +0.0 + 11 +11951.311771 + 21 +3415.950055 + 31 +0.0 + 0 +LINE + 5 +10B3 + 8 +0 + 62 + 0 + 10 +11955.919754 + 20 +3411.727616 + 30 +0.0 + 11 +11955.919754 + 21 +3411.727616 + 31 +0.0 + 0 +LINE + 5 +10B4 + 8 +0 + 62 + 0 + 10 +11977.669435 + 20 +3391.797705 + 30 +0.0 + 11 +11977.669435 + 21 +3391.797705 + 31 +0.0 + 0 +LINE + 5 +10B5 + 8 +0 + 62 + 0 + 10 +11950.341051 + 20 +3507.646633 + 30 +0.0 + 11 +11950.341051 + 21 +3507.646633 + 31 +0.0 + 0 +LINE + 5 +10B6 + 8 +0 + 62 + 0 + 10 +11975.224161 + 20 +3484.845463 + 30 +0.0 + 11 +11975.224161 + 21 +3484.845463 + 31 +0.0 + 0 +LINE + 5 +10B7 + 8 +0 + 62 + 0 + 10 +11947.895776 + 20 +3600.694391 + 30 +0.0 + 11 +11947.895776 + 21 +3600.694391 + 31 +0.0 + 0 +LINE + 5 +10B8 + 8 +0 + 62 + 0 + 10 +11952.503759 + 20 +3596.471953 + 30 +0.0 + 11 +11952.503759 + 21 +3596.471953 + 31 +0.0 + 0 +LINE + 5 +10B9 + 8 +0 + 62 + 0 + 10 +11974.253441 + 20 +3576.542041 + 30 +0.0 + 11 +11974.253441 + 21 +3576.542041 + 31 +0.0 + 0 +LINE + 5 +10BA + 8 +0 + 62 + 0 + 10 +11946.925056 + 20 +3692.390969 + 30 +0.0 + 11 +11946.925056 + 21 +3692.390969 + 31 +0.0 + 0 +LINE + 5 +10BB + 8 +0 + 62 + 0 + 10 +11971.808166 + 20 +3669.5898 + 30 +0.0 + 11 +11971.808166 + 21 +3669.5898 + 31 +0.0 + 0 +LINE + 5 +10BC + 8 +0 + 62 + 0 + 10 +11976.41615 + 20 +3665.367361 + 30 +0.0 + 11 +11976.41615 + 21 +3665.367361 + 31 +0.0 + 0 +LINE + 5 +10BD + 8 +0 + 62 + 0 + 10 +11954.727765 + 20 +3231.205718 + 30 +0.0 + 11 +11954.727765 + 21 +3231.205718 + 31 +0.0 + 0 +LINE + 5 +10BE + 8 +0 + 62 + 0 + 10 +11959.335748 + 20 +3226.983279 + 30 +0.0 + 11 +11959.335748 + 21 +3226.983279 + 31 +0.0 + 0 +LINE + 5 +10BF + 8 +0 + 62 + 0 + 10 +11957.17304 + 20 +3138.15796 + 30 +0.0 + 11 +11957.17304 + 21 +3138.15796 + 31 +0.0 + 0 +LINE + 5 +10C0 + 8 +0 + 62 + 0 + 10 +11958.14376 + 20 +3046.461382 + 30 +0.0 + 11 +11958.14376 + 21 +3046.461382 + 31 +0.0 + 0 +LINE + 5 +10C1 + 8 +0 + 62 + 0 + 10 +11962.751743 + 20 +3042.238943 + 30 +0.0 + 11 +11962.751743 + 21 +3042.238943 + 31 +0.0 + 0 +LINE + 5 +10C2 + 8 +0 + 62 + 0 + 10 +11960.589034 + 20 +2953.413623 + 30 +0.0 + 11 +11960.589034 + 21 +2953.413623 + 31 +0.0 + 0 +LINE + 5 +10C3 + 8 +0 + 62 + 0 + 10 +11961.559754 + 20 +2861.717045 + 30 +0.0 + 11 +11961.559754 + 21 +2861.717045 + 31 +0.0 + 0 +LINE + 5 +10C4 + 8 +0 + 62 + 0 + 10 +11966.167737 + 20 +2857.494606 + 30 +0.0 + 11 +11966.167737 + 21 +2857.494606 + 31 +0.0 + 0 +LINE + 5 +10C5 + 8 +0 + 62 + 0 + 10 +11942.255347 + 20 +2788.599198 + 30 +0.0 + 11 +11942.255347 + 21 +2788.599198 + 31 +0.0 + 0 +LINE + 5 +10C6 + 8 +0 + 62 + 0 + 10 +11964.005029 + 20 +2768.669287 + 30 +0.0 + 11 +11964.005029 + 21 +2768.669287 + 31 +0.0 + 0 +LINE + 5 +10C7 + 8 +0 + 62 + 0 + 10 +11964.975749 + 20 +2676.972709 + 30 +0.0 + 11 +11964.975749 + 21 +2676.972709 + 31 +0.0 + 0 +LINE + 5 +10C8 + 8 +0 + 62 + 0 + 10 +11969.583732 + 20 +2672.75027 + 30 +0.0 + 11 +11969.583732 + 21 +2672.75027 + 31 +0.0 + 0 +LINE + 5 +10C9 + 8 +0 + 62 + 0 + 10 +11945.671342 + 20 +2603.854861 + 30 +0.0 + 11 +11945.671342 + 21 +2603.854861 + 31 +0.0 + 0 +LINE + 5 +10CA + 8 +0 + 62 + 0 + 10 +11967.421023 + 20 +2583.92495 + 30 +0.0 + 11 +11967.421023 + 21 +2583.92495 + 31 +0.0 + 0 +POLYLINE + 5 +10CB + 8 +MAUERWERK + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1617 + 8 +MAUERWERK + 10 +11979.35938 + 20 +3762.860132 + 30 +0.0 + 0 +VERTEX + 5 +1618 + 8 +MAUERWERK + 10 +11979.35938 + 20 +2555.360132 + 30 +0.0 + 0 +SEQEND + 5 +1619 + 8 +MAUERWERK + 0 +POLYLINE + 5 +10CF + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +161A + 8 +HOLZ + 10 +12000.0 + 20 +4245.0 + 30 +0.0 + 0 +VERTEX + 5 +161B + 8 +HOLZ + 10 +12125.0 + 20 +4245.0 + 30 +0.0 + 0 +VERTEX + 5 +161C + 8 +HOLZ + 10 +12125.0 + 20 +4320.0 + 30 +0.0 + 0 +VERTEX + 5 +161D + 8 +HOLZ + 10 +12000.0 + 20 +4320.0 + 30 +0.0 + 0 +SEQEND + 5 +161E + 8 +HOLZ + 0 +POLYLINE + 5 +10D5 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +10D6 + 8 +SCHRAFFUR + 10 +11959.834281 + 20 +4181.180794 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10D7 + 8 +SCHRAFFUR + 10 +11959.834281 + 20 +4181.180794 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10D8 + 8 +SCHRAFFUR + 10 +11972.973317 + 20 +4180.978442 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10D9 + 8 +SCHRAFFUR + 10 +11984.290301 + 20 +4182.232985 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10DA + 8 +SCHRAFFUR + 10 +11993.906706 + 20 +4184.823014 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10DB + 8 +SCHRAFFUR + 10 +12001.943999 + 20 +4188.627122 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10DC + 8 +SCHRAFFUR + 10 +12008.523651 + 20 +4193.523899 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10DD + 8 +SCHRAFFUR + 10 +12013.767133 + 20 +4199.391937 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10DE + 8 +SCHRAFFUR + 10 +12017.795915 + 20 +4206.109827 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10DF + 8 +SCHRAFFUR + 10 +12020.731465 + 20 +4213.55616 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10E0 + 8 +SCHRAFFUR + 10 +11997.409084 + 20 +4178.590741 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10E1 + 8 +SCHRAFFUR + 10 +12014.252997 + 20 +4192.835933 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10E2 + 8 +SCHRAFFUR + 10 +12020.731465 + 20 +4213.55616 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +10E3 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +10E4 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +10E5 + 8 +SCHRAFFUR + 10 +11963.721362 + 20 +4113.840075 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10E6 + 8 +SCHRAFFUR + 10 +11963.721362 + 20 +4113.840075 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10E7 + 8 +SCHRAFFUR + 10 +11991.496953 + 20 +4116.53822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10E8 + 8 +SCHRAFFUR + 10 +12013.195231 + 20 +4119.763732 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10E9 + 8 +SCHRAFFUR + 10 +12029.662693 + 20 +4123.497641 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10EA + 8 +SCHRAFFUR + 10 +12041.745834 + 20 +4127.720977 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10EB + 8 +SCHRAFFUR + 10 +12050.291151 + 20 +4132.414769 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10EC + 8 +SCHRAFFUR + 10 +12056.14514 + 20 +4137.560046 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10ED + 8 +SCHRAFFUR + 10 +12060.154298 + 20 +4143.137839 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10EE + 8 +SCHRAFFUR + 10 +12063.16512 + 20 +4149.129177 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10EF + 8 +SCHRAFFUR + 10 +12065.884918 + 20 +4155.525206 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F0 + 8 +SCHRAFFUR + 10 +12068.464264 + 20 +4162.357545 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F1 + 8 +SCHRAFFUR + 10 +12070.914546 + 20 +4169.667925 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F2 + 8 +SCHRAFFUR + 10 +12073.247151 + 20 +4177.498082 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F3 + 8 +SCHRAFFUR + 10 +12075.473466 + 20 +4185.889749 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F4 + 8 +SCHRAFFUR + 10 +12077.604879 + 20 +4194.884661 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F5 + 8 +SCHRAFFUR + 10 +12079.652777 + 20 +4204.524551 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F6 + 8 +SCHRAFFUR + 10 +12081.628546 + 20 +4214.851153 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10F7 + 8 +SCHRAFFUR + 10 +12046.64513 + 20 +4120.315109 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10F8 + 8 +SCHRAFFUR + 10 +12064.784737 + 20 +4144.920382 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10F9 + 8 +SCHRAFFUR + 10 +12076.445875 + 20 +4186.360834 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10FA + 8 +SCHRAFFUR + 10 +12081.628546 + 20 +4214.851153 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +10FB + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +10FC + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +10FD + 8 +SCHRAFFUR + 10 +11961.129974 + 20 +4058.154431 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +10FE + 8 +SCHRAFFUR + 10 +11961.129974 + 20 +4058.154431 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +10FF + 8 +SCHRAFFUR + 10 +11996.480368 + 20 +4058.919551 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1100 + 8 +SCHRAFFUR + 10 +12024.557727 + 20 +4061.118799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1101 + 8 +SCHRAFFUR + 10 +12046.47047 + 20 +4064.608001 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1102 + 8 +SCHRAFFUR + 10 +12063.327013 + 20 +4069.242988 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1103 + 8 +SCHRAFFUR + 10 +12076.235773 + 20 +4074.879588 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1104 + 8 +SCHRAFFUR + 10 +12086.305165 + 20 +4081.373629 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1105 + 8 +SCHRAFFUR + 10 +12094.643606 + 20 +4088.58094 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1106 + 8 +SCHRAFFUR + 10 +12102.359514 + 20 +4096.35735 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1107 + 8 +SCHRAFFUR + 10 +12110.325956 + 20 +4104.657331 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1108 + 8 +SCHRAFFUR + 10 +12118.474603 + 20 +4113.829929 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1109 + 8 +SCHRAFFUR + 10 +12126.501778 + 20 +4124.322834 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110A + 8 +SCHRAFFUR + 10 +12134.103803 + 20 +4136.583735 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110B + 8 +SCHRAFFUR + 10 +12140.977003 + 20 +4151.060323 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110C + 8 +SCHRAFFUR + 10 +12146.817698 + 20 +4168.200287 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110D + 8 +SCHRAFFUR + 10 +12151.322213 + 20 +4188.451316 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110E + 8 +SCHRAFFUR + 10 +12154.186869 + 20 +4212.261101 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +110F + 8 +SCHRAFFUR + 10 +12066.080327 + 20 +4058.154431 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1110 + 8 +SCHRAFFUR + 10 +12097.176766 + 20 +4091.82479 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1111 + 8 +SCHRAFFUR + 10 +12149.004199 + 20 +4143.625388 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1112 + 8 +SCHRAFFUR + 10 +12154.186869 + 20 +4212.261101 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1113 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1114 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1115 + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +4016.713978 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1116 + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +4016.713978 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1117 + 8 +SCHRAFFUR + 10 +11989.394607 + 20 +4018.213237 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1118 + 8 +SCHRAFFUR + 10 +12012.370212 + 20 +4019.845284 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1119 + 8 +SCHRAFFUR + 10 +12031.914283 + 20 +4021.682205 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111A + 8 +SCHRAFFUR + 10 +12048.588619 + 20 +4023.796088 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111B + 8 +SCHRAFFUR + 10 +12062.95502 + 20 +4026.259017 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111C + 8 +SCHRAFFUR + 10 +12075.575286 + 20 +4029.143078 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111D + 8 +SCHRAFFUR + 10 +12087.011217 + 20 +4032.520358 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111E + 8 +SCHRAFFUR + 10 +12097.824612 + 20 +4036.462943 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +111F + 8 +SCHRAFFUR + 10 +12108.443149 + 20 +4041.015095 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1120 + 8 +SCHRAFFUR + 10 +12118.75801 + 20 +4046.109788 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1121 + 8 +SCHRAFFUR + 10 +12128.526255 + 20 +4051.652172 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1122 + 8 +SCHRAFFUR + 10 +12137.504944 + 20 +4057.547396 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1123 + 8 +SCHRAFFUR + 10 +12145.451137 + 20 +4063.700612 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1124 + 8 +SCHRAFFUR + 10 +12152.121893 + 20 +4070.016968 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1125 + 8 +SCHRAFFUR + 10 +12157.274274 + 20 +4076.401615 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1126 + 8 +SCHRAFFUR + 10 +12160.665337 + 20 +4082.759703 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1127 + 8 +SCHRAFFUR + 10 +12040.166662 + 20 +4020.599025 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1128 + 8 +SCHRAFFUR + 10 +12098.472459 + 20 +4029.664112 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1129 + 8 +SCHRAFFUR + 10 +12154.186869 + 20 +4065.924524 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +112A + 8 +SCHRAFFUR + 10 +12160.665337 + 20 +4082.759703 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +112B + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +112C + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +112D + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +3944.193219 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +112E + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +3944.193219 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +112F + 8 +SCHRAFFUR + 10 +11991.2445 + 20 +3946.267259 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1130 + 8 +SCHRAFFUR + 10 +12020.002607 + 20 +3951.315788 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1131 + 8 +SCHRAFFUR + 10 +12048.15337 + 20 +3959.035285 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1132 + 8 +SCHRAFFUR + 10 +12075.150169 + 20 +3969.122232 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1133 + 8 +SCHRAFFUR + 10 +12100.446385 + 20 +3981.273109 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1134 + 8 +SCHRAFFUR + 10 +12123.495398 + 20 +3995.184396 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1135 + 8 +SCHRAFFUR + 10 +12143.750589 + 20 +4010.552574 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1136 + 8 +SCHRAFFUR + 10 +12160.665337 + 20 +4027.074124 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1137 + 8 +SCHRAFFUR + 10 +12038.870968 + 20 +3945.488213 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1138 + 8 +SCHRAFFUR + 10 +12120.499147 + 20 +3981.748625 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1139 + 8 +SCHRAFFUR + 10 +12160.665337 + 20 +4027.074124 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +113A + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +113B + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +113C + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +3876.852501 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +113D + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +3876.852501 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +113E + 8 +SCHRAFFUR + 10 +11994.590017 + 20 +3878.463679 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +113F + 8 +SCHRAFFUR + 10 +12025.630761 + 20 +3883.185925 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1140 + 8 +SCHRAFFUR + 10 +12055.031653 + 20 +3890.852305 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1141 + 8 +SCHRAFFUR + 10 +12082.276445 + 20 +3901.295883 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1142 + 8 +SCHRAFFUR + 10 +12106.848888 + 20 +3914.349726 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1143 + 8 +SCHRAFFUR + 10 +12128.232734 + 20 +3929.846899 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1144 + 8 +SCHRAFFUR + 10 +12145.911735 + 20 +3947.620468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1145 + 8 +SCHRAFFUR + 10 +12159.369644 + 20 +3967.503498 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1146 + 8 +SCHRAFFUR + 10 +12049.236517 + 20 +3876.852501 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1147 + 8 +SCHRAFFUR + 10 +12129.568898 + 20 +3911.817854 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1148 + 8 +SCHRAFFUR + 10 +12159.369644 + 20 +3967.503498 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1149 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +114A + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +114B + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +3801.741689 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +114C + 8 +SCHRAFFUR + 10 +11962.425668 + 20 +3801.741689 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114D + 8 +SCHRAFFUR + 10 +12000.817887 + 20 +3808.307806 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114E + 8 +SCHRAFFUR + 10 +12036.097434 + 20 +3817.119965 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +114F + 8 +SCHRAFFUR + 10 +12067.94545 + 20 +3827.874647 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1150 + 8 +SCHRAFFUR + 10 +12096.043073 + 20 +3840.268332 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1151 + 8 +SCHRAFFUR + 10 +12120.071442 + 20 +3853.997501 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1152 + 8 +SCHRAFFUR + 10 +12139.711696 + 20 +3868.758634 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1153 + 8 +SCHRAFFUR + 10 +12154.644976 + 20 +3884.248211 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1154 + 8 +SCHRAFFUR + 10 +12164.552418 + 20 +3900.162714 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1155 + 8 +SCHRAFFUR + 10 +12068.671714 + 20 +3815.986816 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1156 + 8 +SCHRAFFUR + 10 +12145.117118 + 20 +3857.427268 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1157 + 8 +SCHRAFFUR + 10 +12164.552418 + 20 +3900.162714 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1158 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1159 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +115A + 8 +SCHRAFFUR + 10 +12044.053743 + 20 +3765.481277 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +115B + 8 +SCHRAFFUR + 10 +12044.053743 + 20 +3765.481277 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115C + 8 +SCHRAFFUR + 10 +12069.792828 + 20 +3774.116385 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115D + 8 +SCHRAFFUR + 10 +12089.625412 + 20 +3781.142845 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115E + 8 +SCHRAFFUR + 10 +12104.933219 + 20 +3787.380157 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +115F + 8 +SCHRAFFUR + 10 +12117.097977 + 20 +3793.647823 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1160 + 8 +SCHRAFFUR + 10 +12127.501411 + 20 +3800.765344 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1161 + 8 +SCHRAFFUR + 10 +12137.525248 + 20 +3809.552221 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1162 + 8 +SCHRAFFUR + 10 +12148.551212 + 20 +3820.827955 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1163 + 8 +SCHRAFFUR + 10 +12161.961031 + 20 +3835.412048 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1164 + 8 +SCHRAFFUR + 10 +12121.79484 + 20 +3791.381543 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1165 + 8 +SCHRAFFUR + 10 +12161.961031 + 20 +3835.412048 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1166 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1167 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1168 + 8 +SCHRAFFUR + 10 +12002.591859 + 20 +4296.436999 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1169 + 8 +SCHRAFFUR + 10 +12002.591859 + 20 +4296.436999 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116A + 8 +SCHRAFFUR + 10 +12011.168168 + 20 +4297.327329 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116B + 8 +SCHRAFFUR + 10 +12017.755401 + 20 +4298.217657 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116C + 8 +SCHRAFFUR + 10 +12022.793888 + 20 +4299.350798 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116D + 8 +SCHRAFFUR + 10 +12026.723957 + 20 +4300.969567 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116E + 8 +SCHRAFFUR + 10 +12029.98594 + 20 +4303.316779 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +116F + 8 +SCHRAFFUR + 10 +12033.020165 + 20 +4306.635249 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1170 + 8 +SCHRAFFUR + 10 +12036.266963 + 20 +4311.167793 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1171 + 8 +SCHRAFFUR + 10 +12040.166662 + 20 +4317.157225 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1172 + 8 +SCHRAFFUR + 10 +12028.505523 + 20 +4299.027052 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1173 + 8 +SCHRAFFUR + 10 +12040.166662 + 20 +4317.157225 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1174 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1175 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1176 + 8 +SCHRAFFUR + 10 +12002.591859 + 20 +4273.126785 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1177 + 8 +SCHRAFFUR + 10 +12002.591859 + 20 +4273.126785 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1178 + 8 +SCHRAFFUR + 10 +12015.644852 + 20 +4274.335796 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1179 + 8 +SCHRAFFUR + 10 +12027.574253 + 20 +4276.971346 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117A + 8 +SCHRAFFUR + 10 +12038.349692 + 20 +4281.003085 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117B + 8 +SCHRAFFUR + 10 +12047.940798 + 20 +4286.400659 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117C + 8 +SCHRAFFUR + 10 +12056.3172 + 20 +4293.133717 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117D + 8 +SCHRAFFUR + 10 +12063.44853 + 20 +4301.171907 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117E + 8 +SCHRAFFUR + 10 +12069.304416 + 20 +4310.484876 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +117F + 8 +SCHRAFFUR + 10 +12073.854488 + 20 +4321.042272 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1180 + 8 +SCHRAFFUR + 10 +12038.870968 + 20 +4274.421779 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1181 + 8 +SCHRAFFUR + 10 +12063.489043 + 20 +4291.256959 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1182 + 8 +SCHRAFFUR + 10 +12073.854488 + 20 +4321.042272 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1183 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1184 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1185 + 8 +SCHRAFFUR + 10 +12036.279685 + 20 +4248.521513 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1186 + 8 +SCHRAFFUR + 10 +12036.279685 + 20 +4248.521513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1187 + 8 +SCHRAFFUR + 10 +12050.977598 + 20 +4253.387936 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1188 + 8 +SCHRAFFUR + 10 +12063.974923 + 20 +4259.286322 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1189 + 8 +SCHRAFFUR + 10 +12075.271663 + 20 +4266.277373 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118A + 8 +SCHRAFFUR + 10 +12084.867819 + 20 +4274.421795 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118B + 8 +SCHRAFFUR + 10 +12092.763391 + 20 +4283.780293 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118C + 8 +SCHRAFFUR + 10 +12098.958382 + 20 +4294.413569 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118D + 8 +SCHRAFFUR + 10 +12103.452791 + 20 +4306.38233 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118E + 8 +SCHRAFFUR + 10 +12106.246621 + 20 +4319.747278 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +118F + 8 +SCHRAFFUR + 10 +12077.741569 + 20 +4260.176652 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1190 + 8 +SCHRAFFUR + 10 +12101.063847 + 20 +4282.191872 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1191 + 8 +SCHRAFFUR + 10 +12106.246621 + 20 +4319.747278 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1192 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1193 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1194 + 8 +SCHRAFFUR + 10 +12099.768153 + 20 +4248.521513 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1195 + 8 +SCHRAFFUR + 10 +12099.768153 + 20 +4248.521513 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1196 + 8 +SCHRAFFUR + 10 +12104.492845 + 20 +4253.709163 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1197 + 8 +SCHRAFFUR + 10 +12108.169855 + 20 +4257.971078 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1198 + 8 +SCHRAFFUR + 10 +12111.087674 + 20 +4261.838418 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1199 + 8 +SCHRAFFUR + 10 +12113.534794 + 20 +4265.84234 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119A + 8 +SCHRAFFUR + 10 +12115.799707 + 20 +4270.514002 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119B + 8 +SCHRAFFUR + 10 +12118.170905 + 20 +4276.384562 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119C + 8 +SCHRAFFUR + 10 +12120.93688 + 20 +4283.985179 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119D + 8 +SCHRAFFUR + 10 +12124.386124 + 20 +4293.847012 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +119E + 8 +SCHRAFFUR + 10 +12114.020679 + 20 +4264.061699 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +119F + 8 +SCHRAFFUR + 10 +12124.386124 + 20 +4293.847012 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +11A0 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +11A1 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +161F + 8 +DRAHTANKER + 10 +10640.0 + 20 +4405.0 + 30 +0.0 + 0 +VERTEX + 5 +1620 + 8 +DRAHTANKER + 10 +10745.0 + 20 +4405.0 + 30 +0.0 + 0 +VERTEX + 5 +1621 + 8 +DRAHTANKER + 10 +10745.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1622 + 8 +DRAHTANKER + 10 +10670.0 + 20 +4420.0 + 30 +0.0 + 0 +SEQEND + 5 +1623 + 8 +DRAHTANKER + 0 +POLYLINE + 5 +11A7 + 8 +DRAHTANKER + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +1624 + 8 +DRAHTANKER + 10 +10675.0 + 20 +4405.0 + 30 +0.0 + 0 +VERTEX + 5 +1625 + 8 +DRAHTANKER + 10 +10620.0 + 20 +4405.0 + 30 +0.0 + 0 +VERTEX + 5 +1626 + 8 +DRAHTANKER + 10 +10620.0 + 20 +4250.0 + 30 +0.0 + 0 +VERTEX + 5 +1627 + 8 +DRAHTANKER + 10 +10390.0 + 20 +4250.0 + 30 +0.0 + 0 +VERTEX + 5 +1628 + 8 +DRAHTANKER + 10 +10390.0 + 20 +4505.0 + 30 +0.0 + 0 +VERTEX + 5 +1629 + 8 +DRAHTANKER + 10 +10325.0 + 20 +4505.0 + 30 +0.0 + 0 +VERTEX + 5 +162A + 8 +DRAHTANKER + 10 +10325.0 + 20 +4525.0 + 30 +0.0 + 0 +VERTEX + 5 +162B + 8 +DRAHTANKER + 10 +10325.0 + 20 +4430.0 + 30 +0.0 + 0 +SEQEND + 5 +162C + 8 +DRAHTANKER + 0 +POLYLINE + 5 +11B1 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +162D + 8 +HOLZ + 10 +10380.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +162E + 8 +HOLZ + 10 +10342.5 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +162F + 8 +HOLZ + 10 +10342.5 + 20 +4195.0 + 30 +0.0 + 0 +VERTEX + 5 +1630 + 8 +HOLZ + 10 +10380.0 + 20 +4195.0 + 30 +0.0 + 0 +SEQEND + 5 +1631 + 8 +HOLZ + 0 +POLYLINE + 5 +11B7 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1632 + 8 +DACHZIEGEL + 10 +11520.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +1633 + 8 +DACHZIEGEL + 10 +11500.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1634 + 8 +DACHZIEGEL + 10 +11095.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1635 + 8 +DACHZIEGEL + 10 +11070.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1636 + 8 +DACHZIEGEL + 10 +11045.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1637 + 8 +DACHZIEGEL + 10 +11040.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1638 + 8 +DACHZIEGEL + 10 +11040.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1639 + 8 +DACHZIEGEL + 10 +11060.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +163A + 8 +DACHZIEGEL + 10 +11080.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +163B + 8 +DACHZIEGEL + 10 +11105.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +163C + 8 +DACHZIEGEL + 10 +11455.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +163D + 8 +DACHZIEGEL + 10 +11515.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +163E + 8 +DACHZIEGEL + 10 +11560.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +163F + 8 +DACHZIEGEL + 10 +11580.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +1640 + 8 +DACHZIEGEL + 10 +11560.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1641 + 8 +DACHZIEGEL + 10 +11535.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +1642 + 8 +DACHZIEGEL + 10 +11525.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +1643 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +11CA + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1644 + 8 +DACHZIEGEL + 10 +10790.0 + 20 +4450.0 + 30 +0.0 + 0 +VERTEX + 5 +1645 + 8 +DACHZIEGEL + 10 +10635.0 + 20 +4450.0 + 30 +0.0 + 0 +VERTEX + 5 +1646 + 8 +DACHZIEGEL + 10 +10575.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +1647 + 8 +DACHZIEGEL + 10 +10530.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +1648 + 8 +DACHZIEGEL + 10 +10510.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +1649 + 8 +DACHZIEGEL + 10 +10530.0 + 20 +4480.0 + 30 +0.0 + 0 +VERTEX + 5 +164A + 8 +DACHZIEGEL + 10 +10555.0 + 20 +4505.0 + 30 +0.0 + 0 +VERTEX + 5 +164B + 8 +DACHZIEGEL + 10 +10565.0 + 20 +4480.0 + 30 +0.0 + 0 +VERTEX + 5 +164C + 8 +DACHZIEGEL + 10 +10570.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +164D + 8 +DACHZIEGEL + 10 +10590.0 + 20 +4425.0 + 30 +0.0 + 0 +VERTEX + 5 +164E + 8 +DACHZIEGEL + 10 +10790.0 + 20 +4425.0 + 30 +0.0 + 0 +SEQEND + 5 +164F + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +11D7 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1650 + 8 +DACHZIEGEL + 10 +10780.0 + 20 +4450.0 + 30 +0.0 + 0 +VERTEX + 5 +1651 + 8 +DACHZIEGEL + 10 +10955.0 + 20 +4450.0 + 30 +0.0 + 0 +VERTEX + 5 +1652 + 8 +DACHZIEGEL + 10 +11015.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +1653 + 8 +DACHZIEGEL + 10 +11060.0 + 20 +4540.0 + 30 +0.0 + 0 +VERTEX + 5 +1654 + 8 +DACHZIEGEL + 10 +11080.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +1655 + 8 +DACHZIEGEL + 10 +11060.0 + 20 +4480.0 + 30 +0.0 + 0 +VERTEX + 5 +1656 + 8 +DACHZIEGEL + 10 +11035.0 + 20 +4505.0 + 30 +0.0 + 0 +VERTEX + 5 +1657 + 8 +DACHZIEGEL + 10 +11025.0 + 20 +4480.0 + 30 +0.0 + 0 +VERTEX + 5 +1658 + 8 +DACHZIEGEL + 10 +11020.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +1659 + 8 +DACHZIEGEL + 10 +11000.0 + 20 +4425.0 + 30 +0.0 + 0 +VERTEX + 5 +165A + 8 +DACHZIEGEL + 10 +10780.0 + 20 +4425.0 + 30 +0.0 + 0 +SEQEND + 5 +165B + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +11E4 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +165C + 8 +DACHZIEGEL + 10 +12020.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +165D + 8 +DACHZIEGEL + 10 +12000.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +165E + 8 +DACHZIEGEL + 10 +11595.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +165F + 8 +DACHZIEGEL + 10 +11570.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1660 + 8 +DACHZIEGEL + 10 +11545.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1661 + 8 +DACHZIEGEL + 10 +11540.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1662 + 8 +DACHZIEGEL + 10 +11540.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1663 + 8 +DACHZIEGEL + 10 +11560.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +1664 + 8 +DACHZIEGEL + 10 +11580.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1665 + 8 +DACHZIEGEL + 10 +11605.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +1666 + 8 +DACHZIEGEL + 10 +11955.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +1667 + 8 +DACHZIEGEL + 10 +12015.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +1668 + 8 +DACHZIEGEL + 10 +12060.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +1669 + 8 +DACHZIEGEL + 10 +12080.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +166A + 8 +DACHZIEGEL + 10 +12060.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +166B + 8 +DACHZIEGEL + 10 +12035.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +166C + 8 +DACHZIEGEL + 10 +12025.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +166D + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +11F7 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +166E + 8 +DACHZIEGEL + 10 +13020.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +166F + 8 +DACHZIEGEL + 10 +13000.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1670 + 8 +DACHZIEGEL + 10 +12595.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1671 + 8 +DACHZIEGEL + 10 +12570.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1672 + 8 +DACHZIEGEL + 10 +12545.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1673 + 8 +DACHZIEGEL + 10 +12540.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1674 + 8 +DACHZIEGEL + 10 +12540.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1675 + 8 +DACHZIEGEL + 10 +12560.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +1676 + 8 +DACHZIEGEL + 10 +12580.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1677 + 8 +DACHZIEGEL + 10 +12605.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +1678 + 8 +DACHZIEGEL + 10 +12955.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +1679 + 8 +DACHZIEGEL + 10 +13015.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +167A + 8 +DACHZIEGEL + 10 +13060.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +167B + 8 +DACHZIEGEL + 10 +13080.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +167C + 8 +DACHZIEGEL + 10 +13060.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +167D + 8 +DACHZIEGEL + 10 +13035.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +167E + 8 +DACHZIEGEL + 10 +13025.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +167F + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +120A + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1680 + 8 +DACHZIEGEL + 10 +12520.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +1681 + 8 +DACHZIEGEL + 10 +12500.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1682 + 8 +DACHZIEGEL + 10 +12095.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1683 + 8 +DACHZIEGEL + 10 +12070.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1684 + 8 +DACHZIEGEL + 10 +12045.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1685 + 8 +DACHZIEGEL + 10 +12040.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1686 + 8 +DACHZIEGEL + 10 +12040.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1687 + 8 +DACHZIEGEL + 10 +12060.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +1688 + 8 +DACHZIEGEL + 10 +12080.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1689 + 8 +DACHZIEGEL + 10 +12105.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +168A + 8 +DACHZIEGEL + 10 +12455.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +168B + 8 +DACHZIEGEL + 10 +12515.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +168C + 8 +DACHZIEGEL + 10 +12560.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +168D + 8 +DACHZIEGEL + 10 +12580.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +168E + 8 +DACHZIEGEL + 10 +12560.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +168F + 8 +DACHZIEGEL + 10 +12535.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +1690 + 8 +DACHZIEGEL + 10 +12525.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +1691 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +121D + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1692 + 8 +DACHZIEGEL + 10 +14020.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +1693 + 8 +DACHZIEGEL + 10 +14000.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1694 + 8 +DACHZIEGEL + 10 +13595.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1695 + 8 +DACHZIEGEL + 10 +13570.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1696 + 8 +DACHZIEGEL + 10 +13545.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +1697 + 8 +DACHZIEGEL + 10 +13540.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +1698 + 8 +DACHZIEGEL + 10 +13540.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1699 + 8 +DACHZIEGEL + 10 +13560.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +169A + 8 +DACHZIEGEL + 10 +13580.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +169B + 8 +DACHZIEGEL + 10 +13605.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +169C + 8 +DACHZIEGEL + 10 +13955.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +169D + 8 +DACHZIEGEL + 10 +14015.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +169E + 8 +DACHZIEGEL + 10 +14060.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +169F + 8 +DACHZIEGEL + 10 +14080.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +16A0 + 8 +DACHZIEGEL + 10 +14060.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16A1 + 8 +DACHZIEGEL + 10 +14035.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +16A2 + 8 +DACHZIEGEL + 10 +14025.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +16A3 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +1230 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16A4 + 8 +DACHZIEGEL + 10 +13520.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +16A5 + 8 +DACHZIEGEL + 10 +13500.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16A6 + 8 +DACHZIEGEL + 10 +13095.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16A7 + 8 +DACHZIEGEL + 10 +13070.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16A8 + 8 +DACHZIEGEL + 10 +13045.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16A9 + 8 +DACHZIEGEL + 10 +13040.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16AA + 8 +DACHZIEGEL + 10 +13040.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16AB + 8 +DACHZIEGEL + 10 +13060.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +16AC + 8 +DACHZIEGEL + 10 +13080.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16AD + 8 +DACHZIEGEL + 10 +13105.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16AE + 8 +DACHZIEGEL + 10 +13455.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16AF + 8 +DACHZIEGEL + 10 +13515.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16B0 + 8 +DACHZIEGEL + 10 +13560.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16B1 + 8 +DACHZIEGEL + 10 +13580.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +16B2 + 8 +DACHZIEGEL + 10 +13560.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16B3 + 8 +DACHZIEGEL + 10 +13535.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +16B4 + 8 +DACHZIEGEL + 10 +13525.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +16B5 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +1243 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16B6 + 8 +DACHZIEGEL + 10 +15020.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +16B7 + 8 +DACHZIEGEL + 10 +15000.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16B8 + 8 +DACHZIEGEL + 10 +14595.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16B9 + 8 +DACHZIEGEL + 10 +14570.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16BA + 8 +DACHZIEGEL + 10 +14545.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16BB + 8 +DACHZIEGEL + 10 +14540.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16BC + 8 +DACHZIEGEL + 10 +14540.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16BD + 8 +DACHZIEGEL + 10 +14560.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +16BE + 8 +DACHZIEGEL + 10 +14580.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16BF + 8 +DACHZIEGEL + 10 +14605.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16C0 + 8 +DACHZIEGEL + 10 +14955.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16C1 + 8 +DACHZIEGEL + 10 +15015.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16C2 + 8 +DACHZIEGEL + 10 +15060.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16C3 + 8 +DACHZIEGEL + 10 +15080.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +16C4 + 8 +DACHZIEGEL + 10 +15060.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16C5 + 8 +DACHZIEGEL + 10 +15035.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +16C6 + 8 +DACHZIEGEL + 10 +15025.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +16C7 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +1256 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16C8 + 8 +DACHZIEGEL + 10 +14520.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +16C9 + 8 +DACHZIEGEL + 10 +14500.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16CA + 8 +DACHZIEGEL + 10 +14095.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16CB + 8 +DACHZIEGEL + 10 +14070.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16CC + 8 +DACHZIEGEL + 10 +14045.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16CD + 8 +DACHZIEGEL + 10 +14040.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16CE + 8 +DACHZIEGEL + 10 +14040.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16CF + 8 +DACHZIEGEL + 10 +14060.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +16D0 + 8 +DACHZIEGEL + 10 +14080.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16D1 + 8 +DACHZIEGEL + 10 +14105.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16D2 + 8 +DACHZIEGEL + 10 +14455.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16D3 + 8 +DACHZIEGEL + 10 +14515.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16D4 + 8 +DACHZIEGEL + 10 +14560.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16D5 + 8 +DACHZIEGEL + 10 +14580.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +16D6 + 8 +DACHZIEGEL + 10 +14560.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16D7 + 8 +DACHZIEGEL + 10 +14535.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +16D8 + 8 +DACHZIEGEL + 10 +14525.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +16D9 + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +1269 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 1 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16DA + 8 +DACHZIEGEL + 10 +15520.0 + 20 +4440.0 + 30 +0.0 + 0 +VERTEX + 5 +16DB + 8 +DACHZIEGEL + 10 +15500.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16DC + 8 +DACHZIEGEL + 10 +15095.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16DD + 8 +DACHZIEGEL + 10 +15070.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16DE + 8 +DACHZIEGEL + 10 +15045.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +16DF + 8 +DACHZIEGEL + 10 +15040.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +16E0 + 8 +DACHZIEGEL + 10 +15040.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16E1 + 8 +DACHZIEGEL + 10 +15060.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +16E2 + 8 +DACHZIEGEL + 10 +15080.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16E3 + 8 +DACHZIEGEL + 10 +15105.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16E4 + 8 +DACHZIEGEL + 10 +15455.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +16E5 + 8 +DACHZIEGEL + 10 +15515.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16E6 + 8 +DACHZIEGEL + 10 +15560.0 + 20 +4535.0 + 30 +0.0 + 0 +VERTEX + 5 +16E7 + 8 +DACHZIEGEL + 10 +15580.0 + 20 +4495.0 + 30 +0.0 + 0 +VERTEX + 5 +16E8 + 8 +DACHZIEGEL + 10 +15560.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +16E9 + 8 +DACHZIEGEL + 10 +15535.0 + 20 +4500.0 + 30 +0.0 + 0 +VERTEX + 5 +16EA + 8 +DACHZIEGEL + 10 +15525.0 + 20 +4475.0 + 30 +0.0 + 0 +SEQEND + 5 +16EB + 8 +DACHZIEGEL + 0 +POLYLINE + 5 +127C + 8 +SCHNITTKANTEN + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +12.5 + 41 +12.5 + 0 +VERTEX + 5 +16EC + 8 +SCHNITTKANTEN + 10 +15880.0 + 20 +4780.0 + 30 +0.0 + 0 +VERTEX + 5 +16ED + 8 +SCHNITTKANTEN + 10 +15880.0 + 20 +3410.0 + 30 +0.0 + 0 +SEQEND + 5 +16EE + 8 +SCHNITTKANTEN + 0 +INSERT + 5 +1280 + 8 +SCHRAFFUR + 2 +*X26 + 10 +7035.0 + 20 +-430.0 + 30 +0.0 +1001 +ACAD +1000 +HATCH +1002 +{ +1070 + 16 +1000 +HONEY,I +1040 +450.0 +1040 +0.0 +1002 +} + 0 +POLYLINE + 5 +1281 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16EF + 8 +HOLZ + 10 +11979.307123 + 20 +3735.0 + 30 +0.0 + 0 +VERTEX + 5 +16F0 + 8 +HOLZ + 10 +11979.307123 + 20 +3685.0 + 30 +0.0 + 0 +VERTEX + 5 +16F1 + 8 +HOLZ + 10 +15880.0 + 20 +3685.0 + 30 +0.0 + 0 +SEQEND + 5 +16F2 + 8 +HOLZ + 0 +POLYLINE + 5 +1286 + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16F3 + 8 +HOLZ + 10 +15880.0 + 20 +3735.0 + 30 +0.0 + 0 +VERTEX + 5 +16F4 + 8 +HOLZ + 10 +11979.307123 + 20 +3735.0 + 30 +0.0 + 0 +SEQEND + 5 +16F5 + 8 +HOLZ + 0 +POLYLINE + 5 +128A + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +16F6 + 8 +PE-FOLIE + 10 +11985.0 + 20 +3750.0 + 30 +0.0 + 0 +VERTEX + 5 +16F7 + 8 +PE-FOLIE + 10 +15880.0 + 20 +3750.0 + 30 +0.0 + 0 +SEQEND + 5 +16F8 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +128E + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16F9 + 8 +DAEMMUNG + 10 +12161.85938 + 20 +3762.860132 + 30 +0.0 + 0 +VERTEX + 5 +16FA + 8 +DAEMMUNG + 10 +12161.85938 + 20 +4062.860132 + 30 +0.0 + 0 +VERTEX + 5 +16FB + 8 +DAEMMUNG + 10 +15880.0 + 20 +4062.860132 + 30 +0.0 + 0 +SEQEND + 5 +16FC + 8 +DAEMMUNG + 0 +POLYLINE + 5 +1293 + 8 +DAEMMUNG + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +16FD + 8 +DAEMMUNG + 10 +15880.0 + 20 +3762.860132 + 30 +0.0 + 0 +VERTEX + 5 +16FE + 8 +DAEMMUNG + 10 +12161.85938 + 20 +3762.860132 + 30 +0.0 + 0 +SEQEND + 5 +16FF + 8 +DAEMMUNG + 0 +POLYLINE + 5 +1297 + 8 +PE-FOLIE + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +25.0 + 41 +25.0 + 0 +VERTEX + 5 +1700 + 8 +PE-FOLIE + 10 +10395.0 + 20 +4230.0 + 30 +0.0 + 0 +VERTEX + 5 +1701 + 8 +PE-FOLIE + 10 +15880.0 + 20 +4230.0 + 30 +0.0 + 0 +SEQEND + 5 +1702 + 8 +PE-FOLIE + 0 +POLYLINE + 5 +129B + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1703 + 8 +HOLZ + 10 +10630.0 + 20 +4320.0 + 30 +0.0 + 0 +VERTEX + 5 +1704 + 8 +HOLZ + 10 +15880.0 + 20 +4320.0 + 30 +0.0 + 0 +SEQEND + 5 +1705 + 8 +HOLZ + 0 +POLYLINE + 5 +129F + 8 +HOLZ + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +1706 + 8 +HOLZ + 10 +15880.0 + 20 +4395.0 + 30 +0.0 + 0 +VERTEX + 5 +1707 + 8 +HOLZ + 10 +10630.0 + 20 +4395.0 + 30 +0.0 + 0 +VERTEX + 5 +1708 + 8 +HOLZ + 10 +10630.0 + 20 +4320.0 + 30 +0.0 + 0 +SEQEND + 5 +1709 + 8 +HOLZ + 0 +POLYLINE + 5 +12A4 + 8 +DACHZIEGEL + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +8.75 + 41 +8.75 + 0 +VERTEX + 5 +170A + 8 +DACHZIEGEL + 10 +15880.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +170B + 8 +DACHZIEGEL + 10 +15595.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +170C + 8 +DACHZIEGEL + 10 +15570.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +170D + 8 +DACHZIEGEL + 10 +15545.0 + 20 +4435.0 + 30 +0.0 + 0 +VERTEX + 5 +170E + 8 +DACHZIEGEL + 10 +15540.0 + 20 +4420.0 + 30 +0.0 + 0 +VERTEX + 5 +170F + 8 +DACHZIEGEL + 10 +15540.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1710 + 8 +DACHZIEGEL + 10 +15560.0 + 20 +4460.0 + 30 +0.0 + 0 +VERTEX + 5 +1711 + 8 +DACHZIEGEL + 10 +15580.0 + 20 +4475.0 + 30 +0.0 + 0 +VERTEX + 5 +1712 + 8 +DACHZIEGEL + 10 +15605.0 + 20 +4445.0 + 30 +0.0 + 0 +VERTEX + 5 +1713 + 8 +DACHZIEGEL + 10 +15880.0 + 20 +4445.0 + 30 +0.0 + 0 +SEQEND + 5 +1714 + 8 +DACHZIEGEL + 0 +LINE + 5 +12B0 + 8 +0 + 62 + 0 + 10 +11992.0 + 20 +3700.0 + 30 +0.0 + 11 +12592.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B1 + 8 +0 + 62 + 0 + 10 +12672.0 + 20 +3700.0 + 30 +0.0 + 11 +12872.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B2 + 8 +0 + 62 + 0 + 10 +12912.0 + 20 +3700.0 + 30 +0.0 + 11 +13512.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B3 + 8 +0 + 62 + 0 + 10 +13592.0 + 20 +3700.0 + 30 +0.0 + 11 +13792.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B4 + 8 +0 + 62 + 0 + 10 +13832.0 + 20 +3700.0 + 30 +0.0 + 11 +14432.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B5 + 8 +0 + 62 + 0 + 10 +14512.0 + 20 +3700.0 + 30 +0.0 + 11 +14712.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B6 + 8 +0 + 62 + 0 + 10 +14752.0 + 20 +3700.0 + 30 +0.0 + 11 +15352.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B7 + 8 +0 + 62 + 0 + 10 +15432.0 + 20 +3700.0 + 30 +0.0 + 11 +15632.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B8 + 8 +0 + 62 + 0 + 10 +15672.0 + 20 +3700.0 + 30 +0.0 + 11 +15880.0 + 21 +3700.0 + 31 +0.0 + 0 +LINE + 5 +12B9 + 8 +0 + 62 + 0 + 10 +12028.0 + 20 +3714.4 + 30 +0.0 + 11 +12188.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12BA + 8 +0 + 62 + 0 + 10 +12228.0 + 20 +3714.4 + 30 +0.0 + 11 +12548.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12BB + 8 +0 + 62 + 0 + 10 +12604.0 + 20 +3714.4 + 30 +0.0 + 11 +12764.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12BC + 8 +0 + 62 + 0 + 10 +12804.0 + 20 +3714.4 + 30 +0.0 + 11 +13124.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12BD + 8 +0 + 62 + 0 + 10 +13180.0 + 20 +3714.4 + 30 +0.0 + 11 +13340.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12BE + 8 +0 + 62 + 0 + 10 +13380.0 + 20 +3714.4 + 30 +0.0 + 11 +13700.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12BF + 8 +0 + 62 + 0 + 10 +13756.0 + 20 +3714.4 + 30 +0.0 + 11 +13916.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C0 + 8 +0 + 62 + 0 + 10 +13956.0 + 20 +3714.4 + 30 +0.0 + 11 +14276.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C1 + 8 +0 + 62 + 0 + 10 +14332.0 + 20 +3714.4 + 30 +0.0 + 11 +14492.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C2 + 8 +0 + 62 + 0 + 10 +14532.0 + 20 +3714.4 + 30 +0.0 + 11 +14852.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C3 + 8 +0 + 62 + 0 + 10 +14908.0 + 20 +3714.4 + 30 +0.0 + 11 +15068.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C4 + 8 +0 + 62 + 0 + 10 +15108.0 + 20 +3714.4 + 30 +0.0 + 11 +15428.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C5 + 8 +0 + 62 + 0 + 10 +15484.0 + 20 +3714.4 + 30 +0.0 + 11 +15644.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C6 + 8 +0 + 62 + 0 + 10 +15684.0 + 20 +3714.4 + 30 +0.0 + 11 +15880.0 + 21 +3714.4 + 31 +0.0 + 0 +LINE + 5 +12C7 + 8 +0 + 62 + 0 + 10 +11979.35938 + 20 +3687.6 + 30 +0.0 + 11 +11980.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12C8 + 8 +0 + 62 + 0 + 10 +12020.0 + 20 +3687.6 + 30 +0.0 + 11 +12340.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12C9 + 8 +0 + 62 + 0 + 10 +12396.0 + 20 +3687.6 + 30 +0.0 + 11 +12556.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12CA + 8 +0 + 62 + 0 + 10 +12596.0 + 20 +3687.6 + 30 +0.0 + 11 +12916.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12CB + 8 +0 + 62 + 0 + 10 +12972.0 + 20 +3687.6 + 30 +0.0 + 11 +13132.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12CC + 8 +0 + 62 + 0 + 10 +13172.0 + 20 +3687.6 + 30 +0.0 + 11 +13492.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12CD + 8 +0 + 62 + 0 + 10 +13548.0 + 20 +3687.6 + 30 +0.0 + 11 +13708.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12CE + 8 +0 + 62 + 0 + 10 +13748.0 + 20 +3687.6 + 30 +0.0 + 11 +14068.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12CF + 8 +0 + 62 + 0 + 10 +14124.0 + 20 +3687.6 + 30 +0.0 + 11 +14284.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12D0 + 8 +0 + 62 + 0 + 10 +14324.0 + 20 +3687.6 + 30 +0.0 + 11 +14644.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12D1 + 8 +0 + 62 + 0 + 10 +14700.0 + 20 +3687.6 + 30 +0.0 + 11 +14860.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12D2 + 8 +0 + 62 + 0 + 10 +14900.0 + 20 +3687.6 + 30 +0.0 + 11 +15220.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12D3 + 8 +0 + 62 + 0 + 10 +15276.0 + 20 +3687.6 + 30 +0.0 + 11 +15436.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12D4 + 8 +0 + 62 + 0 + 10 +15476.0 + 20 +3687.6 + 30 +0.0 + 11 +15796.0 + 21 +3687.6 + 31 +0.0 + 0 +LINE + 5 +12D5 + 8 +0 + 62 + 0 + 10 +15852.0 + 20 +3687.6 + 30 +0.0 + 11 +15880.0 + 21 +3687.6 + 31 +0.0 + 0 +DIMENSION + 5 +12D6 + 8 +BEMASSUNG + 2 +*D30 + 10 +16435.0 + 20 +4060.0 + 30 +0.0 + 11 +16347.5 + 21 +3910.0 + 31 +0.0 + 12 +7035.0 + 22 +-430.0 + 32 +0.0 + 1 +12 + 13 +15875.0 + 23 +3760.0 + 33 +0.0 + 14 +15875.0 + 24 +4060.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +12D7 + 8 +BEMASSUNG + 2 +*D35 + 10 +17038.017251 + 20 +3745.0 + 30 +0.0 + 11 +16950.517251 + 21 +3635.0 + 31 +0.0 + 12 +7035.0 + 22 +-430.0 + 32 +0.0 + 70 + 128 + 1 +2 + 13 +15863.017251 + 23 +3685.0 + 33 +0.0 + 14 +15863.017251 + 24 +3745.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +12D8 + 8 +BEMASSUNG + 2 +*D37 + 10 +17038.0 + 20 +4230.0 + 30 +0.0 + 11 +16950.5 + 21 +3987.5 + 31 +0.0 + 12 +7035.0 + 22 +-430.0 + 32 +0.0 + 1 +18 + 13 +15860.0 + 23 +3745.0 + 33 +0.0 + 14 +15870.0 + 24 +4230.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +12D9 + 8 +BEMASSUNG + 2 +*D33 + 10 +17038.0 + 20 +4320.0 + 30 +0.0 + 11 +16950.5 + 21 +4275.0 + 31 +0.0 + 12 +7035.0 + 22 +-430.0 + 32 +0.0 + 1 +3 + 13 +15870.0 + 23 +4230.0 + 33 +0.0 + 14 +15865.0 + 24 +4320.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +12DA + 8 +BEMASSUNG + 2 +*D34 + 10 +17038.0 + 20 +4395.0 + 30 +0.0 + 11 +16950.5 + 21 +4357.5 + 31 +0.0 + 12 +7035.0 + 22 +-430.0 + 32 +0.0 + 1 +3 + 13 +15865.0 + 23 +4320.0 + 33 +0.0 + 14 +15855.0 + 24 +4395.0 + 34 +0.0 + 50 +90.0 + 0 +DIMENSION + 5 +12DB + 8 +BEMASSUNG + 2 +*D39 + 10 +10343.180412 + 20 +3936.423158 + 30 +0.0 + 11 +10275.0 + 21 +4023.923158 + 31 +0.0 + 12 +7035.0 + 22 +-525.0 + 32 +0.0 + 70 + 128 + 1 +1 + 13 +10392.72129 + 23 +3971.083823 + 33 +0.0 + 14 +10343.180412 + 24 +3971.083823 + 34 +0.0 + 0 +TEXT + 5 +12DC + 8 +BEMASSUNG + 10 +10290.0 + 20 +4040.0 + 30 +0.0 + 40 +62.5 + 1 +5 + 0 +TEXT + 5 +12DD + 8 +BEMASSUNG + 10 +13460.0 + 20 +6885.0 + 30 +0.0 + 40 +87.5 + 1 +FALZZIEGEL + 0 +TEXT + 5 +12DE + 8 +BEMASSUNG + 10 +13460.0 + 20 +6635.0 + 30 +0.0 + 40 +87.5 + 1 +KONTERLATTUNG NH S10 3/5 + 0 +TEXT + 5 +12DF + 8 +BEMASSUNG + 10 +13460.0 + 20 +6385.0 + 30 +0.0 + 40 +87.5 + 1 +LATTUNG NH S10 3/5 + 0 +TEXT + 5 +12E0 + 8 +BEMASSUNG + 10 +13460.0 + 20 +6135.0 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 0 +TEXT + 5 +12E1 + 8 +BEMASSUNG + 10 +13460.0 + 20 +5885.0 + 30 +0.0 + 40 +87.5 + 1 +MINRALFASER-WD + 0 +POLYLINE + 5 +12E2 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1715 + 8 +LEGENDE-35 + 10 +13365.0 + 20 +6930.0 + 30 +0.0 + 0 +VERTEX + 5 +1716 + 8 +LEGENDE-35 + 10 +11580.0 + 20 +6930.0 + 30 +0.0 + 0 +VERTEX + 5 +1717 + 8 +LEGENDE-35 + 10 +11580.0 + 20 +4520.0 + 30 +0.0 + 0 +SEQEND + 5 +1718 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +12E7 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1719 + 8 +LEGENDE-35 + 10 +13365.0 + 20 +6695.0 + 30 +0.0 + 0 +VERTEX + 5 +171A + 8 +LEGENDE-35 + 10 +12065.0 + 20 +6695.0 + 30 +0.0 + 0 +VERTEX + 5 +171B + 8 +LEGENDE-35 + 10 +12065.0 + 20 +4335.0 + 30 +0.0 + 0 +SEQEND + 5 +171C + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +12EC + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +171D + 8 +LEGENDE-35 + 10 +13365.0 + 20 +6440.0 + 30 +0.0 + 0 +VERTEX + 5 +171E + 8 +LEGENDE-35 + 10 +12460.0 + 20 +6440.0 + 30 +0.0 + 0 +VERTEX + 5 +171F + 8 +LEGENDE-35 + 10 +12460.0 + 20 +4360.0 + 30 +0.0 + 0 +SEQEND + 5 +1720 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +12F1 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1721 + 8 +LEGENDE-35 + 10 +13365.0 + 20 +6200.0 + 30 +0.0 + 0 +VERTEX + 5 +1722 + 8 +LEGENDE-35 + 10 +12815.0 + 20 +6200.0 + 30 +0.0 + 0 +VERTEX + 5 +1723 + 8 +LEGENDE-35 + 10 +12815.0 + 20 +4260.0 + 30 +0.0 + 0 +SEQEND + 5 +1724 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +12F6 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1725 + 8 +LEGENDE-35 + 10 +13360.0 + 20 +5925.0 + 30 +0.0 + 0 +VERTEX + 5 +1726 + 8 +LEGENDE-35 + 10 +13110.0 + 20 +5925.0 + 30 +0.0 + 0 +VERTEX + 5 +1727 + 8 +LEGENDE-35 + 10 +13110.0 + 20 +3915.0 + 30 +0.0 + 0 +SEQEND + 5 +1728 + 8 +LEGENDE-35 + 0 +TEXT + 5 +12FB + 8 +LEGENDE-35 + 10 +14190.0 + 20 +2995.0 + 30 +0.0 + 40 +87.5 + 1 +SCHALUNG + 0 +TEXT + 5 +12FC + 8 +LEGENDE-35 + 10 +14190.0 + 20 +2745.0 + 30 +0.0 + 40 +87.5 + 1 +SPARREN POS 1 NH S10 8/18 + 0 +TEXT + 5 +12FD + 8 +LEGENDE-35 + 10 +14190.0 + 20 +2495.0 + 30 +0.0 + 40 +87.5 + 1 +GIPSPUTZ + 0 +POLYLINE + 5 +12FE + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1729 + 8 +LEGENDE-35 + 10 +14035.0 + 20 +3030.0 + 30 +0.0 + 0 +VERTEX + 5 +172A + 8 +LEGENDE-35 + 10 +13310.0 + 20 +3030.0 + 30 +0.0 + 0 +VERTEX + 5 +172B + 8 +LEGENDE-35 + 10 +13310.0 + 20 +3700.0 + 30 +0.0 + 0 +SEQEND + 5 +172C + 8 +LEGENDE-35 + 0 +TEXT + 5 +1303 + 8 +LEGENDE-35 + 10 +14175.0 + 20 +3225.0 + 30 +0.0 + 40 +87.5 + 1 +PE-FOLIE + 0 +POLYLINE + 5 +1304 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +172D + 8 +LEGENDE-35 + 10 +14025.0 + 20 +3260.0 + 30 +0.0 + 0 +VERTEX + 5 +172E + 8 +LEGENDE-35 + 10 +13585.0 + 20 +3260.0 + 30 +0.0 + 0 +VERTEX + 5 +172F + 8 +LEGENDE-35 + 10 +13585.0 + 20 +3750.0 + 30 +0.0 + 0 +SEQEND + 5 +1730 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1309 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1731 + 8 +LEGENDE-35 + 10 +14030.0 + 20 +2800.0 + 30 +0.0 + 0 +VERTEX + 5 +1732 + 8 +LEGENDE-35 + 10 +12065.0 + 20 +2800.0 + 30 +0.0 + 0 +VERTEX + 5 +1733 + 8 +LEGENDE-35 + 10 +12065.0 + 20 +3920.0 + 30 +0.0 + 0 +SEQEND + 5 +1734 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +130E + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1735 + 8 +LEGENDE-35 + 10 +14030.0 + 20 +2545.0 + 30 +0.0 + 0 +VERTEX + 5 +1736 + 8 +LEGENDE-35 + 10 +12330.0 + 20 +2545.0 + 30 +0.0 + 0 +VERTEX + 5 +1737 + 8 +LEGENDE-35 + 10 +11960.0 + 20 +2710.0 + 30 +0.0 + 0 +SEQEND + 5 +1738 + 8 +LEGENDE-35 + 0 +TEXT + 5 +1313 + 8 +LEGENDE-35 + 10 +7030.0 + 20 +4475.0 + 30 +0.0 + 40 +87.5 + 1 +BLECHKEHLE + 0 +TEXT + 5 +1314 + 8 +LEGENDE-35 + 10 +7030.0 + 20 +4225.0 + 30 +0.0 + 40 +87.5 + 1 +GESIMSBRETT + 0 +TEXT + 5 +1315 + 8 +LEGENDE-35 + 10 +7420.0 + 20 +3590.0 + 30 +0.0 + 40 +87.5 + 1 +VMW KHLz-20-1.8-NF + 0 +TEXT + 5 +1316 + 8 +LEGENDE-35 + 10 +7420.0 + 20 +3340.0 + 30 +0.0 + 40 +87.5 + 1 +MW Mz-20-1.8-NF + 0 +TEXT + 5 +1317 + 8 +LEGENDE-35 + 10 +7420.0 + 20 +3090.0 + 30 +0.0 + 40 +87.5 + 1 +MINERALFASER-WD + 0 +POLYLINE + 5 +1318 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1739 + 8 +LEGENDE-35 + 10 +7960.0 + 20 +4515.0 + 30 +0.0 + 0 +VERTEX + 5 +173A + 8 +LEGENDE-35 + 10 +10070.0 + 20 +4515.0 + 30 +0.0 + 0 +VERTEX + 5 +173B + 8 +LEGENDE-35 + 10 +10070.0 + 20 +4935.0 + 30 +0.0 + 0 +VERTEX + 5 +173C + 8 +LEGENDE-35 + 10 +10465.0 + 20 +4935.0 + 30 +0.0 + 0 +VERTEX + 5 +173D + 8 +LEGENDE-35 + 10 +10465.0 + 20 +4410.0 + 30 +0.0 + 0 +SEQEND + 5 +173E + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +131F + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +173F + 8 +LEGENDE-35 + 10 +8020.0 + 20 +4275.0 + 30 +0.0 + 0 +VERTEX + 5 +1740 + 8 +LEGENDE-35 + 10 +10355.0 + 20 +4275.0 + 30 +0.0 + 0 +SEQEND + 5 +1741 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1323 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1742 + 8 +LEGENDE-35 + 10 +9040.0 + 20 +3625.0 + 30 +0.0 + 0 +VERTEX + 5 +1743 + 8 +LEGENDE-35 + 10 +10510.0 + 20 +3625.0 + 30 +0.0 + 0 +SEQEND + 5 +1744 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1327 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1745 + 8 +LEGENDE-35 + 10 +8700.0 + 20 +3390.0 + 30 +0.0 + 0 +VERTEX + 5 +1746 + 8 +LEGENDE-35 + 10 +11225.0 + 20 +3390.0 + 30 +0.0 + 0 +SEQEND + 5 +1747 + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +132B + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +1748 + 8 +LEGENDE-35 + 10 +8975.0 + 20 +3140.0 + 30 +0.0 + 0 +VERTEX + 5 +1749 + 8 +LEGENDE-35 + 10 +10310.0 + 20 +3140.0 + 30 +0.0 + 0 +VERTEX + 5 +174A + 8 +LEGENDE-35 + 10 +10910.0 + 20 +3265.0 + 30 +0.0 + 0 +SEQEND + 5 +174B + 8 +LEGENDE-35 + 0 +TEXT + 5 +1330 + 8 +LEGENDE-35 + 10 +7420.0 + 20 +2840.0 + 30 +0.0 + 40 +87.5 + 1 +ABSTANDHALTER + 0 +POLYLINE + 5 +1331 + 8 +LEGENDE-35 + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 0 +VERTEX + 5 +174C + 8 +LEGENDE-35 + 10 +8620.0 + 20 +2890.0 + 30 +0.0 + 0 +VERTEX + 5 +174D + 8 +LEGENDE-35 + 10 +10755.0 + 20 +2890.0 + 30 +0.0 + 0 +VERTEX + 5 +174E + 8 +LEGENDE-35 + 10 +10755.0 + 20 +3050.0 + 30 +0.0 + 0 +SEQEND + 5 +174F + 8 +LEGENDE-35 + 0 +POLYLINE + 5 +1336 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1337 + 8 +SCHRAFFUR + 10 +10345.0 + 20 +4455.0 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1338 + 8 +SCHRAFFUR + 10 +10345.0 + 20 +4455.0 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1339 + 8 +SCHRAFFUR + 10 +10350.041633 + 20 +4458.734896 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +133A + 8 +SCHRAFFUR + 10 +10354.589582 + 20 +4463.956186 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +133B + 8 +SCHRAFFUR + 10 +10358.588819 + 20 +4470.052247 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +133C + 8 +SCHRAFFUR + 10 +10361.984318 + 20 +4476.411454 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +133D + 8 +SCHRAFFUR + 10 +10364.721051 + 20 +4482.422183 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +133E + 8 +SCHRAFFUR + 10 +10366.743989 + 20 +4487.47281 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +133F + 8 +SCHRAFFUR + 10 +10367.998105 + 20 +4490.951711 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1340 + 8 +SCHRAFFUR + 10 +10368.428373 + 20 +4492.247261 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1341 + 8 +SCHRAFFUR + 10 +10359.053685 + 20 +4462.434196 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1342 + 8 +SCHRAFFUR + 10 +10368.428373 + 20 +4492.247261 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1343 + 8 +SCHRAFFUR + 10 +10368.428373 + 20 +4492.247261 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1344 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1345 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1346 + 8 +SCHRAFFUR + 10 +10344.565635 + 20 +4407.067149 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1347 + 8 +SCHRAFFUR + 10 +10344.565635 + 20 +4407.067149 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1348 + 8 +SCHRAFFUR + 10 +10350.57126 + 20 +4411.658898 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1349 + 8 +SCHRAFFUR + 10 +10355.857812 + 20 +4417.608199 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +134A + 8 +SCHRAFFUR + 10 +10360.505189 + 20 +4424.675485 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +134B + 8 +SCHRAFFUR + 10 +10364.593286 + 20 +4432.621188 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +134C + 8 +SCHRAFFUR + 10 +10368.202001 + 20 +4441.205741 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +134D + 8 +SCHRAFFUR + 10 +10371.411229 + 20 +4450.189576 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +134E + 8 +SCHRAFFUR + 10 +10374.300869 + 20 +4459.333125 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +134F + 8 +SCHRAFFUR + 10 +10376.950816 + 20 +4468.396822 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1350 + 8 +SCHRAFFUR + 10 +10361.610418 + 20 +4417.288794 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1351 + 8 +SCHRAFFUR + 10 +10370.132861 + 20 +4444.546383 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1352 + 8 +SCHRAFFUR + 10 +10376.950816 + 20 +4468.396822 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1353 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1354 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1355 + 8 +SCHRAFFUR + 10 +10345.417879 + 20 +4355.959121 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1356 + 8 +SCHRAFFUR + 10 +10345.417879 + 20 +4355.959121 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1357 + 8 +SCHRAFFUR + 10 +10350.907497 + 20 +4361.139812 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1358 + 8 +SCHRAFFUR + 10 +10355.937709 + 20 +4367.059167 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1359 + 8 +SCHRAFFUR + 10 +10360.608385 + 20 +4373.657295 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135A + 8 +SCHRAFFUR + 10 +10365.019395 + 20 +4380.874307 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135B + 8 +SCHRAFFUR + 10 +10369.27061 + 20 +4388.650312 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135C + 8 +SCHRAFFUR + 10 +10373.461899 + 20 +4396.925419 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135D + 8 +SCHRAFFUR + 10 +10377.693131 + 20 +4405.63974 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135E + 8 +SCHRAFFUR + 10 +10382.064178 + 20 +4414.733383 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +135F + 8 +SCHRAFFUR + 10 +10360.758174 + 20 +4368.736177 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1360 + 8 +SCHRAFFUR + 10 +10370.132861 + 20 +4390.03114 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1361 + 8 +SCHRAFFUR + 10 +10382.064178 + 20 +4414.733383 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1362 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1363 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1364 + 8 +SCHRAFFUR + 10 +10341.156658 + 20 +4309.961916 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1365 + 8 +SCHRAFFUR + 10 +10341.156658 + 20 +4309.961916 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1366 + 8 +SCHRAFFUR + 10 +10350.005317 + 20 +4314.542 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1367 + 8 +SCHRAFFUR + 10 +10357.455771 + 20 +4320.888911 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1368 + 8 +SCHRAFFUR + 10 +10363.627865 + 20 +4328.453636 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1369 + 8 +SCHRAFFUR + 10 +10368.641447 + 20 +4336.68716 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136A + 8 +SCHRAFFUR + 10 +10372.61636 + 20 +4345.040468 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136B + 8 +SCHRAFFUR + 10 +10375.672451 + 20 +4352.964548 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136C + 8 +SCHRAFFUR + 10 +10377.929566 + 20 +4359.910384 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136D + 8 +SCHRAFFUR + 10 +10379.507549 + 20 +4365.328962 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +136E + 8 +SCHRAFFUR + 10 +10366.723884 + 20 +4319.331691 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +136F + 8 +SCHRAFFUR + 10 +10376.098572 + 20 +4353.403775 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1370 + 8 +SCHRAFFUR + 10 +10379.507549 + 20 +4365.328962 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1371 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1372 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1373 + 8 +SCHRAFFUR + 10 +10342.008902 + 20 +4258.002084 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1374 + 8 +SCHRAFFUR + 10 +10342.008902 + 20 +4258.002084 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1375 + 8 +SCHRAFFUR + 10 +10349.171382 + 20 +4262.322634 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1376 + 8 +SCHRAFFUR + 10 +10355.365109 + 20 +4267.491661 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1377 + 8 +SCHRAFFUR + 10 +10360.659991 + 20 +4273.319504 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1378 + 8 +SCHRAFFUR + 10 +10365.125939 + 20 +4279.616506 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1379 + 8 +SCHRAFFUR + 10 +10368.832861 + 20 +4286.193005 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +137A + 8 +SCHRAFFUR + 10 +10371.850668 + 20 +4292.859343 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +137B + 8 +SCHRAFFUR + 10 +10374.249268 + 20 +4299.42586 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +137C + 8 +SCHRAFFUR + 10 +10376.098572 + 20 +4305.702897 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +137D + 8 +SCHRAFFUR + 10 +10362.462662 + 20 +4268.223663 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +137E + 8 +SCHRAFFUR + 10 +10371.83735 + 20 +4289.518691 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +137F + 8 +SCHRAFFUR + 10 +10376.098572 + 20 +4305.702897 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +1380 + 8 +SCHRAFFUR + 0 +POLYLINE + 5 +1381 + 8 +SCHRAFFUR + 66 + 1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 70 + 4 + 75 + 6 + 0 +VERTEX + 5 +1382 + 8 +SCHRAFFUR + 10 +10342.861146 + 20 +4210.301271 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +1383 + 8 +SCHRAFFUR + 10 +10342.861146 + 20 +4210.301271 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1384 + 8 +SCHRAFFUR + 10 +10350.235023 + 20 +4214.828117 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1385 + 8 +SCHRAFFUR + 10 +10356.470363 + 20 +4220.003799 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1386 + 8 +SCHRAFFUR + 10 +10361.706987 + 20 +4225.678584 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1387 + 8 +SCHRAFFUR + 10 +10366.084714 + 20 +4231.702742 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1388 + 8 +SCHRAFFUR + 10 +10369.743365 + 20 +4237.926541 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +1389 + 8 +SCHRAFFUR + 10 +10372.822759 + 20 +4244.20025 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138A + 8 +SCHRAFFUR + 10 +10375.462718 + 20 +4250.374139 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138B + 8 +SCHRAFFUR + 10 +10377.80306 + 20 +4256.298476 + 30 +0.0 + 70 + 8 + 0 +VERTEX + 5 +138C + 8 +SCHRAFFUR + 10 +10364.167151 + 20 +4221.374654 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +138D + 8 +SCHRAFFUR + 10 +10371.83735 + 20 +4240.966074 + 30 +0.0 + 70 + 16 + 0 +VERTEX + 5 +138E + 8 +SCHRAFFUR + 10 +10377.80306 + 20 +4256.298476 + 30 +0.0 + 70 + 16 + 0 +SEQEND + 5 +138F + 8 +SCHRAFFUR + 0 +TEXT + 5 +1390 + 8 +LEGENDE-70 + 10 +13304.009936 + 20 +7784.937687 + 30 +0.0 + 40 +175.0 + 1 +D6 ORTGANG + 0 +ENDSEC + 0 +EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/hatch_1.dxf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/hatch_1.dxf new file mode 100644 index 0000000..768d654 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/hatch_1.dxf @@ -0,0 +1,1816 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1014 + 9 +$ACADMAINTVER + 70 + 0 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +46.500056 + 20 +65.682692 + 30 +0.0 + 9 +$EXTMAX + 10 +349.399865 + 20 +259.875 + 30 +0.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +420.0 + 20 +297.0 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$DRAGMODE + 70 + 2 + 9 +$LTSCALE + 40 +1.0 + 9 +$OSMODE + 70 + 0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +2.5 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1.0 + 9 +$DELOBJ + 70 + 1 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +3.75 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +0.0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +2.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 4 + 9 +$DIMALTF + 40 +0.0394 + 9 +$DIMLFAC + 40 +1.0 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +STANDARD + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 1 + 9 +$DIMTZIN + 70 + 0 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMFIT + 70 + 3 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMUNIT + 70 + 8 + 9 +$DIMDEC + 70 + 4 + 9 +$DIMTDEC + 70 + 4 + 9 +$DIMALTU + 70 + 8 + 9 +$DIMALTTD + 70 + 4 + 9 +$DIMTXSTY + 7 +STANDARD + 9 +$DIMAUNIT + 70 + 0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 4 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +10.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 0 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$BLIPMODE + 70 + 0 + 9 +$CHAMFERA + 40 +10.0 + 9 +$CHAMFERB + 40 +10.0 + 9 +$CHAMFERC + 40 +20.0 + 9 +$CHAMFERD + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2454014.587737731 + 9 +$TDUPDATE + 40 +2454014.589464236 + 9 +$TDINDWG + 40 +0.0017265046 + 9 +$TDUSRTIMER + 40 +0.0017265046 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +0.0 + 9 +$COORDS + 70 + 1 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$ATTDIA + 70 + 0 + 9 +$ATTREQ + 70 + 1 + 9 +$HANDLING + 70 + 1 + 9 +$HANDSEED + 5 +3B + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 48 + 9 +$PINSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+20 + 20 +1.000000E+20 + 30 +1.000000E+20 + 9 +$PEXTMAX + 10 +-1.000000E+20 + 20 +-1.000000E+20 + 30 +-1.000000E+20 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +420.0 + 20 +297.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$PICKSTYLE + 70 + 1 + 9 +$CMLSTYLE + 2 +STANDARD + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20.0 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +CLASS + 1 +LWPOLYLINE + 2 +AcDbPolyline + 3 +"AutoCAD" + 90 + 0 +280 + 0 +281 + 1 + 0 +CLASS + 1 +DICTIONARYVAR + 2 +AcDbDictionaryVar + 3 +"AutoCAD" + 90 + 0 +280 + 0 +281 + 0 + 0 +CLASS + 1 +HATCH + 2 +AcDbHatch + 3 +"ACAD_SEDONA" + 90 + 0 +280 + 0 +281 + 1 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +100 +AcDbSymbolTable + 70 + 2 + 0 +VPORT + 5 +3A +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*ACTIVE + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +230.422067 + 22 +148.5 + 13 +0.0 + 23 +0.0 + 14 +10.0 + 24 +10.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +297.0 + 41 +1.551664 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +100 +AcDbSymbolTable + 70 + 1 + 0 +LTYPE + 5 +12 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BYBLOCK + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 5 +13 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BYLAYER + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 5 +14 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CONTINUOUS + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +100 +AcDbSymbolTable + 70 + 1 + 0 +LAYER + 5 +E +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +100 +AcDbSymbolTable + 70 + 1 + 0 +STYLE + 5 +F +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +STANDARD + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +2.5 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +100 +AcDbSymbolTable + 70 + 1 + 0 +APPID + 5 +10 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +100 +AcDbSymbolTable + 70 + 1 + 0 +DIMSTYLE +105 +1D +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +STANDARD + 70 + 0 + 3 + + 4 + + 5 + + 6 + + 7 + + 40 +1.0 + 41 +0.18 + 42 +0.0625 + 43 +0.38 + 44 +0.18 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 +140 +0.18 +141 +0.09 +142 +0.0 +143 +25.4 +144 +1.0 +145 +0.0 +146 +1.0 +147 +0.09 + 71 + 0 + 72 + 0 + 73 + 1 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 +270 + 2 +271 + 4 +272 + 4 +273 + 2 +274 + 2 +340 +F +275 + 0 +280 + 0 +281 + 0 +282 + 0 +283 + 1 +284 + 0 +285 + 0 +286 + 0 +287 + 3 +288 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +100 +AcDbSymbolTable + 70 + 0 + 0 +BLOCK_RECORD + 5 +18 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*MODEL_SPACE + 0 +BLOCK_RECORD + 5 +15 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*PAPER_SPACE + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +19 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*MODEL_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*MODEL_SPACE + 1 + + 0 +ENDBLK + 5 +1A +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +16 +100 +AcDbEntity + 67 + 1 + 8 +0 +100 +AcDbBlockBegin + 2 +*PAPER_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*PAPER_SPACE + 1 + + 0 +ENDBLK + 5 +17 +100 +AcDbEntity + 67 + 1 + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LWPOLYLINE + 5 +20 +102 +{ACAD_REACTORS +330 +39 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +46.500056 + 20 +259.875 + 10 +349.399865 + 20 +259.875 + 10 +349.399865 + 20 +65.682692 + 10 +46.500056 + 20 +65.682692 + 0 +CIRCLE + 5 +21 +102 +{ACAD_REACTORS +330 +39 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbCircle + 10 +79.231939 + 20 +225.086539 + 30 +0.0 + 40 +24.021373 + 0 +ELLIPSE + 5 +22 +102 +{ACAD_REACTORS +330 +39 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbEllipse + 10 +218.732109 + 20 +147.721154 + 30 +0.0 + 11 +-25.19835455225825 + 21 +12.98076909778717 + 31 +0.0 +210 +0.0 +220 +0.0 +230 +0.9999999999999998 + 40 +0.3253 + 41 +0.0 + 42 +6.283185307179586 + 0 +HATCH + 5 +39 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +AR-RSHKE + 70 + 0 + 71 + 1 + 91 + 3 + 92 + 7 + 72 + 0 + 73 + 1 + 93 + 4 + 10 +349.399864802863 + 20 +259.8750000345757 + 10 +46.50005623029779 + 20 +259.8750000345757 + 10 +46.50005623029779 + 20 +65.682691980556 + 10 +349.3998648028629 + 20 +65.682691980556 + 97 + 1 +330 +20 + 92 + 20 + 93 + 1 + 72 + 3 + 10 +218.732109 + 20 +147.721154 + 11 +-25.198355 + 21 +12.980769 + 40 +0.3253 + 50 +0.0 + 51 +360.0 + 73 + 1 + 97 + 1 +330 +22 + 92 + 22 + 72 + 1 + 73 + 1 + 93 + 2 + 10 +55.21056564949481 + 20 +225.0865387142047 + 42 +-1.0 + 10 +103.2533117502446 + 20 +225.0865387142047 + 42 +-1.0 + 97 + 1 +330 +21 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +0.1 + 77 + 0 + 78 + 9 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +64.77000000000001 + 46 +30.48 + 79 + 6 + 49 +15.24 + 49 +-12.7 + 49 +17.78 + 49 +-7.62 + 49 +22.86 + 49 +-10.16 + 53 +0.0 + 43 +15.24 + 44 +1.27 + 45 +64.77000000000001 + 46 +30.48 + 79 + 4 + 49 +12.7 + 49 +-48.26 + 49 +10.16 + 49 +-15.24 + 53 +0.0 + 43 +45.72 + 44 +-1.905 + 45 +64.77000000000001 + 46 +30.48 + 79 + 2 + 49 +7.62 + 49 +-78.74 + 53 +90.0 + 43 +0.0 + 44 +0.0 + 45 +-21.59 + 46 +30.48 + 79 + 2 + 49 +29.21 + 49 +-92.71 + 53 +90.0 + 43 +15.24 + 44 +0.0 + 45 +-21.59 + 46 +30.48 + 79 + 2 + 49 +28.575 + 49 +-93.345 + 53 +90.0 + 43 +27.94 + 44 +0.0 + 45 +-21.59 + 46 +30.48 + 79 + 2 + 49 +26.67 + 49 +-95.25 + 53 +90.0 + 43 +45.72 + 44 +-1.905 + 45 +-21.59 + 46 +30.48 + 79 + 2 + 49 +29.21 + 49 +-92.71 + 53 +90.0 + 43 +53.34 + 44 +-1.905 + 45 +-21.59 + 46 +30.48 + 79 + 2 + 49 +29.21 + 49 +-92.71 + 53 +90.0 + 43 +76.2 + 44 +0.0 + 45 +-21.59 + 46 +30.48 + 79 + 2 + 49 +27.94 + 49 +-93.98 + 47 +0.519231 + 98 + 3 + 10 +211.718134 + 20 +222.490385 + 10 +211.718134 + 20 +222.490385 + 10 +211.718134 + 20 +222.490385 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +100 +AcDbDictionary + 3 +ACAD_GROUP +350 +D + 3 +ACAD_MLINESTYLE +350 +1B + 3 +ACDBVARIABLEDICTIONARY +350 +24 + 0 +DICTIONARY + 5 +D +102 +{ACAD_REACTORS +330 +C +102 +} +100 +AcDbDictionary + 0 +DICTIONARY + 5 +1B +102 +{ACAD_REACTORS +330 +C +102 +} +100 +AcDbDictionary + 3 +STANDARD +350 +1C + 0 +DICTIONARY + 5 +24 +102 +{ACAD_REACTORS +330 +C +102 +} +100 +AcDbDictionary + 3 +SORTENTS +350 +25 + 0 +MLINESTYLE + 5 +1C +102 +{ACAD_REACTORS +330 +1B +102 +} +100 +AcDbMlineStyle + 2 +STANDARD + 70 + 0 + 3 + + 62 + 256 + 51 +90.0 + 52 +90.0 + 71 + 2 + 49 +0.5 + 62 + 256 + 6 +BYLAYER + 49 +-0.5 + 62 + 256 + 6 +BYLAYER + 0 +DICTIONARYVAR + 5 +25 +102 +{ACAD_REACTORS +330 +24 +102 +} +100 +DictionaryVariables +280 + 0 + 1 +96 + 0 +ENDSEC + 0 +EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/hatch_16.dxf b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/hatch_16.dxf new file mode 100644 index 0000000..52d690c --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/kabeja/samples/dxf/hatch_16.dxf @@ -0,0 +1,4930 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1014 + 9 +$ACADMAINTVER + 70 + 0 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +-0.012816 + 20 +-0.009063 + 30 +-0.001526 + 9 +$EXTMAX + 10 +460.003053 + 20 +260.006425 + 30 +0.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +420.0 + 20 +297.0 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$DRAGMODE + 70 + 2 + 9 +$LTSCALE + 40 +1.0 + 9 +$OSMODE + 70 + 0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +2.5 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1.0 + 9 +$DELOBJ + 70 + 1 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +3.75 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +0.0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +2.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 4 + 9 +$DIMALTF + 40 +0.0394 + 9 +$DIMLFAC + 40 +1.0 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +STANDARD + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 1 + 9 +$DIMTZIN + 70 + 0 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMFIT + 70 + 3 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMUNIT + 70 + 8 + 9 +$DIMDEC + 70 + 4 + 9 +$DIMTDEC + 70 + 4 + 9 +$DIMALTU + 70 + 8 + 9 +$DIMALTTD + 70 + 4 + 9 +$DIMTXSTY + 7 +STANDARD + 9 +$DIMAUNIT + 70 + 0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 4 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +10.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 0 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$BLIPMODE + 70 + 0 + 9 +$CHAMFERA + 40 +10.0 + 9 +$CHAMFERB + 40 +10.0 + 9 +$CHAMFERC + 40 +20.0 + 9 +$CHAMFERD + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2453993.462424306 + 9 +$TDUPDATE + 40 +2453993.471010185 + 9 +$TDINDWG + 40 +0.0085858796 + 9 +$TDUSRTIMER + 40 +0.0085858796 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +0.0 + 9 +$COORDS + 70 + 1 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$ATTDIA + 70 + 0 + 9 +$ATTREQ + 70 + 1 + 9 +$HANDLING + 70 + 1 + 9 +$HANDSEED + 5 +74 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 48 + 9 +$PINSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+20 + 20 +1.000000E+20 + 30 +1.000000E+20 + 9 +$PEXTMAX + 10 +-1.000000E+20 + 20 +-1.000000E+20 + 30 +-1.000000E+20 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +420.0 + 20 +297.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$PICKSTYLE + 70 + 1 + 9 +$CMLSTYLE + 2 +STANDARD + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20.0 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +CLASS + 1 +LWPOLYLINE + 2 +AcDbPolyline + 3 +"AutoCAD" + 90 + 0 +280 + 0 +281 + 1 + 0 +CLASS + 1 +DICTIONARYVAR + 2 +AcDbDictionaryVar + 3 +"AutoCAD" + 90 + 0 +280 + 0 +281 + 0 + 0 +CLASS + 1 +HATCH + 2 +AcDbHatch + 3 +"ACAD_SEDONA" + 90 + 0 +280 + 0 +281 + 1 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +100 +AcDbSymbolTable + 70 + 4 + 0 +VPORT + 5 +73 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*ACTIVE + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +229.995118 + 22 +178.148646 + 13 +0.0 + 23 +0.0 + 14 +10.0 + 24 +10.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +299.676809 + 41 +1.578711 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +100 +AcDbSymbolTable + 70 + 1 + 0 +LTYPE + 5 +12 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BYBLOCK + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 5 +13 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BYLAYER + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 5 +14 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CONTINUOUS + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +100 +AcDbSymbolTable + 70 + 1 + 0 +LAYER + 5 +E +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +100 +AcDbSymbolTable + 70 + 1 + 0 +STYLE + 5 +F +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +STANDARD + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +2.5 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +100 +AcDbSymbolTable + 70 + 1 + 0 +APPID + 5 +10 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +100 +AcDbSymbolTable + 70 + 1 + 0 +DIMSTYLE +105 +1D +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +STANDARD + 70 + 0 + 3 + + 4 + + 5 + + 6 + + 7 + + 40 +1.0 + 41 +0.18 + 42 +0.0625 + 43 +0.38 + 44 +0.18 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 +140 +0.18 +141 +0.09 +142 +0.0 +143 +25.4 +144 +1.0 +145 +0.0 +146 +1.0 +147 +0.09 + 71 + 0 + 72 + 0 + 73 + 1 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 +270 + 2 +271 + 4 +272 + 4 +273 + 2 +274 + 2 +340 +F +275 + 0 +280 + 0 +281 + 0 +282 + 0 +283 + 1 +284 + 0 +285 + 0 +286 + 0 +287 + 3 +288 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +100 +AcDbSymbolTable + 70 + 0 + 0 +BLOCK_RECORD + 5 +18 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*MODEL_SPACE + 0 +BLOCK_RECORD + 5 +15 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*PAPER_SPACE + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +19 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*MODEL_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*MODEL_SPACE + 1 + + 0 +ENDBLK + 5 +1A +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +16 +100 +AcDbEntity + 67 + 1 + 8 +0 +100 +AcDbBlockBegin + 2 +*PAPER_SPACE + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*PAPER_SPACE + 1 + + 0 +ENDBLK + 5 +17 +100 +AcDbEntity + 67 + 1 + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LWPOLYLINE + 5 +31 +102 +{ACAD_REACTORS +330 +6D +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +0.0 + 20 +0.0 + 10 +100.0 + 20 +0.0 + 10 +100.0 + 20 +50.0 + 10 +0.0 + 20 +50.0 + 0 +LWPOLYLINE + 5 +41 +102 +{ACAD_REACTORS +330 +62 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +0.0 + 20 +70.0 + 10 +100.0 + 20 +70.0 + 10 +100.0 + 20 +120.0 + 10 +0.0 + 20 +120.0 + 0 +LWPOLYLINE + 5 +42 +102 +{ACAD_REACTORS +330 +5B +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +0.0 + 20 +140.0 + 10 +100.0 + 20 +140.0 + 10 +100.0 + 20 +190.0 + 10 +0.0 + 20 +190.0 + 0 +LWPOLYLINE + 5 +43 +102 +{ACAD_REACTORS +330 +52 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +0.0 + 20 +210.0 + 10 +100.0 + 20 +210.0 + 10 +100.0 + 20 +260.0 + 10 +0.0 + 20 +260.0 + 0 +LWPOLYLINE + 5 +44 +102 +{ACAD_REACTORS +330 +6E +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +120.0 + 20 +0.0 + 10 +220.0 + 20 +0.0 + 10 +220.0 + 20 +50.0 + 10 +120.0 + 20 +50.0 + 0 +LWPOLYLINE + 5 +45 +102 +{ACAD_REACTORS +330 +66 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +120.0 + 20 +70.0 + 10 +220.0 + 20 +70.0 + 10 +220.0 + 20 +120.0 + 10 +120.0 + 20 +120.0 + 0 +LWPOLYLINE + 5 +46 +102 +{ACAD_REACTORS +330 +5C +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +120.0 + 20 +140.0 + 10 +220.0 + 20 +140.0 + 10 +220.0 + 20 +190.0 + 10 +120.0 + 20 +190.0 + 0 +LWPOLYLINE + 5 +47 +102 +{ACAD_REACTORS +330 +53 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +120.0 + 20 +210.0 + 10 +220.0 + 20 +210.0 + 10 +220.0 + 20 +260.0 + 10 +120.0 + 20 +260.0 + 0 +LWPOLYLINE + 5 +48 +102 +{ACAD_REACTORS +330 +70 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +240.0 + 20 +0.0 + 10 +340.0 + 20 +0.0 + 10 +340.0 + 20 +50.0 + 10 +240.0 + 20 +50.0 + 0 +LWPOLYLINE + 5 +49 +102 +{ACAD_REACTORS +330 +68 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +240.0 + 20 +70.0 + 10 +340.0 + 20 +70.0 + 10 +340.0 + 20 +120.0 + 10 +240.0 + 20 +120.0 + 0 +LWPOLYLINE + 5 +4A +102 +{ACAD_REACTORS +330 +5D +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +240.0 + 20 +140.0 + 10 +340.0 + 20 +140.0 + 10 +340.0 + 20 +190.0 + 10 +240.0 + 20 +190.0 + 0 +LWPOLYLINE + 5 +4B +102 +{ACAD_REACTORS +330 +54 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +240.0 + 20 +210.0 + 10 +340.0 + 20 +210.0 + 10 +340.0 + 20 +260.0 + 10 +240.0 + 20 +260.0 + 0 +LWPOLYLINE + 5 +4C +102 +{ACAD_REACTORS +330 +71 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +360.0 + 20 +0.0 + 10 +460.0 + 20 +0.0 + 10 +460.0 + 20 +50.0 + 10 +360.0 + 20 +50.0 + 0 +LWPOLYLINE + 5 +4D +102 +{ACAD_REACTORS +330 +6B +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +360.0 + 20 +70.0 + 10 +460.0 + 20 +70.0 + 10 +460.0 + 20 +120.0 + 10 +360.0 + 20 +120.0 + 0 +LWPOLYLINE + 5 +4E +102 +{ACAD_REACTORS +330 +60 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +360.0 + 20 +140.0 + 10 +460.0 + 20 +140.0 + 10 +460.0 + 20 +190.0 + 10 +360.0 + 20 +190.0 + 0 +LWPOLYLINE + 5 +4F +102 +{ACAD_REACTORS +330 +57 +102 +} +100 +AcDbEntity + 8 +0 +100 +AcDbPolyline + 90 + 4 + 70 + 1 + 43 +0.0 + 10 +360.0 + 20 +210.0 + 10 +460.0 + 20 +210.0 + 10 +460.0 + 20 +260.0 + 10 +360.0 + 20 +260.0 + 0 +HATCH + 5 +52 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ANGLE + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +0.0 + 20 +210.0 + 11 +100.0 + 21 +210.0 + 72 + 1 + 10 +100.0 + 20 +210.0 + 11 +100.0 + 21 +260.0 + 72 + 1 + 10 +100.0 + 20 +260.0 + 11 +0.0 + 21 +260.0 + 72 + 1 + 10 +0.0 + 20 +260.0 + 11 +0.0 + 21 +210.0 + 97 + 1 +330 +43 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 2 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +6.985 + 79 + 2 + 49 +5.08 + 49 +-1.905 + 53 +90.0 + 43 +0.0 + 44 +0.0 + 45 +-6.985 + 46 +0.0000000000000004 + 79 + 2 + 49 +5.08 + 49 +-1.905 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +53 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ANSI31 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +120.0 + 20 +210.0 + 11 +220.0 + 21 +210.0 + 72 + 1 + 10 +220.0 + 20 +210.0 + 11 +220.0 + 21 +260.0 + 72 + 1 + 10 +220.0 + 20 +260.0 + 11 +120.0 + 21 +260.0 + 72 + 1 + 10 +120.0 + 20 +260.0 + 11 +120.0 + 21 +210.0 + 97 + 1 +330 +47 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 1 + 53 +45.0 + 43 +0.0 + 44 +0.0 + 45 +-2.245064030267287 + 46 +2.245064030267288 + 79 + 0 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +54 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ANSI32 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +240.0 + 20 +210.0 + 11 +340.0 + 21 +210.0 + 72 + 1 + 10 +340.0 + 20 +210.0 + 11 +340.0 + 21 +260.0 + 72 + 1 + 10 +340.0 + 20 +260.0 + 11 +240.0 + 21 +260.0 + 72 + 1 + 10 +240.0 + 20 +260.0 + 11 +240.0 + 21 +210.0 + 97 + 1 +330 +4B + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 2 + 53 +45.0 + 43 +0.0 + 44 +0.0 + 45 +-6.735192090801865 + 46 +6.735192090801866 + 79 + 0 + 53 +45.0 + 43 +4.49013 + 44 +0.0 + 45 +-6.735192090801865 + 46 +6.735192090801866 + 79 + 0 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +57 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ANSI33 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +360.0 + 20 +210.0 + 11 +460.0 + 21 +210.0 + 72 + 1 + 10 +460.0 + 20 +210.0 + 11 +460.0 + 21 +260.0 + 72 + 1 + 10 +460.0 + 20 +260.0 + 11 +360.0 + 21 +260.0 + 72 + 1 + 10 +360.0 + 20 +260.0 + 11 +360.0 + 21 +210.0 + 97 + 1 +330 +4F + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 2 + 53 +45.0 + 43 +0.0 + 44 +0.0 + 45 +-4.490128060534575 + 46 +4.490128060534576 + 79 + 0 + 53 +45.0 + 43 +4.49013 + 44 +0.0 + 45 +-4.490128060534575 + 46 +4.490128060534576 + 79 + 2 + 49 +3.175 + 49 +-1.5875 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +5B +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +AR-CONC + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +0.0 + 20 +140.0 + 11 +100.0 + 21 +140.0 + 72 + 1 + 10 +100.0 + 20 +140.0 + 11 +100.0 + 21 +190.0 + 72 + 1 + 10 +100.0 + 20 +190.0 + 11 +0.0 + 21 +190.0 + 72 + 1 + 10 +0.0 + 20 +190.0 + 11 +0.0 + 21 +140.0 + 97 + 1 +330 +42 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +0.1 + 77 + 0 + 78 + 13 + 53 +50.0 + 43 +0.0 + 44 +0.0 + 45 +18.2184668996004 + 46 +-1.593908553890308 + 79 + 2 + 49 +1.905 + 49 +-20.955 + 53 +355.0 + 43 +0.0 + 44 +0.0 + 45 +-3.524282597566699 + 46 +19.10566428821799 + 79 + 2 + 49 +1.524 + 49 +-16.764 + 53 +100.451 + 43 +1.5182 + 44 +-0.132825 + 45 +14.69425016659592 + 46 +17.51166878202918 + 79 + 2 + 49 +1.619 + 49 +-17.809 + 53 +46.1842 + 43 +0.0 + 44 +5.08 + 45 +27.10790408921299 + 46 +-4.204232793272715 + 79 + 2 + 49 +2.8575 + 49 +-31.4325 + 53 +96.6356 + 43 +2.25899 + 44 +4.72965 + 45 +23.74042344662371 + 46 +24.74255558900492 + 79 + 2 + 49 +2.4285 + 49 +-26.7135 + 53 +351.184 + 43 +0.0 + 44 +5.08 + 45 +23.74046058139339 + 46 +24.74251178605976 + 79 + 2 + 49 +2.286 + 49 +-25.146 + 53 +21.0 + 43 +2.54 + 44 +3.81 + 45 +15.16148798353833 + 46 +-10.22655185167625 + 79 + 2 + 49 +1.905 + 49 +-20.955 + 53 +326.0 + 43 +2.54 + 44 +3.81 + 45 +6.180202834764707 + 46 +18.41879661223192 + 79 + 2 + 49 +1.524 + 49 +-16.764 + 53 +71.4514 + 43 +3.80345 + 44 +2.95779 + 45 +21.34164907701245 + 46 +8.192285771605744 + 79 + 2 + 49 +1.619 + 49 +-17.809 + 53 +37.5 + 43 +0.0 + 44 +0.0 + 45 +0.3088603250591817 + 46 +8.455503887315311 + 79 + 6 + 49 +0.0 + 49 +-16.5608 + 49 +0.0 + 49 +-17.018 + 49 +0.0 + 49 +-16.8275 + 53 +7.5 + 43 +0.0 + 44 +0.0 + 45 +6.681966251030575 + 46 +10.01805748181195 + 79 + 6 + 49 +0.0 + 49 +-9.7028 + 49 +0.0 + 49 +-16.1798 + 49 +0.0 + 49 +-6.4135 + 53 +327.5 + 43 +-5.6642 + 44 +0.0 + 45 +13.55905951668714 + 46 +-0.5728743992673459 + 79 + 6 + 49 +0.0 + 49 +-6.35 + 49 +0.0 + 49 +-19.812 + 49 +0.0 + 49 +-26.289 + 53 +317.5 + 43 +-8.2042 + 44 +0.0 + 45 +14.8129181386018 + 46 +2.542649103333301 + 79 + 6 + 49 +0.0 + 49 +-8.255 + 49 +0.0 + 49 +-13.1572 + 49 +0.0 + 49 +-18.669 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +5C +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +AR-B816 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +120.0 + 20 +140.0 + 11 +220.0 + 21 +140.0 + 72 + 1 + 10 +220.0 + 20 +140.0 + 11 +220.0 + 21 +190.0 + 72 + 1 + 10 +220.0 + 20 +190.0 + 11 +120.0 + 21 +190.0 + 72 + 1 + 10 +120.0 + 20 +190.0 + 11 +120.0 + 21 +140.0 + 97 + 1 +330 +46 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +0.1 + 77 + 0 + 78 + 2 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +20.32 + 79 + 0 + 53 +90.0 + 43 +0.0 + 44 +0.0 + 45 +-20.32 + 46 +20.32 + 79 + 2 + 49 +20.32 + 49 +-20.32 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +5D +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +AR-PARQ1 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +240.0 + 20 +140.0 + 11 +340.0 + 21 +140.0 + 72 + 1 + 10 +340.0 + 20 +140.0 + 11 +340.0 + 21 +190.0 + 72 + 1 + 10 +340.0 + 20 +190.0 + 11 +240.0 + 21 +190.0 + 72 + 1 + 10 +240.0 + 20 +190.0 + 11 +240.0 + 21 +140.0 + 97 + 1 +330 +4A + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +0.1 + 77 + 0 + 78 + 14 + 53 +90.0 + 43 +0.0 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +90.0 + 43 +5.08 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +90.0 + 43 +10.16 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +90.0 + 43 +15.24 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +90.0 + 43 +20.32 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +90.0 + 43 +25.4 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +90.0 + 43 +30.48 + 44 +0.0 + 45 +-30.48 + 46 +30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +30.48 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +35.56 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +40.64 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +45.72 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +50.8 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +55.88 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 53 +0.0 + 43 +0.0 + 44 +60.96 + 45 +30.48 + 46 +-30.48 + 79 + 2 + 49 +30.48 + 49 +-30.48 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +60 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +AR-RROOF + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +360.0 + 20 +140.0 + 11 +460.0 + 21 +140.0 + 72 + 1 + 10 +460.0 + 20 +140.0 + 11 +460.0 + 21 +190.0 + 72 + 1 + 10 +460.0 + 20 +190.0 + 11 +360.0 + 21 +190.0 + 72 + 1 + 10 +360.0 + 20 +190.0 + 11 +360.0 + 21 +140.0 + 97 + 1 +330 +4E + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +0.5 + 77 + 0 + 78 + 3 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +27.94 + 46 +12.7 + 79 + 4 + 49 +190.5 + 49 +-25.4 + 49 +63.5 + 49 +-12.7 + 53 +0.0 + 43 +16.891 + 44 +6.35 + 45 +-12.7 + 46 +16.89099999999999 + 79 + 4 + 49 +38.1 + 49 +-4.191 + 49 +76.2 + 49 +-9.525 + 53 +0.0 + 43 +6.35 + 44 +10.795 + 45 +66.04 + 46 +8.509 + 79 + 4 + 49 +101.6 + 49 +-17.78 + 49 +50.8 + 49 +-12.7 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +62 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ANSI38 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +0.0 + 20 +70.0 + 11 +100.0 + 21 +70.0 + 72 + 1 + 10 +100.0 + 20 +70.0 + 11 +100.0 + 21 +120.0 + 72 + 1 + 10 +100.0 + 20 +120.0 + 11 +0.0 + 21 +120.0 + 72 + 1 + 10 +0.0 + 20 +120.0 + 11 +0.0 + 21 +70.0 + 97 + 1 +330 +41 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 2 + 53 +45.0 + 43 +0.0 + 44 +0.0 + 45 +-2.245064030267287 + 46 +2.245064030267288 + 79 + 0 + 53 +135.0 + 43 +0.0 + 44 +0.0 + 45 +-6.735192090801864 + 46 +2.245064030267288 + 79 + 2 + 49 +7.9375 + 49 +-4.7625 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +66 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +AR-RSHKE + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +120.0 + 20 +70.0 + 11 +220.0 + 21 +70.0 + 72 + 1 + 10 +220.0 + 20 +70.0 + 11 +220.0 + 21 +120.0 + 72 + 1 + 10 +220.0 + 20 +120.0 + 11 +120.0 + 21 +120.0 + 72 + 1 + 10 +120.0 + 20 +120.0 + 11 +120.0 + 21 +70.0 + 97 + 1 +330 +45 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +0.02 + 77 + 0 + 78 + 9 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +12.954 + 46 +6.096 + 79 + 6 + 49 +3.048 + 49 +-2.54 + 49 +3.556 + 49 +-1.524 + 49 +4.572 + 49 +-2.032 + 53 +0.0 + 43 +3.048 + 44 +0.254 + 45 +12.954 + 46 +6.096 + 79 + 4 + 49 +2.54 + 49 +-9.652 + 49 +2.032 + 49 +-3.048 + 53 +0.0 + 43 +9.144 + 44 +-0.381 + 45 +12.954 + 46 +6.096 + 79 + 2 + 49 +1.524 + 49 +-15.748 + 53 +90.0 + 43 +0.0 + 44 +0.0 + 45 +-4.317999999999999 + 46 +6.096 + 79 + 2 + 49 +5.842 + 49 +-18.542 + 53 +90.0 + 43 +3.048 + 44 +0.0 + 45 +-4.317999999999999 + 46 +6.096 + 79 + 2 + 49 +5.715 + 49 +-18.669 + 53 +90.0 + 43 +5.588 + 44 +0.0 + 45 +-4.317999999999999 + 46 +6.096 + 79 + 2 + 49 +5.334 + 49 +-19.05 + 53 +90.0 + 43 +9.144 + 44 +-0.381 + 45 +-4.317999999999999 + 46 +6.096 + 79 + 2 + 49 +5.842 + 49 +-18.542 + 53 +90.0 + 43 +10.668 + 44 +-0.381 + 45 +-4.317999999999999 + 46 +6.096 + 79 + 2 + 49 +5.842 + 49 +-18.542 + 53 +90.0 + 43 +15.24 + 44 +0.0 + 45 +-4.317999999999999 + 46 +6.096 + 79 + 2 + 49 +5.588 + 49 +-18.796 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +68 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ESCHER + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +240.0 + 20 +70.0 + 11 +340.0 + 21 +70.0 + 72 + 1 + 10 +340.0 + 20 +70.0 + 11 +340.0 + 21 +120.0 + 72 + 1 + 10 +340.0 + 20 +120.0 + 11 +240.0 + 21 +120.0 + 72 + 1 + 10 +240.0 + 20 +120.0 + 11 +240.0 + 21 +70.0 + 97 + 1 +330 +49 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 21 + 53 +60.0 + 43 +0.0 + 44 +0.0 + 45 +-30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +27.94 + 49 +-2.54 + 53 +180.0 + 43 +0.0 + 44 +0.0 + 45 +15.23999999999999 + 46 +-26.3965 + 79 + 2 + 49 +27.94 + 49 +-2.54 + 53 +300.0 + 43 +0.0 + 44 +0.0 + 45 +30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +27.94 + 49 +-2.54 + 53 +60.0 + 43 +2.54 + 44 +0.0 + 45 +-30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +300.0 + 43 +2.54 + 44 +0.0 + 45 +30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +60.0 + 43 +-1.27 + 44 +2.1997 + 45 +-30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +180.0 + 43 +-1.27 + 44 +2.1997 + 45 +15.23999999999999 + 46 +-26.3965 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +300.0 + 43 +-1.27 + 44 +-2.1997 + 45 +30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +180.0 + 43 +-1.27 + 44 +-2.1997 + 45 +15.23999999999999 + 46 +-26.3965 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +60.0 + 43 +-10.16 + 44 +0.0 + 45 +-30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +300.0 + 43 +-10.16 + 44 +0.0 + 45 +30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +60.0 + 43 +5.08 + 44 +-8.79882 + 45 +-30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +180.0 + 43 +5.08 + 44 +-8.79882 + 45 +15.23999999999999 + 46 +-26.3965 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +300.0 + 43 +5.08 + 44 +8.79882 + 45 +30.48003957099593 + 46 +0.0000228463251588 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +180.0 + 43 +5.08 + 44 +8.79882 + 45 +15.23999999999999 + 46 +-26.3965 + 79 + 2 + 49 +5.08 + 49 +-25.4 + 53 +0.0 + 43 +5.08 + 44 +4.39941 + 45 +-15.24 + 46 +26.3965 + 79 + 2 + 49 +17.78 + 49 +-12.7 + 53 +0.0 + 43 +5.08 + 44 +-4.39941 + 45 +-15.24 + 46 +26.3965 + 79 + 2 + 49 +17.78 + 49 +-12.7 + 53 +120.0 + 43 +1.27 + 44 +6.59911 + 45 +-30.48003957099593 + 46 +-0.0000228463251482 + 79 + 2 + 49 +17.78 + 49 +-12.7 + 53 +120.0 + 43 +-6.35 + 44 +2.1997 + 45 +-30.48003957099593 + 46 +-0.0000228463251482 + 79 + 2 + 49 +17.78 + 49 +-12.7 + 53 +240.0 + 43 +-6.35 + 44 +-2.1997 + 45 +15.24003957099592 + 46 +-26.39647715367485 + 79 + 2 + 49 +17.78 + 49 +-12.7 + 53 +240.0 + 43 +1.27 + 44 +-6.59911 + 45 +15.24003957099592 + 46 +-26.39647715367485 + 79 + 2 + 49 +17.78 + 49 +-12.7 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +6B +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +HONEY + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +360.0 + 20 +70.0 + 11 +460.0 + 21 +70.0 + 72 + 1 + 10 +460.0 + 20 +70.0 + 11 +460.0 + 21 +120.0 + 72 + 1 + 10 +460.0 + 20 +120.0 + 11 +360.0 + 21 +120.0 + 72 + 1 + 10 +360.0 + 20 +120.0 + 11 +360.0 + 21 +70.0 + 97 + 1 +330 +4D + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +3.0 + 77 + 0 + 78 + 3 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +14.2875 + 46 +8.248889999999999 + 79 + 2 + 49 +9.525 + 49 +-19.05 + 53 +120.0 + 43 +0.0 + 44 +0.0 + 45 +-14.28749829302341 + 46 +8.248892956570172 + 79 + 2 + 49 +9.525 + 49 +-19.05 + 53 +60.0 + 43 +0.0 + 44 +0.0 + 45 +0.0000017069765841 + 46 +16.49778295657016 + 79 + 2 + 49 +-19.05 + 49 +9.525 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +6D +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +STARS + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +0.0 + 20 +0.0 + 11 +100.0 + 21 +0.0 + 72 + 1 + 10 +100.0 + 20 +0.0 + 11 +100.0 + 21 +50.0 + 72 + 1 + 10 +100.0 + 20 +50.0 + 11 +0.0 + 21 +50.0 + 72 + 1 + 10 +0.0 + 20 +50.0 + 11 +0.0 + 21 +0.0 + 97 + 1 +330 +31 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 3 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +5.499259999999999 + 79 + 2 + 49 +3.175 + 49 +-3.175 + 53 +60.0 + 43 +0.0 + 44 +0.0 + 45 +-4.762498862015611 + 46 +2.74963 + 79 + 2 + 49 +3.175 + 49 +-3.175 + 53 +120.0 + 43 +1.5875 + 44 +2.74963 + 45 +-4.762498862015611 + 46 +-2.749629999999998 + 79 + 2 + 49 +3.175 + 49 +-3.175 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +6E +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +ZIGZAG + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +120.0 + 20 +0.0 + 11 +220.0 + 21 +0.0 + 72 + 1 + 10 +220.0 + 20 +0.0 + 11 +220.0 + 21 +50.0 + 72 + 1 + 10 +220.0 + 20 +50.0 + 11 +120.0 + 21 +50.0 + 72 + 1 + 10 +120.0 + 20 +50.0 + 11 +120.0 + 21 +0.0 + 97 + 1 +330 +44 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +1.0 + 77 + 0 + 78 + 2 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +3.174999999999999 + 46 +3.174999999999999 + 79 + 2 + 49 +3.175 + 49 +-3.175 + 53 +90.0 + 43 +3.175 + 44 +0.0 + 45 +-3.174999999999999 + 46 +3.174999999999999 + 79 + 2 + 49 +3.175 + 49 +-3.175 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +70 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +HOUND + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +240.0 + 20 +0.0 + 11 +340.0 + 21 +0.0 + 72 + 1 + 10 +340.0 + 20 +0.0 + 11 +340.0 + 21 +50.0 + 72 + 1 + 10 +340.0 + 20 +50.0 + 11 +240.0 + 21 +50.0 + 72 + 1 + 10 +240.0 + 20 +50.0 + 11 +240.0 + 21 +0.0 + 97 + 1 +330 +48 + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +2.0 + 77 + 0 + 78 + 2 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +12.7 + 46 +3.174999999999999 + 79 + 2 + 49 +50.8 + 49 +-25.4 + 53 +90.0 + 43 +0.0 + 44 +0.0 + 45 +-3.175 + 46 +-12.7 + 79 + 2 + 49 +50.8 + 49 +-25.4 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +HATCH + 5 +71 +100 +AcDbEntity + 8 +0 +100 +AcDbHatch + 10 +0.0 + 20 +0.0 + 30 +0.0 +210 +0.0 +220 +0.0 +230 +1.0 + 2 +NET3 + 70 + 0 + 71 + 1 + 91 + 1 + 92 + 1 + 93 + 4 + 72 + 1 + 10 +360.0 + 20 +0.0 + 11 +460.0 + 21 +0.0 + 72 + 1 + 10 +460.0 + 20 +0.0 + 11 +460.0 + 21 +50.0 + 72 + 1 + 10 +460.0 + 20 +50.0 + 11 +360.0 + 21 +50.0 + 72 + 1 + 10 +360.0 + 20 +50.0 + 11 +360.0 + 21 +0.0 + 97 + 1 +330 +4C + 75 + 0 + 76 + 1 + 52 +0.0 + 41 +2.0 + 77 + 0 + 78 + 3 + 53 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +6.349999999999999 + 79 + 0 + 53 +60.0 + 43 +0.0 + 44 +0.0 + 45 +-5.499261314031184 + 46 +3.175 + 79 + 0 + 53 +120.0 + 43 +0.0 + 44 +0.0 + 45 +-5.499261314031185 + 46 +-3.174999999999998 + 79 + 0 + 98 + 1 + 10 +0.0 + 20 +0.0 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +100 +AcDbDictionary + 3 +ACAD_GROUP +350 +D + 3 +ACAD_MLINESTYLE +350 +1B + 3 +ACDBVARIABLEDICTIONARY +350 +50 + 0 +DICTIONARY + 5 +D +102 +{ACAD_REACTORS +330 +C +102 +} +100 +AcDbDictionary + 0 +DICTIONARY + 5 +1B +102 +{ACAD_REACTORS +330 +C +102 +} +100 +AcDbDictionary + 3 +STANDARD +350 +1C + 0 +DICTIONARY + 5 +50 +102 +{ACAD_REACTORS +330 +C +102 +} +100 +AcDbDictionary + 3 +SORTENTS +350 +51 + 0 +MLINESTYLE + 5 +1C +102 +{ACAD_REACTORS +330 +1B +102 +} +100 +AcDbMlineStyle + 2 +STANDARD + 70 + 0 + 3 + + 62 + 256 + 51 +90.0 + 52 +90.0 + 71 + 2 + 49 +0.5 + 62 + 256 + 6 +BYLAYER + 49 +-0.5 + 62 + 256 + 6 +BYLAYER + 0 +DICTIONARYVAR + 5 +51 +102 +{ACAD_REACTORS +330 +50 +102 +} +100 +DictionaryVariables +280 + 0 + 1 +96 + 0 +ENDSEC + 0 +EOF diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/meta.json b/extensions/fablabchemnitz/dxf_dwg_importer/meta.json new file mode 100644 index 0000000..622536d --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/meta.json @@ -0,0 +1,20 @@ +[ + { + "name": "DXF/DWG Importer", + "id": "fablabchemnitz.de.dxf_dwg_importer", + "path": "dxf_dwg_importer", + "dependent_extensions": null, + "original_name": "DXF/DWG Importer", + "original_id": "fablabchemnitz.de.dxf_dwg_importer", + "license": "GNU GPL v3", + "license_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/LICENSE", + "comment": "Written by Mario Voigt", + "source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/dxf_dwg_importer", + "fork_url": null, + "documentation_url": "https://stadtfabrikanten.org/pages/viewpage.action?pageId=78807535", + "inkscape_gallery_url": "https://inkscape.org/~MarioVoigt/%E2%98%85dxfdwg-importer", + "main_authors": [ + "github.com/vmario89" + ] + } +] \ No newline at end of file diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node.exe b/extensions/fablabchemnitz/dxf_dwg_importer/node.exe new file mode 100644 index 0000000..3022cf6 Binary files /dev/null and b/extensions/fablabchemnitz/dxf_dwg_importer/node.exe differ diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/.eslintrc.json b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/.eslintrc.json new file mode 100644 index 0000000..d602b53 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/.eslintrc.json @@ -0,0 +1,39 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "extends": [ + "plugin:react/recommended", "standard", "standard-react" + ], + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly", + "describe": "readonly", + "it": "readonly", + "before": "readonly", + "after": "readonly", + "beforeEach": "readonly", + "afterEach": "readonly" + }, + "parserOptions": { + "ecmaFeatures": { + "jsx": true + }, + "ecmaVersion": 2018, + "sourceType": "module" + }, + "plugins": [ + "react", "babel" + ], + "parser": "babel-eslint", + "rules": { + "jest/valid-describe": 0 + }, + "settings": { + "react": { + "version": "detect" + } + } +} diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/.travis.yml b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/.travis.yml new file mode 100644 index 0000000..4a2d9cf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/.travis.yml @@ -0,0 +1,6 @@ +language: node_js +node_js: + - "8" + - "10" +install: npm install +sudo: false diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/LICENSE b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/LICENSE new file mode 100644 index 0000000..9776255 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-2018 Ben Nortier + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/README.md b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/README.md new file mode 100644 index 0000000..f4babdc --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/README.md @@ -0,0 +1,126 @@ +[![Build Status](https://travis-ci.org/bjnortier/dxf.svg?branch=master)](https://travis-ci.org/bjnortier/dxf) + +# dxf + +DXF parser for node/browser. + +Uses several ES6 features in the source code (import, classes, let, const, arrows) but is packaged using babel so you can use it legacy JS environments. + +Version 2.0 is a complete rewrite from the first attempt to write it in a SAX style, which wasn't really appropriate for a document with nested references (e.g inserts referencing blocks, nested inserts). + +Version 3.0 converted the codebase to use [standard JS](https://standardjs.com), ES6 imports, stopped using Gulp, and updated & removed some dependencies. + +Version 4.x is in progress and the aim is to use native SVG elements where possible, e.g. ``, `` etc. 4.0 introduces the `` element. + +At this point in time, the important geometric entities are supported, but notably: + + * MTEXT + * DIMENSION + * STYLE + * HATCH + +and some others are **parsed**, but are **not supported for SVG rendering** (see section below on SVG rendering) + +## Getting started + +There is an ES5 and ES6 example in the ```examples/``` directory that show how to use the library. There are exposed functions for advanced users, but for the majority of users you can use the `Helper` object to get the data you're interested in (or convert to SVG): + +``` +const helper = new Helper() + +// The 1-to-1 object representation of the DXF +console.log('parsed:', helper.parsed) + +// Denormalised blocks inserted with transforms applied +console.log('denormalised:', helper.denormalised) + +// Create an SVG +console.log('svg:', helper.toSVG()) + +// Create polylines (e.g. to render in WebGL) +console.log('polylines:', helper.toPolylines()) +``` + +## Running the Examples + +Node ES5. Will write an SVG to `examples/example.es5.svg`: + +``` +$ node examples/example.es5.js +``` + +Node ES6. Will write an SVG to `examples/example.es6.svg`: + +``` +$ npx babel-node examples/example.es6.js +``` + +Browser. Compile to a browser bundle and open the example webpage: + +``` +$ npm run compile +$ open examples/dxf.html +``` + +## SVG + +Geometric elements are supported, but dimensions, text, hatches and styles (except for line colors) are ***not***. + +Native SVG elements are used as far as possible for curved entities (``, `` etc.), ***except for the SPLINE entity***, which is interpolated. + +Here's an example you will find in the functional test output: + +![svg example image](https://cloud.githubusercontent.com/assets/57994/17583566/e00f5d78-5fb1-11e6-9030-55686f980e6f.png) + +## Interpolation + +The library supports outputting DXFs as interpolated polylines for custom rendering (e.g. WebGL) or other applications, by using: + + +``` +> helper.toPolylines() +``` + + +## Command line + +There is a command-line utility (courtesy of [@Joge97](https://github.com/Joge97)) for converting DXF files to SVG: + +``` +$ npm i -g dxf +$ dxf-to-svg + + Usage: dxf-to-svg [options] [svgFile] + + Converts a dxf file to a svg file. + + Options: + + -V, --version output the version number + -v --verbose Verbose output + -h, --help output usage information +``` + +## Tests + +Running + +```$ npm test``` + +will execute the unit tests. + +```$ npm run test:functional``` will run the functional tests in a browser. Please open `toSVG.html` when the file listing loads in the browser (or open `http://localhost:8030/toSVG.html#/`). + +### Contributors + +- Liam Mitchell https://github.com/LiamKarlMitchell +- Artur Zochniak https://github.com/arjamizo +- Andy Werner https://github.com/Gallore +- Ivan Baktsheev https://github.com/apla +- Jeff Chen https://github.com/jeffontheground +- Markko Paas https://github.com/markkopaas +- Kim Lokøy https://github.com/klokoy +- Erik Söhnel https://github.com/hoeck +- Teja https://github.com/hungerpirat +- Jakob Pallhuber https://github.com/Joge97 +- Eric Mansfield https://github.com/ericman314 diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/RELEASE.md b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/RELEASE.md new file mode 100644 index 0000000..e6a35bf --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/RELEASE.md @@ -0,0 +1,41 @@ +4.3.0 +- #51 Fix bug when transforming empty bounding box + +4.2.4 +- #50 Fix knot piecewise beziers + +4.2.3 +- More accurate bounding boxes for arcs and ellipses (#48) + +4.2.2 +- Bump eslint-utils from 1.3.1 to 1.4.2 +- Add HATCH to unsupported SVG entities in README + +4.2.1 +- Use main lodash package due to security issue(s) + +4.2.0 +- README updates + +4.1.1 +- #issue42 support entities that have extrusionZ === -1 defined on the entity itself (as opposed to the transform). + +4.1.0 +- CIRCLE DXF entities now produce native SVG elements. +- ELLIPSE DXF entities now produce native or SVG elements. +- ARC DXF entities now produce native or SVG elements. + +4.0.1 +- Browser example uses Helper + +4.0.0 +- Use ES6 string interpolation in SVG generation. +- Use native SVG elements for CIRCLE entities. +- Use SVG elements with a transform attribute for native and interpolated entities. +- Add a Helper object to simplify the workflow. +- The SVG output uses a root transform to flip the Y coordinates. + +3.6.0 +- NPM audit fixes. +- Remove support for Node v6 in Travis. +- Node engine is now >= 8.9.0. diff --git a/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/dist/dxf.js b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/dist/dxf.js new file mode 100644 index 0000000..f2af7e1 --- /dev/null +++ b/extensions/fablabchemnitz/dxf_dwg_importer/node_modules/dxf/dist/dxf.js @@ -0,0 +1,21602 @@ +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.dxf = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i 1 || columnCount > 1) { + var cos = Math.cos(rotation * Math.PI / 180); + var sin = Math.sin(rotation * Math.PI / 180); + rowVec = { + x: -sin * rowSpacing, + y: cos * rowSpacing + }; + colVec = { + x: cos * columnSpacing, + y: sin * columnSpacing + }; + } else { + rowVec = { + x: 0, + y: 0 + }; + colVec = { + x: 0, + y: 0 + }; + } // For rectangular arrays, add the block entities for each location in the array + + + for (var r = 0; r < rowCount; r++) { + for (var c = 0; c < columnCount; c++) { + // Adjust insert transform by row and column for rectangular arrays + var t = { + x: insert.x + rowVec.x * r + colVec.x * c, + y: insert.y + rowVec.y * r + colVec.y * c, + scaleX: insert.scaleX, + scaleY: insert.scaleY, + scaleZ: insert.scaleZ, + extrusionX: insert.extrusionX, + extrusionY: insert.extrusionY, + extrusionZ: insert.extrusionZ, + rotation: insert.rotation + }; // Add the insert transform and recursively add entities + + var transforms2 = transforms.slice(0); + transforms2.push(t); // Use the insert layer + + var blockEntities = block.entities.map(function (be) { + var be2 = (0, _lodash.cloneDeep)(be); + be2.layer = insert.layer; // https://github.com/bjnortier/dxf/issues/52 + // See Issue 52. If we don't modify the + // entity coordinates here it creates an issue with the + // transformation matrices (which are only applied AFTER + // block insertion modifications has been applied). + + switch (be2.type) { + case 'LINE': + { + be2.start.x -= block.x; + be2.start.y -= block.y; + be2.end.x -= block.x; + be2.end.y -= block.y; + break; + } + + case 'LWPOLYLINE': + case 'POLYLINE': + { + be2.vertices.forEach(function (v) { + v.x -= block.x; + v.y -= block.y; + }); + break; + } + + case 'CIRCLE': + case 'ELLIPSE': + case 'ARC': + { + be2.x -= block.x; + be2.y -= block.y; + break; + } + + case 'SPLINE': + { + be2.controlPoints.forEach(function (cp) { + cp.x -= block.x; + cp.y -= block.y; + }); + break; + } + } + + return be2; + }); + current = current.concat(gatherEntities(blockEntities, transforms2)); + } + } + }(); + + if (_typeof(_ret) === "object") return _ret.v; + } else { + // Top-level entity. Clone and add the transforms + // The transforms are reversed so they occur in + // order of application - i.e. the transform of the + // top-level insert is applied last + var e2 = (0, _lodash.cloneDeep)(e); + e2.transforms = transforms.slice().reverse(); + current.push(e2); + } + }); + return current; + }; + + return gatherEntities(parseResult.entities, []); +}; + +exports["default"] = _default; +},{"./util/logger":34,"lodash":39}],5:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.interpolateBSpline = void 0; + +var _bSpline = _interopRequireDefault(require("./util/bSpline")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +var _createArcForLWPolyline = _interopRequireDefault(require("./util/createArcForLWPolyline")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +/** + * Rotate a set of points. + * + * @param points the points + * @param angle the rotation angle + */ +var rotate = function rotate(points, angle) { + return points.map(function (p) { + return [p[0] * Math.cos(angle) - p[1] * Math.sin(angle), p[1] * Math.cos(angle) + p[0] * Math.sin(angle)]; + }); +}; +/** + * Interpolate an ellipse + * @param cx center X + * @param cy center Y + * @param rx radius X + * @param ry radius Y + * @param start start angle in radians + * @param start end angle in radians + */ + + +var interpolateEllipse = function interpolateEllipse(cx, cy, rx, ry, start, end, rotationAngle) { + if (end < start) { + end += Math.PI * 2; + } // ----- Relative points ----- + // Start point + + + var points = []; + var dTheta = Math.PI * 2 / 72; + var EPS = 1e-6; + + for (var theta = start; theta < end - EPS; theta += dTheta) { + points.push([Math.cos(theta) * rx, Math.sin(theta) * ry]); + } + + points.push([Math.cos(end) * rx, Math.sin(end) * ry]); // ----- Rotate ----- + + if (rotationAngle) { + points = rotate(points, rotationAngle); + } // ----- Offset center ----- + + + points = points.map(function (p) { + return [cx + p[0], cy + p[1]]; + }); + return points; +}; +/** + * Interpolate a b-spline. The algorithm examins the knot vector + * to create segments for interpolation. The parameterisation value + * is re-normalised back to [0,1] as that is what the lib expects ( + * and t i de-normalised in the b-spline library) + * + * @param controlPoints the control points + * @param degree the b-spline degree + * @param knots the knot vector + * @returns the polyline + */ + + +var interpolateBSpline = function interpolateBSpline(controlPoints, degree, knots, interpolationsPerSplineSegment) { + var polyline = []; + var controlPointsForLib = controlPoints.map(function (p) { + return [p.x, p.y]; + }); + var segmentTs = [knots[degree]]; + var domain = [knots[degree], knots[knots.length - 1 - degree]]; + + for (var k = degree + 1; k < knots.length - degree; ++k) { + if (segmentTs[segmentTs.length - 1] !== knots[k]) { + segmentTs.push(knots[k]); + } + } + + interpolationsPerSplineSegment = interpolationsPerSplineSegment || 25; + + for (var i = 1; i < segmentTs.length; ++i) { + var uMin = segmentTs[i - 1]; + var uMax = segmentTs[i]; + + for (var _k = 0; _k <= interpolationsPerSplineSegment; ++_k) { + var u = _k / interpolationsPerSplineSegment * (uMax - uMin) + uMin; // Clamp t to 0, 1 to handle numerical precision issues + + var t = (u - domain[0]) / (domain[1] - domain[0]); + t = Math.max(t, 0); + t = Math.min(t, 1); + var p = (0, _bSpline["default"])(t, degree, controlPointsForLib, knots); + polyline.push(p); + } + } + + return polyline; +}; +/** + * Convert a parsed DXF entity to a polyline. These can be used to render the + * the DXF in SVG, Canvas, WebGL etc., without depending on native support + * of primitive objects (ellispe, spline etc.) + */ + + +exports.interpolateBSpline = interpolateBSpline; + +var _default = function _default(entity, options) { + options = options || {}; + var polyline; + + if (entity.type === 'LINE') { + polyline = [[entity.start.x, entity.start.y], [entity.end.x, entity.end.y]]; + } + + if (entity.type === 'LWPOLYLINE' || entity.type === 'POLYLINE') { + polyline = []; + + if (entity.polygonMesh || entity.polyfaceMesh) {// Do not attempt to render meshes + } else if (entity.vertices.length) { + if (entity.closed) { + entity.vertices = entity.vertices.concat(entity.vertices[0]); + } + + for (var i = 0, il = entity.vertices.length; i < il - 1; ++i) { + var from = [entity.vertices[i].x, entity.vertices[i].y]; + var to = [entity.vertices[i + 1].x, entity.vertices[i + 1].y]; + polyline.push(from); + + if (entity.vertices[i].bulge) { + polyline = polyline.concat((0, _createArcForLWPolyline["default"])(from, to, entity.vertices[i].bulge)); + } // The last iteration of the for loop + + + if (i === il - 2) { + polyline.push(to); + } + } + } else { + _logger["default"].warn('Polyline entity with no vertices'); + } + } + + if (entity.type === 'CIRCLE') { + polyline = interpolateEllipse(entity.x, entity.y, entity.r, entity.r, 0, Math.PI * 2); + + if (entity.extrusionZ === -1) { + polyline = polyline.map(function (p) { + return [-p[0], p[1]]; + }); + } + } + + if (entity.type === 'ELLIPSE') { + var rx = Math.sqrt(entity.majorX * entity.majorX + entity.majorY * entity.majorY); + var ry = entity.axisRatio * rx; + var majorAxisRotation = -Math.atan2(-entity.majorY, entity.majorX); + polyline = interpolateEllipse(entity.x, entity.y, rx, ry, entity.startAngle, entity.endAngle, majorAxisRotation); + + if (entity.extrusionZ === -1) { + polyline = polyline.map(function (p) { + return [-p[0], p[1]]; + }); + } + } + + if (entity.type === 'ARC') { + // Why on earth DXF has degree start & end angles for arc, + // and radian start & end angles for ellipses is a mystery + polyline = interpolateEllipse(entity.x, entity.y, entity.r, entity.r, entity.startAngle, entity.endAngle, undefined, false); // I kid you not, ARCs and ELLIPSEs handle this differently, + // as evidenced by how AutoCAD actually renders these entities + + if (entity.extrusionZ === -1) { + polyline = polyline.map(function (p) { + return [-p[0], p[1]]; + }); + } + } + + if (entity.type === 'SPLINE') { + polyline = interpolateBSpline(entity.controlPoints, entity.degree, entity.knots, options.interpolationsPerSplineSegment); + } + + if (!polyline) { + _logger["default"].warn('unsupported entity for converting to polyline:', entity.type); + + return []; + } + + return polyline; +}; + +exports["default"] = _default; +},{"./util/bSpline":30,"./util/createArcForLWPolyline":32,"./util/logger":34}],6:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _colors = _interopRequireDefault(require("./util/colors")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var _default = function _default(layers, entity) { + var layerTable = layers[entity.layer]; + + if (layerTable) { + var colorNumber = 'colorNumber' in entity ? entity.colorNumber : layerTable.colorNumber; + var rgb = _colors["default"][colorNumber]; + + if (rgb) { + return rgb; + } else { + _logger["default"].warn('Color index', colorNumber, 'invalid, defaulting to black'); + + return [0, 0, 0]; + } + } else { + _logger["default"].warn('no layer table for layer:' + entity.layer); + + return [0, 0, 0]; + } +}; + +exports["default"] = _default; +},{"./util/colors":31,"./util/logger":34}],7:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _default = function _default(entities) { + return entities.reduce(function (acc, entity) { + var layer = entity.layer; + + if (!acc[layer]) { + acc[layer] = []; + } + + acc[layer].push(entity); + return acc; + }, {}); +}; + +exports["default"] = _default; +},{}],8:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _entities = _interopRequireDefault(require("./entities")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var _default = function _default(tuples) { + var state; + var blocks = []; + var block; + var entitiesTuples = []; + tuples.forEach(function (tuple) { + var type = tuple[0]; + var value = tuple[1]; + + if (value === 'BLOCK') { + state = 'block'; + block = {}; + entitiesTuples = []; + blocks.push(block); + } else if (value === 'ENDBLK') { + if (state === 'entities') { + block.entities = (0, _entities["default"])(entitiesTuples); + } else { + block.entities = []; + } + + entitiesTuples = undefined; + state = undefined; + } else if (state === 'block' && type !== 0) { + switch (type) { + case 1: + block.xref = value; + break; + + case 2: + block.name = value; + break; + + case 10: + block.x = value; + break; + + case 20: + block.y = value; + break; + + case 30: + block.z = value; + break; + + default: + break; + } + } else if (state === 'block' && type === 0) { + state = 'entities'; + entitiesTuples.push(tuple); + } else if (state === 'entities') { + entitiesTuples.push(tuple); + } + }); + return blocks; +}; + +exports["default"] = _default; +},{"./entities":9}],9:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _logger = _interopRequireDefault(require("../util/logger")); + +var _point = _interopRequireDefault(require("./entity/point")); + +var _line = _interopRequireDefault(require("./entity/line")); + +var _lwpolyline = _interopRequireDefault(require("./entity/lwpolyline")); + +var _polyline = _interopRequireDefault(require("./entity/polyline")); + +var _vertex = _interopRequireDefault(require("./entity/vertex")); + +var _circle = _interopRequireDefault(require("./entity/circle")); + +var _arc = _interopRequireDefault(require("./entity/arc")); + +var _ellipse = _interopRequireDefault(require("./entity/ellipse")); + +var _spline = _interopRequireDefault(require("./entity/spline")); + +var _solid = _interopRequireDefault(require("./entity/solid")); + +var _mtext = _interopRequireDefault(require("./entity/mtext")); + +var _insert = _interopRequireDefault(require("./entity/insert")); + +var _threeDFace = _interopRequireDefault(require("./entity/threeDFace")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var handlers = [_point["default"], _line["default"], _lwpolyline["default"], _polyline["default"], _vertex["default"], _circle["default"], _arc["default"], _ellipse["default"], _spline["default"], _solid["default"], _mtext["default"], _insert["default"], _threeDFace["default"]].reduce(function (acc, mod) { + acc[mod.TYPE] = mod; + return acc; +}, {}); + +var _default = function _default(tuples) { + var entities = []; + var entityGroups = []; + var currentEntityTuples; // First group them together for easy processing + + tuples.forEach(function (tuple) { + var type = tuple[0]; + + if (type === 0) { + currentEntityTuples = []; + entityGroups.push(currentEntityTuples); + } + + currentEntityTuples.push(tuple); + }); + var currentPolyline; + entityGroups.forEach(function (tuples) { + var entityType = tuples[0][1]; + var contentTuples = tuples.slice(1); + + if (handlers[entityType] !== undefined) { + var e = handlers[entityType].process(contentTuples); // "POLYLINE" cannot be parsed in isolation, it is followed by + // N "VERTEX" entities and ended with a "SEQEND" entity. + // Essentially we convert POLYLINE to LWPOLYLINE - the extra + // vertex flags are not supported + + if (entityType === 'POLYLINE') { + currentPolyline = e; + entities.push(e); + } else if (entityType === 'VERTEX') { + if (currentPolyline) { + currentPolyline.vertices.push(e); + } else { + _logger["default"].error('ignoring invalid VERTEX entity'); + } + } else if (entityType === 'SEQEND') { + currentPolyline = undefined; + } else { + // All other entities + entities.push(e); + } + } else { + _logger["default"].warn('unsupported type in ENTITIES section:', entityType); + } + }); + return entities; +}; + +exports["default"] = _default; +},{"../util/logger":34,"./entity/arc":10,"./entity/circle":11,"./entity/ellipse":13,"./entity/insert":14,"./entity/line":15,"./entity/lwpolyline":16,"./entity/mtext":17,"./entity/point":18,"./entity/polyline":19,"./entity/solid":20,"./entity/spline":21,"./entity/threeDFace":22,"./entity/vertex":23}],10:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'ARC'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 39: + entity.thickness = value; + break; + + case 40: + entity.r = value; + break; + + case 50: + // *Someone* decided that ELLIPSE angles are in radians but + // ARC angles are in degrees + entity.startAngle = value / 180 * Math.PI; + break; + + case 51: + entity.endAngle = value / 180 * Math.PI; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],11:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'CIRCLE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 40: + entity.r = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],12:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _default = function _default(type, value) { + switch (type) { + case 6: + // Linetype name (present if not BYLAYER). + // The special name BYBLOCK indicates a + // floating linetype. (optional) + return { + lineTypeName: value + }; + + case 8: + return { + layer: value + }; + + case 48: + // Linetype scale (optional) + return { + lineTypeScale: value + }; + + case 60: + // Object visibility (optional): 0 = visible, 1 = invisible. + return { + visible: value === 0 + }; + + case 62: + // Color number (present if not BYLAYER). + // Zero indicates the BYBLOCK (floating) color. + // 256 indicates BYLAYER. + // A negative value indicates that the layer is turned off. (optional) + return { + colorNumber: value + }; + + case 210: + return { + extrusionX: value + }; + + case 220: + return { + extrusionY: value + }; + + case 230: + return { + extrusionZ: value + }; + + default: + return {}; + } +}; + +exports["default"] = _default; +},{}],13:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'ELLIPSE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 11: + entity.majorX = value; + break; + + case 20: + entity.y = value; + break; + + case 21: + entity.majorY = value; + break; + + case 30: + entity.z = value; + break; + + case 31: + entity.majorZ = value; + break; + + case 40: + entity.axisRatio = value; + break; + + case 41: + entity.startAngle = value; + break; + + case 42: + entity.endAngle = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],14:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'INSERT'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 2: + entity.block = value; + break; + + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 41: + entity.scaleX = value; + break; + + case 42: + entity.scaleY = value; + break; + + case 43: + entity.scaleZ = value; + break; + + case 44: + entity.columnSpacing = value; + break; + + case 45: + entity.rowSpacing = value; + break; + + case 50: + entity.rotation = value; + break; + + case 70: + entity.columnCount = value; + break; + + case 71: + entity.rowCount = value; + break; + + case 210: + entity.extrusionX = value; + break; + + case 220: + entity.extrusionY = value; + break; + + case 230: + entity.extrusionZ = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],15:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'LINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.start.x = value; + break; + + case 20: + entity.start.y = value; + break; + + case 30: + entity.start.z = value; + break; + + case 39: + entity.thickness = value; + break; + + case 11: + entity.end.x = value; + break; + + case 21: + entity.end.y = value; + break; + + case 31: + entity.end.z = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + start: {}, + end: {} + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],16:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'LWPOLYLINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + var vertex; + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 70: + entity.closed = (value & 1) === 1; + break; + + case 10: + vertex = { + x: value, + y: 0 + }; + entity.vertices.push(vertex); + break; + + case 20: + vertex.y = value; + break; + + case 39: + entity.thickness = value; + break; + + case 42: + // Bulge (multiple entries; one entry for each vertex) (optional; default = 0). + vertex.bulge = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + vertices: [] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],17:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'MTEXT'; +exports.TYPE = TYPE; +var simpleCodes = { + 10: 'x', + 20: 'y', + 30: 'z', + 40: 'nominalTextHeight', + 41: 'refRectangleWidth', + 71: 'attachmentPoint', + 72: 'drawingDirection', + 7: 'styleName', + 11: 'xAxisX', + 21: 'xAxisY', + 31: 'xAxisZ', + 42: 'horizontalWidth', + 43: 'verticalHeight', + 73: 'lineSpacingStyle', + 44: 'lineSpacingFactor', + 90: 'backgroundFill', + 420: 'bgColorRGB0', + 421: 'bgColorRGB1', + 422: 'bgColorRGB2', + 423: 'bgColorRGB3', + 424: 'bgColorRGB4', + 425: 'bgColorRGB5', + 426: 'bgColorRGB6', + 427: 'bgColorRGB7', + 428: 'bgColorRGB8', + 429: 'bgColorRGB9', + 430: 'bgColorName0', + 431: 'bgColorName1', + 432: 'bgColorName2', + 433: 'bgColorName3', + 434: 'bgColorName4', + 435: 'bgColorName5', + 436: 'bgColorName6', + 437: 'bgColorName7', + 438: 'bgColorName8', + 439: 'bgColorName9', + 45: 'fillBoxStyle', + 63: 'bgFillColor', + 441: 'bgFillTransparency', + 75: 'columnType', + 76: 'columnCount', + 78: 'columnFlowReversed', + 79: 'columnAutoheight', + 48: 'columnWidth', + 49: 'columnGutter', + 50: 'columnHeights' +}; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + if (simpleCodes[type] !== undefined) { + entity[simpleCodes[type]] = value; + } else if (type === 1 || type === 3) { + entity.string += value; + } else if (type === 50) { + // Rotation angle in radians + entity.xAxisX = Math.cos(value); + entity.xAxisY = Math.sin(value); + } else { + Object.assign(entity, (0, _common["default"])(type, value)); + } + + return entity; + }, { + type: TYPE, + string: '' + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],18:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'POINT'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 39: + entity.thickness = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],19:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'POLYLINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 70: + entity.closed = (value & 1) === 1; + entity.polygonMesh = (value & 16) === 16; + entity.polyfaceMesh = (value & 64) === 64; + break; + + case 39: + entity.thickness = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + vertices: [] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],20:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'SOLID'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.corners[0].x = value; + break; + + case 20: + entity.corners[0].y = value; + break; + + case 30: + entity.corners[0].z = value; + break; + + case 11: + entity.corners[1].x = value; + break; + + case 21: + entity.corners[1].y = value; + break; + + case 31: + entity.corners[1].z = value; + break; + + case 12: + entity.corners[2].x = value; + break; + + case 22: + entity.corners[2].y = value; + break; + + case 32: + entity.corners[2].z = value; + break; + + case 13: + entity.corners[3].x = value; + break; + + case 23: + entity.corners[3].y = value; + break; + + case 33: + entity.corners[3].z = value; + break; + + case 39: + entity.thickness = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + corners: [{}, {}, {}, {}] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],21:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = 'SPLINE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + var controlPoint; + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + controlPoint = { + x: value, + y: 0 + }; + entity.controlPoints.push(controlPoint); + break; + + case 20: + controlPoint.y = value; + break; + + case 30: + controlPoint.z = value; + break; + + case 40: + entity.knots.push(value); + break; + + case 42: + entity.knotTolerance = value; + break; + + case 43: + entity.controlPointTolerance = value; + break; + + case 44: + entity.fitTolerance = value; + break; + + case 70: + // Spline flag (bit coded): + // 1 = Closed spline + // 2 = Periodic spline + // 4 = Rational spline + // 8 = Planar + // 16 = Linear (planar bit is also set) + entity.flag = value; + entity.closed = (value & 1) === 1; + break; + + case 71: + entity.degree = value; + break; + + case 72: + entity.numberOfKnots = value; + break; + + case 73: + entity.numberOfControlPoints = value; + break; + + case 74: + entity.numberOfFitPoints = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + controlPoints: [], + knots: [] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],22:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; + +var _common = _interopRequireDefault(require("./common")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var TYPE = '3DFACE'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.vertices[0].x = value; + break; + + case 20: + entity.vertices[0].y = value; + break; + + case 30: + entity.vertices[0].z = value; + break; + + case 11: + entity.vertices[1].x = value; + break; + + case 21: + entity.vertices[1].y = value; + break; + + case 31: + entity.vertices[1].z = value; + break; + + case 12: + entity.vertices[2].x = value; + break; + + case 22: + entity.vertices[2].y = value; + break; + + case 32: + entity.vertices[2].z = value; + break; + + case 13: + entity.vertices[3].x = value; + break; + + case 23: + entity.vertices[3].y = value; + break; + + case 33: + entity.vertices[3].z = value; + break; + + default: + Object.assign(entity, (0, _common["default"])(type, value)); + break; + } + + return entity; + }, { + type: TYPE, + vertices: [{}, {}, {}, {}] + }); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{"./common":12}],23:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.process = exports.TYPE = void 0; +var TYPE = 'VERTEX'; +exports.TYPE = TYPE; + +var process = function process(tuples) { + return tuples.reduce(function (entity, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 10: + entity.x = value; + break; + + case 20: + entity.y = value; + break; + + case 30: + entity.z = value; + break; + + case 42: + entity.bulge = value; + break; + + default: + break; + } + + return entity; + }, {}); +}; + +exports.process = process; +var _default = { + TYPE: TYPE, + process: process +}; +exports["default"] = _default; +},{}],24:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _default = function _default(tuples) { + var state; + var header = {}; + tuples.forEach(function (tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (value) { + case '$MEASUREMENT': + { + state = 'measurement'; + break; + } + + case '$INSUNITS': + { + state = 'insUnits'; + break; + } + + case '$EXTMIN': + header.extMin = {}; + state = 'extMin'; + break; + + case '$EXTMAX': + header.extMax = {}; + state = 'extMax'; + break; + + default: + switch (state) { + case 'extMin': + case 'extMax': + { + switch (type) { + case 10: + header[state].x = value; + break; + + case 20: + header[state].y = value; + break; + + case 30: + header[state].z = value; + state = undefined; + break; + } + + break; + } + + case 'measurement': + case 'insUnits': + { + switch (type) { + case 70: + { + header[state] = value; + state = undefined; + break; + } + } + + break; + } + } + + } + }); + return header; +}; + +exports["default"] = _default; +},{}],25:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _logger = _interopRequireDefault(require("../util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var layerHandler = function layerHandler(tuples) { + return tuples.reduce(function (layer, tuple) { + var type = tuple[0]; + var value = tuple[1]; // https://www.autodesk.com/techpubs/autocad/acad2000/dxf/layer_dxf_04.htm + + switch (type) { + case 2: + layer.name = value; + break; + + case 6: + layer.lineTypeName = value; + break; + + case 62: + layer.colorNumber = value; + break; + + case 70: + layer.flags = value; + break; + + case 290: + layer.plot = parseInt(value) !== 0; + break; + + case 370: + layer.lineWeightEnum = value; + break; + + default: + } + + return layer; + }, { + type: 'LAYER' + }); +}; + +var styleHandler = function styleHandler(tuples) { + return tuples.reduce(function (style, tuple) { + var type = tuple[0]; + var value = tuple[1]; + + switch (type) { + case 2: + style.name = value; + break; + + case 6: + style.lineTypeName = value; + break; + + case 40: + style.fixedTextHeight = value; + break; + + case 41: + style.widthFactor = value; + break; + + case 50: + style.obliqueAngle = value; + break; + + case 71: + style.flags = value; + break; + + case 42: + style.lastHeightUsed = value; + break; + + case 3: + style.primaryFontFileName = value; + break; + + case 4: + style.bigFontFileName = value; + break; + + default: + } + + return style; + }, { + type: 'STYLE' + }); +}; + +var tableHandler = function tableHandler(tuples, tableType, handler) { + var tableRowsTuples = []; + var tableRowTuples; + tuples.forEach(function (tuple) { + var type = tuple[0]; + var value = tuple[1]; + + if ((type === 0 || type === 2) && value === tableType) { + tableRowTuples = []; + tableRowsTuples.push(tableRowTuples); + } else { + tableRowTuples.push(tuple); + } + }); + return tableRowsTuples.reduce(function (acc, rowTuples) { + var tableRow = handler(rowTuples); + + if (tableRow.name) { + acc[tableRow.name] = tableRow; + } else { + _logger["default"].warn('table row without name:', tableRow); + } + + return acc; + }, {}); +}; + +var _default = function _default(tuples) { + var tableGroups = []; + var tableTuples; + tuples.forEach(function (tuple) { + // const type = tuple[0]; + var value = tuple[1]; + + if (value === 'TABLE') { + tableTuples = []; + tableGroups.push(tableTuples); + } else if (value === 'ENDTAB') { + tableGroups.push(tableTuples); + } else { + tableTuples.push(tuple); + } + }); + var stylesTuples = []; + var layersTuples = []; + tableGroups.forEach(function (group) { + if (group[0][1] === 'STYLE') { + stylesTuples = group; + } else if (group[0][1] === 'LTYPE') { + _logger["default"].warn('LTYPE in tables not supported'); + } else if (group[0][1] === 'LAYER') { + layersTuples = group; + } + }); + return { + layers: tableHandler(layersTuples, 'LAYER', layerHandler), + styles: tableHandler(stylesTuples, 'STYLE', styleHandler) + }; +}; + +exports["default"] = _default; +},{"../util/logger":34}],26:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "config", { + enumerable: true, + get: function get() { + return _config["default"]; + } +}); +Object.defineProperty(exports, "parseString", { + enumerable: true, + get: function get() { + return _parseString["default"]; + } +}); +Object.defineProperty(exports, "denormalise", { + enumerable: true, + get: function get() { + return _denormalise["default"]; + } +}); +Object.defineProperty(exports, "groupEntitiesByLayer", { + enumerable: true, + get: function get() { + return _groupEntitiesByLayer["default"]; + } +}); +Object.defineProperty(exports, "toPolylines", { + enumerable: true, + get: function get() { + return _toPolylines["default"]; + } +}); +Object.defineProperty(exports, "toSVG", { + enumerable: true, + get: function get() { + return _toSVG["default"]; + } +}); +Object.defineProperty(exports, "colors", { + enumerable: true, + get: function get() { + return _colors["default"]; + } +}); +Object.defineProperty(exports, "Helper", { + enumerable: true, + get: function get() { + return _Helper["default"]; + } +}); + +var _config = _interopRequireDefault(require("./config")); + +var _parseString = _interopRequireDefault(require("./parseString")); + +var _denormalise = _interopRequireDefault(require("./denormalise")); + +var _groupEntitiesByLayer = _interopRequireDefault(require("./groupEntitiesByLayer")); + +var _toPolylines = _interopRequireDefault(require("./toPolylines")); + +var _toSVG = _interopRequireDefault(require("./toSVG")); + +var _colors = _interopRequireDefault(require("./util/colors")); + +var _Helper = _interopRequireDefault(require("./Helper")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } +},{"./Helper":1,"./config":3,"./denormalise":4,"./groupEntitiesByLayer":7,"./parseString":27,"./toPolylines":28,"./toSVG":29,"./util/colors":31}],27:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _header = _interopRequireDefault(require("./handlers/header")); + +var _tables = _interopRequireDefault(require("./handlers/tables")); + +var _blocks = _interopRequireDefault(require("./handlers/blocks")); + +var _entities = _interopRequireDefault(require("./handlers/entities")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +// Parse the value into the native representation +var parseValue = function parseValue(type, value) { + if (type >= 10 && type < 60) { + return parseFloat(value, 10); + } else if (type >= 210 && type < 240) { + return parseFloat(value, 10); + } else if (type >= 60 && type < 100) { + return parseInt(value, 10); + } else { + return value; + } +}; // Content lines are alternate lines of type and value + + +var convertToTypesAndValues = function convertToTypesAndValues(contentLines) { + var state = 'type'; + var type; + var typesAndValues = []; + + var _iterator = _createForOfIteratorHelper(contentLines), + _step; + + try { + for (_iterator.s(); !(_step = _iterator.n()).done;) { + var line = _step.value; + + if (state === 'type') { + type = parseInt(line, 10); + state = 'value'; + } else { + typesAndValues.push([type, parseValue(type, line)]); + state = 'type'; + } + } + } catch (err) { + _iterator.e(err); + } finally { + _iterator.f(); + } + + return typesAndValues; +}; + +var separateSections = function separateSections(tuples) { + var sectionTuples; + return tuples.reduce(function (sections, tuple) { + if (tuple[0] === 0 && tuple[1] === 'SECTION') { + sectionTuples = []; + } else if (tuple[0] === 0 && tuple[1] === 'ENDSEC') { + sections.push(sectionTuples); + sectionTuples = undefined; + } else if (sectionTuples !== undefined) { + sectionTuples.push(tuple); + } + + return sections; + }, []); +}; // Each section start with the type tuple, then proceeds +// with the contents of the section + + +var reduceSection = function reduceSection(acc, section) { + var sectionType = section[0][1]; + var contentTuples = section.slice(1); + + switch (sectionType) { + case 'HEADER': + acc.header = (0, _header["default"])(contentTuples); + break; + + case 'TABLES': + acc.tables = (0, _tables["default"])(contentTuples); + break; + + case 'BLOCKS': + acc.blocks = (0, _blocks["default"])(contentTuples); + break; + + case 'ENTITIES': + acc.entities = (0, _entities["default"])(contentTuples); + break; + + default: + _logger["default"].warn("Unsupported section: ".concat(sectionType)); + + } + + return acc; +}; + +var _default = function _default(string) { + var lines = string.split(/\r\n|\r|\n/g); + var tuples = convertToTypesAndValues(lines); + var sections = separateSections(tuples); + var result = sections.reduce(reduceSection, { + // Start with empty defaults in the event of empty sections + header: {}, + blocks: [], + entities: [], + tables: { + layers: {}, + styles: {} + } + }); + return result; +}; + +exports["default"] = _default; +},{"./handlers/blocks":8,"./handlers/entities":9,"./handlers/header":24,"./handlers/tables":25,"./util/logger":34}],28:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _vecks = require("vecks"); + +var _colors = _interopRequireDefault(require("./util/colors")); + +var _denormalise = _interopRequireDefault(require("./denormalise")); + +var _entityToPolyline = _interopRequireDefault(require("./entityToPolyline")); + +var _applyTransforms = _interopRequireDefault(require("./applyTransforms")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var _default = function _default(parsed) { + var entities = (0, _denormalise["default"])(parsed); + var polylines = entities.map(function (entity) { + var layerTable = parsed.tables.layers[entity.layer]; + var rgb; + + if (layerTable) { + var colorNumber = 'colorNumber' in entity ? entity.colorNumber : layerTable.colorNumber; + rgb = _colors["default"][colorNumber]; + + if (rgb === undefined) { + _logger["default"].warn('Color index', colorNumber, 'invalid, defaulting to black'); + + rgb = [0, 0, 0]; + } + } else { + _logger["default"].warn('no layer table for layer:' + entity.layer); + + rgb = [0, 0, 0]; + } + + return { + rgb: rgb, + vertices: (0, _applyTransforms["default"])((0, _entityToPolyline["default"])(entity), entity.transforms) + }; + }); + var bbox = new _vecks.Box2(); + polylines.forEach(function (polyline) { + polyline.vertices.forEach(function (vertex) { + bbox.expandByPoint({ + x: vertex[0], + y: vertex[1] + }); + }); + }); + return { + bbox: bbox, + polylines: polylines + }; +}; + +exports["default"] = _default; +},{"./applyTransforms":2,"./denormalise":4,"./entityToPolyline":5,"./util/colors":31,"./util/logger":34,"vecks":50}],29:[function(require,module,exports){ +"use strict"; + +function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.piecewiseToPaths = void 0; + +var _prettyData = require("pretty-data"); + +var _vecks = require("vecks"); + +var _entityToPolyline = _interopRequireDefault(require("./entityToPolyline")); + +var _denormalise = _interopRequireDefault(require("./denormalise")); + +var _getRGBForEntity = _interopRequireDefault(require("./getRGBForEntity")); + +var _logger = _interopRequireDefault(require("./util/logger")); + +var _rotate = _interopRequireDefault(require("./util/rotate")); + +var _rgbToColorAttribute = _interopRequireDefault(require("./util/rgbToColorAttribute")); + +var _toPiecewiseBezier = _interopRequireWildcard(require("./util/toPiecewiseBezier")); + +var _transformBoundingBoxAndElement = _interopRequireDefault(require("./util/transformBoundingBoxAndElement")); + +function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } + +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } + +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } + +var addFlipXIfApplicable = function addFlipXIfApplicable(entity, _ref) { + var bbox = _ref.bbox, + element = _ref.element; + + if (entity.extrusionZ === -1) { + return { + bbox: new _vecks.Box2().expandByPoint({ + x: -bbox.min.x, + y: bbox.min.y + }).expandByPoint({ + x: -bbox.max.x, + y: bbox.max.y + }), + element: "\n ".concat(element, "\n ") + }; + } else { + return { + bbox: bbox, + element: element + }; + } +}; +/** + * Create a element. Interpolates curved entities. + */ + + +var polyline = function polyline(entity) { + var vertices = (0, _entityToPolyline["default"])(entity); + var bbox = vertices.reduce(function (acc, _ref2) { + var _ref3 = _slicedToArray(_ref2, 2), + x = _ref3[0], + y = _ref3[1]; + + return acc.expandByPoint({ + x: x, + y: y + }); + }, new _vecks.Box2()); + var d = vertices.reduce(function (acc, point, i) { + acc += i === 0 ? 'M' : 'L'; + acc += point[0] + ',' + point[1]; + return acc; + }, ''); // Empirically it appears that flipping horzontally does not apply to polyline + + return (0, _transformBoundingBoxAndElement["default"])(bbox, ""), entity.transforms); +}; +/** + * Create a element for the CIRCLE entity. + */ + + +var circle = function circle(entity) { + var bbox0 = new _vecks.Box2().expandByPoint({ + x: entity.x + entity.r, + y: entity.y + entity.r + }).expandByPoint({ + x: entity.x - entity.r, + y: entity.y - entity.r + }); + var element0 = ""); + + var _addFlipXIfApplicable = addFlipXIfApplicable(entity, { + bbox: bbox0, + element: element0 + }), + bbox = _addFlipXIfApplicable.bbox, + element = _addFlipXIfApplicable.element; + + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; +/** + * Create a a or element for the ARC or ELLIPSE + * DXF entity ( if start and end point are the same). + */ + + +var ellipseOrArc = function ellipseOrArc(cx, cy, majorX, majorY, axisRatio, startAngle, endAngle, flipX) { + var rx = Math.sqrt(majorX * majorX + majorY * majorY); + var ry = axisRatio * rx; + var rotationAngle = -Math.atan2(-majorY, majorX); + var bbox = bboxEllipseOrArc(cx, cy, majorX, majorY, axisRatio, startAngle, endAngle, flipX); + + if (Math.abs(startAngle - endAngle) < 1e-9 || Math.abs(startAngle - endAngle + Math.PI * 2) < 1e-9) { + // Use a native when start and end angles are the same, and + // arc paths with same start and end points don't render (at least on Safari) + var element = "\n \n "); + return { + bbox: bbox, + element: element + }; + } else { + var startOffset = (0, _rotate["default"])({ + x: Math.cos(startAngle) * rx, + y: Math.sin(startAngle) * ry + }, rotationAngle); + var startPoint = { + x: cx + startOffset.x, + y: cy + startOffset.y + }; + var endOffset = (0, _rotate["default"])({ + x: Math.cos(endAngle) * rx, + y: Math.sin(endAngle) * ry + }, rotationAngle); + var endPoint = { + x: cx + endOffset.x, + y: cy + endOffset.y + }; + var adjustedEndAngle = endAngle < startAngle ? endAngle + Math.PI * 2 : endAngle; + var largeArcFlag = adjustedEndAngle - startAngle < Math.PI ? 0 : 1; + var d = "M ".concat(startPoint.x, " ").concat(startPoint.y, " A ").concat(rx, " ").concat(ry, " ").concat(rotationAngle / Math.PI * 180, " ").concat(largeArcFlag, " 1 ").concat(endPoint.x, " ").concat(endPoint.y); + + var _element = ""); + + return { + bbox: bbox, + element: _element + }; + } +}; +/** + * Compute the bounding box of an elliptical arc, given the DXF entity parameters + */ + + +var bboxEllipseOrArc = function bboxEllipseOrArc(cx, cy, majorX, majorY, axisRatio, startAngle, endAngle, flipX) { + // The bounding box will be defined by the starting point of the ellipse, and ending point, + // and any extrema on the ellipse that are between startAngle and endAngle. + // The extrema are found by setting either the x or y component of the ellipse's + // tangent vector to zero and solving for the angle. + // Ensure start and end angles are > 0 and well-ordered + while (startAngle < 0) { + startAngle += Math.PI * 2; + } + + while (endAngle <= startAngle) { + endAngle += Math.PI * 2; + } // When rotated, the extrema of the ellipse will be found at these angles + + + var angles = []; + + if (Math.abs(majorX) < 1e-12 || Math.abs(majorY) < 1e-12) { + // Special case for majorX or majorY = 0 + for (var i = 0; i < 4; i++) { + angles.push(i / 2 * Math.PI); + } + } else { + // reference https://github.com/bjnortier/dxf/issues/47#issuecomment-545915042 + angles[0] = Math.atan(-majorY * axisRatio / majorX) - Math.PI; // Ensure angles < 0 + + angles[1] = Math.atan(majorX * axisRatio / majorY) - Math.PI; + angles[2] = angles[0] - Math.PI; + angles[3] = angles[1] - Math.PI; + } // Remove angles not falling between start and end + + + for (var _i2 = 4; _i2 >= 0; _i2--) { + while (angles[_i2] < startAngle) { + angles[_i2] += Math.PI * 2; + } + + if (angles[_i2] > endAngle) { + angles.splice(_i2, 1); + } + } // Also to consider are the starting and ending points: + + + angles.push(startAngle); + angles.push(endAngle); // Compute points lying on the unit circle at these angles + + var pts = angles.map(function (a) { + return { + x: Math.cos(a), + y: Math.sin(a) + }; + }); // Transformation matrix, formed by the major and minor axes + + var M = [[majorX, -majorY * axisRatio], [majorY, majorX * axisRatio]]; // Rotate, scale, and translate points + + var rotatedPts = pts.map(function (p) { + return { + x: p.x * M[0][0] + p.y * M[0][1] + cx, + y: p.x * M[1][0] + p.y * M[1][1] + cy + }; + }); // Compute extents of bounding box + + var bbox = rotatedPts.reduce(function (acc, p) { + acc.expandByPoint(p); + return acc; + }, new _vecks.Box2()); + return bbox; +}; +/** + * An ELLIPSE is defined by the major axis, convert to X and Y radius with + * a rotation angle + */ + + +var ellipse = function ellipse(entity) { + var _ellipseOrArc = ellipseOrArc(entity.x, entity.y, entity.majorX, entity.majorY, entity.axisRatio, entity.startAngle, entity.endAngle), + bbox0 = _ellipseOrArc.bbox, + element0 = _ellipseOrArc.element; + + var _addFlipXIfApplicable2 = addFlipXIfApplicable(entity, { + bbox: bbox0, + element: element0 + }), + bbox = _addFlipXIfApplicable2.bbox, + element = _addFlipXIfApplicable2.element; + + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; +/** + * An ARC is an ellipse with equal radii + */ + + +var arc = function arc(entity) { + var _ellipseOrArc2 = ellipseOrArc(entity.x, entity.y, entity.r, 0, 1, entity.startAngle, entity.endAngle, entity.extrusionZ === -1), + bbox0 = _ellipseOrArc2.bbox, + element0 = _ellipseOrArc2.element; + + var _addFlipXIfApplicable3 = addFlipXIfApplicable(entity, { + bbox: bbox0, + element: element0 + }), + bbox = _addFlipXIfApplicable3.bbox, + element = _addFlipXIfApplicable3.element; + + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; + +var piecewiseToPaths = function piecewiseToPaths(k, knots, controlPoints) { + var paths = []; + var controlPointIndex = 0; + var knotIndex = k; + + while (knotIndex < knots.length - k + 1) { + var m = (0, _toPiecewiseBezier.multiplicity)(knots, knotIndex); + var cp = controlPoints.slice(controlPointIndex, controlPointIndex + k); + + if (k === 4) { + paths.push("")); + } else if (k === 3) { + paths.push("")); + } + + controlPointIndex += m; + knotIndex += m; + } + + return paths; +}; + +exports.piecewiseToPaths = piecewiseToPaths; + +var bezier = function bezier(entity) { + var bbox = new _vecks.Box2(); + entity.controlPoints.forEach(function (p) { + bbox = bbox.expandByPoint(p); + }); + var k = entity.degree + 1; + var piecewise = (0, _toPiecewiseBezier["default"])(k, entity.controlPoints, entity.knots); + var paths = piecewiseToPaths(k, piecewise.knots, piecewise.controlPoints); + var element = "".concat(paths.join(''), ""); + return (0, _transformBoundingBoxAndElement["default"])(bbox, element, entity.transforms); +}; +/** + * Switcth the appropriate function on entity type. CIRCLE, ARC and ELLIPSE + * produce native SVG elements, the rest produce interpolated polylines. + */ + + +var entityToBoundsAndElement = function entityToBoundsAndElement(entity) { + switch (entity.type) { + case 'CIRCLE': + return circle(entity); + + case 'ELLIPSE': + return ellipse(entity); + + case 'ARC': + return arc(entity); + + case 'SPLINE': + { + if (entity.degree === 2 || entity.degree === 3) { + try { + return bezier(entity); + } catch (err) { + return polyline(entity); + } + } else { + return polyline(entity); + } + } + + case 'LINE': + case 'LWPOLYLINE': + case 'POLYLINE': + { + return polyline(entity); + } + + default: + _logger["default"].warn('entity type not supported in SVG rendering:', entity.type); + + return null; + } +}; + +var _default = function _default(parsed) { + var entities = (0, _denormalise["default"])(parsed); + + var _entities$reduce = entities.reduce(function (acc, entity, i) { + var rgb = (0, _getRGBForEntity["default"])(parsed.tables.layers, entity); + var boundsAndElement = entityToBoundsAndElement(entity); // Ignore entities like MTEXT that don't produce SVG elements + + if (boundsAndElement) { + var _bbox = boundsAndElement.bbox, + element = boundsAndElement.element; // Ignore invalid bounding boxes + + if (_bbox.valid) { + acc.bbox.expandByPoint(_bbox.min); + acc.bbox.expandByPoint(_bbox.max); + } + + acc.elements.push("").concat(element, "")); + } + + return acc; + }, { + bbox: new _vecks.Box2(), + elements: [] + }), + bbox = _entities$reduce.bbox, + elements = _entities$reduce.elements; + + var viewBox = bbox.valid ? { + x: bbox.min.x, + y: -bbox.max.y, + width: bbox.max.x - bbox.min.x, + height: bbox.max.y - bbox.min.y + } : { + x: 0, + y: 0, + width: 0, + height: 0 + }; + return "\n\n \n ").concat(_prettyData.pd.xml(elements.join('\n')), "\n \n"); +}; + +exports["default"] = _default; +},{"./denormalise":4,"./entityToPolyline":5,"./getRGBForEntity":6,"./util/logger":34,"./util/rgbToColorAttribute":35,"./util/rotate":36,"./util/toPiecewiseBezier":37,"./util/transformBoundingBoxAndElement":38,"pretty-data":40,"vecks":50}],30:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _round = require("round10"); + +/** + * Copied and ported to code standard as the b-spline library is not maintained any longer. + * Source: + * https://github.com/thibauts/b-spline + * Copyright (c) 2015 Thibaut Séguy + */ +var _default = function _default(t, degree, points, knots, weights) { + var n = points.length; // points count + + var d = points[0].length; // point dimensionality + + if (t < 0 || t > 1) { + throw new Error('t out of bounds [0,1]: ' + t); + } + + if (degree < 1) throw new Error('degree must be at least 1 (linear)'); + if (degree > n - 1) throw new Error('degree must be less than or equal to point count - 1'); + + if (!weights) { + // build weight vector of length [n] + weights = []; + + for (var i = 0; i < n; i++) { + weights[i] = 1; + } + } + + if (!knots) { + // build knot vector of length [n + degree + 1] + knots = []; + + for (var _i = 0; _i < n + degree + 1; _i++) { + knots[_i] = _i; + } + } else { + if (knots.length !== n + degree + 1) throw new Error('bad knot vector length'); + } + + var domain = [degree, knots.length - 1 - degree]; // remap t to the domain where the spline is defined + + var low = knots[domain[0]]; + var high = knots[domain[1]]; + t = t * (high - low) + low; // Clamp to the upper & lower bounds instead of + // throwing an error like in the original lib + // https://github.com/bjnortier/dxf/issues/28 + + t = Math.max(t, low); + t = Math.min(t, high); // find s (the spline segment) for the [t] value provided + + var s; + + for (s = domain[0]; s < domain[1]; s++) { + if (t >= knots[s] && t <= knots[s + 1]) { + break; + } + } // convert points to homogeneous coordinates + + + var v = []; + + for (var _i2 = 0; _i2 < n; _i2++) { + v[_i2] = []; + + for (var j = 0; j < d; j++) { + v[_i2][j] = points[_i2][j] * weights[_i2]; + } + + v[_i2][d] = weights[_i2]; + } // l (level) goes from 1 to the curve degree + 1 + + + var alpha; + + for (var l = 1; l <= degree + 1; l++) { + // build level l of the pyramid + for (var _i3 = s; _i3 > s - degree - 1 + l; _i3--) { + alpha = (t - knots[_i3]) / (knots[_i3 + degree + 1 - l] - knots[_i3]); // interpolate each component + + for (var _j = 0; _j < d + 1; _j++) { + v[_i3][_j] = (1 - alpha) * v[_i3 - 1][_j] + alpha * v[_i3][_j]; + } + } + } // convert back to cartesian and return + + + var result = []; + + for (var _i4 = 0; _i4 < d; _i4++) { + result[_i4] = (0, _round.round10)(v[s][_i4] / v[s][d], -9); + } + + return result; +}; + +exports["default"] = _default; +},{"round10":41}],31:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; +var _default = [[0, 0, 0], [255, 0, 0], [255, 255, 0], [0, 255, 0], [0, 255, 255], [0, 0, 255], [255, 0, 255], [255, 255, 255], [65, 65, 65], [128, 128, 128], [255, 0, 0], [255, 170, 170], [189, 0, 0], [189, 126, 126], [129, 0, 0], [129, 86, 86], [104, 0, 0], [104, 69, 69], [79, 0, 0], [79, 53, 53], [255, 63, 0], [255, 191, 170], [189, 46, 0], [189, 141, 126], [129, 31, 0], [129, 96, 86], [104, 25, 0], [104, 78, 69], [79, 19, 0], [79, 59, 53], [255, 127, 0], [255, 212, 170], [189, 94, 0], [189, 157, 126], [129, 64, 0], [129, 107, 86], [104, 52, 0], [104, 86, 69], [79, 39, 0], [79, 66, 53], [255, 191, 0], [255, 234, 170], [189, 141, 0], [189, 173, 126], [129, 96, 0], [129, 118, 86], [104, 78, 0], [104, 95, 69], [79, 59, 0], [79, 73, 53], [255, 255, 0], [255, 255, 170], [189, 189, 0], [189, 189, 126], [129, 129, 0], [129, 129, 86], [104, 104, 0], [104, 104, 69], [79, 79, 0], [79, 79, 53], [191, 255, 0], [234, 255, 170], [141, 189, 0], [173, 189, 126], [96, 129, 0], [118, 129, 86], [78, 104, 0], [95, 104, 69], [59, 79, 0], [73, 79, 53], [127, 255, 0], [212, 255, 170], [94, 189, 0], [157, 189, 126], [64, 129, 0], [107, 129, 86], [52, 104, 0], [86, 104, 69], [39, 79, 0], [66, 79, 53], [63, 255, 0], [191, 255, 170], [46, 189, 0], [141, 189, 126], [31, 129, 0], [96, 129, 86], [25, 104, 0], [78, 104, 69], [19, 79, 0], [59, 79, 53], [0, 255, 0], [170, 255, 170], [0, 189, 0], [126, 189, 126], [0, 129, 0], [86, 129, 86], [0, 104, 0], [69, 104, 69], [0, 79, 0], [53, 79, 53], [0, 255, 63], [170, 255, 191], [0, 189, 46], [126, 189, 141], [0, 129, 31], [86, 129, 96], [0, 104, 25], [69, 104, 78], [0, 79, 19], [53, 79, 59], [0, 255, 127], [170, 255, 212], [0, 189, 94], [126, 189, 157], [0, 129, 64], [86, 129, 107], [0, 104, 52], [69, 104, 86], [0, 79, 39], [53, 79, 66], [0, 255, 191], [170, 255, 234], [0, 189, 141], [126, 189, 173], [0, 129, 96], [86, 129, 118], [0, 104, 78], [69, 104, 95], [0, 79, 59], [53, 79, 73], [0, 255, 255], [170, 255, 255], [0, 189, 189], [126, 189, 189], [0, 129, 129], [86, 129, 129], [0, 104, 104], [69, 104, 104], [0, 79, 79], [53, 79, 79], [0, 191, 255], [170, 234, 255], [0, 141, 189], [126, 173, 189], [0, 96, 129], [86, 118, 129], [0, 78, 104], [69, 95, 104], [0, 59, 79], [53, 73, 79], [0, 127, 255], [170, 212, 255], [0, 94, 189], [126, 157, 189], [0, 64, 129], [86, 107, 129], [0, 52, 104], [69, 86, 104], [0, 39, 79], [53, 66, 79], [0, 63, 255], [170, 191, 255], [0, 46, 189], [126, 141, 189], [0, 31, 129], [86, 96, 129], [0, 25, 104], [69, 78, 104], [0, 19, 79], [53, 59, 79], [0, 0, 255], [170, 170, 255], [0, 0, 189], [126, 126, 189], [0, 0, 129], [86, 86, 129], [0, 0, 104], [69, 69, 104], [0, 0, 79], [53, 53, 79], [63, 0, 255], [191, 170, 255], [46, 0, 189], [141, 126, 189], [31, 0, 129], [96, 86, 129], [25, 0, 104], [78, 69, 104], [19, 0, 79], [59, 53, 79], [127, 0, 255], [212, 170, 255], [94, 0, 189], [157, 126, 189], [64, 0, 129], [107, 86, 129], [52, 0, 104], [86, 69, 104], [39, 0, 79], [66, 53, 79], [191, 0, 255], [234, 170, 255], [141, 0, 189], [173, 126, 189], [96, 0, 129], [118, 86, 129], [78, 0, 104], [95, 69, 104], [59, 0, 79], [73, 53, 79], [255, 0, 255], [255, 170, 255], [189, 0, 189], [189, 126, 189], [129, 0, 129], [129, 86, 129], [104, 0, 104], [104, 69, 104], [79, 0, 79], [79, 53, 79], [255, 0, 191], [255, 170, 234], [189, 0, 141], [189, 126, 173], [129, 0, 96], [129, 86, 118], [104, 0, 78], [104, 69, 95], [79, 0, 59], [79, 53, 73], [255, 0, 127], [255, 170, 212], [189, 0, 94], [189, 126, 157], [129, 0, 64], [129, 86, 107], [104, 0, 52], [104, 69, 86], [79, 0, 39], [79, 53, 66], [255, 0, 63], [255, 170, 191], [189, 0, 46], [189, 126, 141], [129, 0, 31], [129, 86, 96], [104, 0, 25], [104, 69, 78], [79, 0, 19], [79, 53, 59], [51, 51, 51], [80, 80, 80], [105, 105, 105], [130, 130, 130], [190, 190, 190], [255, 255, 255]]; +exports["default"] = _default; +},{}],32:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _vecks = require("vecks"); + +/** + * Create the arcs point for a LWPOLYLINE. The start and end are excluded + * + * See diagram.png in this directory for description of points and angles used. + */ +var _default = function _default(from, to, bulge, resolution) { + // Resolution in degrees + if (!resolution) { + resolution = 5; + } // If the bulge is < 0, the arc goes clockwise. So we simply + // reverse a and b and invert sign + // Bulge = tan(theta/4) + + + var theta; + var a; + var b; + + if (bulge < 0) { + theta = Math.atan(-bulge) * 4; + a = new _vecks.V2(from[0], from[1]); + b = new _vecks.V2(to[0], to[1]); + } else { + // Default is counter-clockwise + theta = Math.atan(bulge) * 4; + a = new _vecks.V2(to[0], to[1]); + b = new _vecks.V2(from[0], from[1]); + } + + var ab = b.sub(a); + var lengthAB = ab.length(); + var c = a.add(ab.multiply(0.5)); // Distance from center of arc to line between form and to points + + var lengthCD = Math.abs(lengthAB / 2 / Math.tan(theta / 2)); + var normAB = ab.norm(); + var d; + + if (theta < Math.PI) { + var normDC = new _vecks.V2(normAB.x * Math.cos(Math.PI / 2) - normAB.y * Math.sin(Math.PI / 2), normAB.y * Math.cos(Math.PI / 2) + normAB.x * Math.sin(Math.PI / 2)); // D is the center of the arc + + d = c.add(normDC.multiply(-lengthCD)); + } else { + var normCD = new _vecks.V2(normAB.x * Math.cos(Math.PI / 2) - normAB.y * Math.sin(Math.PI / 2), normAB.y * Math.cos(Math.PI / 2) + normAB.x * Math.sin(Math.PI / 2)); // D is the center of the arc + + d = c.add(normCD.multiply(lengthCD)); + } // Add points between start start and eng angle relative + // to the center point + + + var startAngle = Math.atan2(b.y - d.y, b.x - d.x) / Math.PI * 180; + var endAngle = Math.atan2(a.y - d.y, a.x - d.x) / Math.PI * 180; + + if (endAngle < startAngle) { + endAngle += 360; + } + + var r = b.sub(d).length(); + var startInter = Math.floor(startAngle / resolution) * resolution + resolution; + var endInter = Math.ceil(endAngle / resolution) * resolution - resolution; + var points = []; + + for (var i = startInter; i <= endInter; i += resolution) { + points.push(d.add(new _vecks.V2(Math.cos(i / 180 * Math.PI) * r, Math.sin(i / 180 * Math.PI) * r))); + } // Maintain the right ordering to join the from and to points + + + if (bulge < 0) { + points.reverse(); + } + + return points.map(function (p) { + return [p.x, p.y]; + }); +}; + +exports["default"] = _default; +},{"vecks":50}],33:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Knot insertion is known as "Boehm's algorithm" + * + * https://math.stackexchange.com/questions/417859/convert-a-b-spline-into-bezier-curves + * code adapted from http://preserve.mactech.com/articles/develop/issue_25/schneider.html + */ +var _default = function _default(k, controlPoints, knots, newKnot) { + var x = knots; + var b = controlPoints; + var n = controlPoints.length; + var i = 0; + var foundIndex = false; + + for (var j = 0; j < n + k; j++) { + if (newKnot > x[j] && newKnot <= x[j + 1]) { + i = j; + foundIndex = true; + break; + } + } + + if (!foundIndex) { + throw new Error('invalid new knot'); + } + + var xHat = []; + + for (var _j = 0; _j < n + k + 1; _j++) { + if (_j <= i) { + xHat[_j] = x[_j]; + } else if (_j === i + 1) { + xHat[_j] = newKnot; + } else { + xHat[_j] = x[_j - 1]; + } + } + + var alpha; + var bHat = []; + + for (var _j2 = 0; _j2 < n + 1; _j2++) { + if (_j2 <= i - k + 1) { + alpha = 1; + } else if (i - k + 2 <= _j2 && _j2 <= i) { + if (x[_j2 + k - 1] - x[_j2] === 0) { + alpha = 0; + } else { + alpha = (newKnot - x[_j2]) / (x[_j2 + k - 1] - x[_j2]); + } + } else { + alpha = 0; + } + + if (alpha === 0) { + bHat[_j2] = b[_j2 - 1]; + } else if (alpha === 1) { + bHat[_j2] = b[_j2]; + } else { + bHat[_j2] = { + x: (1 - alpha) * b[_j2 - 1].x + alpha * b[_j2].x, + y: (1 - alpha) * b[_j2 - 1].y + alpha * b[_j2].y + }; + } + } + + return { + controlPoints: bHat, + knots: xHat + }; +}; + +exports["default"] = _default; +},{}],34:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _config = _interopRequireDefault(require("../config")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function info() { + if (_config["default"].verbose) { + console.info.apply(undefined, arguments); + } +} + +function warn() { + if (_config["default"].verbose) { + console.warn.apply(undefined, arguments); + } +} + +function error() { + console.error.apply(undefined, arguments); +} + +var _default = { + info: info, + warn: warn, + error: error +}; +exports["default"] = _default; +},{"../config":3}],35:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Convert an RGB array to a CSS string definition. + * Converts white lines to black as the default. + */ +var _default = function _default(rgb) { + if (rgb[0] === 255 && rgb[1] === 255 && rgb[2] === 255) { + return 'rgb(0, 0, 0)'; + } else { + return "rgb(".concat(rgb[0], ", ").concat(rgb[1], ", ").concat(rgb[2], ")"); + } +}; + +exports["default"] = _default; +},{}],36:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +/** + * Rotate a points by the given angle. + * + * @param points the points + * @param angle the rotation angle + */ +var _default = function _default(p, angle) { + return { + x: p.x * Math.cos(angle) - p.y * Math.sin(angle), + y: p.y * Math.cos(angle) + p.x * Math.sin(angle) + }; +}; + +exports["default"] = _default; +},{}],37:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = exports.computeInsertions = exports.multiplicity = exports.checkPinned = void 0; + +var _insertKnot = _interopRequireDefault(require("./insertKnot")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +/** + * For a pinned spline, the knots have to be repeated k times + * (where k is the order), at both the beginning and the end + */ +var checkPinned = function checkPinned(k, knots) { + // Pinned at the start + for (var i = 1; i < k; ++i) { + if (knots[i] !== knots[0]) { + throw Error("not pinned. order: ".concat(k, " knots: ").concat(knots)); + } + } // Pinned at the end + + + for (var _i = knots.length - 2; _i > knots.length - k - 1; --_i) { + if (knots[_i] !== knots[knots.length - 1]) { + throw Error("not pinned. order: ".concat(k, " knots: ").concat(knots)); + } + } +}; + +exports.checkPinned = checkPinned; + +var multiplicity = function multiplicity(knots, index) { + var m = 1; + + for (var i = index + 1; i < knots.length; ++i) { + if (knots[i] === knots[index]) { + ++m; + } else { + break; + } + } + + return m; +}; +/** + * https://saccade.com/writing/graphics/KnotVectors.pdf + * A quadratic piecewise Bézier knot vector with seven control points + * will look like this [0 0 0 1 1 2 2 3 3 3]. In general, in a + * piecewise Bézier knot vector the first k knots are the same, + * then each subsequent group of k-1 knots is the same, + * until you get to the end. + */ + + +exports.multiplicity = multiplicity; + +var computeInsertions = function computeInsertions(k, knots) { + var inserts = []; + var i = k; + + while (i < knots.length - k) { + var knot = knots[i]; + var m = multiplicity(knots, i); + + for (var j = 0; j < k - m - 1; ++j) { + inserts.push(knot); + } + + i = i + m; + } + + return inserts; +}; + +exports.computeInsertions = computeInsertions; + +var _default = function _default(k, controlPoints, knots) { + checkPinned(k, knots); + var insertions = computeInsertions(k, knots); + return insertions.reduce(function (acc, tNew) { + return (0, _insertKnot["default"])(k, acc.controlPoints, acc.knots, tNew); + }, { + controlPoints: controlPoints, + knots: knots + }); +}; + +exports["default"] = _default; +},{"./insertKnot":33}],38:[function(require,module,exports){ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports["default"] = void 0; + +var _vecks = require("vecks"); + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } + +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } + +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } + +/** + * Transform the bounding box and the SVG element by the given + * transforms. The element are created in reverse transform + * order and the bounding box in the given order. + */ +var _default = function _default(bbox, element, transforms) { + var transformedElement = ''; + var matrices = transforms.map(function (transform) { + // Create the transformation matrix + var tx = transform.x || 0; + var ty = transform.y || 0; + var sx = transform.scaleX || 1; + var sy = transform.scaleY || 1; + var angle = (transform.rotation || 0) / 180 * Math.PI; + var cos = Math.cos, + sin = Math.sin; + var a, b, c, d, e, f; // In DXF an extrusionZ value of -1 denote a tranform around the Y axis. + + if (transform.extrusionZ === -1) { + a = -sx * cos(angle); + b = sx * sin(angle); + c = sy * sin(angle); + d = sy * cos(angle); + e = -tx; + f = ty; + } else { + a = sx * cos(angle); + b = sx * sin(angle); + c = -sy * sin(angle); + d = sy * cos(angle); + e = tx; + f = ty; + } + + return [a, b, c, d, e, f]; + }); // Only transform the bounding box is it is valid (i.e. not Infinity) + + var transformedBBox = new _vecks.Box2(); + + if (bbox.valid) { + var bboxPoints = [{ + x: bbox.min.x, + y: bbox.min.y + }, { + x: bbox.max.x, + y: bbox.min.y + }, { + x: bbox.max.x, + y: bbox.max.y + }, { + x: bbox.min.x, + y: bbox.max.y + }]; + matrices.forEach(function (_ref) { + var _ref2 = _slicedToArray(_ref, 6), + a = _ref2[0], + b = _ref2[1], + c = _ref2[2], + d = _ref2[3], + e = _ref2[4], + f = _ref2[5]; + + bboxPoints = bboxPoints.map(function (point) { + return { + x: point.x * a + point.y * c + e, + y: point.x * b + point.y * d + f + }; + }); + }); + transformedBBox = bboxPoints.reduce(function (acc, point) { + return acc.expandByPoint(point); + }, new _vecks.Box2()); + } + + matrices.reverse(); + matrices.forEach(function (_ref3) { + var _ref4 = _slicedToArray(_ref3, 6), + a = _ref4[0], + b = _ref4[1], + c = _ref4[2], + d = _ref4[3], + e = _ref4[4], + f = _ref4[5]; + + transformedElement += ""); + }); + transformedElement += element; + matrices.forEach(function (transform) { + transformedElement += ''; + }); + return { + bbox: transformedBBox, + element: transformedElement + }; +}; + +exports["default"] = _default; +},{"vecks":50}],39:[function(require,module,exports){ +(function (global){ +/** + * @license + * Lodash + * Copyright OpenJS Foundation and other contributors + * Released under MIT license + * Based on Underscore.js 1.8.3 + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ +;(function() { + + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; + + /** Used as the semantic version number. */ + var VERSION = '4.17.19'; + + /** Used as the size to enable large array optimizations. */ + var LARGE_ARRAY_SIZE = 200; + + /** Error message constants. */ + var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.', + FUNC_ERROR_TEXT = 'Expected a function'; + + /** Used to stand-in for `undefined` hash values. */ + var HASH_UNDEFINED = '__lodash_hash_undefined__'; + + /** Used as the maximum memoize cache size. */ + var MAX_MEMOIZE_SIZE = 500; + + /** Used as the internal argument placeholder. */ + var PLACEHOLDER = '__lodash_placeholder__'; + + /** Used to compose bitmasks for cloning. */ + var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + + /** Used to compose bitmasks for value comparisons. */ + var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; + + /** Used to compose bitmasks for function metadata. */ + var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256, + WRAP_FLIP_FLAG = 512; + + /** Used as default options for `_.truncate`. */ + var DEFAULT_TRUNC_LENGTH = 30, + DEFAULT_TRUNC_OMISSION = '...'; + + /** Used to detect hot functions by number of calls within a span of milliseconds. */ + var HOT_COUNT = 800, + HOT_SPAN = 16; + + /** Used to indicate the type of lazy iteratees. */ + var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2, + LAZY_WHILE_FLAG = 3; + + /** Used as references for various `Number` constants. */ + var INFINITY = 1 / 0, + MAX_SAFE_INTEGER = 9007199254740991, + MAX_INTEGER = 1.7976931348623157e+308, + NAN = 0 / 0; + + /** Used as references for the maximum length and index of an array. */ + var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; + + /** Used to associate wrap methods with their bit flags. */ + var wrapFlags = [ + ['ary', WRAP_ARY_FLAG], + ['bind', WRAP_BIND_FLAG], + ['bindKey', WRAP_BIND_KEY_FLAG], + ['curry', WRAP_CURRY_FLAG], + ['curryRight', WRAP_CURRY_RIGHT_FLAG], + ['flip', WRAP_FLIP_FLAG], + ['partial', WRAP_PARTIAL_FLAG], + ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], + ['rearg', WRAP_REARG_FLAG] + ]; + + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + asyncTag = '[object AsyncFunction]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + domExcTag = '[object DOMException]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + nullTag = '[object Null]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + proxyTag = '[object Proxy]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + undefinedTag = '[object Undefined]', + weakMapTag = '[object WeakMap]', + weakSetTag = '[object WeakSet]'; + + var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + + /** Used to match empty string literals in compiled template source. */ + var reEmptyStringLeading = /\b__p \+= '';/g, + reEmptyStringMiddle = /\b(__p \+=) '' \+/g, + reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; + + /** Used to match HTML entities and HTML characters. */ + var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, + reUnescapedHtml = /[&<>"']/g, + reHasEscapedHtml = RegExp(reEscapedHtml.source), + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); + + /** Used to match template delimiters. */ + var reEscape = /<%-([\s\S]+?)%>/g, + reEvaluate = /<%([\s\S]+?)%>/g, + reInterpolate = /<%=([\s\S]+?)%>/g; + + /** Used to match property names within property paths. */ + var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/, + rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; + + /** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ + var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, + reHasRegExpChar = RegExp(reRegExpChar.source); + + /** Used to match leading and trailing whitespace. */ + var reTrim = /^\s+|\s+$/g, + reTrimStart = /^\s+/, + reTrimEnd = /\s+$/; + + /** Used to match wrap detail comments. */ + var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, + reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, + reSplitDetails = /,? & /; + + /** Used to match words composed of alphanumeric characters. */ + var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; + + /** Used to match backslashes in property paths. */ + var reEscapeChar = /\\(\\)?/g; + + /** + * Used to match + * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components). + */ + var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; + + /** Used to match `RegExp` flags from their coerced string values. */ + var reFlags = /\w*$/; + + /** Used to detect bad signed hexadecimal string values. */ + var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; + + /** Used to detect binary string values. */ + var reIsBinary = /^0b[01]+$/i; + + /** Used to detect host constructors (Safari). */ + var reIsHostCtor = /^\[object .+?Constructor\]$/; + + /** Used to detect octal string values. */ + var reIsOctal = /^0o[0-7]+$/i; + + /** Used to detect unsigned integer values. */ + var reIsUint = /^(?:0|[1-9]\d*)$/; + + /** Used to match Latin Unicode letters (excluding mathematical operators). */ + var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; + + /** Used to ensure capturing order of template delimiters. */ + var reNoMatch = /($^)/; + + /** Used to match unescaped characters in compiled string literals. */ + var reUnescapedString = /['\n\r\u2028\u2029\\]/g; + + /** Used to compose unicode character classes. */ + var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsDingbatRange = '\\u2700-\\u27bf', + rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', + rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', + rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', + rsPunctuationRange = '\\u2000-\\u206f', + rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', + rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', + rsVarRange = '\\ufe0e\\ufe0f', + rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; + + /** Used to compose unicode capture groups. */ + var rsApos = "['\u2019]", + rsAstral = '[' + rsAstralRange + ']', + rsBreak = '[' + rsBreakRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsDigits = '\\d+', + rsDingbat = '[' + rsDingbatRange + ']', + rsLower = '[' + rsLowerRange + ']', + rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsUpper = '[' + rsUpperRange + ']', + rsZWJ = '\\u200d'; + + /** Used to compose unicode regexes. */ + var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', + rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', + rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', + rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', + reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', + rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; + + /** Used to match apostrophes. */ + var reApos = RegExp(rsApos, 'g'); + + /** + * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and + * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). + */ + var reComboMark = RegExp(rsCombo, 'g'); + + /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ + var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); + + /** Used to match complex or compound words. */ + var reUnicodeWord = RegExp([ + rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', + rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', + rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, + rsUpper + '+' + rsOptContrUpper, + rsOrdUpper, + rsOrdLower, + rsDigits, + rsEmoji + ].join('|'), 'g'); + + /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ + var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); + + /** Used to detect strings that need a more robust regexp to match words. */ + var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; + + /** Used to assign default `context` object properties. */ + var contextProps = [ + 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array', + 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object', + 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array', + 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', + '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout' + ]; + + /** Used to make template sourceURLs easier to identify. */ + var templateCounter = -1; + + /** Used to identify `toStringTag` values of typed arrays. */ + var typedArrayTags = {}; + typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = + typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = + typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = + typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = + typedArrayTags[uint32Tag] = true; + typedArrayTags[argsTag] = typedArrayTags[arrayTag] = + typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = + typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = + typedArrayTags[errorTag] = typedArrayTags[funcTag] = + typedArrayTags[mapTag] = typedArrayTags[numberTag] = + typedArrayTags[objectTag] = typedArrayTags[regexpTag] = + typedArrayTags[setTag] = typedArrayTags[stringTag] = + typedArrayTags[weakMapTag] = false; + + /** Used to identify `toStringTag` values supported by `_.clone`. */ + var cloneableTags = {}; + cloneableTags[argsTag] = cloneableTags[arrayTag] = + cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = + cloneableTags[boolTag] = cloneableTags[dateTag] = + cloneableTags[float32Tag] = cloneableTags[float64Tag] = + cloneableTags[int8Tag] = cloneableTags[int16Tag] = + cloneableTags[int32Tag] = cloneableTags[mapTag] = + cloneableTags[numberTag] = cloneableTags[objectTag] = + cloneableTags[regexpTag] = cloneableTags[setTag] = + cloneableTags[stringTag] = cloneableTags[symbolTag] = + cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = + cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; + cloneableTags[errorTag] = cloneableTags[funcTag] = + cloneableTags[weakMapTag] = false; + + /** Used to map Latin Unicode letters to basic Latin letters. */ + var deburredLetters = { + // Latin-1 Supplement block. + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss', + // Latin Extended-A block. + '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', + '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', + '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', + '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', + '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', + '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', + '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', + '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', + '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', + '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', + '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', + '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', + '\u0134': 'J', '\u0135': 'j', + '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', + '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', + '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', + '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', + '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', + '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', + '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', + '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', + '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', + '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', + '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', + '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', + '\u0163': 't', '\u0165': 't', '\u0167': 't', + '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', + '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', + '\u0174': 'W', '\u0175': 'w', + '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', + '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', + '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', + '\u0132': 'IJ', '\u0133': 'ij', + '\u0152': 'Oe', '\u0153': 'oe', + '\u0149': "'n", '\u017f': 's' + }; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }; + + /** Used to map HTML entities to characters. */ + var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" + }; + + /** Used to escape characters for inclusion in compiled string literals. */ + var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; + + /** Built-in method references without a dependency on `root`. */ + var freeParseFloat = parseFloat, + freeParseInt = parseInt; + + /** Detect free variable `global` from Node.js. */ + var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; + + /** Detect free variable `self`. */ + var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + + /** Used as a reference to the global object. */ + var root = freeGlobal || freeSelf || Function('return this')(); + + /** Detect free variable `exports`. */ + var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; + + /** Detect free variable `module`. */ + var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; + + /** Detect the popular CommonJS extension `module.exports`. */ + var moduleExports = freeModule && freeModule.exports === freeExports; + + /** Detect free variable `process` from Node.js. */ + var freeProcess = moduleExports && freeGlobal.process; + + /** Used to access faster Node.js helpers. */ + var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; + + if (types) { + return types; + } + + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} + }()); + + /* Node.js helper references. */ + var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, + nodeIsDate = nodeUtil && nodeUtil.isDate, + nodeIsMap = nodeUtil && nodeUtil.isMap, + nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, + nodeIsSet = nodeUtil && nodeUtil.isSet, + nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; + + /*--------------------------------------------------------------------------*/ + + /** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ + function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); + } + return func.apply(thisArg, args); + } + + /** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; + } + + /** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.forEachRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEachRight(array, iteratee) { + var length = array == null ? 0 : array.length; + + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; + } + } + return array; + } + + /** + * A specialized version of `_.every` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ + function arrayEvery(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; + } + } + return true; + } + + /** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * A specialized version of `_.includes` for arrays without support for + * specifying an index to search from. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludes(array, value) { + var length = array == null ? 0 : array.length; + return !!length && baseIndexOf(array, value, 0) > -1; + } + + /** + * This function is like `arrayIncludes` except that it accepts a comparator. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @param {Function} comparator The comparator invoked per element. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludesWith(array, value, comparator) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (comparator(value, array[index])) { + return true; + } + } + return false; + } + + /** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; + } + + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; + } + return array; + } + + /** + * A specialized version of `_.reduce` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the first element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduce(array, iteratee, accumulator, initAccum) { + var index = -1, + length = array == null ? 0 : array.length; + + if (initAccum && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; + } + + /** + * A specialized version of `_.reduceRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the last element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduceRight(array, iteratee, accumulator, initAccum) { + var length = array == null ? 0 : array.length; + if (initAccum && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); + } + return accumulator; + } + + /** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } + } + return false; + } + + /** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + var asciiSize = baseProperty('length'); + + /** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function asciiToArray(string) { + return string.split(''); + } + + /** + * Splits an ASCII `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function asciiWords(string) { + return string.match(reAsciiWord) || []; + } + + /** + * The base implementation of methods like `_.findKey` and `_.findLastKey`, + * without support for iteratee shorthands, which iterates over `collection` + * using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the found element or its key, else `undefined`. + */ + function baseFindKey(collection, predicate, eachFunc) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = key; + return false; + } + }); + return result; + } + + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); + + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); + } + + /** + * This function is like `baseIndexOf` except that it accepts a comparator. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @param {Function} comparator The comparator invoked per element. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOfWith(array, value, fromIndex, comparator) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (comparator(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ + function baseIsNaN(value) { + return value !== value; + } + + /** + * The base implementation of `_.mean` and `_.meanBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the mean. + */ + function baseMean(array, iteratee) { + var length = array == null ? 0 : array.length; + return length ? (baseSum(array, iteratee) / length) : NAN; + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ + function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; + } + + /** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); + } + } + return result; + } + + /** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ + function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); + + while (++index < n) { + result[index] = iteratee(index); + } + return result; + } + + /** + * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array + * of key-value pairs for `object` corresponding to the property names of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the key-value pairs. + */ + function baseToPairs(object, props) { + return arrayMap(props, function(key) { + return [key, object[key]]; + }); + } + + /** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ + function baseUnary(func) { + return function(value) { + return func(value); + }; + } + + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); + } + + /** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function cacheHas(cache, key) { + return cache.has(key); + } + + /** + * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the first unmatched string symbol. + */ + function charsStartIndex(strSymbols, chrSymbols) { + var index = -1, + length = strSymbols.length; + + while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ + function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; + + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } + + /** + * Gets the number of `placeholder` occurrences in `array`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} placeholder The placeholder to search for. + * @returns {number} Returns the placeholder count. + */ + function countHolders(array, placeholder) { + var length = array.length, + result = 0; + + while (length--) { + if (array[length] === placeholder) { + ++result; + } + } + return result; + } + + /** + * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A + * letters to basic Latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ + var deburrLetter = basePropertyOf(deburredLetters); + + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + var escapeHtmlChar = basePropertyOf(htmlEscapes); + + /** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; + } + + /** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function getValue(object, key) { + return object == null ? undefined : object[key]; + } + + /** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ + function hasUnicode(string) { + return reHasUnicode.test(string); + } + + /** + * Checks if `string` contains a word composed of Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a word is found, else `false`. + */ + function hasUnicodeWord(string) { + return reHasUnicodeWord.test(string); + } + + /** + * Converts `iterator` to an array. + * + * @private + * @param {Object} iterator The iterator to convert. + * @returns {Array} Returns the converted array. + */ + function iteratorToArray(iterator) { + var data, + result = []; + + while (!(data = iterator.next()).done) { + result.push(data.value); + } + return result; + } + + /** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ + function mapToArray(map) { + var index = -1, + result = Array(map.size); + + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; + } + + /** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; + } + + /** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ + function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value === placeholder || value === PLACEHOLDER) { + array[index] = PLACEHOLDER; + result[resIndex++] = index; + } + } + return result; + } + + /** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ + function setToArray(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = value; + }); + return result; + } + + /** + * Converts `set` to its value-value pairs. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the value-value pairs. + */ + function setToPairs(set) { + var index = -1, + result = Array(set.size); + + set.forEach(function(value) { + result[++index] = [value, value]; + }); + return result; + } + + /** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; + } + + /** + * A specialized version of `_.lastIndexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictLastIndexOf(array, value, fromIndex) { + var index = fromIndex + 1; + while (index--) { + if (array[index] === value) { + return index; + } + } + return index; + } + + /** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ + function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); + } + + /** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); + } + + /** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ + var unescapeHtmlChar = basePropertyOf(htmlUnescapes); + + /** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; + } + return result; + } + + /** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function unicodeToArray(string) { + return string.match(reUnicode) || []; + } + + /** + * Splits a Unicode `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function unicodeWords(string) { + return string.match(reUnicodeWord) || []; + } + + /*--------------------------------------------------------------------------*/ + + /** + * Create a new pristine `lodash` function using the `context` object. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Util + * @param {Object} [context=root] The context object. + * @returns {Function} Returns a new `lodash` function. + * @example + * + * _.mixin({ 'foo': _.constant('foo') }); + * + * var lodash = _.runInContext(); + * lodash.mixin({ 'bar': lodash.constant('bar') }); + * + * _.isFunction(_.foo); + * // => true + * _.isFunction(_.bar); + * // => false + * + * lodash.isFunction(lodash.foo); + * // => false + * lodash.isFunction(lodash.bar); + * // => true + * + * // Create a suped-up `defer` in Node.js. + * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; + */ + var runInContext = (function runInContext(context) { + context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps)); + + /** Built-in constructor references. */ + var Array = context.Array, + Date = context.Date, + Error = context.Error, + Function = context.Function, + Math = context.Math, + Object = context.Object, + RegExp = context.RegExp, + String = context.String, + TypeError = context.TypeError; + + /** Used for built-in method references. */ + var arrayProto = Array.prototype, + funcProto = Function.prototype, + objectProto = Object.prototype; + + /** Used to detect overreaching core-js shims. */ + var coreJsData = context['__core-js_shared__']; + + /** Used to resolve the decompiled source of functions. */ + var funcToString = funcProto.toString; + + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; + + /** Used to generate unique IDs. */ + var idCounter = 0; + + /** Used to detect methods masquerading as native. */ + var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; + }()); + + /** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ + var nativeObjectToString = objectProto.toString; + + /** Used to infer the `Object` constructor. */ + var objectCtorString = funcToString.call(Object); + + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Used to detect if a method is native. */ + var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' + ); + + /** Built-in value references. */ + var Buffer = moduleExports ? context.Buffer : undefined, + Symbol = context.Symbol, + Uint8Array = context.Uint8Array, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined, + getPrototype = overArg(Object.getPrototypeOf, Object), + objectCreate = Object.create, + propertyIsEnumerable = objectProto.propertyIsEnumerable, + splice = arrayProto.splice, + spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined, + symIterator = Symbol ? Symbol.iterator : undefined, + symToStringTag = Symbol ? Symbol.toStringTag : undefined; + + var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} + }()); + + /** Mocked built-ins. */ + var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, + ctxNow = Date && Date.now !== root.Date.now && Date.now, + ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout; + + /* Built-in method references for those with the same name as other `lodash` methods. */ + var nativeCeil = Math.ceil, + nativeFloor = Math.floor, + nativeGetSymbols = Object.getOwnPropertySymbols, + nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined, + nativeIsFinite = context.isFinite, + nativeJoin = arrayProto.join, + nativeKeys = overArg(Object.keys, Object), + nativeMax = Math.max, + nativeMin = Math.min, + nativeNow = Date.now, + nativeParseInt = context.parseInt, + nativeRandom = Math.random, + nativeReverse = arrayProto.reverse; + + /* Built-in method references that are verified to be native. */ + var DataView = getNative(context, 'DataView'), + Map = getNative(context, 'Map'), + Promise = getNative(context, 'Promise'), + Set = getNative(context, 'Set'), + WeakMap = getNative(context, 'WeakMap'), + nativeCreate = getNative(Object, 'create'); + + /** Used to store function metadata. */ + var metaMap = WeakMap && new WeakMap; + + /** Used to lookup unminified function names. */ + var realNames = {}; + + /** Used to detect maps, sets, and weakmaps. */ + var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); + + /** Used to convert symbols to primitives and strings. */ + var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. + * + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. + * + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. + * + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true + */ + function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } + } + return new LodashWrapper(value); + } + + /** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ + var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; + } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; + }()); + + /** + * The function whose prototype chain sequence wrappers inherit from. + * + * @private + */ + function baseLodash() { + // No operation performed. + } + + /** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ + function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; + } + + /** + * By default, the template delimiters used by lodash are like those in + * embedded Ruby (ERB) as well as ES2015 template strings. Change the + * following template settings to use alternative delimiters. + * + * @static + * @memberOf _ + * @type {Object} + */ + lodash.templateSettings = { + + /** + * Used to detect `data` property values to be HTML-escaped. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'escape': reEscape, + + /** + * Used to detect code to be evaluated. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'evaluate': reEvaluate, + + /** + * Used to detect `data` property values to inject. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'interpolate': reInterpolate, + + /** + * Used to reference the data object in the template text. + * + * @memberOf _.templateSettings + * @type {string} + */ + 'variable': '', + + /** + * Used to import variables into the compiled template. + * + * @memberOf _.templateSettings + * @type {Object} + */ + 'imports': { + + /** + * A reference to the `lodash` function. + * + * @memberOf _.templateSettings.imports + * @type {Function} + */ + '_': lodash + } + }; + + // Ensure wrappers are instances of `baseLodash`. + lodash.prototype = baseLodash.prototype; + lodash.prototype.constructor = lodash; + + LodashWrapper.prototype = baseCreate(baseLodash.prototype); + LodashWrapper.prototype.constructor = LodashWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @constructor + * @param {*} value The value to wrap. + */ + function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; + } + + /** + * Creates a clone of the lazy wrapper object. + * + * @private + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. + */ + function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = copyArray(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = copyArray(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = copyArray(this.__views__); + return result; + } + + /** + * Reverses the direction of lazy iteration. + * + * @private + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. + */ + function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; + } + + /** + * Extracts the unwrapped value from its lazy wrapper. + * + * @private + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. + */ + function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); + + if (!isArr || (!isRight && arrLength == length && takeCount == length)) { + return baseWrapperValue(array, this.__actions__); + } + var result = []; + + outer: + while (length-- && resIndex < takeCount) { + index += dir; + + var iterIndex = -1, + value = array[index]; + + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } + } + } + result[resIndex++] = value; + } + return result; + } + + // Ensure `LazyWrapper` is an instance of `baseLodash`. + LazyWrapper.prototype = baseCreate(baseLodash.prototype); + LazyWrapper.prototype.constructor = LazyWrapper; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a hash object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the hash. + * + * @private + * @name clear + * @memberOf Hash + */ + function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; + } + + /** + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; + } + return hasOwnProperty.call(data, key) ? data[key] : undefined; + } + + /** + * Checks if a hash value for `key` exists. + * + * @private + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); + } + + /** + * Sets the hash `key` to `value`. + * + * @private + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. + */ + function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; + } + + // Add methods to `Hash`. + Hash.prototype.clear = hashClear; + Hash.prototype['delete'] = hashDelete; + Hash.prototype.get = hashGet; + Hash.prototype.has = hashHas; + Hash.prototype.set = hashSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an list cache object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the list cache. + * + * @private + * @name clear + * @memberOf ListCache + */ + function listCacheClear() { + this.__data__ = []; + this.size = 0; + } + + /** + * Removes `key` and its value from the list cache. + * + * @private + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + return false; + } + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; + } + + /** + * Gets the list cache value for `key`. + * + * @private + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; + } + + /** + * Checks if a list cache value for `key` exists. + * + * @private + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; + } + + /** + * Sets the list cache `key` to `value`. + * + * @private + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. + */ + function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; + } + + // Add methods to `ListCache`. + ListCache.prototype.clear = listCacheClear; + ListCache.prototype['delete'] = listCacheDelete; + ListCache.prototype.get = listCacheGet; + ListCache.prototype.has = listCacheHas; + ListCache.prototype.set = listCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a map cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } + } + + /** + * Removes all key-value entries from the map. + * + * @private + * @name clear + * @memberOf MapCache + */ + function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; + } + + /** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; + return result; + } + + /** + * Gets the map value for `key`. + * + * @private + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function mapCacheGet(key) { + return getMapData(this, key).get(key); + } + + /** + * Checks if a map value for `key` exists. + * + * @private + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function mapCacheHas(key) { + return getMapData(this, key).has(key); + } + + /** + * Sets the map `key` to `value`. + * + * @private + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. + */ + function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; + + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; + } + + // Add methods to `MapCache`. + MapCache.prototype.clear = mapCacheClear; + MapCache.prototype['delete'] = mapCacheDelete; + MapCache.prototype.get = mapCacheGet; + MapCache.prototype.has = mapCacheHas; + MapCache.prototype.set = mapCacheSet; + + /*------------------------------------------------------------------------*/ + + /** + * + * Creates an array cache object to store unique values. + * + * @private + * @constructor + * @param {Array} [values] The values to cache. + */ + function SetCache(values) { + var index = -1, + length = values == null ? 0 : values.length; + + this.__data__ = new MapCache; + while (++index < length) { + this.add(values[index]); + } + } + + /** + * Adds `value` to the array cache. + * + * @private + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. + */ + function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; + } + + /** + * Checks if `value` is in the array cache. + * + * @private + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. + */ + function setCacheHas(value) { + return this.__data__.has(value); + } + + // Add methods to `SetCache`. + SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; + SetCache.prototype.has = setCacheHas; + + /*------------------------------------------------------------------------*/ + + /** + * Creates a stack cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ + function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; + } + + /** + * Removes all key-value entries from the stack. + * + * @private + * @name clear + * @memberOf Stack + */ + function stackClear() { + this.__data__ = new ListCache; + this.size = 0; + } + + /** + * Removes `key` and its value from the stack. + * + * @private + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); + + this.size = data.size; + return result; + } + + /** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function stackGet(key) { + return this.__data__.get(key); + } + + /** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function stackHas(key) { + return this.__data__.has(key); + } + + /** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ + function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; + } + + // Add methods to `Stack`. + Stack.prototype.clear = stackClear; + Stack.prototype['delete'] = stackDelete; + Stack.prototype.get = stackGet; + Stack.prototype.has = stackHas; + Stack.prototype.set = stackSet; + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ + function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; + + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); + } + } + return result; + } + + /** + * A specialized version of `_.sample` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @returns {*} Returns the random element. + */ + function arraySample(array) { + var length = array.length; + return length ? array[baseRandom(0, length - 1)] : undefined; + } + + /** + * A specialized version of `_.sampleSize` for arrays. + * + * @private + * @param {Array} array The array to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function arraySampleSize(array, n) { + return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); + } + + /** + * A specialized version of `_.shuffle` for arrays. + * + * @private + * @param {Array} array The array to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function arrayShuffle(array) { + return shuffleSelf(copyArray(array)); + } + + /** + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } + } + + /** + * Gets the index at which the `key` is found in `array` of key-value pairs. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; + } + + /** + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); + } + + /** + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ + function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); + } + + /** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ + function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } + } + + /** + * The base implementation of `_.at` without support for individual paths. + * + * @private + * @param {Object} object The object to iterate over. + * @param {string[]} paths The property paths to pick. + * @returns {Array} Returns the picked elements. + */ + function baseAt(object, paths) { + var index = -1, + length = paths.length, + result = Array(length), + skip = object == null; + + while (++index < length) { + result[index] = skip ? undefined : get(object, paths[index]); + } + return result; + } + + /** + * The base implementation of `_.clamp` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + */ + function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; + } + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; + } + + /** + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. + */ + function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); + } + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; + + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + } else if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + return result; + } + + /** + * The base implementation of `_.conforms` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + */ + function baseConforms(source) { + var props = keys(source); + return function(object) { + return baseConformsTo(object, source, props); + }; + } + + /** + * The base implementation of `_.conformsTo` which accepts `props` to check. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + */ + function baseConformsTo(object, source, props) { + var length = props.length; + if (object == null) { + return !length; + } + object = Object(object); + while (length--) { + var key = props[length], + predicate = source[key], + value = object[key]; + + if ((value === undefined && !(key in object)) || !predicate(value)) { + return false; + } + } + return true; + } + + /** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + */ + function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; + + if (!length) { + return result; + } + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); + } + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; + } + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.forEach` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEach = createBaseEach(baseForOwn); + + /** + * The base implementation of `_.forEachRight` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + */ + var baseEachRight = createBaseEach(baseForOwnRight, true); + + /** + * The base implementation of `_.every` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` + */ + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; + } + + /** + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. + */ + function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; + } + + /** + * The base implementation of `_.fill` without an iteratee call guard. + * + * @private + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + */ + function baseFill(array, value, start, end) { + var length = array.length; + + start = toInteger(start); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : toInteger(end); + if (end < 0) { + end += length; + } + end = start > end ? 0 : toLength(end); + while (start < end) { + array[start++] = value; + } + return array; + } + + /** + * The base implementation of `_.filter` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } + + /** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; + } + + /** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseFor = createBaseFor(); + + /** + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ + var baseForRight = createBaseFor(true); + + /** + * The base implementation of `_.forOwn` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); + } + + /** + * The base implementation of `_.forOwnRight` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. + */ + function baseForOwnRight(object, iteratee) { + return object && baseForRight(object, iteratee, keys); + } + + /** + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. + * + * @private + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. + */ + function baseFunctions(object, props) { + return arrayFilter(props, function(key) { + return isFunction(object[key]); + }); + } + + /** + * The base implementation of `_.get` without support for default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. + */ + function baseGet(object, path) { + path = castPath(path, object); + + var index = 0, + length = path.length; + + while (object != null && index < length) { + object = object[toKey(path[index++])]; + } + return (index && index == length) ? object : undefined; + } + + /** + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. + */ + function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); + } + + /** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; + } + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); + } + + /** + * The base implementation of `_.gt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + */ + function baseGt(value, other) { + return value > other; + } + + /** + * The base implementation of `_.has` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); + } + + /** + * The base implementation of `_.hasIn` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ + function baseHasIn(object, key) { + return object != null && key in Object(object); + } + + /** + * The base implementation of `_.inRange` which doesn't coerce arguments. + * + * @private + * @param {number} number The number to check. + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + */ + function baseInRange(number, start, end) { + return number >= nativeMin(start, end) && number < nativeMax(start, end); + } + + /** + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. + */ + function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, + result = []; + + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); + } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; + } + array = arrays[0]; + + var index = -1, + seen = caches[0]; + + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.invert` and `_.invertBy` which inverts + * `object` with values transformed by `iteratee` and set by `setter`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform values. + * @param {Object} accumulator The initial inverted object. + * @returns {Function} Returns `accumulator`. + */ + function baseInverter(object, setter, iteratee, accumulator) { + baseForOwn(object, function(value, key, object) { + setter(accumulator, iteratee(value), key, object); + }); + return accumulator; + } + + /** + * The base implementation of `_.invoke` without support for individual + * method arguments. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + */ + function baseInvoke(object, path, args) { + path = castPath(path, object); + object = parent(object, path); + var func = object == null ? object : object[toKey(last(path))]; + return func == null ? undefined : apply(func, object, args); + } + + /** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ + function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; + } + + /** + * The base implementation of `_.isArrayBuffer` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. + */ + function baseIsArrayBuffer(value) { + return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; + } + + /** + * The base implementation of `_.isDate` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + */ + function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; + } + + /** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ + function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); + } + + /** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; + } + objIsArr = true; + objIsObj = false; + } + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + } + } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); + } + + /** + * The base implementation of `_.isMap` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + */ + function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; + } + + /** + * The base implementation of `_.isMatch` without support for iteratee shorthands. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + */ + function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; + } + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } + } + return true; + } + + /** + * The base implementation of `_.isNative` without bad shim checks. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + */ + function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; + } + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); + } + + /** + * The base implementation of `_.isRegExp` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + */ + function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; + } + + /** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ + function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; + } + + /** + * The base implementation of `_.isTypedArray` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ + function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; + } + + /** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ + function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; + } + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); + } + + /** + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); + } + var isProto = isPrototype(object), + result = []; + + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.lt` which doesn't coerce arguments. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + */ + function baseLt(value, other) { + return value < other; + } + + /** + * The base implementation of `_.map` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); + } + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; + } + + /** + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; + } + + /** + * The base implementation of `_.merge` without support for multiple sources. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + stack || (stack = new Stack); + if (isObject(srcValue)) { + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; + + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); + } + + /** + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ + function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); + + if (stacked) { + assignMergeValue(object, key, stacked); + return; + } + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || isFunction(objValue)) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); + } + + /** + * The base implementation of `_.nth` which doesn't coerce arguments. + * + * @private + * @param {Array} array The array to query. + * @param {number} n The index of the element to return. + * @returns {*} Returns the nth element of `array`. + */ + function baseNth(array, n) { + var length = array.length; + if (!length) { + return; + } + n += n < 0 ? length : 0; + return isIndex(n, length) ? array[n] : undefined; + } + + /** + * The base implementation of `_.orderBy` without param guards. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. + */ + function baseOrderBy(collection, iteratees, orders) { + if (iteratees.length) { + iteratees = arrayMap(iteratees, function(iteratee) { + if (isArray(iteratee)) { + return function(value) { + return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); + } + } + return iteratee; + }); + } else { + iteratees = [identity]; + } + + var index = -1; + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); + } + + /** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ + function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); + } + + /** + * The base implementation of `_.pickBy` without support for iteratee shorthands. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. + */ + function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); + + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } + } + return result; + } + + /** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); + }; + } + + /** + * The base implementation of `_.pullAllBy` without support for iteratee + * shorthands. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + */ + function basePullAll(array, values, iteratee, comparator) { + var indexOf = comparator ? baseIndexOfWith : baseIndexOf, + index = -1, + length = values.length, + seen = array; + + if (array === values) { + values = copyArray(values); + } + if (iteratee) { + seen = arrayMap(array, baseUnary(iteratee)); + } + while (++index < length) { + var fromIndex = 0, + value = values[index], + computed = iteratee ? iteratee(value) : value; + + while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { + if (seen !== array) { + splice.call(seen, fromIndex, 1); + } + splice.call(array, fromIndex, 1); + } + } + return array; + } + + /** + * The base implementation of `_.pullAt` without support for individual + * indexes or capturing the removed elements. + * + * @private + * @param {Array} array The array to modify. + * @param {number[]} indexes The indexes of elements to remove. + * @returns {Array} Returns `array`. + */ + function basePullAt(array, indexes) { + var length = array ? indexes.length : 0, + lastIndex = length - 1; + + while (length--) { + var index = indexes[length]; + if (length == lastIndex || index !== previous) { + var previous = index; + if (isIndex(index)) { + splice.call(array, index, 1); + } else { + baseUnset(array, index); + } + } + } + return array; + } + + /** + * The base implementation of `_.random` without support for returning + * floating-point numbers. + * + * @private + * @param {number} lower The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the random number. + */ + function baseRandom(lower, upper) { + return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); + } + + /** + * The base implementation of `_.range` and `_.rangeRight` which doesn't + * coerce arguments. + * + * @private + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @param {number} step The value to increment or decrement by. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the range of numbers. + */ + function baseRange(start, end, step, fromRight) { + var index = -1, + length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), + result = Array(length); + + while (length--) { + result[fromRight ? length : ++index] = start; + start += step; + } + return result; + } + + /** + * The base implementation of `_.repeat` which doesn't coerce arguments. + * + * @private + * @param {string} string The string to repeat. + * @param {number} n The number of times to repeat the string. + * @returns {string} Returns the repeated string. + */ + function baseRepeat(string, n) { + var result = ''; + if (!string || n < 1 || n > MAX_SAFE_INTEGER) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + if (n) { + string += string; + } + } while (n); + + return result; + } + + /** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ + function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); + } + + /** + * The base implementation of `_.sample`. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + */ + function baseSample(collection) { + return arraySample(values(collection)); + } + + /** + * The base implementation of `_.sampleSize` without param guards. + * + * @private + * @param {Array|Object} collection The collection to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function baseSampleSize(collection, n) { + var array = values(collection); + return shuffleSelf(array, baseClamp(n, 0, array.length)); + } + + /** + * The base implementation of `_.set`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); + + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; + + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; + + if (key === '__proto__' || key === 'constructor' || key === 'prototype') { + return object; + } + + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } + } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; + } + + /** + * The base implementation of `setData` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; + }; + + /** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); + }; + + /** + * The base implementation of `_.shuffle`. + * + * @private + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + */ + function baseShuffle(collection) { + return shuffleSelf(values(collection)); + } + + /** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; + } + + /** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which + * performs a binary search of `array` to determine the index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndex(array, value, retHighest) { + var low = 0, + high = array == null ? low : array.length; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if (computed !== null && !isSymbol(computed) && + (retHighest ? (computed <= value) : (computed < value))) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return baseSortedIndexBy(array, value, identity, retHighest); + } + + /** + * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` + * which invokes `iteratee` for `value` and each element of `array` to compute + * their sort ranking. The iteratee is invoked with one argument; (value). + * + * @private + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} iteratee The iteratee invoked per element. + * @param {boolean} [retHighest] Specify returning the highest qualified index. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + */ + function baseSortedIndexBy(array, value, iteratee, retHighest) { + var low = 0, + high = array == null ? 0 : array.length; + if (high === 0) { + return 0; + } + + value = iteratee(value); + var valIsNaN = value !== value, + valIsNull = value === null, + valIsSymbol = isSymbol(value), + valIsUndefined = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + othIsDefined = computed !== undefined, + othIsNull = computed === null, + othIsReflexive = computed === computed, + othIsSymbol = isSymbol(computed); + + if (valIsNaN) { + var setLow = retHighest || othIsReflexive; + } else if (valIsUndefined) { + setLow = othIsReflexive && (retHighest || othIsDefined); + } else if (valIsNull) { + setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); + } else if (valIsSymbol) { + setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); + } else if (othIsNull || othIsSymbol) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); + } + + /** + * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseSortedUniq(array, iteratee) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + if (!index || !eq(computed, seen)) { + var seen = computed; + result[resIndex++] = value === 0 ? 0 : value; + } + } + return result; + } + + /** + * The base implementation of `_.toNumber` which doesn't ensure correct + * conversions of binary, hexadecimal, or octal string values. + * + * @private + * @param {*} value The value to process. + * @returns {number} Returns the number. + */ + function baseToNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + return +value; + } + + /** + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ + function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; + } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * The base implementation of `_.uniqBy` without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + */ + function baseUniq(array, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + length = array.length, + isCommon = true, + result = [], + seen = result; + + if (comparator) { + isCommon = false; + includes = arrayIncludesWith; + } + else if (length >= LARGE_ARRAY_SIZE) { + var set = iteratee ? null : createSet(array); + if (set) { + return setToArray(set); + } + isCommon = false; + includes = cacheHas; + seen = new SetCache; + } + else { + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (!includes(seen, computed, comparator)) { + if (seen !== result) { + seen.push(computed); + } + result.push(value); + } + } + return result; + } + + /** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ + function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; + } + + /** + * The base implementation of `_.update`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to update. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ + function baseUpdate(object, path, updater, customizer) { + return baseSet(object, path, updater(baseGet(object, path)), customizer); + } + + /** + * The base implementation of methods like `_.dropWhile` and `_.takeWhile` + * without support for iteratee shorthands. + * + * @private + * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the slice of `array`. + */ + function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && + predicate(array[index], index, array)) {} + + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); + } + + /** + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. + * + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. + */ + function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); + } + return arrayReduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); + } + + /** + * The base implementation of methods like `_.xor`, without support for + * iteratee shorthands, that accepts an array of arrays to inspect. + * + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. + */ + function baseXor(arrays, iteratee, comparator) { + var length = arrays.length; + if (length < 2) { + return length ? baseUniq(arrays[0]) : []; + } + var index = -1, + result = Array(length); + + while (++index < length) { + var array = arrays[index], + othIndex = -1; + + while (++othIndex < length) { + if (othIndex != index) { + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); + } + } + } + return baseUniq(baseFlatten(result, 1), iteratee, comparator); + } + + /** + * This base implementation of `_.zipObject` which assigns values using `assignFunc`. + * + * @private + * @param {Array} props The property identifiers. + * @param {Array} values The property values. + * @param {Function} assignFunc The function to assign values. + * @returns {Object} Returns the new object. + */ + function baseZipObject(props, values, assignFunc) { + var index = -1, + length = props.length, + valsLength = values.length, + result = {}; + + while (++index < length) { + var value = index < valsLength ? values[index] : undefined; + assignFunc(result, props[index], value); + } + return result; + } + + /** + * Casts `value` to an empty array if it's not an array like object. + * + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. + */ + function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; + } + + /** + * Casts `value` to `identity` if it's not a function. + * + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. + */ + function castFunction(value) { + return typeof value == 'function' ? value : identity; + } + + /** + * Casts `value` to a path array if it's not one. + * + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. + */ + function castPath(value, object) { + if (isArray(value)) { + return value; + } + return isKey(value, object) ? [value] : stringToPath(toString(value)); + } + + /** + * A `baseRest` alias which can be replaced with `identity` by module + * replacement plugins. + * + * @private + * @type {Function} + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + var castRest = baseRest; + + /** + * Casts `array` to a slice if it's needed. + * + * @private + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. + */ + function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); + } + + /** + * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout). + * + * @private + * @param {number|Object} id The timer id or timeout object of the timer to clear. + */ + var clearTimeout = ctxClearTimeout || function(id) { + return root.clearTimeout(id); + }; + + /** + * Creates a clone of `buffer`. + * + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. + */ + function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); + } + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + + buffer.copy(result); + return result; + } + + /** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ + function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; + } + + /** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ + function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); + } + + /** + * Creates a clone of `regexp`. + * + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. + */ + function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; + } + + /** + * Creates a clone of the `symbol` object. + * + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ + function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; + } + + /** + * Creates a clone of `typedArray`. + * + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ + function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); + } + + /** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ + function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; + } + + /** + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ + function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; + } + + /** + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgs(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersLength = holders.length, + leftIndex = -1, + leftLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(leftLength + rangeLength), + isUncurried = !isCurried; + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + } + while (rangeLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; + } + + /** + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. + * + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. + */ + function composeArgsRight(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersIndex = -1, + holdersLength = holders.length, + rightIndex = -1, + rightLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(rangeLength + rightLength), + isUncurried = !isCurried; + + while (++argsIndex < rangeLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + } + return result; + } + + /** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ + function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; + } + + /** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ + function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; + } + + /** + * Copies own symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); + } + + /** + * Copies own and inherited symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ + function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); + } + + /** + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. + */ + function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, getIteratee(iteratee, 2), accumulator); + }; + } + + /** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ + function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; + + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; + + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); + } + + /** + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; + } + + /** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; + } + + /** + * Creates a function that wraps `func` to invoke it with the optional `this` + * binding of `thisArg`. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createBind(func, bitmask, thisArg) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, arguments); + } + return wrapper; + } + + /** + * Creates a function like `_.lowerFirst`. + * + * @private + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. + */ + function createCaseFirst(methodName) { + return function(string) { + string = toString(string); + + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; + + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); + + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; + } + + /** + * Creates a function like `_.camelCase`. + * + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. + */ + function createCompounder(callback) { + return function(string) { + return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); + }; + } + + /** + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. + * + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. + */ + function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; + } + + /** + * Creates a function that wraps `func` to enable currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {number} arity The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createCurry(func, bitmask, arity) { + var Ctor = createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length, + placeholder = getHolder(wrapper); + + while (index--) { + args[index] = arguments[index]; + } + var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) + ? [] + : replaceHolders(args, placeholder); + + length -= holders.length; + if (length < arity) { + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, undefined, + args, holders, undefined, undefined, arity - length); + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return apply(fn, this, args); + } + return wrapper; + } + + /** + * Creates a `_.find` or `_.findLast` function. + * + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. + */ + function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = getIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; + } + + /** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ + function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; + + if (fromRight) { + funcs.reverse(); + } + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); + } + + /** + * Creates a function that wraps `func` to invoke it with optional `this` + * binding of `thisArg`, partial application, and currying. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided + * to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & WRAP_ARY_FLAG, + isBind = bitmask & WRAP_BIND_FLAG, + isBindKey = bitmask & WRAP_BIND_KEY_FLAG, + isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), + isFlip = bitmask & WRAP_FLIP_FLAG, + Ctor = isBindKey ? undefined : createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length; + + while (index--) { + args[index] = arguments[index]; + } + if (isCurried) { + var placeholder = getHolder(wrapper), + holdersCount = countHolders(args, placeholder); + } + if (partials) { + args = composeArgs(args, partials, holders, isCurried); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight, isCurried); + } + length -= holdersCount; + if (isCurried && length < arity) { + var newHolders = replaceHolders(args, placeholder); + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, thisArg, + args, newHolders, argPos, ary, arity - length + ); + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + length = args.length; + if (argPos) { + args = reorder(args, argPos); + } else if (isFlip && length > 1) { + args.reverse(); + } + if (isAry && ary < length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtor(fn); + } + return fn.apply(thisBinding, args); + } + return wrapper; + } + + /** + * Creates a function like `_.invertBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} toIteratee The function to resolve iteratees. + * @returns {Function} Returns the new inverter function. + */ + function createInverter(setter, toIteratee) { + return function(object, iteratee) { + return baseInverter(object, setter, toIteratee(iteratee), {}); + }; + } + + /** + * Creates a function that performs a mathematical operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @param {number} [defaultValue] The value used for `undefined` arguments. + * @returns {Function} Returns the new mathematical operation function. + */ + function createMathOperation(operator, defaultValue) { + return function(value, other) { + var result; + if (value === undefined && other === undefined) { + return defaultValue; + } + if (value !== undefined) { + result = value; + } + if (other !== undefined) { + if (result === undefined) { + return other; + } + if (typeof value == 'string' || typeof other == 'string') { + value = baseToString(value); + other = baseToString(other); + } else { + value = baseToNumber(value); + other = baseToNumber(other); + } + result = operator(value, other); + } + return result; + }; + } + + /** + * Creates a function like `_.over`. + * + * @private + * @param {Function} arrayFunc The function to iterate over iteratees. + * @returns {Function} Returns the new over function. + */ + function createOver(arrayFunc) { + return flatRest(function(iteratees) { + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + return baseRest(function(args) { + var thisArg = this; + return arrayFunc(iteratees, function(iteratee) { + return apply(iteratee, thisArg, args); + }); + }); + }); + } + + /** + * Creates the padding for `string` based on `length`. The `chars` string + * is truncated if the number of characters exceeds `length`. + * + * @private + * @param {number} length The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padding for `string`. + */ + function createPadding(length, chars) { + chars = chars === undefined ? ' ' : baseToString(chars); + + var charsLength = chars.length; + if (charsLength < 2) { + return charsLength ? baseRepeat(chars, length) : chars; + } + var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); + return hasUnicode(chars) + ? castSlice(stringToArray(result), 0, length).join('') + : result.slice(0, length); + } + + /** + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. + */ + function createPartial(func, bitmask, thisArg, partials) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return apply(fn, isBind ? thisArg : this, args); + } + return wrapper; + } + + /** + * Creates a `_.range` or `_.rangeRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new range function. + */ + function createRange(fromRight) { + return function(start, end, step) { + if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { + end = step = undefined; + } + // Ensure the sign of `-0` is preserved. + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); + return baseRange(start, end, step, fromRight); + }; + } + + /** + * Creates a function that performs a relational operation on two values. + * + * @private + * @param {Function} operator The function to perform the operation. + * @returns {Function} Returns the new relational operation function. + */ + function createRelationalOperation(operator) { + return function(value, other) { + if (!(typeof value == 'string' && typeof other == 'string')) { + value = toNumber(value); + other = toNumber(other); + } + return operator(value, other); + }; + } + + /** + * Creates a function that wraps `func` to continue currying. + * + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {Function} wrapFunc The function to create the `func` wrapper. + * @param {*} placeholder The placeholder value. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { + var isCurry = bitmask & WRAP_CURRY_FLAG, + newHolders = isCurry ? holders : undefined, + newHoldersRight = isCurry ? undefined : holders, + newPartials = isCurry ? partials : undefined, + newPartialsRight = isCurry ? undefined : partials; + + bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); + + if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { + bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); + } + var newData = [ + func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, + newHoldersRight, argPos, ary, arity + ]; + + var result = wrapFunc.apply(undefined, newData); + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return setWrapToString(result, func, bitmask); + } + + /** + * Creates a function like `_.round`. + * + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. + */ + function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + number = toNumber(number); + precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); + if (precision && nativeIsFinite(number)) { + // Shift with exponential notation to avoid floating-point issues. + // See [MDN](https://mdn.io/round#Examples) for more details. + var pair = (toString(number) + 'e').split('e'), + value = func(pair[0] + 'e' + (+pair[1] + precision)); + + pair = (toString(value) + 'e').split('e'); + return +(pair[0] + 'e' + (+pair[1] - precision)); + } + return func(number); + }; + } + + /** + * Creates a set object of `values`. + * + * @private + * @param {Array} values The values to add to the set. + * @returns {Object} Returns the new set. + */ + var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { + return new Set(values); + }; + + /** + * Creates a `_.toPairs` or `_.toPairsIn` function. + * + * @private + * @param {Function} keysFunc The function to get the keys of a given object. + * @returns {Function} Returns the new pairs function. + */ + function createToPairs(keysFunc) { + return function(object) { + var tag = getTag(object); + if (tag == mapTag) { + return mapToArray(object); + } + if (tag == setTag) { + return setToPairs(object); + } + return baseToPairs(object, keysFunc(object)); + }; + } + + /** + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. + * + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * 512 - `_.flip` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. + */ + function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); + arity = arity === undefined ? arity : toInteger(arity); + length -= holders ? holders.length : 0; + + if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func); + + var newData = [ + func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, + argPos, ary, arity + ]; + + if (data) { + mergeData(newData, data); + } + func = newData[0]; + bitmask = newData[1]; + thisArg = newData[2]; + partials = newData[3]; + holders = newData[4]; + arity = newData[9] = newData[9] === undefined + ? (isBindKey ? 0 : func.length) + : nativeMax(newData[9] - length, 0); + + if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { + bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); + } + if (!bitmask || bitmask == WRAP_BIND_FLAG) { + var result = createBind(func, bitmask, thisArg); + } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { + result = createCurry(func, bitmask, arity); + } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { + result = createPartial(func, bitmask, thisArg, partials); + } else { + result = createHybrid.apply(undefined, newData); + } + var setter = data ? baseSetData : setData; + return setWrapToString(setter(result, newData), func, bitmask); + } + + /** + * Used by `_.defaults` to customize its `_.assignIn` use to assign properties + * of source objects to the destination object for all destination properties + * that resolve to `undefined`. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to assign. + * @param {Object} object The parent object of `objValue`. + * @returns {*} Returns the value to assign. + */ + function customDefaultsAssignIn(objValue, srcValue, key, object) { + if (objValue === undefined || + (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { + return srcValue; + } + return objValue; + } + + /** + * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source + * objects into destination objects that are passed thru. + * + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to merge. + * @param {Object} object The parent object of `objValue`. + * @param {Object} source The parent object of `srcValue`. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + * @returns {*} Returns the value to assign. + */ + function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { + if (isObject(objValue) && isObject(srcValue)) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, objValue); + baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); + stack['delete'](srcValue); + } + return objValue; + } + + /** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ + function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ + function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Check that cyclic values are equal. + var arrStacked = stack.get(array); + var othStacked = stack.get(other); + if (arrStacked && othStacked) { + return arrStacked == other && othStacked == array; + } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; + + stack.set(array, other); + stack.set(other, array); + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + stack['delete'](array); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; + + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + case mapTag: + var convert = mapToArray; + + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); + + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; + + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; + + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } + } + return false; + } + + /** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ + function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; + } + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } + } + // Check that cyclic values are equal. + var objStacked = stack.get(object); + var othStacked = stack.get(other); + if (objStacked && othStacked) { + return objStacked == other && othStacked == object; + } + var result = true; + stack.set(object, other); + stack.set(other, object); + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; + } + + /** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ + function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); + } + + /** + * Creates an array of own enumerable property names and symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); + } + + /** + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ + function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); + } + + /** + * Gets metadata for `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ + var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); + }; + + /** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ + function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; + } + + /** + * Gets the argument placeholder value for `func`. + * + * @private + * @param {Function} func The function to inspect. + * @returns {*} Returns the placeholder value. + */ + function getHolder(func) { + var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func; + return object.placeholder; + } + + /** + * Gets the appropriate "iteratee" function. If `_.iteratee` is customized, + * this function returns the custom method, otherwise it returns `baseIteratee`. + * If arguments are provided, the chosen function is invoked with them and + * its result is returned. + * + * @private + * @param {*} [value] The value to convert to an iteratee. + * @param {number} [arity] The arity of the created iteratee. + * @returns {Function} Returns the chosen function or its result. + */ + function getIteratee() { + var result = lodash.iteratee || iteratee; + result = result === iteratee ? baseIteratee : result; + return arguments.length ? result(arguments[0], arguments[1]) : result; + } + + /** + * Gets the data for `map`. + * + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. + */ + function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; + } + + /** + * Gets the property names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ + function getMatchData(object) { + var result = keys(object), + length = result.length; + + while (length--) { + var key = result[length], + value = object[key]; + + result[length] = [key, value, isStrictComparable(value)]; + } + return result; + } + + /** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ + function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; + } + + /** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. + */ + function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } + } + return result; + } + + /** + * Creates an array of the own enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { + return []; + } + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); + }; + + /** + * Creates an array of the own and inherited enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ + var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; + }; + + /** + * Gets the `toStringTag` of `value`. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ + var getTag = baseGetTag; + + // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. + if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; + + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } + } + return result; + }; + } + + /** + * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. + */ + function getView(start, end, transforms) { + var index = -1, + length = transforms.length; + + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; + } + } + return { 'start': start, 'end': end }; + } + + /** + * Extracts wrapper details from the `source` body comment. + * + * @private + * @param {string} source The source to inspect. + * @returns {Array} Returns the wrapper details. + */ + function getWrapDetails(source) { + var match = source.match(reWrapDetails); + return match ? match[1].split(reSplitDetails) : []; + } + + /** + * Checks if `path` exists on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + */ + function hasPath(object, path, hasFunc) { + path = castPath(path, object); + + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; + } + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); + } + + /** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ + function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; + } + + /** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; + } + + /** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ + function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case dataViewTag: + return cloneDataView(object, isDeep); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); + + case mapTag: + return new Ctor; + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + return cloneRegExp(object); + + case setTag: + return new Ctor; + + case symbolTag: + return cloneSymbol(object); + } + } + + /** + * Inserts wrapper `details` in a comment at the top of the `source` body. + * + * @private + * @param {string} source The source to modify. + * @returns {Array} details The details to insert. + * @returns {string} Returns the modified source. + */ + function insertWrapDetails(source, details) { + var length = details.length; + if (!length) { + return source; + } + var lastIndex = length - 1; + details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; + details = details.join(length > 2 ? ', ' : ' '); + return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); + } + + /** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ + function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); + } + + /** + * Checks if `value` is a valid array-like index. + * + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + */ + function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); + } + + /** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; + } + + /** + * Checks if `value` is a property name and not a property path. + * + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + */ + function isKey(value, object) { + if (isArray(value)) { + return false; + } + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); + } + + /** + * Checks if `value` is suitable for use as unique object key. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + */ + function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); + } + + /** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. + */ + function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; + + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; + } + + /** + * Checks if `func` has its source masked. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. + */ + function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); + } + + /** + * Checks if `func` is capable of being masked. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `func` is maskable, else `false`. + */ + var isMaskable = coreJsData ? isFunction : stubFalse; + + /** + * Checks if `value` is likely a prototype object. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + */ + function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; + + return value === proto; + } + + /** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ + function isStrictComparable(value) { + return value === value && !isObject(value); + } + + /** + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. + * + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ + function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; + } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; + } + + /** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ + function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); + } + return key; + }); + + var cache = result.cache; + return result; + } + + /** + * Merges the function metadata of `source` into `data`. + * + * Merging metadata reduces the number of wrappers used to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and + * `_.rearg` modify function arguments, making the order in which they are + * executed important, preventing the merging of metadata. However, we make + * an exception for a safe combined case where curried functions have `_.ary` + * and or `_.rearg` applied. + * + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. + */ + function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); + + var isCombo = + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || + ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; + } + // Use source `thisArg` if available. + if (srcBitmask & WRAP_BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; + } + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : value; + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = value; + } + // Use source `ary` if it's smaller. + if (srcBitmask & WRAP_ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; + } + + /** + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; + } + + /** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ + function objectToString(value) { + return nativeObjectToString.call(value); + } + + /** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ + function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; + } + + /** + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. + */ + function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); + } + + /** + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. + * + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. + */ + function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = copyArray(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; + } + + /** + * Gets the value at `key`, unless `key` is "__proto__" or "constructor". + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function safeGet(object, key) { + if (key === 'constructor' && typeof object[key] === 'function') { + return; + } + + if (key == '__proto__') { + return; + } + + return object[key]; + } + + /** + * Sets metadata for `func`. + * + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity + * function to avoid garbage collection pauses in V8. See + * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) + * for more details. + * + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var setData = shortOut(baseSetData); + + /** + * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout). + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @returns {number|Object} Returns the timer id or timeout object. + */ + var setTimeout = ctxSetTimeout || function(func, wait) { + return root.setTimeout(func, wait); + }; + + /** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var setToString = shortOut(baseSetToString); + + /** + * Sets the `toString` method of `wrapper` to mimic the source of `reference` + * with wrapper details in a comment at the top of the source body. + * + * @private + * @param {Function} wrapper The function to modify. + * @param {Function} reference The reference function. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Function} Returns `wrapper`. + */ + function setWrapToString(wrapper, reference, bitmask) { + var source = (reference + ''); + return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); + } + + /** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ + function shortOut(func) { + var count = 0, + lastCalled = 0; + + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; + } + + /** + * A specialized version of `_.shuffle` which mutates and sets the size of `array`. + * + * @private + * @param {Array} array The array to shuffle. + * @param {number} [size=array.length] The size of `array`. + * @returns {Array} Returns `array`. + */ + function shuffleSelf(array, size) { + var index = -1, + length = array.length, + lastIndex = length - 1; + + size = size === undefined ? length : size; + while (++index < size) { + var rand = baseRandom(index, lastIndex), + value = array[rand]; + + array[rand] = array[index]; + array[index] = value; + } + array.length = size; + return array; + } + + /** + * Converts `string` to a property path array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. + */ + var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); + } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; + }); + + /** + * Converts `value` to a string key if it's not a string or symbol. + * + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. + */ + function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } + + /** + * Converts `func` to its source code. + * + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. + */ + function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} + } + return ''; + } + + /** + * Updates wrapper `details` based on `bitmask` flags. + * + * @private + * @returns {Array} details The details to modify. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Array} Returns `details`. + */ + function updateWrapDetails(details, bitmask) { + arrayEach(wrapFlags, function(pair) { + var value = '_.' + pair[0]; + if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { + details.push(value); + } + }); + return details.sort(); + } + + /** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ + function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); + } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an array of elements split into groups the length of `size`. + * If `array` can't be split evenly, the final chunk will be the remaining + * elements. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the new array of chunks. + * @example + * + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] + * + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] + */ + function chunk(array, size, guard) { + if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { + size = 1; + } else { + size = nativeMax(toInteger(size), 0); + } + var length = array == null ? 0 : array.length; + if (!length || size < 1) { + return []; + } + var index = 0, + resIndex = 0, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[resIndex++] = baseSlice(array, index, (index += size)); + } + return result; + } + + /** + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] + */ + function compact(array) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[resIndex++] = value; + } + } + return result; + } + + /** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + } + + /** + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor + * @example + * + * _.difference([2, 1], [2, 3]); + * // => [1] + */ + var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `iteratee` which + * is invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * **Note:** Unlike `_.pullAllBy`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2] + * + * // The `_.property` iteratee shorthand. + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var differenceBy = baseRest(function(array, values) { + var iteratee = last(values); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.difference` except that it accepts `comparator` + * which is invoked to compare elements of `array` to `values`. The order and + * references of result values are determined by the first array. The comparator + * is invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.pullAllWith`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * + * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); + * // => [{ 'x': 2, 'y': 1 }] + */ + var differenceWith = baseRest(function(array, values) { + var comparator = last(values); + if (isArrayLikeObject(comparator)) { + comparator = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) + : []; + }); + + /** + * Creates a slice of `array` with `n` elements dropped from the beginning. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.drop([1, 2, 3]); + * // => [2, 3] + * + * _.drop([1, 2, 3], 2); + * // => [3] + * + * _.drop([1, 2, 3], 5); + * // => [] + * + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function drop(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with `n` elements dropped from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.dropRight([1, 2, 3]); + * // => [1, 2] + * + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] + */ + function dropRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.dropRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney'] + * + * // The `_.matches` iteratee shorthand. + * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropRightWhile(users, ['active', false]); + * // => objects for ['barney'] + * + * // The `_.property` iteratee shorthand. + * _.dropRightWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true, true) + : []; + } + + /** + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.dropWhile(users, function(o) { return !o.active; }); + * // => objects for ['pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.dropWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.dropWhile(users, ['active', false]); + * // => objects for ['pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.dropWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] + */ + function dropWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true) + : []; + } + + /** + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. + * + * **Note:** This method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] + * + * _.fill(Array(3), 2); + * // => [2, 2, 2] + * + * _.fill([4, 6, 8, 10], '*', 1, 3); + * // => [4, '*', '*', 10] + */ + function fill(array, value, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); + } + + /** + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 + * + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 + */ + function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, getIteratee(predicate, 3), index); + } + + /** + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); + * // => 2 + * + * // The `_.matches` iteratee shorthand. + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastIndex(users, ['active', false]); + * // => 2 + * + * // The `_.property` iteratee shorthand. + * _.findLastIndex(users, 'active'); + * // => 0 + */ + function findLastIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length - 1; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = fromIndex < 0 + ? nativeMax(length + index, 0) + : nativeMin(index, length - 1); + } + return baseFindIndex(array, getIteratee(predicate, 3), index, true); + } + + /** + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] + */ + function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; + } + + /** + * Recursively flattens `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example + * + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] + */ + function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; + } + + /** + * Recursively flatten `array` up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.4.0 + * @category Array + * @param {Array} array The array to flatten. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * var array = [1, [2, [3, [4]], 5]]; + * + * _.flattenDepth(array, 1); + * // => [1, 2, [3, [4]], 5] + * + * _.flattenDepth(array, 2); + * // => [1, 2, 3, [4], 5] + */ + function flattenDepth(array, depth) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(array, depth); + } + + /** + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } + */ + function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; + } + + /** + * Gets the first element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined + */ + function head(array) { + return (array && array.length) ? array[0] : undefined; + } + + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ + function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseIndexOf(array, value, index); + } + + /** + * Gets all but the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.initial([1, 2, 3]); + * // => [1, 2] + */ + function initial(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 0, -1) : []; + } + + /** + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersection([2, 1], [2, 3]); + * // => [2] + */ + var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] + * + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ + var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, getIteratee(iteratee, 2)) + : []; + }); + + /** + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The order and references + * of result values are determined by the first array. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] + */ + var intersectionWith = baseRest(function(arrays) { + var comparator = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + comparator = typeof comparator == 'function' ? comparator : undefined; + if (comparator) { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, undefined, comparator) + : []; + }); + + /** + * Converts all elements in `array` into a string separated by `separator`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. + * @example + * + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' + */ + function join(array, separator) { + return array == null ? '' : nativeJoin.call(array, separator); + } + + /** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ + function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; + } + + /** + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 + * + * // Search from the `fromIndex`. + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 + */ + function lastIndexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + } + return value === value + ? strictLastIndexOf(array, value, index) + : baseFindIndex(array, baseIsNaN, index, true); + } + + /** + * Gets the element at index `n` of `array`. If `n` is negative, the nth + * element from the end is returned. + * + * @static + * @memberOf _ + * @since 4.11.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=0] The index of the element to return. + * @returns {*} Returns the nth element of `array`. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * + * _.nth(array, 1); + * // => 'b' + * + * _.nth(array, -2); + * // => 'c'; + */ + function nth(array, n) { + return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; + } + + /** + * Removes all given values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove` + * to remove elements from an array by predicate. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pull(array, 'a', 'c'); + * console.log(array); + * // => ['b', 'b'] + */ + var pull = baseRest(pullAll); + + /** + * This method is like `_.pull` except that it accepts an array of values to remove. + * + * **Note:** Unlike `_.difference`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; + * + * _.pullAll(array, ['a', 'c']); + * console.log(array); + * // => ['b', 'b'] + */ + function pullAll(array, values) { + return (array && array.length && values && values.length) + ? basePullAll(array, values) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] + */ + function pullAllBy(array, values, iteratee) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, getIteratee(iteratee, 2)) + : array; + } + + /** + * This method is like `_.pullAll` except that it accepts `comparator` which + * is invoked to compare elements of `array` to `values`. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.differenceWith`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }]; + * + * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual); + * console.log(array); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }] + */ + function pullAllWith(array, values, comparator) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, undefined, comparator) + : array; + } + + /** + * Removes elements from `array` corresponding to `indexes` and returns an + * array of removed elements. + * + * **Note:** Unlike `_.at`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = ['a', 'b', 'c', 'd']; + * var pulled = _.pullAt(array, [1, 3]); + * + * console.log(array); + * // => ['a', 'c'] + * + * console.log(pulled); + * // => ['b', 'd'] + */ + var pullAt = flatRest(function(array, indexes) { + var length = array == null ? 0 : array.length, + result = baseAt(array, indexes); + + basePullAt(array, arrayMap(indexes, function(index) { + return isIndex(index, length) ? +index : index; + }).sort(compareAscending)); + + return result; + }); + + /** + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is invoked + * with three arguments: (value, index, array). + * + * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull` + * to pull elements from an array by value. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new array of removed elements. + * @example + * + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); + * + * console.log(array); + * // => [1, 3] + * + * console.log(evens); + * // => [2, 4] + */ + function remove(array, predicate) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = getIteratee(predicate, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; + } + + /** + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.reverse(array); + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function reverse(array) { + return array == null ? array : nativeReverse.call(array); + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. + * + * **Note:** This method is used instead of + * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are + * returned. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ + function slice(array, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; + } + else { + start = start == null ? 0 : toInteger(start); + end = end === undefined ? length : toInteger(end); + } + return baseSlice(array, start, end); + } + + /** + * Uses a binary search to determine the lowest index at which `value` + * should be inserted into `array` in order to maintain its sort order. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + */ + function sortedIndex(array, value) { + return baseSortedIndex(array, value); + } + + /** + * This method is like `_.sortedIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.sortedIndexBy(objects, { 'x': 4 }, 'x'); + * // => 0 + */ + function sortedIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); + } + + /** + * This method is like `_.indexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedIndexOf([4, 5, 5, 5, 6], 5); + * // => 1 + */ + function sortedIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value); + if (index < length && eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * _.sortedLastIndex([4, 5, 5, 5, 6], 5); + * // => 4 + */ + function sortedLastIndex(array, value) { + return baseSortedIndex(array, value, true); + } + + /** + * This method is like `_.sortedLastIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. + * @example + * + * var objects = [{ 'x': 4 }, { 'x': 5 }]; + * + * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 1 + * + * // The `_.property` iteratee shorthand. + * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x'); + * // => 1 + */ + function sortedLastIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true); + } + + /** + * This method is like `_.lastIndexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); + * // => 3 + */ + function sortedLastIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value, true) - 1; + if (eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.uniq` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniq([1, 1, 2]); + * // => [1, 2] + */ + function sortedUniq(array) { + return (array && array.length) + ? baseSortedUniq(array) + : []; + } + + /** + * This method is like `_.uniqBy` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); + * // => [1.1, 2.3] + */ + function sortedUniqBy(array, iteratee) { + return (array && array.length) + ? baseSortedUniq(array, getIteratee(iteratee, 2)) + : []; + } + + /** + * Gets all but the first element of `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.tail([1, 2, 3]); + * // => [2, 3] + */ + function tail(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 1, length) : []; + } + + /** + * Creates a slice of `array` with `n` elements taken from the beginning. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.take([1, 2, 3]); + * // => [1] + * + * _.take([1, 2, 3], 2); + * // => [1, 2] + * + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.take([1, 2, 3], 0); + * // => [] + */ + function take(array, n, guard) { + if (!(array && array.length)) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, 0, n < 0 ? 0 : n); + } + + /** + * Creates a slice of `array` with `n` elements taken from the end. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. + * @example + * + * _.takeRight([1, 2, 3]); + * // => [3] + * + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] + * + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] + * + * _.takeRight([1, 2, 3], 0); + * // => [] + */ + function takeRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, n < 0 ? 0 : n, length); + } + + /** + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; + * + * _.takeRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.matches` iteratee shorthand. + * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeRightWhile(users, ['active', false]); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.takeRightWhile(users, 'active'); + * // => [] + */ + function takeRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), false, true) + : []; + } + + /** + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. + * @example + * + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; + * + * _.takeWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney', 'fred'] + * + * // The `_.matches` iteratee shorthand. + * _.takeWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeWhile(users, ['active', false]); + * // => objects for ['barney', 'fred'] + * + * // The `_.property` iteratee shorthand. + * _.takeWhile(users, 'active'); + * // => [] + */ + function takeWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3)) + : []; + } + + /** + * Creates an array of unique values, in order, from all given arrays using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.union([2], [1, 2]); + * // => [2, 1] + */ + var union = baseRest(function(arrays) { + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true)); + }); + + /** + * This method is like `_.union` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which uniqueness is computed. Result values are chosen from the first + * array in which the value occurs. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * _.unionBy([2.1], [1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + var unionBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.union` except that it accepts `comparator` which + * is invoked to compare elements of `arrays`. Result values are chosen from + * the first array in which the value occurs. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.unionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var unionWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator); + }); + + /** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurrence of each element + * is kept. The order of result values is determined by the order they occur + * in the array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + */ + function uniq(array) { + return (array && array.length) ? baseUniq(array) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * uniqueness is computed. The order of result values is determined by the + * order they occur in the array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniqBy([2.1, 1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // The `_.property` iteratee shorthand. + * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + function uniqBy(array, iteratee) { + return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : []; + } + + /** + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The order of result values is + * determined by the order they occur in the array.The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + */ + function uniqWith(array, comparator) { + comparator = typeof comparator == 'function' ? comparator : undefined; + return (array && array.length) ? baseUniq(array, undefined, comparator) : []; + } + + /** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @since 1.2.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + * + * _.unzip(zipped); + * // => [['a', 'b'], [1, 2], [true, false]] + */ + function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); + } + + /** + * This method is like `_.unzip` except that it accepts `iteratee` to specify + * how regrouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee=_.identity] The function to combine + * regrouped values. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] + * + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] + */ + function unzipWith(array, iteratee) { + if (!(array && array.length)) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + return arrayMap(result, function(group) { + return apply(iteratee, undefined, group); + }); + } + + /** + * Creates an array excluding all given values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.pull`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.xor + * @example + * + * _.without([2, 1, 2, 3], 1, 2); + * // => [3] + */ + var without = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, values) + : []; + }); + + /** + * Creates an array of unique values that is the + * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.without + * @example + * + * _.xor([2, 1], [2, 3]); + * // => [1, 3] + */ + var xor = baseRest(function(arrays) { + return baseXor(arrayFilter(arrays, isArrayLikeObject)); + }); + + /** + * This method is like `_.xor` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which by which they're compared. The order of result values is determined + * by the order they occur in the arrays. The iteratee is invoked with one + * argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2, 3.4] + * + * // The `_.property` iteratee shorthand. + * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + var xorBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2)); + }); + + /** + * This method is like `_.xor` except that it accepts `comparator` which is + * invoked to compare elements of `arrays`. The order of result values is + * determined by the order they occur in the arrays. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.xorWith(objects, others, _.isEqual); + * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + var xorWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator); + }); + + /** + * Creates an array of grouped elements, the first of which contains the + * first elements of the given arrays, the second of which contains the + * second elements of the given arrays, and so on. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + */ + var zip = baseRest(unzip); + + /** + * This method is like `_.fromPairs` except that it accepts two arrays, + * one of property identifiers and one of corresponding values. + * + * @static + * @memberOf _ + * @since 0.4.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObject(['a', 'b'], [1, 2]); + * // => { 'a': 1, 'b': 2 } + */ + function zipObject(props, values) { + return baseZipObject(props || [], values || [], assignValue); + } + + /** + * This method is like `_.zipObject` except that it supports property paths. + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example + * + * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); + * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } } + */ + function zipObjectDeep(props, values) { + return baseZipObject(props || [], values || [], baseSet); + } + + /** + * This method is like `_.zip` except that it accepts `iteratee` to specify + * how grouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee=_.identity] The function to combine + * grouped values. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { + * return a + b + c; + * }); + * // => [111, 222] + */ + var zipWith = baseRest(function(arrays) { + var length = arrays.length, + iteratee = length > 1 ? arrays[length - 1] : undefined; + + iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; + return unzipWith(arrays, iteratee); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; + * + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' + */ + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; + } + + /** + * This method invokes `interceptor` and returns `value`. The interceptor + * is invoked with one argument; (value). The purpose of this method is to + * "tap into" a method chain sequence in order to modify intermediate results. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns `value`. + * @example + * + * _([1, 2, 3]) + * .tap(function(array) { + * // Mutate input array. + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] + */ + function tap(value, interceptor) { + interceptor(value); + return value; + } + + /** + * This method is like `_.tap` except that it returns the result of `interceptor`. + * The purpose of this method is to "pass thru" values replacing intermediate + * results in a method chain sequence. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns the result of `interceptor`. + * @example + * + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor) { + return interceptor(value); + } + + /** + * This method is the wrapper version of `_.at`. + * + * @name at + * @memberOf _ + * @since 1.0.0 + * @category Seq + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _(object).at(['a[0].b.c', 'a[1]']).value(); + * // => [3, 4] + */ + var wrapperAt = flatRest(function(paths) { + var length = paths.length, + start = length ? paths[0] : 0, + value = this.__wrapped__, + interceptor = function(object) { return baseAt(object, paths); }; + + if (length > 1 || this.__actions__.length || + !(value instanceof LazyWrapper) || !isIndex(start)) { + return this.thru(interceptor); + } + value = value.slice(start, +start + (length ? 1 : 0)); + value.__actions__.push({ + 'func': thru, + 'args': [interceptor], + 'thisArg': undefined + }); + return new LodashWrapper(value, this.__chain__).thru(function(array) { + if (length && !array.length) { + array.push(undefined); + } + return array; + }); + }); + + /** + * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. + * + * @name chain + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // A sequence without explicit chaining. + * _(users).head(); + * // => { 'user': 'barney', 'age': 36 } + * + * // A sequence with explicit chaining. + * _(users) + * .chain() + * .head() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } + */ + function wrapperChain() { + return chain(this); + } + + /** + * Executes the chain sequence and returns the wrapped result. + * + * @name commit + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2]; + * var wrapped = _(array).push(3); + * + * console.log(array); + * // => [1, 2] + * + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] + * + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] + */ + function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); + } + + /** + * Gets the next value on a wrapped object following the + * [iterator protocol](https://mdn.io/iteration_protocols#iterator). + * + * @name next + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the next iterator value. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped.next(); + * // => { 'done': false, 'value': 1 } + * + * wrapped.next(); + * // => { 'done': false, 'value': 2 } + * + * wrapped.next(); + * // => { 'done': true, 'value': undefined } + */ + function wrapperNext() { + if (this.__values__ === undefined) { + this.__values__ = toArray(this.value()); + } + var done = this.__index__ >= this.__values__.length, + value = done ? undefined : this.__values__[this.__index__++]; + + return { 'done': done, 'value': value }; + } + + /** + * Enables the wrapper to be iterable. + * + * @name Symbol.iterator + * @memberOf _ + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the wrapper object. + * @example + * + * var wrapped = _([1, 2]); + * + * wrapped[Symbol.iterator]() === wrapped; + * // => true + * + * Array.from(wrapped); + * // => [1, 2] + */ + function wrapperToIterator() { + return this; + } + + /** + * Creates a clone of the chain sequence planting `value` as the wrapped value. + * + * @name plant + * @memberOf _ + * @since 3.2.0 + * @category Seq + * @param {*} value The value to plant. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2]).map(square); + * var other = wrapped.plant([3, 4]); + * + * other.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] + */ + function wrapperPlant(value) { + var result, + parent = this; + + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + clone.__index__ = 0; + clone.__values__ = undefined; + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; + return result; + } + + /** + * This method is the wrapper version of `_.reverse`. + * + * **Note:** This method mutates the wrapped array. + * + * @name reverse + * @memberOf _ + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * var array = [1, 2, 3]; + * + * _(array).reverse().value() + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + function wrapperReverse() { + var value = this.__wrapped__; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ + 'func': thru, + 'args': [reverse], + 'thisArg': undefined + }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(reverse); + } + + /** + * Executes the chain sequence to resolve the unwrapped value. + * + * @name value + * @memberOf _ + * @since 0.1.0 + * @alias toJSON, valueOf + * @category Seq + * @returns {*} Returns the resolved unwrapped value. + * @example + * + * _([1, 2, 3]).value(); + * // => [1, 2, 3] + */ + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the number of times the key was returned by `iteratee`. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.countBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': 1, '6': 2 } + * + * // The `_.property` iteratee shorthand. + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } + */ + var countBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + ++result[key]; + } else { + baseAssignValue(result, key, 1); + } + }); + + /** + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + * @example + * + * _.every([true, 1, null, 'yes'], Boolean); + * // => false + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false + */ + function every(collection, predicate, guard) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + * + * // Combining several predicates using `_.overEvery` or `_.overSome`. + * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); + * // => objects for ['fred', 'barney'] + */ + function filter(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; + * + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' + * + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' + */ + var find = createFind(findIndex); + + /** + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=collection.length-1] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. + * @example + * + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 + */ + var findLast = createFind(findLastIndex); + + /** + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [n, n]; + * } + * + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDeep([1, 2], duplicate); + * // => [1, 1, 2, 2] + */ + function flatMapDeep(collection, iteratee) { + return baseFlatten(map(collection, iteratee), INFINITY); + } + + /** + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results up to `depth` times. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [[[n, n]]]; + * } + * + * _.flatMapDepth([1, 2], duplicate, 2); + * // => [[1, 1], [2, 2]] + */ + function flatMapDepth(collection, iteratee, depth) { + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(map(collection, iteratee), depth); + } + + /** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @alias eachRight + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEach + * @example + * + * _.forEachRight([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `2` then `1`. + */ + function forEachRight(collection, iteratee) { + var func = isArray(collection) ? arrayEachRight : baseEachRight; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ + var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } + }); + + /** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ + function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; + + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); + } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); + } + + /** + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke each method with. + * @returns {Array} Returns the array of results. + * @example + * + * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] + * + * _.invokeMap([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] + */ + var invokeMap = baseRest(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); + }); + return result; + }); + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + */ + var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); + }); + + /** + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n; + * } + * + * _.map([4, 8], square); + * // => [16, 64] + * + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] + */ + function map(collection, iteratee) { + var func = isArray(collection) ? arrayMap : baseMap; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] + * The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // Sort by `user` in ascending order and by `age` in descending order. + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + */ + function orderBy(collection, iteratees, orders, guard) { + if (collection == null) { + return []; + } + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; + } + orders = guard ? undefined : orders; + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; + } + return baseOrderBy(collection, iteratees, orders); + } + + /** + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, the second of which + * contains elements `predicate` returns falsey for. The predicate is + * invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the array of grouped elements. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; + * + * _.partition(users, function(o) { return o.active; }); + * // => objects for [['fred'], ['barney', 'pebbles']] + * + * // The `_.matches` iteratee shorthand. + * _.partition(users, { 'age': 1, 'active': false }); + * // => objects for [['pebbles'], ['barney', 'fred']] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.partition(users, ['active', false]); + * // => objects for [['barney', 'pebbles'], ['fred']] + * + * // The `_.property` iteratee shorthand. + * _.partition(users, 'active'); + * // => objects for [['fred'], ['barney', 'pebbles']] + */ + var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); + }, function() { return [[], []]; }); + + /** + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `collection` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, collection). + * + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, + * and `sortBy` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduceRight + * @example + * + * _.reduce([1, 2], function(sum, n) { + * return sum + n; + * }, 0); + * // => 3 + * + * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * return result; + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) + */ + function reduce(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduce : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach); + } + + /** + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduce + * @example + * + * var array = [[0, 1], [2, 3], [4, 5]]; + * + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] + */ + function reduceRight(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduceRight : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight); + } + + /** + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.filter + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * _.reject(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.reject(users, { 'age': 40, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.reject(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.reject(users, 'active'); + * // => objects for ['barney'] + */ + function reject(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, negate(getIteratee(predicate, 3))); + } + + /** + * Gets a random element from `collection`. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + * @example + * + * _.sample([1, 2, 3, 4]); + * // => 2 + */ + function sample(collection) { + var func = isArray(collection) ? arraySample : baseSample; + return func(collection); + } + + /** + * Gets `n` random elements at unique keys from `collection` up to the + * size of `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @param {number} [n=1] The number of elements to sample. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the random elements. + * @example + * + * _.sampleSize([1, 2, 3], 2); + * // => [3, 1] + * + * _.sampleSize([1, 2, 3], 4); + * // => [2, 3, 1] + */ + function sampleSize(collection, n, guard) { + if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + var func = isArray(collection) ? arraySampleSize : baseSampleSize; + return func(collection, n); + } + + /** + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. + * @example + * + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] + */ + function shuffle(collection) { + var func = isArray(collection) ? arrayShuffle : baseShuffle; + return func(collection); + } + + /** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ + function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; + } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; + } + + /** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true + */ + function some(collection, predicate, guard) { + var func = isArray(collection) ? arraySome : baseSome; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } + + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 30 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] + */ + var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Gets the timestamp of the number of milliseconds that have elapsed since + * the Unix epoch (1 January 1970 00:00:00 UTC). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Date + * @returns {number} Returns the timestamp. + * @example + * + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => Logs the number of milliseconds it took for the deferred invocation. + */ + var now = ctxNow || function() { + return root.Date.now(); + }; + + /*------------------------------------------------------------------------*/ + + /** + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it's called `n` or more times. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var saves = ['profile', 'settings']; + * + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); + * + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => Logs 'done saving!' after the two async saves have completed. + */ + function after(n, func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; + } + + /** + * Creates a function that invokes `func`, with up to `n` arguments, + * ignoring any additional arguments. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] + */ + function ary(func, n, guard) { + n = guard ? undefined : n; + n = (func && n == null) ? func.length : n; + return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); + } + + /** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ + function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; + } + + /** + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. + * + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' + */ + var bind = baseRest(function(func, thisArg, partials) { + var bitmask = WRAP_BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bind)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(func, bitmask, thisArg, partials, holders); + }); + + /** + * Creates a function that invokes the method at `object[key]` with `partials` + * prepended to the arguments it receives. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. See + * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Function + * @param {Object} object The object to invoke the method on. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. + * @example + * + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; + * + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // Bound with placeholders. + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' + */ + var bindKey = baseRest(function(object, key, partials) { + var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bindKey)); + bitmask |= WRAP_PARTIAL_FLAG; + } + return createWrap(key, bitmask, object, partials, holders); + }); + + /** + * Creates a function that accepts arguments of `func` and either invokes + * `func` returning its result, if at least `arity` number of arguments have + * been provided, or returns a function that accepts the remaining `func` + * arguments, and so on. The arity of `func` may be specified if `func.length` + * is not sufficient. + * + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(1)(_, 3)(2); + * // => [1, 2, 3] + */ + function curry(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curry.placeholder; + return result; + } + + /** + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. + * @example + * + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curryRight(abc); + * + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(3)(1, _)(2); + * // => [1, 2, 3] + */ + function curryRight(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryRight.placeholder; + return result; + } + + /** + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed `func` invocations and a `flush` method to immediately invoke them. + * Provide `options` to indicate whether `func` should be invoked on the + * leading and/or trailing edge of the `wait` timeout. The `func` is invoked + * with the last arguments provided to the debounced function. Subsequent + * calls to the debounced function return the result of the last `func` + * invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the debounced function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.debounce` and `_.throttle`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=false] + * Specify invoking on the leading edge of the timeout. + * @param {number} [options.maxWait] + * The maximum time `func` is allowed to be delayed before it's invoked. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new debounced function. + * @example + * + * // Avoid costly calculations while the window size is in flux. + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // Invoke `sendMail` when clicked, debouncing subsequent calls. + * jQuery(element).on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // Ensure `batchLog` is invoked once after 1 second of debounced calls. + * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); + * var source = new EventSource('/stream'); + * jQuery(source).on('message', debounced); + * + * // Cancel the trailing debounced invocation. + * jQuery(window).on('popstate', debounced.cancel); + */ + function debounce(func, wait, options) { + var lastArgs, + lastThis, + maxWait, + result, + timerId, + lastCallTime, + lastInvokeTime = 0, + leading = false, + maxing = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + wait = toNumber(wait) || 0; + if (isObject(options)) { + leading = !!options.leading; + maxing = 'maxWait' in options; + maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + + function invokeFunc(time) { + var args = lastArgs, + thisArg = lastThis; + + lastArgs = lastThis = undefined; + lastInvokeTime = time; + result = func.apply(thisArg, args); + return result; + } + + function leadingEdge(time) { + // Reset any `maxWait` timer. + lastInvokeTime = time; + // Start the timer for the trailing edge. + timerId = setTimeout(timerExpired, wait); + // Invoke the leading edge. + return leading ? invokeFunc(time) : result; + } + + function remainingWait(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime, + timeWaiting = wait - timeSinceLastCall; + + return maxing + ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) + : timeWaiting; + } + + function shouldInvoke(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime; + + // Either this is the first call, activity has stopped and we're at the + // trailing edge, the system time has gone backwards and we're treating + // it as the trailing edge, or we've hit the `maxWait` limit. + return (lastCallTime === undefined || (timeSinceLastCall >= wait) || + (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); + } + + function timerExpired() { + var time = now(); + if (shouldInvoke(time)) { + return trailingEdge(time); + } + // Restart the timer. + timerId = setTimeout(timerExpired, remainingWait(time)); + } + + function trailingEdge(time) { + timerId = undefined; + + // Only invoke if we have `lastArgs` which means `func` has been + // debounced at least once. + if (trailing && lastArgs) { + return invokeFunc(time); + } + lastArgs = lastThis = undefined; + return result; + } + + function cancel() { + if (timerId !== undefined) { + clearTimeout(timerId); + } + lastInvokeTime = 0; + lastArgs = lastCallTime = lastThis = timerId = undefined; + } + + function flush() { + return timerId === undefined ? result : trailingEdge(now()); + } + + function debounced() { + var time = now(), + isInvoking = shouldInvoke(time); + + lastArgs = arguments; + lastThis = this; + lastCallTime = time; + + if (isInvoking) { + if (timerId === undefined) { + return leadingEdge(lastCallTime); + } + if (maxing) { + // Handle invocations in a tight loop. + clearTimeout(timerId); + timerId = setTimeout(timerExpired, wait); + return invokeFunc(lastCallTime); + } + } + if (timerId === undefined) { + timerId = setTimeout(timerExpired, wait); + } + return result; + } + debounced.cancel = cancel; + debounced.flush = flush; + return debounced; + } + + /** + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ + var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example + * + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. + */ + var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); + }); + + /** + * Creates a function that invokes `func` with arguments reversed. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new flipped function. + * @example + * + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); + * + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] + */ + function flip(func) { + return createWrap(func, WRAP_FLIP_FLAG); + } + + /** + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided, it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is used as the map cache key. The `func` + * is invoked with the `this` binding of the memoized function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the + * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) + * method interface of `clear`, `delete`, `get`, `has`, and `set`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoized function. + * @example + * + * var object = { 'a': 1, 'b': 2 }; + * var other = { 'c': 3, 'd': 4 }; + * + * var values = _.memoize(_.values); + * values(object); + * // => [1, 2] + * + * values(other); + * // => [3, 4] + * + * object.a = 2; + * values(object); + * // => [1, 2] + * + * // Modify the result cache. + * values.cache.set(object, ['a', 'b']); + * values(object); + * // => ['a', 'b'] + * + * // Replace `_.memoize.Cache`. + * _.memoize.Cache = WeakMap; + */ + function memoize(func, resolver) { + if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); + } + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; + + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result) || cache; + return result; + }; + memoized.cache = new (memoize.Cache || MapCache); + return memoized; + } + + // Expose `MapCache`. + memoize.Cache = MapCache; + + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + var args = arguments; + switch (args.length) { + case 0: return !predicate.call(this); + case 1: return !predicate.call(this, args[0]); + case 2: return !predicate.call(this, args[0], args[1]); + case 3: return !predicate.call(this, args[0], args[1], args[2]); + } + return !predicate.apply(this, args); + }; + } + + /** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ + function once(func) { + return before(2, func); + } + + /** + * Creates a function that invokes `func` with its arguments transformed. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms=[_.identity]] + * The argument transforms. + * @returns {Function} Returns the new function. + * @example + * + * function doubled(n) { + * return n * 2; + * } + * + * function square(n) { + * return n * n; + * } + * + * var func = _.overArgs(function(x, y) { + * return [x, y]; + * }, [square, doubled]); + * + * func(9, 3); + * // => [81, 6] + * + * func(10, 5); + * // => [100, 10] + */ + var overArgs = castRest(function(func, transforms) { + transforms = (transforms.length == 1 && isArray(transforms[0])) + ? arrayMap(transforms[0], baseUnary(getIteratee())) + : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee())); + + var funcsLength = transforms.length; + return baseRest(function(args) { + var index = -1, + length = nativeMin(args.length, funcsLength); + + while (++index < length) { + args[index] = transforms[index].call(this, args[index]); + } + return apply(func, this, args); + }); + }); + + /** + * Creates a function that invokes `func` with `partials` prepended to the + * arguments it receives. This method is like `_.bind` except it does **not** + * alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 0.2.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' + * + * // Partially applied with placeholders. + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + */ + var partial = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partial)); + return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); + }); + + /** + * This method is like `_.partial` except that partially applied arguments + * are appended to the arguments it receives. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. + * @example + * + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } + * + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' + * + * // Partially applied with placeholders. + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' + */ + var partialRight = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partialRight)); + return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); + }); + + /** + * Creates a function that invokes `func` with arguments arranged according + * to the specified `indexes` where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, [2, 0, 1]); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + */ + var rearg = flatRest(function(func, indexes) { + return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes); + }); + + /** + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as + * an array. + * + * **Note:** This method is based on the + * [rest parameter](https://mdn.io/rest_parameters). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.rest(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); + * + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' + */ + function rest(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start === undefined ? start : toInteger(start); + return baseRest(func, start); + } + + /** + * Creates a function that invokes `func` with the `this` binding of the + * create function and an array of arguments much like + * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply). + * + * **Note:** This method is based on the + * [spread operator](https://mdn.io/spread_operator). + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Function + * @param {Function} func The function to spread arguments over. + * @param {number} [start=0] The start position of the spread. + * @returns {Function} Returns the new function. + * @example + * + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); + * + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 + */ + function spread(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + start = start == null ? 0 : nativeMax(toInteger(start), 0); + return baseRest(function(args) { + var array = args[start], + otherArgs = castSlice(args, 0, start); + + if (array) { + arrayPush(otherArgs, array); + } + return apply(func, this, otherArgs); + }); + } + + /** + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed `func` invocations and a `flush` method to + * immediately invoke them. Provide `options` to indicate whether `func` + * should be invoked on the leading and/or trailing edge of the `wait` + * timeout. The `func` is invoked with the last arguments provided to the + * throttled function. Subsequent calls to the throttled function return the + * result of the last `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the throttled function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.throttle` and `_.debounce`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=true] + * Specify invoking on the leading edge of the timeout. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new throttled function. + * @example + * + * // Avoid excessively updating the position while scrolling. + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * + * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. + * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); + * jQuery(element).on('click', throttled); + * + * // Cancel the trailing throttled invocation. + * jQuery(window).on('popstate', throttled.cancel); + */ + function throttle(func, wait, options) { + var leading = true, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; + } + return debounce(func, wait, { + 'leading': leading, + 'maxWait': wait, + 'trailing': trailing + }); + } + + /** + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + * @example + * + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] + */ + function unary(func) { + return ary(func, 1); + } + + /** + * Creates a function that provides `value` to `wrapper` as its first + * argument. Any additional arguments provided to the function are appended + * to those provided to the `wrapper`. The wrapper is invoked with the `this` + * binding of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {*} value The value to wrap. + * @param {Function} [wrapper=identity] The wrapper function. + * @returns {Function} Returns the new function. + * @example + * + * var p = _.wrap(_.escape, function(func, text) { + * return '